Skip to content

Commit

Permalink
Run all the integration tests - 2024-06-11 PT
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Jun 12, 2024
1 parent 6f9fedd commit 59590f7
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
4 changes: 3 additions & 1 deletion json-logs/raw/audit/v1/actions.json
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,9 @@
"external_shared_channel_access_downgraded",
"private_channel_converted_to_public",
"record_channel_archive",
"record_channel_unarchive"
"record_channel_unarchive",
"channel_converted_to_record_channel",
"record_channel_converted_to_channel"
],
"app": [
"app_installed",
Expand Down
11 changes: 10 additions & 1 deletion json-logs/samples/api/admin.conversations.search.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,16 @@
}
]
},
"context_team_id": "T00000000"
"context_team_id": "T00000000",
"lists": {
"total_count": 12345,
"ownership_details": [
{
"count": 123,
"team_id": ""
}
]
}
}
],
"next_cursor": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,8 @@ private Channel() {
public static final String private_channel_converted_to_public = "private_channel_converted_to_public";
public static final String record_channel_archive = "record_channel_archive";
public static final String record_channel_unarchive = "record_channel_unarchive";
public static final String channel_converted_to_record_channel = "channel_converted_to_record_channel";
public static final String record_channel_converted_to_channel = "record_channel_converted_to_channel";
}

public static class App {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public static class Conversation {
private Boolean isDisconnectInProgress;
private String conversationHostId;
private Canvas canvas;
private Lists lists;
}

@Data
Expand All @@ -67,4 +68,15 @@ public static class CanvasOwnershipDetail {
private Integer count;
private String teamId;
}

@Data
public static class Lists {
private Integer totalCount;
private List<ListsOwnershipDetail> ownershipDetails;
}
@Data
public static class ListsOwnershipDetail {
private Integer count;
private String teamId;
}
}

0 comments on commit 59590f7

Please sign in to comment.