Skip to content

Commit aea01bb

Browse files
committed
Run all the integration tests - 2022-05-08 PT
1 parent cffe5ae commit aea01bb

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

json-logs/samples/audit/v1/logs.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@
248248
"exporting_team_id": 123,
249249
"session_search_start": 123,
250250
"deprecation_search_end": 123,
251-
"is_error": false
251+
"is_error": false,
252+
"app_id": ""
252253
}
253254
}
254255
]

slack-api-client/src/main/java/com/slack/api/audit/response/LogsResponse.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ public static class Details {
233233
private Integer sessionSearchStart; // team.unsupportedVersions.start.success
234234
private Integer deprecationSearchEnd; // team.unsupportedVersions.start.success
235235
private Boolean isError; // team.unsupportedVersions.job.end
236+
private String appId; // cli_app_deploy
236237
}
237238

238239
@Data

slack-api-client/src/test/java/test_with_remote_apis/audit/ApiTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ public void getLogs_paginated() throws IOException, AuditApiException {
257257
@Test
258258
public void getLogs_all_actions() throws Exception {
259259
if (orgAdminUserToken != null) {
260+
verifyAllActions(orgAdminUserToken, Actions.SlackCLI.class);
260261
verifyAllActions(orgAdminUserToken, Actions.WorkspaceOrOrg.class);
261262
verifyAllActions(orgAdminUserToken, Actions.User.class);
262263
verifyAllActions(orgAdminUserToken, Actions.File.class);

0 commit comments

Comments
 (0)