evo360-types 1.3.26 → 1.3.27

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.
@@ -5,14 +5,14 @@ const zod_1 = require("zod");
5
5
  const zod_schemas_1 = require("../../shared/zod-schemas");
6
6
  exports.zDistChannelTypeSchema = zod_schemas_1.zFireDocSchema
7
7
  .extend({
8
- code: zod_1.z.string().min(1).max(10),
8
+ code: zod_1.z.string().min(1).max(20),
9
9
  name: zod_1.z.string().min(1).max(255),
10
10
  tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
11
11
  })
12
12
  .passthrough();
13
13
  exports.zDistChannelSchema = zod_schemas_1.zFireDocSchema
14
14
  .extend({
15
- code: zod_1.z.string().min(1).max(10),
15
+ code: zod_1.z.string().min(1).max(20),
16
16
  name: zod_1.z.string().min(1).max(255),
17
17
  type_code: zod_1.z.string().min(1).max(10),
18
18
  type_name: zod_1.z.string().min(1).max(255),
@@ -38,7 +38,7 @@ exports.zQualificationFunnelLevelSchema = zod_1.z.enum([
38
38
  ]);
39
39
  exports.zQualificationSchema = zod_schemas_1.zFireDocSchema
40
40
  .extend({
41
- code: zod_1.z.string().min(1).max(10),
41
+ code: zod_1.z.string().min(1).max(20),
42
42
  name: zod_1.z.string().min(1).max(255),
43
43
  funnelLevel: exports.zQualificationFunnelLevelSchema,
44
44
  tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
@@ -3,7 +3,7 @@ import { zFireDocSchema, zTagSchema } from "../../shared/zod-schemas";
3
3
 
4
4
  export const zDistChannelTypeSchema = zFireDocSchema
5
5
  .extend({
6
- code: z.string().min(1).max(10),
6
+ code: z.string().min(1).max(20),
7
7
  name: z.string().min(1).max(255),
8
8
  tags: z.array(zTagSchema).nullable().optional(),
9
9
  })
@@ -11,7 +11,7 @@ export const zDistChannelTypeSchema = zFireDocSchema
11
11
 
12
12
  export const zDistChannelSchema = zFireDocSchema
13
13
  .extend({
14
- code: z.string().min(1).max(10),
14
+ code: z.string().min(1).max(20),
15
15
  name: z.string().min(1).max(255),
16
16
  type_code: z.string().min(1).max(10),
17
17
  type_name: z.string().min(1).max(255),
@@ -39,7 +39,7 @@ export const zQualificationFunnelLevelSchema = z.enum([
39
39
 
40
40
  export const zQualificationSchema = zFireDocSchema
41
41
  .extend({
42
- code: z.string().min(1).max(10),
42
+ code: z.string().min(1).max(20),
43
43
  name: z.string().min(1).max(255),
44
44
  funnelLevel: zQualificationFunnelLevelSchema,
45
45
  tags: z.array(zTagSchema).nullable().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.26",
3
+ "version": "1.3.27",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",