@epilot/blueprint-manifest-client 3.0.3 → 3.0.5

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
@@ -48,6 +48,13 @@ declare namespace Components {
48
48
  };
49
49
  version?: string;
50
50
  latest_download_file?: S3Reference;
51
+ deployments?: {
52
+ source_org_id?: string;
53
+ source_blueprint_id?: string;
54
+ destination_org_id?: string;
55
+ destination_blueprint_id?: string;
56
+ triggered_at?: string; // date-time
57
+ }[];
51
58
  /**
52
59
  * Whether the blueprint is verified by epilot
53
60
  */
@@ -180,7 +187,11 @@ declare namespace Components {
180
187
  * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
181
188
  */
182
189
  BlueprintResourceID[];
183
- impact_on_install?: ("create" | "update" | "no-op" | "delete")[];
190
+ impact_on_install?: ("create" | "update" | "internal-update" | "no-op" | "delete")[];
191
+ /**
192
+ * Fields causing the updates / internal updates on a resource install
193
+ */
194
+ impact_on_install_reason?: string[];
184
195
  }
185
196
  /**
186
197
  * ID of a blueprint resource
@@ -241,6 +252,13 @@ declare namespace Components {
241
252
  };
242
253
  version?: string;
243
254
  latest_download_file?: S3Reference;
255
+ deployments?: {
256
+ source_org_id?: string;
257
+ source_blueprint_id?: string;
258
+ destination_org_id?: string;
259
+ destination_blueprint_id?: string;
260
+ triggered_at?: string; // date-time
261
+ }[];
244
262
  /**
245
263
  * Whether the blueprint is verified by epilot
246
264
  */
@@ -453,6 +471,13 @@ declare namespace Components {
453
471
  };
454
472
  version?: string;
455
473
  latest_download_file?: S3Reference;
474
+ deployments?: {
475
+ source_org_id?: string;
476
+ source_blueprint_id?: string;
477
+ destination_org_id?: string;
478
+ destination_blueprint_id?: string;
479
+ triggered_at?: string; // date-time
480
+ }[];
456
481
  /**
457
482
  * Whether the blueprint is verified by epilot
458
483
  */
@@ -491,6 +516,13 @@ declare namespace Components {
491
516
  };
492
517
  version?: string;
493
518
  latest_download_file?: S3Reference;
519
+ deployments?: {
520
+ source_org_id?: string;
521
+ source_blueprint_id?: string;
522
+ destination_org_id?: string;
523
+ destination_blueprint_id?: string;
524
+ triggered_at?: string; // date-time
525
+ }[];
494
526
  /**
495
527
  * Whether the blueprint is verified by epilot
496
528
  */
@@ -529,6 +561,13 @@ declare namespace Components {
529
561
  };
530
562
  version?: string;
531
563
  latest_download_file?: S3Reference;
564
+ deployments?: {
565
+ source_org_id?: string;
566
+ source_blueprint_id?: string;
567
+ destination_org_id?: string;
568
+ destination_blueprint_id?: string;
569
+ triggered_at?: string; // date-time
570
+ }[];
532
571
  /**
533
572
  * Whether the blueprint is verified by epilot
534
573
  */
@@ -1058,6 +1097,13 @@ declare namespace Components {
1058
1097
  };
1059
1098
  version?: string;
1060
1099
  latest_download_file?: S3Reference;
1100
+ deployments?: {
1101
+ source_org_id?: string;
1102
+ source_blueprint_id?: string;
1103
+ destination_org_id?: string;
1104
+ destination_blueprint_id?: string;
1105
+ triggered_at?: string; // date-time
1106
+ }[];
1061
1107
  /**
1062
1108
  * Whether the blueprint is verified by epilot
1063
1109
  */
@@ -1073,7 +1119,7 @@ declare namespace Components {
1073
1119
  source_type: "marketplace";
1074
1120
  resources?: BlueprintResource[];
1075
1121
  }
1076
- export type PlanChanges = ("create" | "update" | "no-op" | "delete")[];
1122
+ export type PlanChanges = ("create" | "update" | "internal-update" | "no-op" | "delete")[];
1077
1123
  export interface PutManifestPayload {
1078
1124
  /**
1079
1125
  * Name of the source blueprint
package/dist/openapi.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "openapi": "3.1.0",
3
3
  "info": {
4
4
  "title": "Blueprint Manifest API",
5
- "version": "2.0.0",
5
+ "version": "2.1.1",
6
6
  "description": "Service to create and install Blueprint Manifest files"
7
7
  },
8
8
  "tags": [
@@ -1525,6 +1525,30 @@
1525
1525
  "latest_download_file": {
1526
1526
  "$ref": "#/components/schemas/S3Reference"
1527
1527
  },
1528
+ "deployments": {
1529
+ "type": "array",
1530
+ "items": {
1531
+ "type": "object",
1532
+ "properties": {
1533
+ "source_org_id": {
1534
+ "type": "string"
1535
+ },
1536
+ "source_blueprint_id": {
1537
+ "type": "string"
1538
+ },
1539
+ "destination_org_id": {
1540
+ "type": "string"
1541
+ },
1542
+ "destination_blueprint_id": {
1543
+ "type": "string"
1544
+ },
1545
+ "triggered_at": {
1546
+ "type": "string",
1547
+ "format": "date-time"
1548
+ }
1549
+ }
1550
+ }
1551
+ },
1528
1552
  "is_verified": {
1529
1553
  "type": "boolean",
1530
1554
  "description": "Whether the blueprint is verified by epilot"
@@ -1595,10 +1619,18 @@
1595
1619
  "enum": [
1596
1620
  "create",
1597
1621
  "update",
1622
+ "internal-update",
1598
1623
  "no-op",
1599
1624
  "delete"
1600
1625
  ]
1601
1626
  }
1627
+ },
1628
+ "impact_on_install_reason": {
1629
+ "type": "array",
1630
+ "description": "Fields causing the updates / internal updates on a resource install",
1631
+ "items": {
1632
+ "type": "string"
1633
+ }
1602
1634
  }
1603
1635
  },
1604
1636
  "required": [
@@ -2033,6 +2065,7 @@
2033
2065
  "enum": [
2034
2066
  "create",
2035
2067
  "update",
2068
+ "internal-update",
2036
2069
  "no-op",
2037
2070
  "delete"
2038
2071
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "3.0.3",
3
+ "version": "3.0.5",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",