@epilot/blueprint-manifest-client 2.3.3 → 2.5.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
@@ -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
  */
@@ -204,7 +212,7 @@ declare namespace Components {
204
212
  * 4854bb2a-94f9-424d-a968-3fb17fb0bf89
205
213
  */
206
214
  export type JobID = string;
207
- export type JobStatus = "STARTED" | "WAITING_USER_ACTION" | "CANCELED" | "IN_PROGRESS" | "SUCCESS" | "FAILED";
215
+ export type JobStatus = "PENDING" | "STARTED" | "WAITING_USER_ACTION" | "CANCELED" | "IN_PROGRESS" | "SUCCESS" | "FAILED";
208
216
  export interface Manifest {
209
217
  manifest_id?: /**
210
218
  * ID of an imported / installed manifest
@@ -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
  */
package/dist/openapi.json CHANGED
@@ -32,6 +32,9 @@
32
32
  {
33
33
  "url": "https://blueprint-manifest.sls.epilot.io"
34
34
  },
35
+ {
36
+ "url": "https://blueprint-manifest.sls.epilot.io"
37
+ },
35
38
  {
36
39
  "url": "https://blueprint-manifest.sls.epilot.io"
37
40
  }
@@ -502,6 +505,7 @@
502
505
  "JobStatus": {
503
506
  "type": "string",
504
507
  "enum": [
508
+ "PENDING",
505
509
  "STARTED",
506
510
  "WAITING_USER_ACTION",
507
511
  "CANCELED",
@@ -727,6 +731,10 @@
727
731
  "large_resources_to_import_url": {
728
732
  "type": "string",
729
733
  "description": "An URL to download the resources to import when the resources are too large to be included in the response"
734
+ },
735
+ "is_verified": {
736
+ "type": "boolean",
737
+ "description": "Whether the manifest comes from a trusted source and is signed by epilot"
730
738
  }
731
739
  }
732
740
  },
@@ -789,6 +797,10 @@
789
797
  "type": "string",
790
798
  "description": "Version of the blueprint (semver)",
791
799
  "example": "1.0.0"
800
+ },
801
+ "is_verified": {
802
+ "type": "boolean",
803
+ "description": "Whether the manifest comes from a trusted source and is signed by epilot"
792
804
  }
793
805
  }
794
806
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "2.3.3",
3
+ "version": "2.5.0",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",