Skip to content

Commit

Permalink
Run all the integration tests - 2024-07-15 PT
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Jul 16, 2024
1 parent 48f98b6 commit 9976da9
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 1 deletion.
3 changes: 2 additions & 1 deletion json-logs/raw/audit/v1/actions.json
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,8 @@
"file_deleted",
"file_upload_blocked_by_type",
"file_share_blocked_by_type",
"file_download_blocked"
"file_download_blocked",
"file_owner_reassigned_for_quip_migration"
],
"channel": [
"user_channel_join",
Expand Down
23 changes: 23 additions & 0 deletions json-logs/samples/api/admin.conversations.search.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,29 @@
"team_id": ""
}
]
},
"properties": {
"canvas": {
"file_id": "F00000000",
"is_empty": false,
"quip_thread_id": ""
},
"posting_restricted_to": {
"type": [
""
],
"user": [
"U00000000"
]
},
"threads_restricted_to": {
"type": [
""
]
},
"huddles_restricted": false,
"at_here_restricted": false,
"at_channel_restricted": false
}
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ private File() {
public static final String file_deleted = "file_deleted";
public static final String file_upload_blocked_by_type = "file_upload_blocked_by_type";
public static final String file_share_blocked_by_type = "file_share_blocked_by_type";
public static final String file_owner_reassigned_for_quip_migration = "file_owner_reassigned_for_quip_migration";
}

public static class Channel {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.slack.api.methods.SlackApiTextResponse;
import com.slack.api.model.ChannelEmailAddress;
import com.slack.api.model.ConversationProperties;
import com.slack.api.model.ErrorResponseMetadata;
import lombok.Data;

Expand Down Expand Up @@ -56,6 +57,7 @@ public static class Conversation {
private String conversationHostId;
private Canvas canvas;
private Lists lists;
private ConversationProperties properties;
}

@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ public class ConversationProperties {
private PostingRestrictedTo postingRestrictedTo;
private ThreadsRestrictedTo threadsRestrictedTo;
private Boolean huddlesRestricted;
private Boolean atHereRestricted;
private Boolean atChannelRestricted;

@Data
@Builder
Expand Down

0 comments on commit 9976da9

Please sign in to comment.