@kl1/contracts 1.1.36-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.
- package/dist/index.js +31 -31
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +31 -31
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +119 -119
- package/dist/src/wrap-up-form/index.d.ts +119 -119
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -6506,6 +6506,37 @@ var CreateCXLogWrapUpFormSchema = z91.object({
|
|
6506
6506
|
// src/wrap-up-form/index.ts
|
6507
6507
|
var wrapUpFormContract = initContract34().router(
|
6508
6508
|
{
|
6509
|
+
getWrapUpFormTimer: {
|
6510
|
+
method: "GET",
|
6511
|
+
path: "/timer",
|
6512
|
+
headers: DefaultHeaderSchema,
|
6513
|
+
responses: {
|
6514
|
+
200: DefaultSuccessResponseSchema.extend({
|
6515
|
+
wrapUpFormTimer: z92.number()
|
6516
|
+
}),
|
6517
|
+
400: z92.object({
|
6518
|
+
message: z92.string()
|
6519
|
+
}),
|
6520
|
+
401: DefaultUnauthorizedSchema,
|
6521
|
+
500: DefaultErrorResponseSchema
|
6522
|
+
}
|
6523
|
+
},
|
6524
|
+
updateWrapUpFormTimer: {
|
6525
|
+
method: "PATCH",
|
6526
|
+
path: "/timer",
|
6527
|
+
body: z92.number(),
|
6528
|
+
headers: DefaultHeaderSchema,
|
6529
|
+
responses: {
|
6530
|
+
200: DefaultSuccessResponseSchema.extend({
|
6531
|
+
wrapUpFormTimer: z92.number()
|
6532
|
+
}),
|
6533
|
+
400: z92.object({
|
6534
|
+
message: z92.string()
|
6535
|
+
}),
|
6536
|
+
401: DefaultUnauthorizedSchema,
|
6537
|
+
500: DefaultErrorResponseSchema
|
6538
|
+
}
|
6539
|
+
},
|
6509
6540
|
createWrapUpForm: {
|
6510
6541
|
method: "POST",
|
6511
6542
|
path: "",
|
@@ -6584,37 +6615,6 @@ var wrapUpFormContract = initContract34().router(
|
|
6584
6615
|
500: DefaultErrorResponseSchema
|
6585
6616
|
},
|
6586
6617
|
summary: "Update a wrap up form."
|
6587
|
-
},
|
6588
|
-
getWrapUpFormTimer: {
|
6589
|
-
method: "GET",
|
6590
|
-
path: "/timer",
|
6591
|
-
headers: DefaultHeaderSchema,
|
6592
|
-
responses: {
|
6593
|
-
200: DefaultSuccessResponseSchema.extend({
|
6594
|
-
wrapUpFormTimer: z92.number()
|
6595
|
-
}),
|
6596
|
-
400: z92.object({
|
6597
|
-
message: z92.string()
|
6598
|
-
}),
|
6599
|
-
401: DefaultUnauthorizedSchema,
|
6600
|
-
500: DefaultErrorResponseSchema
|
6601
|
-
}
|
6602
|
-
},
|
6603
|
-
updateWrapUpFormTimer: {
|
6604
|
-
method: "PATCH",
|
6605
|
-
path: "/timer",
|
6606
|
-
body: z92.number(),
|
6607
|
-
headers: DefaultHeaderSchema,
|
6608
|
-
responses: {
|
6609
|
-
200: DefaultSuccessResponseSchema.extend({
|
6610
|
-
wrapUpFormTimer: z92.number()
|
6611
|
-
}),
|
6612
|
-
400: z92.object({
|
6613
|
-
message: z92.string()
|
6614
|
-
}),
|
6615
|
-
401: DefaultUnauthorizedSchema,
|
6616
|
-
500: DefaultErrorResponseSchema
|
6617
|
-
}
|
6618
6618
|
}
|
6619
6619
|
},
|
6620
6620
|
{ pathPrefix: "wrap-up-form" }
|