@epilot/blueprint-manifest-client 4.5.1 → 4.5.2

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
@@ -2108,6 +2108,10 @@ declare namespace Paths {
2108
2108
  export interface RequestBody {
2109
2109
  destination_org_id?: string;
2110
2110
  destination_blueprint_id?: string;
2111
+ /**
2112
+ * When true, run terraform validate before creating the export zip. If validation fails, the job will be marked as FAILED with errors.
2113
+ */
2114
+ validate?: boolean;
2111
2115
  }
2112
2116
  namespace Responses {
2113
2117
  export interface $202 {
package/dist/openapi.json CHANGED
@@ -1154,6 +1154,10 @@
1154
1154
  },
1155
1155
  "destination_blueprint_id": {
1156
1156
  "type": "string"
1157
+ },
1158
+ "validate": {
1159
+ "type": "boolean",
1160
+ "description": "When true, run terraform validate before creating the export zip. If validation fails, the job will be marked as FAILED with errors."
1157
1161
  }
1158
1162
  }
1159
1163
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "4.5.1",
3
+ "version": "4.5.2",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",