@connectedxm/admin-sdk 7.0.6 → 7.0.7
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.
- package/api.ts +0 -2
- package/dist/api.d.ts +0 -2
- package/dist/esm/api.d.ts +0 -2
- package/docs/BaseThreadMessage.md +0 -2
- package/docs/ThreadMessage.md +0 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2538,7 +2538,6 @@ export interface BaseThread {
|
|
|
2538
2538
|
export interface BaseThreadMessage {
|
|
2539
2539
|
'id': string;
|
|
2540
2540
|
'body': string;
|
|
2541
|
-
'accountId': string;
|
|
2542
2541
|
'threadAccount': ThreadAccount;
|
|
2543
2542
|
'createdAt': string;
|
|
2544
2543
|
'editedAt': string | null;
|
|
@@ -13650,7 +13649,6 @@ export interface ThreadCreateInputs {
|
|
|
13650
13649
|
export interface ThreadMessage {
|
|
13651
13650
|
'id': string;
|
|
13652
13651
|
'body': string;
|
|
13653
|
-
'accountId': string;
|
|
13654
13652
|
'threadAccount': ThreadAccount;
|
|
13655
13653
|
'createdAt': string;
|
|
13656
13654
|
'editedAt': string | null;
|
package/dist/api.d.ts
CHANGED
|
@@ -2356,7 +2356,6 @@ export interface BaseThread {
|
|
|
2356
2356
|
export interface BaseThreadMessage {
|
|
2357
2357
|
'id': string;
|
|
2358
2358
|
'body': string;
|
|
2359
|
-
'accountId': string;
|
|
2360
2359
|
'threadAccount': ThreadAccount;
|
|
2361
2360
|
'createdAt': string;
|
|
2362
2361
|
'editedAt': string | null;
|
|
@@ -12153,7 +12152,6 @@ export interface ThreadCreateInputs {
|
|
|
12153
12152
|
export interface ThreadMessage {
|
|
12154
12153
|
'id': string;
|
|
12155
12154
|
'body': string;
|
|
12156
|
-
'accountId': string;
|
|
12157
12155
|
'threadAccount': ThreadAccount;
|
|
12158
12156
|
'createdAt': string;
|
|
12159
12157
|
'editedAt': string | null;
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2356,7 +2356,6 @@ export interface BaseThread {
|
|
|
2356
2356
|
export interface BaseThreadMessage {
|
|
2357
2357
|
'id': string;
|
|
2358
2358
|
'body': string;
|
|
2359
|
-
'accountId': string;
|
|
2360
2359
|
'threadAccount': ThreadAccount;
|
|
2361
2360
|
'createdAt': string;
|
|
2362
2361
|
'editedAt': string | null;
|
|
@@ -12153,7 +12152,6 @@ export interface ThreadCreateInputs {
|
|
|
12153
12152
|
export interface ThreadMessage {
|
|
12154
12153
|
'id': string;
|
|
12155
12154
|
'body': string;
|
|
12156
|
-
'accountId': string;
|
|
12157
12155
|
'threadAccount': ThreadAccount;
|
|
12158
12156
|
'createdAt': string;
|
|
12159
12157
|
'editedAt': string | null;
|
|
@@ -7,7 +7,6 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **string** | | [default to undefined]
|
|
9
9
|
**body** | **string** | | [default to undefined]
|
|
10
|
-
**accountId** | **string** | | [default to undefined]
|
|
11
10
|
**threadAccount** | [**ThreadAccount**](ThreadAccount.md) | | [default to undefined]
|
|
12
11
|
**createdAt** | **string** | | [default to undefined]
|
|
13
12
|
**editedAt** | **string** | | [default to undefined]
|
|
@@ -22,7 +21,6 @@ import { BaseThreadMessage } from '@connectedxm/admin-sdk';
|
|
|
22
21
|
const instance: BaseThreadMessage = {
|
|
23
22
|
id,
|
|
24
23
|
body,
|
|
25
|
-
accountId,
|
|
26
24
|
threadAccount,
|
|
27
25
|
createdAt,
|
|
28
26
|
editedAt,
|
package/docs/ThreadMessage.md
CHANGED
|
@@ -7,7 +7,6 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **string** | | [default to undefined]
|
|
9
9
|
**body** | **string** | | [default to undefined]
|
|
10
|
-
**accountId** | **string** | | [default to undefined]
|
|
11
10
|
**threadAccount** | [**ThreadAccount**](ThreadAccount.md) | | [default to undefined]
|
|
12
11
|
**createdAt** | **string** | | [default to undefined]
|
|
13
12
|
**editedAt** | **string** | | [default to undefined]
|
|
@@ -31,7 +30,6 @@ import { ThreadMessage } from '@connectedxm/admin-sdk';
|
|
|
31
30
|
const instance: ThreadMessage = {
|
|
32
31
|
id,
|
|
33
32
|
body,
|
|
34
|
-
accountId,
|
|
35
33
|
threadAccount,
|
|
36
34
|
createdAt,
|
|
37
35
|
editedAt,
|