Skip to content

Commit c8ce619

Browse files
committed
Run all the integration tests - 2024-09-26 PT
1 parent 7ef88bf commit c8ce619

File tree

5 files changed

+9
-26
lines changed

5 files changed

+9
-26
lines changed

json-logs/samples/api/admin.functions.list.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@
3939
"date_updated": 12345,
4040
"date_deleted": 12345,
4141
"form_enabled": false,
42-
"date_released": 12345
42+
"date_released": 12345,
43+
"category_id": "A00000000",
44+
"category_label": ""
4345
}
4446
]
4547
}

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@
6262
""
6363
],
6464
"user": [
65-
"W00000000"
65+
"W00000000",
66+
"U00000000"
6667
]
6768
},
6869
"threads_restricted_to": {

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

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -143,29 +143,6 @@
143143
"avatar_base_url": "https://www.example.com/",
144144
"requires_sponsorship": false
145145
}
146-
},
147-
{
148-
"type": "",
149-
"date_review": 12345,
150-
"reviewing_team": {
151-
"id": "T00000000",
152-
"name": "",
153-
"icon": {
154-
"image_default": false,
155-
"image_34": "https://www.example.com/",
156-
"image_44": "https://www.example.com/",
157-
"image_68": "https://www.example.com/",
158-
"image_88": "https://www.example.com/",
159-
"image_102": "https://www.example.com/",
160-
"image_230": "https://www.example.com/",
161-
"image_132": "https://www.example.com/"
162-
},
163-
"avatar_base_url": "https://www.example.com/",
164-
"is_verified": false,
165-
"domain": "",
166-
"date_created": 12345,
167-
"requires_sponsorship": false
168-
}
169146
}
170147
]
171148
}

json-logs/samples/api/users.list.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@
7575
"is_admin": false,
7676
"is_owner": false,
7777
"teams": [
78-
""
78+
"",
79+
"T00000000"
7980
],
8081
"is_primary_owner": false
8182
},

slack-api-model/src/main/java/com/slack/api/model/admin/AppFunction.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ public class AppFunction {
1919
private Long dateDeleted;
2020
private Long dateReleased;
2121
private Boolean formEnabled;
22+
private String categoryId;
23+
private String categoryLabel;
2224

2325
@Data
2426
public static class InputParameter {

0 commit comments

Comments
 (0)