@wix/forms 1.0.168 → 1.0.170

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/forms",
3
- "version": "1.0.168",
3
+ "version": "1.0.170",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -24,8 +24,8 @@
24
24
  "dependencies": {
25
25
  "@wix/forms_form-spam-submission-reports": "1.0.23",
26
26
  "@wix/forms_form-submissions": "1.0.30",
27
- "@wix/forms_forms": "1.0.39",
28
- "@wix/forms_submissions": "1.0.72"
27
+ "@wix/forms_forms": "1.0.41",
28
+ "@wix/forms_submissions": "1.0.74"
29
29
  },
30
30
  "devDependencies": {
31
31
  "glob": "^10.4.1",
@@ -50,5 +50,5 @@
50
50
  "fqdn": ""
51
51
  }
52
52
  },
53
- "falconPackageHash": "249eacd0b28acea021aa5882c1902c4778e4b5a01f7e0565c04bdd3c"
53
+ "falconPackageHash": "9b3531569406811a3ec909d264f3cfbc8ee6809d606921b2371ad3e0"
54
54
  }
@@ -555,6 +555,8 @@ interface Form$1 {
555
555
  fieldGroups?: FieldGroup$1[];
556
556
  /** Message shown when the form is disabled */
557
557
  disabledFormMessage?: RichContent$1;
558
+ /** Id of the source form. */
559
+ sourceFormId?: string | null;
558
560
  }
