evo360-types 1.3.402 → 1.3.403
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.
|
@@ -102,7 +102,7 @@ export declare const zDistChannelSchema: z.ZodObject<{
|
|
|
102
102
|
code: z.ZodString;
|
|
103
103
|
name: z.ZodString;
|
|
104
104
|
type_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
105
|
-
type_name: z.
|
|
105
|
+
type_name: z.ZodString;
|
|
106
106
|
typeRef: z.ZodAny;
|
|
107
107
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
108
108
|
name: z.ZodString;
|
|
@@ -135,7 +135,7 @@ export declare const zDistChannelSchema: z.ZodObject<{
|
|
|
135
135
|
code: z.ZodString;
|
|
136
136
|
name: z.ZodString;
|
|
137
137
|
type_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
138
|
-
type_name: z.
|
|
138
|
+
type_name: z.ZodString;
|
|
139
139
|
typeRef: z.ZodAny;
|
|
140
140
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
141
141
|
name: z.ZodString;
|
|
@@ -168,7 +168,7 @@ export declare const zDistChannelSchema: z.ZodObject<{
|
|
|
168
168
|
code: z.ZodString;
|
|
169
169
|
name: z.ZodString;
|
|
170
170
|
type_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
171
|
-
type_name: z.
|
|
171
|
+
type_name: z.ZodString;
|
|
172
172
|
typeRef: z.ZodAny;
|
|
173
173
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
174
174
|
name: z.ZodString;
|
|
@@ -15,7 +15,7 @@ exports.zDistChannelSchema = zod_schemas_1.zFireDocSchema
|
|
|
15
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(20).nullable().optional(),
|
|
18
|
-
type_name: zod_1.z.string().min(1).max(255)
|
|
18
|
+
type_name: zod_1.z.string().min(1).max(255),
|
|
19
19
|
typeRef: zod_1.z.any(),
|
|
20
20
|
tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
|
|
21
21
|
})
|
|
@@ -14,7 +14,7 @@ export const zDistChannelSchema = zFireDocSchema
|
|
|
14
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(20).nullable().optional(),
|
|
17
|
-
type_name: z.string().min(1).max(255)
|
|
17
|
+
type_name: z.string().min(1).max(255),
|
|
18
18
|
typeRef: z.any(),
|
|
19
19
|
tags: z.array(zTagSchema).nullable().optional(),
|
|
20
20
|
})
|
|
@@ -29,7 +29,7 @@ export interface IDistChannelType extends IFireDoc {
|
|
|
29
29
|
export interface IDistChannel extends IFireDoc {
|
|
30
30
|
code: string;
|
|
31
31
|
name: string;
|
|
32
|
-
type_code?: string;
|
|
32
|
+
type_code?: string | null;
|
|
33
33
|
type_name?: string;
|
|
34
34
|
typeRef?: FirestoreDocumentReference;
|
|
35
35
|
tags?: ITag[] | null;
|
|
@@ -50,7 +50,7 @@ export interface IDistChannelType extends IFireDoc {
|
|
|
50
50
|
export interface IDistChannel extends IFireDoc {
|
|
51
51
|
code: string;
|
|
52
52
|
name: string;
|
|
53
|
-
type_code?: string;
|
|
53
|
+
type_code?: string | null;
|
|
54
54
|
type_name?: string;
|
|
55
55
|
typeRef?: FirestoreDocumentReference;
|
|
56
56
|
tags?: ITag[] | null;
|