Skip to content

Commit

Permalink
Run all the integration tests - 2024-11-19 PT
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Nov 20, 2024
1 parent ac3ede2 commit f84a5c5
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 3 deletions.
7 changes: 7 additions & 0 deletions json-logs/samples/api/admin.conversations.search.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,13 @@
"label": "",
"type": ""
}
],
"tabz": [
{
"id": "",
"label": "",
"type": ""
}
]
}
}
Expand Down
7 changes: 7 additions & 0 deletions json-logs/samples/api/conversations.join.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@
"label": "",
"type": ""
}
],
"tabz": [
{
"id": "",
"label": "",
"type": ""
}
]
}
},
Expand Down
10 changes: 8 additions & 2 deletions json-logs/samples/api/conversations.list.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@
""
],
"user": [
"W00000000",
"U00000000"
"W00000000"
]
},
"threads_restricted_to": {
Expand All @@ -85,6 +84,13 @@
"label": "",
"type": ""
}
],
"tabz": [
{
"id": "",
"label": "",
"type": ""
}
]
}
}
Expand Down
7 changes: 7 additions & 0 deletions json-logs/samples/api/users.conversations.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,13 @@
"label": "",
"type": ""
}
],
"tabz": [
{
"id": "",
"label": "",
"type": ""
}
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public class ConversationProperties {
private Boolean atHereRestricted;
private Boolean atChannelRestricted;
private List<Tab> tabs;
private List<Tabz> tabz;

@Data
@Builder
Expand Down Expand Up @@ -56,6 +57,39 @@ public static class Canvas {
public static class Tab {
private String id;
private String label;
private Boolean type;
private String type;
private TabData data;
private Boolean isDisabled;
}

@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public static class Tabz {
private String id;
private String label;
private String type;
private TabData data;
private Boolean isDisabled;
}

@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public static class TabData {
private String fileId;
private String viewId;
private String accessLevel;
private String sharedTs;
private String recordRelatedListId;
private String salesforceListViewId;
private String listsChannelTabDefaultRefineViewId;
private String objectType;
private String folderBookmarkId;
private String botUserId;
private String appId;
private Boolean muteEditUpdates;
}
}

0 comments on commit f84a5c5

Please sign in to comment.