@epilot/cli 0.1.44 → 0.1.46
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 +1 -1
- package/definitions/access-token.json +155 -1
- package/definitions/automation.json +120 -0
- package/definitions/integration-toolkit.json +857 -108
- package/dist/bin/epilot.js +6 -6
- package/dist/{chunk-HB3KW5QT.js → chunk-YSFRKKRY.js} +10 -3
- package/dist/{completion-SCM3DTVX.js → completion-QKONIGGO.js} +1 -1
- package/dist/{upgrade-RRBXKSXL.js → upgrade-DE6PWJ2I.js} +1 -1
- package/package.json +1 -1
package/dist/bin/epilot.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
API_LIST
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-YSFRKKRY.js";
|
|
5
5
|
|
|
6
6
|
// bin/epilot.ts
|
|
7
7
|
import { runMain } from "citty";
|
|
@@ -11,7 +11,7 @@ import { defineCommand } from "citty";
|
|
|
11
11
|
var main = defineCommand({
|
|
12
12
|
meta: {
|
|
13
13
|
name: "epilot",
|
|
14
|
-
version: "0.1.
|
|
14
|
+
version: "0.1.46",
|
|
15
15
|
description: "CLI for epilot APIs"
|
|
16
16
|
},
|
|
17
17
|
args: {
|
|
@@ -30,8 +30,8 @@ var main = defineCommand({
|
|
|
30
30
|
auth: () => import("../auth-CN5EFFDE.js").then((m) => m.default),
|
|
31
31
|
profile: () => import("../profile-OZJL5ZPT.js").then((m) => m.default),
|
|
32
32
|
config: () => import("../config-DGZIMLZK.js").then((m) => m.default),
|
|
33
|
-
completion: () => import("../completion-
|
|
34
|
-
upgrade: () => import("../upgrade-
|
|
33
|
+
completion: () => import("../completion-QKONIGGO.js").then((m) => m.default),
|
|
34
|
+
upgrade: () => import("../upgrade-DE6PWJ2I.js").then((m) => m.default),
|
|
35
35
|
"access-token": () => import("../access-token-WWE6BDJH.js").then((m) => m.default),
|
|
36
36
|
address: () => import("../address-EH3C4CVB.js").then((m) => m.default),
|
|
37
37
|
"address-suggestions": () => import("../address-suggestions-RRSLOBFW.js").then((m) => m.default),
|
|
@@ -133,13 +133,13 @@ process.stderr.on("error", (err) => {
|
|
|
133
133
|
if (err.code === "EPIPE") process.exit(0);
|
|
134
134
|
throw err;
|
|
135
135
|
});
|
|
136
|
-
var VERSION = true ? "0.1.
|
|
136
|
+
var VERSION = true ? "0.1.46" : (await null).default.version;
|
|
137
137
|
var reorderedArgv = hoistFlagsAfterSubcommand(process.argv.slice(2));
|
|
138
138
|
process.argv = [process.argv[0], process.argv[1], ...reorderedArgv];
|
|
139
139
|
var args = process.argv.slice(2);
|
|
140
140
|
var completionsIdx = args.indexOf("--_completions");
|
|
141
141
|
if (completionsIdx >= 0) {
|
|
142
|
-
const { handleCompletions } = await import("../completion-
|
|
142
|
+
const { handleCompletions } = await import("../completion-QKONIGGO.js");
|
|
143
143
|
handleCompletions(args[completionsIdx + 1], args[completionsIdx + 2]);
|
|
144
144
|
process.exit(0);
|
|
145
145
|
}
|
|
@@ -7,7 +7,7 @@ var API_LIST = [
|
|
|
7
7
|
kebabName: "access-token",
|
|
8
8
|
title: "Access Token API",
|
|
9
9
|
serverUrl: "https://access-token.sls.epilot.io",
|
|
10
|
-
operationCount:
|
|
10
|
+
operationCount: 9,
|
|
11
11
|
operationIds: [
|
|
12
12
|
"listAccessTokens",
|
|
13
13
|
"createAccessToken",
|
|
@@ -15,7 +15,9 @@ var API_LIST = [
|
|
|
15
15
|
"getAccessTokenJwks",
|
|
16
16
|
"getAccessTokenOIDC",
|
|
17
17
|
"getPublicTokenJwks",
|
|
18
|
-
"
|
|
18
|
+
"getPortalPreviewTokenJwks",
|
|
19
|
+
"getPublicTokenOIDC",
|
|
20
|
+
"getPortalPreviewTokenOIDC"
|
|
19
21
|
]
|
|
20
22
|
},
|
|
21
23
|
{
|
|
@@ -745,7 +747,7 @@ var API_LIST = [
|
|
|
745
747
|
kebabName: "integration-toolkit",
|
|
746
748
|
title: "Integration Toolkit API",
|
|
747
749
|
serverUrl: "https://integration-toolkit.sls.epilot.io",
|
|
748
|
-
operationCount:
|
|
750
|
+
operationCount: 51,
|
|
749
751
|
operationIds: [
|
|
750
752
|
"acknowledgeTracking",
|
|
751
753
|
"triggerErp",
|
|
@@ -781,6 +783,11 @@ var API_LIST = [
|
|
|
781
783
|
"getMonitoringStats",
|
|
782
784
|
"getMonitoringTimeSeries",
|
|
783
785
|
"getOutboundStatus",
|
|
786
|
+
"pollOutboundMessages",
|
|
787
|
+
"ackOutboundMessages",
|
|
788
|
+
"listOutboundDlqMessages",
|
|
789
|
+
"redriveOutboundDlqMessages",
|
|
790
|
+
"unblockOutboundStream",
|
|
784
791
|
"queryAccessLogs",
|
|
785
792
|
"queryOutboundMonitoringEvents",
|
|
786
793
|
"queryMonitoringEventsV2",
|
|
@@ -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.46";
|
|
76
76
|
try {
|
|
77
77
|
const output = execSync("npm ls -g @epilot/cli --depth=0 --json 2>/dev/null", {
|
|
78
78
|
encoding: "utf-8",
|