@connectedxm/admin 2.3.16 → 2.3.18

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
@@ -47,6 +47,7 @@ interface BaseOrganizationModule {
47
47
  interface OrganizationModule extends BaseOrganizationModule {
48
48
  enabledTiers: BaseTier[];
49
49
  editableTiers: BaseTier[];
50
+ options: object | null;
50
51
  createdAt: string;
51
52
  updatedAt: string;
52
53
  }
@@ -1369,6 +1370,7 @@ interface Organization extends BaseOrganization {
1369
1370
  appAdaptiveIcon: BaseImage | null;
1370
1371
  appSplashScreenId: string | null;
1371
1372
  appSplashScreen: BaseImage | null;
1373
+ appSplashScreenColor: string | null;
1372
1374
  darkIconId: string | null;
1373
1375
  darkIcon: BaseImage | null;
1374
1376
  darkLogoId: string | null;
@@ -4416,6 +4418,7 @@ interface OrganizationUpdateInputs {
4416
4418
  appIconId?: string | null;
4417
4419
  appAdaptiveIconId?: string | null;
4418
4420
  appSplashScreenId?: string | null;
4421
+ appSplashScreenColor?: string | null;
4419
4422
  locale?: string | null;
4420
4423
  locales?: string[] | null;
4421
4424
  inviteOnly?: boolean;
@@ -4832,6 +4835,7 @@ interface OrganizationModuleUpdateInputs {
4832
4835
  requireAuth?: boolean;
4833
4836
  enabled?: boolean;
4834
4837
  editable?: boolean;
4838
+ options?: object | null;
4835
4839
  }
4836
4840
  interface PassTypePriceScheduleCreateInputs {
4837
4841
  ticketId?: string | null;
package/dist/index.d.ts CHANGED
@@ -47,6 +47,7 @@ interface BaseOrganizationModule {
47
47
  interface OrganizationModule extends BaseOrganizationModule {
48
48
  enabledTiers: BaseTier[];
49
49
  editableTiers: BaseTier[];
50
+ options: object | null;
50
51
  createdAt: string;
51
52
  updatedAt: string;
52
53
  }
@@ -1369,6 +1370,7 @@ interface Organization extends BaseOrganization {
1369
1370
  appAdaptiveIcon: BaseImage | null;
1370
1371
  appSplashScreenId: string | null;
1371
1372
  appSplashScreen: BaseImage | null;
1373
+ appSplashScreenColor: string | null;
1372
1374
  darkIconId: string | null;
1373
1375
  darkIcon: BaseImage | null;
1374
1376
  darkLogoId: string | null;
@@ -4416,6 +4418,7 @@ interface OrganizationUpdateInputs {
4416
4418
  appIconId?: string | null;
4417
4419
  appAdaptiveIconId?: string | null;
4418
4420
  appSplashScreenId?: string | null;
4421
+ appSplashScreenColor?: string | null;
4419
4422
  locale?: string | null;
4420
4423
  locales?: string[] | null;
4421
4424
  inviteOnly?: boolean;
@@ -4832,6 +4835,7 @@ interface OrganizationModuleUpdateInputs {
4832
4835
  requireAuth?: boolean;
4833
4836
  enabled?: boolean;
4834
4837
  editable?: boolean;
4838
+ options?: object | null;
4835
4839
  }
4836
4840
  interface PassTypePriceScheduleCreateInputs {
4837
4841
  ticketId?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "2.3.16",
3
+ "version": "2.3.18",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",