@connectedxm/admin 1.1.14 → 1.1.16

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.mts CHANGED
@@ -401,6 +401,7 @@ interface BaseAdvertisement {
401
401
  weight: number;
402
402
  accountId: string | null;
403
403
  eventId: string | null;
404
+ enabled: boolean;
404
405
  }
405
406
  interface Advertisement extends BaseAdvertisement {
406
407
  account: BaseAccount | null;
@@ -2537,6 +2538,7 @@ interface AdvertisementCreateInputs {
2537
2538
  accountId?: string | null;
2538
2539
  eventId?: string | null;
2539
2540
  eventOnly?: boolean;
2541
+ enabled?: boolean;
2540
2542
  }
2541
2543
  interface AdvertisementUpdateInputs {
2542
2544
  type?: keyof typeof AdvertisementType | null;
@@ -2550,6 +2552,7 @@ interface AdvertisementUpdateInputs {
2550
2552
  accountId?: string | null;
2551
2553
  eventId?: string | null;
2552
2554
  eventOnly?: boolean;
2555
+ enabled?: boolean;
2553
2556
  }
2554
2557
  interface AnnouncementCreateInputs {
2555
2558
  title: string | null;
@@ -3408,6 +3411,7 @@ interface OrganizationUpdateInputs {
3408
3411
  appIconId?: string | null;
3409
3412
  appAdaptiveIconId?: string | null;
3410
3413
  appSplashScreenId?: string | null;
3414
+ locales?: string[] | null;
3411
3415
  }
3412
3416
  interface PaymentIntentPurchaseMetadataInputs {
3413
3417
  }
package/dist/index.d.ts CHANGED
@@ -401,6 +401,7 @@ interface BaseAdvertisement {
401
401
  weight: number;
402
402
  accountId: string | null;
403
403
  eventId: string | null;
404
+ enabled: boolean;
404
405
  }
405
406
  interface Advertisement extends BaseAdvertisement {
406
407
  account: BaseAccount | null;
@@ -2537,6 +2538,7 @@ interface AdvertisementCreateInputs {
2537
2538
  accountId?: string | null;
2538
2539
  eventId?: string | null;
2539
2540
  eventOnly?: boolean;
2541
+ enabled?: boolean;
2540
2542
  }
2541
2543
  interface AdvertisementUpdateInputs {
2542
2544
  type?: keyof typeof AdvertisementType | null;
@@ -2550,6 +2552,7 @@ interface AdvertisementUpdateInputs {
2550
2552
  accountId?: string | null;
2551
2553
  eventId?: string | null;
2552
2554
  eventOnly?: boolean;
2555
+ enabled?: boolean;
2553
2556
  }
2554
2557
  interface AnnouncementCreateInputs {
2555
2558
  title: string | null;
@@ -3408,6 +3411,7 @@ interface OrganizationUpdateInputs {
3408
3411
  appIconId?: string | null;
3409
3412
  appAdaptiveIconId?: string | null;
3410
3413
  appSplashScreenId?: string | null;
3414
+ locales?: string[] | null;
3411
3415
  }
3412
3416
  interface PaymentIntentPurchaseMetadataInputs {
3413
3417
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "1.1.14",
3
+ "version": "1.1.16",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {