Skip to content

Commit

Permalink
chore(blueprint-manifest-client): bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateus Nardo committed Feb 7, 2025
1 parent 974b349 commit 3f9f007
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 3 deletions.
4 changes: 2 additions & 2 deletions clients/blueprint-manifest-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion clients/blueprint-manifest-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@epilot/blueprint-manifest-client",
"version": "2.6.9",
"version": "2.6.10",
"description": "Client for epilot Terraform Blueprint Manifest API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
23 changes: 23 additions & 0 deletions clients/blueprint-manifest-client/src/openapi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,16 @@ declare namespace Components {
changes?: PlanChanges;
}
export type ResourceNodeType = "designbuilder" | "journey" | "product" | "price" | "tax" | "automation_flow" | "entity_mapping" | "file" | "emailtemplate" | "schema" | "schema_attribute" | "schema_capability" | "schema_group" | "schema_group_headline" | "workflow_definition" | "closing_reason" | "taxonomy_classification" | "webhook" | "custom_variable" | "coupon";
export interface ResourceReplacement {
/**
* Original resource ID to be replaced
*/
originalAddress: string;
/**
* ID of the resource that will replace the original
*/
replacementId: string;
}
export interface RootResourceNode {
/**
* ID of the resource
Expand Down Expand Up @@ -672,6 +682,10 @@ declare namespace Paths {
* List of resources to ignore changes for
*/
resourcesToIgnore?: string[];
/**
* List of resource replacements to apply during import
*/
resourceReplacements?: Components.Schemas.ResourceReplacement[];
}
namespace Responses {
export interface $200 {
Expand Down Expand Up @@ -796,6 +810,10 @@ declare namespace Paths {
* List of resources to ignore changes for
*/
resourcesToIgnore?: string[];
/**
* List of resource replacements to apply during import
*/
resourceReplacements?: Components.Schemas.ResourceReplacement[];
} | {
/**
* Manifest s3 key uploaded via `uploadManifest`
Expand All @@ -815,6 +833,10 @@ declare namespace Paths {
* List of resources to ignore changes for
*/
resourcesToIgnore?: string[];
/**
* List of resource replacements to apply during import
*/
resourceReplacements?: Components.Schemas.ResourceReplacement[];
};
namespace Responses {
export interface $200 {
Expand Down Expand Up @@ -1185,6 +1207,7 @@ export type ManifestTimestampFields = Components.Schemas.ManifestTimestampFields
export type PlanChanges = Components.Schemas.PlanChanges;
export type ResourceNode = Components.Schemas.ResourceNode;
export type ResourceNodeType = Components.Schemas.ResourceNodeType;
export type ResourceReplacement = Components.Schemas.ResourceReplacement;
export type RootResourceNode = Components.Schemas.RootResourceNode;
export type S3Reference = Components.Schemas.S3Reference;
export type SelectedResources = Components.Schemas.SelectedResources;
Expand Down
38 changes: 38 additions & 0 deletions clients/blueprint-manifest-client/src/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,13 @@
"type": "string"
},
"description": "List of resources to ignore changes for"
},
"resourceReplacements": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ResourceReplacement"
},
"description": "List of resource replacements to apply during import"
}
},
"required": [
Expand Down Expand Up @@ -377,6 +384,13 @@
"type": "string"
},
"description": "List of resources to ignore changes for"
},
"resourceReplacements": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ResourceReplacement"
},
"description": "List of resource replacements to apply during import"
}
},
"required": [
Expand Down Expand Up @@ -440,6 +454,13 @@
"type": "string"
},
"description": "List of resources to ignore changes for"
},
"resourceReplacements": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ResourceReplacement"
},
"description": "List of resource replacements to apply during import"
}
}
}
Expand Down Expand Up @@ -1176,6 +1197,23 @@
"exported_root_resources",
"selected_resources"
]
},
"ResourceReplacement": {
"type": "object",
"properties": {
"originalAddress": {
"type": "string",
"description": "Original resource ID to be replaced"
},
"replacementId": {
"type": "string",
"description": "ID of the resource that will replace the original"
}
},
"required": [
"originalAddress",
"replacementId"
]
}
},
"parameters": {
Expand Down

0 comments on commit 3f9f007

Please sign in to comment.