@kl1/contracts 1.1.49-uat → 1.1.51-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 +50 -29
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +48 -29
- package/dist/index.mjs.map +1 -1
- package/dist/src/comment/index.d.ts +4 -4
- package/dist/src/company/index.d.ts +5 -5
- package/dist/src/contact/index.d.ts +13 -13
- package/dist/src/contract.d.ts +7350 -188
- 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/dashboard/index.d.ts +75 -86
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +10 -53
- package/dist/src/dashboard/schema.d.ts.map +1 -1
- package/dist/src/dashboard/validation.d.ts +13 -0
- package/dist/src/dashboard/validation.d.ts.map +1 -1
- package/dist/src/mail/account-contract.d.ts +8 -8
- package/dist/src/mail/mail-contract.d.ts +28 -28
- package/dist/src/mail/mail-server-contract.d.ts +5 -5
- package/dist/src/mail/message-contract.d.ts +6 -6
- package/dist/src/mail/room-contract.d.ts +9 -9
- package/dist/src/ticket/index.d.ts +19 -19
- package/package.json +1 -1
@@ -46,7 +46,7 @@ export declare const mailContract: {
|
|
46
46
|
requestId: string;
|
47
47
|
}>;
|
48
48
|
};
|
49
|
-
path: "mail/room/";
|
49
|
+
path: "email-service/mail/room/";
|
50
50
|
};
|
51
51
|
getAll: {
|
52
52
|
summary: "Get mail rooms";
|
@@ -9502,7 +9502,7 @@ export declare const mailContract: {
|
|
9502
9502
|
requestId: string;
|
9503
9503
|
}>;
|
9504
9504
|
};
|
9505
|
-
path: "mail/room";
|
9505
|
+
path: "email-service/mail/room";
|
9506
9506
|
};
|
9507
9507
|
getRoomCounts: {
|
9508
9508
|
summary: "Get unread message counts for filter like \"open\", \"close\", \"inbox\" and etc...";
|
@@ -9946,7 +9946,7 @@ export declare const mailContract: {
|
|
9946
9946
|
requestId: string;
|
9947
9947
|
}>;
|
9948
9948
|
};
|
9949
|
-
path: "mail/room/count_rooms/all";
|
9949
|
+
path: "email-service/mail/room/count_rooms/all";
|
9950
9950
|
};
|
9951
9951
|
getAttachments: {
|
9952
9952
|
summary: "Get all the attachments of a room";
|
@@ -10117,7 +10117,7 @@ export declare const mailContract: {
|
|
10117
10117
|
requestId: string;
|
10118
10118
|
}>;
|
10119
10119
|
};
|
10120
|
-
path: "mail/room/:id/attachments";
|
10120
|
+
path: "email-service/mail/room/:id/attachments";
|
10121
10121
|
};
|
10122
10122
|
getParticipants: {
|
10123
10123
|
summary: "Get all the attachments of a room";
|
@@ -10385,7 +10385,7 @@ export declare const mailContract: {
|
|
10385
10385
|
requestId: string;
|
10386
10386
|
}>;
|
10387
10387
|
};
|
10388
|
-
path: "mail/room/:id/participants";
|
10388
|
+
path: "email-service/mail/room/:id/participants";
|
10389
10389
|
};
|
10390
10390
|
addNewEmailToContact: {
|
10391
10391
|
body: import("zod").ZodObject<{
|
@@ -10445,7 +10445,7 @@ export declare const mailContract: {
|
|
10445
10445
|
requestId: string;
|
10446
10446
|
}>;
|
10447
10447
|
};
|
10448
|
-
path: "mail/room/add_email_to_contact";
|
10448
|
+
path: "email-service/mail/room/add_email_to_contact";
|
10449
10449
|
};
|
10450
10450
|
update: {
|
10451
10451
|
body: import("zod").ZodObject<{
|
@@ -19872,7 +19872,7 @@ export declare const mailContract: {
|
|
19872
19872
|
requestId: string;
|
19873
19873
|
}>;
|
19874
19874
|
};
|
19875
|
-
path: "mail/room/:id";
|
19875
|
+
path: "email-service/mail/room/:id";
|
19876
19876
|
};
|
19877
19877
|
markAsRead: {
|
19878
19878
|
body: import("zod").ZodObject<{
|
@@ -19926,7 +19926,7 @@ export declare const mailContract: {
|
|
19926
19926
|
requestId: string;
|
19927
19927
|
}>;
|
19928
19928
|
};
|
19929
|
-
path: "mail/room/mark_as_read";
|
19929
|
+
path: "email-service/mail/room/mark_as_read";
|
19930
19930
|
};
|
19931
19931
|
getById: {
|
19932
19932
|
summary: "Get a mail room by id";
|
@@ -29331,7 +29331,7 @@ export declare const mailContract: {
|
|
29331
29331
|
requestId: string;
|
29332
29332
|
}>;
|
29333
29333
|
};
|
29334
|
-
path: "mail/room/:id";
|
29334
|
+
path: "email-service/mail/room/:id";
|
29335
29335
|
};
|
29336
29336
|
};
|
29337
29337
|
message: {
|
@@ -29559,7 +29559,7 @@ export declare const mailContract: {
|
|
29559
29559
|
requestId: string;
|
29560
29560
|
}>;
|
29561
29561
|
};
|
29562
|
-
path: "mail/message/submit";
|
29562
|
+
path: "email-service/mail/message/submit";
|
29563
29563
|
};
|
29564
29564
|
getTotalUnreadMessageCount: {
|
29565
29565
|
summary: "Get total unread messages counts";
|
@@ -29616,7 +29616,7 @@ export declare const mailContract: {
|
|
29616
29616
|
requestId: string;
|
29617
29617
|
}>;
|
29618
29618
|
};
|
29619
|
-
path: "mail/message/new_message_count";
|
29619
|
+
path: "email-service/mail/message/new_message_count";
|
29620
29620
|
};
|
29621
29621
|
getById: {
|
29622
29622
|
summary: "Get a message";
|
@@ -31074,7 +31074,7 @@ export declare const mailContract: {
|
|
31074
31074
|
requestId: string;
|
31075
31075
|
}>;
|
31076
31076
|
};
|
31077
|
-
path: "mail/message/:id";
|
31077
|
+
path: "email-service/mail/message/:id";
|
31078
31078
|
};
|
31079
31079
|
update: {
|
31080
31080
|
body: import("zod").ZodObject<{
|
@@ -33601,7 +33601,7 @@ export declare const mailContract: {
|
|
33601
33601
|
requestId: string;
|
33602
33602
|
}>;
|
33603
33603
|
};
|
33604
|
-
path: "mail/message/:id";
|
33604
|
+
path: "email-service/mail/message/:id";
|
33605
33605
|
};
|
33606
33606
|
delete: {
|
33607
33607
|
body: null;
|
@@ -35060,7 +35060,7 @@ export declare const mailContract: {
|
|
35060
35060
|
requestId: string;
|
35061
35061
|
}>;
|
35062
35062
|
};
|
35063
|
-
path: "mail/message/:id";
|
35063
|
+
path: "email-service/mail/message/:id";
|
35064
35064
|
};
|
35065
35065
|
cancelScheduledMessage: {
|
35066
35066
|
body: null;
|
@@ -36519,7 +36519,7 @@ export declare const mailContract: {
|
|
36519
36519
|
requestId: string;
|
36520
36520
|
}>;
|
36521
36521
|
};
|
36522
|
-
path: "mail/message/scheduled_message/:id";
|
36522
|
+
path: "email-service/mail/message/scheduled_message/:id";
|
36523
36523
|
};
|
36524
36524
|
};
|
36525
36525
|
account: {
|
@@ -36758,7 +36758,7 @@ export declare const mailContract: {
|
|
36758
36758
|
message: string;
|
36759
36759
|
}>;
|
36760
36760
|
};
|
36761
|
-
path: "mail/account";
|
36761
|
+
path: "email-service/mail/account";
|
36762
36762
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
36763
36763
|
'x-tenant': import("zod").ZodString;
|
36764
36764
|
authorization: import("zod").ZodString;
|
@@ -36821,7 +36821,7 @@ export declare const mailContract: {
|
|
36821
36821
|
requestId: string;
|
36822
36822
|
}>;
|
36823
36823
|
};
|
36824
|
-
path: "mail/account/sync";
|
36824
|
+
path: "email-service/mail/account/sync";
|
36825
36825
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
36826
36826
|
'x-tenant': import("zod").ZodString;
|
36827
36827
|
authorization: import("zod").ZodString;
|
@@ -37044,7 +37044,7 @@ export declare const mailContract: {
|
|
37044
37044
|
requestId: string;
|
37045
37045
|
}>;
|
37046
37046
|
};
|
37047
|
-
path: "mail/account/:id";
|
37047
|
+
path: "email-service/mail/account/:id";
|
37048
37048
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
37049
37049
|
'x-tenant': import("zod").ZodString;
|
37050
37050
|
authorization: import("zod").ZodString;
|
@@ -37270,7 +37270,7 @@ export declare const mailContract: {
|
|
37270
37270
|
requestId: string;
|
37271
37271
|
}>;
|
37272
37272
|
};
|
37273
|
-
path: "mail/account";
|
37273
|
+
path: "email-service/mail/account";
|
37274
37274
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
37275
37275
|
'x-tenant': import("zod").ZodString;
|
37276
37276
|
authorization: import("zod").ZodString;
|
@@ -37597,7 +37597,7 @@ export declare const mailContract: {
|
|
37597
37597
|
requestId: string;
|
37598
37598
|
}>;
|
37599
37599
|
};
|
37600
|
-
path: "mail/account/:id";
|
37600
|
+
path: "email-service/mail/account/:id";
|
37601
37601
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
37602
37602
|
'x-tenant': import("zod").ZodString;
|
37603
37603
|
authorization: import("zod").ZodString;
|
@@ -37821,7 +37821,7 @@ export declare const mailContract: {
|
|
37821
37821
|
requestId: string;
|
37822
37822
|
}>;
|
37823
37823
|
};
|
37824
|
-
path: "mail/account/:id/disconnect";
|
37824
|
+
path: "email-service/mail/account/:id/disconnect";
|
37825
37825
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
37826
37826
|
'x-tenant': import("zod").ZodString;
|
37827
37827
|
authorization: import("zod").ZodString;
|
@@ -38045,7 +38045,7 @@ export declare const mailContract: {
|
|
38045
38045
|
requestId: string;
|
38046
38046
|
}>;
|
38047
38047
|
};
|
38048
|
-
path: "mail/account/:id/reconnect";
|
38048
|
+
path: "email-service/mail/account/:id/reconnect";
|
38049
38049
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
38050
38050
|
'x-tenant': import("zod").ZodString;
|
38051
38051
|
authorization: import("zod").ZodString;
|
@@ -38116,7 +38116,7 @@ export declare const mailContract: {
|
|
38116
38116
|
requestId: string;
|
38117
38117
|
}>;
|
38118
38118
|
};
|
38119
|
-
path: "mail/account/:id";
|
38119
|
+
path: "email-service/mail/account/:id";
|
38120
38120
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
38121
38121
|
'x-tenant': import("zod").ZodString;
|
38122
38122
|
authorization: import("zod").ZodString;
|
@@ -38282,7 +38282,7 @@ export declare const mailContract: {
|
|
38282
38282
|
requestId: string;
|
38283
38283
|
}>;
|
38284
38284
|
};
|
38285
|
-
path: "mail/server/";
|
38285
|
+
path: "email-service/mail/server/";
|
38286
38286
|
};
|
38287
38287
|
getById: {
|
38288
38288
|
summary: "Get a mail server by id";
|
@@ -38406,7 +38406,7 @@ export declare const mailContract: {
|
|
38406
38406
|
requestId: string;
|
38407
38407
|
}>;
|
38408
38408
|
};
|
38409
|
-
path: "mail/server/:id";
|
38409
|
+
path: "email-service/mail/server/:id";
|
38410
38410
|
};
|
38411
38411
|
getAll: {
|
38412
38412
|
summary: "Get all mail servers";
|
@@ -38523,7 +38523,7 @@ export declare const mailContract: {
|
|
38523
38523
|
requestId: string;
|
38524
38524
|
}>;
|
38525
38525
|
};
|
38526
|
-
path: "mail/server/";
|
38526
|
+
path: "email-service/mail/server/";
|
38527
38527
|
};
|
38528
38528
|
update: {
|
38529
38529
|
body: import("zod").ZodObject<{
|
@@ -38678,7 +38678,7 @@ export declare const mailContract: {
|
|
38678
38678
|
requestId: string;
|
38679
38679
|
}>;
|
38680
38680
|
};
|
38681
|
-
path: "mail/server/:id";
|
38681
|
+
path: "email-service/mail/server/:id";
|
38682
38682
|
};
|
38683
38683
|
delete: {
|
38684
38684
|
body: null;
|
@@ -38803,7 +38803,7 @@ export declare const mailContract: {
|
|
38803
38803
|
requestId: string;
|
38804
38804
|
}>;
|
38805
38805
|
};
|
38806
|
-
path: "mail/server/:id";
|
38806
|
+
path: "email-service/mail/server/:id";
|
38807
38807
|
};
|
38808
38808
|
};
|
38809
38809
|
};
|
@@ -148,7 +148,7 @@ export declare const serverContract: {
|
|
148
148
|
requestId: string;
|
149
149
|
}>;
|
150
150
|
};
|
151
|
-
path: "mail/server/";
|
151
|
+
path: "email-service/mail/server/";
|
152
152
|
};
|
153
153
|
getById: {
|
154
154
|
summary: "Get a mail server by id";
|
@@ -272,7 +272,7 @@ export declare const serverContract: {
|
|
272
272
|
requestId: string;
|
273
273
|
}>;
|
274
274
|
};
|
275
|
-
path: "mail/server/:id";
|
275
|
+
path: "email-service/mail/server/:id";
|
276
276
|
};
|
277
277
|
getAll: {
|
278
278
|
summary: "Get all mail servers";
|
@@ -389,7 +389,7 @@ export declare const serverContract: {
|
|
389
389
|
requestId: string;
|
390
390
|
}>;
|
391
391
|
};
|
392
|
-
path: "mail/server/";
|
392
|
+
path: "email-service/mail/server/";
|
393
393
|
};
|
394
394
|
update: {
|
395
395
|
body: z.ZodObject<{
|
@@ -544,7 +544,7 @@ export declare const serverContract: {
|
|
544
544
|
requestId: string;
|
545
545
|
}>;
|
546
546
|
};
|
547
|
-
path: "mail/server/:id";
|
547
|
+
path: "email-service/mail/server/:id";
|
548
548
|
};
|
549
549
|
delete: {
|
550
550
|
body: null;
|
@@ -669,7 +669,7 @@ export declare const serverContract: {
|
|
669
669
|
requestId: string;
|
670
670
|
}>;
|
671
671
|
};
|
672
|
-
path: "mail/server/:id";
|
672
|
+
path: "email-service/mail/server/:id";
|
673
673
|
};
|
674
674
|
};
|
675
675
|
//# sourceMappingURL=mail-server-contract.d.ts.map
|
@@ -226,7 +226,7 @@ export declare const messageContract: {
|
|
226
226
|
requestId: string;
|
227
227
|
}>;
|
228
228
|
};
|
229
|
-
path: "mail/message/submit";
|
229
|
+
path: "email-service/mail/message/submit";
|
230
230
|
};
|
231
231
|
getTotalUnreadMessageCount: {
|
232
232
|
summary: "Get total unread messages counts";
|
@@ -283,7 +283,7 @@ export declare const messageContract: {
|
|
283
283
|
requestId: string;
|
284
284
|
}>;
|
285
285
|
};
|
286
|
-
path: "mail/message/new_message_count";
|
286
|
+
path: "email-service/mail/message/new_message_count";
|
287
287
|
};
|
288
288
|
getById: {
|
289
289
|
summary: "Get a message";
|
@@ -1741,7 +1741,7 @@ export declare const messageContract: {
|
|
1741
1741
|
requestId: string;
|
1742
1742
|
}>;
|
1743
1743
|
};
|
1744
|
-
path: "mail/message/:id";
|
1744
|
+
path: "email-service/mail/message/:id";
|
1745
1745
|
};
|
1746
1746
|
update: {
|
1747
1747
|
body: z.ZodObject<{
|
@@ -4268,7 +4268,7 @@ export declare const messageContract: {
|
|
4268
4268
|
requestId: string;
|
4269
4269
|
}>;
|
4270
4270
|
};
|
4271
|
-
path: "mail/message/:id";
|
4271
|
+
path: "email-service/mail/message/:id";
|
4272
4272
|
};
|
4273
4273
|
delete: {
|
4274
4274
|
body: null;
|
@@ -5727,7 +5727,7 @@ export declare const messageContract: {
|
|
5727
5727
|
requestId: string;
|
5728
5728
|
}>;
|
5729
5729
|
};
|
5730
|
-
path: "mail/message/:id";
|
5730
|
+
path: "email-service/mail/message/:id";
|
5731
5731
|
};
|
5732
5732
|
cancelScheduledMessage: {
|
5733
5733
|
body: null;
|
@@ -7186,7 +7186,7 @@ export declare const messageContract: {
|
|
7186
7186
|
requestId: string;
|
7187
7187
|
}>;
|
7188
7188
|
};
|
7189
|
-
path: "mail/message/scheduled_message/:id";
|
7189
|
+
path: "email-service/mail/message/scheduled_message/:id";
|
7190
7190
|
};
|
7191
7191
|
};
|
7192
7192
|
//# sourceMappingURL=message-contract.d.ts.map
|
@@ -46,7 +46,7 @@ export declare const roomContract: {
|
|
46
46
|
requestId: string;
|
47
47
|
}>;
|
48
48
|
};
|
49
|
-
path: "mail/room/";
|
49
|
+
path: "email-service/mail/room/";
|
50
50
|
};
|
51
51
|
getAll: {
|
52
52
|
summary: "Get mail rooms";
|
@@ -9502,7 +9502,7 @@ export declare const roomContract: {
|
|
9502
9502
|
requestId: string;
|
9503
9503
|
}>;
|
9504
9504
|
};
|
9505
|
-
path: "mail/room";
|
9505
|
+
path: "email-service/mail/room";
|
9506
9506
|
};
|
9507
9507
|
getRoomCounts: {
|
9508
9508
|
summary: "Get unread message counts for filter like \"open\", \"close\", \"inbox\" and etc...";
|
@@ -9946,7 +9946,7 @@ export declare const roomContract: {
|
|
9946
9946
|
requestId: string;
|
9947
9947
|
}>;
|
9948
9948
|
};
|
9949
|
-
path: "mail/room/count_rooms/all";
|
9949
|
+
path: "email-service/mail/room/count_rooms/all";
|
9950
9950
|
};
|
9951
9951
|
getAttachments: {
|
9952
9952
|
summary: "Get all the attachments of a room";
|
@@ -10117,7 +10117,7 @@ export declare const roomContract: {
|
|
10117
10117
|
requestId: string;
|
10118
10118
|
}>;
|
10119
10119
|
};
|
10120
|
-
path: "mail/room/:id/attachments";
|
10120
|
+
path: "email-service/mail/room/:id/attachments";
|
10121
10121
|
};
|
10122
10122
|
getParticipants: {
|
10123
10123
|
summary: "Get all the attachments of a room";
|
@@ -10385,7 +10385,7 @@ export declare const roomContract: {
|
|
10385
10385
|
requestId: string;
|
10386
10386
|
}>;
|
10387
10387
|
};
|
10388
|
-
path: "mail/room/:id/participants";
|
10388
|
+
path: "email-service/mail/room/:id/participants";
|
10389
10389
|
};
|
10390
10390
|
addNewEmailToContact: {
|
10391
10391
|
body: z.ZodObject<{
|
@@ -10445,7 +10445,7 @@ export declare const roomContract: {
|
|
10445
10445
|
requestId: string;
|
10446
10446
|
}>;
|
10447
10447
|
};
|
10448
|
-
path: "mail/room/add_email_to_contact";
|
10448
|
+
path: "email-service/mail/room/add_email_to_contact";
|
10449
10449
|
};
|
10450
10450
|
update: {
|
10451
10451
|
body: z.ZodObject<{
|
@@ -19872,7 +19872,7 @@ export declare const roomContract: {
|
|
19872
19872
|
requestId: string;
|
19873
19873
|
}>;
|
19874
19874
|
};
|
19875
|
-
path: "mail/room/:id";
|
19875
|
+
path: "email-service/mail/room/:id";
|
19876
19876
|
};
|
19877
19877
|
markAsRead: {
|
19878
19878
|
body: z.ZodObject<{
|
@@ -19926,7 +19926,7 @@ export declare const roomContract: {
|
|
19926
19926
|
requestId: string;
|
19927
19927
|
}>;
|
19928
19928
|
};
|
19929
|
-
path: "mail/room/mark_as_read";
|
19929
|
+
path: "email-service/mail/room/mark_as_read";
|
19930
19930
|
};
|
19931
19931
|
getById: {
|
19932
19932
|
summary: "Get a mail room by id";
|
@@ -29331,7 +29331,7 @@ export declare const roomContract: {
|
|
29331
29331
|
requestId: string;
|
29332
29332
|
}>;
|
29333
29333
|
};
|
29334
|
-
path: "mail/room/:id";
|
29334
|
+
path: "email-service/mail/room/:id";
|
29335
29335
|
};
|
29336
29336
|
};
|
29337
29337
|
//# sourceMappingURL=room-contract.d.ts.map
|
@@ -3318,7 +3318,7 @@ export declare const ticketContract: {
|
|
3318
3318
|
error?: any;
|
3319
3319
|
}>;
|
3320
3320
|
};
|
3321
|
-
path: "ticket";
|
3321
|
+
path: "ticket-service/ticket";
|
3322
3322
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
3323
3323
|
'x-tenant': z.ZodString;
|
3324
3324
|
authorization: z.ZodString;
|
@@ -5436,7 +5436,7 @@ export declare const ticketContract: {
|
|
5436
5436
|
error?: any;
|
5437
5437
|
}>;
|
5438
5438
|
};
|
5439
|
-
path: "ticket";
|
5439
|
+
path: "ticket-service/ticket";
|
5440
5440
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
5441
5441
|
'x-tenant': z.ZodString;
|
5442
5442
|
authorization: z.ZodString;
|
@@ -8584,7 +8584,7 @@ export declare const ticketContract: {
|
|
8584
8584
|
error?: any;
|
8585
8585
|
}>;
|
8586
8586
|
};
|
8587
|
-
path: "ticket/:id";
|
8587
|
+
path: "ticket-service/ticket/:id";
|
8588
8588
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
8589
8589
|
'x-tenant': z.ZodString;
|
8590
8590
|
authorization: z.ZodString;
|
@@ -10647,7 +10647,7 @@ export declare const ticketContract: {
|
|
10647
10647
|
error?: any;
|
10648
10648
|
}>;
|
10649
10649
|
};
|
10650
|
-
path: "ticket/contact/:id";
|
10650
|
+
path: "ticket-service/ticket/contact/:id";
|
10651
10651
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
10652
10652
|
'x-tenant': z.ZodString;
|
10653
10653
|
authorization: z.ZodString;
|
@@ -13981,7 +13981,7 @@ export declare const ticketContract: {
|
|
13981
13981
|
error?: any;
|
13982
13982
|
}>;
|
13983
13983
|
};
|
13984
|
-
path: "ticket/:id";
|
13984
|
+
path: "ticket-service/ticket/:id";
|
13985
13985
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
13986
13986
|
'x-tenant': z.ZodString;
|
13987
13987
|
authorization: z.ZodString;
|
@@ -14032,7 +14032,7 @@ export declare const ticketContract: {
|
|
14032
14032
|
error?: any;
|
14033
14033
|
}>;
|
14034
14034
|
};
|
14035
|
-
path: "ticket/:id";
|
14035
|
+
path: "ticket-service/ticket/:id";
|
14036
14036
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
14037
14037
|
'x-tenant': z.ZodString;
|
14038
14038
|
authorization: z.ZodString;
|
@@ -14130,7 +14130,7 @@ export declare const ticketContract: {
|
|
14130
14130
|
error?: any;
|
14131
14131
|
}>;
|
14132
14132
|
};
|
14133
|
-
path: "ticket/description/update/:id";
|
14133
|
+
path: "ticket-service/ticket/description/update/:id";
|
14134
14134
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
14135
14135
|
'x-tenant': z.ZodString;
|
14136
14136
|
authorization: z.ZodString;
|
@@ -14228,7 +14228,7 @@ export declare const ticketContract: {
|
|
14228
14228
|
error?: any;
|
14229
14229
|
}>;
|
14230
14230
|
};
|
14231
|
-
path: "ticket/title/update/:id";
|
14231
|
+
path: "ticket-service/ticket/title/update/:id";
|
14232
14232
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
14233
14233
|
'x-tenant': z.ZodString;
|
14234
14234
|
authorization: z.ZodString;
|
@@ -14326,7 +14326,7 @@ export declare const ticketContract: {
|
|
14326
14326
|
error?: any;
|
14327
14327
|
}>;
|
14328
14328
|
};
|
14329
|
-
path: "ticket/type/update/:id";
|
14329
|
+
path: "ticket-service/ticket/type/update/:id";
|
14330
14330
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
14331
14331
|
'x-tenant': z.ZodString;
|
14332
14332
|
authorization: z.ZodString;
|
@@ -14424,7 +14424,7 @@ export declare const ticketContract: {
|
|
14424
14424
|
error?: any;
|
14425
14425
|
}>;
|
14426
14426
|
};
|
14427
|
-
path: "ticket/status/update/:id";
|
14427
|
+
path: "ticket-service/ticket/status/update/:id";
|
14428
14428
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
14429
14429
|
'x-tenant': z.ZodString;
|
14430
14430
|
authorization: z.ZodString;
|
@@ -14522,7 +14522,7 @@ export declare const ticketContract: {
|
|
14522
14522
|
error?: any;
|
14523
14523
|
}>;
|
14524
14524
|
};
|
14525
|
-
path: "ticket/priority/update/:id";
|
14525
|
+
path: "ticket-service/ticket/priority/update/:id";
|
14526
14526
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
14527
14527
|
'x-tenant': z.ZodString;
|
14528
14528
|
authorization: z.ZodString;
|
@@ -14620,7 +14620,7 @@ export declare const ticketContract: {
|
|
14620
14620
|
error?: any;
|
14621
14621
|
}>;
|
14622
14622
|
};
|
14623
|
-
path: "ticket/channel/update/:id";
|
14623
|
+
path: "ticket-service/ticket/channel/update/:id";
|
14624
14624
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
14625
14625
|
'x-tenant': z.ZodString;
|
14626
14626
|
authorization: z.ZodString;
|
@@ -14718,7 +14718,7 @@ export declare const ticketContract: {
|
|
14718
14718
|
error?: any;
|
14719
14719
|
}>;
|
14720
14720
|
};
|
14721
|
-
path: "ticket/tags/update/:id";
|
14721
|
+
path: "ticket-service/ticket/tags/update/:id";
|
14722
14722
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
14723
14723
|
'x-tenant': z.ZodString;
|
14724
14724
|
authorization: z.ZodString;
|
@@ -17903,7 +17903,7 @@ export declare const ticketContract: {
|
|
17903
17903
|
error?: any;
|
17904
17904
|
}>;
|
17905
17905
|
};
|
17906
|
-
path: "ticket/assignee/update/:id";
|
17906
|
+
path: "ticket-service/ticket/assignee/update/:id";
|
17907
17907
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
17908
17908
|
'x-tenant': z.ZodString;
|
17909
17909
|
authorization: z.ZodString;
|
@@ -18000,7 +18000,7 @@ export declare const ticketContract: {
|
|
18000
18000
|
error?: any;
|
18001
18001
|
}>;
|
18002
18002
|
};
|
18003
|
-
path: "ticket/ticket_count/contact/:id";
|
18003
|
+
path: "ticket-service/ticket/ticket_count/contact/:id";
|
18004
18004
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
18005
18005
|
'x-tenant': z.ZodString;
|
18006
18006
|
authorization: z.ZodString;
|
@@ -18391,7 +18391,7 @@ export declare const ticketContract: {
|
|
18391
18391
|
error?: any;
|
18392
18392
|
}>;
|
18393
18393
|
};
|
18394
|
-
path: "ticket/attachment";
|
18394
|
+
path: "ticket-service/ticket/attachment";
|
18395
18395
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
18396
18396
|
'x-tenant': z.ZodString;
|
18397
18397
|
authorization: z.ZodString;
|
@@ -18494,7 +18494,7 @@ export declare const ticketContract: {
|
|
18494
18494
|
error?: any;
|
18495
18495
|
}>;
|
18496
18496
|
};
|
18497
|
-
path: "ticket/export";
|
18497
|
+
path: "ticket-service/ticket/export";
|
18498
18498
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
18499
18499
|
'x-tenant': z.ZodString;
|
18500
18500
|
authorization: z.ZodString;
|
@@ -18553,7 +18553,7 @@ export declare const ticketContract: {
|
|
18553
18553
|
error?: any;
|
18554
18554
|
}>;
|
18555
18555
|
};
|
18556
|
-
path: "ticket/gs/ticket-reason-required";
|
18556
|
+
path: "ticket-service/ticket/gs/ticket-reason-required";
|
18557
18557
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
18558
18558
|
'x-tenant': z.ZodString;
|
18559
18559
|
authorization: z.ZodString;
|
@@ -18619,7 +18619,7 @@ export declare const ticketContract: {
|
|
18619
18619
|
error?: any;
|
18620
18620
|
}>;
|
18621
18621
|
};
|
18622
|
-
path: "ticket/gs/ticket-reason-required";
|
18622
|
+
path: "ticket-service/ticket/gs/ticket-reason-required";
|
18623
18623
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
18624
18624
|
'x-tenant': z.ZodString;
|
18625
18625
|
authorization: z.ZodString;
|