@connectedxm/admin 1.7.6 → 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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2767,6 +2767,9 @@ interface BaseEventPackage {
|
|
|
2767
2767
|
description: string | null;
|
|
2768
2768
|
price: number;
|
|
2769
2769
|
isActive: boolean;
|
|
2770
|
+
imageId: string | null;
|
|
2771
|
+
image: BaseImage | null;
|
|
2772
|
+
sortOrder: number;
|
|
2770
2773
|
}
|
|
2771
2774
|
interface EventPackage extends BaseEventPackage {
|
|
2772
2775
|
passes: BaseEventPackagePass[];
|
|
@@ -4462,12 +4465,16 @@ interface EventPackageCreateInputs {
|
|
|
4462
4465
|
description?: string | null;
|
|
4463
4466
|
price: number;
|
|
4464
4467
|
isActive?: boolean;
|
|
4468
|
+
imageId?: string | null;
|
|
4469
|
+
sortOrder?: number | string | null;
|
|
4465
4470
|
}
|
|
4466
4471
|
interface EventPackageUpdateInputs {
|
|
4467
4472
|
name?: string;
|
|
4468
4473
|
description?: string | null;
|
|
4469
4474
|
price?: number;
|
|
4470
4475
|
isActive?: boolean;
|
|
4476
|
+
imageId?: string | null;
|
|
4477
|
+
sortOrder?: number | string | null;
|
|
4471
4478
|
}
|
|
4472
4479
|
interface EventPackagePassCreateInputs {
|
|
4473
4480
|
passTypeId: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2767,6 +2767,9 @@ interface BaseEventPackage {
|
|
|
2767
2767
|
description: string | null;
|
|
2768
2768
|
price: number;
|
|
2769
2769
|
isActive: boolean;
|
|
2770
|
+
imageId: string | null;
|
|
2771
|
+
image: BaseImage | null;
|
|
2772
|
+
sortOrder: number;
|
|
2770
2773
|
}
|
|
2771
2774
|
interface EventPackage extends BaseEventPackage {
|
|
2772
2775
|
passes: BaseEventPackagePass[];
|
|
@@ -4462,12 +4465,16 @@ interface EventPackageCreateInputs {
|
|
|
4462
4465
|
description?: string | null;
|
|
4463
4466
|
price: number;
|
|
4464
4467
|
isActive?: boolean;
|
|
4468
|
+
imageId?: string | null;
|
|
4469
|
+
sortOrder?: number | string | null;
|
|
4465
4470
|
}
|
|
4466
4471
|
interface EventPackageUpdateInputs {
|
|
4467
4472
|
name?: string;
|
|
4468
4473
|
description?: string | null;
|
|
4469
4474
|
price?: number;
|
|
4470
4475
|
isActive?: boolean;
|
|
4476
|
+
imageId?: string | null;
|
|
4477
|
+
sortOrder?: number | string | null;
|
|
4471
4478
|
}
|
|
4472
4479
|
interface EventPackagePassCreateInputs {
|
|
4473
4480
|
passTypeId: string;
|