Skip to content

Commit 9138fb5

Browse files
committed
Run all the integration tests - 2022-04-21 PT
1 parent 1884bde commit 9138fb5

File tree

4 files changed

+44
-2
lines changed

4 files changed

+44
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@
174174
"file_public_link_revoked",
175175
"file_shared",
176176
"file_downloaded_blocked",
177-
"file_malicious_content_detected"
177+
"file_malicious_content_detected",
178+
"file_deleted"
178179
],
179180
"channel": [
180181
"user_channel_join",
@@ -220,7 +221,8 @@
220221
"channel_enable_at_here_pref_changed_from_org_level",
221222
"channel_posting_permissions_updated",
222223
"external_shared_channel_access_upgraded",
223-
"external_shared_channel_disconnect_and_archived"
224+
"external_shared_channel_disconnect_and_archived",
225+
"dm_user_added"
224226
],
225227
"app": [
226228
"app_installed",

json-logs/raw/status/api/v1.0.0/current.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,18 @@
770770
{
771771
"date_created": "2022-04-19T20:46:43-07:00",
772772
"body": "We’re investigating an issue with SCIM deactivating users, and SCIM updates not working as expected. We’re looking into the cause and will provide more information as soon as it\u0027s available."
773+
},
774+
{
775+
"date_created": "2022-04-21T14:38:16-07:00",
776+
"body": "We\u0027re seeing noticeable signs of improvement, but are continuing to monitor. We’ll provide new information as soon as it’s available."
777+
},
778+
{
779+
"date_created": "2022-04-21T07:35:00-07:00",
780+
"body": "We continue to investigate an issue where some Android users are unable to receive notifications, and will report back once we have more news to share."
781+
},
782+
{
783+
"date_created": "2022-04-21T00:17:20-07:00",
784+
"body": "We are investigating an issue where some Android users are unable to receive notifications, and will report back once we have more news to share."
773785
}
774786
]
775787
}

json-logs/raw/status/api/v2.0.0/current.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,6 +1154,32 @@
11541154
"body": "Some users whose teams leverage Slack for Intune Mobile App Management (MAM) are repeatedly getting logged out of the iOS app. We apologize for the inconvenience and will keep you posted as we continue to investigate the issue."
11551155
}
11561156
]
1157+
},
1158+
{
1159+
"id": 1084,
1160+
"date_created": "2022-04-21T00:17:20-07:00",
1161+
"date_updated": "2022-04-21T14:38:16-07:00",
1162+
"title": "Some Android users are experiencing issues with notifications.",
1163+
"type": "incident",
1164+
"status": "active",
1165+
"url": "https://status.slack.com/2022-04/bb43914d5ea35037",
1166+
"services": [
1167+
"Notifications"
1168+
],
1169+
"notes": [
1170+
{
1171+
"date_created": "2022-04-21T14:38:16-07:00",
1172+
"body": "We\u0027re seeing noticeable signs of improvement, but are continuing to monitor. We’ll provide new information as soon as it’s available."
1173+
},
1174+
{
1175+
"date_created": "2022-04-21T07:35:00-07:00",
1176+
"body": "We continue to investigate an issue where some Android users are unable to receive notifications, and will report back once we have more news to share."
1177+
},
1178+
{
1179+
"date_created": "2022-04-21T00:17:20-07:00",
1180+
"body": "We are investigating an issue where some Android users are unable to receive notifications, and will report back once we have more news to share."
1181+
}
1182+
]
11571183
}
11581184
]
11591185
}

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
@@ -194,6 +194,7 @@ private File() {
194194
public static final String file_shared = "file_shared";
195195
public static final String file_downloaded_blocked = "file_downloaded_blocked";
196196
public static final String file_malicious_content_detected = "file_malicious_content_detected";
197+
public static final String file_deleted = "file_deleted";
197198
}
198199

199200
public static class Channel {
@@ -244,6 +245,7 @@ private Channel() {
244245
public static final String connect_dm_invite_revoked = "connect_dm_invite_revoked";
245246
public static final String connect_dm_invite_accepted = "connect_dm_invite_accepted";
246247
public static final String connect_dm_invite_ignored = "connect_dm_invite_ignored";
248+
public static final String dm_user_added = "dm_user_added";
247249
}
248250

249251
public static class App {

0 commit comments

Comments
 (0)