@connectedxm/admin 1.4.8 → 1.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.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2110,6 +2110,7 @@ interface BaseEventPassType {
|
|
|
2110
2110
|
id: string;
|
|
2111
2111
|
slug: string;
|
|
2112
2112
|
active: boolean;
|
|
2113
|
+
cancelable: boolean;
|
|
2113
2114
|
transferable: boolean;
|
|
2114
2115
|
featured: boolean;
|
|
2115
2116
|
visibility: PassTypeVisibility;
|
|
@@ -3864,6 +3865,7 @@ interface PassTypeCreateInputs {
|
|
|
3864
3865
|
visibility?: keyof typeof PassTypeVisibility | null;
|
|
3865
3866
|
featured?: boolean;
|
|
3866
3867
|
active?: boolean;
|
|
3868
|
+
cancelable?: boolean;
|
|
3867
3869
|
transferable?: boolean;
|
|
3868
3870
|
slug?: string | null;
|
|
3869
3871
|
longDescription?: string | null;
|
|
@@ -3882,6 +3884,7 @@ interface PassTypeUpdateInputs {
|
|
|
3882
3884
|
visibility?: keyof typeof PassTypeVisibility | null;
|
|
3883
3885
|
featured?: boolean;
|
|
3884
3886
|
active?: boolean;
|
|
3887
|
+
cancelable?: boolean;
|
|
3885
3888
|
transferable?: boolean;
|
|
3886
3889
|
name?: string | null;
|
|
3887
3890
|
slug?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -2110,6 +2110,7 @@ interface BaseEventPassType {
|
|
|
2110
2110
|
id: string;
|
|
2111
2111
|
slug: string;
|
|
2112
2112
|
active: boolean;
|
|
2113
|
+
cancelable: boolean;
|
|
2113
2114
|
transferable: boolean;
|
|
2114
2115
|
featured: boolean;
|
|
2115
2116
|
visibility: PassTypeVisibility;
|
|
@@ -3864,6 +3865,7 @@ interface PassTypeCreateInputs {
|
|
|
3864
3865
|
visibility?: keyof typeof PassTypeVisibility | null;
|
|
3865
3866
|
featured?: boolean;
|
|
3866
3867
|
active?: boolean;
|
|
3868
|
+
cancelable?: boolean;
|
|
3867
3869
|
transferable?: boolean;
|
|
3868
3870
|
slug?: string | null;
|
|
3869
3871
|
longDescription?: string | null;
|
|
@@ -3882,6 +3884,7 @@ interface PassTypeUpdateInputs {
|
|
|
3882
3884
|
visibility?: keyof typeof PassTypeVisibility | null;
|
|
3883
3885
|
featured?: boolean;
|
|
3884
3886
|
active?: boolean;
|
|
3887
|
+
cancelable?: boolean;
|
|
3885
3888
|
transferable?: boolean;
|
|
3886
3889
|
name?: string | null;
|
|
3887
3890
|
slug?: string | null;
|