559
561
  declare enum RequiredIndicator$1 {
560
562
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -587,6 +589,11 @@ interface FormField$1 {
587
589
  view?: Record<string, any> | null;
588
590
  /** Details identifying field, which is extension of other entity */
589
591
  dataExtensionsDetails?: DataExtensionsDetails$1;
592
+ /**
593
+ * Whether the field is read only.
594
+ * Default: false
595
+ */
596
+ readOnly?: boolean;
590
597
  }
591
598
  interface StringType$1 extends StringTypeFormatOptionsOneOf$1 {
592
599
  /** DATE format options */
@@ -3287,6 +3294,11 @@ interface InputField$1 extends InputFieldInputTypeOptionsOneOf$1 {
3287
3294
  inputType?: InputType$1;
3288
3295
  /** Mapping to contacts, telling to what contact property field input value should be saved. */
3289
3296
  contactMapping?: FormFieldContactInfo$1;
3297
+ /**
3298
+ * Whether the field is read only.
3299
+ * Default: false
3300
+ */
3301
+ readOnly?: boolean;
3290
3302
  }
3291
3303
  /** @oneof */
3292
3304
  interface InputFieldInputTypeOptionsOneOf$1 {
@@ -4179,6 +4191,7 @@ interface FormFieldNonNullableFields {
4179
4191
  pii: boolean;
4180
4192
  hidden: boolean;
4181
4193
  dataExtensionsDetails?: DataExtensionsDetailsNonNullableFields;
4194
+ readOnly: boolean;
4182
4195
  }
4183
4196
  interface PluginContainerDataWidthNonNullableFields {
4184
4197
  size: WidthType$1;
@@ -4648,6 +4661,7 @@ interface InputFieldNonNullableFields {
4648
4661
  required: boolean;
4649
4662
  inputType: InputType$1;
4650
4663
  contactMapping?: FormFieldContactInfoNonNullableFields;
4664
+ readOnly: boolean;
4651
4665
  }
4652
4666
  interface HeaderNonNullableFields {
4653
4667
  content?: RichContentNonNullableFields;
@@ -4927,6 +4941,8 @@ interface UpdateForm {
4927
4941
  fieldGroups?: FieldGroup$1[];
4928
4942
  /** Message shown when the form is disabled */
4929
4943
  disabledFormMessage?: RichContent$1;
4944
+ /** Id of the source form. */
4945
+ sourceFormId?: string | null;
4930
4946
  }
4931
4947
  interface DeleteFormOptions {
4932
4948
  /**
@@ -6566,6 +6582,8 @@ interface Form {
6566
6582
  fieldGroups?: FieldGroup[];
6567
6583
  /** Message shown when the form is disabled */
6568
6584
  disabledFormMessage?: RichContent;
6585
+ /** Id of the source form. */
6586
+ sourceFormId?: string | null;
6569
6587
  }
6570
6588
  declare enum RequiredIndicator {
6571
6589
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -6598,6 +6616,11 @@ interface FormField {
6598
6616
  view?: Record<string, any> | null;
6599
6617
  /** Details identifying field, which is extension of other entity */
6600
6618
  dataExtensionsDetails?: DataExtensionsDetails;
6619
+ /**
6620
+ * Whether the field is read only.
6621
+ * Default: false
6622
+ */
6623
+ readOnly?: boolean;
6601
6624
  }
6602
6625
  interface StringType extends StringTypeFormatOptionsOneOf {
6603
6626
  /** DATE format options */
@@ -9298,6 +9321,11 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
9298
9321
  inputType?: InputType;
9299
9322
  /** Mapping to contacts, telling to what contact property field input value should be saved. */
9300
9323
  contactMapping?: FormFieldContactInfo;
9324
+ /**
9325
+ * Whether the field is read only.
9326
+ * Default: false
9327
+ */
9328
+ readOnly?: boolean;
9301
9329
  }
9302
9330
  /** @oneof */
9303
9331
  interface InputFieldInputTypeOptionsOneOf {
@@ -555,6 +555,8 @@ interface Form$1 {
555
555
  fieldGroups?: FieldGroup$1[];
556
556
  /** Message shown when the form is disabled */
557
557
  disabledFormMessage?: RichContent$1;
558
+ /** Id of the source form. */
559
+ sourceFormId?: string | null;
558
560
  }
559
561
  declare enum RequiredIndicator$1 {
560
562
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -587,6 +589,11 @@ interface FormField$1 {
587
589
  view?: Record<string, any> | null;
588
590
  /** Details identifying field, which is extension of other entity */
589
591
  dataExtensionsDetails?: DataExtensionsDetails$1;
592
+ /**
593
+ * Whether the field is read only.
594
+ * Default: false
595
+ */
596
+ readOnly?: boolean;
590
597
  }
591
598
  interface StringType$1 extends StringTypeFormatOptionsOneOf$1 {
592
599
  /** DATE format options */
@@ -3287,6 +3294,11 @@ interface InputField$1 extends InputFieldInputTypeOptionsOneOf$1 {
3287
3294
  inputType?: InputType$1;
3288
3295
  /** Mapping to contacts, telling to what contact property field input value should be saved. */
3289
3296
  contactMapping?: FormFieldContactInfo$1;
3297
+ /**
3298
+ * Whether the field is read only.
3299
+ * Default: false
3300
+ */
3301
+ readOnly?: boolean;
3290
3302
  }
3291
3303
  /** @oneof */
3292
3304
  interface InputFieldInputTypeOptionsOneOf$1 {
@@ -4179,6 +4191,7 @@ interface FormFieldNonNullableFields {
4179
4191
  pii: boolean;
4180
4192
  hidden: boolean;
4181
4193
  dataExtensionsDetails?: DataExtensionsDetailsNonNullableFields;
4194
+ readOnly: boolean;
4182
4195
  }
4183
4196
  interface PluginContainerDataWidthNonNullableFields {
4184
4197
  size: WidthType$1;
@@ -4648,6 +4661,7 @@ interface InputFieldNonNullableFields {
4648
4661
  required: boolean;
4649
4662
  inputType: InputType$1;
4650
4663
  contactMapping?: FormFieldContactInfoNonNullableFields;
4664
+ readOnly: boolean;
4651
4665
  }
4652
4666
  interface HeaderNonNullableFields {
4653
4667
  content?: RichContentNonNullableFields;
@@ -4927,6 +4941,8 @@ interface UpdateForm {
4927
4941
  fieldGroups?: FieldGroup$1[];
4928
4942
  /** Message shown when the form is disabled */
4929
4943
  disabledFormMessage?: RichContent$1;
4944
+ /** Id of the source form. */
4945
+ sourceFormId?: string | null;
4930
4946
  }
4931
4947
  interface DeleteFormOptions {
4932
4948
  /**
@@ -6566,6 +6582,8 @@ interface Form {
6566
6582
  fieldGroups?: FieldGroup[];
6567
6583
  /** Message shown when the form is disabled */
6568
6584
  disabledFormMessage?: RichContent;
6585
+ /** Id of the source form. */
6586
+ sourceFormId?: string | null;
6569
6587
  }
6570
6588
  declare enum RequiredIndicator {
6571
6589
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -6598,6 +6616,11 @@ interface FormField {
6598
6616
  view?: Record<string, any> | null;
6599
6617
  /** Details identifying field, which is extension of other entity */
6600
6618
  dataExtensionsDetails?: DataExtensionsDetails;
6619
+ /**
6620
+ * Whether the field is read only.
6621
+ * Default: false
6622
+ */
6623
+ readOnly?: boolean;
6601
6624
  }
6602
6625
  interface StringType extends StringTypeFormatOptionsOneOf {
6603
6626
  /** DATE format options */
@@ -9298,6 +9321,11 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
9298
9321
  inputType?: InputType;
9299
9322
  /** Mapping to contacts, telling to what contact property field input value should be saved. */
9300
9323
  contactMapping?: FormFieldContactInfo;
9324
+ /**
9325
+ * Whether the field is read only.
9326
+ * Default: false
9327
+ */
9328
+ readOnly?: boolean;
9301
9329
  }
9302
9330
  /** @oneof */
9303
9331
  interface InputFieldInputTypeOptionsOneOf {
@@ -77,6 +77,8 @@ interface Form$1 {
77
77
  fieldGroups?: FieldGroup$1[];
78
78
  /** Message shown when the form is disabled */
79
79
  disabledFormMessage?: RichContent$1;
80
+ /** Id of the source form. */
81
+ sourceFormId?: string | null;
80
82
  }
81
83
  declare enum RequiredIndicator$1 {
82
84
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -109,6 +111,11 @@ interface FormField$1 {
109
111
  view?: Record<string, any> | null;
110
112
  /** Details identifying field, which is extension of other entity */
111
113
  dataExtensionsDetails?: DataExtensionsDetails$1;
114
+ /**
115
+ * Whether the field is read only.
116
+ * Default: false
117
+ */
118
+ readOnly?: boolean;
112
119
  }
113
120
  interface StringType$1 extends StringTypeFormatOptionsOneOf$1 {
114
121
  /** DATE format options */
@@ -2803,6 +2810,11 @@ interface InputField$1 extends InputFieldInputTypeOptionsOneOf$1 {
2803
2810
  inputType?: InputType$1;
2804
2811
  /** Mapping to contacts, telling to what contact property field input value should be saved. */
2805
2812
  contactMapping?: FormFieldContactInfo$1;
2813
+ /**
2814
+ * Whether the field is read only.
2815
+ * Default: false
2816
+ */
2817
+ readOnly?: boolean;
2806
2818
  }
2807
2819
  /** @oneof */
2808
2820
  interface InputFieldInputTypeOptionsOneOf$1 {
@@ -3519,6 +3531,7 @@ interface FormFieldNonNullableFields$1 {
3519
3531
  pii: boolean;
3520
3532
  hidden: boolean;
3521
3533
  dataExtensionsDetails?: DataExtensionsDetailsNonNullableFields$1;
3534
+ readOnly: boolean;
3522
3535
  }
3523
3536
  interface PluginContainerDataWidthNonNullableFields$1 {
3524
3537
  size: WidthType$1;
@@ -3994,6 +4007,7 @@ interface InputFieldNonNullableFields$1 {
3994
4007
  required: boolean;
3995
4008
  inputType: InputType$1;
3996
4009
  contactMapping?: FormFieldContactInfoNonNullableFields$1;
4010
+ readOnly: boolean;
3997
4011
  }
3998
4012
  interface HeaderNonNullableFields$1 {
3999
4013
  content?: RichContentNonNullableFields$1;
@@ -4258,6 +4272,8 @@ interface Form {
4258
4272
  fieldGroups?: FieldGroup[];
4259
4273
  /** Message shown when the form is disabled */
4260
4274
  disabledFormMessage?: RichContent;
4275
+ /** Id of the source form. */
4276
+ sourceFormId?: string | null;
4261
4277
  }
4262
4278
  declare enum RequiredIndicator {
4263
4279
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -4290,6 +4306,11 @@ interface FormField {
4290
4306
  view?: Record<string, any> | null;
4291
4307
  /** Details identifying field, which is extension of other entity */
4292
4308
  dataExtensionsDetails?: DataExtensionsDetails;
4309
+ /**
4310
+ * Whether the field is read only.
4311
+ * Default: false
4312
+ */
4313
+ readOnly?: boolean;
4293
4314
  }
4294
4315
  interface StringType extends StringTypeFormatOptionsOneOf {
4295
4316
  /** DATE format options */
@@ -6961,6 +6982,11 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
6961
6982
  inputType?: InputType;
6962
6983
  /** Mapping to contacts, telling to what contact property field input value should be saved. */
6963
6984
  contactMapping?: FormFieldContactInfo;
6985
+ /**
6986
+ * Whether the field is read only.
6987
+ * Default: false
6988
+ */
6989
+ readOnly?: boolean;
6964
6990
  }
6965
6991
  /** @oneof */
6966
6992
  interface InputFieldInputTypeOptionsOneOf {
@@ -7677,6 +7703,7 @@ interface FormFieldNonNullableFields {
7677
7703
  pii: boolean;
7678
7704
  hidden: boolean;
7679
7705
  dataExtensionsDetails?: DataExtensionsDetailsNonNullableFields;
7706
+ readOnly: boolean;
7680
7707
  }
7681
7708
  interface PluginContainerDataWidthNonNullableFields {
7682
7709
  size: WidthType;
@@ -8146,6 +8173,7 @@ interface InputFieldNonNullableFields {
8146
8173
  required: boolean;
8147
8174
  inputType: InputType;
8148
8175
  contactMapping?: FormFieldContactInfoNonNullableFields;
8176
+ readOnly: boolean;
8149
8177
  }
8150
8178
  interface HeaderNonNullableFields {
8151
8179
  content?: RichContentNonNullableFields;