@connectedxm/admin 1.0.13 → 1.0.15
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -901,7 +901,7 @@ interface BaseFaq {
|
|
|
901
901
|
slug: string;
|
|
902
902
|
visible: boolean;
|
|
903
903
|
question: string;
|
|
904
|
-
answer
|
|
904
|
+
answer?: string;
|
|
905
905
|
}
|
|
906
906
|
interface Faq extends BaseFaq {
|
|
907
907
|
priority: number;
|
|
@@ -2847,7 +2847,7 @@ interface EventEmailTranslationUpdateInputs {
|
|
|
2847
2847
|
}
|
|
2848
2848
|
interface EventFaqSectionQuestionCreateInputs {
|
|
2849
2849
|
question: string;
|
|
2850
|
-
answer
|
|
2850
|
+
answer?: string;
|
|
2851
2851
|
slug?: string | null;
|
|
2852
2852
|
priority?: number | string | null;
|
|
2853
2853
|
visible?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -901,7 +901,7 @@ interface BaseFaq {
|
|
|
901
901
|
slug: string;
|
|
902
902
|
visible: boolean;
|
|
903
903
|
question: string;
|
|
904
|
-
answer
|
|
904
|
+
answer?: string;
|
|
905
905
|
}
|
|
906
906
|
interface Faq extends BaseFaq {
|
|
907
907
|
priority: number;
|
|
@@ -2847,7 +2847,7 @@ interface EventEmailTranslationUpdateInputs {
|
|
|
2847
2847
|
}
|
|
2848
2848
|
interface EventFaqSectionQuestionCreateInputs {
|
|
2849
2849
|
question: string;
|
|
2850
|
-
answer
|
|
2850
|
+
answer?: string;
|
|
2851
2851
|
slug?: string | null;
|
|
2852
2852
|
priority?: number | string | null;
|
|
2853
2853
|
visible?: boolean;
|