@kl1/contracts 1.1.30 → 1.1.31
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 +19 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +60 -3
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/contract2.d.ts +2 -0
- package/dist/src/contract2.d.ts.map +1 -0
- package/dist/src/cx-log/index.d.ts +58 -1
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +0 -3
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/messenger/validation.d.ts +0 -3
- package/dist/src/messenger/validation.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +3 -0
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/validation.d.ts +3 -0
- package/dist/src/ticket/validation.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -25956,6 +25956,63 @@ export declare const apiContract: {
|
|
25956
25956
|
'x-client-timezone'?: string | undefined;
|
25957
25957
|
}>>>;
|
25958
25958
|
};
|
25959
|
+
updateSla: {
|
25960
|
+
body: import("zod").ZodObject<{
|
25961
|
+
roomId: import("zod").ZodString;
|
25962
|
+
slaStatus: import("zod").ZodEnum<["meet", "unmeet", "-"]>;
|
25963
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25964
|
+
roomId: string;
|
25965
|
+
slaStatus: "meet" | "unmeet" | "-";
|
25966
|
+
}, {
|
25967
|
+
roomId: string;
|
25968
|
+
slaStatus: "meet" | "unmeet" | "-";
|
25969
|
+
}>;
|
25970
|
+
method: "POST";
|
25971
|
+
responses: {
|
25972
|
+
200: null;
|
25973
|
+
403: import("zod").ZodObject<{
|
25974
|
+
message: import("zod").ZodString;
|
25975
|
+
error: import("zod").ZodAny;
|
25976
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25977
|
+
message: string;
|
25978
|
+
error?: any;
|
25979
|
+
}, {
|
25980
|
+
message: string;
|
25981
|
+
error?: any;
|
25982
|
+
}>;
|
25983
|
+
404: import("zod").ZodObject<{
|
25984
|
+
message: import("zod").ZodString;
|
25985
|
+
error: import("zod").ZodAny;
|
25986
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25987
|
+
message: string;
|
25988
|
+
error?: any;
|
25989
|
+
}, {
|
25990
|
+
message: string;
|
25991
|
+
error?: any;
|
25992
|
+
}>;
|
25993
|
+
500: import("zod").ZodObject<{
|
25994
|
+
message: import("zod").ZodString;
|
25995
|
+
error: import("zod").ZodAny;
|
25996
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25997
|
+
message: string;
|
25998
|
+
error?: any;
|
25999
|
+
}, {
|
26000
|
+
message: string;
|
26001
|
+
error?: any;
|
26002
|
+
}>;
|
26003
|
+
};
|
26004
|
+
path: "/cx-logs";
|
26005
|
+
headers: import("zod").ZodObject<{
|
26006
|
+
'x-tenant': import("zod").ZodString;
|
26007
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
26008
|
+
}, "strip", import("zod").ZodTypeAny, {
|
26009
|
+
'x-tenant': string;
|
26010
|
+
'x-code'?: string | undefined;
|
26011
|
+
}, {
|
26012
|
+
'x-tenant': string;
|
26013
|
+
'x-code'?: string | undefined;
|
26014
|
+
}>;
|
26015
|
+
};
|
25959
26016
|
};
|
25960
26017
|
dashboard: {
|
25961
26018
|
getDashboardData: {
|
@@ -74460,6 +74517,7 @@ export declare const ticketContract: {
|
|
74460
74517
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
74461
74518
|
status: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
74462
74519
|
priority: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
74520
|
+
assignee: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
74463
74521
|
channel: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
74464
74522
|
type: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
74465
74523
|
ticketType: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
@@ -74487,6 +74545,7 @@ export declare const ticketContract: {
|
|
74487
74545
|
description?: string | undefined;
|
74488
74546
|
status?: string[] | undefined;
|
74489
74547
|
priority?: string[] | undefined;
|
74548
|
+
assignee?: string[] | undefined;
|
74490
74549
|
channel?: string[] | undefined;
|
74491
74550
|
type?: string[] | undefined;
|
74492
74551
|
ticketType?: string[] | undefined;
|
@@ -74506,6 +74565,7 @@ export declare const ticketContract: {
|
|
74506
74565
|
description?: string | undefined;
|
74507
74566
|
status?: string[] | undefined;
|
74508
74567
|
priority?: string[] | undefined;
|
74568
|
+
assignee?: string[] | undefined;
|
74509
74569
|
channel?: string[] | undefined;
|
74510
74570
|
type?: string[] | undefined;
|
74511
74571
|
ticketType?: string[] | undefined;
|
@@ -108827,13 +108887,10 @@ export declare const platformContract: {
|
|
108827
108887
|
};
|
108828
108888
|
setBotPersistentMenu: {
|
108829
108889
|
body: import("zod").ZodObject<{
|
108830
|
-
psid: import("zod").ZodString;
|
108831
108890
|
pageAccessToken: import("zod").ZodString;
|
108832
108891
|
}, "strip", import("zod").ZodTypeAny, {
|
108833
|
-
psid: string;
|
108834
108892
|
pageAccessToken: string;
|
108835
108893
|
}, {
|
108836
|
-
psid: string;
|
108837
108894
|
pageAccessToken: string;
|
108838
108895
|
}>;
|
108839
108896
|
method: "POST";
|