@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 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": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",