@rudderhq/cli 0.7.0 → 0.7.1
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 +3 -1
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2405,7 +2405,9 @@ var init_instance = __esm({
|
|
|
2405
2405
|
censorUsernameInLogs: z7.boolean().default(false),
|
|
2406
2406
|
showDeveloperDiagnostics: z7.boolean().default(false),
|
|
2407
2407
|
experimentalSitesEnabled: z7.boolean().default(false),
|
|
2408
|
-
locale: instanceLocaleSchema.default("en")
|
|
2408
|
+
locale: instanceLocaleSchema.default("en"),
|
|
2409
|
+
productAnalyticsMode: z7.enum(["off", "anonymous", "account_linked"]).default("off"),
|
|
2410
|
+
productAnalyticsConsentEpoch: z7.number().int().min(1).default(1)
|
|
2409
2411
|
}).strict();
|
|
2410
2412
|
patchInstanceGeneralSettingsSchema = instanceGeneralSettingsSchema.partial();
|
|
2411
2413
|
instanceNotificationSettingsSchema = z7.object({
|