@dev-blinq/bvt-playwright-js 1.0.0-dev.4.staging.124.1 → 1.0.0-dev.4.staging.135.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 +1 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -6695,7 +6695,7 @@ const CommandSchema = discriminatedUnion("type", [
|
|
|
6695
6695
|
//#region ../../core/schemas/src/scenario/scenario.schema.ts
|
|
6696
6696
|
const TagSchema = object({
|
|
6697
6697
|
_id: EntityIdSchema,
|
|
6698
|
-
name: string().min(1).max(
|
|
6698
|
+
name: string().min(1).max(100).regex(/^[a-zA-Z0-9_:-]+$/, "Tag name can only contain letters, numbers, hyphens, underscores, and colons"),
|
|
6699
6699
|
projectId: EntityIdSchema
|
|
6700
6700
|
}).strict();
|
|
6701
6701
|
const RecorderModes = [
|