@connectedxm/admin 1.4.25 → 1.4.26
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 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3709,9 +3709,9 @@ interface EventQuestionChoiceUpdateInputs {
|
|
|
3709
3709
|
interface EventQuestionCreateInputs {
|
|
3710
3710
|
name: string;
|
|
3711
3711
|
type: keyof typeof RegistrationQuestionType | null;
|
|
3712
|
-
sectionId?:
|
|
3713
|
-
questionId?:
|
|
3714
|
-
choiceId?:
|
|
3712
|
+
sectionId?: string;
|
|
3713
|
+
questionId?: string;
|
|
3714
|
+
choiceId?: string;
|
|
3715
3715
|
required?: boolean;
|
|
3716
3716
|
label?: string | null;
|
|
3717
3717
|
placeholder?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -3709,9 +3709,9 @@ interface EventQuestionChoiceUpdateInputs {
|
|
|
3709
3709
|
interface EventQuestionCreateInputs {
|
|
3710
3710
|
name: string;
|
|
3711
3711
|
type: keyof typeof RegistrationQuestionType | null;
|
|
3712
|
-
sectionId?:
|
|
3713
|
-
questionId?:
|
|
3714
|
-
choiceId?:
|
|
3712
|
+
sectionId?: string;
|
|
3713
|
+
questionId?: string;
|
|
3714
|
+
choiceId?: string;
|
|
3715
3715
|
required?: boolean;
|
|
3716
3716
|
label?: string | null;
|
|
3717
3717
|
placeholder?: string | null;
|