@growthub/cli 0.3.16 → 0.3.17
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/index.js +4 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1620,7 +1620,7 @@ var init_config_schema = __esm({
|
|
|
1620
1620
|
publicBaseUrl: z19.string().url().optional(),
|
|
1621
1621
|
disableSignUp: z19.boolean().default(false),
|
|
1622
1622
|
token: z19.string().min(1).optional(),
|
|
1623
|
-
growthubBaseUrl: z19.string().url().
|
|
1623
|
+
growthubBaseUrl: z19.string().url().optional(),
|
|
1624
1624
|
growthubPortalBaseUrl: z19.string().url().optional(),
|
|
1625
1625
|
growthubMachineLabel: z19.string().min(1).optional(),
|
|
1626
1626
|
growthubWorkspaceLabel: z19.string().min(1).optional()
|
|
@@ -1668,8 +1668,7 @@ var init_config_schema = __esm({
|
|
|
1668
1668
|
server: serverConfigSchema,
|
|
1669
1669
|
auth: authConfigSchema.default({
|
|
1670
1670
|
baseUrlMode: "auto",
|
|
1671
|
-
disableSignUp: false
|
|
1672
|
-
growthubBaseUrl: "https://growthhub.ai"
|
|
1671
|
+
disableSignUp: false
|
|
1673
1672
|
}),
|
|
1674
1673
|
surface: surfaceConfigSchema.default({
|
|
1675
1674
|
profile: "dx"
|
|
@@ -7510,7 +7509,6 @@ function quickstartDefaultsFromEnv() {
|
|
|
7510
7509
|
auth: {
|
|
7511
7510
|
baseUrlMode: authBaseUrlMode,
|
|
7512
7511
|
disableSignUp: false,
|
|
7513
|
-
growthubBaseUrl: "https://growthhub.ai",
|
|
7514
7512
|
...authPublicBaseUrl ? { publicBaseUrl: authPublicBaseUrl } : {}
|
|
7515
7513
|
},
|
|
7516
7514
|
surface: {
|
|
@@ -8197,8 +8195,7 @@ function defaultConfig() {
|
|
|
8197
8195
|
},
|
|
8198
8196
|
auth: {
|
|
8199
8197
|
baseUrlMode: "auto",
|
|
8200
|
-
disableSignUp: false
|
|
8201
|
-
growthubBaseUrl: "https://growthhub.ai"
|
|
8198
|
+
disableSignUp: false
|
|
8202
8199
|
},
|
|
8203
8200
|
surface: {
|
|
8204
8201
|
profile: "dx"
|
|
@@ -11436,8 +11433,7 @@ function buildWorktreeConfig(input) {
|
|
|
11436
11433
|
auth: {
|
|
11437
11434
|
baseUrlMode: source?.auth.baseUrlMode ?? "auto",
|
|
11438
11435
|
...authPublicBaseUrl ? { publicBaseUrl: authPublicBaseUrl } : {},
|
|
11439
|
-
disableSignUp: source?.auth.disableSignUp ?? false
|
|
11440
|
-
growthubBaseUrl: source?.auth.growthubBaseUrl ?? "https://growthhub.ai"
|
|
11436
|
+
disableSignUp: source?.auth.disableSignUp ?? false
|
|
11441
11437
|
},
|
|
11442
11438
|
surface: {
|
|
11443
11439
|
profile: source?.surface.profile ?? "dx"
|