@epilot/cli 0.1.11 → 0.1.12
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/README.md +16 -19
- package/definitions/automation.json +214 -1
- package/definitions/blueprint-manifest.json +1279 -150
- package/definitions/data-governance.json +1126 -0
- package/definitions/deduplication.json +135 -4
- package/definitions/design.json +103 -57
- package/definitions/email-settings.json +29 -0
- package/definitions/entity.json +88 -6
- package/definitions/erp-integration.json +1819 -187
- package/definitions/integration-toolkit.json +7998 -0
- package/definitions/message.json +202 -0
- package/definitions/sharing.json +956 -0
- package/definitions/template-variables.json +12 -4
- package/definitions/workflow-definition.json +87 -202
- package/definitions/workflow.json +102 -0
- package/dist/{add-component-IW4644NE.js → add-component-AAVQVPKK.js} +68 -13
- package/dist/app-I3XXHZLD.js +24 -0
- package/dist/bin/epilot.js +10 -9
- package/dist/{chunk-POCU2J27.js → chunk-CEP7S7X3.js} +2 -1
- package/dist/{chunk-K2UQOP3Q.js → chunk-F6KWKTQJ.js} +104 -59
- package/dist/{completion-HTO64G2S.js → completion-QP4IYMVI.js} +1 -1
- package/dist/{data-management-KXAPA7ZU.js → data-governance-DJAAIE6F.js} +5 -5
- package/dist/{deploy-UQZAUHAB.js → deploy-4XDFWOEV.js} +1 -1
- package/dist/{export-US5GMHTS.js → export-JA5N4JCJ.js} +1 -1
- package/dist/{init-DGPWBRRB.js → init-5KGNJEWF.js} +1 -1
- package/dist/integration-toolkit-4CLQDSK7.js +54 -0
- package/dist/{remove-component-B2GMICMD.js → remove-component-LXSRR23E.js} +1 -1
- package/dist/{review-QFPON37R.js → review-HFOO3NXE.js} +1 -1
- package/dist/{erp-integration-DXFYJ2F3.js → sharing-X5U53KSU.js} +5 -5
- package/dist/{upgrade-KZSOPDCR.js → upgrade-SYSSIAQC.js} +1 -1
- package/dist/{validate-G7K6AVBI.js → validate-TUMXW56Y.js} +1 -1
- package/dist/{versions-UTPAWTIU.js → versions-ZTWQAGXY.js} +1 -1
- package/package.json +1 -1
- package/definitions/data-management.json +0 -972
- package/dist/app-BKS7M4UQ.js +0 -24
|
@@ -7,10 +7,10 @@ import "./chunk-PDMWUCWD.js";
|
|
|
7
7
|
import "./chunk-IOLKUHUB.js";
|
|
8
8
|
import "./chunk-7ZQ666ZQ.js";
|
|
9
9
|
|
|
10
|
-
// src/commands/apis/
|
|
10
|
+
// src/commands/apis/sharing.ts
|
|
11
11
|
import { defineCommand } from "citty";
|
|
12
|
-
var
|
|
13
|
-
meta: { name: "
|
|
12
|
+
var sharing_default = defineCommand({
|
|
13
|
+
meta: { name: "sharing", description: "Sharing API" },
|
|
14
14
|
args: {
|
|
15
15
|
operation: { type: "positional", description: "operationId to call", required: false },
|
|
16
16
|
param: { type: "string", alias: "p", description: "Parameter key=value" },
|
|
@@ -41,7 +41,7 @@ var erp_integration_default = defineCommand({
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
|
-
return callApi("
|
|
44
|
+
return callApi("sharing", {
|
|
45
45
|
...args,
|
|
46
46
|
help: !!args._ophelp,
|
|
47
47
|
_apihelp: !!args._apihelp,
|
|
@@ -50,5 +50,5 @@ var erp_integration_default = defineCommand({
|
|
|
50
50
|
}
|
|
51
51
|
});
|
|
52
52
|
export {
|
|
53
|
-
|
|
53
|
+
sharing_default as default
|
|
54
54
|
};
|
|
@@ -72,7 +72,7 @@ ${GREEN}${BOLD}Upgraded to @epilot/cli@${latest}${RESET}
|
|
|
72
72
|
}
|
|
73
73
|
});
|
|
74
74
|
var getCurrentVersion = () => {
|
|
75
|
-
if (true) return "0.1.
|
|
75
|
+
if (true) return "0.1.12";
|
|
76
76
|
try {
|
|
77
77
|
const output = execSync("npm ls -g @epilot/cli --depth=0 --json 2>/dev/null", {
|
|
78
78
|
encoding: "utf-8",
|