@epilot/blueprint-manifest-client 4.1.0 → 4.2.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 +4 -0
- package/dist/openapi.json +6 -1
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -213,6 +213,10 @@ declare namespace Components {
|
|
|
213
213
|
compatible_apps?: string[];
|
|
214
214
|
created_at: string; // date-time
|
|
215
215
|
created_by: CallerIdentity;
|
|
216
|
+
/**
|
|
217
|
+
* Whether the blueprint is updating to the latest version in the marketplace
|
|
218
|
+
*/
|
|
219
|
+
is_updating: boolean;
|
|
216
220
|
resources: BlueprintResource[];
|
|
217
221
|
}
|
|
218
222
|
export interface BlueprintResource {
|
package/dist/openapi.json
CHANGED
|
@@ -1877,6 +1877,10 @@
|
|
|
1877
1877
|
"created_by": {
|
|
1878
1878
|
"$ref": "#/components/schemas/CallerIdentity"
|
|
1879
1879
|
},
|
|
1880
|
+
"is_updating": {
|
|
1881
|
+
"type": "boolean",
|
|
1882
|
+
"description": "Whether the blueprint is updating to the latest version in the marketplace"
|
|
1883
|
+
},
|
|
1880
1884
|
"resources": {
|
|
1881
1885
|
"type": "array",
|
|
1882
1886
|
"items": {
|
|
@@ -1893,7 +1897,8 @@
|
|
|
1893
1897
|
"is_verified",
|
|
1894
1898
|
"created_at",
|
|
1895
1899
|
"created_by",
|
|
1896
|
-
"resources"
|
|
1900
|
+
"resources",
|
|
1901
|
+
"is_updating"
|
|
1897
1902
|
]
|
|
1898
1903
|
},
|
|
1899
1904
|
"CustomBlueprint": {
|