@wix/automations 1.0.181 → 1.0.183
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/build/{index.d.ts → cjs/index.d.ts} +2 -0
- package/build/cjs/service-plugins.d.ts +4 -0
- package/build/cjs/service-plugins.js +44 -0
- package/build/cjs/service-plugins.js.map +1 -0
- package/build/{index.d.mts → es/index.d.mts} +2 -0
- package/build/es/package.json +3 -0
- package/build/es/service-plugins.d.mts +4 -0
- package/build/es/service-plugins.mjs +8 -0
- package/build/es/service-plugins.mjs.map +1 -0
- package/build/internal/{index.d.ts → cjs/index.d.ts} +2 -0
- package/build/internal/cjs/index.js.map +1 -0
- package/build/internal/cjs/meta.js.map +1 -0
- package/build/internal/cjs/service-plugins.d.ts +4 -0
- package/build/internal/cjs/service-plugins.js +44 -0
- package/build/internal/cjs/service-plugins.js.map +1 -0
- package/build/internal/{index.d.mts → es/index.d.mts} +2 -0
- package/build/internal/es/index.mjs.map +1 -0
- package/build/internal/es/meta.mjs.map +1 -0
- package/build/internal/es/service-plugins.d.mts +4 -0
- package/build/internal/es/service-plugins.mjs +8 -0
- package/build/internal/es/service-plugins.mjs.map +1 -0
- package/package.json +24 -24
- package/build/index.js.map +0 -1
- package/build/index.mjs.map +0 -1
- package/build/meta.js.map +0 -1
- package/build/meta.mjs.map +0 -1
- /package/build/{index.js → cjs/index.js} +0 -0
- /package/build/{internal → cjs}/index.js.map +0 -0
- /package/build/{internal → cjs}/meta.d.ts +0 -0
- /package/build/{internal → cjs}/meta.js +0 -0
- /package/build/{internal → cjs}/meta.js.map +0 -0
- /package/build/{index.mjs → es/index.mjs} +0 -0
- /package/build/{internal → es}/index.mjs.map +0 -0
- /package/build/{internal → es}/meta.d.mts +0 -0
- /package/build/{internal → es}/meta.mjs +0 -0
- /package/build/{internal → es}/meta.mjs.map +0 -0
- /package/build/internal/{index.js → cjs/index.js} +0 -0
- /package/build/{meta.d.ts → internal/cjs/meta.d.ts} +0 -0
- /package/build/{meta.js → internal/cjs/meta.js} +0 -0
- /package/build/internal/{index.mjs → es/index.mjs} +0 -0
- /package/build/{meta.d.mts → internal/es/meta.d.mts} +0 -0
- /package/build/{meta.mjs → internal/es/meta.mjs} +0 -0
|
@@ -25,3 +25,5 @@ import '@wix/auto_sdk_automations_automations-service/meta';
|
|
|
25
25
|
import '@wix/auto_sdk_automations_custom-trigger/meta';
|
|
26
26
|
import '@wix/auto_sdk_automations_activations/meta';
|
|
27
27
|
import '@wix/auto_sdk_automations_automations-v-2/meta';
|
|
28
|
+
import '@wix/auto_sdk_automations_action-provider';
|
|
29
|
+
import '@wix/auto_sdk_automations_trigger-provider';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import * as auto_sdk_automations_actionProvider from '@wix/auto_sdk_automations_action-provider';
|
|
2
|
+
export { auto_sdk_automations_actionProvider as actionProvider };
|
|
3
|
+
import * as auto_sdk_automations_triggerProvider from '@wix/auto_sdk_automations_trigger-provider';
|
|
4
|
+
export { auto_sdk_automations_triggerProvider as triggerProvider };
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// service-plugins.ts
|
|
31
|
+
var service_plugins_exports = {};
|
|
32
|
+
__export(service_plugins_exports, {
|
|
33
|
+
actionProvider: () => actionProvider,
|
|
34
|
+
triggerProvider: () => triggerProvider
|
|
35
|
+
});
|
|
36
|
+
module.exports = __toCommonJS(service_plugins_exports);
|
|
37
|
+
var actionProvider = __toESM(require("@wix/auto_sdk_automations_action-provider"));
|
|
38
|
+
var triggerProvider = __toESM(require("@wix/auto_sdk_automations_trigger-provider"));
|
|
39
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
40
|
+
0 && (module.exports = {
|
|
41
|
+
actionProvider,
|
|
42
|
+
triggerProvider
|
|
43
|
+
});
|
|
44
|
+
//# sourceMappingURL=service-plugins.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../service-plugins.ts"],"sourcesContent":["export * as actionProvider from '@wix/auto_sdk_automations_action-provider';\nexport * as triggerProvider from '@wix/auto_sdk_automations_trigger-provider';"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAgC;AAChC,sBAAiC;","names":[]}
|
|
@@ -25,3 +25,5 @@ import '@wix/auto_sdk_automations_automations-service/meta';
|
|
|
25
25
|
import '@wix/auto_sdk_automations_custom-trigger/meta';
|
|
26
26
|
import '@wix/auto_sdk_automations_activations/meta';
|
|
27
27
|
import '@wix/auto_sdk_automations_automations-v-2/meta';
|
|
28
|
+
import '@wix/auto_sdk_automations_action-provider';
|
|
29
|
+
import '@wix/auto_sdk_automations_trigger-provider';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import * as auto_sdk_automations_actionProvider from '@wix/auto_sdk_automations_action-provider';
|
|
2
|
+
export { auto_sdk_automations_actionProvider as actionProvider };
|
|
3
|
+
import * as auto_sdk_automations_triggerProvider from '@wix/auto_sdk_automations_trigger-provider';
|
|
4
|
+
export { auto_sdk_automations_triggerProvider as triggerProvider };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// service-plugins.ts
|
|
2
|
+
import * as actionProvider from "@wix/auto_sdk_automations_action-provider";
|
|
3
|
+
import * as triggerProvider from "@wix/auto_sdk_automations_trigger-provider";
|
|
4
|
+
export {
|
|
5
|
+
actionProvider,
|
|
6
|
+
triggerProvider
|
|
7
|
+
};
|
|
8
|
+
//# sourceMappingURL=service-plugins.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../service-plugins.ts"],"sourcesContent":["export * as actionProvider from '@wix/auto_sdk_automations_action-provider';\nexport * as triggerProvider from '@wix/auto_sdk_automations_trigger-provider';"],"mappings":";AAAA,YAAY,oBAAoB;AAChC,YAAY,qBAAqB;","names":[]}
|
|
@@ -25,3 +25,5 @@ import '@wix/auto_sdk_automations_automations-service/meta';
|
|
|
25
25
|
import '@wix/auto_sdk_automations_custom-trigger/meta';
|
|
26
26
|
import '@wix/auto_sdk_automations_activations/meta';
|
|
27
27
|
import '@wix/auto_sdk_automations_automations-v-2/meta';
|
|
28
|
+
import '@wix/auto_sdk_automations_action-provider';
|
|
29
|
+
import '@wix/auto_sdk_automations_trigger-provider';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../index.ts"],"sourcesContent":["import * as actionCatalog from '@wix/auto_sdk_automations_action-catalog';\nimport * as activationActionLog from '@wix/auto_sdk_automations_activation-action-log';\nimport * as activationLog from '@wix/auto_sdk_automations_activation-log';\nimport * as activationActionSummary from '@wix/auto_sdk_automations_activation-action-summary';\nimport * as triggerCatalog from '@wix/auto_sdk_automations_trigger-catalog';\nimport * as automationsService from '@wix/auto_sdk_automations_automations-service';\nimport * as customTrigger from '@wix/auto_sdk_automations_custom-trigger';\nimport * as activations from '@wix/auto_sdk_automations_activations';\nimport * as automationsV2 from '@wix/auto_sdk_automations_automations-v-2';\n\nexport {\n actionCatalog,\n activationActionLog,\n activationLog,\n activationActionSummary,\n triggerCatalog,\n automationsService,\n customTrigger,\n activations,\n automationsV2,\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAA+B;AAC/B,0BAAqC;AACrC,oBAA+B;AAC/B,8BAAyC;AACzC,qBAAgC;AAChC,yBAAoC;AACpC,oBAA+B;AAC/B,kBAA6B;AAC7B,oBAA+B;","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../meta.ts"],"sourcesContent":["export * as actionCatalog from '@wix/auto_sdk_automations_action-catalog/meta';\nexport * as activationActionLog from '@wix/auto_sdk_automations_activation-action-log/meta';\nexport * as activationLog from '@wix/auto_sdk_automations_activation-log/meta';\nexport * as activationActionSummary from '@wix/auto_sdk_automations_activation-action-summary/meta';\nexport * as triggerCatalog from '@wix/auto_sdk_automations_trigger-catalog/meta';\nexport * as automationsService from '@wix/auto_sdk_automations_automations-service/meta';\nexport * as customTrigger from '@wix/auto_sdk_automations_custom-trigger/meta';\nexport * as activations from '@wix/auto_sdk_automations_activations/meta';\nexport * as automationsV2 from '@wix/auto_sdk_automations_automations-v-2/meta';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAA+B;AAC/B,0BAAqC;AACrC,oBAA+B;AAC/B,8BAAyC;AACzC,qBAAgC;AAChC,yBAAoC;AACpC,oBAA+B;AAC/B,kBAA6B;AAC7B,oBAA+B;","names":[]}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import * as auto_sdk_automations_actionProvider from '@wix/auto_sdk_automations_action-provider';
|
|
2
|
+
export { auto_sdk_automations_actionProvider as actionProvider };
|
|
3
|
+
import * as auto_sdk_automations_triggerProvider from '@wix/auto_sdk_automations_trigger-provider';
|
|
4
|
+
export { auto_sdk_automations_triggerProvider as triggerProvider };
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// service-plugins.ts
|
|
31
|
+
var service_plugins_exports = {};
|
|
32
|
+
__export(service_plugins_exports, {
|
|
33
|
+
actionProvider: () => actionProvider,
|
|
34
|
+
triggerProvider: () => triggerProvider
|
|
35
|
+
});
|
|
36
|
+
module.exports = __toCommonJS(service_plugins_exports);
|
|
37
|
+
var actionProvider = __toESM(require("@wix/auto_sdk_automations_action-provider"));
|
|
38
|
+
var triggerProvider = __toESM(require("@wix/auto_sdk_automations_trigger-provider"));
|
|
39
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
40
|
+
0 && (module.exports = {
|
|
41
|
+
actionProvider,
|
|
42
|
+
triggerProvider
|
|
43
|
+
});
|
|
44
|
+
//# sourceMappingURL=service-plugins.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../service-plugins.ts"],"sourcesContent":["export * as actionProvider from '@wix/auto_sdk_automations_action-provider';\nexport * as triggerProvider from '@wix/auto_sdk_automations_trigger-provider';"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAgC;AAChC,sBAAiC;","names":[]}
|
|
@@ -25,3 +25,5 @@ import '@wix/auto_sdk_automations_automations-service/meta';
|
|
|
25
25
|
import '@wix/auto_sdk_automations_custom-trigger/meta';
|
|
26
26
|
import '@wix/auto_sdk_automations_activations/meta';
|
|
27
27
|
import '@wix/auto_sdk_automations_automations-v-2/meta';
|
|
28
|
+
import '@wix/auto_sdk_automations_action-provider';
|
|
29
|
+
import '@wix/auto_sdk_automations_trigger-provider';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../index.ts"],"sourcesContent":["import * as actionCatalog from '@wix/auto_sdk_automations_action-catalog';\nimport * as activationActionLog from '@wix/auto_sdk_automations_activation-action-log';\nimport * as activationLog from '@wix/auto_sdk_automations_activation-log';\nimport * as activationActionSummary from '@wix/auto_sdk_automations_activation-action-summary';\nimport * as triggerCatalog from '@wix/auto_sdk_automations_trigger-catalog';\nimport * as automationsService from '@wix/auto_sdk_automations_automations-service';\nimport * as customTrigger from '@wix/auto_sdk_automations_custom-trigger';\nimport * as activations from '@wix/auto_sdk_automations_activations';\nimport * as automationsV2 from '@wix/auto_sdk_automations_automations-v-2';\n\nexport {\n actionCatalog,\n activationActionLog,\n activationLog,\n activationActionSummary,\n triggerCatalog,\n automationsService,\n customTrigger,\n activations,\n automationsV2,\n};\n"],"mappings":";AAAA,YAAY,mBAAmB;AAC/B,YAAY,yBAAyB;AACrC,YAAY,mBAAmB;AAC/B,YAAY,6BAA6B;AACzC,YAAY,oBAAoB;AAChC,YAAY,wBAAwB;AACpC,YAAY,mBAAmB;AAC/B,YAAY,iBAAiB;AAC7B,YAAY,mBAAmB;","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../meta.ts"],"sourcesContent":["export * as actionCatalog from '@wix/auto_sdk_automations_action-catalog/meta';\nexport * as activationActionLog from '@wix/auto_sdk_automations_activation-action-log/meta';\nexport * as activationLog from '@wix/auto_sdk_automations_activation-log/meta';\nexport * as activationActionSummary from '@wix/auto_sdk_automations_activation-action-summary/meta';\nexport * as triggerCatalog from '@wix/auto_sdk_automations_trigger-catalog/meta';\nexport * as automationsService from '@wix/auto_sdk_automations_automations-service/meta';\nexport * as customTrigger from '@wix/auto_sdk_automations_custom-trigger/meta';\nexport * as activations from '@wix/auto_sdk_automations_activations/meta';\nexport * as automationsV2 from '@wix/auto_sdk_automations_automations-v-2/meta';\n"],"mappings":";AAAA,YAAY,mBAAmB;AAC/B,YAAY,yBAAyB;AACrC,YAAY,mBAAmB;AAC/B,YAAY,6BAA6B;AACzC,YAAY,oBAAoB;AAChC,YAAY,wBAAwB;AACpC,YAAY,mBAAmB;AAC/B,YAAY,iBAAiB;AAC7B,YAAY,mBAAmB;","names":[]}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import * as auto_sdk_automations_actionProvider from '@wix/auto_sdk_automations_action-provider';
|
|
2
|
+
export { auto_sdk_automations_actionProvider as actionProvider };
|
|
3
|
+
import * as auto_sdk_automations_triggerProvider from '@wix/auto_sdk_automations_trigger-provider';
|
|
4
|
+
export { auto_sdk_automations_triggerProvider as triggerProvider };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// service-plugins.ts
|
|
2
|
+
import * as actionProvider from "@wix/auto_sdk_automations_action-provider";
|
|
3
|
+
import * as triggerProvider from "@wix/auto_sdk_automations_trigger-provider";
|
|
4
|
+
export {
|
|
5
|
+
actionProvider,
|
|
6
|
+
triggerProvider
|
|
7
|
+
};
|
|
8
|
+
//# sourceMappingURL=service-plugins.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../service-plugins.ts"],"sourcesContent":["export * as actionProvider from '@wix/auto_sdk_automations_action-provider';\nexport * as triggerProvider from '@wix/auto_sdk_automations_trigger-provider';"],"mappings":";AAAA,YAAY,oBAAoB;AAChC,YAAY,qBAAqB;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/automations",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.183",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -11,24 +11,24 @@
|
|
|
11
11
|
"wixSdkPublicModule"
|
|
12
12
|
],
|
|
13
13
|
"sideEffects": false,
|
|
14
|
-
"main": "
|
|
15
|
-
"types": "./build/index.d.
|
|
14
|
+
"main": "./build/cjs/index.js",
|
|
15
|
+
"types": "./build/cjs/index.d.ts",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
18
|
-
"import": "./build/index.mjs",
|
|
19
|
-
"require": "./build/index.js",
|
|
20
|
-
"types": "./build/index.d.mts"
|
|
18
|
+
"import": "./build/es/index.mjs",
|
|
19
|
+
"require": "./build/cjs/index.js",
|
|
20
|
+
"types": "./build/es/index.d.mts"
|
|
21
21
|
},
|
|
22
22
|
"./package.json": "./package.json",
|
|
23
23
|
"./meta": {
|
|
24
|
-
"import": "./build/meta.mjs",
|
|
25
|
-
"require": "./build/meta.js",
|
|
26
|
-
"types": "./build/meta.d.mts"
|
|
24
|
+
"import": "./build/es/meta.mjs",
|
|
25
|
+
"require": "./build/cjs/meta.js",
|
|
26
|
+
"types": "./build/es/meta.d.mts"
|
|
27
27
|
},
|
|
28
28
|
"./service-plugins": {
|
|
29
|
-
"import": "./build/service-plugins.mjs",
|
|
30
|
-
"require": "./build/service-plugins.js",
|
|
31
|
-
"types": "./build/service-plugins.d.mts"
|
|
29
|
+
"import": "./build/es/service-plugins.mjs",
|
|
30
|
+
"require": "./build/cjs/service-plugins.js",
|
|
31
|
+
"types": "./build/es/service-plugins.d.mts"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"files": [
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
"service-plugins"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@wix/auto_sdk_automations_action-catalog": "1.0.
|
|
41
|
-
"@wix/auto_sdk_automations_action-provider": "1.0.
|
|
42
|
-
"@wix/auto_sdk_automations_activation-action-log": "1.0.
|
|
43
|
-
"@wix/auto_sdk_automations_activation-action-summary": "1.0.
|
|
44
|
-
"@wix/auto_sdk_automations_activation-log": "1.0.
|
|
45
|
-
"@wix/auto_sdk_automations_activations": "1.0.
|
|
46
|
-
"@wix/auto_sdk_automations_automations-service": "1.0.
|
|
47
|
-
"@wix/auto_sdk_automations_automations-v-2": "1.0.
|
|
48
|
-
"@wix/auto_sdk_automations_custom-trigger": "1.0.
|
|
49
|
-
"@wix/auto_sdk_automations_trigger-catalog": "1.0.
|
|
50
|
-
"@wix/auto_sdk_automations_trigger-provider": "1.0.
|
|
40
|
+
"@wix/auto_sdk_automations_action-catalog": "1.0.5",
|
|
41
|
+
"@wix/auto_sdk_automations_action-provider": "1.0.19",
|
|
42
|
+
"@wix/auto_sdk_automations_activation-action-log": "1.0.9",
|
|
43
|
+
"@wix/auto_sdk_automations_activation-action-summary": "1.0.3",
|
|
44
|
+
"@wix/auto_sdk_automations_activation-log": "1.0.7",
|
|
45
|
+
"@wix/auto_sdk_automations_activations": "1.0.31",
|
|
46
|
+
"@wix/auto_sdk_automations_automations-service": "1.0.18",
|
|
47
|
+
"@wix/auto_sdk_automations_automations-v-2": "1.0.7",
|
|
48
|
+
"@wix/auto_sdk_automations_custom-trigger": "1.0.9",
|
|
49
|
+
"@wix/auto_sdk_automations_trigger-catalog": "1.0.11",
|
|
50
|
+
"@wix/auto_sdk_automations_trigger-provider": "1.0.13"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"tsup": "^8.4.0",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"fqdn": ""
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"falconPackageHash": "
|
|
71
|
+
"falconPackageHash": "6f2ce05daef62d875917bb2540e7f1e28ed24b8724aaea02dfe6b294"
|
|
72
72
|
}
|
package/build/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../index.ts"],"sourcesContent":["import * as actionCatalog from '@wix/auto_sdk_automations_action-catalog';\nimport * as activationActionLog from '@wix/auto_sdk_automations_activation-action-log';\nimport * as activationLog from '@wix/auto_sdk_automations_activation-log';\nimport * as activationActionSummary from '@wix/auto_sdk_automations_activation-action-summary';\nimport * as triggerCatalog from '@wix/auto_sdk_automations_trigger-catalog';\nimport * as automationsService from '@wix/auto_sdk_automations_automations-service';\nimport * as customTrigger from '@wix/auto_sdk_automations_custom-trigger';\nimport * as activations from '@wix/auto_sdk_automations_activations';\nimport * as automationsV2 from '@wix/auto_sdk_automations_automations-v-2';\n\nexport {\n actionCatalog,\n activationActionLog,\n activationLog,\n activationActionSummary,\n triggerCatalog,\n automationsService,\n customTrigger,\n activations,\n automationsV2,\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAA+B;AAC/B,0BAAqC;AACrC,oBAA+B;AAC/B,8BAAyC;AACzC,qBAAgC;AAChC,yBAAoC;AACpC,oBAA+B;AAC/B,kBAA6B;AAC7B,oBAA+B;","names":[]}
|
package/build/index.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../index.ts"],"sourcesContent":["import * as actionCatalog from '@wix/auto_sdk_automations_action-catalog';\nimport * as activationActionLog from '@wix/auto_sdk_automations_activation-action-log';\nimport * as activationLog from '@wix/auto_sdk_automations_activation-log';\nimport * as activationActionSummary from '@wix/auto_sdk_automations_activation-action-summary';\nimport * as triggerCatalog from '@wix/auto_sdk_automations_trigger-catalog';\nimport * as automationsService from '@wix/auto_sdk_automations_automations-service';\nimport * as customTrigger from '@wix/auto_sdk_automations_custom-trigger';\nimport * as activations from '@wix/auto_sdk_automations_activations';\nimport * as automationsV2 from '@wix/auto_sdk_automations_automations-v-2';\n\nexport {\n actionCatalog,\n activationActionLog,\n activationLog,\n activationActionSummary,\n triggerCatalog,\n automationsService,\n customTrigger,\n activations,\n automationsV2,\n};\n"],"mappings":";AAAA,YAAY,mBAAmB;AAC/B,YAAY,yBAAyB;AACrC,YAAY,mBAAmB;AAC/B,YAAY,6BAA6B;AACzC,YAAY,oBAAoB;AAChC,YAAY,wBAAwB;AACpC,YAAY,mBAAmB;AAC/B,YAAY,iBAAiB;AAC7B,YAAY,mBAAmB;","names":[]}
|
package/build/meta.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../meta.ts"],"sourcesContent":["export * as actionCatalog from '@wix/auto_sdk_automations_action-catalog/meta';\nexport * as activationActionLog from '@wix/auto_sdk_automations_activation-action-log/meta';\nexport * as activationLog from '@wix/auto_sdk_automations_activation-log/meta';\nexport * as activationActionSummary from '@wix/auto_sdk_automations_activation-action-summary/meta';\nexport * as triggerCatalog from '@wix/auto_sdk_automations_trigger-catalog/meta';\nexport * as automationsService from '@wix/auto_sdk_automations_automations-service/meta';\nexport * as customTrigger from '@wix/auto_sdk_automations_custom-trigger/meta';\nexport * as activations from '@wix/auto_sdk_automations_activations/meta';\nexport * as automationsV2 from '@wix/auto_sdk_automations_automations-v-2/meta';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAA+B;AAC/B,0BAAqC;AACrC,oBAA+B;AAC/B,8BAAyC;AACzC,qBAAgC;AAChC,yBAAoC;AACpC,oBAA+B;AAC/B,kBAA6B;AAC7B,oBAA+B;","names":[]}
|
package/build/meta.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../meta.ts"],"sourcesContent":["export * as actionCatalog from '@wix/auto_sdk_automations_action-catalog/meta';\nexport * as activationActionLog from '@wix/auto_sdk_automations_activation-action-log/meta';\nexport * as activationLog from '@wix/auto_sdk_automations_activation-log/meta';\nexport * as activationActionSummary from '@wix/auto_sdk_automations_activation-action-summary/meta';\nexport * as triggerCatalog from '@wix/auto_sdk_automations_trigger-catalog/meta';\nexport * as automationsService from '@wix/auto_sdk_automations_automations-service/meta';\nexport * as customTrigger from '@wix/auto_sdk_automations_custom-trigger/meta';\nexport * as activations from '@wix/auto_sdk_automations_activations/meta';\nexport * as automationsV2 from '@wix/auto_sdk_automations_automations-v-2/meta';\n"],"mappings":";AAAA,YAAY,mBAAmB;AAC/B,YAAY,yBAAyB;AACrC,YAAY,mBAAmB;AAC/B,YAAY,6BAA6B;AACzC,YAAY,oBAAoB;AAChC,YAAY,wBAAwB;AACpC,YAAY,mBAAmB;AAC/B,YAAY,iBAAiB;AAC7B,YAAY,mBAAmB;","names":[]}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|