@tailor-platform/sdk 0.11.1 → 0.11.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/CHANGELOG.md +24 -0
- package/dist/cli/api.d.mts +9 -1
- package/dist/cli/api.mjs +2 -2
- package/dist/cli/index.mjs +2 -1
- package/dist/cli/index.mjs.map +1 -1
- package/dist/configure/index.d.mts +2 -2
- package/dist/configure/index.mjs.map +1 -1
- package/dist/{index-DIPoP-nY.d.mts → index-Bx9tHHe8.d.mts} +2 -2
- package/dist/{token-lSuBKMH9.mjs → token-BJq9rpG5.mjs} +132 -18
- package/dist/token-BJq9rpG5.mjs.map +1 -0
- package/dist/utils/test/index.d.mts +1 -1
- package/docs/cli-reference.md +15 -0
- package/package.json +7 -6
- package/dist/token-lSuBKMH9.mjs.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference path="./../../plugin-generated.d.ts" />
|
|
2
2
|
|
|
3
3
|
import { TailorDBType, TailorField, TailorUser } from "../../types-C5oBGPO0.mjs";
|
|
4
|
-
import { output } from "../../index-
|
|
4
|
+
import { output } from "../../index-Bx9tHHe8.mjs";
|
|
5
5
|
import { StandardSchemaV1 } from "@standard-schema/spec";
|
|
6
6
|
|
|
7
7
|
//#region src/utils/test/index.d.ts
|
package/docs/cli-reference.md
CHANGED
|
@@ -71,6 +71,21 @@ tailor-sdk apply [options]
|
|
|
71
71
|
- `-d, --dryRun` - Run the command without making any changes
|
|
72
72
|
- `-y, --yes` - Skip confirmation prompt
|
|
73
73
|
|
|
74
|
+
### remove
|
|
75
|
+
|
|
76
|
+
Remove all resources managed by the application from the workspace.
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
tailor-sdk remove [options]
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
**Options:**
|
|
83
|
+
|
|
84
|
+
- `-w, --workspace-id` - ID of the workspace to remove resources from
|
|
85
|
+
- `-p, --profile` - Workspace profile to use
|
|
86
|
+
- `-c, --config` - Path to the SDK config file (default: `tailor.config.ts`)
|
|
87
|
+
- `-y, --yes` - Skip confirmation prompt
|
|
88
|
+
|
|
74
89
|
### show
|
|
75
90
|
|
|
76
91
|
Show information about the deployed application.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tailor-platform/sdk",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.3",
|
|
4
4
|
"description": "Tailor Platform SDK - The SDK to work with Tailor Platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/configure/index.mjs",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"types": "./dist/configure/index.d.mts",
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@badgateway/oauth2-client": "3.3.1",
|
|
43
|
-
"@bufbuild/protobuf": "2.10.
|
|
44
|
-
"@connectrpc/connect": "2.1.
|
|
45
|
-
"@connectrpc/connect-node": "2.1.
|
|
43
|
+
"@bufbuild/protobuf": "2.10.1",
|
|
44
|
+
"@connectrpc/connect": "2.1.1",
|
|
45
|
+
"@connectrpc/connect-node": "2.1.1",
|
|
46
46
|
"@standard-schema/spec": "1.0.0",
|
|
47
47
|
"@urql/core": "5.2.0",
|
|
48
48
|
"chalk": "5.6.2",
|
|
@@ -72,17 +72,18 @@
|
|
|
72
72
|
"@tailor-platform/function-types": "0.7.2",
|
|
73
73
|
"@types/madge": "5.0.3",
|
|
74
74
|
"@types/node": "22.19.1",
|
|
75
|
+
"cross-env": "^10.1.0",
|
|
75
76
|
"eslint": "9.39.1",
|
|
76
77
|
"globals": "16.5.0",
|
|
77
78
|
"sonda": "0.10.0",
|
|
78
79
|
"tsdown": "0.15.6",
|
|
79
80
|
"typescript": "5.9.3",
|
|
80
81
|
"typescript-eslint": "8.47.0",
|
|
81
|
-
"vitest": "4.0.
|
|
82
|
+
"vitest": "4.0.13"
|
|
82
83
|
},
|
|
83
84
|
"scripts": {
|
|
84
85
|
"test": "vitest",
|
|
85
|
-
"build": "tsdown && FORCE_CREATE=1 node postinstall.mjs",
|
|
86
|
+
"build": "tsdown && cross-env FORCE_CREATE=1 node postinstall.mjs",
|
|
86
87
|
"lint": "eslint --cache .",
|
|
87
88
|
"lint:fix": "eslint --cache . --fix",
|
|
88
89
|
"typecheck": "tsc --noEmit",
|