@epilot/blueprint-manifest-client 2.8.6 → 2.8.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 CHANGED
@@ -123,6 +123,12 @@ declare namespace Components {
123
123
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/selected_resources.json
124
124
  */
125
125
  selected_resources_url?: string;
126
+ /**
127
+ * All the resources that were marked as ready by the user
128
+ * example:
129
+ * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/ready_imported_resources.json
130
+ */
131
+ ready_imported_resources_url?: string;
126
132
  }
127
133
  export interface CommonMarkdownFields {
128
134
  /**
@@ -315,6 +321,12 @@ declare namespace Components {
315
321
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/selected_resources.json
316
322
  */
317
323
  selected_resources_url?: string;
324
+ /**
325
+ * All the resources that were marked as ready by the user
326
+ * example:
327
+ * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/ready_imported_resources.json
328
+ */
329
+ ready_imported_resources_url?: string;
318
330
  }
319
331
  /**
320
332
  * ID of an import or export job (state machine)
@@ -399,6 +411,12 @@ declare namespace Components {
399
411
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/selected_resources.json
400
412
  */
401
413
  selected_resources_url?: string;
414
+ /**
415
+ * All the resources that were marked as ready by the user
416
+ * example:
417
+ * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/ready_imported_resources.json
418
+ */
419
+ ready_imported_resources_url?: string;
402
420
  /**
403
421
  * Markdown content part of a manifest file
404
422
  */
@@ -512,6 +530,12 @@ declare namespace Components {
512
530
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/selected_resources.json
513
531
  */
514
532
  selected_resources_url?: string;
533
+ /**
534
+ * All the resources that were marked as ready by the user
535
+ * example:
536
+ * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/ready_imported_resources.json
537
+ */
538
+ ready_imported_resources_url?: string;
515
539
  /**
516
540
  * When the manifest was first installed (applied)
517
541
  */
@@ -542,6 +566,10 @@ declare namespace Components {
542
566
  * Markdown content of the manifest
543
567
  */
544
568
  markdown?: string;
569
+ /**
570
+ * Array of ids of resources selected to be ready by the user
571
+ */
572
+ ready_resources?: string[];
545
573
  }
546
574
  export interface ResourceNode {
547
575
  /**
package/dist/openapi.json CHANGED
@@ -1045,6 +1045,11 @@
1045
1045
  "type": "string",
1046
1046
  "description": "All the resources that were selected to be exported, used to pre-select the resources when updating a sandbox manifest",
1047
1047
  "example": "https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/selected_resources.json"
1048
+ },
1049
+ "ready_imported_resources_url": {
1050
+ "type": "string",
1051
+ "description": "All the resources that were marked as ready by the user",
1052
+ "example": "https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/ready_imported_resources.json"
1048
1053
  }
1049
1054
  }
1050
1055
  },
@@ -1277,6 +1282,13 @@
1277
1282
  "markdown": {
1278
1283
  "type": "string",
1279
1284
  "description": "Markdown content of the manifest"
1285
+ },
1286
+ "ready_resources": {
1287
+ "type": "array",
1288
+ "items": {
1289
+ "type": "string"
1290
+ },
1291
+ "description": "Array of ids of resources selected to be ready by the user"
1280
1292
  }
1281
1293
  },
1282
1294
  "required": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "2.8.6",
3
+ "version": "2.8.7",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",