@rudderhq/cli 0.1.0-canary.19 → 0.1.0-canary.20
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 +1 -6
- package/dist/index.js.map +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -397,7 +397,7 @@ var init_observability = __esm({
|
|
|
397
397
|
|
|
398
398
|
// ../packages/shared/src/validators/instance.ts
|
|
399
399
|
import { z } from "zod";
|
|
400
|
-
var instanceLocaleSchema, instanceGeneralSettingsSchema, patchInstanceGeneralSettingsSchema, instanceNotificationSettingsSchema, patchInstanceNotificationSettingsSchema, instanceLangfuseSettingsSchema, patchInstanceLangfuseSettingsSchema, operatorProfileSettingsSchema, patchOperatorProfileSettingsSchema,
|
|
400
|
+
var instanceLocaleSchema, instanceGeneralSettingsSchema, patchInstanceGeneralSettingsSchema, instanceNotificationSettingsSchema, patchInstanceNotificationSettingsSchema, instanceLangfuseSettingsSchema, patchInstanceLangfuseSettingsSchema, operatorProfileSettingsSchema, patchOperatorProfileSettingsSchema, instancePathPickerSelectionTypeSchema, instancePathPickerRequestSchema, instancePathPickerResultSchema;
|
|
401
401
|
var init_instance = __esm({
|
|
402
402
|
"../packages/shared/src/validators/instance.ts"() {
|
|
403
403
|
"use strict";
|
|
@@ -435,10 +435,6 @@ var init_instance = __esm({
|
|
|
435
435
|
moreAboutYou: z.string().max(2e3).default("")
|
|
436
436
|
}).strict();
|
|
437
437
|
patchOperatorProfileSettingsSchema = operatorProfileSettingsSchema.partial();
|
|
438
|
-
instanceExperimentalSettingsSchema = z.object({
|
|
439
|
-
autoRestartDevServerWhenIdle: z.boolean().default(false)
|
|
440
|
-
}).strict();
|
|
441
|
-
patchInstanceExperimentalSettingsSchema = instanceExperimentalSettingsSchema.partial();
|
|
442
438
|
instancePathPickerSelectionTypeSchema = z.enum(["file", "directory"]);
|
|
443
439
|
instancePathPickerRequestSchema = z.object({
|
|
444
440
|
selectionType: instancePathPickerSelectionTypeSchema
|
|
@@ -3745,7 +3741,6 @@ var init_instance_settings = __esm({
|
|
|
3745
3741
|
singletonKey: text11("singleton_key").notNull().default("default"),
|
|
3746
3742
|
general: jsonb4("general").$type().notNull().default({}),
|
|
3747
3743
|
notifications: jsonb4("notifications").$type().notNull().default({}),
|
|
3748
|
-
experimental: jsonb4("experimental").$type().notNull().default({}),
|
|
3749
3744
|
createdAt: timestamp7("created_at", { withTimezone: true }).notNull().defaultNow(),
|
|
3750
3745
|
updatedAt: timestamp7("updated_at", { withTimezone: true }).notNull().defaultNow()
|
|
3751
3746
|
},
|