@connectedxm/admin 2.4.6 → 2.4.9

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/dist/index.d.cts CHANGED
@@ -209,6 +209,7 @@ interface BaseAccount {
209
209
  country: string | null;
210
210
  internalRefId: string | null;
211
211
  accountTiers: BaseTier[];
212
+ chatConnected: boolean;
212
213
  subscriptions: {
213
214
  subscriptionProduct: {
214
215
  tiers: BaseTier[];
@@ -2630,7 +2631,7 @@ interface BaseThreadMessage {
2630
2631
  id: string;
2631
2632
  body: string;
2632
2633
  accountId: string | null;
2633
- member: BaseThreadViewer | null;
2634
+ viewer: BaseThreadViewer | null;
2634
2635
  createdAt: string;
2635
2636
  editedAt: string | null;
2636
2637
  sentAt: string;
@@ -5329,6 +5330,7 @@ interface EventSponsorshipTranslationUpdateInputs {
5329
5330
  }
5330
5331
  interface PaymentUpdateInputs {
5331
5332
  captured?: boolean;
5333
+ registrationId?: string | null;
5332
5334
  }
5333
5335
  interface CustomModuleCreateInputs {
5334
5336
  name: string;
package/dist/index.d.ts CHANGED
@@ -209,6 +209,7 @@ interface BaseAccount {
209
209
  country: string | null;
210
210
  internalRefId: string | null;
211
211
  accountTiers: BaseTier[];
212
+ chatConnected: boolean;
212
213
  subscriptions: {
213
214
  subscriptionProduct: {
214
215
  tiers: BaseTier[];
@@ -2630,7 +2631,7 @@ interface BaseThreadMessage {
2630
2631
  id: string;
2631
2632
  body: string;
2632
2633
  accountId: string | null;
2633
- member: BaseThreadViewer | null;
2634
+ viewer: BaseThreadViewer | null;
2634
2635
  createdAt: string;
2635
2636
  editedAt: string | null;
2636
2637
  sentAt: string;
@@ -5329,6 +5330,7 @@ interface EventSponsorshipTranslationUpdateInputs {
5329
5330
  }
5330
5331
  interface PaymentUpdateInputs {
5331
5332
  captured?: boolean;
5333
+ registrationId?: string | null;
5332
5334
  }
5333
5335
  interface CustomModuleCreateInputs {
5334
5336
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "2.4.6",
3
+ "version": "2.4.9",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",