@connectedxm/admin 1.4.15 → 1.4.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 +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -801,6 +801,7 @@ interface BaseEventPage {
|
|
|
801
801
|
id: string;
|
|
802
802
|
slug: string;
|
|
803
803
|
title: string;
|
|
804
|
+
active: boolean;
|
|
804
805
|
subtitle: string | null;
|
|
805
806
|
sortOrder: number;
|
|
806
807
|
}
|
|
@@ -3156,6 +3157,7 @@ interface EventFaqSectionUpdateInputs {
|
|
|
3156
3157
|
interface EventPageCreateInputs {
|
|
3157
3158
|
slug?: string | null;
|
|
3158
3159
|
title: string;
|
|
3160
|
+
active?: boolean;
|
|
3159
3161
|
subtitle?: string | null;
|
|
3160
3162
|
html?: string | null;
|
|
3161
3163
|
sortOrder?: number | string | null;
|
|
@@ -3168,6 +3170,7 @@ interface EventPageTranslationUpdateInputs {
|
|
|
3168
3170
|
interface EventPageUpdateInputs {
|
|
3169
3171
|
slug?: string | null;
|
|
3170
3172
|
title?: string | null;
|
|
3173
|
+
active?: boolean;
|
|
3171
3174
|
subtitle?: string | null;
|
|
3172
3175
|
html?: string | null;
|
|
3173
3176
|
sortOrder?: number | string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -801,6 +801,7 @@ interface BaseEventPage {
|
|
|
801
801
|
id: string;
|
|
802
802
|
slug: string;
|
|
803
803
|
title: string;
|
|
804
|
+
active: boolean;
|
|
804
805
|
subtitle: string | null;
|
|
805
806
|
sortOrder: number;
|
|
806
807
|
}
|
|
@@ -3156,6 +3157,7 @@ interface EventFaqSectionUpdateInputs {
|
|
|
3156
3157
|
interface EventPageCreateInputs {
|
|
3157
3158
|
slug?: string | null;
|
|
3158
3159
|
title: string;
|
|
3160
|
+
active?: boolean;
|
|
3159
3161
|
subtitle?: string | null;
|
|
3160
3162
|
html?: string | null;
|
|
3161
3163
|
sortOrder?: number | string | null;
|
|
@@ -3168,6 +3170,7 @@ interface EventPageTranslationUpdateInputs {
|
|
|
3168
3170
|
interface EventPageUpdateInputs {
|
|
3169
3171
|
slug?: string | null;
|
|
3170
3172
|
title?: string | null;
|
|
3173
|
+
active?: boolean;
|
|
3171
3174
|
subtitle?: string | null;
|
|
3172
3175
|
html?: string | null;
|
|
3173
3176
|
sortOrder?: number | string | null;
|