@epilot/blueprint-manifest-client 2.5.2 → 2.5.4
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 +1 -1
- package/dist/openapi.json +7 -3
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -119,7 +119,7 @@ declare namespace Components {
|
|
|
119
119
|
code?: FormattedErrorCodes;
|
|
120
120
|
data?: FormattedErrorData;
|
|
121
121
|
}
|
|
122
|
-
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";
|
|
122
|
+
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";
|
|
123
123
|
export interface FormattedErrorData {
|
|
124
124
|
resource?: {
|
|
125
125
|
id?: string;
|
package/dist/openapi.json
CHANGED
|
@@ -884,14 +884,18 @@
|
|
|
884
884
|
}
|
|
885
885
|
},
|
|
886
886
|
"FormattedErrorCodes": {
|
|
887
|
-
"type": "
|
|
887
|
+
"type": "string",
|
|
888
888
|
"enum": [
|
|
889
889
|
"dependency_extraction",
|
|
890
890
|
"resource_not_found",
|
|
891
891
|
"resource_fetch_api_error",
|
|
892
892
|
"resource_fetch_unknown_error",
|
|
893
893
|
"terraform_cli_process_error",
|
|
894
|
-
"terraform_import_block_process_error"
|
|
894
|
+
"terraform_import_block_process_error",
|
|
895
|
+
"terraform_init_error",
|
|
896
|
+
"terraform_plan_error",
|
|
897
|
+
"terraform_apply_error",
|
|
898
|
+
"terraform_show_error"
|
|
895
899
|
]
|
|
896
900
|
},
|
|
897
901
|
"FormattedErrorData": {
|
|
@@ -917,7 +921,7 @@
|
|
|
917
921
|
"type": "object",
|
|
918
922
|
"properties": {
|
|
919
923
|
"error": {
|
|
920
|
-
"
|
|
924
|
+
"anyOf": [
|
|
921
925
|
{
|
|
922
926
|
"type": "string"
|
|
923
927
|
},
|