@wix/forms 1.0.100 → 1.0.101
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.
|
|
3
|
+
"version": "1.0.101",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -19,14 +19,13 @@
|
|
|
19
19
|
"service-plugins"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@wix/forms_form-submissions": "1.0.
|
|
22
|
+
"@wix/forms_form-submissions": "1.0.2",
|
|
23
23
|
"@wix/metro-runtime": "^1.1696.0",
|
|
24
24
|
"@wix/motion-edm-autogen-query-wrapper": "^1.0.37",
|
|
25
|
-
"@wix/sdk-runtime": "^0.
|
|
26
|
-
"@wix/sdk-types": "^1.
|
|
25
|
+
"@wix/sdk-runtime": "^0.3.3",
|
|
26
|
+
"@wix/sdk-types": "^1.9.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@wix/sdk": "https://cdn.dev.wixpress.com/@wix/sdk/02e8069ab2fd783e0e6a080fc7d590e76cb26ab93c8389574286305b.tar.gz",
|
|
30
29
|
"glob": "^10.4.1",
|
|
31
30
|
"rollup": "^4.18.0",
|
|
32
31
|
"rollup-plugin-dts": "^6.1.1",
|
|
@@ -43,5 +42,5 @@
|
|
|
43
42
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
44
43
|
}
|
|
45
44
|
},
|
|
46
|
-
"falconPackageHash": "
|
|
45
|
+
"falconPackageHash": "da1f8554820b1c54a04ff7769974c569835335fd0982a55923feacbe"
|
|
47
46
|
}
|
|
@@ -298,6 +298,13 @@ type ServicePluginDefinition<Contract extends ServicePluginContract> = {
|
|
|
298
298
|
declare function ServicePluginDefinition<Contract extends ServicePluginContract>(componentType: string, methods: ServicePluginMethodMetadata[]): ServicePluginDefinition<Contract>;
|
|
299
299
|
type BuildServicePluginDefinition<T extends ServicePluginDefinition<any>> = (implementation: T['__contract']) => void;
|
|
300
300
|
|
|
301
|
+
declare global {
|
|
302
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
|
|
303
|
+
interface SymbolConstructor {
|
|
304
|
+
readonly observable: symbol;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
|
|
301
308
|
interface ValidateSubmissionEnvelope {
|
|
302
309
|
request: ValidateSubmissionRequest;
|
|
303
310
|
metadata: Context;
|
|
@@ -297,6 +297,13 @@ type ServicePluginDefinition<Contract extends ServicePluginContract> = {
|
|
|
297
297
|
};
|
|
298
298
|
declare function ServicePluginDefinition<Contract extends ServicePluginContract>(componentType: string, methods: ServicePluginMethodMetadata[]): ServicePluginDefinition<Contract>;
|
|
299
299
|
|
|
300
|
+
declare global {
|
|
301
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
|
|
302
|
+
interface SymbolConstructor {
|
|
303
|
+
readonly observable: symbol;
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
|
|
300
307
|
interface ValidateSubmissionEnvelope {
|
|
301
308
|
request: ValidateSubmissionRequest;
|
|
302
309
|
metadata: Context;
|