@epilot/blueprint-manifest-client 2.4.0 → 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 +16 -0
- package/dist/openapi.json +8 -0
- package/package.json +1 -1
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
|
*/
|
package/dist/openapi.json
CHANGED
|
@@ -731,6 +731,10 @@
|
|
|
731
731
|
"large_resources_to_import_url": {
|
|
732
732
|
"type": "string",
|
|
733
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"
|
|
734
738
|
}
|
|
735
739
|
}
|
|
736
740
|
},
|
|
@@ -793,6 +797,10 @@
|
|
|
793
797
|
"type": "string",
|
|
794
798
|
"description": "Version of the blueprint (semver)",
|
|
795
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"
|
|
796
804
|
}
|
|
797
805
|
}
|
|
798
806
|
},
|