@tailor-platform/sdk 1.13.0 → 1.14.0
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 +13 -0
- package/dist/cli/index.mjs +6 -4
- package/dist/cli/index.mjs.map +1 -1
- package/dist/cli/lib.d.mts +119 -4
- package/dist/cli/lib.mjs +1 -1
- package/dist/configure/index.d.mts +2 -2
- package/dist/{index-Bid18Opo.d.mts → index-Bw_huFr7.d.mts} +7 -7
- package/dist/{index-BBr_q3vB.d.mts → index-DMoFYBhB.d.mts} +2 -2
- package/dist/{update-CUvANRhs.mjs → update-BnKKm4aR.mjs} +468 -96
- package/dist/{update-CUvANRhs.mjs.map → update-BnKKm4aR.mjs.map} +1 -1
- package/dist/utils/test/index.d.mts +2 -2
- package/docs/cli/application.md +38 -38
- package/docs/cli/auth.md +24 -24
- package/docs/cli/completion.md +27 -0
- package/docs/cli/executor.md +36 -36
- package/docs/cli/secret.md +41 -41
- package/docs/cli/staticwebsite.md +17 -17
- package/docs/cli/tailordb.md +48 -48
- package/docs/cli/user.md +17 -17
- package/docs/cli/workflow.md +39 -39
- package/docs/cli/workspace.md +76 -76
- package/docs/cli-reference.md +8 -0
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference path="./../../user-defined.d.ts" />
|
|
2
|
-
import { Ft as TailorField, rt as TailorDBType } from "../../index-
|
|
3
|
-
import { G as WORKFLOW_TEST_ENV_KEY, n as output } from "../../index-
|
|
2
|
+
import { Ft as TailorField, rt as TailorDBType } from "../../index-Bw_huFr7.mjs";
|
|
3
|
+
import { G as WORKFLOW_TEST_ENV_KEY, n as output } from "../../index-DMoFYBhB.mjs";
|
|
4
4
|
import { StandardSchemaV1 } from "@standard-schema/spec";
|
|
5
5
|
|
|
6
6
|
//#region src/utils/test/index.d.ts
|
package/docs/cli/application.md
CHANGED
|
@@ -22,9 +22,9 @@ tailor-sdk init [options] [name]
|
|
|
22
22
|
|
|
23
23
|
**Options**
|
|
24
24
|
|
|
25
|
-
| Option | Alias | Description | Default |
|
|
26
|
-
| ----------------------- | ----- | ------------- | ------- |
|
|
27
|
-
| `--template <TEMPLATE>` | `-t` | Template name | - |
|
|
25
|
+
| Option | Alias | Description | Required | Default |
|
|
26
|
+
| ----------------------- | ----- | ------------- | -------- | ------- |
|
|
27
|
+
| `--template <TEMPLATE>` | `-t` | Template name | No | - |
|
|
28
28
|
|
|
29
29
|
<!-- politty:command:init:end -->
|
|
30
30
|
|
|
@@ -42,10 +42,10 @@ tailor-sdk generate [options]
|
|
|
42
42
|
|
|
43
43
|
**Options**
|
|
44
44
|
|
|
45
|
-
| Option | Alias | Description | Default |
|
|
46
|
-
| ------------------- | ----- | ---------------------------------------------- | -------------------- |
|
|
47
|
-
| `--config <CONFIG>` | `-c` | Path to SDK config file | `"tailor.config.ts"` |
|
|
48
|
-
| `--watch` | `-W` | Watch for type/resolver changes and regenerate | `false` |
|
|
45
|
+
| Option | Alias | Description | Required | Default |
|
|
46
|
+
| ------------------- | ----- | ---------------------------------------------- | -------- | -------------------- |
|
|
47
|
+
| `--config <CONFIG>` | `-c` | Path to SDK config file | No | `"tailor.config.ts"` |
|
|
48
|
+
| `--watch` | `-W` | Watch for type/resolver changes and regenerate | No | `false` |
|
|
49
49
|
|
|
50
50
|
<!-- politty:command:generate:end -->
|
|
51
51
|
|
|
@@ -63,14 +63,14 @@ tailor-sdk apply [options]
|
|
|
63
63
|
|
|
64
64
|
**Options**
|
|
65
65
|
|
|
66
|
-
| Option | Alias | Description | Default |
|
|
67
|
-
| ------------------------------- | ----- | -------------------------------------------------- | -------------------- |
|
|
68
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
69
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
70
|
-
| `--config <CONFIG>` | `-c` | Path to SDK config file | `"tailor.config.ts"` |
|
|
71
|
-
| `--yes` | `-y` | Skip confirmation prompts | `false` |
|
|
72
|
-
| `--dry-run` | `-d` | Run the command without making any changes | - |
|
|
73
|
-
| `--no-schema-check` | - | Skip schema diff check against migration snapshots | - |
|
|
66
|
+
| Option | Alias | Description | Required | Default |
|
|
67
|
+
| ------------------------------- | ----- | -------------------------------------------------- | -------- | -------------------- |
|
|
68
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
69
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
70
|
+
| `--config <CONFIG>` | `-c` | Path to SDK config file | No | `"tailor.config.ts"` |
|
|
71
|
+
| `--yes` | `-y` | Skip confirmation prompts | No | `false` |
|
|
72
|
+
| `--dry-run` | `-d` | Run the command without making any changes | No | - |
|
|
73
|
+
| `--no-schema-check` | - | Skip schema diff check against migration snapshots | No | - |
|
|
74
74
|
|
|
75
75
|
<!-- politty:command:apply:end -->
|
|
76
76
|
|
|
@@ -110,12 +110,12 @@ tailor-sdk remove [options]
|
|
|
110
110
|
|
|
111
111
|
**Options**
|
|
112
112
|
|
|
113
|
-
| Option | Alias | Description | Default |
|
|
114
|
-
| ------------------------------- | ----- | ------------------------- | -------------------- |
|
|
115
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
116
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
117
|
-
| `--config <CONFIG>` | `-c` | Path to SDK config file | `"tailor.config.ts"` |
|
|
118
|
-
| `--yes` | `-y` | Skip confirmation prompts | `false` |
|
|
113
|
+
| Option | Alias | Description | Required | Default |
|
|
114
|
+
| ------------------------------- | ----- | ------------------------- | -------- | -------------------- |
|
|
115
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
116
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
117
|
+
| `--config <CONFIG>` | `-c` | Path to SDK config file | No | `"tailor.config.ts"` |
|
|
118
|
+
| `--yes` | `-y` | Skip confirmation prompts | No | `false` |
|
|
119
119
|
|
|
120
120
|
<!-- politty:command:remove:end -->
|
|
121
121
|
|
|
@@ -133,12 +133,12 @@ tailor-sdk show [options]
|
|
|
133
133
|
|
|
134
134
|
**Options**
|
|
135
135
|
|
|
136
|
-
| Option | Alias | Description | Default |
|
|
137
|
-
| ------------------------------- | ----- | ----------------------- | -------------------- |
|
|
138
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
139
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
140
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
141
|
-
| `--config <CONFIG>` | `-c` | Path to SDK config file | `"tailor.config.ts"` |
|
|
136
|
+
| Option | Alias | Description | Required | Default |
|
|
137
|
+
| ------------------------------- | ----- | ----------------------- | -------- | -------------------- |
|
|
138
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
139
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
140
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
141
|
+
| `--config <CONFIG>` | `-c` | Path to SDK config file | No | `"tailor.config.ts"` |
|
|
142
142
|
|
|
143
143
|
<!-- politty:command:show:end -->
|
|
144
144
|
|
|
@@ -156,11 +156,11 @@ tailor-sdk open [options]
|
|
|
156
156
|
|
|
157
157
|
**Options**
|
|
158
158
|
|
|
159
|
-
| Option | Alias | Description | Default |
|
|
160
|
-
| ------------------------------- | ----- | ----------------------- | -------------------- |
|
|
161
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
162
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
163
|
-
| `--config <CONFIG>` | `-c` | Path to SDK config file | `"tailor.config.ts"` |
|
|
159
|
+
| Option | Alias | Description | Required | Default |
|
|
160
|
+
| ------------------------------- | ----- | ----------------------- | -------- | -------------------- |
|
|
161
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
162
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
163
|
+
| `--config <CONFIG>` | `-c` | Path to SDK config file | No | `"tailor.config.ts"` |
|
|
164
164
|
|
|
165
165
|
<!-- politty:command:open:end -->
|
|
166
166
|
|
|
@@ -184,11 +184,11 @@ tailor-sdk api [options] <endpoint>
|
|
|
184
184
|
|
|
185
185
|
**Options**
|
|
186
186
|
|
|
187
|
-
| Option | Alias | Description | Default |
|
|
188
|
-
| ------------------------------- | ----- | -------------------- | ------- |
|
|
189
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
190
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
191
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
192
|
-
| `--body <BODY>` | `-b` | Request body as JSON | `"{}"` |
|
|
187
|
+
| Option | Alias | Description | Required | Default |
|
|
188
|
+
| ------------------------------- | ----- | -------------------- | -------- | ------- |
|
|
189
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
190
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
191
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
192
|
+
| `--body <BODY>` | `-b` | Request body as JSON | No | `"{}"` |
|
|
193
193
|
|
|
194
194
|
<!-- politty:command:api:end -->
|
package/docs/cli/auth.md
CHANGED
|
@@ -36,12 +36,12 @@ tailor-sdk machineuser list [options]
|
|
|
36
36
|
|
|
37
37
|
**Options**
|
|
38
38
|
|
|
39
|
-
| Option | Alias | Description | Default |
|
|
40
|
-
| ------------------------------- | ----- | ----------------------- | -------------------- |
|
|
41
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
42
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
43
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
44
|
-
| `--config <CONFIG>` | `-c` | Path to SDK config file | `"tailor.config.ts"` |
|
|
39
|
+
| Option | Alias | Description | Required | Default |
|
|
40
|
+
| ------------------------------- | ----- | ----------------------- | -------- | -------------------- |
|
|
41
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
42
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
43
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
44
|
+
| `--config <CONFIG>` | `-c` | Path to SDK config file | No | `"tailor.config.ts"` |
|
|
45
45
|
|
|
46
46
|
<!-- politty:command:machineuser list:end -->
|
|
47
47
|
<!-- politty:command:machineuser token:start -->
|
|
@@ -64,12 +64,12 @@ tailor-sdk machineuser token [options] <name>
|
|
|
64
64
|
|
|
65
65
|
**Options**
|
|
66
66
|
|
|
67
|
-
| Option | Alias | Description | Default |
|
|
68
|
-
| ------------------------------- | ----- | ----------------------- | -------------------- |
|
|
69
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
70
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
71
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
72
|
-
| `--config <CONFIG>` | `-c` | Path to SDK config file | `"tailor.config.ts"` |
|
|
67
|
+
| Option | Alias | Description | Required | Default |
|
|
68
|
+
| ------------------------------- | ----- | ----------------------- | -------- | -------------------- |
|
|
69
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
70
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
71
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
72
|
+
| `--config <CONFIG>` | `-c` | Path to SDK config file | No | `"tailor.config.ts"` |
|
|
73
73
|
|
|
74
74
|
<!-- politty:command:machineuser token:end -->
|
|
75
75
|
<!-- politty:command:oauth2client:start -->
|
|
@@ -106,12 +106,12 @@ tailor-sdk oauth2client list [options]
|
|
|
106
106
|
|
|
107
107
|
**Options**
|
|
108
108
|
|
|
109
|
-
| Option | Alias | Description | Default |
|
|
110
|
-
| ------------------------------- | ----- | ----------------------- | -------------------- |
|
|
111
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
112
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
113
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
114
|
-
| `--config <CONFIG>` | `-c` | Path to SDK config file | `"tailor.config.ts"` |
|
|
109
|
+
| Option | Alias | Description | Required | Default |
|
|
110
|
+
| ------------------------------- | ----- | ----------------------- | -------- | -------------------- |
|
|
111
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
112
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
113
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
114
|
+
| `--config <CONFIG>` | `-c` | Path to SDK config file | No | `"tailor.config.ts"` |
|
|
115
115
|
|
|
116
116
|
<!-- politty:command:oauth2client list:end -->
|
|
117
117
|
<!-- politty:command:oauth2client get:start -->
|
|
@@ -134,12 +134,12 @@ tailor-sdk oauth2client get [options] <name>
|
|
|
134
134
|
|
|
135
135
|
**Options**
|
|
136
136
|
|
|
137
|
-
| Option | Alias | Description | Default |
|
|
138
|
-
| ------------------------------- | ----- | ----------------------- | -------------------- |
|
|
139
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
140
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
141
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
142
|
-
| `--config <CONFIG>` | `-c` | Path to SDK config file | `"tailor.config.ts"` |
|
|
137
|
+
| Option | Alias | Description | Required | Default |
|
|
138
|
+
| ------------------------------- | ----- | ----------------------- | -------- | -------------------- |
|
|
139
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
140
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
141
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
142
|
+
| `--config <CONFIG>` | `-c` | Path to SDK config file | No | `"tailor.config.ts"` |
|
|
143
143
|
|
|
144
144
|
<!-- politty:command:oauth2client get:end -->
|
|
145
145
|
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Completion
|
|
2
|
+
|
|
3
|
+
<!-- politty:command:completion:start -->
|
|
4
|
+
|
|
5
|
+
## completion
|
|
6
|
+
|
|
7
|
+
Generate shell completion script
|
|
8
|
+
|
|
9
|
+
**Usage**
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
tailor-sdk completion [options] [shell]
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
**Arguments**
|
|
16
|
+
|
|
17
|
+
| Argument | Description | Required |
|
|
18
|
+
| -------- | ------------------------------- | -------- |
|
|
19
|
+
| `shell` | Shell type (bash, zsh, or fish) | No |
|
|
20
|
+
|
|
21
|
+
**Options**
|
|
22
|
+
|
|
23
|
+
| Option | Alias | Description | Required | Default |
|
|
24
|
+
| ---------------- | ----- | ------------------------------ | -------- | ------- |
|
|
25
|
+
| `--instructions` | `-i` | Show installation instructions | No | `false` |
|
|
26
|
+
|
|
27
|
+
<!-- politty:command:completion:end -->
|
package/docs/cli/executor.md
CHANGED
|
@@ -40,11 +40,11 @@ tailor-sdk executor list [options]
|
|
|
40
40
|
|
|
41
41
|
**Options**
|
|
42
42
|
|
|
43
|
-
| Option | Alias | Description | Default |
|
|
44
|
-
| ------------------------------- | ----- | ----------------- | ------- |
|
|
45
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
46
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
47
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
43
|
+
| Option | Alias | Description | Required | Default |
|
|
44
|
+
| ------------------------------- | ----- | ----------------- | -------- | ------- |
|
|
45
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
46
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
47
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
48
48
|
|
|
49
49
|
<!-- politty:command:executor list:end -->
|
|
50
50
|
|
|
@@ -68,11 +68,11 @@ tailor-sdk executor get [options] <name>
|
|
|
68
68
|
|
|
69
69
|
**Options**
|
|
70
70
|
|
|
71
|
-
| Option | Alias | Description | Default |
|
|
72
|
-
| ------------------------------- | ----- | ----------------- | ------- |
|
|
73
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
74
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
75
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
71
|
+
| Option | Alias | Description | Required | Default |
|
|
72
|
+
| ------------------------------- | ----- | ----------------- | -------- | ------- |
|
|
73
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
74
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
75
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
76
76
|
|
|
77
77
|
<!-- politty:command:executor get:end -->
|
|
78
78
|
|
|
@@ -97,17 +97,17 @@ tailor-sdk executor jobs [options] <executorName> [jobId]
|
|
|
97
97
|
|
|
98
98
|
**Options**
|
|
99
99
|
|
|
100
|
-
| Option | Alias | Description | Default |
|
|
101
|
-
| ------------------------------- | ----- | ----------------------------------------------------------------------------------------------------- | ------- |
|
|
102
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
103
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
104
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
105
|
-
| `--status <STATUS>` | `-s` | Filter by status (PENDING, RUNNING, SUCCESS, FAILED, CANCELED) (list mode only) | - |
|
|
106
|
-
| `--attempts` | - | Show job attempts (only with job ID) (detail mode only) | `false` |
|
|
107
|
-
| `--wait` | `-W` | Wait for job completion and downstream execution (workflow/function) if applicable (detail mode only) | `false` |
|
|
108
|
-
| `--interval <INTERVAL>` | `-i` | Polling interval when using --wait (e.g., '3s', '500ms', '1m') | `"3s"` |
|
|
109
|
-
| `--logs` | `-l` | Display function execution logs after completion (requires --wait) | `false` |
|
|
110
|
-
| `--limit <LIMIT>` | - | Maximum number of jobs to list (default: 50, max: 1000) (list mode only) | - |
|
|
100
|
+
| Option | Alias | Description | Required | Default |
|
|
101
|
+
| ------------------------------- | ----- | ----------------------------------------------------------------------------------------------------- | -------- | ------- |
|
|
102
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
103
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
104
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
105
|
+
| `--status <STATUS>` | `-s` | Filter by status (PENDING, RUNNING, SUCCESS, FAILED, CANCELED) (list mode only) | No | - |
|
|
106
|
+
| `--attempts` | - | Show job attempts (only with job ID) (detail mode only) | No | `false` |
|
|
107
|
+
| `--wait` | `-W` | Wait for job completion and downstream execution (workflow/function) if applicable (detail mode only) | No | `false` |
|
|
108
|
+
| `--interval <INTERVAL>` | `-i` | Polling interval when using --wait (e.g., '3s', '500ms', '1m') | No | `"3s"` |
|
|
109
|
+
| `--logs` | `-l` | Display function execution logs after completion (requires --wait) | No | `false` |
|
|
110
|
+
| `--limit <LIMIT>` | - | Maximum number of jobs to list (default: 50, max: 1000) (list mode only) | No | - |
|
|
111
111
|
|
|
112
112
|
**Examples**
|
|
113
113
|
|
|
@@ -175,16 +175,16 @@ tailor-sdk executor trigger [options] <executorName>
|
|
|
175
175
|
|
|
176
176
|
**Options**
|
|
177
177
|
|
|
178
|
-
| Option | Alias | Description | Default |
|
|
179
|
-
| ------------------------------- | ----- | ---------------------------------------------------------------------------------- | ------- |
|
|
180
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
181
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
182
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
183
|
-
| `--data <DATA>` | `-d` | Request body (JSON string) | - |
|
|
184
|
-
| `--header <HEADER>` | `-H` | Request header (format: 'Key: Value', can be specified multiple times) | - |
|
|
185
|
-
| `--wait` | `-W` | Wait for job completion and downstream execution (workflow/function) if applicable | `false` |
|
|
186
|
-
| `--interval <INTERVAL>` | `-i` | Polling interval when using --wait (e.g., '3s', '500ms', '1m') | `"3s"` |
|
|
187
|
-
| `--logs` | `-l` | Display function execution logs after completion (requires --wait) | `false` |
|
|
178
|
+
| Option | Alias | Description | Required | Default |
|
|
179
|
+
| ------------------------------- | ----- | ---------------------------------------------------------------------------------- | -------- | ------- |
|
|
180
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
181
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
182
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
183
|
+
| `--data <DATA>` | `-d` | Request body (JSON string) | No | - |
|
|
184
|
+
| `--header <HEADER>` | `-H` | Request header (format: 'Key: Value', can be specified multiple times) | No | - |
|
|
185
|
+
| `--wait` | `-W` | Wait for job completion and downstream execution (workflow/function) if applicable | No | `false` |
|
|
186
|
+
| `--interval <INTERVAL>` | `-i` | Polling interval when using --wait (e.g., '3s', '500ms', '1m') | No | `"3s"` |
|
|
187
|
+
| `--logs` | `-l` | Display function execution logs after completion (requires --wait) | No | `false` |
|
|
188
188
|
|
|
189
189
|
**Examples**
|
|
190
190
|
|
|
@@ -271,10 +271,10 @@ tailor-sdk executor webhook list [options]
|
|
|
271
271
|
|
|
272
272
|
**Options**
|
|
273
273
|
|
|
274
|
-
| Option | Alias | Description | Default |
|
|
275
|
-
| ------------------------------- | ----- | ----------------- | ------- |
|
|
276
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
277
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
278
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
274
|
+
| Option | Alias | Description | Required | Default |
|
|
275
|
+
| ------------------------------- | ----- | ----------------- | -------- | ------- |
|
|
276
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
277
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
278
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
279
279
|
|
|
280
280
|
<!-- politty:command:executor webhook list:end -->
|
package/docs/cli/secret.md
CHANGED
|
@@ -66,10 +66,10 @@ tailor-sdk secret vault create [options] <name>
|
|
|
66
66
|
|
|
67
67
|
**Options**
|
|
68
68
|
|
|
69
|
-
| Option | Alias | Description | Default |
|
|
70
|
-
| ------------------------------- | ----- | ----------------- | ------- |
|
|
71
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
72
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
69
|
+
| Option | Alias | Description | Required | Default |
|
|
70
|
+
| ------------------------------- | ----- | ----------------- | -------- | ------- |
|
|
71
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
72
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
73
73
|
|
|
74
74
|
<!-- politty:command:secret vault create:end -->
|
|
75
75
|
<!-- politty:command:secret vault delete:start -->
|
|
@@ -92,11 +92,11 @@ tailor-sdk secret vault delete [options] <name>
|
|
|
92
92
|
|
|
93
93
|
**Options**
|
|
94
94
|
|
|
95
|
-
| Option | Alias | Description | Default |
|
|
96
|
-
| ------------------------------- | ----- | ------------------------- | ------- |
|
|
97
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
98
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
99
|
-
| `--yes` | `-y` | Skip confirmation prompts | `false` |
|
|
95
|
+
| Option | Alias | Description | Required | Default |
|
|
96
|
+
| ------------------------------- | ----- | ------------------------- | -------- | ------- |
|
|
97
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
98
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
99
|
+
| `--yes` | `-y` | Skip confirmation prompts | No | `false` |
|
|
100
100
|
|
|
101
101
|
<!-- politty:command:secret vault delete:end -->
|
|
102
102
|
<!-- politty:command:secret vault list:start -->
|
|
@@ -113,11 +113,11 @@ tailor-sdk secret vault list [options]
|
|
|
113
113
|
|
|
114
114
|
**Options**
|
|
115
115
|
|
|
116
|
-
| Option | Alias | Description | Default |
|
|
117
|
-
| ------------------------------- | ----- | ----------------- | ------- |
|
|
118
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
119
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
120
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
116
|
+
| Option | Alias | Description | Required | Default |
|
|
117
|
+
| ------------------------------- | ----- | ----------------- | -------- | ------- |
|
|
118
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
119
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
120
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
121
121
|
|
|
122
122
|
<!-- politty:command:secret vault list:end -->
|
|
123
123
|
<!-- politty:command:secret create:start -->
|
|
@@ -134,13 +134,13 @@ tailor-sdk secret create [options]
|
|
|
134
134
|
|
|
135
135
|
**Options**
|
|
136
136
|
|
|
137
|
-
| Option | Alias | Description | Default |
|
|
138
|
-
| ------------------------------- | ----- | ----------------- | ------- |
|
|
139
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
140
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
141
|
-
| `--vault-name <VAULT_NAME>` | `-V` | Vault name | - |
|
|
142
|
-
| `--name <NAME>` | `-n` | Secret name | - |
|
|
143
|
-
| `--value <VALUE>` | `-v` | Secret value | - |
|
|
137
|
+
| Option | Alias | Description | Required | Default |
|
|
138
|
+
| ------------------------------- | ----- | ----------------- | -------- | ------- |
|
|
139
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
140
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
141
|
+
| `--vault-name <VAULT_NAME>` | `-V` | Vault name | Yes | - |
|
|
142
|
+
| `--name <NAME>` | `-n` | Secret name | Yes | - |
|
|
143
|
+
| `--value <VALUE>` | `-v` | Secret value | Yes | - |
|
|
144
144
|
|
|
145
145
|
<!-- politty:command:secret create:end -->
|
|
146
146
|
<!-- politty:command:secret update:start -->
|
|
@@ -157,13 +157,13 @@ tailor-sdk secret update [options]
|
|
|
157
157
|
|
|
158
158
|
**Options**
|
|
159
159
|
|
|
160
|
-
| Option | Alias | Description | Default |
|
|
161
|
-
| ------------------------------- | ----- | ----------------- | ------- |
|
|
162
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
163
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
164
|
-
| `--vault-name <VAULT_NAME>` | `-V` | Vault name | - |
|
|
165
|
-
| `--name <NAME>` | `-n` | Secret name | - |
|
|
166
|
-
| `--value <VALUE>` | `-v` | Secret value | - |
|
|
160
|
+
| Option | Alias | Description | Required | Default |
|
|
161
|
+
| ------------------------------- | ----- | ----------------- | -------- | ------- |
|
|
162
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
163
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
164
|
+
| `--vault-name <VAULT_NAME>` | `-V` | Vault name | Yes | - |
|
|
165
|
+
| `--name <NAME>` | `-n` | Secret name | Yes | - |
|
|
166
|
+
| `--value <VALUE>` | `-v` | Secret value | Yes | - |
|
|
167
167
|
|
|
168
168
|
<!-- politty:command:secret update:end -->
|
|
169
169
|
<!-- politty:command:secret list:start -->
|
|
@@ -180,12 +180,12 @@ tailor-sdk secret list [options]
|
|
|
180
180
|
|
|
181
181
|
**Options**
|
|
182
182
|
|
|
183
|
-
| Option | Alias | Description | Default |
|
|
184
|
-
| ------------------------------- | ----- | ----------------- | ------- |
|
|
185
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
186
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
187
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
188
|
-
| `--vault-name <VAULT_NAME>` | `-V` | Vault name | - |
|
|
183
|
+
| Option | Alias | Description | Required | Default |
|
|
184
|
+
| ------------------------------- | ----- | ----------------- | -------- | ------- |
|
|
185
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
186
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
187
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
188
|
+
| `--vault-name <VAULT_NAME>` | `-V` | Vault name | Yes | - |
|
|
189
189
|
|
|
190
190
|
<!-- politty:command:secret list:end -->
|
|
191
191
|
<!-- politty:command:secret delete:start -->
|
|
@@ -202,12 +202,12 @@ tailor-sdk secret delete [options]
|
|
|
202
202
|
|
|
203
203
|
**Options**
|
|
204
204
|
|
|
205
|
-
| Option | Alias | Description | Default |
|
|
206
|
-
| ------------------------------- | ----- | ------------------------- | ------- |
|
|
207
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
208
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
209
|
-
| `--vault-name <VAULT_NAME>` | `-V` | Vault name | - |
|
|
210
|
-
| `--name <NAME>` | `-n` | Secret name | - |
|
|
211
|
-
| `--yes` | `-y` | Skip confirmation prompts | `false` |
|
|
205
|
+
| Option | Alias | Description | Required | Default |
|
|
206
|
+
| ------------------------------- | ----- | ------------------------- | -------- | ------- |
|
|
207
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
208
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
209
|
+
| `--vault-name <VAULT_NAME>` | `-V` | Vault name | Yes | - |
|
|
210
|
+
| `--name <NAME>` | `-n` | Secret name | Yes | - |
|
|
211
|
+
| `--yes` | `-y` | Skip confirmation prompts | No | `false` |
|
|
212
212
|
|
|
213
213
|
<!-- politty:command:secret delete:end -->
|
|
@@ -37,13 +37,13 @@ tailor-sdk staticwebsite deploy [options]
|
|
|
37
37
|
|
|
38
38
|
**Options**
|
|
39
39
|
|
|
40
|
-
| Option | Alias | Description | Default |
|
|
41
|
-
| ------------------------------- | ----- | -------------------------------- | ------- |
|
|
42
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
43
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
44
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
45
|
-
| `--name <NAME>` | `-n` | Static website name | - |
|
|
46
|
-
| `--dir <DIR>` | `-d` | Path to the static website files | - |
|
|
40
|
+
| Option | Alias | Description | Required | Default |
|
|
41
|
+
| ------------------------------- | ----- | -------------------------------- | -------- | ------- |
|
|
42
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
43
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
44
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
45
|
+
| `--name <NAME>` | `-n` | Static website name | Yes | - |
|
|
46
|
+
| `--dir <DIR>` | `-d` | Path to the static website files | Yes | - |
|
|
47
47
|
|
|
48
48
|
<!-- politty:command:staticwebsite deploy:end -->
|
|
49
49
|
<!-- politty:command:staticwebsite list:start -->
|
|
@@ -60,11 +60,11 @@ tailor-sdk staticwebsite list [options]
|
|
|
60
60
|
|
|
61
61
|
**Options**
|
|
62
62
|
|
|
63
|
-
| Option | Alias | Description | Default |
|
|
64
|
-
| ------------------------------- | ----- | ----------------- | ------- |
|
|
65
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
66
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
67
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
63
|
+
| Option | Alias | Description | Required | Default |
|
|
64
|
+
| ------------------------------- | ----- | ----------------- | -------- | ------- |
|
|
65
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
66
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
67
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
68
68
|
|
|
69
69
|
<!-- politty:command:staticwebsite list:end -->
|
|
70
70
|
<!-- politty:command:staticwebsite get:start -->
|
|
@@ -87,11 +87,11 @@ tailor-sdk staticwebsite get [options] <name>
|
|
|
87
87
|
|
|
88
88
|
**Options**
|
|
89
89
|
|
|
90
|
-
| Option | Alias | Description | Default |
|
|
91
|
-
| ------------------------------- | ----- | ----------------- | ------- |
|
|
92
|
-
| `--json` | `-j` | Output as JSON | `false` |
|
|
93
|
-
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | - |
|
|
94
|
-
| `--profile <PROFILE>` | `-p` | Workspace profile | - |
|
|
90
|
+
| Option | Alias | Description | Required | Default |
|
|
91
|
+
| ------------------------------- | ----- | ----------------- | -------- | ------- |
|
|
92
|
+
| `--json` | `-j` | Output as JSON | No | `false` |
|
|
93
|
+
| `--workspace-id <WORKSPACE_ID>` | `-w` | Workspace ID | No | - |
|
|
94
|
+
| `--profile <PROFILE>` | `-p` | Workspace profile | No | - |
|
|
95
95
|
|
|
96
96
|
<!-- politty:command:staticwebsite get:end -->
|
|
97
97
|
|