@connectedxm/admin 1.8.2 → 1.8.3
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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2898,6 +2898,8 @@ interface BaseSurvey {
|
|
|
2898
2898
|
submissionsPerAccount: number;
|
|
2899
2899
|
}
|
|
2900
2900
|
interface Survey extends BaseSurvey {
|
|
2901
|
+
replyTo: string | null;
|
|
2902
|
+
emailBody: string | null;
|
|
2901
2903
|
createdAt: string;
|
|
2902
2904
|
updatedAt: string;
|
|
2903
2905
|
}
|
|
@@ -4740,6 +4742,8 @@ interface SurveyCreateInputs {
|
|
|
4740
4742
|
imageId?: string | null;
|
|
4741
4743
|
requireAuth?: boolean;
|
|
4742
4744
|
submissionsPerAccount?: string | number;
|
|
4745
|
+
replyTo?: string | null;
|
|
4746
|
+
emailBody?: string | null;
|
|
4743
4747
|
}
|
|
4744
4748
|
interface SurveyUpdateInputs {
|
|
4745
4749
|
name?: string;
|
|
@@ -4748,10 +4752,13 @@ interface SurveyUpdateInputs {
|
|
|
4748
4752
|
imageId?: string | null;
|
|
4749
4753
|
requireAuth?: boolean;
|
|
4750
4754
|
submissionsPerAccount?: string | number;
|
|
4755
|
+
replyTo?: string | null;
|
|
4756
|
+
emailBody?: string | null;
|
|
4751
4757
|
}
|
|
4752
4758
|
interface SurveyTranslationUpdateInputs {
|
|
4753
4759
|
name?: string | null;
|
|
4754
4760
|
description?: string | null;
|
|
4761
|
+
emailBody?: string | null;
|
|
4755
4762
|
}
|
|
4756
4763
|
interface SurveySubmissionUpdateInputs {
|
|
4757
4764
|
status?: keyof typeof PurchaseStatus;
|
package/dist/index.d.ts
CHANGED
|
@@ -2898,6 +2898,8 @@ interface BaseSurvey {
|
|
|
2898
2898
|
submissionsPerAccount: number;
|
|
2899
2899
|
}
|
|
2900
2900
|
interface Survey extends BaseSurvey {
|
|
2901
|
+
replyTo: string | null;
|
|
2902
|
+
emailBody: string | null;
|
|
2901
2903
|
createdAt: string;
|
|
2902
2904
|
updatedAt: string;
|
|
2903
2905
|
}
|
|
@@ -4740,6 +4742,8 @@ interface SurveyCreateInputs {
|
|
|
4740
4742
|
imageId?: string | null;
|
|
4741
4743
|
requireAuth?: boolean;
|
|
4742
4744
|
submissionsPerAccount?: string | number;
|
|
4745
|
+
replyTo?: string | null;
|
|
4746
|
+
emailBody?: string | null;
|
|
4743
4747
|
}
|
|
4744
4748
|
interface SurveyUpdateInputs {
|
|
4745
4749
|
name?: string;
|
|
@@ -4748,10 +4752,13 @@ interface SurveyUpdateInputs {
|
|
|
4748
4752
|
imageId?: string | null;
|
|
4749
4753
|
requireAuth?: boolean;
|
|
4750
4754
|
submissionsPerAccount?: string | number;
|
|
4755
|
+
replyTo?: string | null;
|
|
4756
|
+
emailBody?: string | null;
|
|
4751
4757
|
}
|
|
4752
4758
|
interface SurveyTranslationUpdateInputs {
|
|
4753
4759
|
name?: string | null;
|
|
4754
4760
|
description?: string | null;
|
|
4761
|
+
emailBody?: string | null;
|
|
4755
4762
|
}
|
|
4756
4763
|
interface SurveySubmissionUpdateInputs {
|
|
4757
4764
|
status?: keyof typeof PurchaseStatus;
|