@wix/forms 1.0.138 → 1.0.140

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.138",
3
+ "version": "1.0.140",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -20,9 +20,9 @@
20
20
  ],
21
21
  "dependencies": {
22
22
  "@wix/forms_form-spam-submission-reports": "1.0.14",
23
- "@wix/forms_form-submissions": "1.0.20",
24
- "@wix/forms_forms": "1.0.22",
25
- "@wix/forms_submissions": "1.0.55"
23
+ "@wix/forms_form-submissions": "1.0.21",
24
+ "@wix/forms_forms": "1.0.23",
25
+ "@wix/forms_submissions": "1.0.56"
26
26
  },
27
27
  "devDependencies": {
28
28
  "glob": "^10.4.1",
@@ -47,5 +47,5 @@
47
47
  "fqdn": ""
48
48
  }
49
49
  },
50
- "falconPackageHash": "d0764cccee5ec2f1d237e1d5247d716ce1623309ca7ed9a9765961cf"
50
+ "falconPackageHash": "b262d17df0e1e75c7e71d9e17168ca1e347b491227fc8b2ff1636dc5"
51
51
  }
@@ -1801,6 +1801,8 @@ interface OrderedListData$1 {
1801
1801
  indentation?: number;
1802
1802
  /** Offset level from 0-4. */
1803
1803
  offset?: number | null;
1804
+ /** List start number. */
1805
+ start?: number | null;
1804
1806
  }
1805
1807
  interface BulletedListData$1 {
1806
1808
  /** Indentation level from 0-4. */
@@ -7635,6 +7637,8 @@ interface OrderedListData {
7635
7637
  indentation?: number;
7636
7638
  /** Offset level from 0-4. */
7637
7639
  offset?: number | null;
7640
+ /** List start number. */
7641
+ start?: number | null;
7638
7642
  }
7639
7643
  interface BulletedListData {
7640
7644
  /** Indentation level from 0-4. */
@@ -1801,6 +1801,8 @@ interface OrderedListData$1 {
1801
1801
  indentation?: number;
1802
1802
  /** Offset level from 0-4. */
1803
1803
  offset?: number | null;
1804
+ /** List start number. */
1805
+ start?: number | null;
1804
1806
  }
1805
1807
  interface BulletedListData$1 {
1806
1808
  /** Indentation level from 0-4. */
@@ -7635,6 +7637,8 @@ interface OrderedListData {
7635
7637
  indentation?: number;
7636
7638
  /** Offset level from 0-4. */
7637
7639
  offset?: number | null;
7640
+ /** List start number. */
7641
+ start?: number | null;
7638
7642
  }
7639
7643
  interface BulletedListData {
7640
7644
  /** Indentation level from 0-4. */
@@ -1738,6 +1738,8 @@ interface OrderedListData$1 {
1738
1738
  indentation?: number;
1739
1739
  /** Offset level from 0-4. */
1740
1740
  offset?: number | null;
1741
+ /** List start number. */
1742
+ start?: number | null;
1741
1743
  }
1742
1744
  interface BulletedListData$1 {
1743
1745
  /** Indentation level from 0-4. */
@@ -5853,6 +5855,8 @@ interface OrderedListData {
5853
5855
  indentation?: number;
5854
5856
  /** Offset level from 0-4. */
5855
5857
  offset?: number | null;
5858
+ /** List start number. */
5859
+ start?: number | null;
5856
5860
  }
5857
5861
  interface BulletedListData {
5858
5862
  /** Indentation level from 0-4. */
@@ -205,15 +205,26 @@ interface FormSubmissionSpiExtensionConfig {
205
205
  namespaceConfigs?: FormsSubmissionsExtensionNamespaceConfig[];
206
206
  }
207
207
  interface SpiBaseUri {
208
- /** URI that will be used by the host to call the implementer. The path-suffix defined on the method will be appended to it */
208
+ /**
209
+ * Base URI where the methods are called. Wix appends the path to the `baseUri`.
210
+ * For example, to call the Get Shipping Rates method at `https://my-shipping-provider.com/v1/getRates`, the base URI you provide here is `https://my-shipping-provider.com/`.
211
+ */
209
212
  baseUri?: string;
210
- /** override method mappings per method */
213
+ /** Alternate, custom URIs to replace the default URIs for specific service plugin methods. */
211
214
  alternativeUris?: AlternativeUri[];
212
215
  }
213
216
  interface AlternativeUri {
214
- /** name of the method as it appears in the proto */
217
+ /**
218
+ * Name of the method to create a custom URI for.
219
+ *
220
+ * For `methodName`, use the name of the method in PascalCase.
221
+ * For example, for Get Shipping Rates use `GetShippingRates`.
222
+ */
215
223
  methodName?: string;
216
- /** absolute uri that will be used by the host to call that method. The path-suffix mapped from the method http option will NOT be appended to this URI. For TPAs. it must be https */
224
+ /**
225
+ * Custom URI that Wix uses to call your server for this method. The path-suffix documented in the method will not be appended to this URI.
226
+ * Must be a secured endpoint beginning with `https://`. For example, `https://www.my-shipping-provider.com/my-shipping-rates`.
227
+ */
217
228
  absoluteUri?: string;
218
229
  }
219
230
  interface FormsSubmissionsExtensionNamespaceConfig {
@@ -205,15 +205,26 @@ interface FormSubmissionSpiExtensionConfig {
205
205
  namespaceConfigs?: FormsSubmissionsExtensionNamespaceConfig[];
206
206
  }
207
207
  interface SpiBaseUri {
208
- /** URI that will be used by the host to call the implementer. The path-suffix defined on the method will be appended to it */
208
+ /**
209
+ * Base URI where the methods are called. Wix appends the path to the `baseUri`.
210
+ * For example, to call the Get Shipping Rates method at `https://my-shipping-provider.com/v1/getRates`, the base URI you provide here is `https://my-shipping-provider.com/`.
211
+ */
209
212
  baseUri?: string;
210
- /** override method mappings per method */
213
+ /** Alternate, custom URIs to replace the default URIs for specific service plugin methods. */
211
214
  alternativeUris?: AlternativeUri[];
212
215
  }
213
216
  interface AlternativeUri {
214
- /** name of the method as it appears in the proto */
217
+ /**
218
+ * Name of the method to create a custom URI for.
219
+ *
220
+ * For `methodName`, use the name of the method in PascalCase.
221
+ * For example, for Get Shipping Rates use `GetShippingRates`.
222
+ */
215
223
  methodName?: string;
216
- /** absolute uri that will be used by the host to call that method. The path-suffix mapped from the method http option will NOT be appended to this URI. For TPAs. it must be https */
224
+ /**
225
+ * Custom URI that Wix uses to call your server for this method. The path-suffix documented in the method will not be appended to this URI.
226
+ * Must be a secured endpoint beginning with `https://`. For example, `https://www.my-shipping-provider.com/my-shipping-rates`.
227
+ */
217
228
  absoluteUri?: string;
218
229
  }
219
230
  interface FormsSubmissionsExtensionNamespaceConfig {