@kl1/contracts 1.1.37-uat → 1.1.39-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.
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +12 -1
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +5 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +3 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +7 -1
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -1040,6 +1040,7 @@ var CxLogSchemaWithRelations = DefaultEntitySchema.extend({
|
|
1040
1040
|
firstResponseDate: z25.string(),
|
1041
1041
|
resolutionTime: z25.string().nullable(),
|
1042
1042
|
resolutionDate: z25.string(),
|
1043
|
+
wrapUpDuration: z25.string(),
|
1043
1044
|
slaMeet: z25.string().nullable(),
|
1044
1045
|
evaluateForm: EvaluateFormSchema.nullable(),
|
1045
1046
|
wrapUpForm: WrapUpFormSchema.nullable(),
|
@@ -6524,7 +6525,7 @@ var wrapUpFormContract = initContract34().router(
|
|
6524
6525
|
updateWrapUpFormTimer: {
|
6525
6526
|
method: "PATCH",
|
6526
6527
|
path: "/timer",
|
6527
|
-
body: z92.number(),
|
6528
|
+
body: z92.object({ newWrapUpFormTimer: z92.number().positive() }),
|
6528
6529
|
headers: DefaultHeaderSchema,
|
6529
6530
|
responses: {
|
6530
6531
|
200: DefaultSuccessResponseSchema.extend({
|