Skip to content

Commit f84a5c5

Browse files
committed
Run all the integration tests - 2024-11-19 PT
1 parent ac3ede2 commit f84a5c5

File tree

5 files changed

+64
-3
lines changed

5 files changed

+64
-3
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,13 @@
100100
"label": "",
101101
"type": ""
102102
}
103+
],
104+
"tabz": [
105+
{
106+
"id": "",
107+
"label": "",
108+
"type": ""
109+
}
103110
]
104111
}
105112
}

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,13 @@
6262
"label": "",
6363
"type": ""
6464
}
65+
],
66+
"tabz": [
67+
{
68+
"id": "",
69+
"label": "",
70+
"type": ""
71+
}
6572
]
6673
}
6774
},

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

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@
6262
""
6363
],
6464
"user": [
65-
"W00000000",
66-
"U00000000"
65+
"W00000000"
6766
]
6867
},
6968
"threads_restricted_to": {
@@ -85,6 +84,13 @@
8584
"label": "",
8685
"type": ""
8786
}
87+
],
88+
"tabz": [
89+
{
90+
"id": "",
91+
"label": "",
92+
"type": ""
93+
}
8894
]
8995
}
9096
}

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,13 @@
8484
"label": "",
8585
"type": ""
8686
}
87+
],
88+
"tabz": [
89+
{
90+
"id": "",
91+
"label": "",
92+
"type": ""
93+
}
8794
]
8895
}
8996
}

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

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public class ConversationProperties {
2020
private Boolean atHereRestricted;
2121
private Boolean atChannelRestricted;
2222
private List<Tab> tabs;
23+
private List<Tabz> tabz;
2324

2425
@Data
2526
@Builder
@@ -56,6 +57,39 @@ public static class Canvas {
5657
public static class Tab {
5758
private String id;
5859
private String label;
59-
private Boolean type;
60+
private String type;
61+
private TabData data;
62+
private Boolean isDisabled;
63+
}
64+
65+
@Data
66+
@Builder
67+
@NoArgsConstructor
68+
@AllArgsConstructor
69+
public static class Tabz {
70+
private String id;
71+
private String label;
72+
private String type;
73+
private TabData data;
74+
private Boolean isDisabled;
75+
}
76+
77+
@Data
78+
@Builder
79+
@NoArgsConstructor
80+
@AllArgsConstructor
81+
public static class TabData {
82+
private String fileId;
83+
private String viewId;
84+
private String accessLevel;
85+
private String sharedTs;
86+
private String recordRelatedListId;
87+
private String salesforceListViewId;
88+
private String listsChannelTabDefaultRefineViewId;
89+
private String objectType;
90+
private String folderBookmarkId;
91+
private String botUserId;
92+
private String appId;
93+
private Boolean muteEditUpdates;
6094
}
6195
}

0 commit comments

Comments
 (0)