@wix/forms 1.0.172 → 1.0.173

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.172",
3
+ "version": "1.0.173",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -22,10 +22,10 @@
22
22
  "service-plugins"
23
23
  ],
24
24
  "dependencies": {
25
- "@wix/forms_form-spam-submission-reports": "1.0.23",
25
+ "@wix/forms_form-spam-submission-reports": "1.0.24",
26
26
  "@wix/forms_form-submissions": "1.0.31",
27
27
  "@wix/forms_forms": "1.0.42",
28
- "@wix/forms_submissions": "1.0.76"
28
+ "@wix/forms_submissions": "1.0.77"
29
29
  },
30
30
  "devDependencies": {
31
31
  "glob": "^10.4.1",
@@ -50,5 +50,5 @@
50
50
  "fqdn": ""
51
51
  }
52
52
  },
53
- "falconPackageHash": "deb78cd89ce1be03a541f28552156f1cf5be22c912a81984ea1e6874"
53
+ "falconPackageHash": "64607e6665b7d37ff484aefb1fff095ce3ca1b94d995f446df8452b9"
54
54
  }
@@ -5471,9 +5471,13 @@ interface ExtendedFields$1 {
5471
5471
  }
5472
5472
  declare enum SubmissionStatus$1 {
5473
5473
  UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
5474
+ /** A submission is created, but has not yet been recorded in the Wix Forms collection. */
5474
5475
  PENDING = "PENDING",
5476
+ /** A submission is recorded in the Wix Forms collection. */
5475
5477
  CONFIRMED = "CONFIRMED",
5478
+ /** A form submission requiring payment is created. */
5476
5479
  PAYMENT_WAITING = "PAYMENT_WAITING",
5480
+ /** An order of a form submission is canceled. */
5477
5481
  PAYMENT_CANCELED = "PAYMENT_CANCELED"
5478
5482
  }
