@epilot/cli 0.1.135 → 0.1.137
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
CHANGED
package/definitions/app.json
CHANGED
|
@@ -3375,7 +3375,8 @@
|
|
|
3375
3375
|
"PT15M",
|
|
3376
3376
|
"PT1H",
|
|
3377
3377
|
"P1D",
|
|
3378
|
-
"P1M"
|
|
3378
|
+
"P1M",
|
|
3379
|
+
"P1Y"
|
|
3379
3380
|
]
|
|
3380
3381
|
}
|
|
3381
3382
|
},
|
|
@@ -3486,7 +3487,8 @@
|
|
|
3486
3487
|
"PT15M",
|
|
3487
3488
|
"PT1H",
|
|
3488
3489
|
"P1D",
|
|
3489
|
-
"P1M"
|
|
3490
|
+
"P1M",
|
|
3491
|
+
"P1Y"
|
|
3490
3492
|
]
|
|
3491
3493
|
}
|
|
3492
3494
|
},
|
|
@@ -3789,7 +3791,8 @@
|
|
|
3789
3791
|
"PT15M",
|
|
3790
3792
|
"PT1H",
|
|
3791
3793
|
"P1D",
|
|
3792
|
-
"P1M"
|
|
3794
|
+
"P1M",
|
|
3795
|
+
"P1Y"
|
|
3793
3796
|
]
|
|
3794
3797
|
}
|
|
3795
3798
|
},
|
package/definitions/billing.json
CHANGED
|
@@ -2192,6 +2192,14 @@
|
|
|
2192
2192
|
"dynamic_tariff_configuration"
|
|
2193
2193
|
]
|
|
2194
2194
|
}
|
|
2195
|
+
},
|
|
2196
|
+
"installment_amount": {
|
|
2197
|
+
"description": "Installment amount effective when the pricing change was recorded.",
|
|
2198
|
+
"allOf": [
|
|
2199
|
+
{
|
|
2200
|
+
"$ref": "#/components/schemas/InstallmentAmountValue"
|
|
2201
|
+
}
|
|
2202
|
+
]
|
|
2195
2203
|
}
|
|
2196
2204
|
}
|
|
2197
2205
|
}
|
package/dist/bin/epilot.js
CHANGED
|
@@ -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.137",
|
|
15
15
|
description: "CLI for epilot APIs"
|
|
16
16
|
},
|
|
17
17
|
args: {
|
|
@@ -31,7 +31,7 @@ var main = defineCommand({
|
|
|
31
31
|
profile: () => import("../profile-OZJL5ZPT.js").then((m) => m.default),
|
|
32
32
|
config: () => import("../config-DGZIMLZK.js").then((m) => m.default),
|
|
33
33
|
completion: () => import("../completion-MSAMXF3P.js").then((m) => m.default),
|
|
34
|
-
upgrade: () => import("../upgrade-
|
|
34
|
+
upgrade: () => import("../upgrade-Z2OZIIM3.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,7 +134,7 @@ 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.137" : (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);
|
|
@@ -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.137";
|
|
76
76
|
try {
|
|
77
77
|
const output = execSync("npm ls -g @epilot/cli --depth=0 --json 2>/dev/null", {
|
|
78
78
|
encoding: "utf-8",
|