@wix/forms 1.0.98 → 1.0.100

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.98",
3
+ "version": "1.0.100",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -19,7 +19,7 @@
19
19
  "service-plugins"
20
20
  ],
21
21
  "dependencies": {
22
- "@wix/forms_form-submissions": "1.0.0",
22
+ "@wix/forms_form-submissions": "1.0.1",
23
23
  "@wix/metro-runtime": "^1.1696.0",
24
24
  "@wix/motion-edm-autogen-query-wrapper": "^1.0.37",
25
25
  "@wix/sdk-runtime": "^0.2.12",
@@ -43,5 +43,5 @@
43
43
  "groupId": "com.wixpress.public-sdk-autogen"
44
44
  }
45
45
  },
46
- "falconPackageHash": "f620a5ed1b3e07df5478e237fcafc0a5965d1c2434afbf384759852b"
46
+ "falconPackageHash": "97208a056c38d3e7d0f54c3e1e0e23b5699afd0fc37e78b2675f9467"
47
47
  }
@@ -234,15 +234,15 @@ interface FormsSubmissionsExtensionNamespaceConfig {
234
234
  * ```
235
235
  */
236
236
  interface Context {
237
- /** A unique identifier for each request. Can be used for logging / troubleshooting */
237
+ /** A unique identifier of the request. You may print this ID to your logs to help with future debugging and easier correlation with Wix's logs. */
238
238
  requestId?: string | null;
239
- /** 3 capital letters string representing a currency according to ISO-4217 */
239
+ /** [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) 3-letter currency code. */
240
240
  currency?: string | null;
241
- /** The identification type and identity data */
241
+ /** An object that describes the identity that triggered this request. */
242
242
  identity?: IdentificationData;
243
- /** A string representing a language and region in the format of "xx-XX". First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2 */
243
+ /** A string representing a language and region in the format of `"xx-XX"`. First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2. For example, `"en-US"`. */
244
244
  languages?: string[];
245
- /** App instance ID of SPI in context */
245
+ /** The service provider app's instance ID. */
246
246
  instanceId?: string | null;
247
247
  }
248
248
  declare enum IdentityType {
@@ -234,15 +234,15 @@ interface FormsSubmissionsExtensionNamespaceConfig {
234
234
  * ```
235
235
  */
236
236
  interface Context {
237
- /** A unique identifier for each request. Can be used for logging / troubleshooting */
237
+ /** A unique identifier of the request. You may print this ID to your logs to help with future debugging and easier correlation with Wix's logs. */
238
238
  requestId?: string | null;
239
- /** 3 capital letters string representing a currency according to ISO-4217 */
239
+ /** [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) 3-letter currency code. */
240
240
  currency?: string | null;
241
- /** The identification type and identity data */
241
+ /** An object that describes the identity that triggered this request. */
242
242
  identity?: IdentificationData;
243
- /** A string representing a language and region in the format of "xx-XX". First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2 */
243
+ /** A string representing a language and region in the format of `"xx-XX"`. First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2. For example, `"en-US"`. */
244
244
  languages?: string[];
245
- /** App instance ID of SPI in context */
245
+ /** The service provider app's instance ID. */
246
246
  instanceId?: string | null;
247
247
  }
248
248
  declare enum IdentityType {
@@ -1,2 +0,0 @@
1
- export * as submissions from '@wix/forms_submissions/context';
2
- export * as submissionsExtensionSpi from '@wix/forms_submissions-extension-spi/context';
@@ -1,29 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.submissionsExtensionSpi = exports.submissions = void 0;
27
- exports.submissions = __importStar(require("@wix/forms_submissions/context"));
28
- exports.submissionsExtensionSpi = __importStar(require("@wix/forms_submissions-extension-spi/context"));
29
- //# sourceMappingURL=context.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"context.js","sourceRoot":"","sources":["../../context.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,8EAA8D;AAC9D,wGAAwF"}
@@ -1,2 +0,0 @@
1
- export * as submissions from '@wix/forms_submissions';
2
- export * as submissionsExtensionSpi from '@wix/forms_submissions-extension-spi';
@@ -1,29 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.submissionsExtensionSpi = exports.submissions = void 0;
27
- exports.submissions = __importStar(require("@wix/forms_submissions"));
28
- exports.submissionsExtensionSpi = __importStar(require("@wix/forms_submissions-extension-spi"));
29
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAsD;AACtD,gGAAgF"}
@@ -1,2 +0,0 @@
1
- export * as submissions from '@wix/forms_submissions/meta';
2
- export * as submissionsExtensionSpi from '@wix/forms_submissions-extension-spi/meta';
package/build/cjs/meta.js DELETED
@@ -1,29 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.submissionsExtensionSpi = exports.submissions = void 0;
27
- exports.submissions = __importStar(require("@wix/forms_submissions/meta"));
28
- exports.submissionsExtensionSpi = __importStar(require("@wix/forms_submissions-extension-spi/meta"));
29
- //# sourceMappingURL=meta.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"meta.js","sourceRoot":"","sources":["../../meta.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2EAA2D;AAC3D,qGAAqF"}
@@ -1,2 +0,0 @@
1
- export * as submissions from '@wix/forms_submissions/context';
2
- export * as submissionsExtensionSpi from '@wix/forms_submissions-extension-spi/context';
@@ -1,3 +0,0 @@
1
- export * as submissions from '@wix/forms_submissions/context';
2
- export * as submissionsExtensionSpi from '@wix/forms_submissions-extension-spi/context';
3
- //# sourceMappingURL=context.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"context.js","sourceRoot":"","sources":["../../context.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,WAAW,MAAM,gCAAgC,CAAC;AAC9D,OAAO,KAAK,uBAAuB,MAAM,8CAA8C,CAAC"}
@@ -1,2 +0,0 @@
1
- export * as submissions from '@wix/forms_submissions';
2
- export * as submissionsExtensionSpi from '@wix/forms_submissions-extension-spi';
package/build/es/index.js DELETED
@@ -1,3 +0,0 @@
1
- export * as submissions from '@wix/forms_submissions';
2
- export * as submissionsExtensionSpi from '@wix/forms_submissions-extension-spi';
3
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,uBAAuB,MAAM,sCAAsC,CAAC"}
@@ -1,2 +0,0 @@
1
- export * as submissions from '@wix/forms_submissions/meta';
2
- export * as submissionsExtensionSpi from '@wix/forms_submissions-extension-spi/meta';
package/build/es/meta.js DELETED
@@ -1,3 +0,0 @@
1
- export * as submissions from '@wix/forms_submissions/meta';
2
- export * as submissionsExtensionSpi from '@wix/forms_submissions-extension-spi/meta';
3
- //# sourceMappingURL=meta.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"meta.js","sourceRoot":"","sources":["../../meta.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,WAAW,MAAM,6BAA6B,CAAC;AAC3D,OAAO,KAAK,uBAAuB,MAAM,2CAA2C,CAAC"}