@terrantula/sdk 0.11.1 → 0.11.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/{chunk-773V5YNO.mjs → chunk-M7S27EER.mjs} +455 -392
- package/dist/index.d.mts +2514 -217
- package/dist/index.d.ts +2514 -217
- package/dist/index.js +465 -402
- package/dist/index.mjs +1 -1
- package/dist/local.d.mts +2167 -122
- package/dist/local.d.ts +2167 -122
- package/dist/local.js +465 -402
- package/dist/local.mjs +1 -1
- package/dist/{projects-CT3fGCOp.d.mts → projects-D-LiD32g.d.mts} +1 -1
- package/dist/{projects-CT3fGCOp.d.ts → projects-D-LiD32g.d.ts} +1 -1
- package/package.json +3 -3
package/dist/local.mjs
CHANGED
|
@@ -111,7 +111,7 @@ interface AdminProjectNukeResponse {
|
|
|
111
111
|
type SnapshotOp = 'created' | 'updated' | 'deleted' | 'unchanged' | 'failed';
|
|
112
112
|
|
|
113
113
|
interface ExportedItem {
|
|
114
|
-
kind: 'EntityType' | 'Cell' | 'RelationshipType' | 'Action' | 'Secret';
|
|
114
|
+
kind: 'EntityType' | 'Cell' | 'RelationshipType' | 'Action' | 'Secret' | 'DeploymentTargetSet' | 'DeploymentTarget';
|
|
115
115
|
[key: string]: unknown;
|
|
116
116
|
}
|
|
117
117
|
interface ExportCatalogResult {
|
|
@@ -111,7 +111,7 @@ interface AdminProjectNukeResponse {
|
|
|
111
111
|
type SnapshotOp = 'created' | 'updated' | 'deleted' | 'unchanged' | 'failed';
|
|
112
112
|
|
|
113
113
|
interface ExportedItem {
|
|
114
|
-
kind: 'EntityType' | 'Cell' | 'RelationshipType' | 'Action' | 'Secret';
|
|
114
|
+
kind: 'EntityType' | 'Cell' | 'RelationshipType' | 'Action' | 'Secret' | 'DeploymentTargetSet' | 'DeploymentTarget';
|
|
115
115
|
[key: string]: unknown;
|
|
116
116
|
}
|
|
117
117
|
interface ExportCatalogResult {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@terrantula/sdk",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"description": "TypeScript SDK for Terrantula — the multi-tenant entity-graph control plane that herds Terraform/OpenTofu cattle.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"terrantula",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"test": "bun test"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@terrantula/local": "^0.4.
|
|
64
|
-
"@terrantula/types": "^0.4.
|
|
63
|
+
"@terrantula/local": "^0.4.2",
|
|
64
|
+
"@terrantula/types": "^0.4.3",
|
|
65
65
|
"hono": "^4.4.0",
|
|
66
66
|
"zod": "^3.22.0"
|
|
67
67
|
},
|