-
Notifications
You must be signed in to change notification settings - Fork 662
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
40 changed files
with
478 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
packages/web-api/src/response/AdminConversationsConvertToPublicResponse.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* eslint-disable */ | ||
///////////////////////////////////////////////////////////////////////////////////////// | ||
// // | ||
// !!! DO NOT EDIT THIS FILE !!! // | ||
// // | ||
// This file is auto-generated by scripts/generate-web-api-types.sh in the repository. // | ||
// Please refer to the script code to learn how to update the source data. // | ||
// // | ||
///////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
import { WebAPICallResult } from '../WebClient'; | ||
export type AdminConversationsConvertToPublicResponse = WebAPICallResult & { | ||
error?: string; | ||
needed?: string; | ||
ok?: boolean; | ||
provided?: string; | ||
response_metadata?: ResponseMetadata; | ||
}; | ||
|
||
export interface ResponseMetadata { | ||
messages?: string[]; | ||
} |
23 changes: 23 additions & 0 deletions
23
packages/web-api/src/response/AdminConversationsLookupResponse.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* eslint-disable */ | ||
///////////////////////////////////////////////////////////////////////////////////////// | ||
// // | ||
// !!! DO NOT EDIT THIS FILE !!! // | ||
// // | ||
// This file is auto-generated by scripts/generate-web-api-types.sh in the repository. // | ||
// Please refer to the script code to learn how to update the source data. // | ||
// // | ||
///////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
import { WebAPICallResult } from '../WebClient'; | ||
export type AdminConversationsLookupResponse = WebAPICallResult & { | ||
channel_ids?: string[]; | ||
error?: string; | ||
needed?: string; | ||
ok?: boolean; | ||
provided?: string; | ||
response_metadata?: ResponseMetadata; | ||
}; | ||
|
||
export interface ResponseMetadata { | ||
next_cursor?: string; | ||
} |
23 changes: 23 additions & 0 deletions
23
packages/web-api/src/response/AdminRolesAddAssignmentsResponse.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* eslint-disable */ | ||
///////////////////////////////////////////////////////////////////////////////////////// | ||
// // | ||
// !!! DO NOT EDIT THIS FILE !!! // | ||
// // | ||
// This file is auto-generated by scripts/generate-web-api-types.sh in the repository. // | ||
// Please refer to the script code to learn how to update the source data. // | ||
// // | ||
///////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
import { WebAPICallResult } from '../WebClient'; | ||
export type AdminRolesAddAssignmentsResponse = WebAPICallResult & { | ||
error?: string; | ||
needed?: string; | ||
ok?: boolean; | ||
provided?: string; | ||
rejected_users?: RejectedUser[]; | ||
}; | ||
|
||
export interface RejectedUser { | ||
error?: string; | ||
id?: string; | ||
} |
31 changes: 31 additions & 0 deletions
31
packages/web-api/src/response/AdminRolesListAssignmentsResponse.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* eslint-disable */ | ||
///////////////////////////////////////////////////////////////////////////////////////// | ||
// // | ||
// !!! DO NOT EDIT THIS FILE !!! // | ||
// // | ||
// This file is auto-generated by scripts/generate-web-api-types.sh in the repository. // | ||
// Please refer to the script code to learn how to update the source data. // | ||
// // | ||
///////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
import { WebAPICallResult } from '../WebClient'; | ||
export type AdminRolesListAssignmentsResponse = WebAPICallResult & { | ||
error?: string; | ||
needed?: string; | ||
ok?: boolean; | ||
provided?: string; | ||
response_metadata?: ResponseMetadata; | ||
role_assignments?: RoleAssignment[]; | ||
}; | ||
|
||
export interface ResponseMetadata { | ||
messages?: string[]; | ||
next_cursor?: string; | ||
} | ||
|
||
export interface RoleAssignment { | ||
date_create?: number; | ||
entity_id?: string; | ||
role_id?: string; | ||
user_id?: string; | ||
} |
17 changes: 17 additions & 0 deletions
17
packages/web-api/src/response/AdminRolesRemoveAssignmentsResponse.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* eslint-disable */ | ||
///////////////////////////////////////////////////////////////////////////////////////// | ||
// // | ||
// !!! DO NOT EDIT THIS FILE !!! // | ||
// // | ||
// This file is auto-generated by scripts/generate-web-api-types.sh in the repository. // | ||
// Please refer to the script code to learn how to update the source data. // | ||
// // | ||
///////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
import { WebAPICallResult } from '../WebClient'; | ||
export type AdminRolesRemoveAssignmentsResponse = WebAPICallResult & { | ||
error?: string; | ||
needed?: string; | ||
ok?: boolean; | ||
provided?: string; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.