Skip to content

Commit 59590f7

Browse files
committed
Run all the integration tests - 2024-06-11 PT
1 parent 6f9fedd commit 59590f7

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

json-logs/raw/audit/v1/actions.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,9 @@
299299
"external_shared_channel_access_downgraded",
300300
"private_channel_converted_to_public",
301301
"record_channel_archive",
302-
"record_channel_unarchive"
302+
"record_channel_unarchive",
303+
"channel_converted_to_record_channel",
304+
"record_channel_converted_to_channel"
303305
],
304306
"app": [
305307
"app_installed",

json-logs/samples/api/admin.conversations.search.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,16 @@
6262
}
6363
]
6464
},
65-
"context_team_id": "T00000000"
65+
"context_team_id": "T00000000",
66+
"lists": {
67+
"total_count": 12345,
68+
"ownership_details": [
69+
{
70+
"count": 123,
71+
"team_id": ""
72+
}
73+
]
74+
}
6675
}
6776
],
6877
"next_cursor": "",

slack-api-client/src/main/java/com/slack/api/audit/Actions.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,8 @@ private Channel() {
323323
public static final String private_channel_converted_to_public = "private_channel_converted_to_public";
324324
public static final String record_channel_archive = "record_channel_archive";
325325
public static final String record_channel_unarchive = "record_channel_unarchive";
326+
public static final String channel_converted_to_record_channel = "channel_converted_to_record_channel";
327+
public static final String record_channel_converted_to_channel = "record_channel_converted_to_channel";
326328
}
327329

328330
public static class App {

slack-api-client/src/main/java/com/slack/api/methods/response/admin/conversations/AdminConversationsSearchResponse.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ public static class Conversation {
5555
private Boolean isDisconnectInProgress;
5656
private String conversationHostId;
5757
private Canvas canvas;
58+
private Lists lists;
5859
}
5960

6061
@Data
@@ -67,4 +68,15 @@ public static class CanvasOwnershipDetail {
6768
private Integer count;
6869
private String teamId;
6970
}
71+
72+
@Data
73+
public static class Lists {
74+
private Integer totalCount;
75+
private List<ListsOwnershipDetail> ownershipDetails;
76+
}
77+
@Data
78+
public static class ListsOwnershipDetail {
79+
private Integer count;
80+
private String teamId;
81+
}
7082
}

0 commit comments

Comments
 (0)