@dev-blinq/bvt-playwright-js 1.0.0-dev.4.staging.107.1 → 1.0.0-dev.4.staging.111.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/index.mjs CHANGED
@@ -6208,6 +6208,7 @@ const CustomCodeStepTemplateSchema = object({
6208
6208
  _id: EntityIdSchema,
6209
6209
  projectId: EntityIdSchema,
6210
6210
  name: string().min(1).max(500),
6211
+ stepName: string().max(2e3).optional(),
6211
6212
  code: string().min(1).max(1e5)
6212
6213
  }).strict();
6213
6214
 
@@ -6329,6 +6330,8 @@ const UserSchema = object({
6329
6330
  externalUserId: string().optional(),
6330
6331
  hasFinishedTour1: boolean().optional(),
6331
6332
  hasFinishedTour2: boolean().optional(),
6333
+ hasFinishedNewTourGuideAiMaintenance: boolean().optional(),
6334
+ hasFinishedNewTourGuideAiTestCreation: boolean().optional(),
6332
6335
  showDemoProjectInSidebar: boolean().optional(),
6333
6336
  maxProjects: number().int().positive().optional()
6334
6337
  }).strict();