5479
5483
  interface OrderDetails$1 {
@@ -5501,13 +5505,7 @@ interface FormSubmission$1 {
5501
5505
  * @readonly
5502
5506
  */
5503
5507
  namespace?: string;
5504
- /**
5505
- * Status of the submission.
5506
- * - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
5507
- * - `PAYMENT_WAITING`: A form submission requiring payment is created.
5508
- * - `PAYMENT_CANCELED`: An order of a form submission is canceled.
5509
- * - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
5510
- */
5508
+ /** Status of the submission. */
5511
5509
  status?: SubmissionStatus$1;
5512
5510
  /** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
5513
5511
  submissions?: Record<string, any>;
@@ -6349,13 +6347,7 @@ interface FormSubmission {
6349
6347
  * @readonly
6350
6348
  */
6351
6349
  namespace?: string;
6352
- /**
6353
- * Status of the submission.
6354
- * - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
6355
- * - `PAYMENT_WAITING`: A form submission requiring payment is created.
6356
- * - `PAYMENT_CANCELED`: An order of a form submission is canceled.
6357
- * - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
6358
- */
6350
+ /** Status of the submission. */
6359
6351
  status?: SubmissionStatus;
6360
6352
  /** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
6361
6353
  submissions?: Record<string, any>;
@@ -6390,9 +6382,13 @@ interface FormSubmission {
6390
6382
  }
6391
6383
  declare enum SubmissionStatus {
6392
6384
  UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
6385
+ /** A submission is created, but has not yet been recorded in the Wix Forms collection. */
6393
6386
  PENDING = "PENDING",
6387
+ /** A submission is recorded in the Wix Forms collection. */
6394
6388
  CONFIRMED = "CONFIRMED",
6389
+ /** A form submission requiring payment is created. */
6395
6390
  PAYMENT_WAITING = "PAYMENT_WAITING",
6391
+ /** An order of a form submission is canceled. */
6396
6392
  PAYMENT_CANCELED = "PAYMENT_CANCELED"
6397
6393
  }
6398
6394
  interface Submitter extends SubmitterSubmitterOneOf {
@@ -6492,7 +6488,9 @@ interface MarketingSubscriptionDetails {
6492
6488
  optInLevel?: OptInLevel;
6493
6489
  }
6494
6490
  declare enum OptInLevel {
6491
+ /** Single confirmation. */
6495
6492
  SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
6493
+ /** Double confirmation. */
6496
6494
  DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
6497
6495
  }
6498
6496
  interface SubmissionContactMappingSkipped {
@@ -10514,13 +10512,7 @@ interface UpdateSubmission {
10514
10512
  * @readonly
10515
10513
  */
10516
10514
  namespace?: string;
10517
- /**
10518
- * Status of the submission.
10519
- * - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
10520
- * - `PAYMENT_WAITING`: A form submission requiring payment is created.
10521
- * - `PAYMENT_CANCELED`: An order of a form submission is canceled.
10522
- * - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
10523
- */
10515
+ /** Status of the submission. */
10524
10516
  status?: SubmissionStatus;
10525
10517
  /** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
10526
10518
  submissions?: Record<string, any>;
@@ -5471,9 +5471,13 @@ interface ExtendedFields$1 {
5471
5471
  }
5472
5472
  declare enum SubmissionStatus$1 {
5473
5473
  UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
5474
+ /** A submission is created, but has not yet been recorded in the Wix Forms collection. */
5474
5475
  PENDING = "PENDING",
5476
+ /** A submission is recorded in the Wix Forms collection. */
5475
5477
  CONFIRMED = "CONFIRMED",
5478
+ /** A form submission requiring payment is created. */
5476
5479
  PAYMENT_WAITING = "PAYMENT_WAITING",
5480
+ /** An order of a form submission is canceled. */
5477
5481
  PAYMENT_CANCELED = "PAYMENT_CANCELED"
5478
5482
  }
5479
5483
  interface OrderDetails$1 {
@@ -5501,13 +5505,7 @@ interface FormSubmission$1 {
5501
5505
  * @readonly
5502
5506
  */
5503
5507
  namespace?: string;
5504
- /**
5505
- * Status of the submission.
5506
- * - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
5507
- * - `PAYMENT_WAITING`: A form submission requiring payment is created.
5508
- * - `PAYMENT_CANCELED`: An order of a form submission is canceled.
5509
- * - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
5510
- */
5508
+ /** Status of the submission. */
5511
5509
  status?: SubmissionStatus$1;
5512
5510
  /** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
5513
5511
  submissions?: Record<string, any>;
@@ -6349,13 +6347,7 @@ interface FormSubmission {
6349
6347
  * @readonly
6350
6348
  */
6351
6349
  namespace?: string;
6352
- /**
6353
- * Status of the submission.
6354
- * - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
6355
- * - `PAYMENT_WAITING`: A form submission requiring payment is created.
6356
- * - `PAYMENT_CANCELED`: An order of a form submission is canceled.
6357
- * - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
6358
- */
6350
+ /** Status of the submission. */
6359
6351
  status?: SubmissionStatus;
6360
6352
  /** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
6361
6353
  submissions?: Record<string, any>;
@@ -6390,9 +6382,13 @@ interface FormSubmission {
6390
6382
  }
6391
6383
  declare enum SubmissionStatus {
6392
6384
  UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
6385
+ /** A submission is created, but has not yet been recorded in the Wix Forms collection. */
6393
6386
  PENDING = "PENDING",
6387
+ /** A submission is recorded in the Wix Forms collection. */
6394
6388
  CONFIRMED = "CONFIRMED",
6389
+ /** A form submission requiring payment is created. */
6395
6390
  PAYMENT_WAITING = "PAYMENT_WAITING",
6391
+ /** An order of a form submission is canceled. */
6396
6392
  PAYMENT_CANCELED = "PAYMENT_CANCELED"
6397
6393
  }
6398
6394
  interface Submitter extends SubmitterSubmitterOneOf {
@@ -6492,7 +6488,9 @@ interface MarketingSubscriptionDetails {
6492
6488
  optInLevel?: OptInLevel;
6493
6489
  }
6494
6490
  declare enum OptInLevel {
6491
+ /** Single confirmation. */
6495
6492
  SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
6493
+ /** Double confirmation. */
6496
6494
  DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
6497
6495
  }
6498
6496
  interface SubmissionContactMappingSkipped {
@@ -10514,13 +10512,7 @@ interface UpdateSubmission {
10514
10512
  * @readonly
10515
10513
  */
10516
10514
  namespace?: string;
10517
- /**
10518
- * Status of the submission.
10519
- * - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
10520
- * - `PAYMENT_WAITING`: A form submission requiring payment is created.
10521
- * - `PAYMENT_CANCELED`: An order of a form submission is canceled.
10522
- * - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
10523
- */
10515
+ /** Status of the submission. */
10524
10516
  status?: SubmissionStatus;
10525
10517
  /** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
10526
10518
  submissions?: Record<string, any>;
@@ -8560,9 +8560,13 @@ interface ExtendedFields$3 {
8560
8560
  }
8561
8561
  declare enum SubmissionStatus$3 {
8562
8562
  UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
8563
+ /** A submission is created, but has not yet been recorded in the Wix Forms collection. */
8563
8564
  PENDING = "PENDING",
8565
+ /** A submission is recorded in the Wix Forms collection. */
8564
8566
  CONFIRMED = "CONFIRMED",
8567
+ /** A form submission requiring payment is created. */
8565
8568
  PAYMENT_WAITING = "PAYMENT_WAITING",
8569
+ /** An order of a form submission is canceled. */
8566
8570
  PAYMENT_CANCELED = "PAYMENT_CANCELED"
8567
8571
  }
8568
8572
  interface OrderDetails$3 {
@@ -8590,13 +8594,7 @@ interface FormSubmission$3 {
8590
8594
  * @readonly
8591
8595
  */
8592
8596
  namespace?: string;
8593
- /**
8594
- * Status of the submission.
8595
- * - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
8596
- * - `PAYMENT_WAITING`: A form submission requiring payment is created.
8597
- * - `PAYMENT_CANCELED`: An order of a form submission is canceled.
8598
- * - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
8599
- */
8597
+ /** Status of the submission. */
8600
8598
  status?: SubmissionStatus$3;
8601
8599
  /** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
8602
8600
  submissions?: Record<string, any>;
@@ -9079,9 +9077,13 @@ interface ExtendedFields$2 {
9079
9077
  }
9080
9078
  declare enum SubmissionStatus$2 {
9081
9079
  UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
9080
+ /** A submission is created, but has not yet been recorded in the Wix Forms collection. */
9082
9081
  PENDING = "PENDING",
9082
+ /** A submission is recorded in the Wix Forms collection. */
9083
9083
  CONFIRMED = "CONFIRMED",
9084
+ /** A form submission requiring payment is created. */
9084
9085
  PAYMENT_WAITING = "PAYMENT_WAITING",
9086
+ /** An order of a form submission is canceled. */
9085
9087
  PAYMENT_CANCELED = "PAYMENT_CANCELED"
9086
9088
  }
9087
9089
  interface OrderDetails$2 {
@@ -9109,13 +9111,7 @@ interface FormSubmission$2 {
9109
9111
  * @readonly
9110
9112
  */
9111
9113
  namespace?: string;
9112
- /**
9113
- * Status of the submission.
9114
- * - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
9115
- * - `PAYMENT_WAITING`: A form submission requiring payment is created.
9116
- * - `PAYMENT_CANCELED`: An order of a form submission is canceled.
9117
- * - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
9118
- */
9114
+ /** Status of the submission. */
9119
9115
  status?: SubmissionStatus$2;
9120
9116
  /** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
9121
9117
  submissions?: Record<string, any>;
@@ -9560,13 +9556,7 @@ interface FormSubmission$1 {
9560
9556
  * @readonly
9561
9557
  */
9562
9558
  namespace?: string;
9563
- /**
9564
- * Status of the submission.
9565
- * - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
9566
- * - `PAYMENT_WAITING`: A form submission requiring payment is created.
9567
- * - `PAYMENT_CANCELED`: An order of a form submission is canceled.
9568
- * - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
9569
- */
9559
+ /** Status of the submission. */
9570
9560
  status?: SubmissionStatus$1;
9571
9561
  /** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
9572
9562
  submissions?: Record<string, any>;
@@ -9601,9 +9591,13 @@ interface FormSubmission$1 {
9601
9591
  }
9602
9592
  declare enum SubmissionStatus$1 {
9603
9593
  UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
9594
+ /** A submission is created, but has not yet been recorded in the Wix Forms collection. */
9604
9595
  PENDING = "PENDING",
9596
+ /** A submission is recorded in the Wix Forms collection. */
9605
9597
  CONFIRMED = "CONFIRMED",
9598
+ /** A form submission requiring payment is created. */
9606
9599
  PAYMENT_WAITING = "PAYMENT_WAITING",
9600
+ /** An order of a form submission is canceled. */
9607
9601
  PAYMENT_CANCELED = "PAYMENT_CANCELED"
9608
9602
  }
9609
9603
  interface Submitter$1 extends SubmitterSubmitterOneOf$1 {
@@ -10288,13 +10282,7 @@ interface FormSubmission {
10288
10282
  * @readonly
10289
10283
  */
10290
10284
  namespace?: string;
10291
- /**
10292
- * Status of the submission.
10293
- * - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
10294
- * - `PAYMENT_WAITING`: A form submission requiring payment is created.
10295
- * - `PAYMENT_CANCELED`: An order of a form submission is canceled.
10296
- * - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
10297
- */
10285
+ /** Status of the submission. */
10298
10286
  status?: SubmissionStatus;
10299
10287
  /** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
10300
10288
  submissions?: Record<string, any>;
@@ -10329,9 +10317,13 @@ interface FormSubmission {
10329
10317
  }
10330
10318
  declare enum SubmissionStatus {
10331
10319
  UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
10320
+ /** A submission is created, but has not yet been recorded in the Wix Forms collection. */
10332
10321
  PENDING = "PENDING",
10322
+ /** A submission is recorded in the Wix Forms collection. */
10333
10323
  CONFIRMED = "CONFIRMED",
10324
+ /** A form submission requiring payment is created. */
10334
10325
  PAYMENT_WAITING = "PAYMENT_WAITING",
10326
+ /** An order of a form submission is canceled. */
10335
10327
  PAYMENT_CANCELED = "PAYMENT_CANCELED"
10336
10328
  }
10337
10329
  interface Submitter extends SubmitterSubmitterOneOf {