@dotbep/core 0.2.11 → 0.2.13

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.d.ts CHANGED
@@ -340,6 +340,7 @@ export declare const BEPSchema: z.ZodObject<{
340
340
  pattern: z.ZodString;
341
341
  flags: z.ZodOptional<z.ZodString>;
342
342
  }, z.core.$strip>>;
343
+ validationMessage: z.ZodOptional<z.ZodString>;
343
344
  options: z.ZodOptional<z.ZodArray<z.ZodString>>;
344
345
  }, z.core.$strip>>>;
345
346
  }, z.core.$strip>>;
@@ -361,6 +362,7 @@ export declare const BEPSchema: z.ZodObject<{
361
362
  pattern: z.ZodString;
362
363
  flags: z.ZodOptional<z.ZodString>;
363
364
  }, z.core.$strip>>;
365
+ validationMessage: z.ZodOptional<z.ZodString>;
364
366
  options: z.ZodOptional<z.ZodArray<z.ZodString>>;
365
367
  }, z.core.$strip>>>;
366
368
  }, z.core.$strip>>;
@@ -382,6 +384,7 @@ export declare const BEPSchema: z.ZodObject<{
382
384
  pattern: z.ZodString;
383
385
  flags: z.ZodOptional<z.ZodString>;
384
386
  }, z.core.$strip>>;
387
+ validationMessage: z.ZodOptional<z.ZodString>;
385
388
  options: z.ZodOptional<z.ZodArray<z.ZodString>>;
386
389
  }, z.core.$strip>>>;
387
390
  output: z.ZodArray<z.ZodObject<{
@@ -398,6 +401,7 @@ export declare const BEPSchema: z.ZodObject<{
398
401
  pattern: z.ZodString;
399
402
  flags: z.ZodOptional<z.ZodString>;
400
403
  }, z.core.$strip>>;
404
+ validationMessage: z.ZodOptional<z.ZodString>;
401
405
  options: z.ZodOptional<z.ZodArray<z.ZodString>>;
402
406
  }, z.core.$strip>>;
403
407
  }, z.core.$strip>>;
@@ -1168,6 +1172,7 @@ export declare const FlowAutomationSchema: z.ZodObject<{
1168
1172
  pattern: z.ZodString;
1169
1173
  flags: z.ZodOptional<z.ZodString>;
1170
1174
  }, z.core.$strip>>;
1175
+ validationMessage: z.ZodOptional<z.ZodString>;
1171
1176
  options: z.ZodOptional<z.ZodArray<z.ZodString>>;
1172
1177
  }, z.core.$strip>>>;
1173
1178
  output: z.ZodArray<z.ZodObject<{
@@ -1184,6 +1189,7 @@ export declare const FlowAutomationSchema: z.ZodObject<{
1184
1189
  pattern: z.ZodString;
1185
1190
  flags: z.ZodOptional<z.ZodString>;
1186
1191
  }, z.core.$strip>>;
1192
+ validationMessage: z.ZodOptional<z.ZodString>;
1187
1193
  options: z.ZodOptional<z.ZodArray<z.ZodString>>;
1188
1194
  }, z.core.$strip>>;
1189
1195
  }, z.core.$strip>;
@@ -1377,6 +1383,7 @@ export declare const FlowEffectSchema: z.ZodObject<{
1377
1383
  pattern: z.ZodString;
1378
1384
  flags: z.ZodOptional<z.ZodString>;
1379
1385
  }, z.core.$strip>>;
1386
+ validationMessage: z.ZodOptional<z.ZodString>;
1380
1387
  options: z.ZodOptional<z.ZodArray<z.ZodString>>;
1381
1388
  }, z.core.$strip>>>;
1382
1389
  }, z.core.$strip>;
@@ -1406,6 +1413,7 @@ export declare const FlowEventSchema: z.ZodObject<{
1406
1413
  pattern: z.ZodString;
1407
1414
  flags: z.ZodOptional<z.ZodString>;
1408
1415
  }, z.core.$strip>>;
1416
+ validationMessage: z.ZodOptional<z.ZodString>;
1409
1417
  options: z.ZodOptional<z.ZodArray<z.ZodString>>;
1410
1418
  }, z.core.$strip>>>;
1411
1419
  }, z.core.$strip>;
@@ -1479,6 +1487,7 @@ export declare const FlowPayloadFieldSchema: z.ZodObject<{
1479
1487
  pattern: z.ZodString;
1480
1488
  flags: z.ZodOptional<z.ZodString>;
1481
1489
  }, z.core.$strip>>;
1490
+ validationMessage: z.ZodOptional<z.ZodString>;
1482
1491
  options: z.ZodOptional<z.ZodArray<z.ZodString>>;
1483
1492
  }, z.core.$strip>;
1484
1493
 
package/dist/index.js CHANGED
@@ -130,6 +130,7 @@ const He = a.enum([
130
130
  label: a.string().min(1).optional(),
131
131
  description: a.string().optional(),
132
132
  validation: a.object({ pattern: a.string().min(1), flags: a.string().optional() }).optional(),
133
+ validationMessage: a.string().optional(),
133
134
  options: a.array(a.string().min(1)).optional()
134
135
  }), $e = a.object({
135
136
  id: a.string().min(1).describe('Human-readable slug, e.g. "status-changed".'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotbep/core",
3
- "version": "0.2.11",
3
+ "version": "0.2.13",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",