@epilot/cli 0.1.69 → 0.1.71
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 +18 -0
- package/definitions/blueprint-manifest.json +648 -11
- package/definitions/customer-portal.json +119 -0
- package/definitions/message.json +146 -1
- package/definitions/metering.json +6 -6
- package/definitions/targeting.json +291 -0
- package/definitions/user.json +146 -0
- package/definitions/webhooks.json +24 -12
- package/definitions/workflow-definition.json +282 -44
- package/definitions/workflow.json +12 -0
- package/dist/bin/epilot.js +6 -6
- package/dist/{chunk-HIU6WP36.js → chunk-HMUFGWB3.js} +15 -5
- package/dist/{completion-7FZ4RKFG.js → completion-L6M2AUJF.js} +1 -1
- package/dist/{upgrade-A3WU36B4.js → upgrade-ZLQXCBG5.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-HMUFGWB3.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.71",
|
|
15
15
|
description: "CLI for epilot APIs"
|
|
16
16
|
},
|
|
17
17
|
args: {
|
|
@@ -30,8 +30,8 @@ var main = defineCommand({
|
|
|
30
30
|
auth: () => import("../auth-4HG7B2GC.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-L6M2AUJF.js").then((m) => m.default),
|
|
34
|
+
upgrade: () => import("../upgrade-ZLQXCBG5.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),
|
|
@@ -134,13 +134,13 @@ process.stderr.on("error", (err) => {
|
|
|
134
134
|
if (err.code === "EPIPE") process.exit(0);
|
|
135
135
|
throw err;
|
|
136
136
|
});
|
|
137
|
-
var VERSION = true ? "0.1.
|
|
137
|
+
var VERSION = true ? "0.1.71" : (await null).default.version;
|
|
138
138
|
var reorderedArgv = hoistFlagsAfterSubcommand(process.argv.slice(2));
|
|
139
139
|
process.argv = [process.argv[0], process.argv[1], ...reorderedArgv];
|
|
140
140
|
var args = process.argv.slice(2);
|
|
141
141
|
var completionsIdx = args.indexOf("--_completions");
|
|
142
142
|
if (completionsIdx >= 0) {
|
|
143
|
-
const { handleCompletions } = await import("../completion-
|
|
143
|
+
const { handleCompletions } = await import("../completion-L6M2AUJF.js");
|
|
144
144
|
handleCompletions(args[completionsIdx + 1], args[completionsIdx + 2]);
|
|
145
145
|
process.exit(0);
|
|
146
146
|
}
|
|
@@ -166,7 +166,7 @@ var API_LIST = [
|
|
|
166
166
|
kebabName: "blueprint-manifest",
|
|
167
167
|
title: "Blueprint Manifest API",
|
|
168
168
|
serverUrl: "https://blueprint-manifest.sls.epilot.io",
|
|
169
|
-
operationCount:
|
|
169
|
+
operationCount: 66,
|
|
170
170
|
operationIds: [
|
|
171
171
|
"getJob",
|
|
172
172
|
"createExport",
|
|
@@ -221,10 +221,15 @@ var API_LIST = [
|
|
|
221
221
|
"createMarketplaceListingVersion",
|
|
222
222
|
"updateMarketplaceListingVersion",
|
|
223
223
|
"publishMarketplaceListingVersion",
|
|
224
|
+
"publishBlueprintV3",
|
|
224
225
|
"installBlueprintV3",
|
|
225
226
|
"restoreBlueprintDeploymentV3",
|
|
226
227
|
"getRestorePreview",
|
|
227
228
|
"getBlueprintLineageV3",
|
|
229
|
+
"createBulkInstallV3",
|
|
230
|
+
"getBulkInstallV3",
|
|
231
|
+
"listBulkInstallTargetsV3",
|
|
232
|
+
"retryBulkInstallTargetV3",
|
|
228
233
|
"listUniquenessCriteria",
|
|
229
234
|
"getUniquenessCriteria",
|
|
230
235
|
"putUniquenessCriteria",
|
|
@@ -272,7 +277,7 @@ var API_LIST = [
|
|
|
272
277
|
kebabName: "customer-portal",
|
|
273
278
|
title: "Portal API",
|
|
274
279
|
serverUrl: "https://customer-portal-api.sls.epilot.io",
|
|
275
|
-
operationCount:
|
|
280
|
+
operationCount: 159,
|
|
276
281
|
operationIds: [
|
|
277
282
|
"upsertPortal",
|
|
278
283
|
"createUser",
|
|
@@ -358,6 +363,7 @@ var API_LIST = [
|
|
|
358
363
|
"getAllRequests",
|
|
359
364
|
"getAllContracts",
|
|
360
365
|
"getContract",
|
|
366
|
+
"getContractWithTemplates",
|
|
361
367
|
"updateContract",
|
|
362
368
|
"addContractByIdentifiers",
|
|
363
369
|
"getEntityIdentifiers",
|
|
@@ -884,7 +890,7 @@ var API_LIST = [
|
|
|
884
890
|
kebabName: "message",
|
|
885
891
|
title: "Message API",
|
|
886
892
|
serverUrl: "https://message.sls.epilot.io",
|
|
887
|
-
operationCount:
|
|
893
|
+
operationCount: 53,
|
|
888
894
|
operationIds: [
|
|
889
895
|
"sendMessage",
|
|
890
896
|
"updateMessage",
|
|
@@ -902,6 +908,7 @@ var API_LIST = [
|
|
|
902
908
|
"searchThreads",
|
|
903
909
|
"searchThreadsV2",
|
|
904
910
|
"searchIds",
|
|
911
|
+
"getAssigneeWorkload",
|
|
905
912
|
"updateThread",
|
|
906
913
|
"deleteThread",
|
|
907
914
|
"moveThread",
|
|
@@ -1235,7 +1242,7 @@ var API_LIST = [
|
|
|
1235
1242
|
kebabName: "targeting",
|
|
1236
1243
|
title: "Targeting API",
|
|
1237
1244
|
serverUrl: "https://targeting.sls.epilot.io",
|
|
1238
|
-
operationCount:
|
|
1245
|
+
operationCount: 14,
|
|
1239
1246
|
operationIds: [
|
|
1240
1247
|
"changeCampaignStatus",
|
|
1241
1248
|
"getCampaignJobStatus",
|
|
@@ -1243,11 +1250,13 @@ var API_LIST = [
|
|
|
1243
1250
|
"retriggerCampaignAutomations",
|
|
1244
1251
|
"setupCampaign",
|
|
1245
1252
|
"matchCampaigns",
|
|
1253
|
+
"discoverCampaigns",
|
|
1246
1254
|
"matchTargets",
|
|
1247
1255
|
"getTargetQueries",
|
|
1248
1256
|
"createRecipient",
|
|
1249
1257
|
"updateRecipient",
|
|
1250
1258
|
"updateRecipientPortalStatus",
|
|
1259
|
+
"updateRecipientEntityUiStatus",
|
|
1251
1260
|
"getRecipients"
|
|
1252
1261
|
]
|
|
1253
1262
|
},
|
|
@@ -1277,7 +1286,7 @@ var API_LIST = [
|
|
|
1277
1286
|
kebabName: "user",
|
|
1278
1287
|
title: "User API",
|
|
1279
1288
|
serverUrl: "https://user.sls.epilot.io",
|
|
1280
|
-
operationCount:
|
|
1289
|
+
operationCount: 42,
|
|
1281
1290
|
operationIds: [
|
|
1282
1291
|
"signUpUser",
|
|
1283
1292
|
"getMeV2",
|
|
@@ -1304,6 +1313,7 @@ var API_LIST = [
|
|
|
1304
1313
|
"getNavigation",
|
|
1305
1314
|
"verifyEmailWithToken",
|
|
1306
1315
|
"requestPasswordReset",
|
|
1316
|
+
"resetPassword",
|
|
1307
1317
|
"checkInviteToken",
|
|
1308
1318
|
"activateUser",
|
|
1309
1319
|
"rejectInvite",
|
|
@@ -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.71";
|
|
76
76
|
try {
|
|
77
77
|
const output = execSync("npm ls -g @epilot/cli --depth=0 --json 2>/dev/null", {
|
|
78
78
|
encoding: "utf-8",
|