@epilot/blueprint-manifest-client 2.4.0 → 2.5.1

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
@@ -57,6 +57,10 @@ declare namespace Components {
57
57
  * 1.0.0
58
58
  */
59
59
  source_blueprint_version?: string;
60
+ /**
61
+ * Whether the manifest comes from a trusted source and is signed by epilot
62
+ */
63
+ is_verified?: boolean;
60
64
  }
61
65
  export interface CommonMarkdownFields {
62
66
  /**
@@ -138,6 +142,10 @@ declare namespace Components {
138
142
  * An URL to download the resources to import when the resources are too large to be included in the response
139
143
  */
140
144
  large_resources_to_import_url?: string;
145
+ /**
146
+ * Whether the manifest comes from a trusted source and is signed by epilot
147
+ */
148
+ is_verified?: boolean;
141
149
  /**
142
150
  * An array of tree-like JSON objects or a singular tree-like JSON object representing the resources to import
143
151
  */
@@ -229,6 +237,10 @@ declare namespace Components {
229
237
  * 1.0.0
230
238
  */
231
239
  source_blueprint_version?: string;
240
+ /**
241
+ * Whether the manifest comes from a trusted source and is signed by epilot
242
+ */
243
+ is_verified?: boolean;
232
244
  /**
233
245
  * Markdown content part of a manifest file
234
246
  */
@@ -304,6 +316,10 @@ declare namespace Components {
304
316
  * 1.0.0
305
317
  */
306
318
  source_blueprint_version?: string;
319
+ /**
320
+ * Whether the manifest comes from a trusted source and is signed by epilot
321
+ */
322
+ is_verified?: boolean;
307
323
  /**
308
324
  * When the manifest was first installed (applied)
309
325
  */
@@ -356,7 +372,7 @@ declare namespace Components {
356
372
  }[];
357
373
  changes?: PlanChanges;
358
374
  }
359
- export type ResourceNodeType = "designbuilder" | "journey" | "product" | "price" | "tax" | "automation_flow" | "entity_mapping" | "file" | "emailtemplate" | "schema" | "schema_attribute" | "schema_capability" | "schema_group" | "workflow_definition" | "closing_reason" | "taxonomy_classification" | "webhook" | "custom_variable";
375
+ export type ResourceNodeType = "designbuilder" | "journey" | "product" | "price" | "tax" | "automation_flow" | "entity_mapping" | "file" | "emailtemplate" | "schema" | "schema_attribute" | "schema_capability" | "schema_group" | "schema_group_headline" | "workflow_definition" | "closing_reason" | "taxonomy_classification" | "webhook" | "custom_variable";
360
376
  export interface RootResourceNode {
361
377
  /**
362
378
  * ID of the resource
package/dist/openapi.json CHANGED
@@ -32,9 +32,6 @@
32
32
  {
33
33
  "url": "https://blueprint-manifest.sls.epilot.io"
34
34
  },
35
- {
36
- "url": "https://blueprint-manifest.sls.epilot.io"
37
- },
38
35
  {
39
36
  "url": "https://blueprint-manifest.sls.epilot.io"
40
37
  }
@@ -530,6 +527,7 @@
530
527
  "schema_attribute",
531
528
  "schema_capability",
532
529
  "schema_group",
530
+ "schema_group_headline",
533
531
  "workflow_definition",
534
532
  "closing_reason",
535
533
  "taxonomy_classification",
@@ -731,6 +729,10 @@
731
729
  "large_resources_to_import_url": {
732
730
  "type": "string",
733
731
  "description": "An URL to download the resources to import when the resources are too large to be included in the response"
732
+ },
733
+ "is_verified": {
734
+ "type": "boolean",
735
+ "description": "Whether the manifest comes from a trusted source and is signed by epilot"
734
736
  }
735
737
  }
736
738
  },
@@ -793,6 +795,10 @@
793
795
  "type": "string",
794
796
  "description": "Version of the blueprint (semver)",
795
797
  "example": "1.0.0"
798
+ },
799
+ "is_verified": {
800
+ "type": "boolean",
801
+ "description": "Whether the manifest comes from a trusted source and is signed by epilot"
796
802
  }
797
803
  }
798
804
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "2.4.0",
3
+ "version": "2.5.1",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",