@epilot/blueprint-manifest-client 2.5.5 → 2.5.7
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/dist/openapi.d.ts +15 -0
- package/dist/openapi.json +34 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ declare namespace Components {
|
|
|
48
48
|
token_id?: string;
|
|
49
49
|
}
|
|
50
50
|
export interface CommonImportFields {
|
|
51
|
+
source_type?: ManifestSource;
|
|
51
52
|
/**
|
|
52
53
|
* An array of tree-like JSON objects or a singular tree-like JSON object representing the resources to import
|
|
53
54
|
*/
|
|
@@ -66,6 +67,7 @@ declare namespace Components {
|
|
|
66
67
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
67
68
|
*/
|
|
68
69
|
ManifestID;
|
|
70
|
+
source_type?: ManifestSource;
|
|
69
71
|
/**
|
|
70
72
|
* example:
|
|
71
73
|
* Solar B2B
|
|
@@ -196,6 +198,7 @@ declare namespace Components {
|
|
|
196
198
|
*/
|
|
197
199
|
is_verified?: boolean;
|
|
198
200
|
errors?: FormattedError[];
|
|
201
|
+
source_type?: ManifestSource;
|
|
199
202
|
/**
|
|
200
203
|
* An array of tree-like JSON objects or a singular tree-like JSON object representing the resources to import
|
|
201
204
|
*/
|
|
@@ -284,6 +287,7 @@ declare namespace Components {
|
|
|
284
287
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
285
288
|
*/
|
|
286
289
|
ManifestID;
|
|
290
|
+
source_type?: ManifestSource;
|
|
287
291
|
/**
|
|
288
292
|
* example:
|
|
289
293
|
* Solar B2B
|
|
@@ -371,6 +375,7 @@ declare namespace Components {
|
|
|
371
375
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
372
376
|
*/
|
|
373
377
|
ManifestID;
|
|
378
|
+
source_type?: ManifestSource;
|
|
374
379
|
/**
|
|
375
380
|
* example:
|
|
376
381
|
* Solar B2B
|
|
@@ -409,6 +414,7 @@ declare namespace Components {
|
|
|
409
414
|
*/
|
|
410
415
|
updated_at?: string; // date-time
|
|
411
416
|
}
|
|
417
|
+
export type ManifestSource = "file" | "marketplace" | "sandbox";
|
|
412
418
|
export interface ManifestTimestampFields {
|
|
413
419
|
/**
|
|
414
420
|
* When the manifest was first installed (applied)
|
|
@@ -629,6 +635,10 @@ declare namespace Paths {
|
|
|
629
635
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
630
636
|
*/
|
|
631
637
|
manifest_id?: string;
|
|
638
|
+
/**
|
|
639
|
+
* Source of the manifest
|
|
640
|
+
*/
|
|
641
|
+
source?: "file" | "marketplace" | "sandbox";
|
|
632
642
|
} | {
|
|
633
643
|
/**
|
|
634
644
|
* Manifest s3 key uploaded via `uploadManifest`
|
|
@@ -640,6 +650,10 @@ declare namespace Paths {
|
|
|
640
650
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
641
651
|
*/
|
|
642
652
|
manifest_id?: string;
|
|
653
|
+
/**
|
|
654
|
+
* Source of the manifest
|
|
655
|
+
*/
|
|
656
|
+
source?: "file" | "marketplace" | "sandbox";
|
|
643
657
|
};
|
|
644
658
|
namespace Responses {
|
|
645
659
|
export interface $200 {
|
|
@@ -1002,6 +1016,7 @@ export type JobStatus = Components.Schemas.JobStatus;
|
|
|
1002
1016
|
export type Manifest = Components.Schemas.Manifest;
|
|
1003
1017
|
export type ManifestID = Components.Schemas.ManifestID;
|
|
1004
1018
|
export type ManifestItem = Components.Schemas.ManifestItem;
|
|
1019
|
+
export type ManifestSource = Components.Schemas.ManifestSource;
|
|
1005
1020
|
export type ManifestTimestampFields = Components.Schemas.ManifestTimestampFields;
|
|
1006
1021
|
export type PlanChanges = Components.Schemas.PlanChanges;
|
|
1007
1022
|
export type ResourceNode = Components.Schemas.ResourceNode;
|
package/dist/openapi.json
CHANGED
|
@@ -262,6 +262,16 @@
|
|
|
262
262
|
"$ref": "#/components/schemas/ManifestID"
|
|
263
263
|
}
|
|
264
264
|
]
|
|
265
|
+
},
|
|
266
|
+
"source": {
|
|
267
|
+
"allOf": [
|
|
268
|
+
{
|
|
269
|
+
"description": "Source of the manifest"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"$ref": "#/components/schemas/ManifestSource"
|
|
273
|
+
}
|
|
274
|
+
]
|
|
265
275
|
}
|
|
266
276
|
},
|
|
267
277
|
"required": [
|
|
@@ -286,6 +296,16 @@
|
|
|
286
296
|
"$ref": "#/components/schemas/ManifestID"
|
|
287
297
|
}
|
|
288
298
|
]
|
|
299
|
+
},
|
|
300
|
+
"source": {
|
|
301
|
+
"allOf": [
|
|
302
|
+
{
|
|
303
|
+
"description": "Source of the manifest"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"$ref": "#/components/schemas/ManifestSource"
|
|
307
|
+
}
|
|
308
|
+
]
|
|
289
309
|
}
|
|
290
310
|
},
|
|
291
311
|
"required": [
|
|
@@ -476,6 +496,14 @@
|
|
|
476
496
|
"description": "ID of an import or export job (state machine)",
|
|
477
497
|
"example": "4854bb2a-94f9-424d-a968-3fb17fb0bf89"
|
|
478
498
|
},
|
|
499
|
+
"ManifestSource": {
|
|
500
|
+
"type": "string",
|
|
501
|
+
"enum": [
|
|
502
|
+
"file",
|
|
503
|
+
"marketplace",
|
|
504
|
+
"sandbox"
|
|
505
|
+
]
|
|
506
|
+
},
|
|
479
507
|
"Manifest": {
|
|
480
508
|
"allOf": [
|
|
481
509
|
{
|
|
@@ -799,6 +827,9 @@
|
|
|
799
827
|
"manifest_id": {
|
|
800
828
|
"$ref": "#/components/schemas/ManifestID"
|
|
801
829
|
},
|
|
830
|
+
"source_type": {
|
|
831
|
+
"$ref": "#/components/schemas/ManifestSource"
|
|
832
|
+
},
|
|
802
833
|
"source_blueprint_name": {
|
|
803
834
|
"type": "string",
|
|
804
835
|
"example": "Solar B2B"
|
|
@@ -848,6 +879,9 @@
|
|
|
848
879
|
"CommonImportFields": {
|
|
849
880
|
"type": "object",
|
|
850
881
|
"properties": {
|
|
882
|
+
"source_type": {
|
|
883
|
+
"$ref": "#/components/schemas/ManifestSource"
|
|
884
|
+
},
|
|
851
885
|
"imported_resources": {
|
|
852
886
|
"description": "An array of tree-like JSON objects or a singular tree-like JSON object representing the resources to import",
|
|
853
887
|
"oneOf": [
|