@epilot/cli 0.1.24 → 0.1.25
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 +3 -1
- package/definitions/app.json +390 -14
- package/definitions/calendar.json +675 -0
- package/definitions/customer-portal.json +271 -12
- package/definitions/notes.json +175 -130
- package/definitions/pricing.json +5 -1
- package/dist/bin/epilot.js +7 -6
- package/dist/calendar-IHVASAEY.js +56 -0
- package/dist/{chunk-U5JW65I3.js → chunk-SGI6WZ57.js} +14 -3
- package/dist/{completion-76TTN5FM.js → completion-W6JFZKZI.js} +1 -1
- package/dist/{upgrade-3SGNJUWL.js → upgrade-EZO5QXKC.js} +1 -1
- package/package.json +1 -1
package/definitions/notes.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.2",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.4.0",
|
|
5
5
|
"title": "Notes API",
|
|
6
|
-
"description": "Facade API Backend for Epilot Notes feature"
|
|
6
|
+
"description": "Facade API Backend for Epilot Notes feature",
|
|
7
|
+
"contact": {
|
|
8
|
+
"name": "epilot",
|
|
9
|
+
"url": "https://docs.epilot.io"
|
|
10
|
+
}
|
|
7
11
|
},
|
|
8
12
|
"servers": [
|
|
9
13
|
{
|
|
@@ -16,6 +20,9 @@
|
|
|
16
20
|
},
|
|
17
21
|
{
|
|
18
22
|
"name": "Pinning"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "Reactions"
|
|
19
26
|
}
|
|
20
27
|
],
|
|
21
28
|
"security": [
|
|
@@ -675,30 +682,33 @@
|
|
|
675
682
|
"format": "date-time"
|
|
676
683
|
},
|
|
677
684
|
"created_by": {
|
|
678
|
-
"type": "
|
|
679
|
-
"
|
|
680
|
-
"type":
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
685
|
+
"type": "array",
|
|
686
|
+
"items": {
|
|
687
|
+
"type": "object",
|
|
688
|
+
"properties": {
|
|
689
|
+
"type": {
|
|
690
|
+
"$ref": "#/components/schemas/CreatedByType"
|
|
691
|
+
},
|
|
692
|
+
"user_id": {
|
|
693
|
+
"type": "string"
|
|
694
|
+
},
|
|
695
|
+
"display_name": {
|
|
696
|
+
"type": "string"
|
|
697
|
+
},
|
|
698
|
+
"org_id": {
|
|
699
|
+
"type": "string"
|
|
700
|
+
},
|
|
701
|
+
"email": {
|
|
702
|
+
"type": "string"
|
|
703
|
+
},
|
|
704
|
+
"phone": {
|
|
705
|
+
"type": "string"
|
|
706
|
+
}
|
|
694
707
|
},
|
|
695
|
-
"
|
|
696
|
-
"type"
|
|
697
|
-
|
|
698
|
-
}
|
|
699
|
-
"required": [
|
|
700
|
-
"type"
|
|
701
|
-
]
|
|
708
|
+
"required": [
|
|
709
|
+
"type"
|
|
710
|
+
]
|
|
711
|
+
}
|
|
702
712
|
},
|
|
703
713
|
"read_by": {
|
|
704
714
|
"type": "array",
|
|
@@ -873,30 +883,33 @@
|
|
|
873
883
|
"format": "date-time"
|
|
874
884
|
},
|
|
875
885
|
"created_by": {
|
|
876
|
-
"type": "
|
|
877
|
-
"
|
|
878
|
-
"type":
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
886
|
+
"type": "array",
|
|
887
|
+
"items": {
|
|
888
|
+
"type": "object",
|
|
889
|
+
"properties": {
|
|
890
|
+
"type": {
|
|
891
|
+
"$ref": "#/components/schemas/CreatedByType"
|
|
892
|
+
},
|
|
893
|
+
"user_id": {
|
|
894
|
+
"type": "string"
|
|
895
|
+
},
|
|
896
|
+
"display_name": {
|
|
897
|
+
"type": "string"
|
|
898
|
+
},
|
|
899
|
+
"org_id": {
|
|
900
|
+
"type": "string"
|
|
901
|
+
},
|
|
902
|
+
"email": {
|
|
903
|
+
"type": "string"
|
|
904
|
+
},
|
|
905
|
+
"phone": {
|
|
906
|
+
"type": "string"
|
|
907
|
+
}
|
|
892
908
|
},
|
|
893
|
-
"
|
|
894
|
-
"type"
|
|
895
|
-
|
|
896
|
-
}
|
|
897
|
-
"required": [
|
|
898
|
-
"type"
|
|
899
|
-
]
|
|
909
|
+
"required": [
|
|
910
|
+
"type"
|
|
911
|
+
]
|
|
912
|
+
}
|
|
900
913
|
},
|
|
901
914
|
"read_by": {
|
|
902
915
|
"type": "array",
|
|
@@ -984,35 +997,43 @@
|
|
|
984
997
|
"description": "The timestamp of when this Note was pinned",
|
|
985
998
|
"format": "date-time"
|
|
986
999
|
},
|
|
1000
|
+
"edited_at": {
|
|
1001
|
+
"type": "string",
|
|
1002
|
+
"description": "The timestamp of when this Note was last updated",
|
|
1003
|
+
"format": "date-time"
|
|
1004
|
+
},
|
|
987
1005
|
"created_by": {
|
|
988
|
-
"type": "
|
|
989
|
-
"
|
|
990
|
-
"type":
|
|
991
|
-
|
|
992
|
-
"
|
|
993
|
-
"
|
|
994
|
-
"
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1006
|
+
"type": "array",
|
|
1007
|
+
"items": {
|
|
1008
|
+
"type": "object",
|
|
1009
|
+
"properties": {
|
|
1010
|
+
"type": {
|
|
1011
|
+
"type": "string",
|
|
1012
|
+
"enum": [
|
|
1013
|
+
"user",
|
|
1014
|
+
"group"
|
|
1015
|
+
]
|
|
1016
|
+
},
|
|
1017
|
+
"user_id": {
|
|
1018
|
+
"type": "string"
|
|
1019
|
+
},
|
|
1020
|
+
"display_name": {
|
|
1021
|
+
"type": "string"
|
|
1022
|
+
},
|
|
1023
|
+
"org_id": {
|
|
1024
|
+
"type": "string"
|
|
1025
|
+
},
|
|
1026
|
+
"email": {
|
|
1027
|
+
"type": "string"
|
|
1028
|
+
},
|
|
1029
|
+
"phone": {
|
|
1030
|
+
"type": "string"
|
|
1031
|
+
}
|
|
1008
1032
|
},
|
|
1009
|
-
"
|
|
1010
|
-
"type"
|
|
1011
|
-
|
|
1012
|
-
}
|
|
1013
|
-
"required": [
|
|
1014
|
-
"type"
|
|
1015
|
-
]
|
|
1033
|
+
"required": [
|
|
1034
|
+
"type"
|
|
1035
|
+
]
|
|
1036
|
+
}
|
|
1016
1037
|
},
|
|
1017
1038
|
"read_by": {
|
|
1018
1039
|
"type": "array",
|
|
@@ -1119,35 +1140,43 @@
|
|
|
1119
1140
|
"description": "The timestamp of when this Note was pinned",
|
|
1120
1141
|
"format": "date-time"
|
|
1121
1142
|
},
|
|
1143
|
+
"edited_at": {
|
|
1144
|
+
"type": "string",
|
|
1145
|
+
"description": "The timestamp of when this Note was last updated",
|
|
1146
|
+
"format": "date-time"
|
|
1147
|
+
},
|
|
1122
1148
|
"created_by": {
|
|
1123
|
-
"type": "
|
|
1124
|
-
"
|
|
1125
|
-
"type":
|
|
1126
|
-
|
|
1127
|
-
"
|
|
1128
|
-
"
|
|
1129
|
-
"
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1149
|
+
"type": "array",
|
|
1150
|
+
"items": {
|
|
1151
|
+
"type": "object",
|
|
1152
|
+
"properties": {
|
|
1153
|
+
"type": {
|
|
1154
|
+
"type": "string",
|
|
1155
|
+
"enum": [
|
|
1156
|
+
"user",
|
|
1157
|
+
"group"
|
|
1158
|
+
]
|
|
1159
|
+
},
|
|
1160
|
+
"user_id": {
|
|
1161
|
+
"type": "string"
|
|
1162
|
+
},
|
|
1163
|
+
"display_name": {
|
|
1164
|
+
"type": "string"
|
|
1165
|
+
},
|
|
1166
|
+
"org_id": {
|
|
1167
|
+
"type": "string"
|
|
1168
|
+
},
|
|
1169
|
+
"email": {
|
|
1170
|
+
"type": "string"
|
|
1171
|
+
},
|
|
1172
|
+
"phone": {
|
|
1173
|
+
"type": "string"
|
|
1174
|
+
}
|
|
1143
1175
|
},
|
|
1144
|
-
"
|
|
1145
|
-
"type"
|
|
1146
|
-
|
|
1147
|
-
}
|
|
1148
|
-
"required": [
|
|
1149
|
-
"type"
|
|
1150
|
-
]
|
|
1176
|
+
"required": [
|
|
1177
|
+
"type"
|
|
1178
|
+
]
|
|
1179
|
+
}
|
|
1151
1180
|
},
|
|
1152
1181
|
"read_by": {
|
|
1153
1182
|
"type": "array",
|
|
@@ -1339,35 +1368,43 @@
|
|
|
1339
1368
|
"description": "The timestamp of when this Note was pinned",
|
|
1340
1369
|
"format": "date-time"
|
|
1341
1370
|
},
|
|
1371
|
+
"edited_at": {
|
|
1372
|
+
"type": "string",
|
|
1373
|
+
"description": "The timestamp of when this Note was last updated",
|
|
1374
|
+
"format": "date-time"
|
|
1375
|
+
},
|
|
1342
1376
|
"created_by": {
|
|
1343
|
-
"type": "
|
|
1344
|
-
"
|
|
1345
|
-
"type":
|
|
1346
|
-
|
|
1347
|
-
"
|
|
1348
|
-
"
|
|
1349
|
-
"
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1377
|
+
"type": "array",
|
|
1378
|
+
"items": {
|
|
1379
|
+
"type": "object",
|
|
1380
|
+
"properties": {
|
|
1381
|
+
"type": {
|
|
1382
|
+
"type": "string",
|
|
1383
|
+
"enum": [
|
|
1384
|
+
"user",
|
|
1385
|
+
"group"
|
|
1386
|
+
]
|
|
1387
|
+
},
|
|
1388
|
+
"user_id": {
|
|
1389
|
+
"type": "string"
|
|
1390
|
+
},
|
|
1391
|
+
"display_name": {
|
|
1392
|
+
"type": "string"
|
|
1393
|
+
},
|
|
1394
|
+
"org_id": {
|
|
1395
|
+
"type": "string"
|
|
1396
|
+
},
|
|
1397
|
+
"email": {
|
|
1398
|
+
"type": "string"
|
|
1399
|
+
},
|
|
1400
|
+
"phone": {
|
|
1401
|
+
"type": "string"
|
|
1402
|
+
}
|
|
1363
1403
|
},
|
|
1364
|
-
"
|
|
1365
|
-
"type"
|
|
1366
|
-
|
|
1367
|
-
}
|
|
1368
|
-
"required": [
|
|
1369
|
-
"type"
|
|
1370
|
-
]
|
|
1404
|
+
"required": [
|
|
1405
|
+
"type"
|
|
1406
|
+
]
|
|
1407
|
+
}
|
|
1371
1408
|
},
|
|
1372
1409
|
"read_by": {
|
|
1373
1410
|
"type": "array",
|
|
@@ -1407,7 +1444,15 @@
|
|
|
1407
1444
|
"type",
|
|
1408
1445
|
"id"
|
|
1409
1446
|
]
|
|
1410
|
-
}
|
|
1447
|
+
},
|
|
1448
|
+
"minItems": 1
|
|
1449
|
+
},
|
|
1450
|
+
"include_related_schemas": {
|
|
1451
|
+
"type": "array",
|
|
1452
|
+
"items": {
|
|
1453
|
+
"type": "string"
|
|
1454
|
+
},
|
|
1455
|
+
"description": "When set, the API resolves related entities of these schemas for the primary entity context and includes their notes in the results."
|
|
1411
1456
|
},
|
|
1412
1457
|
"from": {
|
|
1413
1458
|
"type": "number",
|
package/definitions/pricing.json
CHANGED
|
@@ -7582,8 +7582,12 @@
|
|
|
7582
7582
|
},
|
|
7583
7583
|
"CashbackAmount": {
|
|
7584
7584
|
"type": "object",
|
|
7585
|
-
"description": "
|
|
7585
|
+
"description": "A detail associated with a specific cashback.",
|
|
7586
7586
|
"properties": {
|
|
7587
|
+
"cashback_name": {
|
|
7588
|
+
"type": "string",
|
|
7589
|
+
"description": "The name of the cashback."
|
|
7590
|
+
},
|
|
7587
7591
|
"cashback_period": {
|
|
7588
7592
|
"$ref": "#/components/schemas/CashbackPeriod"
|
|
7589
7593
|
},
|
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-SGI6WZ57.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.25",
|
|
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-W6JFZKZI.js").then((m) => m.default),
|
|
34
|
+
upgrade: () => import("../upgrade-EZO5QXKC.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),
|
|
@@ -41,6 +41,7 @@ var main = defineCommand({
|
|
|
41
41
|
automation: () => import("../automation-4DEE3TUI.js").then((m) => m.default),
|
|
42
42
|
billing: () => import("../billing-XX4VVOPI.js").then((m) => m.default),
|
|
43
43
|
"blueprint-manifest": () => import("../blueprint-manifest-V5MJ3GCA.js").then((m) => m.default),
|
|
44
|
+
calendar: () => import("../calendar-IHVASAEY.js").then((m) => m.default),
|
|
44
45
|
"configuration-hub": () => import("../configuration-hub-ZSYHJZXF.js").then((m) => m.default),
|
|
45
46
|
consent: () => import("../consent-QICGZLMO.js").then((m) => m.default),
|
|
46
47
|
"customer-portal": () => import("../customer-portal-UCDUZO6G.js").then((m) => m.default),
|
|
@@ -132,13 +133,13 @@ process.stderr.on("error", (err) => {
|
|
|
132
133
|
if (err.code === "EPIPE") process.exit(0);
|
|
133
134
|
throw err;
|
|
134
135
|
});
|
|
135
|
-
var VERSION = true ? "0.1.
|
|
136
|
+
var VERSION = true ? "0.1.25" : (await null).default.version;
|
|
136
137
|
var reorderedArgv = hoistFlagsAfterSubcommand(process.argv.slice(2));
|
|
137
138
|
process.argv = [process.argv[0], process.argv[1], ...reorderedArgv];
|
|
138
139
|
var args = process.argv.slice(2);
|
|
139
140
|
var completionsIdx = args.indexOf("--_completions");
|
|
140
141
|
if (completionsIdx >= 0) {
|
|
141
|
-
const { handleCompletions } = await import("../completion-
|
|
142
|
+
const { handleCompletions } = await import("../completion-W6JFZKZI.js");
|
|
142
143
|
handleCompletions(args[completionsIdx + 1], args[completionsIdx + 2]);
|
|
143
144
|
process.exit(0);
|
|
144
145
|
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import {
|
|
3
|
+
callApi
|
|
4
|
+
} from "./chunk-5ZFPCFKV.js";
|
|
5
|
+
import "./chunk-IOLKUHUB.js";
|
|
6
|
+
import "./chunk-M3M3C5WH.js";
|
|
7
|
+
import "./chunk-YHQA2AVG.js";
|
|
8
|
+
import "./chunk-7ZQ666ZQ.js";
|
|
9
|
+
|
|
10
|
+
// src/commands/apis/calendar.ts
|
|
11
|
+
import { defineCommand } from "citty";
|
|
12
|
+
var calendar_default = defineCommand({
|
|
13
|
+
meta: { name: "calendar", description: "Calendar API" },
|
|
14
|
+
args: {
|
|
15
|
+
operation: { type: "positional", description: "operationId to call", required: false },
|
|
16
|
+
param: { type: "string", alias: "p", description: "Parameter key=value" },
|
|
17
|
+
data: { type: "string", alias: "d", description: "Request body JSON" },
|
|
18
|
+
header: { type: "string", alias: "H", description: "Custom header" },
|
|
19
|
+
include: { type: "boolean", alias: "i", description: "Include response headers" },
|
|
20
|
+
definition: { type: "string", description: "Override OpenAPI spec file/URL" },
|
|
21
|
+
server: { type: "string", alias: "s", description: "Override server base URL" },
|
|
22
|
+
"use-dev": { type: "boolean", description: "Target dev environment" },
|
|
23
|
+
"use-staging": { type: "boolean", description: "Target staging environment" },
|
|
24
|
+
profile: { type: "string", description: "Use a named profile" },
|
|
25
|
+
token: { type: "string", alias: "t", description: "Bearer token" },
|
|
26
|
+
json: { type: "boolean", description: "Output raw JSON" },
|
|
27
|
+
verbose: { type: "boolean", alias: "v", description: "Verbose output" },
|
|
28
|
+
guided: { type: "boolean", description: "Prompt for all parameters interactively" },
|
|
29
|
+
interactive: { type: "boolean", description: "Interactive mode" },
|
|
30
|
+
jsonata: { type: "string", description: "JSONata expression to transform response" },
|
|
31
|
+
_ophelp: { type: "boolean", description: "Show operation help", required: false },
|
|
32
|
+
_apihelp: { type: "boolean", description: "Show API help", required: false }
|
|
33
|
+
},
|
|
34
|
+
run: ({ args, rawArgs }) => {
|
|
35
|
+
const positionalArgs = [];
|
|
36
|
+
if (args.operation && rawArgs) {
|
|
37
|
+
const opIdx = rawArgs.indexOf(args.operation);
|
|
38
|
+
if (opIdx >= 0) {
|
|
39
|
+
for (let i = opIdx + 1; i < rawArgs.length; i++) {
|
|
40
|
+
const arg = rawArgs[i];
|
|
41
|
+
if (arg.startsWith("-")) break;
|
|
42
|
+
positionalArgs.push(arg);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
return callApi("calendar", {
|
|
47
|
+
...args,
|
|
48
|
+
help: !!args._ophelp,
|
|
49
|
+
_apihelp: !!args._apihelp,
|
|
50
|
+
_args: positionalArgs
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
export {
|
|
55
|
+
calendar_default as default
|
|
56
|
+
};
|
|
@@ -60,7 +60,7 @@ var API_LIST = [
|
|
|
60
60
|
kebabName: "app",
|
|
61
61
|
title: "App API",
|
|
62
62
|
serverUrl: "https://app.sls.epilot.io",
|
|
63
|
-
operationCount:
|
|
63
|
+
operationCount: 32,
|
|
64
64
|
operationIds: [
|
|
65
65
|
"getPublicFacingComponent",
|
|
66
66
|
"listConfigurations",
|
|
@@ -91,7 +91,9 @@ var API_LIST = [
|
|
|
91
91
|
"patchInstallation",
|
|
92
92
|
"uninstall",
|
|
93
93
|
"promoteVersion",
|
|
94
|
-
"ingestEvent"
|
|
94
|
+
"ingestEvent",
|
|
95
|
+
"publicProxyGet",
|
|
96
|
+
"publicProxyPost"
|
|
95
97
|
]
|
|
96
98
|
},
|
|
97
99
|
{
|
|
@@ -203,6 +205,14 @@ var API_LIST = [
|
|
|
203
205
|
"getBlueprintLineageV3"
|
|
204
206
|
]
|
|
205
207
|
},
|
|
208
|
+
{
|
|
209
|
+
apiName: "calendar",
|
|
210
|
+
kebabName: "calendar",
|
|
211
|
+
title: "Calendar API",
|
|
212
|
+
serverUrl: "https://calendar.sls.epilot.io",
|
|
213
|
+
operationCount: 4,
|
|
214
|
+
operationIds: ["listCalendars", "getCalendar", "listEvents", "getEvent"]
|
|
215
|
+
},
|
|
206
216
|
{
|
|
207
217
|
apiName: "configurationHub",
|
|
208
218
|
kebabName: "configuration-hub",
|
|
@@ -231,7 +241,7 @@ var API_LIST = [
|
|
|
231
241
|
kebabName: "customer-portal",
|
|
232
242
|
title: "Portal API",
|
|
233
243
|
serverUrl: "https://customer-portal-api.sls.epilot.io",
|
|
234
|
-
operationCount:
|
|
244
|
+
operationCount: 143,
|
|
235
245
|
operationIds: [
|
|
236
246
|
"upsertPortal",
|
|
237
247
|
"createUser",
|
|
@@ -246,6 +256,7 @@ var API_LIST = [
|
|
|
246
256
|
"getPortalExtensionsV3",
|
|
247
257
|
"getPublicPortalExtensionDetailsV3",
|
|
248
258
|
"getConsumption",
|
|
259
|
+
"prepareVisualizationExport",
|
|
249
260
|
"getCosts",
|
|
250
261
|
"getPrices",
|
|
251
262
|
"getExternalLinks",
|
|
@@ -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.25";
|
|
76
76
|
try {
|
|
77
77
|
const output = execSync("npm ls -g @epilot/cli --depth=0 --json 2>/dev/null", {
|
|
78
78
|
encoding: "utf-8",
|