Skip to content

Commit 7859986

Browse files
committed
Run all the integration tests - 2024-08-16 PT
1 parent 71ed00d commit 7859986

File tree

6 files changed

+43
-5
lines changed

6 files changed

+43
-5
lines changed

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,14 @@
5555
"file_id": "F00000000",
5656
"is_empty": false,
5757
"quip_thread_id": ""
58-
}
58+
},
59+
"tabs": [
60+
{
61+
"id": "",
62+
"label": "",
63+
"type": ""
64+
}
65+
]
5966
}
6067
},
6168
"warning": "",

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,14 @@
7878
"file_id": "F00000000",
7979
"is_empty": false,
8080
"quip_thread_id": ""
81-
}
81+
},
82+
"tabs": [
83+
{
84+
"id": "",
85+
"label": "",
86+
"type": ""
87+
}
88+
]
8289
}
8390
}
8491
],

json-logs/samples/api/search.all.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102755,6 +102755,7 @@
102755102755
"ts": "0000000000.000000",
102756102756
"channel_name": "",
102757102757
"team_id": "T00000000",
102758+
"access": "",
102758102759
"share_user_id": "U00000000",
102759102760
"source": ""
102760102761
}
@@ -102777,6 +102778,7 @@
102777102778
"ts": "0000000000.000000",
102778102779
"channel_name": "",
102779102780
"team_id": "T00000000",
102781+
"access": "",
102780102782
"share_user_id": "U00000000",
102781102783
"source": ""
102782102784
}
@@ -102849,7 +102851,8 @@
102849102851
"sent_to_self": false,
102850102852
"bot_id": "B00000000",
102851102853
"editors": [
102852-
""
102854+
"",
102855+
"U00000000"
102853102856
],
102854102857
"url_static_preview": "https://www.example.com/",
102855102858
"quip_thread_id": "",

json-logs/samples/api/search.files.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
"ts": "0000000000.000000",
8585
"channel_name": "",
8686
"team_id": "T00000000",
87+
"access": "",
8788
"share_user_id": "U00000000",
8889
"source": ""
8990
}
@@ -106,6 +107,7 @@
106107
"ts": "0000000000.000000",
107108
"channel_name": "",
108109
"team_id": "T00000000",
110+
"access": "",
109111
"share_user_id": "U00000000",
110112
"source": ""
111113
}
@@ -178,7 +180,8 @@
178180
"sent_to_self": false,
179181
"bot_id": "B00000000",
180182
"editors": [
181-
""
183+
"",
184+
"U00000000"
182185
],
183186
"url_static_preview": "https://www.example.com/",
184187
"quip_thread_id": "",

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,14 @@
7777
"type": [
7878
""
7979
]
80-
}
80+
},
81+
"tabs": [
82+
{
83+
"id": "",
84+
"label": "",
85+
"type": ""
86+
}
87+
]
8188
}
8289
}
8390
],

slack-api-model/src/main/java/com/slack/api/model/ConversationProperties.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public class ConversationProperties {
1919
private Boolean huddlesRestricted;
2020
private Boolean atHereRestricted;
2121
private Boolean atChannelRestricted;
22+
private List<Tab> tabs;
2223

2324
@Data
2425
@Builder
@@ -47,4 +48,14 @@ public static class Canvas {
4748
private String quipThreadId;
4849
private Boolean isEmpty;
4950
}
51+
52+
@Data
53+
@Builder
54+
@NoArgsConstructor
55+
@AllArgsConstructor
56+
public static class Tab {
57+
private String id;
58+
private String label;
59+
private Boolean type;
60+
}
5061
}

0 commit comments

Comments
 (0)