@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 CHANGED
@@ -901,7 +901,7 @@ interface BaseFaq {
901
901
  slug: string;
902
902
  visible: boolean;
903
903
  question: string;
904
- answer: string;
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: string;
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: string;
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: string;
2850
+ answer?: string;
2851
2851
  slug?: string | null;
2852
2852
  priority?: number | string | null;
2853
2853
  visible?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {