thinkwork-cli 0.7.0 → 0.8.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.
|
@@ -88,11 +88,13 @@ variable "pre_signup_lambda_zip" {
|
|
|
88
88
|
# ---------------------------------------------------------------------------
|
|
89
89
|
|
|
90
90
|
variable "admin_callback_urls" {
|
|
91
|
-
description = "OAuth callback URLs for the web admin client"
|
|
91
|
+
description = "OAuth callback URLs for the web admin client (also used by `thinkwork login --stage <s>` — the CLI binds a loopback server on 127.0.0.1:42010 and must find that URL here for Cognito to accept the redirect)"
|
|
92
92
|
type = list(string)
|
|
93
93
|
default = [
|
|
94
94
|
"http://localhost:5174",
|
|
95
95
|
"http://localhost:5174/auth/callback",
|
|
96
|
+
"http://127.0.0.1:42010/callback",
|
|
97
|
+
"http://localhost:42010/callback",
|
|
96
98
|
]
|
|
97
99
|
}
|
|
98
100
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "thinkwork-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Thinkwork CLI — deploy, manage, and interact with your Thinkwork stack",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -13,18 +13,24 @@
|
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "tsup src/cli.ts --format esm --dts --clean && node scripts/bundle-terraform.js",
|
|
15
15
|
"dev": "tsx src/cli.ts",
|
|
16
|
+
"codegen": "graphql-codegen --config codegen.ts",
|
|
16
17
|
"typecheck": "tsc --noEmit",
|
|
17
18
|
"test": "vitest run",
|
|
18
19
|
"lint": "echo 'lint: skipped (eslint not configured)'",
|
|
19
20
|
"prepublishOnly": "npm run build && npm run typecheck"
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|
|
23
|
+
"@graphql-typed-document-node/core": "^3.2.0",
|
|
22
24
|
"@inquirer/prompts": "^8.4.1",
|
|
25
|
+
"@urql/core": "^6.0.0",
|
|
23
26
|
"chalk": "^5.6.2",
|
|
24
27
|
"commander": "^12.0.0",
|
|
28
|
+
"graphql": "^16.10.0",
|
|
25
29
|
"ora": "^9.3.0"
|
|
26
30
|
},
|
|
27
31
|
"devDependencies": {
|
|
32
|
+
"@graphql-codegen/cli": "^5.0.6",
|
|
33
|
+
"@graphql-codegen/client-preset": "^4.8.2",
|
|
28
34
|
"@types/node": "^25.6.0",
|
|
29
35
|
"tsup": "^8.0.0",
|
|
30
36
|
"tsx": "^4.0.0",
|
|
Binary file
|