@epilot/blueprint-manifest-client 3.3.1 → 3.4.0

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
@@ -69,6 +69,12 @@ declare namespace Components {
69
69
  * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
70
70
  */
71
71
  BlueprintJobID[];
72
+ source_blueprint_id?: /**
73
+ * ID of a blueprint
74
+ * example:
75
+ * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
76
+ */
77
+ BlueprintID;
72
78
  source_type: "app";
73
79
  resources?: BlueprintResource[];
74
80
  }
@@ -279,6 +285,15 @@ declare namespace Components {
279
285
  * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
280
286
  */
281
287
  BlueprintJobID[];
288
+ /**
289
+ * ID of the blueprint that brought this blueprint to the destination org (deployed or installed)
290
+ */
291
+ source_blueprint_id?: /**
292
+ * ID of a blueprint
293
+ * example:
294
+ * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
295
+ */
296
+ BlueprintID;
282
297
  }
283
298
  export interface CommonBlueprintJobFields {
284
299
  id?: /**
@@ -514,6 +529,12 @@ declare namespace Components {
514
529
  * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
515
530
  */
516
531
  BlueprintJobID[];
532
+ source_blueprint_id?: /**
533
+ * ID of a blueprint
534
+ * example:
535
+ * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
536
+ */
537
+ BlueprintID;
517
538
  resources?: BlueprintResource[];
518
539
  source_type: "custom";
519
540
  }
@@ -565,6 +586,12 @@ declare namespace Components {
565
586
  * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
566
587
  */
567
588
  BlueprintJobID[];
589
+ source_blueprint_id?: /**
590
+ * ID of a blueprint
591
+ * example:
592
+ * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
593
+ */
594
+ BlueprintID;
568
595
  source_type: "deploy";
569
596
  resources?: BlueprintResource[];
570
597
  }
@@ -616,6 +643,12 @@ declare namespace Components {
616
643
  * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
617
644
  */
618
645
  BlueprintJobID[];
646
+ source_blueprint_id?: /**
647
+ * ID of a blueprint
648
+ * example:
649
+ * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
650
+ */
651
+ BlueprintID;
619
652
  source_type: "file";
620
653
  resources?: BlueprintResource[];
621
654
  }
@@ -1188,6 +1221,12 @@ declare namespace Components {
1188
1221
  * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
1189
1222
  */
1190
1223
  BlueprintJobID[];
1224
+ source_blueprint_id?: /**
1225
+ * ID of a blueprint
1226
+ * example:
1227
+ * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
1228
+ */
1229
+ BlueprintID;
1191
1230
  /**
1192
1231
  * URL to the blueprint documentation
1193
1232
  */
@@ -1271,7 +1310,7 @@ declare namespace Components {
1271
1310
  /**
1272
1311
  * Type of the resource
1273
1312
  */
1274
- export type ResourceNodeType = "designbuilder" | "journey" | "product" | "price" | "product_recommendation" | "coupon" | "tax" | "automation_flow" | "entity_mapping" | "file" | "emailtemplate" | "schema" | "schema_attribute" | "schema_capability" | "schema_group" | "schema_group_headline" | "workflow_definition" | "closing_reason" | "taxonomy_classification" | "webhook" | "dashboard" | "custom_variable" | "usergroup" | "saved_view" | "app" | "role" | "portal_config" | "target";
1313
+ export type ResourceNodeType = "designbuilder" | "journey" | "product" | "price" | "product_recommendation" | "coupon" | "tax" | "automation_flow" | "entity_mapping" | "file" | "emailtemplate" | "schema" | "schema_attribute" | "schema_capability" | "schema_group" | "schema_group_headline" | "workflow_definition" | "closing_reason" | "taxonomy_classification" | "webhook" | "dashboard" | "custom_variable" | "usergroup" | "saved_view" | "app" | "role" | "portal_config" | "target" | "kanban";
1275
1314
  export interface ResourceReplacement {
1276
1315
  /**
1277
1316
  * Original resource ID to be replaced
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": "3.2.2",
5
+ "version": "3.3.0",
6
6
  "description": "Service to create and install Blueprint Manifest files"
7
7
  },
8
8
  "tags": [
@@ -1655,6 +1655,10 @@
1655
1655
  "items": {
1656
1656
  "$ref": "#/components/schemas/BlueprintJobID"
1657
1657
  }
1658
+ },
1659
+ "source_blueprint_id": {
1660
+ "description": "ID of the blueprint that brought this blueprint to the destination org (deployed or installed)",
1661
+ "$ref": "#/components/schemas/BlueprintID"
1658
1662
  }
1659
1663
  },
1660
1664
  "required": [
@@ -2146,7 +2150,8 @@
2146
2150
  "app",
2147
2151
  "role",
2148
2152
  "portal_config",
2149
- "target"
2153
+ "target",
2154
+ "kanban"
2150
2155
  ]
2151
2156
  },
2152
2157
  "PlanChanges": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "3.3.1",
3
+ "version": "3.4.0",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",