@kl1/contracts 1.1.35-uat → 1.1.37-uat

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.
@@ -128,7 +128,7 @@ export declare const WrapUpFormSchema: z.ZodObject<{
128
128
  }>, "many">;
129
129
  callFrom: z.ZodNullable<z.ZodString>;
130
130
  callTo: z.ZodNullable<z.ZodString>;
131
- customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
131
+ customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
132
132
  id: z.ZodString;
133
133
  createdAt: z.ZodDate;
134
134
  updatedAt: z.ZodDate;
@@ -161,7 +161,7 @@ export declare const WrapUpFormSchema: z.ZodObject<{
161
161
  booleanValue: boolean | null;
162
162
  numberValue: number | null;
163
163
  dateValue: Date | null;
164
- }>, "many">>;
164
+ }>, "many">>>;
165
165
  }, "strip", z.ZodTypeAny, {
166
166
  type: string;
167
167
  id: string;
@@ -212,7 +212,7 @@ export declare const WrapUpFormSchema: z.ZodObject<{
212
212
  booleanValue: boolean | null;
213
213
  numberValue: number | null;
214
214
  dateValue: Date | null;
215
- }[] | undefined;
215
+ }[] | null | undefined;
216
216
  }, {
217
217
  type: string;
218
218
  id: string;
@@ -263,6 +263,6 @@ export declare const WrapUpFormSchema: z.ZodObject<{
263
263
  booleanValue: boolean | null;
264
264
  numberValue: number | null;
265
265
  dateValue: Date | null;
266
- }[] | undefined;
266
+ }[] | null | undefined;
267
267
  }>;
268
268
  //# sourceMappingURL=schema.d.ts.map
@@ -36,6 +36,7 @@ export declare const UpdateWrapUpFormSchema: z.ZodObject<{
36
36
  id: string;
37
37
  value: string;
38
38
  }>, "many">>;
39
+ durationSeconds: z.ZodOptional<z.ZodNumber>;
39
40
  }, "strip", z.ZodTypeAny, {
40
41
  disposition?: string | null | undefined;
41
42
  callFrom?: string | null | undefined;
@@ -49,6 +50,7 @@ export declare const UpdateWrapUpFormSchema: z.ZodObject<{
49
50
  id: string;
50
51
  value: string;
51
52
  }[] | undefined;
53
+ durationSeconds?: number | undefined;
52
54
  }, {
53
55
  disposition?: string | null | undefined;
54
56
  callFrom?: string | null | undefined;
@@ -62,6 +64,7 @@ export declare const UpdateWrapUpFormSchema: z.ZodObject<{
62
64
  id: string;
63
65
  value: string;
64
66
  }[] | undefined;
67
+ durationSeconds?: number | undefined;
65
68
  }>;
66
69
  export declare const CreateCXLogWrapUpFormSchema: z.ZodObject<{
67
70
  cxLogId: z.ZodString;
@@ -1 +1 @@
1
- {"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/wrap-up-form/validation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;EAKjC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAajC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;EAKtC,CAAC"}
1
+ {"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/wrap-up-form/validation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;EAKjC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAcjC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;EAKtC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kl1/contracts",
3
- "version": "1.1.35-uat",
3
+ "version": "1.1.37-uat",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/src/index.d.ts",