@epilot/cli 0.1.138 → 0.1.140
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/blueprint-manifest.json +101 -2
- package/definitions/environments.json +135 -17
- package/dist/bin/epilot.js +6 -6
- package/dist/{chunk-4A3TISYH.js → chunk-TPJG2M3D.js} +2 -1
- package/dist/{completion-MSAMXF3P.js → completion-6OBSXXHS.js} +1 -1
- package/dist/{upgrade-LKIX3SHS.js → upgrade-NKZ2JL4M.js} +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2617,7 +2617,7 @@
|
|
|
2617
2617
|
"post": {
|
|
2618
2618
|
"operationId": "continueInstallationJob",
|
|
2619
2619
|
"summary": "continueInstallationJob",
|
|
2620
|
-
"description": "Resume an installation job that is paused at `status: \"WAITING_USER_ACTION\"` after\nplanning. Works for both Terraform and V3 jobs. Not needed for V3 installs created\nwith `auto_apply: true` (including all bulk-install child jobs), which apply\nwithout pausing.\n",
|
|
2620
|
+
"description": "Resume an installation job that is paused at `status: \"WAITING_USER_ACTION\"` after\nplanning. Works for both Terraform and V3 jobs. Not needed for V3 installs created\nwith `auto_apply: true` (including all bulk-install child jobs), which apply\nwithout pausing.\n\nAlso resumes a V3 install paused at `status: \"REAUTH_REQUIRED\"`, where the\ncaller's credentials could not safely cover another run. The job keeps its\n`job_id`, so resuming continues from the operation-log checkpoint rather than\nre-applying completed work. The request's bearer token becomes the destination\ncredential; for a cross-org install whose SOURCE credential also expired, send a\nfreshly scoped source token as `source_auth_token` — the destination bearer is not\na valid substitute for it.\n",
|
|
2621
2621
|
"tags": [
|
|
2622
2622
|
"Jobs"
|
|
2623
2623
|
],
|
|
@@ -2636,7 +2636,7 @@
|
|
|
2636
2636
|
"content": {
|
|
2637
2637
|
"application/json": {
|
|
2638
2638
|
"schema": {
|
|
2639
|
-
"$ref": "#/components/schemas/
|
|
2639
|
+
"$ref": "#/components/schemas/ContinueInstallationJobRequest"
|
|
2640
2640
|
}
|
|
2641
2641
|
}
|
|
2642
2642
|
}
|
|
@@ -2655,6 +2655,60 @@
|
|
|
2655
2655
|
}
|
|
2656
2656
|
}
|
|
2657
2657
|
},
|
|
2658
|
+
"/v2/blueprint-manifest/jobs/{job_id}:retry": {
|
|
2659
|
+
"post": {
|
|
2660
|
+
"operationId": "retryInstallationJob",
|
|
2661
|
+
"summary": "retryInstallationJob",
|
|
2662
|
+
"description": "Retry a finished V3 installation job whose status is `FAILED` or\n`PARTIAL_SUCCESS`. Starts a fresh install job (new `job_id`) with the same\nsource/destination and `auto_apply: true` — no `:continue` call is needed.\nThe plan phase re-resolves every resource: already-synced resources no-op,\nso effectively only the failed resources are re-applied.\n\nMust be called by a user of the destination org (where the job lives); the\ncaller's bearer token is used as the destination token. The plan reuses the\nmanifest persisted by the original install, so no source-org access is\nrequired. The original job's `options` (ignored resources, sync_notes) are\nreused when present; older jobs without persisted options fall back to the\ndestination blueprint's `ignored_resource_addresses`.\n",
|
|
2663
|
+
"tags": [
|
|
2664
|
+
"Jobs"
|
|
2665
|
+
],
|
|
2666
|
+
"parameters": [
|
|
2667
|
+
{
|
|
2668
|
+
"in": "path",
|
|
2669
|
+
"required": true,
|
|
2670
|
+
"name": "job_id",
|
|
2671
|
+
"schema": {
|
|
2672
|
+
"$ref": "#/components/schemas/BlueprintJobID"
|
|
2673
|
+
}
|
|
2674
|
+
}
|
|
2675
|
+
],
|
|
2676
|
+
"responses": {
|
|
2677
|
+
"202": {
|
|
2678
|
+
"description": "Retry install job started",
|
|
2679
|
+
"headers": {
|
|
2680
|
+
"Location": {
|
|
2681
|
+
"description": "Path to poll the resulting job: GET /v2/blueprint-manifest/jobs/{job_id}",
|
|
2682
|
+
"schema": {
|
|
2683
|
+
"type": "string"
|
|
2684
|
+
}
|
|
2685
|
+
}
|
|
2686
|
+
},
|
|
2687
|
+
"content": {
|
|
2688
|
+
"application/json": {
|
|
2689
|
+
"schema": {
|
|
2690
|
+
"type": "object",
|
|
2691
|
+
"properties": {
|
|
2692
|
+
"job_id": {
|
|
2693
|
+
"$ref": "#/components/schemas/BlueprintJobID"
|
|
2694
|
+
},
|
|
2695
|
+
"destination_blueprint_id": {
|
|
2696
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
2697
|
+
}
|
|
2698
|
+
}
|
|
2699
|
+
}
|
|
2700
|
+
}
|
|
2701
|
+
}
|
|
2702
|
+
},
|
|
2703
|
+
"400": {
|
|
2704
|
+
"description": "Job is not a retryable V3 installation job"
|
|
2705
|
+
},
|
|
2706
|
+
"404": {
|
|
2707
|
+
"description": "Job not found"
|
|
2708
|
+
}
|
|
2709
|
+
}
|
|
2710
|
+
}
|
|
2711
|
+
},
|
|
2658
2712
|
"/v2/blueprint-manifest/jobs/{job_id}:cancel": {
|
|
2659
2713
|
"post": {
|
|
2660
2714
|
"operationId": "cancelBlueprintJob",
|
|
@@ -3354,6 +3408,29 @@
|
|
|
3354
3408
|
"type": "boolean",
|
|
3355
3409
|
"description": "When `true`, the install skips the manual plan-approval step and applies\nstraight after plan + snapshot succeed (no `:continue` call needed).\nDefaults to `false`. Used internally by the bulk-install worker.\n",
|
|
3356
3410
|
"default": false
|
|
3411
|
+
},
|
|
3412
|
+
"session_credentials": {
|
|
3413
|
+
"type": "object",
|
|
3414
|
+
"description": "Lets the install refresh the caller's session on its own, so a run that\noutlives the ~60 minute token lifetime continues without the user present.\nHeld server-side for the job's lifetime, referenced from the state machine\nrather than embedded in it, and deleted when the job finishes.\n\nOptional. Without it an install that outruns its token pauses at\n`status: \"REAUTH_REQUIRED\"` and waits to be resumed through\n`POST /v2/blueprint-manifest/jobs/{job_id}:continue`.\n\nBounded by the refresh token itself (18 hours), not unlimited.\n",
|
|
3415
|
+
"required": [
|
|
3416
|
+
"refresh_token",
|
|
3417
|
+
"client_id"
|
|
3418
|
+
],
|
|
3419
|
+
"properties": {
|
|
3420
|
+
"refresh_token": {
|
|
3421
|
+
"type": "string",
|
|
3422
|
+
"format": "password",
|
|
3423
|
+
"description": "Cognito refresh token for the caller, scoped to the source org."
|
|
3424
|
+
},
|
|
3425
|
+
"client_id": {
|
|
3426
|
+
"type": "string",
|
|
3427
|
+
"description": "The Cognito app client the refresh token was issued for. Required because\nepilot provisions one user pool and app client per organization at\nruntime, so the service cannot derive it.\n"
|
|
3428
|
+
},
|
|
3429
|
+
"pipeline_id": {
|
|
3430
|
+
"type": "string",
|
|
3431
|
+
"description": "Cross-org installs only. The destination credential is not a Cognito\nsession — it is minted from the refreshed source session through\nsandbox-api, so it is re-derived per continuation instead of stored.\n"
|
|
3432
|
+
}
|
|
3433
|
+
}
|
|
3357
3434
|
}
|
|
3358
3435
|
}
|
|
3359
3436
|
},
|
|
@@ -5284,11 +5361,15 @@
|
|
|
5284
5361
|
"$ref": "#/components/schemas/V3ResourceProgressEntry"
|
|
5285
5362
|
}
|
|
5286
5363
|
},
|
|
5364
|
+
"options": {
|
|
5365
|
+
"$ref": "#/components/schemas/BlueprintInstallationJobOptions"
|
|
5366
|
+
},
|
|
5287
5367
|
"status": {
|
|
5288
5368
|
"type": "string",
|
|
5289
5369
|
"enum": [
|
|
5290
5370
|
"IN_PROGRESS",
|
|
5291
5371
|
"WAITING_USER_ACTION",
|
|
5372
|
+
"REAUTH_REQUIRED",
|
|
5292
5373
|
"CANCELED",
|
|
5293
5374
|
"SUCCESS",
|
|
5294
5375
|
"PARTIAL_SUCCESS",
|
|
@@ -6440,6 +6521,23 @@
|
|
|
6440
6521
|
}
|
|
6441
6522
|
}
|
|
6442
6523
|
},
|
|
6524
|
+
"ContinueInstallationJobRequest": {
|
|
6525
|
+
"allOf": [
|
|
6526
|
+
{
|
|
6527
|
+
"$ref": "#/components/schemas/BlueprintInstallationJobOptions"
|
|
6528
|
+
},
|
|
6529
|
+
{
|
|
6530
|
+
"type": "object",
|
|
6531
|
+
"properties": {
|
|
6532
|
+
"source_auth_token": {
|
|
6533
|
+
"description": "A freshly issued bearer for the SOURCE organization, used only when resuming a\njob paused at `REAUTH_REQUIRED` whose source credential also expired. Applies to\ncross-org installs: apply-time reads such as the authenticated File API fallback\nfor private source files run against the source org, so the destination bearer\ncannot stand in for them. Omit it to keep the source token the job already has.\n",
|
|
6534
|
+
"type": "string",
|
|
6535
|
+
"format": "password"
|
|
6536
|
+
}
|
|
6537
|
+
}
|
|
6538
|
+
}
|
|
6539
|
+
]
|
|
6540
|
+
},
|
|
6443
6541
|
"ManifestID": {
|
|
6444
6542
|
"type": "string",
|
|
6445
6543
|
"description": "ID of an imported / installed manifest",
|
|
@@ -6512,6 +6610,7 @@
|
|
|
6512
6610
|
"PENDING",
|
|
6513
6611
|
"STARTED",
|
|
6514
6612
|
"WAITING_USER_ACTION",
|
|
6613
|
+
"REAUTH_REQUIRED",
|
|
6515
6614
|
"CANCELED",
|
|
6516
6615
|
"IN_PROGRESS",
|
|
6517
6616
|
"SUCCESS",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"/v1/environments": {
|
|
21
21
|
"get": {
|
|
22
22
|
"operationId": "listEnvironmentVariables",
|
|
23
|
-
"summary": "
|
|
23
|
+
"summary": "listEnvironmentVariables",
|
|
24
24
|
"description": "List all environment variables for the organization. Returns metadata only, no secret values.",
|
|
25
25
|
"tags": [
|
|
26
26
|
"environments"
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
},
|
|
50
50
|
"post": {
|
|
51
51
|
"operationId": "createEnvironmentVariable",
|
|
52
|
-
"summary": "
|
|
53
|
-
"description": "Create a new environment variable or secret for the organization.",
|
|
52
|
+
"summary": "createEnvironmentVariable",
|
|
53
|
+
"description": "Create a new environment variable or secret for the organization. If `group` is provided and the group does not yet exist, it is created automatically.",
|
|
54
54
|
"tags": [
|
|
55
55
|
"environments"
|
|
56
56
|
],
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"/v1/environments/groups": {
|
|
97
97
|
"get": {
|
|
98
98
|
"operationId": "listEnvironmentGroups",
|
|
99
|
-
"summary": "
|
|
99
|
+
"summary": "listEnvironmentGroups",
|
|
100
100
|
"description": "List all environment groups for the organization.",
|
|
101
101
|
"tags": [
|
|
102
102
|
"environments"
|
|
@@ -138,6 +138,7 @@
|
|
|
138
138
|
"put": {
|
|
139
139
|
"operationId": "putEnvironmentGroup",
|
|
140
140
|
"summary": "putEnvironmentGroup",
|
|
141
|
+
"description": "Create or update an environment group by name. Acts as an upsert — creates the group if it does not exist.",
|
|
141
142
|
"tags": [
|
|
142
143
|
"environments"
|
|
143
144
|
],
|
|
@@ -185,7 +186,7 @@
|
|
|
185
186
|
},
|
|
186
187
|
"delete": {
|
|
187
188
|
"operationId": "deleteEnvironmentGroup",
|
|
188
|
-
"summary": "
|
|
189
|
+
"summary": "deleteEnvironmentGroup",
|
|
189
190
|
"description": "Deletes a group. Variables assigned to this group become ungrouped.",
|
|
190
191
|
"tags": [
|
|
191
192
|
"environments"
|
|
@@ -224,8 +225,8 @@
|
|
|
224
225
|
],
|
|
225
226
|
"get": {
|
|
226
227
|
"operationId": "getEnvironmentVariable",
|
|
227
|
-
"summary": "
|
|
228
|
-
"description": "Get an environment variable by key. Returns value
|
|
228
|
+
"summary": "getEnvironmentVariable",
|
|
229
|
+
"description": "Get an environment variable by key. Returns value for non-secret types, omitted for SecretString.",
|
|
229
230
|
"tags": [
|
|
230
231
|
"environments"
|
|
231
232
|
],
|
|
@@ -256,8 +257,8 @@
|
|
|
256
257
|
},
|
|
257
258
|
"put": {
|
|
258
259
|
"operationId": "updateEnvironmentVariable",
|
|
259
|
-
"summary": "
|
|
260
|
-
"description": "Create or update an environment variable. Acts as an upsert — creates the variable if it does not exist.",
|
|
260
|
+
"summary": "updateEnvironmentVariable",
|
|
261
|
+
"description": "Create or update an environment variable. Acts as an upsert — creates the variable if it does not exist. If `group` is provided and the group does not yet exist, it is created automatically.",
|
|
261
262
|
"tags": [
|
|
262
263
|
"environments"
|
|
263
264
|
],
|
|
@@ -301,6 +302,9 @@
|
|
|
301
302
|
"403": {
|
|
302
303
|
"description": "Forbidden"
|
|
303
304
|
},
|
|
305
|
+
"409": {
|
|
306
|
+
"description": "Cannot change the type of a variable that currently holds a value"
|
|
307
|
+
},
|
|
304
308
|
"500": {
|
|
305
309
|
"description": "Internal server error"
|
|
306
310
|
}
|
|
@@ -308,7 +312,7 @@
|
|
|
308
312
|
},
|
|
309
313
|
"delete": {
|
|
310
314
|
"operationId": "deleteEnvironmentVariable",
|
|
311
|
-
"summary": "
|
|
315
|
+
"summary": "deleteEnvironmentVariable",
|
|
312
316
|
"description": "Delete an environment variable by key.",
|
|
313
317
|
"tags": [
|
|
314
318
|
"environments"
|
|
@@ -344,9 +348,99 @@
|
|
|
344
348
|
"schemas": {
|
|
345
349
|
"EnvironmentValueType": {
|
|
346
350
|
"type": "string",
|
|
351
|
+
"description": "The structure a variable's value holds. `SecretString` is encrypted at rest and\nits value is never returned. `Text`, `Number`, `Boolean` and `Options` may be\nserved to browser-facing consumers; `String` and `SecretString` may not.\n",
|
|
347
352
|
"enum": [
|
|
348
353
|
"String",
|
|
349
|
-
"SecretString"
|
|
354
|
+
"SecretString",
|
|
355
|
+
"Text",
|
|
356
|
+
"Number",
|
|
357
|
+
"Boolean",
|
|
358
|
+
"Options"
|
|
359
|
+
]
|
|
360
|
+
},
|
|
361
|
+
"EnvironmentOption": {
|
|
362
|
+
"oneOf": [
|
|
363
|
+
{
|
|
364
|
+
"type": "object",
|
|
365
|
+
"required": [
|
|
366
|
+
"value",
|
|
367
|
+
"label"
|
|
368
|
+
],
|
|
369
|
+
"additionalProperties": false,
|
|
370
|
+
"properties": {
|
|
371
|
+
"value": {
|
|
372
|
+
"type": "string",
|
|
373
|
+
"minLength": 1
|
|
374
|
+
},
|
|
375
|
+
"label": {
|
|
376
|
+
"type": "string",
|
|
377
|
+
"minLength": 1
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"type": "object",
|
|
383
|
+
"required": [
|
|
384
|
+
"value",
|
|
385
|
+
"labels"
|
|
386
|
+
],
|
|
387
|
+
"additionalProperties": false,
|
|
388
|
+
"properties": {
|
|
389
|
+
"value": {
|
|
390
|
+
"type": "string",
|
|
391
|
+
"minLength": 1
|
|
392
|
+
},
|
|
393
|
+
"labels": {
|
|
394
|
+
"type": "object",
|
|
395
|
+
"minProperties": 1,
|
|
396
|
+
"propertyNames": {
|
|
397
|
+
"pattern": "^[a-z]{2,3}(-[A-Za-z0-9]+)*$"
|
|
398
|
+
},
|
|
399
|
+
"additionalProperties": {
|
|
400
|
+
"type": "string",
|
|
401
|
+
"minLength": 1
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
]
|
|
407
|
+
},
|
|
408
|
+
"OptionsValue": {
|
|
409
|
+
"type": "object",
|
|
410
|
+
"required": [
|
|
411
|
+
"options"
|
|
412
|
+
],
|
|
413
|
+
"additionalProperties": false,
|
|
414
|
+
"properties": {
|
|
415
|
+
"fallbackLanguage": {
|
|
416
|
+
"type": "string",
|
|
417
|
+
"minLength": 2,
|
|
418
|
+
"default": "de"
|
|
419
|
+
},
|
|
420
|
+
"options": {
|
|
421
|
+
"type": "array",
|
|
422
|
+
"minItems": 1,
|
|
423
|
+
"items": {
|
|
424
|
+
"$ref": "#/components/schemas/EnvironmentOption"
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
"EnvironmentValue": {
|
|
430
|
+
"description": "A variable's value. The JSON type corresponds to the variable's `type`:\n`String`, `SecretString` and `Text` are strings, `Number` is a number,\n`Boolean` is a boolean, and `Options` is an object. Numbers are IEEE 754\ndoubles; integers above 2^53 may lose precision on round-trip.\n",
|
|
431
|
+
"oneOf": [
|
|
432
|
+
{
|
|
433
|
+
"type": "string"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"type": "number"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"type": "boolean"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"$ref": "#/components/schemas/OptionsValue"
|
|
443
|
+
}
|
|
350
444
|
]
|
|
351
445
|
},
|
|
352
446
|
"EnvironmentVariable": {
|
|
@@ -373,8 +467,16 @@
|
|
|
373
467
|
"description": "Optional group name for organising variables in the UI"
|
|
374
468
|
},
|
|
375
469
|
"value": {
|
|
376
|
-
"
|
|
377
|
-
|
|
470
|
+
"allOf": [
|
|
471
|
+
{
|
|
472
|
+
"$ref": "#/components/schemas/EnvironmentValue"
|
|
473
|
+
}
|
|
474
|
+
],
|
|
475
|
+
"description": "Returned for non-secret types, omitted for SecretString. Also omitted when\nthe variable has been created without a value — for example by a blueprint\ninstall, which syncs a variable's key and type but never its value.\n"
|
|
476
|
+
},
|
|
477
|
+
"protected": {
|
|
478
|
+
"type": "boolean",
|
|
479
|
+
"description": "Whether the variable is protected from editing"
|
|
378
480
|
},
|
|
379
481
|
"created_at": {
|
|
380
482
|
"type": "string",
|
|
@@ -409,8 +511,16 @@
|
|
|
409
511
|
"description": "Optional group name for organising variables in the UI"
|
|
410
512
|
},
|
|
411
513
|
"value": {
|
|
412
|
-
"
|
|
413
|
-
|
|
514
|
+
"allOf": [
|
|
515
|
+
{
|
|
516
|
+
"$ref": "#/components/schemas/EnvironmentValue"
|
|
517
|
+
}
|
|
518
|
+
],
|
|
519
|
+
"description": "Returned for non-secret types, omitted for SecretString. Also omitted when\nthe variable has been created without a value — for example by a blueprint\ninstall, which syncs a variable's key and type but never its value.\n"
|
|
520
|
+
},
|
|
521
|
+
"protected": {
|
|
522
|
+
"type": "boolean",
|
|
523
|
+
"description": "Whether the variable is protected from editing"
|
|
414
524
|
},
|
|
415
525
|
"created_at": {
|
|
416
526
|
"type": "string",
|
|
@@ -457,7 +567,11 @@
|
|
|
457
567
|
"type": "string"
|
|
458
568
|
},
|
|
459
569
|
"value": {
|
|
460
|
-
"
|
|
570
|
+
"$ref": "#/components/schemas/EnvironmentValue"
|
|
571
|
+
},
|
|
572
|
+
"protected": {
|
|
573
|
+
"type": "boolean",
|
|
574
|
+
"description": "Whether the variable is protected from editing"
|
|
461
575
|
}
|
|
462
576
|
}
|
|
463
577
|
},
|
|
@@ -473,13 +587,17 @@
|
|
|
473
587
|
]
|
|
474
588
|
},
|
|
475
589
|
"value": {
|
|
476
|
-
"
|
|
590
|
+
"$ref": "#/components/schemas/EnvironmentValue"
|
|
477
591
|
},
|
|
478
592
|
"description": {
|
|
479
593
|
"type": "string"
|
|
480
594
|
},
|
|
481
595
|
"group": {
|
|
482
596
|
"type": "string"
|
|
597
|
+
},
|
|
598
|
+
"protected": {
|
|
599
|
+
"type": "boolean",
|
|
600
|
+
"description": "Whether the variable is protected from editing"
|
|
483
601
|
}
|
|
484
602
|
}
|
|
485
603
|
},
|
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-TPJG2M3D.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.140",
|
|
15
15
|
description: "CLI for epilot APIs"
|
|
16
16
|
},
|
|
17
17
|
args: {
|
|
@@ -30,8 +30,8 @@ var main = defineCommand({
|
|
|
30
30
|
auth: () => import("../auth-WMXFMPWE.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-6OBSXXHS.js").then((m) => m.default),
|
|
34
|
+
upgrade: () => import("../upgrade-NKZ2JL4M.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.140" : (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-6OBSXXHS.js");
|
|
144
144
|
handleCompletions(args[completionsIdx + 1], args[completionsIdx + 2]);
|
|
145
145
|
process.exit(0);
|
|
146
146
|
}
|
|
@@ -173,7 +173,7 @@ var API_LIST = [
|
|
|
173
173
|
kebabName: "blueprint-manifest",
|
|
174
174
|
title: "Blueprint Manifest API",
|
|
175
175
|
serverUrl: "https://blueprint-manifest.sls.epilot.io",
|
|
176
|
-
operationCount:
|
|
176
|
+
operationCount: 73,
|
|
177
177
|
operationIds: [
|
|
178
178
|
"getJob",
|
|
179
179
|
"createExport",
|
|
@@ -220,6 +220,7 @@ var API_LIST = [
|
|
|
220
220
|
"listBlueprintJobs",
|
|
221
221
|
"getBlueprintJob",
|
|
222
222
|
"continueInstallationJob",
|
|
223
|
+
"retryInstallationJob",
|
|
223
224
|
"cancelBlueprintJob",
|
|
224
225
|
"getMarketplaceListing",
|
|
225
226
|
"createMarketplaceListing",
|
|
@@ -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.140";
|
|
76
76
|
try {
|
|
77
77
|
const output = execSync("npm ls -g @epilot/cli --depth=0 --json 2>/dev/null", {
|
|
78
78
|
encoding: "utf-8",
|