@connectedxm/admin-sdk 6.33.0 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/.openapi-generator/FILES +7 -26
  2. package/AdminApi.ts +3 -9
  3. package/README.md +10 -39
  4. package/api.ts +239 -1777
  5. package/dist/AdminApi.d.ts +2 -4
  6. package/dist/AdminApi.js +1 -3
  7. package/dist/api.d.ts +148 -951
  8. package/dist/api.js +204 -1308
  9. package/dist/esm/AdminApi.d.ts +2 -4
  10. package/dist/esm/AdminApi.js +2 -4
  11. package/dist/esm/api.d.ts +148 -951
  12. package/dist/esm/api.js +175 -1270
  13. package/docs/BaseEventActivation.md +2 -0
  14. package/docs/BaseThread.md +0 -2
  15. package/docs/BaseThreadMessage.md +4 -2
  16. package/docs/EventActivation.md +2 -0
  17. package/docs/EventActivationCreateInputs.md +2 -0
  18. package/docs/{ThreadCircleType.md → EventActivationRewardType.md} +3 -3
  19. package/docs/EventActivationUpdateInputs.md +2 -0
  20. package/docs/EventsActivationsSessionsApi.md +55 -0
  21. package/docs/EventsApi.md +0 -64
  22. package/docs/GroupsApi.md +0 -64
  23. package/docs/Thread.md +4 -2
  24. package/docs/{ThreadMember.md → ThreadAccount.md} +9 -5
  25. package/docs/{ThreadMemberUpdateInputs.md → ThreadAccountUpdateInputs.md} +5 -3
  26. package/docs/{ThreadCircleCreateInputs.md → ThreadAllOfCount.md} +5 -5
  27. package/docs/ThreadCreateInputs.md +2 -6
  28. package/docs/ThreadMessage.md +6 -2
  29. package/docs/{BaseThreadMember.md → ThreadMessageRead.md} +9 -11
  30. package/docs/{ThreadsMembersApi.md → ThreadsAccountsApi.md} +31 -40
  31. package/docs/ThreadsApi.md +0 -3
  32. package/docs/{UpdateThreadMember200Response.md → UpdateThreadAccount200Response.md} +4 -4
  33. package/package.json +1 -1
  34. package/docs/BaseThreadCircle.md +0 -28
  35. package/docs/BaseThreadCircleAccount.md +0 -24
  36. package/docs/CreateThreadCircle200Response.md +0 -24
  37. package/docs/CreateThreadCircleAccount200Response.md +0 -24
  38. package/docs/GetThreadCircleAccounts200Response.md +0 -26
  39. package/docs/GetThreadCircles200Response.md +0 -26
  40. package/docs/GetThreadMembers200Response.md +0 -26
  41. package/docs/ThreadCircle.md +0 -28
  42. package/docs/ThreadCircleAccount.md +0 -24
  43. package/docs/ThreadCircleAccountCreateInputs.md +0 -22
  44. package/docs/ThreadCircleAccountRole.md +0 -12
  45. package/docs/ThreadCircleAccountUpdateInputs.md +0 -20
  46. package/docs/ThreadCircleUpdateInputs.md +0 -20
  47. package/docs/ThreadInvitation.md +0 -42
  48. package/docs/ThreadInvitationStatus.md +0 -10
  49. package/docs/ThreadMemberRole.md +0 -10
  50. package/docs/ThreadType.md +0 -14
  51. package/docs/ThreadsCirclesAccountsApi.md +0 -299
  52. package/docs/ThreadsCirclesApi.md +0 -348
@@ -1,41 +1,35 @@
1
- # ThreadsMembersApi
1
+ # ThreadsAccountsApi
2
2
 
3
3
  All URIs are relative to *https://admin-api.connected.dev*
4
4
 
5
5
  |Method | HTTP request | Description|
6
6
  |------------- | ------------- | -------------|
