@connectedxm/admin 1.7.5 → 1.7.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/dist/index.d.mts CHANGED
@@ -1414,6 +1414,9 @@ interface BaseEventPass {
1414
1414
  id: string;
1415
1415
  eventId: string;
1416
1416
  attendeeId: string;
1417
+ attendee: {
1418
+ accountId: string;
1419
+ };
1417
1420
  alternateId: number;
1418
1421
  ticketId: string | null;
1419
1422
  ticket: BaseEventPassType | null;
@@ -2764,6 +2767,9 @@ interface BaseEventPackage {
2764
2767
  description: string | null;
2765
2768
  price: number;
2766
2769
  isActive: boolean;
2770
+ imageId: string | null;
2771
+ image: BaseImage | null;
2772
+ sortOrder: number;
2767
2773
  }
2768
2774
  interface EventPackage extends BaseEventPackage {
2769
2775
  passes: BaseEventPackagePass[];
@@ -4459,12 +4465,16 @@ interface EventPackageCreateInputs {
4459
4465
  description?: string | null;
4460
4466
  price: number;
4461
4467
  isActive?: boolean;
4468
+ imageId?: string | null;
4469
+ sortOrder?: number | string | null;
4462
4470
  }
4463
4471
  interface EventPackageUpdateInputs {
4464
4472
  name?: string;
4465
4473
  description?: string | null;
4466
4474
  price?: number;
4467
4475
  isActive?: boolean;
4476
+ imageId?: string | null;
4477
+ sortOrder?: number | string | null;
4468
4478
  }
4469
4479
  interface EventPackagePassCreateInputs {
4470
4480
  passTypeId: string;
package/dist/index.d.ts CHANGED
@@ -1414,6 +1414,9 @@ interface BaseEventPass {
1414
1414
  id: string;
1415
1415
  eventId: string;
1416
1416
  attendeeId: string;
1417
+ attendee: {
1418
+ accountId: string;
1419
+ };
1417
1420
  alternateId: number;
1418
1421
  ticketId: string | null;
1419
1422
  ticket: BaseEventPassType | null;
@@ -2764,6 +2767,9 @@ interface BaseEventPackage {
2764
2767
  description: string | null;
2765
2768
  price: number;
2766
2769
  isActive: boolean;
2770
+ imageId: string | null;
2771
+ image: BaseImage | null;
2772
+ sortOrder: number;
2767
2773
  }
2768
2774
  interface EventPackage extends BaseEventPackage {
2769
2775
  passes: BaseEventPackagePass[];
@@ -4459,12 +4465,16 @@ interface EventPackageCreateInputs {
4459
4465
  description?: string | null;
4460
4466
  price: number;
4461
4467
  isActive?: boolean;
4468
+ imageId?: string | null;
4469
+ sortOrder?: number | string | null;
4462
4470
  }
4463
4471
  interface EventPackageUpdateInputs {
4464
4472
  name?: string;
4465
4473
  description?: string | null;
4466
4474
  price?: number;
4467
4475
  isActive?: boolean;
4476
+ imageId?: string | null;
4477
+ sortOrder?: number | string | null;
4468
4478
  }
4469
4479
  interface EventPackagePassCreateInputs {
4470
4480
  passTypeId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "1.7.5",
3
+ "version": "1.7.7",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {