@kl1/contracts 1.0.23 → 1.0.24
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 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -15
- package/dist/index.mjs.map +1 -1
- package/dist/src/attribute/index.d.ts +42 -0
- package/dist/src/attribute/index.d.ts.map +1 -1
- package/dist/src/auth/index.d.ts +30 -0
- package/dist/src/auth/index.d.ts.map +1 -1
- package/dist/src/base-contract.d.ts +6 -0
- package/dist/src/base-contract.d.ts.map +1 -1
- package/dist/src/category/index.d.ts +36 -0
- package/dist/src/category/index.d.ts.map +1 -1
- package/dist/src/channel/index.d.ts +12 -0
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +91 -3
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +72 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contract.d.ts +801 -388
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +6 -357
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +0 -287
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/dashboard/index.d.ts +136 -28
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +5 -5
- package/dist/src/extension/index.d.ts +36 -0
- package/dist/src/extension/index.d.ts.map +1 -1
- package/dist/src/mail/account-contract.d.ts +42 -0
- package/dist/src/mail/account-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +42 -0
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +10 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/permission/index.d.ts +6 -0
- package/dist/src/permission/index.d.ts.map +1 -1
- package/dist/src/role/index.d.ts +24 -0
- package/dist/src/role/index.d.ts.map +1 -1
- package/dist/src/tag/index.d.ts +24 -0
- package/dist/src/tag/index.d.ts.map +1 -1
- package/dist/src/telephony-agent-presence-status/index.d.ts +24 -0
- package/dist/src/telephony-agent-presence-status/index.d.ts.map +1 -1
- package/dist/src/telephony-extension/index.d.ts +6 -0
- package/dist/src/telephony-extension/index.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +102 -0
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +30 -0
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/index.d.ts +6 -0
- package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
- package/dist/src/widget/index.d.ts +48 -0
- package/dist/src/widget/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +18 -0
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/package.json +4 -10
@@ -249,12 +249,18 @@ export declare const attributeContract: {
|
|
249
249
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
250
250
|
'x-tenant': z.ZodString;
|
251
251
|
authorization: z.ZodString;
|
252
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
253
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
252
254
|
}, "strip", z.ZodTypeAny, {
|
253
255
|
'x-tenant': string;
|
254
256
|
authorization: string;
|
257
|
+
'x-client-timezone': string;
|
258
|
+
'x-code'?: string | undefined;
|
255
259
|
}, {
|
256
260
|
'x-tenant': string;
|
257
261
|
authorization: string;
|
262
|
+
'x-code'?: string | undefined;
|
263
|
+
'x-client-timezone'?: string | undefined;
|
258
264
|
}>>>;
|
259
265
|
};
|
260
266
|
getAttributes: {
|
@@ -461,12 +467,18 @@ export declare const attributeContract: {
|
|
461
467
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
462
468
|
'x-tenant': z.ZodString;
|
463
469
|
authorization: z.ZodString;
|
470
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
471
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
464
472
|
}, "strip", z.ZodTypeAny, {
|
465
473
|
'x-tenant': string;
|
466
474
|
authorization: string;
|
475
|
+
'x-client-timezone': string;
|
476
|
+
'x-code'?: string | undefined;
|
467
477
|
}, {
|
468
478
|
'x-tenant': string;
|
469
479
|
authorization: string;
|
480
|
+
'x-code'?: string | undefined;
|
481
|
+
'x-client-timezone'?: string | undefined;
|
470
482
|
}>>>;
|
471
483
|
};
|
472
484
|
updateAttribute: {
|
@@ -717,12 +729,18 @@ export declare const attributeContract: {
|
|
717
729
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
718
730
|
'x-tenant': z.ZodString;
|
719
731
|
authorization: z.ZodString;
|
732
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
733
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
720
734
|
}, "strip", z.ZodTypeAny, {
|
721
735
|
'x-tenant': string;
|
722
736
|
authorization: string;
|
737
|
+
'x-client-timezone': string;
|
738
|
+
'x-code'?: string | undefined;
|
723
739
|
}, {
|
724
740
|
'x-tenant': string;
|
725
741
|
authorization: string;
|
742
|
+
'x-code'?: string | undefined;
|
743
|
+
'x-client-timezone'?: string | undefined;
|
726
744
|
}>>>;
|
727
745
|
};
|
728
746
|
changeVisibility: {
|
@@ -767,12 +785,18 @@ export declare const attributeContract: {
|
|
767
785
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
768
786
|
'x-tenant': z.ZodString;
|
769
787
|
authorization: z.ZodString;
|
788
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
789
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
770
790
|
}, "strip", z.ZodTypeAny, {
|
771
791
|
'x-tenant': string;
|
772
792
|
authorization: string;
|
793
|
+
'x-client-timezone': string;
|
794
|
+
'x-code'?: string | undefined;
|
773
795
|
}, {
|
774
796
|
'x-tenant': string;
|
775
797
|
authorization: string;
|
798
|
+
'x-code'?: string | undefined;
|
799
|
+
'x-client-timezone'?: string | undefined;
|
776
800
|
}>>>;
|
777
801
|
};
|
778
802
|
changeRequired: {
|
@@ -817,12 +841,18 @@ export declare const attributeContract: {
|
|
817
841
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
818
842
|
'x-tenant': z.ZodString;
|
819
843
|
authorization: z.ZodString;
|
844
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
845
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
820
846
|
}, "strip", z.ZodTypeAny, {
|
821
847
|
'x-tenant': string;
|
822
848
|
authorization: string;
|
849
|
+
'x-client-timezone': string;
|
850
|
+
'x-code'?: string | undefined;
|
823
851
|
}, {
|
824
852
|
'x-tenant': string;
|
825
853
|
authorization: string;
|
854
|
+
'x-code'?: string | undefined;
|
855
|
+
'x-client-timezone'?: string | undefined;
|
826
856
|
}>>>;
|
827
857
|
};
|
828
858
|
updatePosition: {
|
@@ -875,12 +905,18 @@ export declare const attributeContract: {
|
|
875
905
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
876
906
|
'x-tenant': z.ZodString;
|
877
907
|
authorization: z.ZodString;
|
908
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
909
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
878
910
|
}, "strip", z.ZodTypeAny, {
|
879
911
|
'x-tenant': string;
|
880
912
|
authorization: string;
|
913
|
+
'x-client-timezone': string;
|
914
|
+
'x-code'?: string | undefined;
|
881
915
|
}, {
|
882
916
|
'x-tenant': string;
|
883
917
|
authorization: string;
|
918
|
+
'x-code'?: string | undefined;
|
919
|
+
'x-client-timezone'?: string | undefined;
|
884
920
|
}>>>;
|
885
921
|
};
|
886
922
|
deleteAttribute: {
|
@@ -919,12 +955,18 @@ export declare const attributeContract: {
|
|
919
955
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
920
956
|
'x-tenant': z.ZodString;
|
921
957
|
authorization: z.ZodString;
|
958
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
959
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
922
960
|
}, "strip", z.ZodTypeAny, {
|
923
961
|
'x-tenant': string;
|
924
962
|
authorization: string;
|
963
|
+
'x-client-timezone': string;
|
964
|
+
'x-code'?: string | undefined;
|
925
965
|
}, {
|
926
966
|
'x-tenant': string;
|
927
967
|
authorization: string;
|
968
|
+
'x-code'?: string | undefined;
|
969
|
+
'x-client-timezone'?: string | undefined;
|
928
970
|
}>>>;
|
929
971
|
};
|
930
972
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/attribute/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAChE,OAAO,EACL,qBAAqB,EACrB,mBAAmB,EACnB,qBAAqB,EACrB,oBAAoB,EACrB,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAC3E,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AACvE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAC3E,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACzE,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AACxD,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,iBAAiB
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/attribute/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAChE,OAAO,EACL,qBAAqB,EACrB,mBAAmB,EACnB,qBAAqB,EACrB,oBAAoB,EACrB,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAC3E,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AACvE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAC3E,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACzE,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AACxD,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6F7B,CAAC"}
|
package/dist/src/auth/index.d.ts
CHANGED
@@ -53,12 +53,18 @@ export declare const authContract: {
|
|
53
53
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
54
54
|
'x-tenant': z.ZodString;
|
55
55
|
authorization: z.ZodString;
|
56
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
57
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
56
58
|
}, "strip", z.ZodTypeAny, {
|
57
59
|
'x-tenant': string;
|
58
60
|
authorization: string;
|
61
|
+
'x-client-timezone': string;
|
62
|
+
'x-code'?: string | undefined;
|
59
63
|
}, {
|
60
64
|
'x-tenant': string;
|
61
65
|
authorization: string;
|
66
|
+
'x-code'?: string | undefined;
|
67
|
+
'x-client-timezone'?: string | undefined;
|
62
68
|
}>>>;
|
63
69
|
};
|
64
70
|
exchangeToken: {
|
@@ -114,12 +120,18 @@ export declare const authContract: {
|
|
114
120
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
115
121
|
'x-tenant': z.ZodString;
|
116
122
|
authorization: z.ZodString;
|
123
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
124
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
117
125
|
}, "strip", z.ZodTypeAny, {
|
118
126
|
'x-tenant': string;
|
119
127
|
authorization: string;
|
128
|
+
'x-client-timezone': string;
|
129
|
+
'x-code'?: string | undefined;
|
120
130
|
}, {
|
121
131
|
'x-tenant': string;
|
122
132
|
authorization: string;
|
133
|
+
'x-code'?: string | undefined;
|
134
|
+
'x-client-timezone'?: string | undefined;
|
123
135
|
}>>>;
|
124
136
|
};
|
125
137
|
logout: {
|
@@ -172,12 +184,18 @@ export declare const authContract: {
|
|
172
184
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
173
185
|
'x-tenant': z.ZodString;
|
174
186
|
authorization: z.ZodString;
|
187
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
188
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
175
189
|
}, "strip", z.ZodTypeAny, {
|
176
190
|
'x-tenant': string;
|
177
191
|
authorization: string;
|
192
|
+
'x-client-timezone': string;
|
193
|
+
'x-code'?: string | undefined;
|
178
194
|
}, {
|
179
195
|
'x-tenant': string;
|
180
196
|
authorization: string;
|
197
|
+
'x-code'?: string | undefined;
|
198
|
+
'x-client-timezone'?: string | undefined;
|
181
199
|
}>>>;
|
182
200
|
};
|
183
201
|
me: {
|
@@ -511,12 +529,18 @@ export declare const authContract: {
|
|
511
529
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
512
530
|
'x-tenant': z.ZodString;
|
513
531
|
authorization: z.ZodString;
|
532
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
533
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
514
534
|
}, "strip", z.ZodTypeAny, {
|
515
535
|
'x-tenant': string;
|
516
536
|
authorization: string;
|
537
|
+
'x-client-timezone': string;
|
538
|
+
'x-code'?: string | undefined;
|
517
539
|
}, {
|
518
540
|
'x-tenant': string;
|
519
541
|
authorization: string;
|
542
|
+
'x-code'?: string | undefined;
|
543
|
+
'x-client-timezone'?: string | undefined;
|
520
544
|
}>>>;
|
521
545
|
};
|
522
546
|
getAuthUserRole: {
|
@@ -546,12 +570,18 @@ export declare const authContract: {
|
|
546
570
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
547
571
|
'x-tenant': z.ZodString;
|
548
572
|
authorization: z.ZodString;
|
573
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
574
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
549
575
|
}, "strip", z.ZodTypeAny, {
|
550
576
|
'x-tenant': string;
|
551
577
|
authorization: string;
|
578
|
+
'x-client-timezone': string;
|
579
|
+
'x-code'?: string | undefined;
|
552
580
|
}, {
|
553
581
|
'x-tenant': string;
|
554
582
|
authorization: string;
|
583
|
+
'x-code'?: string | undefined;
|
584
|
+
'x-client-timezone'?: string | undefined;
|
555
585
|
}>>>;
|
556
586
|
};
|
557
587
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/auth/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAUxB,eAAO,MAAM,YAAY
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/auth/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAUxB,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkFxB,CAAC"}
|
@@ -2,12 +2,18 @@ import z from 'zod';
|
|
2
2
|
export declare const DefaultHeaderSchema: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
3
3
|
'x-tenant': z.ZodString;
|
4
4
|
authorization: z.ZodString;
|
5
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
6
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
5
7
|
}, "strip", z.ZodTypeAny, {
|
6
8
|
'x-tenant': string;
|
7
9
|
authorization: string;
|
10
|
+
'x-client-timezone': string;
|
11
|
+
'x-code'?: string | undefined;
|
8
12
|
}, {
|
9
13
|
'x-tenant': string;
|
10
14
|
authorization: string;
|
15
|
+
'x-code'?: string | undefined;
|
16
|
+
'x-client-timezone'?: string | undefined;
|
11
17
|
}>>>;
|
12
18
|
export declare const DefaultEntitySchema: z.ZodObject<{
|
13
19
|
id: z.ZodString;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"base-contract.d.ts","sourceRoot":"","sources":["../../src/base-contract.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,mBAAmB
|
1
|
+
{"version":3,"file":"base-contract.d.ts","sourceRoot":"","sources":["../../src/base-contract.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;IASnB,CAAC;AAGd,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;EAK9B,CAAC;AAIH,eAAO,MAAM,wBAAwB;;;;;;;;;EAGnC,CAAC;AAIH,eAAO,MAAM,4BAA4B;;;;;;EAEvC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;EAGrC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;EAA6B,CAAC;AAEhE,eAAO,MAAM,0BAA0B;;;;;;;;;EAA6B,CAAC;AAErE,eAAO,MAAM,yBAAyB;;;;;;;;;EAA6B,CAAC;AACpE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI5B,CAAC"}
|
@@ -190,12 +190,18 @@ export declare const categoryContract: {
|
|
190
190
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
191
191
|
'x-tenant': z.ZodString;
|
192
192
|
authorization: z.ZodString;
|
193
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
194
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
193
195
|
}, "strip", z.ZodTypeAny, {
|
194
196
|
'x-tenant': string;
|
195
197
|
authorization: string;
|
198
|
+
'x-client-timezone': string;
|
199
|
+
'x-code'?: string | undefined;
|
196
200
|
}, {
|
197
201
|
'x-tenant': string;
|
198
202
|
authorization: string;
|
203
|
+
'x-code'?: string | undefined;
|
204
|
+
'x-client-timezone'?: string | undefined;
|
199
205
|
}>>>;
|
200
206
|
};
|
201
207
|
getCategories: {
|
@@ -329,12 +335,18 @@ export declare const categoryContract: {
|
|
329
335
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
330
336
|
'x-tenant': z.ZodString;
|
331
337
|
authorization: z.ZodString;
|
338
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
339
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
332
340
|
}, "strip", z.ZodTypeAny, {
|
333
341
|
'x-tenant': string;
|
334
342
|
authorization: string;
|
343
|
+
'x-client-timezone': string;
|
344
|
+
'x-code'?: string | undefined;
|
335
345
|
}, {
|
336
346
|
'x-tenant': string;
|
337
347
|
authorization: string;
|
348
|
+
'x-code'?: string | undefined;
|
349
|
+
'x-client-timezone'?: string | undefined;
|
338
350
|
}>>>;
|
339
351
|
};
|
340
352
|
updateCategory: {
|
@@ -520,12 +532,18 @@ export declare const categoryContract: {
|
|
520
532
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
521
533
|
'x-tenant': z.ZodString;
|
522
534
|
authorization: z.ZodString;
|
535
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
536
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
523
537
|
}, "strip", z.ZodTypeAny, {
|
524
538
|
'x-tenant': string;
|
525
539
|
authorization: string;
|
540
|
+
'x-client-timezone': string;
|
541
|
+
'x-code'?: string | undefined;
|
526
542
|
}, {
|
527
543
|
'x-tenant': string;
|
528
544
|
authorization: string;
|
545
|
+
'x-code'?: string | undefined;
|
546
|
+
'x-client-timezone'?: string | undefined;
|
529
547
|
}>>>;
|
530
548
|
};
|
531
549
|
deleteCategory: {
|
@@ -564,12 +582,18 @@ export declare const categoryContract: {
|
|
564
582
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
565
583
|
'x-tenant': z.ZodString;
|
566
584
|
authorization: z.ZodString;
|
585
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
586
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
567
587
|
}, "strip", z.ZodTypeAny, {
|
568
588
|
'x-tenant': string;
|
569
589
|
authorization: string;
|
590
|
+
'x-client-timezone': string;
|
591
|
+
'x-code'?: string | undefined;
|
570
592
|
}, {
|
571
593
|
'x-tenant': string;
|
572
594
|
authorization: string;
|
595
|
+
'x-code'?: string | undefined;
|
596
|
+
'x-client-timezone'?: string | undefined;
|
573
597
|
}>>>;
|
574
598
|
};
|
575
599
|
createCategoryLevel: {
|
@@ -630,12 +654,18 @@ export declare const categoryContract: {
|
|
630
654
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
631
655
|
'x-tenant': z.ZodString;
|
632
656
|
authorization: z.ZodString;
|
657
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
658
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
633
659
|
}, "strip", z.ZodTypeAny, {
|
634
660
|
'x-tenant': string;
|
635
661
|
authorization: string;
|
662
|
+
'x-client-timezone': string;
|
663
|
+
'x-code'?: string | undefined;
|
636
664
|
}, {
|
637
665
|
'x-tenant': string;
|
638
666
|
authorization: string;
|
667
|
+
'x-code'?: string | undefined;
|
668
|
+
'x-client-timezone'?: string | undefined;
|
639
669
|
}>>>;
|
640
670
|
};
|
641
671
|
getCategoryLevels: {
|
@@ -749,12 +779,18 @@ export declare const categoryContract: {
|
|
749
779
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
750
780
|
'x-tenant': z.ZodString;
|
751
781
|
authorization: z.ZodString;
|
782
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
783
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
752
784
|
}, "strip", z.ZodTypeAny, {
|
753
785
|
'x-tenant': string;
|
754
786
|
authorization: string;
|
787
|
+
'x-client-timezone': string;
|
788
|
+
'x-code'?: string | undefined;
|
755
789
|
}, {
|
756
790
|
'x-tenant': string;
|
757
791
|
authorization: string;
|
792
|
+
'x-code'?: string | undefined;
|
793
|
+
'x-client-timezone'?: string | undefined;
|
758
794
|
}>>>;
|
759
795
|
};
|
760
796
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/category/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAOpB,OAAO,EAAE,yBAAyB,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AACrE,OAAO,EACL,yBAAyB,EACzB,oBAAoB,EACpB,yBAAyB,EACzB,oBAAoB,EACrB,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACzE,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACzE,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AACtD,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAEtE,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,yBAAyB,CACjC,CAAC;AACF,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,yBAAyB,CACjC,CAAC;AAEF,eAAO,MAAM,gBAAgB
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/category/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAOpB,OAAO,EAAE,yBAAyB,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AACrE,OAAO,EACL,yBAAyB,EACzB,oBAAoB,EACpB,yBAAyB,EACzB,oBAAoB,EACrB,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACzE,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACzE,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AACtD,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAEtE,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,yBAAyB,CACjC,CAAC;AACF,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,yBAAyB,CACjC,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6F5B,CAAC"}
|
@@ -842,12 +842,18 @@ export declare const channelContract: {
|
|
842
842
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
843
843
|
'x-tenant': z.ZodString;
|
844
844
|
authorization: z.ZodString;
|
845
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
846
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
845
847
|
}, "strip", z.ZodTypeAny, {
|
846
848
|
'x-tenant': string;
|
847
849
|
authorization: string;
|
850
|
+
'x-client-timezone': string;
|
851
|
+
'x-code'?: string | undefined;
|
848
852
|
}, {
|
849
853
|
'x-tenant': string;
|
850
854
|
authorization: string;
|
855
|
+
'x-code'?: string | undefined;
|
856
|
+
'x-client-timezone'?: string | undefined;
|
851
857
|
}>>>;
|
852
858
|
};
|
853
859
|
getChannels: {
|
@@ -1345,12 +1351,18 @@ export declare const channelContract: {
|
|
1345
1351
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
1346
1352
|
'x-tenant': z.ZodString;
|
1347
1353
|
authorization: z.ZodString;
|
1354
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
1355
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
1348
1356
|
}, "strip", z.ZodTypeAny, {
|
1349
1357
|
'x-tenant': string;
|
1350
1358
|
authorization: string;
|
1359
|
+
'x-client-timezone': string;
|
1360
|
+
'x-code'?: string | undefined;
|
1351
1361
|
}, {
|
1352
1362
|
'x-tenant': string;
|
1353
1363
|
authorization: string;
|
1364
|
+
'x-code'?: string | undefined;
|
1365
|
+
'x-client-timezone'?: string | undefined;
|
1354
1366
|
}>>>;
|
1355
1367
|
};
|
1356
1368
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/channel/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAOpB,OAAO,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAEpD,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAE1E,eAAO,MAAM,eAAe
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/channel/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAOpB,OAAO,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAEpD,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAE1E,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6B3B,CAAC"}
|