Skip to content

Commit a2120d2

Browse files
committed
Run all the integration tests - 2025-02-28 PT
1 parent 030092f commit a2120d2

6 files changed

Lines changed: 22 additions & 8 deletions

File tree

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,10 @@
233233
"slack_ai_message_rewriter",
234234
"slack_ai_message_translation_generated",
235235
"audit_logs_records_searched_anomaly",
236-
"pref.ml_opt_out"
236+
"pref.ml_opt_out",
237+
"pref.agentforce_workspaces_settings_changed",
238+
"pref.enterprise_search_connectors",
239+
"pref.enterprise_search_enabled"
237240
],
238241
"user": [
239242
"custom_tos_accepted",
@@ -295,7 +298,8 @@
295298
"file_download_blocked",
296299
"file_owner_reassigned_for_quip_migration",
297300
"slack_ai_file_summary_generated",
298-
"slack_ai_file_summary_deleted"
301+
"slack_ai_file_summary_deleted",
302+
"slack_ai_file_summary_translation_generated"
299303
],
300304
"channel": [
301305
"user_channel_join",

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@
106106
"id": "",
107107
"label": "",
108108
"type": ""
109+
},
110+
{
111+
"type": "",
112+
"id": ""
109113
}
110114
]
111115
}

json-logs/samples/api/conversations.kick.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"ok": false,
33
"error": "",
44
"needed": "",
5-
"provided": ""
5+
"provided": "",
6+
"errors": {}
67
}

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,9 @@ private WorkspaceOrOrg() {
148148
public static final String pref_allow_lists = "pref.allow_lists";
149149
public static final String pref_anomaly_event_response_changed = "pref.anomaly_event_response_changed";
150150
public static final String pref_ml_opt_out = "pref.ml_opt_out";
151+
public static final String pref_agentforce_workspaces_settings_changed = "pref.agentforce_workspaces_settings_changed";
152+
public static final String pref_enterprise_search_connectors = "pref.enterprise_search_connectors";
153+
public static final String pref_enterprise_search_enabled = "pref.enterprise_search_enabled";
151154
public static final String manual_export_downloaded = "manual_export_downloaded";
152155
public static final String manual_export_deleted = "manual_export_deleted";
153156
public static final String scheduled_export_downloaded = "scheduled_export_downloaded";
@@ -315,6 +318,7 @@ private File() {
315318
public static final String file_owner_reassigned_for_quip_migration = "file_owner_reassigned_for_quip_migration";
316319
public static final String slack_ai_file_summary_generated = "slack_ai_file_summary_generated";
317320
public static final String slack_ai_file_summary_deleted = "slack_ai_file_summary_deleted";
321+
public static final String slack_ai_file_summary_translation_generated = "slack_ai_file_summary_translation_generated";
318322
}
319323

320324
public static class Channel {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ public class ConversationsKickResponse implements SlackApiTextResponse {
1414
private String error;
1515
private String needed;
1616
private String provided;
17+
private Object errors; // TODO: typing
1718
private transient Map<String, List<String>> httpResponseHeaders;
1819
}

slack-api-client/src/test/java/test_with_remote_apis/methods_admin_api/AdminApi_analytics_Test.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void getFile_member_error() throws Exception {
5555
public void getFile_member_forEach() throws Exception {
5656
if (orgAdminUserToken != null) {
5757
AdminAnalyticsGetFileResponse response = methodsAsync.adminAnalyticsGetFile(r -> r
58-
.date("2024-01-20")
58+
.date("2025-01-20")
5959
.type("member")
6060
).get();
6161
assertNull(response.getError());
@@ -89,7 +89,7 @@ public void getFile_member_forEach() throws Exception {
8989
public void getFile_member_forEach_validation() throws Exception {
9090
if (orgAdminUserToken != null) {
9191
AdminAnalyticsGetFileResponse response = methodsAsync.adminAnalyticsGetFile(r -> r
92-
.date("2024-01-20")
92+
.date("2025-01-20")
9393
.type("member")
9494
).get();
9595
assertNull(response.getError());
@@ -109,7 +109,7 @@ public void getFile_member_forEach_validation() throws Exception {
109109
public void getFile_member_asBytes() throws Exception {
110110
if (orgAdminUserToken != null) {
111111
AdminAnalyticsGetFileResponse response = methodsAsync.adminAnalyticsGetFile(r -> r
112-
.date("2024-01-20")
112+
.date("2025-01-20")
113113
.type("member")
114114
).get();
115115
assertNotNull(response.getFileStream());
@@ -134,7 +134,7 @@ public void getFile_member_asBytes() throws Exception {
134134
public void getFile_public_channel() throws Exception {
135135
if (orgAdminUserToken != null) {
136136
AdminAnalyticsGetFileResponse response = methodsAsync.adminAnalyticsGetFile(r -> r
137-
.date("2024-01-20")
137+
.date("2025-01-20")
138138
.type("public_channel")
139139
).get();
140140
assertNull(response.getError());
@@ -170,7 +170,7 @@ public void getFile_public_channel() throws Exception {
170170
public void getFile_public_channel_validation() throws Exception {
171171
if (orgAdminUserToken != null) {
172172
AdminAnalyticsGetFileResponse response = methodsAsync.adminAnalyticsGetFile(r -> r
173-
.date("2024-01-20")
173+
.date("2025-01-20")
174174
.type("public_channel")
175175
).get();
176176
assertNull(response.getError());

0 commit comments

Comments
 (0)