Skip to content

Commit 9976da9

Browse files
committed
Run all the integration tests - 2024-07-15 PT
1 parent 48f98b6 commit 9976da9

File tree

5 files changed

+30
-1
lines changed

5 files changed

+30
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,8 @@
247247
"file_deleted",
248248
"file_upload_blocked_by_type",
249249
"file_share_blocked_by_type",
250-
"file_download_blocked"
250+
"file_download_blocked",
251+
"file_owner_reassigned_for_quip_migration"
251252
],
252253
"channel": [
253254
"user_channel_join",

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

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,29 @@
7171
"team_id": ""
7272
}
7373
]
74+
},
75+
"properties": {
76+
"canvas": {
77+
"file_id": "F00000000",
78+
"is_empty": false,
79+
"quip_thread_id": ""
80+
},
81+
"posting_restricted_to": {
82+
"type": [
83+
""
84+
],
85+
"user": [
86+
"U00000000"
87+
]
88+
},
89+
"threads_restricted_to": {
90+
"type": [
91+
""
92+
]
93+
},
94+
"huddles_restricted": false,
95+
"at_here_restricted": false,
96+
"at_channel_restricted": false
7497
}
7598
}
7699
],

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ private File() {
267267
public static final String file_deleted = "file_deleted";
268268
public static final String file_upload_blocked_by_type = "file_upload_blocked_by_type";
269269
public static final String file_share_blocked_by_type = "file_share_blocked_by_type";
270+
public static final String file_owner_reassigned_for_quip_migration = "file_owner_reassigned_for_quip_migration";
270271
}
271272

272273
public static class Channel {

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import com.slack.api.methods.SlackApiTextResponse;
44
import com.slack.api.model.ChannelEmailAddress;
5+
import com.slack.api.model.ConversationProperties;
56
import com.slack.api.model.ErrorResponseMetadata;
67
import lombok.Data;
78

@@ -56,6 +57,7 @@ public static class Conversation {
5657
private String conversationHostId;
5758
private Canvas canvas;
5859
private Lists lists;
60+
private ConversationProperties properties;
5961
}
6062

6163
@Data

slack-api-model/src/main/java/com/slack/api/model/ConversationProperties.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ public class ConversationProperties {
1717
private PostingRestrictedTo postingRestrictedTo;
1818
private ThreadsRestrictedTo threadsRestrictedTo;
1919
private Boolean huddlesRestricted;
20+
private Boolean atHereRestricted;
21+
private Boolean atChannelRestricted;
2022

2123
@Data
2224
@Builder

0 commit comments

Comments
 (0)