7
+ |[**deleteThreadAccount**](#deletethreadaccount) | **DELETE** /threads/{threadId}/accounts/{accountId} | Delete Thread Account|
7
8
  |[**getThreadAccounts**](#getthreadaccounts) | **GET** /threads/{threadId}/accounts | Get Thread Accounts|
8
- |[**getThreadMembers**](#getthreadmembers) | **GET** /threads/{threadId}/members | Get Thread Members|
9
- |[**updateThreadMember**](#updatethreadmember) | **PUT** /threads/{threadId}/members/{accountId} | Update Thread Member|
9
+ |[**updateThreadAccount**](#updatethreadaccount) | **PUT** /threads/{threadId}/accounts/{accountId} | Update Thread Account|
10
10
 
11
- # **getThreadAccounts**
12
- > GetAccounts200Response getThreadAccounts()
11
+ # **deleteThreadAccount**
12
+ > CreateAccountInvitations200Response deleteThreadAccount()
13
13
 
14
- Get Thread Accounts endpoint
14
+ Delete Thread Account endpoint
15
15
 
16
16
  ### Example
17
17
 
18
18
  ```typescript
19
19
  import {
20
- ThreadsMembersApi,
20
+ ThreadsAccountsApi,
21
21
  Configuration
22
22
  } from '@connectedxm/admin-sdk';
23
23
 
24
24
  const configuration = new Configuration();
25
- const apiInstance = new ThreadsMembersApi(configuration);
25
+ const apiInstance = new ThreadsAccountsApi(configuration);
26
26
 
27
27
  let threadId: string; //The thread identifier (default to undefined)
28
- let page: number; //Page number (optional) (default to 1)
29
- let pageSize: number; //Number of items per page (optional) (default to 25)
30
- let orderBy: string; //Field to order by (optional) (default to undefined)
31
- let search: string; //Search query (optional) (default to undefined)
28
+ let accountId: string; //The account identifier (default to undefined)
32
29
 
33
- const { status, data } = await apiInstance.getThreadAccounts(
30
+ const { status, data } = await apiInstance.deleteThreadAccount(
34
31
  threadId,
35
- page,
36
- pageSize,
37
- orderBy,
38
- search
32
+ accountId
39
33
  );
40
34
  ```
41
35
 
@@ -44,15 +38,12 @@ const { status, data } = await apiInstance.getThreadAccounts(
44
38
  |Name | Type | Description | Notes|
45
39
  |------------- | ------------- | ------------- | -------------|
46
40
  | **threadId** | [**string**] | The thread identifier | defaults to undefined|
47
- | **page** | [**number**] | Page number | (optional) defaults to 1|
48
- | **pageSize** | [**number**] | Number of items per page | (optional) defaults to 25|
49
- | **orderBy** | [**string**] | Field to order by | (optional) defaults to undefined|
50
- | **search** | [**string**] | Search query | (optional) defaults to undefined|
41
+ | **accountId** | [**string**] | The account identifier | defaults to undefined|
51
42
 
52
43
 
53
44
  ### Return type
54
45
 
55
- **GetAccounts200Response**
46
+ **CreateAccountInvitations200Response**
56
47
 
57
48
  ### Authorization
58
49
 
@@ -71,21 +62,21 @@ const { status, data } = await apiInstance.getThreadAccounts(
71
62
 
72
63
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
73
64
 
74
- # **getThreadMembers**
75
- > GetThreadMembers200Response getThreadMembers()
65
+ # **getThreadAccounts**
66
+ > GetAccounts200Response getThreadAccounts()
76
67
 
77
- Get Thread Members endpoint
68
+ Get Thread Accounts endpoint
78
69
 
79
70
  ### Example
80
71
 
81
72
  ```typescript
82
73
  import {
83
- ThreadsMembersApi,
74
+ ThreadsAccountsApi,
84
75
  Configuration
85
76
  } from '@connectedxm/admin-sdk';
86
77
 
87
78
  const configuration = new Configuration();
88
- const apiInstance = new ThreadsMembersApi(configuration);
79
+ const apiInstance = new ThreadsAccountsApi(configuration);
89
80
 
90
81
  let threadId: string; //The thread identifier (default to undefined)
91
82
  let page: number; //Page number (optional) (default to 1)
@@ -93,7 +84,7 @@ let pageSize: number; //Number of items per page (optional) (default to 25)
93
84
  let orderBy: string; //Field to order by (optional) (default to undefined)
94
85
  let search: string; //Search query (optional) (default to undefined)
95
86
 
96
- const { status, data } = await apiInstance.getThreadMembers(
87
+ const { status, data } = await apiInstance.getThreadAccounts(
97
88
  threadId,
98
89
  page,
99
90
  pageSize,
@@ -115,7 +106,7 @@ const { status, data } = await apiInstance.getThreadMembers(
115
106
 
116
107
  ### Return type
117
108
 
118
- **GetThreadMembers200Response**
109
+ **GetAccounts200Response**
119
110
 
120
111
  ### Authorization
121
112
 
@@ -134,31 +125,31 @@ const { status, data } = await apiInstance.getThreadMembers(
134
125
 
135
126
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
136
127
 
137
- # **updateThreadMember**
138
- > UpdateThreadMember200Response updateThreadMember(threadMemberUpdateInputs)
128
+ # **updateThreadAccount**
129
+ > UpdateThreadAccount200Response updateThreadAccount(threadAccountUpdateInputs)
139
130
 
140
- Update Thread Member endpoint
131
+ Update Thread Account endpoint
141
132
 
142
133
  ### Example
143
134
 
144
135
  ```typescript
145
136
  import {
146
- ThreadsMembersApi,
137
+ ThreadsAccountsApi,
147
138
  Configuration,
148
- ThreadMemberUpdateInputs
139
+ ThreadAccountUpdateInputs
149
140
  } from '@connectedxm/admin-sdk';
150
141
 
151
142
  const configuration = new Configuration();
152
- const apiInstance = new ThreadsMembersApi(configuration);
143
+ const apiInstance = new ThreadsAccountsApi(configuration);
153
144
 
154
145
  let threadId: string; //The thread identifier (default to undefined)
155
146
  let accountId: string; //The account identifier (default to undefined)
156
- let threadMemberUpdateInputs: ThreadMemberUpdateInputs; //
147
+ let threadAccountUpdateInputs: ThreadAccountUpdateInputs; //
157
148
 
158
- const { status, data } = await apiInstance.updateThreadMember(
149
+ const { status, data } = await apiInstance.updateThreadAccount(
159
150
  threadId,
160
151
  accountId,
161
- threadMemberUpdateInputs
152
+ threadAccountUpdateInputs
162
153
  );
163
154
  ```
164
155
 
@@ -166,14 +157,14 @@ const { status, data } = await apiInstance.updateThreadMember(
166
157
 
167
158
  |Name | Type | Description | Notes|
168
159
  |------------- | ------------- | ------------- | -------------|
169
- | **threadMemberUpdateInputs** | **ThreadMemberUpdateInputs**| | |
160
+ | **threadAccountUpdateInputs** | **ThreadAccountUpdateInputs**| | |
170
161
  | **threadId** | [**string**] | The thread identifier | defaults to undefined|
171
162
  | **accountId** | [**string**] | The account identifier | defaults to undefined|
172
163
 
173
164
 
174
165
  ### Return type
175
166
 
176
- **UpdateThreadMember200Response**
167
+ **UpdateThreadAccount200Response**
177
168
 
178
169
  ### Authorization
179
170
 
@@ -180,14 +180,12 @@ import {
180
180
  const configuration = new Configuration();
181
181
  const apiInstance = new ThreadsApi(configuration);
182
182
 
183
- let type: ThreadType; //Filter by type (optional) (default to undefined)
184
183
  let page: number; //Page number (optional) (default to 1)
185
184
  let pageSize: number; //Number of items per page (optional) (default to 25)
186
185
  let orderBy: string; //Field to order by (optional) (default to undefined)
187
186
  let search: string; //Search query (optional) (default to undefined)
188
187
 
189
188
  const { status, data } = await apiInstance.getThreads(
190
- type,
191
189
  page,
192
190
  pageSize,
193
191
  orderBy,
@@ -199,7 +197,6 @@ const { status, data } = await apiInstance.getThreads(
199
197
 
200
198
  |Name | Type | Description | Notes|
201
199
  |------------- | ------------- | ------------- | -------------|
202
- | **type** | **ThreadType** | Filter by type | (optional) defaults to undefined|
203
200
  | **page** | [**number**] | Page number | (optional) defaults to 1|
204
201
  | **pageSize** | [**number**] | Number of items per page | (optional) defaults to 25|
205
202
  | **orderBy** | [**string**] | Field to order by | (optional) defaults to undefined|
@@ -1,4 +1,4 @@
1
- # UpdateThreadMember200Response
1
+ # UpdateThreadAccount200Response
2
2
 
3
3
 
4
4
  ## Properties
@@ -7,14 +7,14 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **status** | **string** | | [default to undefined]
9
9
  **message** | **string** | | [default to undefined]
10
- **data** | [**ThreadMember**](ThreadMember.md) | | [default to undefined]
10
+ **data** | [**ThreadAccount**](ThreadAccount.md) | | [default to undefined]
11
11
 
12
12
  ## Example
13
13
 
14
14
  ```typescript
15
- import { UpdateThreadMember200Response } from '@connectedxm/admin-sdk';
15
+ import { UpdateThreadAccount200Response } from '@connectedxm/admin-sdk';
16
16
 
17
- const instance: UpdateThreadMember200Response = {
17
+ const instance: UpdateThreadAccount200Response = {
18
18
  status,
19
19
  message,
20
20
  data,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "6.33.0",
3
+ "version": "7.0.0",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1,28 +0,0 @@
1
- # BaseThreadCircle
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **id** | **string** | | [default to undefined]
9
- **name** | **string** | | [default to undefined]
10
- **createdAt** | **string** | | [default to undefined]
11
- **updatedAt** | **string** | | [default to undefined]
12
- **type** | [**ThreadCircleType**](ThreadCircleType.md) | | [default to undefined]
13
-
14
- ## Example
15
-
16
- ```typescript
17
- import { BaseThreadCircle } from '@connectedxm/admin-sdk';
18
-
19
- const instance: BaseThreadCircle = {
20
- id,
21
- name,
22
- createdAt,
23
- updatedAt,
24
- type,
25
- };
26
- ```
27
-
28
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,24 +0,0 @@
1
- # BaseThreadCircleAccount
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **accountId** | **string** | | [default to undefined]
9
- **role** | [**ThreadCircleAccountRole**](ThreadCircleAccountRole.md) | | [default to undefined]
10
- **account** | [**BaseAccount**](BaseAccount.md) | | [default to undefined]
11
-
12
- ## Example
13
-
14
- ```typescript
15
- import { BaseThreadCircleAccount } from '@connectedxm/admin-sdk';
16
-
17
- const instance: BaseThreadCircleAccount = {
18
- accountId,
19
- role,
20
- account,
21
- };
22
- ```
23
-
24
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,24 +0,0 @@
1
- # CreateThreadCircle200Response
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **status** | **string** | | [default to undefined]
9
- **message** | **string** | | [default to undefined]
10
- **data** | [**ThreadCircle**](ThreadCircle.md) | | [default to undefined]
11
-
12
- ## Example
13
-
14
- ```typescript
15
- import { CreateThreadCircle200Response } from '@connectedxm/admin-sdk';
16
-
17
- const instance: CreateThreadCircle200Response = {
18
- status,
19
- message,
20
- data,
21
- };
22
- ```
23
-
24
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,24 +0,0 @@
1
- # CreateThreadCircleAccount200Response
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **status** | **string** | | [default to undefined]
9
- **message** | **string** | | [default to undefined]
10
- **data** | [**ThreadCircleAccount**](ThreadCircleAccount.md) | | [default to undefined]
11
-
12
- ## Example
13
-
14
- ```typescript
15
- import { CreateThreadCircleAccount200Response } from '@connectedxm/admin-sdk';
16
-
17
- const instance: CreateThreadCircleAccount200Response = {
18
- status,
19
- message,
20
- data,
21
- };
22
- ```
23
-
24
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,26 +0,0 @@
1
- # GetThreadCircleAccounts200Response
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **status** | **string** | | [default to undefined]
9
- **message** | **string** | | [default to undefined]
10
- **data** | [**Array<ThreadCircleAccount>**](ThreadCircleAccount.md) | | [default to undefined]
11
- **count** | **number** | | [optional] [default to undefined]
12
-
13
- ## Example
14
-
15
- ```typescript
16
- import { GetThreadCircleAccounts200Response } from '@connectedxm/admin-sdk';
17
-
18
- const instance: GetThreadCircleAccounts200Response = {
19
- status,
20
- message,
21
- data,
22
- count,
23
- };
24
- ```
25
-
26
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,26 +0,0 @@
1
- # GetThreadCircles200Response
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **status** | **string** | | [default to undefined]
9
- **message** | **string** | | [default to undefined]
10
- **data** | [**Array<ThreadCircle>**](ThreadCircle.md) | | [default to undefined]
11
- **count** | **number** | | [optional] [default to undefined]
12
-
13
- ## Example
14
-
15
- ```typescript
16
- import { GetThreadCircles200Response } from '@connectedxm/admin-sdk';
17
-
18
- const instance: GetThreadCircles200Response = {
19
- status,
20
- message,
21
- data,
22
- count,
23
- };
24
- ```
25
-
26
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,26 +0,0 @@
1
- # GetThreadMembers200Response
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **status** | **string** | | [default to undefined]
9
- **message** | **string** | | [default to undefined]
10
- **data** | [**Array<ThreadMember>**](ThreadMember.md) | | [default to undefined]
11
- **count** | **number** | | [optional] [default to undefined]
12
-
13
- ## Example
14
-
15
- ```typescript
16
- import { GetThreadMembers200Response } from '@connectedxm/admin-sdk';
17
-
18
- const instance: GetThreadMembers200Response = {
19
- status,
20
- message,
21
- data,
22
- count,
23
- };
24
- ```
25
-
26
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,28 +0,0 @@
1
- # ThreadCircle
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **id** | **string** | | [default to undefined]
9
- **name** | **string** | | [default to undefined]
10
- **createdAt** | **string** | | [default to undefined]
11
- **updatedAt** | **string** | | [default to undefined]
12
- **type** | [**ThreadCircleType**](ThreadCircleType.md) | | [default to undefined]
13
-
14
- ## Example
15
-
16
- ```typescript
17
- import { ThreadCircle } from '@connectedxm/admin-sdk';
18
-
19
- const instance: ThreadCircle = {
20
- id,
21
- name,
22
- createdAt,
23
- updatedAt,
24
- type,
25
- };
26
- ```
27
-
28
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,24 +0,0 @@
1
- # ThreadCircleAccount
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **accountId** | **string** | | [default to undefined]
9
- **role** | [**ThreadCircleAccountRole**](ThreadCircleAccountRole.md) | | [default to undefined]
10
- **account** | [**BaseAccount**](BaseAccount.md) | | [default to undefined]
11
-
12
- ## Example
13
-
14
- ```typescript
15
- import { ThreadCircleAccount } from '@connectedxm/admin-sdk';
16
-
17
- const instance: ThreadCircleAccount = {
18
- accountId,
19
- role,
20
- account,
21
- };
22
- ```
23
-
24
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,22 +0,0 @@
1
- # ThreadCircleAccountCreateInputs
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **accountId** | **string** | | [default to undefined]
9
- **role** | [**ThreadCircleAccountRole**](ThreadCircleAccountRole.md) | | [default to undefined]
10
-
11
- ## Example
12
-
13
- ```typescript
14
- import { ThreadCircleAccountCreateInputs } from '@connectedxm/admin-sdk';
15
-
16
- const instance: ThreadCircleAccountCreateInputs = {
17
- accountId,
18
- role,
19
- };
20
- ```
21
-
22
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,12 +0,0 @@
1
- # ThreadCircleAccountRole
2
-
3
-
4
- ## Enum
5
-
6
- * `Member` (value: `'member'`)
7
-
8
- * `Manager` (value: `'manager'`)
9
-
10
- * `Invited` (value: `'invited'`)
11
-
12
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,20 +0,0 @@
1
- # ThreadCircleAccountUpdateInputs
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **role** | [**ThreadCircleAccountRole**](ThreadCircleAccountRole.md) | | [optional] [default to undefined]
9
-
10
- ## Example
11
-
12
- ```typescript
13
- import { ThreadCircleAccountUpdateInputs } from '@connectedxm/admin-sdk';
14
-
15
- const instance: ThreadCircleAccountUpdateInputs = {
16
- role,
17
- };
18
- ```
19
-
20
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,20 +0,0 @@
1
- # ThreadCircleUpdateInputs
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **name** | **string** | | [optional] [default to undefined]
9
-
10
- ## Example
11
-
12
- ```typescript
13
- import { ThreadCircleUpdateInputs } from '@connectedxm/admin-sdk';
14
-
15
- const instance: ThreadCircleUpdateInputs = {
16
- name,
17
- };
18
- ```
19
-
20
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,42 +0,0 @@
1
- # ThreadInvitation
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **id** | **string** | | [default to undefined]
9
- **organizationId** | **string** | | [default to undefined]
10
- **threadId** | **string** | | [default to undefined]
11
- **thread** | [**BaseThread**](BaseThread.md) | | [default to undefined]
12
- **status** | [**ThreadInvitationStatus**](ThreadInvitationStatus.md) | | [default to undefined]
13
- **role** | [**ThreadMemberRole**](ThreadMemberRole.md) | | [default to undefined]
14
- **invitedById** | **string** | | [default to undefined]
15
- **invitedBy** | [**BaseAccount**](BaseAccount.md) | | [default to undefined]
16
- **invitedId** | **string** | | [default to undefined]
17
- **invited** | [**BaseAccount**](BaseAccount.md) | | [default to undefined]
18
- **createdAt** | **string** | | [default to undefined]
19
- **updatedAt** | **string** | | [default to undefined]
20
-
21
- ## Example
22
-
23
- ```typescript
24
- import { ThreadInvitation } from '@connectedxm/admin-sdk';
25
-
26
- const instance: ThreadInvitation = {
27
- id,
28
- organizationId,
29
- threadId,
30
- thread,
31
- status,
32
- role,
33
- invitedById,
34
- invitedBy,
35
- invitedId,
36
- invited,
37
- createdAt,
38
- updatedAt,
39
- };
40
- ```
41
-
42
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,10 +0,0 @@
1
- # ThreadInvitationStatus
2
-
3
-
4
- ## Enum
5
-
6
- * `Invited` (value: `'invited'`)
7
-
8
- * `Rejected` (value: `'rejected'`)
9
-
10
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,10 +0,0 @@
1
- # ThreadMemberRole
2
-
3
-
4
- ## Enum
5
-
6
- * `Member` (value: `'member'`)
7
-
8
- * `Moderator` (value: `'moderator'`)
9
-
10
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,14 +0,0 @@
1
- # ThreadType
2
-
3
-
4
- ## Enum
5
-
6
- * `Circle` (value: `'circle'`)
7
-
8
- * `Group` (value: `'group'`)
9
-
10
- * `Event` (value: `'event'`)
11
-
12
- * `Stream` (value: `'stream'`)
13
-
14
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)