@epilot/blueprint-manifest-client 3.6.0 → 3.6.3
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 +9 -1
- package/dist/openapi.json +13 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -207,6 +207,10 @@ declare namespace Components {
|
|
|
207
207
|
* When a resource is marked as hidden, it's used to hide it from the UI
|
|
208
208
|
*/
|
|
209
209
|
is_hidden?: boolean;
|
|
210
|
+
/**
|
|
211
|
+
* When a resource is marked as disabled, it will be skipped during export
|
|
212
|
+
*/
|
|
213
|
+
is_disabled?: boolean;
|
|
210
214
|
hard_dependencies?: /* Type of the resource */ ResourceNodeType[];
|
|
211
215
|
/**
|
|
212
216
|
* Used to automatically remove resources with hard dependencies and to block deletion of resources with hard dependencies
|
|
@@ -682,7 +686,7 @@ declare namespace Components {
|
|
|
682
686
|
resources?: string[];
|
|
683
687
|
};
|
|
684
688
|
}
|
|
685
|
-
export type FormattedErrorCodes = "dependency_extraction" | "resource_not_found" | "resource_fetch_api_error" | "resource_fetch_unknown_error" | "terraform_cli_process_error" | "terraform_import_block_process_error" | "terraform_init_error" | "terraform_plan_error" | "terraform_apply_error" | "terraform_show_error" | "generic_error" | "forbidden" | "not_found" | "undeclared_resource" | "invalid_readonly_attribute" | "invalid_attribute_value" | "unsupported_attribute" | "self_referential_block" | "circular_dependency" | "state_mismatch";
|
|
689
|
+
export type FormattedErrorCodes = "dependency_extraction" | "resource_not_found" | "resource_fetch_api_error" | "resource_fetch_unknown_error" | "terraform_cli_process_error" | "terraform_import_block_process_error" | "terraform_init_error" | "terraform_plan_error" | "terraform_apply_error" | "terraform_show_error" | "generic_error" | "bad_request" | "forbidden" | "not_found" | "undeclared_resource" | "invalid_readonly_attribute" | "invalid_attribute_value" | "unsupported_attribute" | "self_referential_block" | "circular_dependency" | "state_mismatch";
|
|
686
690
|
export interface FormattedErrorData {
|
|
687
691
|
id?: string;
|
|
688
692
|
name?: string;
|
|
@@ -1254,6 +1258,10 @@ declare namespace Components {
|
|
|
1254
1258
|
docs_url?: string;
|
|
1255
1259
|
source_type: "marketplace";
|
|
1256
1260
|
resources?: BlueprintResource[];
|
|
1261
|
+
/**
|
|
1262
|
+
* List of compatible app IDs for the blueprint
|
|
1263
|
+
*/
|
|
1264
|
+
compatible_apps?: string[];
|
|
1257
1265
|
}
|
|
1258
1266
|
export type PlanChanges = ("create" | "update" | "internal-update" | "no-op" | "delete")[];
|
|
1259
1267
|
/**
|
package/dist/openapi.json
CHANGED
|
@@ -1697,6 +1697,11 @@
|
|
|
1697
1697
|
"type": "boolean",
|
|
1698
1698
|
"description": "When a resource is marked as hidden, it's used to hide it from the UI"
|
|
1699
1699
|
},
|
|
1700
|
+
"is_disabled": {
|
|
1701
|
+
"type": "boolean",
|
|
1702
|
+
"default": false,
|
|
1703
|
+
"description": "When a resource is marked as disabled, it will be skipped during export"
|
|
1704
|
+
},
|
|
1700
1705
|
"hard_dependencies": {
|
|
1701
1706
|
"type": "array",
|
|
1702
1707
|
"items": {
|
|
@@ -1807,6 +1812,13 @@
|
|
|
1807
1812
|
"items": {
|
|
1808
1813
|
"$ref": "#/components/schemas/BlueprintResource"
|
|
1809
1814
|
}
|
|
1815
|
+
},
|
|
1816
|
+
"compatible_apps": {
|
|
1817
|
+
"type": "array",
|
|
1818
|
+
"items": {
|
|
1819
|
+
"type": "string"
|
|
1820
|
+
},
|
|
1821
|
+
"description": "List of compatible app IDs for the blueprint"
|
|
1810
1822
|
}
|
|
1811
1823
|
}
|
|
1812
1824
|
}
|
|
@@ -2693,6 +2705,7 @@
|
|
|
2693
2705
|
"terraform_apply_error",
|
|
2694
2706
|
"terraform_show_error",
|
|
2695
2707
|
"generic_error",
|
|
2708
|
+
"bad_request",
|
|
2696
2709
|
"forbidden",
|
|
2697
2710
|
"not_found",
|
|
2698
2711
|
"undeclared_resource",
|