@connectedxm/admin-sdk 7.0.5 → 7.0.6

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 CHANGED
@@ -2538,8 +2538,8 @@ export interface BaseThread {
2538
2538
  export interface BaseThreadMessage {
2539
2539
  'id': string;
2540
2540
  'body': string;
2541
- 'accountId': string | null;
2542
- 'threadAccount': ThreadAccount | null;
2541
+ 'accountId': string;
2542
+ 'threadAccount': ThreadAccount;
2543
2543
  'createdAt': string;
2544
2544
  'editedAt': string | null;
2545
2545
  'sentAt': string;
@@ -13625,12 +13625,13 @@ export interface Thread {
13625
13625
  export interface ThreadAccount {
13626
13626
  'id': string;
13627
13627
  'threadId': string;
13628
- 'accountId': string;
13629
- 'account': BaseAccount;
13628
+ 'accountId': string | null;
13629
+ 'account': BaseAccount | null;
13630
13630
  'lastReadAt': string | null;
13631
13631
  'typingAt': string | null;
13632
13632
  'notifications': boolean;
13633
13633
  'blocked': boolean;
13634
+ 'leftAt': string | null;
13634
13635
  'createdAt': string;
13635
13636
  'updatedAt': string;
13636
13637
  }
@@ -13649,8 +13650,8 @@ export interface ThreadCreateInputs {
13649
13650
  export interface ThreadMessage {
13650
13651
  'id': string;
13651
13652
  'body': string;
13652
- 'accountId': string | null;
13653
- 'threadAccount': ThreadAccount | null;
13653
+ 'accountId': string;
13654
+ 'threadAccount': ThreadAccount;
13654
13655
  'createdAt': string;
13655
13656
  'editedAt': string | null;
13656
13657
  'sentAt': string;
package/dist/api.d.ts CHANGED
@@ -2356,8 +2356,8 @@ export interface BaseThread {
2356
2356
  export interface BaseThreadMessage {
2357
2357
  'id': string;
2358
2358
  'body': string;
2359
- 'accountId': string | null;
2360
- 'threadAccount': ThreadAccount | null;
2359
+ 'accountId': string;
2360
+ 'threadAccount': ThreadAccount;
2361
2361
  'createdAt': string;
2362
2362
  'editedAt': string | null;
2363
2363
  'sentAt': string;
@@ -12128,12 +12128,13 @@ export interface Thread {
12128
12128
  export interface ThreadAccount {
12129
12129
  'id': string;
12130
12130
  'threadId': string;
12131
- 'accountId': string;
12132
- 'account': BaseAccount;
12131
+ 'accountId': string | null;
12132
+ 'account': BaseAccount | null;
12133
12133
  'lastReadAt': string | null;
12134
12134
  'typingAt': string | null;
12135
12135
  'notifications': boolean;
12136
12136
  'blocked': boolean;
12137
+ 'leftAt': string | null;
12137
12138
  'createdAt': string;
12138
12139
  'updatedAt': string;
12139
12140
  }
@@ -12152,8 +12153,8 @@ export interface ThreadCreateInputs {
12152
12153
  export interface ThreadMessage {
12153
12154
  'id': string;
12154
12155
  'body': string;
12155
- 'accountId': string | null;
12156
- 'threadAccount': ThreadAccount | null;
12156
+ 'accountId': string;
12157
+ 'threadAccount': ThreadAccount;
12157
12158
  'createdAt': string;
12158
12159
  'editedAt': string | null;
12159
12160
  'sentAt': string;
package/dist/esm/api.d.ts CHANGED
@@ -2356,8 +2356,8 @@ export interface BaseThread {
2356
2356
  export interface BaseThreadMessage {
2357
2357
  'id': string;
2358
2358
  'body': string;
2359
- 'accountId': string | null;
2360
- 'threadAccount': ThreadAccount | null;
2359
+ 'accountId': string;
2360
+ 'threadAccount': ThreadAccount;
2361
2361
  'createdAt': string;
2362
2362
  'editedAt': string | null;
2363
2363
  'sentAt': string;
@@ -12128,12 +12128,13 @@ export interface Thread {
12128
12128
  export interface ThreadAccount {
12129
12129
  'id': string;
12130
12130
  'threadId': string;
12131
- 'accountId': string;
12132
- 'account': BaseAccount;
12131
+ 'accountId': string | null;
12132
+ 'account': BaseAccount | null;
12133
12133
  'lastReadAt': string | null;
12134
12134
  'typingAt': string | null;
12135
12135
  'notifications': boolean;
12136
12136
  'blocked': boolean;
12137
+ 'leftAt': string | null;
12137
12138
  'createdAt': string;
12138
12139
  'updatedAt': string;
12139
12140
  }
@@ -12152,8 +12153,8 @@ export interface ThreadCreateInputs {
12152
12153
  export interface ThreadMessage {
12153
12154
  'id': string;
12154
12155
  'body': string;
12155
- 'accountId': string | null;
12156
- 'threadAccount': ThreadAccount | null;
12156
+ 'accountId': string;
12157
+ 'threadAccount': ThreadAccount;
12157
12158
  'createdAt': string;
12158
12159
  'editedAt': string | null;
12159
12160
  'sentAt': string;
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
13
13
  **typingAt** | **string** | | [default to undefined]
14
14
  **notifications** | **boolean** | | [default to undefined]
15
15
  **blocked** | **boolean** | | [default to undefined]
16
+ **leftAt** | **string** | | [default to undefined]
16
17
  **createdAt** | **string** | | [default to undefined]
17
18
  **updatedAt** | **string** | | [default to undefined]
18
19
 
@@ -30,6 +31,7 @@ const instance: ThreadAccount = {
30
31
  typingAt,
31
32
  notifications,
32
33
  blocked,
34
+ leftAt,
33
35
  createdAt,
34
36
  updatedAt,
35
37
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "7.0.5",
3
+ "version": "7.0.6",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {