@epilot/cli 0.1.25 → 0.1.27
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/app.json +151 -19
- package/definitions/configuration-hub.json +623 -0
- package/definitions/customer-portal.json +789 -48
- package/definitions/email-settings.json +86 -4
- package/definitions/entity.json +185 -8
- package/definitions/event-catalog.json +256 -1
- package/definitions/file.json +262 -4
- package/definitions/integration-toolkit.json +480 -4
- package/definitions/journey.json +21 -1
- package/definitions/metering.json +728 -64
- package/definitions/webhooks.json +149 -4
- package/dist/bin/epilot.js +6 -6
- package/dist/{chunk-SGI6WZ57.js → chunk-OBSR3RKB.js} +34 -11
- package/dist/{completion-W6JFZKZI.js → completion-AUP6EFBO.js} +1 -1
- package/dist/{upgrade-EZO5QXKC.js → upgrade-PPGT4OMA.js} +1 -1
- package/package.json +1 -1
|
@@ -355,6 +355,70 @@
|
|
|
355
355
|
}
|
|
356
356
|
}
|
|
357
357
|
},
|
|
358
|
+
"/v1/webhooks/configs/{configId}/test-oauth": {
|
|
359
|
+
"post": {
|
|
360
|
+
"operationId": "testOAuth",
|
|
361
|
+
"summary": "Test OAuth connection",
|
|
362
|
+
"description": "Tests the OAuth client credentials configuration for a saved webhook by attempting\na token exchange against the configured OAuth endpoint. Returns success with token\nmetadata (e.g. expires_in, token_type) or an error describing why the exchange failed.\nDoes not send the actual webhook.\n",
|
|
363
|
+
"tags": [
|
|
364
|
+
"webhooks"
|
|
365
|
+
],
|
|
366
|
+
"parameters": [
|
|
367
|
+
{
|
|
368
|
+
"in": "path",
|
|
369
|
+
"name": "configId",
|
|
370
|
+
"schema": {
|
|
371
|
+
"type": "string"
|
|
372
|
+
},
|
|
373
|
+
"required": true,
|
|
374
|
+
"description": "Short uuid to identify the webhook configuration.",
|
|
375
|
+
"example": "7hj28aasgag2gha2"
|
|
376
|
+
}
|
|
377
|
+
],
|
|
378
|
+
"responses": {
|
|
379
|
+
"200": {
|
|
380
|
+
"description": "OAuth token exchange succeeded",
|
|
381
|
+
"content": {
|
|
382
|
+
"application/json": {
|
|
383
|
+
"schema": {
|
|
384
|
+
"$ref": "#/components/schemas/TestOAuthResponse"
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
"400": {
|
|
390
|
+
"description": "Webhook does not use OAuth or configuration is invalid",
|
|
391
|
+
"content": {
|
|
392
|
+
"application/json": {
|
|
393
|
+
"schema": {
|
|
394
|
+
"$ref": "#/components/schemas/ErrorResp"
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
},
|
|
399
|
+
"404": {
|
|
400
|
+
"description": "No config found",
|
|
401
|
+
"content": {
|
|
402
|
+
"application/json": {
|
|
403
|
+
"schema": {
|
|
404
|
+
"$ref": "#/components/schemas/ErrorResp"
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"500": {
|
|
410
|
+
"description": "OAuth token exchange failed",
|
|
411
|
+
"content": {
|
|
412
|
+
"application/json": {
|
|
413
|
+
"schema": {
|
|
414
|
+
"$ref": "#/components/schemas/ErrorResp"
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
},
|
|
358
422
|
"/v1/webhooks/configs/{configId}/trigger": {
|
|
359
423
|
"post": {
|
|
360
424
|
"operationId": "triggerWebhook",
|
|
@@ -1118,7 +1182,9 @@
|
|
|
1118
1182
|
"type": "string"
|
|
1119
1183
|
},
|
|
1120
1184
|
"password": {
|
|
1121
|
-
"type": "string"
|
|
1185
|
+
"type": "string",
|
|
1186
|
+
"nullable": true,
|
|
1187
|
+
"description": "On update: omit to preserve existing, pass null to explicitly clear, pass string to set new value.\n"
|
|
1122
1188
|
},
|
|
1123
1189
|
"passwordIsEnvVar": {
|
|
1124
1190
|
"type": "boolean",
|
|
@@ -1137,7 +1203,9 @@
|
|
|
1137
1203
|
"type": "string"
|
|
1138
1204
|
},
|
|
1139
1205
|
"clientSecret": {
|
|
1140
|
-
"type": "string"
|
|
1206
|
+
"type": "string",
|
|
1207
|
+
"nullable": true,
|
|
1208
|
+
"description": "On update: omit to preserve existing, pass null to explicitly clear, pass string to set new value.\n"
|
|
1141
1209
|
},
|
|
1142
1210
|
"clientSecretIsEnvVar": {
|
|
1143
1211
|
"type": "boolean",
|
|
@@ -1171,7 +1239,9 @@
|
|
|
1171
1239
|
"type": "string"
|
|
1172
1240
|
},
|
|
1173
1241
|
"keyValue": {
|
|
1174
|
-
"type": "string"
|
|
1242
|
+
"type": "string",
|
|
1243
|
+
"nullable": true,
|
|
1244
|
+
"description": "On update: omit to preserve existing, pass null to explicitly clear, pass string to set new value.\n"
|
|
1175
1245
|
},
|
|
1176
1246
|
"keyValueIsEnvVar": {
|
|
1177
1247
|
"type": "boolean",
|
|
@@ -1200,7 +1270,12 @@
|
|
|
1200
1270
|
},
|
|
1201
1271
|
"creationTime": {
|
|
1202
1272
|
"type": "string",
|
|
1203
|
-
"description": "creation
|
|
1273
|
+
"description": "Timestamp the webhook was first created. Immutable after creation.",
|
|
1274
|
+
"example": "2021-04-27T12:01:13.000Z"
|
|
1275
|
+
},
|
|
1276
|
+
"updatedTime": {
|
|
1277
|
+
"type": "string",
|
|
1278
|
+
"description": "Timestamp of the most recent update to the webhook. Equals creationTime for never-edited webhooks. May be absent on legacy records written before this field was introduced.",
|
|
1204
1279
|
"example": "2021-04-27T12:01:13.000Z"
|
|
1205
1280
|
},
|
|
1206
1281
|
"httpMethod": {
|
|
@@ -1254,6 +1329,43 @@
|
|
|
1254
1329
|
"type": "string",
|
|
1255
1330
|
"description": "JSONata expression to transform the payload"
|
|
1256
1331
|
},
|
|
1332
|
+
"deliveryMode": {
|
|
1333
|
+
"type": "string",
|
|
1334
|
+
"enum": [
|
|
1335
|
+
"json_base64",
|
|
1336
|
+
"binary_multipart"
|
|
1337
|
+
],
|
|
1338
|
+
"description": "Controls how file data is delivered to the endpoint. Only relevant when the webhook is triggered by a file event. Absent for non-file-event webhooks."
|
|
1339
|
+
},
|
|
1340
|
+
"multipartConfig": {
|
|
1341
|
+
"type": "object",
|
|
1342
|
+
"description": "Configuration for `binary_multipart` delivery mode. Describes the\nshape of the multipart/form-data body the receiver expects — pick\nthe attachment(s) via a JSONata expression and add scalar form\nparts on the side.\n",
|
|
1343
|
+
"properties": {
|
|
1344
|
+
"fileFieldName": {
|
|
1345
|
+
"type": "string",
|
|
1346
|
+
"description": "Name of the binary form part(s). Default `\"file\"`. The same\nname is reused when `fileFieldStrategy=\"multi\"` produces\nmultiple file parts.\n"
|
|
1347
|
+
},
|
|
1348
|
+
"fileFieldStrategy": {
|
|
1349
|
+
"type": "string",
|
|
1350
|
+
"enum": [
|
|
1351
|
+
"single",
|
|
1352
|
+
"multi"
|
|
1353
|
+
],
|
|
1354
|
+
"description": "Assertion on the picker result. `single` (default) fails the\ndelivery when `fileSource` resolves to more than one\nattachment. `multi` accepts any non-empty count.\n"
|
|
1355
|
+
},
|
|
1356
|
+
"fileSource": {
|
|
1357
|
+
"type": "string",
|
|
1358
|
+
"description": "JSONata expression evaluated against the event payload that\npicks the attachment(s) to send. Default `\"event_attachments\"`\n(all attachments). When the result is `undefined`, `null`, or\nan empty array, the event is silently skipped (no HTTP\nrequest, no error notification). Validated for syntax at\nconfig-save time.\n"
|
|
1359
|
+
},
|
|
1360
|
+
"extraFields": {
|
|
1361
|
+
"type": "object",
|
|
1362
|
+
"additionalProperties": {
|
|
1363
|
+
"type": "string"
|
|
1364
|
+
},
|
|
1365
|
+
"description": "Map of `formFieldName → JSONata expression`. Each value is\nevaluated against the event payload, then passed through\nenv-resolution (same as `custom_headers`). Static literals\nmust be JSONata-quoted: a bare `\"business_partner\"` is\ntreated as a path lookup and yields `undefined`; for a\nliteral value, single-quote inside the JSON string:\n`\"'business_partner'\"`. Expressions yielding `undefined` or\n`null` silently omit the field. Object/array results are\nJSON-stringified before being appended. Values are not part\nof the signed payload.\n"
|
|
1366
|
+
}
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1257
1369
|
"filterConditions": {
|
|
1258
1370
|
"$ref": "#/components/schemas/WebhookConditionGroup"
|
|
1259
1371
|
},
|
|
@@ -1383,6 +1495,10 @@
|
|
|
1383
1495
|
"include_changed_attributes": {
|
|
1384
1496
|
"type": "boolean"
|
|
1385
1497
|
},
|
|
1498
|
+
"apply_changesets": {
|
|
1499
|
+
"type": "boolean",
|
|
1500
|
+
"description": "When true, entity fields show proposed changeset values instead of current values"
|
|
1501
|
+
},
|
|
1386
1502
|
"custom_headers": {
|
|
1387
1503
|
"$ref": "#/components/schemas/CustomHeader"
|
|
1388
1504
|
}
|
|
@@ -1590,6 +1706,35 @@
|
|
|
1590
1706
|
},
|
|
1591
1707
|
"additionalProperties": true
|
|
1592
1708
|
},
|
|
1709
|
+
"TestOAuthResponse": {
|
|
1710
|
+
"type": "object",
|
|
1711
|
+
"properties": {
|
|
1712
|
+
"success": {
|
|
1713
|
+
"type": "boolean",
|
|
1714
|
+
"description": "Whether the OAuth token exchange succeeded",
|
|
1715
|
+
"example": true
|
|
1716
|
+
},
|
|
1717
|
+
"expires_in": {
|
|
1718
|
+
"type": "number",
|
|
1719
|
+
"description": "Token validity in seconds as reported by the OAuth provider",
|
|
1720
|
+
"example": 3600
|
|
1721
|
+
},
|
|
1722
|
+
"token_type": {
|
|
1723
|
+
"type": "string",
|
|
1724
|
+
"description": "Token type returned by the OAuth provider",
|
|
1725
|
+
"example": "Bearer"
|
|
1726
|
+
},
|
|
1727
|
+
"message": {
|
|
1728
|
+
"type": "string",
|
|
1729
|
+
"description": "Human-readable result message",
|
|
1730
|
+
"example": "OAuth token exchange successful"
|
|
1731
|
+
}
|
|
1732
|
+
},
|
|
1733
|
+
"required": [
|
|
1734
|
+
"success",
|
|
1735
|
+
"message"
|
|
1736
|
+
]
|
|
1737
|
+
},
|
|
1593
1738
|
"BatchReplayRequest": {
|
|
1594
1739
|
"type": "object",
|
|
1595
1740
|
"properties": {
|
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-OBSR3RKB.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.27",
|
|
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-AUP6EFBO.js").then((m) => m.default),
|
|
34
|
+
upgrade: () => import("../upgrade-PPGT4OMA.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.27" : (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-AUP6EFBO.js");
|
|
143
143
|
handleCompletions(args[completionsIdx + 1], args[completionsIdx + 2]);
|
|
144
144
|
process.exit(0);
|
|
145
145
|
}
|
|
@@ -218,13 +218,18 @@ var API_LIST = [
|
|
|
218
218
|
kebabName: "configuration-hub",
|
|
219
219
|
title: "Configuration Hub API",
|
|
220
220
|
serverUrl: "https://configuration-hub.sls.epilot.io",
|
|
221
|
-
operationCount:
|
|
221
|
+
operationCount: 11,
|
|
222
222
|
operationIds: [
|
|
223
223
|
"listConfigTypes",
|
|
224
224
|
"listConfigs",
|
|
225
225
|
"getConfigDependencies",
|
|
226
226
|
"getConfigUsedBy",
|
|
227
227
|
"getIndex",
|
|
228
|
+
"listSyncJobs",
|
|
229
|
+
"createSyncJob",
|
|
230
|
+
"getSyncJob",
|
|
231
|
+
"retrySyncJob",
|
|
232
|
+
"listSyncJobResources",
|
|
228
233
|
"rebuildIndex"
|
|
229
234
|
]
|
|
230
235
|
},
|
|
@@ -241,7 +246,7 @@ var API_LIST = [
|
|
|
241
246
|
kebabName: "customer-portal",
|
|
242
247
|
title: "Portal API",
|
|
243
248
|
serverUrl: "https://customer-portal-api.sls.epilot.io",
|
|
244
|
-
operationCount:
|
|
249
|
+
operationCount: 148,
|
|
245
250
|
operationIds: [
|
|
246
251
|
"upsertPortal",
|
|
247
252
|
"createUser",
|
|
@@ -257,6 +262,7 @@ var API_LIST = [
|
|
|
257
262
|
"getPublicPortalExtensionDetailsV3",
|
|
258
263
|
"getConsumption",
|
|
259
264
|
"prepareVisualizationExport",
|
|
265
|
+
"getVisualizationMetadata",
|
|
260
266
|
"getCosts",
|
|
261
267
|
"getPrices",
|
|
262
268
|
"getExternalLinks",
|
|
@@ -294,6 +300,7 @@ var API_LIST = [
|
|
|
294
300
|
"getECPContact",
|
|
295
301
|
"checkContactExists",
|
|
296
302
|
"checkContactExistsV3",
|
|
303
|
+
"checkAccountExists",
|
|
297
304
|
"getValidSecondaryAttributes",
|
|
298
305
|
"getPortalUser",
|
|
299
306
|
"updatePortalUser",
|
|
@@ -351,6 +358,7 @@ var API_LIST = [
|
|
|
351
358
|
"createMeterReading",
|
|
352
359
|
"getAllowedMeterReadingRange",
|
|
353
360
|
"getMeterReadings",
|
|
361
|
+
"getSSOProvider",
|
|
354
362
|
"ssoLogin",
|
|
355
363
|
"ssoLoginV3",
|
|
356
364
|
"ssoRedirect",
|
|
@@ -385,7 +393,9 @@ var API_LIST = [
|
|
|
385
393
|
"resendPartnerInvitation",
|
|
386
394
|
"revokePartner",
|
|
387
395
|
"disablePartner",
|
|
388
|
-
"enablePartner"
|
|
396
|
+
"enablePartner",
|
|
397
|
+
"verifyDns",
|
|
398
|
+
"portalProxyExecute"
|
|
389
399
|
]
|
|
390
400
|
},
|
|
391
401
|
{
|
|
@@ -466,7 +476,7 @@ var API_LIST = [
|
|
|
466
476
|
kebabName: "email-settings",
|
|
467
477
|
title: "Messaging Settings API",
|
|
468
478
|
serverUrl: "https://email-settings.sls.epilot.io",
|
|
469
|
-
operationCount:
|
|
479
|
+
operationCount: 36,
|
|
470
480
|
operationIds: [
|
|
471
481
|
"provisionEpilotEmailAddress",
|
|
472
482
|
"setEmailAddressPrimary",
|
|
@@ -502,6 +512,7 @@ var API_LIST = [
|
|
|
502
512
|
"addDomain",
|
|
503
513
|
"deleteDomain",
|
|
504
514
|
"verifyNameServers",
|
|
515
|
+
"verifyDnsRecords",
|
|
505
516
|
"verifyDomain"
|
|
506
517
|
]
|
|
507
518
|
},
|
|
@@ -660,7 +671,7 @@ var API_LIST = [
|
|
|
660
671
|
kebabName: "event-catalog",
|
|
661
672
|
title: "Event Catalog API",
|
|
662
673
|
serverUrl: "https://event-catalog.sls.epilot.io",
|
|
663
|
-
operationCount:
|
|
674
|
+
operationCount: 9,
|
|
664
675
|
operationIds: [
|
|
665
676
|
"listEvents",
|
|
666
677
|
"getEvent",
|
|
@@ -668,6 +679,8 @@ var API_LIST = [
|
|
|
668
679
|
"getEventJSONSchema",
|
|
669
680
|
"getEventExample",
|
|
670
681
|
"searchEventHistory",
|
|
682
|
+
"searchEventHistoryV2",
|
|
683
|
+
"getHistoricalEvent",
|
|
671
684
|
"triggerEvent"
|
|
672
685
|
]
|
|
673
686
|
},
|
|
@@ -676,7 +689,7 @@ var API_LIST = [
|
|
|
676
689
|
kebabName: "file",
|
|
677
690
|
title: "File API",
|
|
678
691
|
serverUrl: "https://file.sls.epilot.io",
|
|
679
|
-
operationCount:
|
|
692
|
+
operationCount: 29,
|
|
680
693
|
operationIds: [
|
|
681
694
|
"uploadFileV2",
|
|
682
695
|
"saveFileV2",
|
|
@@ -687,6 +700,8 @@ var API_LIST = [
|
|
|
687
700
|
"downloadFile",
|
|
688
701
|
"downloadS3File",
|
|
689
702
|
"downloadFiles",
|
|
703
|
+
"createZipJob",
|
|
704
|
+
"getZipJob",
|
|
690
705
|
"previewFile",
|
|
691
706
|
"previewS3FileGet",
|
|
692
707
|
"previewS3File",
|
|
@@ -720,7 +735,7 @@ var API_LIST = [
|
|
|
720
735
|
kebabName: "integration-toolkit",
|
|
721
736
|
title: "Integration Toolkit API",
|
|
722
737
|
serverUrl: "https://integration-toolkit.sls.epilot.io",
|
|
723
|
-
operationCount:
|
|
738
|
+
operationCount: 46,
|
|
724
739
|
operationIds: [
|
|
725
740
|
"acknowledgeTracking",
|
|
726
741
|
"triggerErp",
|
|
@@ -747,6 +762,9 @@ var API_LIST = [
|
|
|
747
762
|
"getIntegrationV2",
|
|
748
763
|
"updateIntegrationV2",
|
|
749
764
|
"deleteIntegrationV2",
|
|
765
|
+
"getSecureProxyWhitelist",
|
|
766
|
+
"updateSecureProxyWhitelist",
|
|
767
|
+
"listSecureProxyWhitelistHistory",
|
|
750
768
|
"setIntegrationAppMapping",
|
|
751
769
|
"deleteIntegrationAppMapping",
|
|
752
770
|
"queryInboundMonitoringEvents",
|
|
@@ -876,8 +894,8 @@ var API_LIST = [
|
|
|
876
894
|
apiName: "metering",
|
|
877
895
|
kebabName: "metering",
|
|
878
896
|
title: "Metering API",
|
|
879
|
-
serverUrl: "
|
|
880
|
-
operationCount:
|
|
897
|
+
serverUrl: "",
|
|
898
|
+
operationCount: 20,
|
|
881
899
|
operationIds: [
|
|
882
900
|
"getCustomerMeters",
|
|
883
901
|
"getMetersByContractId",
|
|
@@ -894,7 +912,11 @@ var API_LIST = [
|
|
|
894
912
|
"createReadingWithMeter",
|
|
895
913
|
"getReadingsByInterval",
|
|
896
914
|
"updateMeterReading",
|
|
897
|
-
"deleteMeterReading"
|
|
915
|
+
"deleteMeterReading",
|
|
916
|
+
"getReadingChangesets",
|
|
917
|
+
"applyReadingChangeset",
|
|
918
|
+
"dismissReadingChangeset",
|
|
919
|
+
"updateReadingChangeset"
|
|
898
920
|
]
|
|
899
921
|
},
|
|
900
922
|
{
|
|
@@ -1240,7 +1262,7 @@ var API_LIST = [
|
|
|
1240
1262
|
kebabName: "webhooks",
|
|
1241
1263
|
title: "Webhooks",
|
|
1242
1264
|
serverUrl: "https://webhooks.sls.epilot.io",
|
|
1243
|
-
operationCount:
|
|
1265
|
+
operationCount: 15,
|
|
1244
1266
|
operationIds: [
|
|
1245
1267
|
"getPublicKey",
|
|
1246
1268
|
"getConfiguredEvents",
|
|
@@ -1249,6 +1271,7 @@ var API_LIST = [
|
|
|
1249
1271
|
"getConfig",
|
|
1250
1272
|
"updateConfig",
|
|
1251
1273
|
"deleteConfig",
|
|
1274
|
+
"testOAuth",
|
|
1252
1275
|
"triggerWebhook",
|
|
1253
1276
|
"getWehookEvents",
|
|
1254
1277
|
"batchReplayEvents",
|
|
@@ -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.27";
|
|
76
76
|
try {
|
|
77
77
|
const output = execSync("npm ls -g @epilot/cli --depth=0 --json 2>/dev/null", {
|
|
78
78
|
encoding: "utf-8",
|