@epilot/cli 0.1.136 → 0.1.138
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/entity.json
CHANGED
|
@@ -75,7 +75,8 @@
|
|
|
75
75
|
{
|
|
76
76
|
"in": "query",
|
|
77
77
|
"name": "latest",
|
|
78
|
-
"
|
|
78
|
+
"deprecated": true,
|
|
79
|
+
"description": "No longer has any effect: schema freezing is retired and the latest version is always returned.\n",
|
|
79
80
|
"schema": {
|
|
80
81
|
"type": "boolean",
|
|
81
82
|
"default": false
|
|
@@ -161,7 +162,8 @@
|
|
|
161
162
|
{
|
|
162
163
|
"in": "query",
|
|
163
164
|
"name": "latest",
|
|
164
|
-
"
|
|
165
|
+
"deprecated": true,
|
|
166
|
+
"description": "No longer has any effect: schema freezing is retired and the latest version is always returned.\n",
|
|
165
167
|
"schema": {
|
|
166
168
|
"type": "boolean",
|
|
167
169
|
"default": false
|
|
@@ -223,7 +225,7 @@
|
|
|
223
225
|
"get": {
|
|
224
226
|
"operationId": "getSchema",
|
|
225
227
|
"summary": "getSchema",
|
|
226
|
-
"description": "
|
|
228
|
+
"description": "Gets the latest version of the Schema.\nPass ?id= to get a specific version by ID.\n",
|
|
227
229
|
"tags": [
|
|
228
230
|
"Schemas"
|
|
229
231
|
],
|
|
@@ -241,7 +243,8 @@
|
|
|
241
243
|
{
|
|
242
244
|
"in": "query",
|
|
243
245
|
"name": "latest",
|
|
244
|
-
"
|
|
246
|
+
"deprecated": true,
|
|
247
|
+
"description": "No longer has any effect: schema freezing is retired and the latest version is always returned.\n",
|
|
245
248
|
"schema": {
|
|
246
249
|
"type": "boolean",
|
|
247
250
|
"default": false
|
|
@@ -267,7 +270,7 @@
|
|
|
267
270
|
"put": {
|
|
268
271
|
"operationId": "putSchema",
|
|
269
272
|
"summary": "putSchema",
|
|
270
|
-
"description": "Create or update a schema with a new version.\
|
|
273
|
+
"description": "Create or update a schema with a new version.\n",
|
|
271
274
|
"tags": [
|
|
272
275
|
"Schemas"
|
|
273
276
|
],
|
|
@@ -792,7 +795,8 @@
|
|
|
792
795
|
"type": "boolean"
|
|
793
796
|
},
|
|
794
797
|
"frozen_version": {
|
|
795
|
-
"
|
|
798
|
+
"deprecated": true,
|
|
799
|
+
"description": "No longer returned: schema freezing is retired.\n",
|
|
796
800
|
"allOf": [
|
|
797
801
|
{
|
|
798
802
|
"$ref": "#/components/schemas/SchemaId"
|
|
@@ -815,7 +819,8 @@
|
|
|
815
819
|
"post": {
|
|
816
820
|
"operationId": "freezeSchema",
|
|
817
821
|
"summary": "freezeSchema",
|
|
818
|
-
"
|
|
822
|
+
"deprecated": true,
|
|
823
|
+
"description": "Deprecated no-op: schema freezing is retired and every read returns the latest version.\nReturns the latest version of the schema unchanged. This endpoint will be removed.\n",
|
|
819
824
|
"tags": [
|
|
820
825
|
"Schemas"
|
|
821
826
|
],
|
|
@@ -864,7 +869,8 @@
|
|
|
864
869
|
"post": {
|
|
865
870
|
"operationId": "unfreezeSchema",
|
|
866
871
|
"summary": "unfreezeSchema",
|
|
867
|
-
"
|
|
872
|
+
"deprecated": true,
|
|
873
|
+
"description": "Deprecated: schema freezing is retired. Cleans up a leftover frozen pointer by promoting the\nlatest version to the current version, and succeeds when there is nothing to clean up.\nThis endpoint will be removed.\n",
|
|
868
874
|
"tags": [
|
|
869
875
|
"Schemas"
|
|
870
876
|
],
|
|
@@ -3947,7 +3953,7 @@
|
|
|
3947
3953
|
"description": "ISO 8601 timestamp to filter jobs created after this time (e.g., 2023-01-01T00:00:00Z).",
|
|
3948
3954
|
"type": "string",
|
|
3949
3955
|
"format": "date-time",
|
|
3950
|
-
"example": "2023-01-01T00:00:
|
|
3956
|
+
"example": "2023-01-01T00:00:00Z"
|
|
3951
3957
|
}
|
|
3952
3958
|
},
|
|
3953
3959
|
{
|
|
@@ -5257,7 +5263,7 @@
|
|
|
5257
5263
|
"conditions": {
|
|
5258
5264
|
"type": "array",
|
|
5259
5265
|
"nullable": true,
|
|
5260
|
-
"description": "Dimensions that conditional variants of this entity type are keyed by.\n\nAbsent or `null` means entities of this type are not conditional. Attributes whose\nvalues a variant may override are marked with `
|
|
5266
|
+
"description": "Dimensions that conditional variants of this entity type are keyed by.\n\nAbsent or `null` means entities of this type are not conditional. Attributes whose\nvalues a variant may override are marked with `overridable_attribute`.\n",
|
|
5261
5267
|
"items": {
|
|
5262
5268
|
"$ref": "#/components/schemas/ConditionDefinition"
|
|
5263
5269
|
}
|
|
@@ -5300,11 +5306,13 @@
|
|
|
5300
5306
|
}
|
|
5301
5307
|
},
|
|
5302
5308
|
"frozen": {
|
|
5303
|
-
"
|
|
5309
|
+
"deprecated": true,
|
|
5310
|
+
"description": "No longer returned: schema freezing is retired.\n",
|
|
5304
5311
|
"type": "boolean"
|
|
5305
5312
|
},
|
|
5306
5313
|
"latest": {
|
|
5307
|
-
"
|
|
5314
|
+
"deprecated": true,
|
|
5315
|
+
"description": "No longer returned: every read returns the latest version.\n",
|
|
5308
5316
|
"type": "boolean"
|
|
5309
5317
|
},
|
|
5310
5318
|
"_summary": {
|
|
@@ -5690,7 +5698,7 @@
|
|
|
5690
5698
|
"type": "boolean",
|
|
5691
5699
|
"default": false
|
|
5692
5700
|
},
|
|
5693
|
-
"
|
|
5701
|
+
"overridable_attribute": {
|
|
5694
5702
|
"type": "boolean",
|
|
5695
5703
|
"default": false,
|
|
5696
5704
|
"description": "Allow conditional variants of the entity to override this attribute's value.\nOnly meaningful on schemas that declare `conditions`. Unflagged attributes stay\nfixed on the base entity.\n"
|
|
@@ -7477,10 +7485,10 @@
|
|
|
7477
7485
|
"$ref": "#/components/schemas/Attribute"
|
|
7478
7486
|
}
|
|
7479
7487
|
},
|
|
7480
|
-
"
|
|
7488
|
+
"overridable_attribute": {
|
|
7481
7489
|
"type": "boolean",
|
|
7482
7490
|
"default": false,
|
|
7483
|
-
"description": "Allow conditional variants of the entity to override the values managed by this\ncapability. Only meaningful on schemas that declare `conditions` and on capabilities\nthat render an attribute group (`EntityAttributes:Group` ui hook), e.g. pricing tiers.\nAttributes carried by the capability opt in individually via their own\n`
|
|
7491
|
+
"description": "Allow conditional variants of the entity to override the values managed by this\ncapability. Only meaningful on schemas that declare `conditions` and on capabilities\nthat render an attribute group (`EntityAttributes:Group` ui hook), e.g. pricing tiers.\nAttributes carried by the capability opt in individually via their own\n`overridable_attribute` flag.\n"
|
|
7484
7492
|
},
|
|
7485
7493
|
"_purpose": {
|
|
7486
7494
|
"type": "array",
|
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.138",
|
|
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-LKIX3SHS.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.138" : (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.138";
|
|
76
76
|
try {
|
|
77
77
|
const output = execSync("npm ls -g @epilot/cli --depth=0 --json 2>/dev/null", {
|
|
78
78
|
encoding: "utf-8",
|