@kl1/contracts 1.0.97 → 1.0.98
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 +855 -758
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +854 -758
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +3 -3
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +8 -8
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +1399 -559
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +5 -5
- package/dist/src/line/index.d.ts +5 -5
- package/dist/src/mail/account-contract.d.ts +132 -132
- package/dist/src/mail/mail-contract.d.ts +715 -258
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server-contract.d.ts +477 -18
- package/dist/src/mail/mail-server-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +108 -108
- package/dist/src/mail/schemas/account-validation.schema.d.ts +140 -140
- package/dist/src/mail/schemas/account.schema.d.ts +32 -32
- package/dist/src/mail/schemas/room-validation.schema.d.ts +36 -36
- package/dist/src/mail/schemas/room.schema.d.ts +28 -28
- package/dist/src/messenger/index.d.ts +5 -5
- package/dist/src/user/index.d.ts +388 -4
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/user/validation.d.ts +7 -0
- package/dist/src/user/validation.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +5 -5
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -2332,12 +2332,12 @@ export declare const apiContract: {
|
|
2332
2332
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
2333
2333
|
name: import("zod").ZodString;
|
2334
2334
|
smtpHost: import("zod").ZodString;
|
2335
|
-
smtpPort: import("zod").
|
2336
|
-
smtpTlsPort: import("zod").
|
2335
|
+
smtpPort: import("zod").ZodNumber;
|
2336
|
+
smtpTlsPort: import("zod").ZodNumber;
|
2337
2337
|
useTlsForSmtp: import("zod").ZodBoolean;
|
2338
2338
|
imapHost: import("zod").ZodString;
|
2339
|
-
imapPort: import("zod").
|
2340
|
-
imapTlsPort: import("zod").
|
2339
|
+
imapPort: import("zod").ZodNumber;
|
2340
|
+
imapTlsPort: import("zod").ZodNumber;
|
2341
2341
|
useTlsForImap: import("zod").ZodBoolean;
|
2342
2342
|
}, "strip", import("zod").ZodTypeAny, {
|
2343
2343
|
id: string;
|
@@ -2346,12 +2346,12 @@ export declare const apiContract: {
|
|
2346
2346
|
updatedAt: Date;
|
2347
2347
|
deletedAt: Date | null;
|
2348
2348
|
smtpHost: string;
|
2349
|
-
smtpPort:
|
2350
|
-
smtpTlsPort:
|
2349
|
+
smtpPort: number;
|
2350
|
+
smtpTlsPort: number;
|
2351
2351
|
useTlsForSmtp: boolean;
|
2352
2352
|
imapHost: string;
|
2353
|
-
imapPort:
|
2354
|
-
imapTlsPort:
|
2353
|
+
imapPort: number;
|
2354
|
+
imapTlsPort: number;
|
2355
2355
|
useTlsForImap: boolean;
|
2356
2356
|
}, {
|
2357
2357
|
id: string;
|
@@ -2360,12 +2360,12 @@ export declare const apiContract: {
|
|
2360
2360
|
updatedAt: Date;
|
2361
2361
|
deletedAt: Date | null;
|
2362
2362
|
smtpHost: string;
|
2363
|
-
smtpPort:
|
2364
|
-
smtpTlsPort:
|
2363
|
+
smtpPort: number;
|
2364
|
+
smtpTlsPort: number;
|
2365
2365
|
useTlsForSmtp: boolean;
|
2366
2366
|
imapHost: string;
|
2367
|
-
imapPort:
|
2368
|
-
imapTlsPort:
|
2367
|
+
imapPort: number;
|
2368
|
+
imapTlsPort: number;
|
2369
2369
|
useTlsForImap: boolean;
|
2370
2370
|
}>;
|
2371
2371
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -2386,12 +2386,12 @@ export declare const apiContract: {
|
|
2386
2386
|
updatedAt: Date;
|
2387
2387
|
deletedAt: Date | null;
|
2388
2388
|
smtpHost: string;
|
2389
|
-
smtpPort:
|
2390
|
-
smtpTlsPort:
|
2389
|
+
smtpPort: number;
|
2390
|
+
smtpTlsPort: number;
|
2391
2391
|
useTlsForSmtp: boolean;
|
2392
2392
|
imapHost: string;
|
2393
|
-
imapPort:
|
2394
|
-
imapTlsPort:
|
2393
|
+
imapPort: number;
|
2394
|
+
imapTlsPort: number;
|
2395
2395
|
useTlsForImap: boolean;
|
2396
2396
|
};
|
2397
2397
|
}, {
|
@@ -2411,12 +2411,12 @@ export declare const apiContract: {
|
|
2411
2411
|
updatedAt: Date;
|
2412
2412
|
deletedAt: Date | null;
|
2413
2413
|
smtpHost: string;
|
2414
|
-
smtpPort:
|
2415
|
-
smtpTlsPort:
|
2414
|
+
smtpPort: number;
|
2415
|
+
smtpTlsPort: number;
|
2416
2416
|
useTlsForSmtp: boolean;
|
2417
2417
|
imapHost: string;
|
2418
|
-
imapPort:
|
2419
|
-
imapTlsPort:
|
2418
|
+
imapPort: number;
|
2419
|
+
imapTlsPort: number;
|
2420
2420
|
useTlsForImap: boolean;
|
2421
2421
|
};
|
2422
2422
|
}>;
|
@@ -2821,12 +2821,12 @@ export declare const apiContract: {
|
|
2821
2821
|
updatedAt: Date;
|
2822
2822
|
deletedAt: Date | null;
|
2823
2823
|
smtpHost: string;
|
2824
|
-
smtpPort:
|
2825
|
-
smtpTlsPort:
|
2824
|
+
smtpPort: number;
|
2825
|
+
smtpTlsPort: number;
|
2826
2826
|
useTlsForSmtp: boolean;
|
2827
2827
|
imapHost: string;
|
2828
|
-
imapPort:
|
2829
|
-
imapTlsPort:
|
2828
|
+
imapPort: number;
|
2829
|
+
imapTlsPort: number;
|
2830
2830
|
useTlsForImap: boolean;
|
2831
2831
|
};
|
2832
2832
|
};
|
@@ -3231,12 +3231,12 @@ export declare const apiContract: {
|
|
3231
3231
|
updatedAt: Date;
|
3232
3232
|
deletedAt: Date | null;
|
3233
3233
|
smtpHost: string;
|
3234
|
-
smtpPort:
|
3235
|
-
smtpTlsPort:
|
3234
|
+
smtpPort: number;
|
3235
|
+
smtpTlsPort: number;
|
3236
3236
|
useTlsForSmtp: boolean;
|
3237
3237
|
imapHost: string;
|
3238
|
-
imapPort:
|
3239
|
-
imapTlsPort:
|
3238
|
+
imapPort: number;
|
3239
|
+
imapTlsPort: number;
|
3240
3240
|
useTlsForImap: boolean;
|
3241
3241
|
};
|
3242
3242
|
};
|
@@ -3646,12 +3646,12 @@ export declare const apiContract: {
|
|
3646
3646
|
updatedAt: Date;
|
3647
3647
|
deletedAt: Date | null;
|
3648
3648
|
smtpHost: string;
|
3649
|
-
smtpPort:
|
3650
|
-
smtpTlsPort:
|
3649
|
+
smtpPort: number;
|
3650
|
+
smtpTlsPort: number;
|
3651
3651
|
useTlsForSmtp: boolean;
|
3652
3652
|
imapHost: string;
|
3653
|
-
imapPort:
|
3654
|
-
imapTlsPort:
|
3653
|
+
imapPort: number;
|
3654
|
+
imapTlsPort: number;
|
3655
3655
|
useTlsForImap: boolean;
|
3656
3656
|
};
|
3657
3657
|
};
|
@@ -4062,12 +4062,12 @@ export declare const apiContract: {
|
|
4062
4062
|
updatedAt: Date;
|
4063
4063
|
deletedAt: Date | null;
|
4064
4064
|
smtpHost: string;
|
4065
|
-
smtpPort:
|
4066
|
-
smtpTlsPort:
|
4065
|
+
smtpPort: number;
|
4066
|
+
smtpTlsPort: number;
|
4067
4067
|
useTlsForSmtp: boolean;
|
4068
4068
|
imapHost: string;
|
4069
|
-
imapPort:
|
4070
|
-
imapTlsPort:
|
4069
|
+
imapPort: number;
|
4070
|
+
imapTlsPort: number;
|
4071
4071
|
useTlsForImap: boolean;
|
4072
4072
|
};
|
4073
4073
|
};
|
@@ -5759,12 +5759,12 @@ export declare const apiContract: {
|
|
5759
5759
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
5760
5760
|
name: import("zod").ZodString;
|
5761
5761
|
smtpHost: import("zod").ZodString;
|
5762
|
-
smtpPort: import("zod").
|
5763
|
-
smtpTlsPort: import("zod").
|
5762
|
+
smtpPort: import("zod").ZodNumber;
|
5763
|
+
smtpTlsPort: import("zod").ZodNumber;
|
5764
5764
|
useTlsForSmtp: import("zod").ZodBoolean;
|
5765
5765
|
imapHost: import("zod").ZodString;
|
5766
|
-
imapPort: import("zod").
|
5767
|
-
imapTlsPort: import("zod").
|
5766
|
+
imapPort: import("zod").ZodNumber;
|
5767
|
+
imapTlsPort: import("zod").ZodNumber;
|
5768
5768
|
useTlsForImap: import("zod").ZodBoolean;
|
5769
5769
|
}, "strip", import("zod").ZodTypeAny, {
|
5770
5770
|
id: string;
|
@@ -5773,12 +5773,12 @@ export declare const apiContract: {
|
|
5773
5773
|
updatedAt: Date;
|
5774
5774
|
deletedAt: Date | null;
|
5775
5775
|
smtpHost: string;
|
5776
|
-
smtpPort:
|
5777
|
-
smtpTlsPort:
|
5776
|
+
smtpPort: number;
|
5777
|
+
smtpTlsPort: number;
|
5778
5778
|
useTlsForSmtp: boolean;
|
5779
5779
|
imapHost: string;
|
5780
|
-
imapPort:
|
5781
|
-
imapTlsPort:
|
5780
|
+
imapPort: number;
|
5781
|
+
imapTlsPort: number;
|
5782
5782
|
useTlsForImap: boolean;
|
5783
5783
|
}, {
|
5784
5784
|
id: string;
|
@@ -5787,12 +5787,12 @@ export declare const apiContract: {
|
|
5787
5787
|
updatedAt: Date;
|
5788
5788
|
deletedAt: Date | null;
|
5789
5789
|
smtpHost: string;
|
5790
|
-
smtpPort:
|
5791
|
-
smtpTlsPort:
|
5790
|
+
smtpPort: number;
|
5791
|
+
smtpTlsPort: number;
|
5792
5792
|
useTlsForSmtp: boolean;
|
5793
5793
|
imapHost: string;
|
5794
|
-
imapPort:
|
5795
|
-
imapTlsPort:
|
5794
|
+
imapPort: number;
|
5795
|
+
imapTlsPort: number;
|
5796
5796
|
useTlsForImap: boolean;
|
5797
5797
|
}>;
|
5798
5798
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -5813,12 +5813,12 @@ export declare const apiContract: {
|
|
5813
5813
|
updatedAt: Date;
|
5814
5814
|
deletedAt: Date | null;
|
5815
5815
|
smtpHost: string;
|
5816
|
-
smtpPort:
|
5817
|
-
smtpTlsPort:
|
5816
|
+
smtpPort: number;
|
5817
|
+
smtpTlsPort: number;
|
5818
5818
|
useTlsForSmtp: boolean;
|
5819
5819
|
imapHost: string;
|
5820
|
-
imapPort:
|
5821
|
-
imapTlsPort:
|
5820
|
+
imapPort: number;
|
5821
|
+
imapTlsPort: number;
|
5822
5822
|
useTlsForImap: boolean;
|
5823
5823
|
};
|
5824
5824
|
}, {
|
@@ -5838,12 +5838,12 @@ export declare const apiContract: {
|
|
5838
5838
|
updatedAt: Date;
|
5839
5839
|
deletedAt: Date | null;
|
5840
5840
|
smtpHost: string;
|
5841
|
-
smtpPort:
|
5842
|
-
smtpTlsPort:
|
5841
|
+
smtpPort: number;
|
5842
|
+
smtpTlsPort: number;
|
5843
5843
|
useTlsForSmtp: boolean;
|
5844
5844
|
imapHost: string;
|
5845
|
-
imapPort:
|
5846
|
-
imapTlsPort:
|
5845
|
+
imapPort: number;
|
5846
|
+
imapTlsPort: number;
|
5847
5847
|
useTlsForImap: boolean;
|
5848
5848
|
};
|
5849
5849
|
}>;
|
@@ -6248,12 +6248,12 @@ export declare const apiContract: {
|
|
6248
6248
|
updatedAt: Date;
|
6249
6249
|
deletedAt: Date | null;
|
6250
6250
|
smtpHost: string;
|
6251
|
-
smtpPort:
|
6252
|
-
smtpTlsPort:
|
6251
|
+
smtpPort: number;
|
6252
|
+
smtpTlsPort: number;
|
6253
6253
|
useTlsForSmtp: boolean;
|
6254
6254
|
imapHost: string;
|
6255
|
-
imapPort:
|
6256
|
-
imapTlsPort:
|
6255
|
+
imapPort: number;
|
6256
|
+
imapTlsPort: number;
|
6257
6257
|
useTlsForImap: boolean;
|
6258
6258
|
};
|
6259
6259
|
};
|
@@ -6658,12 +6658,12 @@ export declare const apiContract: {
|
|
6658
6658
|
updatedAt: Date;
|
6659
6659
|
deletedAt: Date | null;
|
6660
6660
|
smtpHost: string;
|
6661
|
-
smtpPort:
|
6662
|
-
smtpTlsPort:
|
6661
|
+
smtpPort: number;
|
6662
|
+
smtpTlsPort: number;
|
6663
6663
|
useTlsForSmtp: boolean;
|
6664
6664
|
imapHost: string;
|
6665
|
-
imapPort:
|
6666
|
-
imapTlsPort:
|
6665
|
+
imapPort: number;
|
6666
|
+
imapTlsPort: number;
|
6667
6667
|
useTlsForImap: boolean;
|
6668
6668
|
};
|
6669
6669
|
};
|
@@ -7070,12 +7070,12 @@ export declare const apiContract: {
|
|
7070
7070
|
updatedAt: Date;
|
7071
7071
|
deletedAt: Date | null;
|
7072
7072
|
smtpHost: string;
|
7073
|
-
smtpPort:
|
7074
|
-
smtpTlsPort:
|
7073
|
+
smtpPort: number;
|
7074
|
+
smtpTlsPort: number;
|
7075
7075
|
useTlsForSmtp: boolean;
|
7076
7076
|
imapHost: string;
|
7077
|
-
imapPort:
|
7078
|
-
imapTlsPort:
|
7077
|
+
imapPort: number;
|
7078
|
+
imapTlsPort: number;
|
7079
7079
|
useTlsForImap: boolean;
|
7080
7080
|
};
|
7081
7081
|
};
|
@@ -7483,12 +7483,12 @@ export declare const apiContract: {
|
|
7483
7483
|
updatedAt: Date;
|
7484
7484
|
deletedAt: Date | null;
|
7485
7485
|
smtpHost: string;
|
7486
|
-
smtpPort:
|
7487
|
-
smtpTlsPort:
|
7486
|
+
smtpPort: number;
|
7487
|
+
smtpTlsPort: number;
|
7488
7488
|
useTlsForSmtp: boolean;
|
7489
7489
|
imapHost: string;
|
7490
|
-
imapPort:
|
7491
|
-
imapTlsPort:
|
7490
|
+
imapPort: number;
|
7491
|
+
imapTlsPort: number;
|
7492
7492
|
useTlsForImap: boolean;
|
7493
7493
|
};
|
7494
7494
|
};
|
@@ -9456,12 +9456,12 @@ export declare const apiContract: {
|
|
9456
9456
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
9457
9457
|
name: import("zod").ZodString;
|
9458
9458
|
smtpHost: import("zod").ZodString;
|
9459
|
-
smtpPort: import("zod").
|
9460
|
-
smtpTlsPort: import("zod").
|
9459
|
+
smtpPort: import("zod").ZodNumber;
|
9460
|
+
smtpTlsPort: import("zod").ZodNumber;
|
9461
9461
|
useTlsForSmtp: import("zod").ZodBoolean;
|
9462
9462
|
imapHost: import("zod").ZodString;
|
9463
|
-
imapPort: import("zod").
|
9464
|
-
imapTlsPort: import("zod").
|
9463
|
+
imapPort: import("zod").ZodNumber;
|
9464
|
+
imapTlsPort: import("zod").ZodNumber;
|
9465
9465
|
useTlsForImap: import("zod").ZodBoolean;
|
9466
9466
|
}, "strip", import("zod").ZodTypeAny, {
|
9467
9467
|
id: string;
|
@@ -9470,12 +9470,12 @@ export declare const apiContract: {
|
|
9470
9470
|
updatedAt: Date;
|
9471
9471
|
deletedAt: Date | null;
|
9472
9472
|
smtpHost: string;
|
9473
|
-
smtpPort:
|
9474
|
-
smtpTlsPort:
|
9473
|
+
smtpPort: number;
|
9474
|
+
smtpTlsPort: number;
|
9475
9475
|
useTlsForSmtp: boolean;
|
9476
9476
|
imapHost: string;
|
9477
|
-
imapPort:
|
9478
|
-
imapTlsPort:
|
9477
|
+
imapPort: number;
|
9478
|
+
imapTlsPort: number;
|
9479
9479
|
useTlsForImap: boolean;
|
9480
9480
|
}, {
|
9481
9481
|
id: string;
|
@@ -9484,12 +9484,12 @@ export declare const apiContract: {
|
|
9484
9484
|
updatedAt: Date;
|
9485
9485
|
deletedAt: Date | null;
|
9486
9486
|
smtpHost: string;
|
9487
|
-
smtpPort:
|
9488
|
-
smtpTlsPort:
|
9487
|
+
smtpPort: number;
|
9488
|
+
smtpTlsPort: number;
|
9489
9489
|
useTlsForSmtp: boolean;
|
9490
9490
|
imapHost: string;
|
9491
|
-
imapPort:
|
9492
|
-
imapTlsPort:
|
9491
|
+
imapPort: number;
|
9492
|
+
imapTlsPort: number;
|
9493
9493
|
useTlsForImap: boolean;
|
9494
9494
|
}>;
|
9495
9495
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -9510,12 +9510,12 @@ export declare const apiContract: {
|
|
9510
9510
|
updatedAt: Date;
|
9511
9511
|
deletedAt: Date | null;
|
9512
9512
|
smtpHost: string;
|
9513
|
-
smtpPort:
|
9514
|
-
smtpTlsPort:
|
9513
|
+
smtpPort: number;
|
9514
|
+
smtpTlsPort: number;
|
9515
9515
|
useTlsForSmtp: boolean;
|
9516
9516
|
imapHost: string;
|
9517
|
-
imapPort:
|
9518
|
-
imapTlsPort:
|
9517
|
+
imapPort: number;
|
9518
|
+
imapTlsPort: number;
|
9519
9519
|
useTlsForImap: boolean;
|
9520
9520
|
};
|
9521
9521
|
}, {
|
@@ -9535,12 +9535,12 @@ export declare const apiContract: {
|
|
9535
9535
|
updatedAt: Date;
|
9536
9536
|
deletedAt: Date | null;
|
9537
9537
|
smtpHost: string;
|
9538
|
-
smtpPort:
|
9539
|
-
smtpTlsPort:
|
9538
|
+
smtpPort: number;
|
9539
|
+
smtpTlsPort: number;
|
9540
9540
|
useTlsForSmtp: boolean;
|
9541
9541
|
imapHost: string;
|
9542
|
-
imapPort:
|
9543
|
-
imapTlsPort:
|
9542
|
+
imapPort: number;
|
9543
|
+
imapTlsPort: number;
|
9544
9544
|
useTlsForImap: boolean;
|
9545
9545
|
};
|
9546
9546
|
}>;
|
@@ -9945,12 +9945,12 @@ export declare const apiContract: {
|
|
9945
9945
|
updatedAt: Date;
|
9946
9946
|
deletedAt: Date | null;
|
9947
9947
|
smtpHost: string;
|
9948
|
-
smtpPort:
|
9949
|
-
smtpTlsPort:
|
9948
|
+
smtpPort: number;
|
9949
|
+
smtpTlsPort: number;
|
9950
9950
|
useTlsForSmtp: boolean;
|
9951
9951
|
imapHost: string;
|
9952
|
-
imapPort:
|
9953
|
-
imapTlsPort:
|
9952
|
+
imapPort: number;
|
9953
|
+
imapTlsPort: number;
|
9954
9954
|
useTlsForImap: boolean;
|
9955
9955
|
};
|
9956
9956
|
};
|
@@ -10355,12 +10355,12 @@ export declare const apiContract: {
|
|
10355
10355
|
updatedAt: Date;
|
10356
10356
|
deletedAt: Date | null;
|
10357
10357
|
smtpHost: string;
|
10358
|
-
smtpPort:
|
10359
|
-
smtpTlsPort:
|
10358
|
+
smtpPort: number;
|
10359
|
+
smtpTlsPort: number;
|
10360
10360
|
useTlsForSmtp: boolean;
|
10361
10361
|
imapHost: string;
|
10362
|
-
imapPort:
|
10363
|
-
imapTlsPort:
|
10362
|
+
imapPort: number;
|
10363
|
+
imapTlsPort: number;
|
10364
10364
|
useTlsForImap: boolean;
|
10365
10365
|
};
|
10366
10366
|
};
|
@@ -10767,12 +10767,12 @@ export declare const apiContract: {
|
|
10767
10767
|
updatedAt: Date;
|
10768
10768
|
deletedAt: Date | null;
|
10769
10769
|
smtpHost: string;
|
10770
|
-
smtpPort:
|
10771
|
-
smtpTlsPort:
|
10770
|
+
smtpPort: number;
|
10771
|
+
smtpTlsPort: number;
|
10772
10772
|
useTlsForSmtp: boolean;
|
10773
10773
|
imapHost: string;
|
10774
|
-
imapPort:
|
10775
|
-
imapTlsPort:
|
10774
|
+
imapPort: number;
|
10775
|
+
imapTlsPort: number;
|
10776
10776
|
useTlsForImap: boolean;
|
10777
10777
|
};
|
10778
10778
|
};
|
@@ -11180,12 +11180,12 @@ export declare const apiContract: {
|
|
11180
11180
|
updatedAt: Date;
|
11181
11181
|
deletedAt: Date | null;
|
11182
11182
|
smtpHost: string;
|
11183
|
-
smtpPort:
|
11184
|
-
smtpTlsPort:
|
11183
|
+
smtpPort: number;
|
11184
|
+
smtpTlsPort: number;
|
11185
11185
|
useTlsForSmtp: boolean;
|
11186
11186
|
imapHost: string;
|
11187
|
-
imapPort:
|
11188
|
-
imapTlsPort:
|
11187
|
+
imapPort: number;
|
11188
|
+
imapTlsPort: number;
|
11189
11189
|
useTlsForImap: boolean;
|
11190
11190
|
};
|
11191
11191
|
};
|
@@ -12184,12 +12184,12 @@ export declare const apiContract: {
|
|
12184
12184
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12185
12185
|
name: import("zod").ZodString;
|
12186
12186
|
smtpHost: import("zod").ZodString;
|
12187
|
-
smtpPort: import("zod").
|
12188
|
-
smtpTlsPort: import("zod").
|
12187
|
+
smtpPort: import("zod").ZodNumber;
|
12188
|
+
smtpTlsPort: import("zod").ZodNumber;
|
12189
12189
|
useTlsForSmtp: import("zod").ZodBoolean;
|
12190
12190
|
imapHost: import("zod").ZodString;
|
12191
|
-
imapPort: import("zod").
|
12192
|
-
imapTlsPort: import("zod").
|
12191
|
+
imapPort: import("zod").ZodNumber;
|
12192
|
+
imapTlsPort: import("zod").ZodNumber;
|
12193
12193
|
useTlsForImap: import("zod").ZodBoolean;
|
12194
12194
|
}, "strip", import("zod").ZodTypeAny, {
|
12195
12195
|
id: string;
|
@@ -12198,12 +12198,12 @@ export declare const apiContract: {
|
|
12198
12198
|
updatedAt: Date;
|
12199
12199
|
deletedAt: Date | null;
|
12200
12200
|
smtpHost: string;
|
12201
|
-
smtpPort:
|
12202
|
-
smtpTlsPort:
|
12201
|
+
smtpPort: number;
|
12202
|
+
smtpTlsPort: number;
|
12203
12203
|
useTlsForSmtp: boolean;
|
12204
12204
|
imapHost: string;
|
12205
|
-
imapPort:
|
12206
|
-
imapTlsPort:
|
12205
|
+
imapPort: number;
|
12206
|
+
imapTlsPort: number;
|
12207
12207
|
useTlsForImap: boolean;
|
12208
12208
|
}, {
|
12209
12209
|
id: string;
|
@@ -12212,12 +12212,12 @@ export declare const apiContract: {
|
|
12212
12212
|
updatedAt: Date;
|
12213
12213
|
deletedAt: Date | null;
|
12214
12214
|
smtpHost: string;
|
12215
|
-
smtpPort:
|
12216
|
-
smtpTlsPort:
|
12215
|
+
smtpPort: number;
|
12216
|
+
smtpTlsPort: number;
|
12217
12217
|
useTlsForSmtp: boolean;
|
12218
12218
|
imapHost: string;
|
12219
|
-
imapPort:
|
12220
|
-
imapTlsPort:
|
12219
|
+
imapPort: number;
|
12220
|
+
imapTlsPort: number;
|
12221
12221
|
useTlsForImap: boolean;
|
12222
12222
|
}>;
|
12223
12223
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -12238,12 +12238,12 @@ export declare const apiContract: {
|
|
12238
12238
|
updatedAt: Date;
|
12239
12239
|
deletedAt: Date | null;
|
12240
12240
|
smtpHost: string;
|
12241
|
-
smtpPort:
|
12242
|
-
smtpTlsPort:
|
12241
|
+
smtpPort: number;
|
12242
|
+
smtpTlsPort: number;
|
12243
12243
|
useTlsForSmtp: boolean;
|
12244
12244
|
imapHost: string;
|
12245
|
-
imapPort:
|
12246
|
-
imapTlsPort:
|
12245
|
+
imapPort: number;
|
12246
|
+
imapTlsPort: number;
|
12247
12247
|
useTlsForImap: boolean;
|
12248
12248
|
};
|
12249
12249
|
}, {
|
@@ -12263,12 +12263,12 @@ export declare const apiContract: {
|
|
12263
12263
|
updatedAt: Date;
|
12264
12264
|
deletedAt: Date | null;
|
12265
12265
|
smtpHost: string;
|
12266
|
-
smtpPort:
|
12267
|
-
smtpTlsPort:
|
12266
|
+
smtpPort: number;
|
12267
|
+
smtpTlsPort: number;
|
12268
12268
|
useTlsForSmtp: boolean;
|
12269
12269
|
imapHost: string;
|
12270
|
-
imapPort:
|
12271
|
-
imapTlsPort:
|
12270
|
+
imapPort: number;
|
12271
|
+
imapTlsPort: number;
|
12272
12272
|
useTlsForImap: boolean;
|
12273
12273
|
};
|
12274
12274
|
}>;
|
@@ -12290,12 +12290,12 @@ export declare const apiContract: {
|
|
12290
12290
|
updatedAt: Date;
|
12291
12291
|
deletedAt: Date | null;
|
12292
12292
|
smtpHost: string;
|
12293
|
-
smtpPort:
|
12294
|
-
smtpTlsPort:
|
12293
|
+
smtpPort: number;
|
12294
|
+
smtpTlsPort: number;
|
12295
12295
|
useTlsForSmtp: boolean;
|
12296
12296
|
imapHost: string;
|
12297
|
-
imapPort:
|
12298
|
-
imapTlsPort:
|
12297
|
+
imapPort: number;
|
12298
|
+
imapTlsPort: number;
|
12299
12299
|
useTlsForImap: boolean;
|
12300
12300
|
};
|
12301
12301
|
};
|
@@ -12318,12 +12318,12 @@ export declare const apiContract: {
|
|
12318
12318
|
updatedAt: Date;
|
12319
12319
|
deletedAt: Date | null;
|
12320
12320
|
smtpHost: string;
|
12321
|
-
smtpPort:
|
12322
|
-
smtpTlsPort:
|
12321
|
+
smtpPort: number;
|
12322
|
+
smtpTlsPort: number;
|
12323
12323
|
useTlsForSmtp: boolean;
|
12324
12324
|
imapHost: string;
|
12325
|
-
imapPort:
|
12326
|
-
imapTlsPort:
|
12325
|
+
imapPort: number;
|
12326
|
+
imapTlsPort: number;
|
12327
12327
|
useTlsForImap: boolean;
|
12328
12328
|
};
|
12329
12329
|
};
|
@@ -12428,12 +12428,12 @@ export declare const apiContract: {
|
|
12428
12428
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12429
12429
|
name: import("zod").ZodString;
|
12430
12430
|
smtpHost: import("zod").ZodString;
|
12431
|
-
smtpPort: import("zod").
|
12432
|
-
smtpTlsPort: import("zod").
|
12431
|
+
smtpPort: import("zod").ZodNumber;
|
12432
|
+
smtpTlsPort: import("zod").ZodNumber;
|
12433
12433
|
useTlsForSmtp: import("zod").ZodBoolean;
|
12434
12434
|
imapHost: import("zod").ZodString;
|
12435
|
-
imapPort: import("zod").
|
12436
|
-
imapTlsPort: import("zod").
|
12435
|
+
imapPort: import("zod").ZodNumber;
|
12436
|
+
imapTlsPort: import("zod").ZodNumber;
|
12437
12437
|
useTlsForImap: import("zod").ZodBoolean;
|
12438
12438
|
}, "strip", import("zod").ZodTypeAny, {
|
12439
12439
|
id: string;
|
@@ -12442,12 +12442,12 @@ export declare const apiContract: {
|
|
12442
12442
|
updatedAt: Date;
|
12443
12443
|
deletedAt: Date | null;
|
12444
12444
|
smtpHost: string;
|
12445
|
-
smtpPort:
|
12446
|
-
smtpTlsPort:
|
12445
|
+
smtpPort: number;
|
12446
|
+
smtpTlsPort: number;
|
12447
12447
|
useTlsForSmtp: boolean;
|
12448
12448
|
imapHost: string;
|
12449
|
-
imapPort:
|
12450
|
-
imapTlsPort:
|
12449
|
+
imapPort: number;
|
12450
|
+
imapTlsPort: number;
|
12451
12451
|
useTlsForImap: boolean;
|
12452
12452
|
}, {
|
12453
12453
|
id: string;
|
@@ -12456,12 +12456,12 @@ export declare const apiContract: {
|
|
12456
12456
|
updatedAt: Date;
|
12457
12457
|
deletedAt: Date | null;
|
12458
12458
|
smtpHost: string;
|
12459
|
-
smtpPort:
|
12460
|
-
smtpTlsPort:
|
12459
|
+
smtpPort: number;
|
12460
|
+
smtpTlsPort: number;
|
12461
12461
|
useTlsForSmtp: boolean;
|
12462
12462
|
imapHost: string;
|
12463
|
-
imapPort:
|
12464
|
-
imapTlsPort:
|
12463
|
+
imapPort: number;
|
12464
|
+
imapTlsPort: number;
|
12465
12465
|
useTlsForImap: boolean;
|
12466
12466
|
}>>;
|
12467
12467
|
state: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>>;
|
@@ -12481,12 +12481,12 @@ export declare const apiContract: {
|
|
12481
12481
|
updatedAt: Date;
|
12482
12482
|
deletedAt: Date | null;
|
12483
12483
|
smtpHost: string;
|
12484
|
-
smtpPort:
|
12485
|
-
smtpTlsPort:
|
12484
|
+
smtpPort: number;
|
12485
|
+
smtpTlsPort: number;
|
12486
12486
|
useTlsForSmtp: boolean;
|
12487
12487
|
imapHost: string;
|
12488
|
-
imapPort:
|
12489
|
-
imapTlsPort:
|
12488
|
+
imapPort: number;
|
12489
|
+
imapTlsPort: number;
|
12490
12490
|
useTlsForImap: boolean;
|
12491
12491
|
} | undefined;
|
12492
12492
|
state?: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset" | undefined;
|
@@ -12506,12 +12506,12 @@ export declare const apiContract: {
|
|
12506
12506
|
updatedAt: Date;
|
12507
12507
|
deletedAt: Date | null;
|
12508
12508
|
smtpHost: string;
|
12509
|
-
smtpPort:
|
12510
|
-
smtpTlsPort:
|
12509
|
+
smtpPort: number;
|
12510
|
+
smtpTlsPort: number;
|
12511
12511
|
useTlsForSmtp: boolean;
|
12512
12512
|
imapHost: string;
|
12513
|
-
imapPort:
|
12514
|
-
imapTlsPort:
|
12513
|
+
imapPort: number;
|
12514
|
+
imapTlsPort: number;
|
12515
12515
|
useTlsForImap: boolean;
|
12516
12516
|
} | undefined;
|
12517
12517
|
state?: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset" | undefined;
|
@@ -12574,12 +12574,12 @@ export declare const apiContract: {
|
|
12574
12574
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12575
12575
|
name: import("zod").ZodString;
|
12576
12576
|
smtpHost: import("zod").ZodString;
|
12577
|
-
smtpPort: import("zod").
|
12578
|
-
smtpTlsPort: import("zod").
|
12577
|
+
smtpPort: import("zod").ZodNumber;
|
12578
|
+
smtpTlsPort: import("zod").ZodNumber;
|
12579
12579
|
useTlsForSmtp: import("zod").ZodBoolean;
|
12580
12580
|
imapHost: import("zod").ZodString;
|
12581
|
-
imapPort: import("zod").
|
12582
|
-
imapTlsPort: import("zod").
|
12581
|
+
imapPort: import("zod").ZodNumber;
|
12582
|
+
imapTlsPort: import("zod").ZodNumber;
|
12583
12583
|
useTlsForImap: import("zod").ZodBoolean;
|
12584
12584
|
}, "strip", import("zod").ZodTypeAny, {
|
12585
12585
|
id: string;
|
@@ -12588,12 +12588,12 @@ export declare const apiContract: {
|
|
12588
12588
|
updatedAt: Date;
|
12589
12589
|
deletedAt: Date | null;
|
12590
12590
|
smtpHost: string;
|
12591
|
-
smtpPort:
|
12592
|
-
smtpTlsPort:
|
12591
|
+
smtpPort: number;
|
12592
|
+
smtpTlsPort: number;
|
12593
12593
|
useTlsForSmtp: boolean;
|
12594
12594
|
imapHost: string;
|
12595
|
-
imapPort:
|
12596
|
-
imapTlsPort:
|
12595
|
+
imapPort: number;
|
12596
|
+
imapTlsPort: number;
|
12597
12597
|
useTlsForImap: boolean;
|
12598
12598
|
}, {
|
12599
12599
|
id: string;
|
@@ -12602,12 +12602,12 @@ export declare const apiContract: {
|
|
12602
12602
|
updatedAt: Date;
|
12603
12603
|
deletedAt: Date | null;
|
12604
12604
|
smtpHost: string;
|
12605
|
-
smtpPort:
|
12606
|
-
smtpTlsPort:
|
12605
|
+
smtpPort: number;
|
12606
|
+
smtpTlsPort: number;
|
12607
12607
|
useTlsForSmtp: boolean;
|
12608
12608
|
imapHost: string;
|
12609
|
-
imapPort:
|
12610
|
-
imapTlsPort:
|
12609
|
+
imapPort: number;
|
12610
|
+
imapTlsPort: number;
|
12611
12611
|
useTlsForImap: boolean;
|
12612
12612
|
}>;
|
12613
12613
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -12628,12 +12628,12 @@ export declare const apiContract: {
|
|
12628
12628
|
updatedAt: Date;
|
12629
12629
|
deletedAt: Date | null;
|
12630
12630
|
smtpHost: string;
|
12631
|
-
smtpPort:
|
12632
|
-
smtpTlsPort:
|
12631
|
+
smtpPort: number;
|
12632
|
+
smtpTlsPort: number;
|
12633
12633
|
useTlsForSmtp: boolean;
|
12634
12634
|
imapHost: string;
|
12635
|
-
imapPort:
|
12636
|
-
imapTlsPort:
|
12635
|
+
imapPort: number;
|
12636
|
+
imapTlsPort: number;
|
12637
12637
|
useTlsForImap: boolean;
|
12638
12638
|
};
|
12639
12639
|
}, {
|
@@ -12653,12 +12653,12 @@ export declare const apiContract: {
|
|
12653
12653
|
updatedAt: Date;
|
12654
12654
|
deletedAt: Date | null;
|
12655
12655
|
smtpHost: string;
|
12656
|
-
smtpPort:
|
12657
|
-
smtpTlsPort:
|
12656
|
+
smtpPort: number;
|
12657
|
+
smtpTlsPort: number;
|
12658
12658
|
useTlsForSmtp: boolean;
|
12659
12659
|
imapHost: string;
|
12660
|
-
imapPort:
|
12661
|
-
imapTlsPort:
|
12660
|
+
imapPort: number;
|
12661
|
+
imapTlsPort: number;
|
12662
12662
|
useTlsForImap: boolean;
|
12663
12663
|
};
|
12664
12664
|
}>;
|
@@ -12680,12 +12680,12 @@ export declare const apiContract: {
|
|
12680
12680
|
updatedAt: Date;
|
12681
12681
|
deletedAt: Date | null;
|
12682
12682
|
smtpHost: string;
|
12683
|
-
smtpPort:
|
12684
|
-
smtpTlsPort:
|
12683
|
+
smtpPort: number;
|
12684
|
+
smtpTlsPort: number;
|
12685
12685
|
useTlsForSmtp: boolean;
|
12686
12686
|
imapHost: string;
|
12687
|
-
imapPort:
|
12688
|
-
imapTlsPort:
|
12687
|
+
imapPort: number;
|
12688
|
+
imapTlsPort: number;
|
12689
12689
|
useTlsForImap: boolean;
|
12690
12690
|
};
|
12691
12691
|
};
|
@@ -12708,12 +12708,12 @@ export declare const apiContract: {
|
|
12708
12708
|
updatedAt: Date;
|
12709
12709
|
deletedAt: Date | null;
|
12710
12710
|
smtpHost: string;
|
12711
|
-
smtpPort:
|
12712
|
-
smtpTlsPort:
|
12711
|
+
smtpPort: number;
|
12712
|
+
smtpTlsPort: number;
|
12713
12713
|
useTlsForSmtp: boolean;
|
12714
12714
|
imapHost: string;
|
12715
|
-
imapPort:
|
12716
|
-
imapTlsPort:
|
12715
|
+
imapPort: number;
|
12716
|
+
imapTlsPort: number;
|
12717
12717
|
useTlsForImap: boolean;
|
12718
12718
|
};
|
12719
12719
|
};
|
@@ -12798,12 +12798,12 @@ export declare const apiContract: {
|
|
12798
12798
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12799
12799
|
name: import("zod").ZodString;
|
12800
12800
|
smtpHost: import("zod").ZodString;
|
12801
|
-
smtpPort: import("zod").
|
12802
|
-
smtpTlsPort: import("zod").
|
12801
|
+
smtpPort: import("zod").ZodNumber;
|
12802
|
+
smtpTlsPort: import("zod").ZodNumber;
|
12803
12803
|
useTlsForSmtp: import("zod").ZodBoolean;
|
12804
12804
|
imapHost: import("zod").ZodString;
|
12805
|
-
imapPort: import("zod").
|
12806
|
-
imapTlsPort: import("zod").
|
12805
|
+
imapPort: import("zod").ZodNumber;
|
12806
|
+
imapTlsPort: import("zod").ZodNumber;
|
12807
12807
|
useTlsForImap: import("zod").ZodBoolean;
|
12808
12808
|
}, "strip", import("zod").ZodTypeAny, {
|
12809
12809
|
id: string;
|
@@ -12812,12 +12812,12 @@ export declare const apiContract: {
|
|
12812
12812
|
updatedAt: Date;
|
12813
12813
|
deletedAt: Date | null;
|
12814
12814
|
smtpHost: string;
|
12815
|
-
smtpPort:
|
12816
|
-
smtpTlsPort:
|
12815
|
+
smtpPort: number;
|
12816
|
+
smtpTlsPort: number;
|
12817
12817
|
useTlsForSmtp: boolean;
|
12818
12818
|
imapHost: string;
|
12819
|
-
imapPort:
|
12820
|
-
imapTlsPort:
|
12819
|
+
imapPort: number;
|
12820
|
+
imapTlsPort: number;
|
12821
12821
|
useTlsForImap: boolean;
|
12822
12822
|
}, {
|
12823
12823
|
id: string;
|
@@ -12826,12 +12826,12 @@ export declare const apiContract: {
|
|
12826
12826
|
updatedAt: Date;
|
12827
12827
|
deletedAt: Date | null;
|
12828
12828
|
smtpHost: string;
|
12829
|
-
smtpPort:
|
12830
|
-
smtpTlsPort:
|
12829
|
+
smtpPort: number;
|
12830
|
+
smtpTlsPort: number;
|
12831
12831
|
useTlsForSmtp: boolean;
|
12832
12832
|
imapHost: string;
|
12833
|
-
imapPort:
|
12834
|
-
imapTlsPort:
|
12833
|
+
imapPort: number;
|
12834
|
+
imapTlsPort: number;
|
12835
12835
|
useTlsForImap: boolean;
|
12836
12836
|
}>;
|
12837
12837
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -12852,12 +12852,12 @@ export declare const apiContract: {
|
|
12852
12852
|
updatedAt: Date;
|
12853
12853
|
deletedAt: Date | null;
|
12854
12854
|
smtpHost: string;
|
12855
|
-
smtpPort:
|
12856
|
-
smtpTlsPort:
|
12855
|
+
smtpPort: number;
|
12856
|
+
smtpTlsPort: number;
|
12857
12857
|
useTlsForSmtp: boolean;
|
12858
12858
|
imapHost: string;
|
12859
|
-
imapPort:
|
12860
|
-
imapTlsPort:
|
12859
|
+
imapPort: number;
|
12860
|
+
imapTlsPort: number;
|
12861
12861
|
useTlsForImap: boolean;
|
12862
12862
|
};
|
12863
12863
|
}, {
|
@@ -12877,12 +12877,12 @@ export declare const apiContract: {
|
|
12877
12877
|
updatedAt: Date;
|
12878
12878
|
deletedAt: Date | null;
|
12879
12879
|
smtpHost: string;
|
12880
|
-
smtpPort:
|
12881
|
-
smtpTlsPort:
|
12880
|
+
smtpPort: number;
|
12881
|
+
smtpTlsPort: number;
|
12882
12882
|
useTlsForSmtp: boolean;
|
12883
12883
|
imapHost: string;
|
12884
|
-
imapPort:
|
12885
|
-
imapTlsPort:
|
12884
|
+
imapPort: number;
|
12885
|
+
imapTlsPort: number;
|
12886
12886
|
useTlsForImap: boolean;
|
12887
12887
|
};
|
12888
12888
|
}>;
|
@@ -12904,12 +12904,12 @@ export declare const apiContract: {
|
|
12904
12904
|
updatedAt: Date;
|
12905
12905
|
deletedAt: Date | null;
|
12906
12906
|
smtpHost: string;
|
12907
|
-
smtpPort:
|
12908
|
-
smtpTlsPort:
|
12907
|
+
smtpPort: number;
|
12908
|
+
smtpTlsPort: number;
|
12909
12909
|
useTlsForSmtp: boolean;
|
12910
12910
|
imapHost: string;
|
12911
|
-
imapPort:
|
12912
|
-
imapTlsPort:
|
12911
|
+
imapPort: number;
|
12912
|
+
imapTlsPort: number;
|
12913
12913
|
useTlsForImap: boolean;
|
12914
12914
|
};
|
12915
12915
|
};
|
@@ -12932,12 +12932,12 @@ export declare const apiContract: {
|
|
12932
12932
|
updatedAt: Date;
|
12933
12933
|
deletedAt: Date | null;
|
12934
12934
|
smtpHost: string;
|
12935
|
-
smtpPort:
|
12936
|
-
smtpTlsPort:
|
12935
|
+
smtpPort: number;
|
12936
|
+
smtpTlsPort: number;
|
12937
12937
|
useTlsForSmtp: boolean;
|
12938
12938
|
imapHost: string;
|
12939
|
-
imapPort:
|
12940
|
-
imapTlsPort:
|
12939
|
+
imapPort: number;
|
12940
|
+
imapTlsPort: number;
|
12941
12941
|
useTlsForImap: boolean;
|
12942
12942
|
};
|
12943
12943
|
};
|
@@ -13022,12 +13022,12 @@ export declare const apiContract: {
|
|
13022
13022
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13023
13023
|
name: import("zod").ZodString;
|
13024
13024
|
smtpHost: import("zod").ZodString;
|
13025
|
-
smtpPort: import("zod").
|
13026
|
-
smtpTlsPort: import("zod").
|
13025
|
+
smtpPort: import("zod").ZodNumber;
|
13026
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13027
13027
|
useTlsForSmtp: import("zod").ZodBoolean;
|
13028
13028
|
imapHost: import("zod").ZodString;
|
13029
|
-
imapPort: import("zod").
|
13030
|
-
imapTlsPort: import("zod").
|
13029
|
+
imapPort: import("zod").ZodNumber;
|
13030
|
+
imapTlsPort: import("zod").ZodNumber;
|
13031
13031
|
useTlsForImap: import("zod").ZodBoolean;
|
13032
13032
|
}, "strip", import("zod").ZodTypeAny, {
|
13033
13033
|
id: string;
|
@@ -13036,12 +13036,12 @@ export declare const apiContract: {
|
|
13036
13036
|
updatedAt: Date;
|
13037
13037
|
deletedAt: Date | null;
|
13038
13038
|
smtpHost: string;
|
13039
|
-
smtpPort:
|
13040
|
-
smtpTlsPort:
|
13039
|
+
smtpPort: number;
|
13040
|
+
smtpTlsPort: number;
|
13041
13041
|
useTlsForSmtp: boolean;
|
13042
13042
|
imapHost: string;
|
13043
|
-
imapPort:
|
13044
|
-
imapTlsPort:
|
13043
|
+
imapPort: number;
|
13044
|
+
imapTlsPort: number;
|
13045
13045
|
useTlsForImap: boolean;
|
13046
13046
|
}, {
|
13047
13047
|
id: string;
|
@@ -13050,12 +13050,12 @@ export declare const apiContract: {
|
|
13050
13050
|
updatedAt: Date;
|
13051
13051
|
deletedAt: Date | null;
|
13052
13052
|
smtpHost: string;
|
13053
|
-
smtpPort:
|
13054
|
-
smtpTlsPort:
|
13053
|
+
smtpPort: number;
|
13054
|
+
smtpTlsPort: number;
|
13055
13055
|
useTlsForSmtp: boolean;
|
13056
13056
|
imapHost: string;
|
13057
|
-
imapPort:
|
13058
|
-
imapTlsPort:
|
13057
|
+
imapPort: number;
|
13058
|
+
imapTlsPort: number;
|
13059
13059
|
useTlsForImap: boolean;
|
13060
13060
|
}>;
|
13061
13061
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -13076,12 +13076,12 @@ export declare const apiContract: {
|
|
13076
13076
|
updatedAt: Date;
|
13077
13077
|
deletedAt: Date | null;
|
13078
13078
|
smtpHost: string;
|
13079
|
-
smtpPort:
|
13080
|
-
smtpTlsPort:
|
13079
|
+
smtpPort: number;
|
13080
|
+
smtpTlsPort: number;
|
13081
13081
|
useTlsForSmtp: boolean;
|
13082
13082
|
imapHost: string;
|
13083
|
-
imapPort:
|
13084
|
-
imapTlsPort:
|
13083
|
+
imapPort: number;
|
13084
|
+
imapTlsPort: number;
|
13085
13085
|
useTlsForImap: boolean;
|
13086
13086
|
};
|
13087
13087
|
}, {
|
@@ -13101,12 +13101,12 @@ export declare const apiContract: {
|
|
13101
13101
|
updatedAt: Date;
|
13102
13102
|
deletedAt: Date | null;
|
13103
13103
|
smtpHost: string;
|
13104
|
-
smtpPort:
|
13105
|
-
smtpTlsPort:
|
13104
|
+
smtpPort: number;
|
13105
|
+
smtpTlsPort: number;
|
13106
13106
|
useTlsForSmtp: boolean;
|
13107
13107
|
imapHost: string;
|
13108
|
-
imapPort:
|
13109
|
-
imapTlsPort:
|
13108
|
+
imapPort: number;
|
13109
|
+
imapTlsPort: number;
|
13110
13110
|
useTlsForImap: boolean;
|
13111
13111
|
};
|
13112
13112
|
}>;
|
@@ -13128,12 +13128,12 @@ export declare const apiContract: {
|
|
13128
13128
|
updatedAt: Date;
|
13129
13129
|
deletedAt: Date | null;
|
13130
13130
|
smtpHost: string;
|
13131
|
-
smtpPort:
|
13132
|
-
smtpTlsPort:
|
13131
|
+
smtpPort: number;
|
13132
|
+
smtpTlsPort: number;
|
13133
13133
|
useTlsForSmtp: boolean;
|
13134
13134
|
imapHost: string;
|
13135
|
-
imapPort:
|
13136
|
-
imapTlsPort:
|
13135
|
+
imapPort: number;
|
13136
|
+
imapTlsPort: number;
|
13137
13137
|
useTlsForImap: boolean;
|
13138
13138
|
};
|
13139
13139
|
};
|
@@ -13156,12 +13156,12 @@ export declare const apiContract: {
|
|
13156
13156
|
updatedAt: Date;
|
13157
13157
|
deletedAt: Date | null;
|
13158
13158
|
smtpHost: string;
|
13159
|
-
smtpPort:
|
13160
|
-
smtpTlsPort:
|
13159
|
+
smtpPort: number;
|
13160
|
+
smtpTlsPort: number;
|
13161
13161
|
useTlsForSmtp: boolean;
|
13162
13162
|
imapHost: string;
|
13163
|
-
imapPort:
|
13164
|
-
imapTlsPort:
|
13163
|
+
imapPort: number;
|
13164
|
+
imapTlsPort: number;
|
13165
13165
|
useTlsForImap: boolean;
|
13166
13166
|
};
|
13167
13167
|
};
|
@@ -13260,7 +13260,37 @@ export declare const apiContract: {
|
|
13260
13260
|
};
|
13261
13261
|
server: {
|
13262
13262
|
create: {
|
13263
|
-
body:
|
13263
|
+
body: import("zod").ZodObject<{
|
13264
|
+
name: import("zod").ZodString;
|
13265
|
+
smtpHost: import("zod").ZodString;
|
13266
|
+
smtpPort: import("zod").ZodNumber;
|
13267
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13268
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13269
|
+
imapHost: import("zod").ZodString;
|
13270
|
+
imapPort: import("zod").ZodNumber;
|
13271
|
+
imapTlsPort: import("zod").ZodNumber;
|
13272
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13273
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13274
|
+
name: string;
|
13275
|
+
smtpHost: string;
|
13276
|
+
smtpPort: number;
|
13277
|
+
smtpTlsPort: number;
|
13278
|
+
useTlsForSmtp: boolean;
|
13279
|
+
imapHost: string;
|
13280
|
+
imapPort: number;
|
13281
|
+
imapTlsPort: number;
|
13282
|
+
useTlsForImap: boolean;
|
13283
|
+
}, {
|
13284
|
+
name: string;
|
13285
|
+
smtpHost: string;
|
13286
|
+
smtpPort: number;
|
13287
|
+
smtpTlsPort: number;
|
13288
|
+
useTlsForSmtp: boolean;
|
13289
|
+
imapHost: string;
|
13290
|
+
imapPort: number;
|
13291
|
+
imapTlsPort: number;
|
13292
|
+
useTlsForImap: boolean;
|
13293
|
+
}>;
|
13264
13294
|
summary: "Register a new mail server";
|
13265
13295
|
method: "POST";
|
13266
13296
|
responses: {
|
@@ -13294,20 +13324,90 @@ export declare const apiContract: {
|
|
13294
13324
|
message: string;
|
13295
13325
|
error?: any;
|
13296
13326
|
}>;
|
13297
|
-
|
13327
|
+
201: import("zod").ZodObject<{
|
13298
13328
|
requestId: import("zod").ZodString;
|
13299
|
-
|
13329
|
+
data: import("zod").ZodObject<{
|
13330
|
+
id: import("zod").ZodString;
|
13331
|
+
createdAt: import("zod").ZodDate;
|
13332
|
+
updatedAt: import("zod").ZodDate;
|
13333
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13334
|
+
name: import("zod").ZodString;
|
13335
|
+
smtpHost: import("zod").ZodString;
|
13336
|
+
smtpPort: import("zod").ZodNumber;
|
13337
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13338
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13339
|
+
imapHost: import("zod").ZodString;
|
13340
|
+
imapPort: import("zod").ZodNumber;
|
13341
|
+
imapTlsPort: import("zod").ZodNumber;
|
13342
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13343
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13344
|
+
id: string;
|
13345
|
+
name: string;
|
13346
|
+
createdAt: Date;
|
13347
|
+
updatedAt: Date;
|
13348
|
+
deletedAt: Date | null;
|
13349
|
+
smtpHost: string;
|
13350
|
+
smtpPort: number;
|
13351
|
+
smtpTlsPort: number;
|
13352
|
+
useTlsForSmtp: boolean;
|
13353
|
+
imapHost: string;
|
13354
|
+
imapPort: number;
|
13355
|
+
imapTlsPort: number;
|
13356
|
+
useTlsForImap: boolean;
|
13357
|
+
}, {
|
13358
|
+
id: string;
|
13359
|
+
name: string;
|
13360
|
+
createdAt: Date;
|
13361
|
+
updatedAt: Date;
|
13362
|
+
deletedAt: Date | null;
|
13363
|
+
smtpHost: string;
|
13364
|
+
smtpPort: number;
|
13365
|
+
smtpTlsPort: number;
|
13366
|
+
useTlsForSmtp: boolean;
|
13367
|
+
imapHost: string;
|
13368
|
+
imapPort: number;
|
13369
|
+
imapTlsPort: number;
|
13370
|
+
useTlsForImap: boolean;
|
13371
|
+
}>;
|
13300
13372
|
}, "strip", import("zod").ZodTypeAny, {
|
13301
|
-
|
13373
|
+
data: {
|
13374
|
+
id: string;
|
13375
|
+
name: string;
|
13376
|
+
createdAt: Date;
|
13377
|
+
updatedAt: Date;
|
13378
|
+
deletedAt: Date | null;
|
13379
|
+
smtpHost: string;
|
13380
|
+
smtpPort: number;
|
13381
|
+
smtpTlsPort: number;
|
13382
|
+
useTlsForSmtp: boolean;
|
13383
|
+
imapHost: string;
|
13384
|
+
imapPort: number;
|
13385
|
+
imapTlsPort: number;
|
13386
|
+
useTlsForImap: boolean;
|
13387
|
+
};
|
13302
13388
|
requestId: string;
|
13303
13389
|
}, {
|
13304
|
-
|
13390
|
+
data: {
|
13391
|
+
id: string;
|
13392
|
+
name: string;
|
13393
|
+
createdAt: Date;
|
13394
|
+
updatedAt: Date;
|
13395
|
+
deletedAt: Date | null;
|
13396
|
+
smtpHost: string;
|
13397
|
+
smtpPort: number;
|
13398
|
+
smtpTlsPort: number;
|
13399
|
+
useTlsForSmtp: boolean;
|
13400
|
+
imapHost: string;
|
13401
|
+
imapPort: number;
|
13402
|
+
imapTlsPort: number;
|
13403
|
+
useTlsForImap: boolean;
|
13404
|
+
};
|
13305
13405
|
requestId: string;
|
13306
13406
|
}>;
|
13307
13407
|
};
|
13308
13408
|
path: "mail/server/";
|
13309
13409
|
};
|
13310
|
-
|
13410
|
+
getById: {
|
13311
13411
|
summary: "Get a mail server by id";
|
13312
13412
|
method: "GET";
|
13313
13413
|
pathParams: import("zod").ZodObject<{
|
@@ -13350,20 +13450,237 @@ export declare const apiContract: {
|
|
13350
13450
|
}>;
|
13351
13451
|
200: import("zod").ZodObject<{
|
13352
13452
|
requestId: import("zod").ZodString;
|
13453
|
+
data: import("zod").ZodObject<{
|
13454
|
+
id: import("zod").ZodString;
|
13455
|
+
createdAt: import("zod").ZodDate;
|
13456
|
+
updatedAt: import("zod").ZodDate;
|
13457
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13458
|
+
name: import("zod").ZodString;
|
13459
|
+
smtpHost: import("zod").ZodString;
|
13460
|
+
smtpPort: import("zod").ZodNumber;
|
13461
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13462
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13463
|
+
imapHost: import("zod").ZodString;
|
13464
|
+
imapPort: import("zod").ZodNumber;
|
13465
|
+
imapTlsPort: import("zod").ZodNumber;
|
13466
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13467
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13468
|
+
id: string;
|
13469
|
+
name: string;
|
13470
|
+
createdAt: Date;
|
13471
|
+
updatedAt: Date;
|
13472
|
+
deletedAt: Date | null;
|
13473
|
+
smtpHost: string;
|
13474
|
+
smtpPort: number;
|
13475
|
+
smtpTlsPort: number;
|
13476
|
+
useTlsForSmtp: boolean;
|
13477
|
+
imapHost: string;
|
13478
|
+
imapPort: number;
|
13479
|
+
imapTlsPort: number;
|
13480
|
+
useTlsForImap: boolean;
|
13481
|
+
}, {
|
13482
|
+
id: string;
|
13483
|
+
name: string;
|
13484
|
+
createdAt: Date;
|
13485
|
+
updatedAt: Date;
|
13486
|
+
deletedAt: Date | null;
|
13487
|
+
smtpHost: string;
|
13488
|
+
smtpPort: number;
|
13489
|
+
smtpTlsPort: number;
|
13490
|
+
useTlsForSmtp: boolean;
|
13491
|
+
imapHost: string;
|
13492
|
+
imapPort: number;
|
13493
|
+
imapTlsPort: number;
|
13494
|
+
useTlsForImap: boolean;
|
13495
|
+
}>;
|
13496
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13497
|
+
data: {
|
13498
|
+
id: string;
|
13499
|
+
name: string;
|
13500
|
+
createdAt: Date;
|
13501
|
+
updatedAt: Date;
|
13502
|
+
deletedAt: Date | null;
|
13503
|
+
smtpHost: string;
|
13504
|
+
smtpPort: number;
|
13505
|
+
smtpTlsPort: number;
|
13506
|
+
useTlsForSmtp: boolean;
|
13507
|
+
imapHost: string;
|
13508
|
+
imapPort: number;
|
13509
|
+
imapTlsPort: number;
|
13510
|
+
useTlsForImap: boolean;
|
13511
|
+
};
|
13512
|
+
requestId: string;
|
13513
|
+
}, {
|
13514
|
+
data: {
|
13515
|
+
id: string;
|
13516
|
+
name: string;
|
13517
|
+
createdAt: Date;
|
13518
|
+
updatedAt: Date;
|
13519
|
+
deletedAt: Date | null;
|
13520
|
+
smtpHost: string;
|
13521
|
+
smtpPort: number;
|
13522
|
+
smtpTlsPort: number;
|
13523
|
+
useTlsForSmtp: boolean;
|
13524
|
+
imapHost: string;
|
13525
|
+
imapPort: number;
|
13526
|
+
imapTlsPort: number;
|
13527
|
+
useTlsForImap: boolean;
|
13528
|
+
};
|
13529
|
+
requestId: string;
|
13530
|
+
}>;
|
13531
|
+
};
|
13532
|
+
path: "mail/server/:id";
|
13533
|
+
};
|
13534
|
+
getAll: {
|
13535
|
+
summary: "Get all mail servers";
|
13536
|
+
method: "GET";
|
13537
|
+
responses: {
|
13538
|
+
401: import("zod").ZodObject<{
|
13353
13539
|
message: import("zod").ZodString;
|
13540
|
+
error: import("zod").ZodAny;
|
13354
13541
|
}, "strip", import("zod").ZodTypeAny, {
|
13355
13542
|
message: string;
|
13356
|
-
|
13543
|
+
error?: any;
|
13544
|
+
}, {
|
13545
|
+
message: string;
|
13546
|
+
error?: any;
|
13547
|
+
}>;
|
13548
|
+
404: import("zod").ZodObject<{
|
13549
|
+
message: import("zod").ZodString;
|
13550
|
+
error: import("zod").ZodAny;
|
13551
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13552
|
+
message: string;
|
13553
|
+
error?: any;
|
13554
|
+
}, {
|
13555
|
+
message: string;
|
13556
|
+
error?: any;
|
13557
|
+
}>;
|
13558
|
+
422: import("zod").ZodObject<{
|
13559
|
+
message: import("zod").ZodString;
|
13560
|
+
error: import("zod").ZodAny;
|
13561
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13562
|
+
message: string;
|
13563
|
+
error?: any;
|
13357
13564
|
}, {
|
13358
13565
|
message: string;
|
13566
|
+
error?: any;
|
13567
|
+
}>;
|
13568
|
+
200: import("zod").ZodObject<{
|
13569
|
+
requestId: import("zod").ZodString;
|
13570
|
+
data: import("zod").ZodArray<import("zod").ZodObject<{
|
13571
|
+
id: import("zod").ZodString;
|
13572
|
+
createdAt: import("zod").ZodDate;
|
13573
|
+
updatedAt: import("zod").ZodDate;
|
13574
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13575
|
+
name: import("zod").ZodString;
|
13576
|
+
smtpHost: import("zod").ZodString;
|
13577
|
+
smtpPort: import("zod").ZodNumber;
|
13578
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13579
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13580
|
+
imapHost: import("zod").ZodString;
|
13581
|
+
imapPort: import("zod").ZodNumber;
|
13582
|
+
imapTlsPort: import("zod").ZodNumber;
|
13583
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13584
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13585
|
+
id: string;
|
13586
|
+
name: string;
|
13587
|
+
createdAt: Date;
|
13588
|
+
updatedAt: Date;
|
13589
|
+
deletedAt: Date | null;
|
13590
|
+
smtpHost: string;
|
13591
|
+
smtpPort: number;
|
13592
|
+
smtpTlsPort: number;
|
13593
|
+
useTlsForSmtp: boolean;
|
13594
|
+
imapHost: string;
|
13595
|
+
imapPort: number;
|
13596
|
+
imapTlsPort: number;
|
13597
|
+
useTlsForImap: boolean;
|
13598
|
+
}, {
|
13599
|
+
id: string;
|
13600
|
+
name: string;
|
13601
|
+
createdAt: Date;
|
13602
|
+
updatedAt: Date;
|
13603
|
+
deletedAt: Date | null;
|
13604
|
+
smtpHost: string;
|
13605
|
+
smtpPort: number;
|
13606
|
+
smtpTlsPort: number;
|
13607
|
+
useTlsForSmtp: boolean;
|
13608
|
+
imapHost: string;
|
13609
|
+
imapPort: number;
|
13610
|
+
imapTlsPort: number;
|
13611
|
+
useTlsForImap: boolean;
|
13612
|
+
}>, "many">;
|
13613
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13614
|
+
data: {
|
13615
|
+
id: string;
|
13616
|
+
name: string;
|
13617
|
+
createdAt: Date;
|
13618
|
+
updatedAt: Date;
|
13619
|
+
deletedAt: Date | null;
|
13620
|
+
smtpHost: string;
|
13621
|
+
smtpPort: number;
|
13622
|
+
smtpTlsPort: number;
|
13623
|
+
useTlsForSmtp: boolean;
|
13624
|
+
imapHost: string;
|
13625
|
+
imapPort: number;
|
13626
|
+
imapTlsPort: number;
|
13627
|
+
useTlsForImap: boolean;
|
13628
|
+
}[];
|
13629
|
+
requestId: string;
|
13630
|
+
}, {
|
13631
|
+
data: {
|
13632
|
+
id: string;
|
13633
|
+
name: string;
|
13634
|
+
createdAt: Date;
|
13635
|
+
updatedAt: Date;
|
13636
|
+
deletedAt: Date | null;
|
13637
|
+
smtpHost: string;
|
13638
|
+
smtpPort: number;
|
13639
|
+
smtpTlsPort: number;
|
13640
|
+
useTlsForSmtp: boolean;
|
13641
|
+
imapHost: string;
|
13642
|
+
imapPort: number;
|
13643
|
+
imapTlsPort: number;
|
13644
|
+
useTlsForImap: boolean;
|
13645
|
+
}[];
|
13359
13646
|
requestId: string;
|
13360
13647
|
}>;
|
13361
13648
|
};
|
13362
|
-
path: "mail/server
|
13649
|
+
path: "mail/server/";
|
13363
13650
|
};
|
13364
13651
|
update: {
|
13365
|
-
body:
|
13366
|
-
|
13652
|
+
body: import("zod").ZodObject<{
|
13653
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
13654
|
+
smtpHost: import("zod").ZodOptional<import("zod").ZodString>;
|
13655
|
+
smtpPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
13656
|
+
smtpTlsPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
13657
|
+
useTlsForSmtp: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
13658
|
+
imapHost: import("zod").ZodOptional<import("zod").ZodString>;
|
13659
|
+
imapPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
13660
|
+
imapTlsPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
13661
|
+
useTlsForImap: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
13662
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13663
|
+
name?: string | undefined;
|
13664
|
+
smtpHost?: string | undefined;
|
13665
|
+
smtpPort?: number | undefined;
|
13666
|
+
smtpTlsPort?: number | undefined;
|
13667
|
+
useTlsForSmtp?: boolean | undefined;
|
13668
|
+
imapHost?: string | undefined;
|
13669
|
+
imapPort?: number | undefined;
|
13670
|
+
imapTlsPort?: number | undefined;
|
13671
|
+
useTlsForImap?: boolean | undefined;
|
13672
|
+
}, {
|
13673
|
+
name?: string | undefined;
|
13674
|
+
smtpHost?: string | undefined;
|
13675
|
+
smtpPort?: number | undefined;
|
13676
|
+
smtpTlsPort?: number | undefined;
|
13677
|
+
useTlsForSmtp?: boolean | undefined;
|
13678
|
+
imapHost?: string | undefined;
|
13679
|
+
imapPort?: number | undefined;
|
13680
|
+
imapTlsPort?: number | undefined;
|
13681
|
+
useTlsForImap?: boolean | undefined;
|
13682
|
+
}>;
|
13683
|
+
summary: "Update a mail server";
|
13367
13684
|
method: "PATCH";
|
13368
13685
|
pathParams: import("zod").ZodObject<{
|
13369
13686
|
id: import("zod").ZodString;
|
@@ -13405,12 +13722,82 @@ export declare const apiContract: {
|
|
13405
13722
|
}>;
|
13406
13723
|
200: import("zod").ZodObject<{
|
13407
13724
|
requestId: import("zod").ZodString;
|
13408
|
-
|
13725
|
+
data: import("zod").ZodObject<{
|
13726
|
+
id: import("zod").ZodString;
|
13727
|
+
createdAt: import("zod").ZodDate;
|
13728
|
+
updatedAt: import("zod").ZodDate;
|
13729
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13730
|
+
name: import("zod").ZodString;
|
13731
|
+
smtpHost: import("zod").ZodString;
|
13732
|
+
smtpPort: import("zod").ZodNumber;
|
13733
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13734
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13735
|
+
imapHost: import("zod").ZodString;
|
13736
|
+
imapPort: import("zod").ZodNumber;
|
13737
|
+
imapTlsPort: import("zod").ZodNumber;
|
13738
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13739
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13740
|
+
id: string;
|
13741
|
+
name: string;
|
13742
|
+
createdAt: Date;
|
13743
|
+
updatedAt: Date;
|
13744
|
+
deletedAt: Date | null;
|
13745
|
+
smtpHost: string;
|
13746
|
+
smtpPort: number;
|
13747
|
+
smtpTlsPort: number;
|
13748
|
+
useTlsForSmtp: boolean;
|
13749
|
+
imapHost: string;
|
13750
|
+
imapPort: number;
|
13751
|
+
imapTlsPort: number;
|
13752
|
+
useTlsForImap: boolean;
|
13753
|
+
}, {
|
13754
|
+
id: string;
|
13755
|
+
name: string;
|
13756
|
+
createdAt: Date;
|
13757
|
+
updatedAt: Date;
|
13758
|
+
deletedAt: Date | null;
|
13759
|
+
smtpHost: string;
|
13760
|
+
smtpPort: number;
|
13761
|
+
smtpTlsPort: number;
|
13762
|
+
useTlsForSmtp: boolean;
|
13763
|
+
imapHost: string;
|
13764
|
+
imapPort: number;
|
13765
|
+
imapTlsPort: number;
|
13766
|
+
useTlsForImap: boolean;
|
13767
|
+
}>;
|
13409
13768
|
}, "strip", import("zod").ZodTypeAny, {
|
13410
|
-
|
13769
|
+
data: {
|
13770
|
+
id: string;
|
13771
|
+
name: string;
|
13772
|
+
createdAt: Date;
|
13773
|
+
updatedAt: Date;
|
13774
|
+
deletedAt: Date | null;
|
13775
|
+
smtpHost: string;
|
13776
|
+
smtpPort: number;
|
13777
|
+
smtpTlsPort: number;
|
13778
|
+
useTlsForSmtp: boolean;
|
13779
|
+
imapHost: string;
|
13780
|
+
imapPort: number;
|
13781
|
+
imapTlsPort: number;
|
13782
|
+
useTlsForImap: boolean;
|
13783
|
+
};
|
13411
13784
|
requestId: string;
|
13412
13785
|
}, {
|
13413
|
-
|
13786
|
+
data: {
|
13787
|
+
id: string;
|
13788
|
+
name: string;
|
13789
|
+
createdAt: Date;
|
13790
|
+
updatedAt: Date;
|
13791
|
+
deletedAt: Date | null;
|
13792
|
+
smtpHost: string;
|
13793
|
+
smtpPort: number;
|
13794
|
+
smtpTlsPort: number;
|
13795
|
+
useTlsForSmtp: boolean;
|
13796
|
+
imapHost: string;
|
13797
|
+
imapPort: number;
|
13798
|
+
imapTlsPort: number;
|
13799
|
+
useTlsForImap: boolean;
|
13800
|
+
};
|
13414
13801
|
requestId: string;
|
13415
13802
|
}>;
|
13416
13803
|
};
|
@@ -13418,8 +13805,8 @@ export declare const apiContract: {
|
|
13418
13805
|
};
|
13419
13806
|
delete: {
|
13420
13807
|
body: null;
|
13421
|
-
summary: "Delete a mail server
|
13422
|
-
method: "
|
13808
|
+
summary: "Delete a mail server";
|
13809
|
+
method: "DELETE";
|
13423
13810
|
pathParams: import("zod").ZodObject<{
|
13424
13811
|
id: import("zod").ZodString;
|
13425
13812
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -13460,12 +13847,82 @@ export declare const apiContract: {
|
|
13460
13847
|
}>;
|
13461
13848
|
200: import("zod").ZodObject<{
|
13462
13849
|
requestId: import("zod").ZodString;
|
13463
|
-
|
13850
|
+
data: import("zod").ZodObject<{
|
13851
|
+
id: import("zod").ZodString;
|
13852
|
+
createdAt: import("zod").ZodDate;
|
13853
|
+
updatedAt: import("zod").ZodDate;
|
13854
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13855
|
+
name: import("zod").ZodString;
|
13856
|
+
smtpHost: import("zod").ZodString;
|
13857
|
+
smtpPort: import("zod").ZodNumber;
|
13858
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13859
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13860
|
+
imapHost: import("zod").ZodString;
|
13861
|
+
imapPort: import("zod").ZodNumber;
|
13862
|
+
imapTlsPort: import("zod").ZodNumber;
|
13863
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13864
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13865
|
+
id: string;
|
13866
|
+
name: string;
|
13867
|
+
createdAt: Date;
|
13868
|
+
updatedAt: Date;
|
13869
|
+
deletedAt: Date | null;
|
13870
|
+
smtpHost: string;
|
13871
|
+
smtpPort: number;
|
13872
|
+
smtpTlsPort: number;
|
13873
|
+
useTlsForSmtp: boolean;
|
13874
|
+
imapHost: string;
|
13875
|
+
imapPort: number;
|
13876
|
+
imapTlsPort: number;
|
13877
|
+
useTlsForImap: boolean;
|
13878
|
+
}, {
|
13879
|
+
id: string;
|
13880
|
+
name: string;
|
13881
|
+
createdAt: Date;
|
13882
|
+
updatedAt: Date;
|
13883
|
+
deletedAt: Date | null;
|
13884
|
+
smtpHost: string;
|
13885
|
+
smtpPort: number;
|
13886
|
+
smtpTlsPort: number;
|
13887
|
+
useTlsForSmtp: boolean;
|
13888
|
+
imapHost: string;
|
13889
|
+
imapPort: number;
|
13890
|
+
imapTlsPort: number;
|
13891
|
+
useTlsForImap: boolean;
|
13892
|
+
}>;
|
13464
13893
|
}, "strip", import("zod").ZodTypeAny, {
|
13465
|
-
|
13894
|
+
data: {
|
13895
|
+
id: string;
|
13896
|
+
name: string;
|
13897
|
+
createdAt: Date;
|
13898
|
+
updatedAt: Date;
|
13899
|
+
deletedAt: Date | null;
|
13900
|
+
smtpHost: string;
|
13901
|
+
smtpPort: number;
|
13902
|
+
smtpTlsPort: number;
|
13903
|
+
useTlsForSmtp: boolean;
|
13904
|
+
imapHost: string;
|
13905
|
+
imapPort: number;
|
13906
|
+
imapTlsPort: number;
|
13907
|
+
useTlsForImap: boolean;
|
13908
|
+
};
|
13466
13909
|
requestId: string;
|
13467
13910
|
}, {
|
13468
|
-
|
13911
|
+
data: {
|
13912
|
+
id: string;
|
13913
|
+
name: string;
|
13914
|
+
createdAt: Date;
|
13915
|
+
updatedAt: Date;
|
13916
|
+
deletedAt: Date | null;
|
13917
|
+
smtpHost: string;
|
13918
|
+
smtpPort: number;
|
13919
|
+
smtpTlsPort: number;
|
13920
|
+
useTlsForSmtp: boolean;
|
13921
|
+
imapHost: string;
|
13922
|
+
imapPort: number;
|
13923
|
+
imapTlsPort: number;
|
13924
|
+
useTlsForImap: boolean;
|
13925
|
+
};
|
13469
13926
|
requestId: string;
|
13470
13927
|
}>;
|
13471
13928
|
};
|
@@ -25099,7 +25556,648 @@ export declare const apiContract: {
|
|
25099
25556
|
extensionName: string;
|
25100
25557
|
telephonySignature: string | null;
|
25101
25558
|
};
|
25102
|
-
}, import("zod").ZodTypeDef, {
|
25559
|
+
}, import("zod").ZodTypeDef, {
|
25560
|
+
id: string;
|
25561
|
+
address: string | null;
|
25562
|
+
name: string;
|
25563
|
+
email: string;
|
25564
|
+
createdAt: Date;
|
25565
|
+
updatedAt: Date;
|
25566
|
+
deletedAt: Date | null;
|
25567
|
+
emailVerifiedAt: Date | null;
|
25568
|
+
password: string;
|
25569
|
+
phone: string | null;
|
25570
|
+
notificationCount: number | null;
|
25571
|
+
roles: {
|
25572
|
+
id: string;
|
25573
|
+
description: string | null;
|
25574
|
+
createdAt: Date;
|
25575
|
+
updatedAt: Date;
|
25576
|
+
deletedAt: Date | null;
|
25577
|
+
systemName: string;
|
25578
|
+
displayName: string;
|
25579
|
+
permissions: {
|
25580
|
+
id: string;
|
25581
|
+
description: string | null;
|
25582
|
+
createdAt: Date;
|
25583
|
+
updatedAt: Date;
|
25584
|
+
deletedAt: Date | null;
|
25585
|
+
systemName: string;
|
25586
|
+
displayName: string;
|
25587
|
+
}[];
|
25588
|
+
}[];
|
25589
|
+
extension: {
|
25590
|
+
id: string;
|
25591
|
+
createdAt: Date;
|
25592
|
+
updatedAt: Date;
|
25593
|
+
deletedAt: Date | null;
|
25594
|
+
userId: string | null;
|
25595
|
+
sipServerUrl: string;
|
25596
|
+
sipUserName: string;
|
25597
|
+
webphoneLoginUser: string;
|
25598
|
+
extensionId: string | null;
|
25599
|
+
extensionName: string;
|
25600
|
+
telephonySignature: string | null;
|
25601
|
+
};
|
25602
|
+
}>, "many">;
|
25603
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25604
|
+
data: {
|
25605
|
+
id: string;
|
25606
|
+
address: string | null;
|
25607
|
+
name: string;
|
25608
|
+
email: string;
|
25609
|
+
createdAt: Date;
|
25610
|
+
updatedAt: Date;
|
25611
|
+
deletedAt: Date | null;
|
25612
|
+
emailVerifiedAt: Date | null;
|
25613
|
+
password: string;
|
25614
|
+
phone: string | null;
|
25615
|
+
notificationCount: number | null;
|
25616
|
+
roles: {
|
25617
|
+
id: string;
|
25618
|
+
description: string | null;
|
25619
|
+
createdAt: Date;
|
25620
|
+
updatedAt: Date;
|
25621
|
+
deletedAt: Date | null;
|
25622
|
+
systemName: string;
|
25623
|
+
displayName: string;
|
25624
|
+
permissions: {
|
25625
|
+
id: string;
|
25626
|
+
description: string | null;
|
25627
|
+
createdAt: Date;
|
25628
|
+
updatedAt: Date;
|
25629
|
+
deletedAt: Date | null;
|
25630
|
+
systemName: string;
|
25631
|
+
displayName: string;
|
25632
|
+
}[];
|
25633
|
+
}[];
|
25634
|
+
extension: {
|
25635
|
+
id: string;
|
25636
|
+
createdAt: Date;
|
25637
|
+
updatedAt: Date;
|
25638
|
+
deletedAt: Date | null;
|
25639
|
+
userId: string | null;
|
25640
|
+
sipServerUrl: string;
|
25641
|
+
sipUserName: string;
|
25642
|
+
webphoneLoginUser: string;
|
25643
|
+
extensionId: string | null;
|
25644
|
+
extensionName: string;
|
25645
|
+
telephonySignature: string | null;
|
25646
|
+
};
|
25647
|
+
}[];
|
25648
|
+
total: number;
|
25649
|
+
page: number;
|
25650
|
+
pageSize: number;
|
25651
|
+
lastPage?: number | null | undefined;
|
25652
|
+
}, {
|
25653
|
+
data: {
|
25654
|
+
id: string;
|
25655
|
+
address: string | null;
|
25656
|
+
name: string;
|
25657
|
+
email: string;
|
25658
|
+
createdAt: Date;
|
25659
|
+
updatedAt: Date;
|
25660
|
+
deletedAt: Date | null;
|
25661
|
+
emailVerifiedAt: Date | null;
|
25662
|
+
password: string;
|
25663
|
+
phone: string | null;
|
25664
|
+
notificationCount: number | null;
|
25665
|
+
roles: {
|
25666
|
+
id: string;
|
25667
|
+
description: string | null;
|
25668
|
+
createdAt: Date;
|
25669
|
+
updatedAt: Date;
|
25670
|
+
deletedAt: Date | null;
|
25671
|
+
systemName: string;
|
25672
|
+
displayName: string;
|
25673
|
+
permissions: {
|
25674
|
+
id: string;
|
25675
|
+
description: string | null;
|
25676
|
+
createdAt: Date;
|
25677
|
+
updatedAt: Date;
|
25678
|
+
deletedAt: Date | null;
|
25679
|
+
systemName: string;
|
25680
|
+
displayName: string;
|
25681
|
+
}[];
|
25682
|
+
}[];
|
25683
|
+
extension: {
|
25684
|
+
id: string;
|
25685
|
+
createdAt: Date;
|
25686
|
+
updatedAt: Date;
|
25687
|
+
deletedAt: Date | null;
|
25688
|
+
userId: string | null;
|
25689
|
+
sipServerUrl: string;
|
25690
|
+
sipUserName: string;
|
25691
|
+
webphoneLoginUser: string;
|
25692
|
+
extensionId: string | null;
|
25693
|
+
extensionName: string;
|
25694
|
+
telephonySignature: string | null;
|
25695
|
+
};
|
25696
|
+
}[];
|
25697
|
+
total: number;
|
25698
|
+
page?: number | undefined;
|
25699
|
+
pageSize?: number | undefined;
|
25700
|
+
lastPage?: number | null | undefined;
|
25701
|
+
}>;
|
25702
|
+
400: import("zod").ZodObject<{
|
25703
|
+
message: import("zod").ZodString;
|
25704
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25705
|
+
message: string;
|
25706
|
+
}, {
|
25707
|
+
message: string;
|
25708
|
+
}>;
|
25709
|
+
401: import("zod").ZodObject<{
|
25710
|
+
message: import("zod").ZodString;
|
25711
|
+
error: import("zod").ZodAny;
|
25712
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25713
|
+
message: string;
|
25714
|
+
error?: any;
|
25715
|
+
}, {
|
25716
|
+
message: string;
|
25717
|
+
error?: any;
|
25718
|
+
}>;
|
25719
|
+
500: import("zod").ZodObject<{
|
25720
|
+
message: import("zod").ZodString;
|
25721
|
+
error: import("zod").ZodAny;
|
25722
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25723
|
+
message: string;
|
25724
|
+
error?: any;
|
25725
|
+
}, {
|
25726
|
+
message: string;
|
25727
|
+
error?: any;
|
25728
|
+
}>;
|
25729
|
+
};
|
25730
|
+
path: "user";
|
25731
|
+
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
25732
|
+
'x-tenant': import("zod").ZodString;
|
25733
|
+
authorization: import("zod").ZodString;
|
25734
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
25735
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
25736
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25737
|
+
'x-tenant': string;
|
25738
|
+
authorization: string;
|
25739
|
+
'x-client-timezone': string;
|
25740
|
+
'x-code'?: string | undefined;
|
25741
|
+
}, {
|
25742
|
+
'x-tenant': string;
|
25743
|
+
authorization: string;
|
25744
|
+
'x-code'?: string | undefined;
|
25745
|
+
'x-client-timezone'?: string | undefined;
|
25746
|
+
}>>>;
|
25747
|
+
};
|
25748
|
+
getUserById: {
|
25749
|
+
summary: "Get user by id";
|
25750
|
+
method: "GET";
|
25751
|
+
pathParams: import("zod").ZodObject<{
|
25752
|
+
id: import("zod").ZodString;
|
25753
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25754
|
+
id: string;
|
25755
|
+
}, {
|
25756
|
+
id: string;
|
25757
|
+
}>;
|
25758
|
+
responses: {
|
25759
|
+
200: import("zod").ZodObject<{
|
25760
|
+
id: import("zod").ZodString;
|
25761
|
+
createdAt: import("zod").ZodDate;
|
25762
|
+
updatedAt: import("zod").ZodDate;
|
25763
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
25764
|
+
name: import("zod").ZodString;
|
25765
|
+
email: import("zod").ZodString;
|
25766
|
+
emailVerifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
25767
|
+
password: import("zod").ZodString;
|
25768
|
+
address: import("zod").ZodNullable<import("zod").ZodString>;
|
25769
|
+
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
25770
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
25771
|
+
roles: import("zod").ZodArray<import("zod").ZodObject<{
|
25772
|
+
id: import("zod").ZodString;
|
25773
|
+
createdAt: import("zod").ZodDate;
|
25774
|
+
updatedAt: import("zod").ZodDate;
|
25775
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
25776
|
+
systemName: import("zod").ZodString;
|
25777
|
+
displayName: import("zod").ZodString;
|
25778
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
25779
|
+
permissions: import("zod").ZodArray<import("zod").ZodObject<{
|
25780
|
+
id: import("zod").ZodString;
|
25781
|
+
createdAt: import("zod").ZodDate;
|
25782
|
+
updatedAt: import("zod").ZodDate;
|
25783
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
25784
|
+
systemName: import("zod").ZodString;
|
25785
|
+
displayName: import("zod").ZodString;
|
25786
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
25787
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25788
|
+
id: string;
|
25789
|
+
description: string | null;
|
25790
|
+
createdAt: Date;
|
25791
|
+
updatedAt: Date;
|
25792
|
+
deletedAt: Date | null;
|
25793
|
+
systemName: string;
|
25794
|
+
displayName: string;
|
25795
|
+
}, {
|
25796
|
+
id: string;
|
25797
|
+
description: string | null;
|
25798
|
+
createdAt: Date;
|
25799
|
+
updatedAt: Date;
|
25800
|
+
deletedAt: Date | null;
|
25801
|
+
systemName: string;
|
25802
|
+
displayName: string;
|
25803
|
+
}>, "many">;
|
25804
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25805
|
+
id: string;
|
25806
|
+
description: string | null;
|
25807
|
+
createdAt: Date;
|
25808
|
+
updatedAt: Date;
|
25809
|
+
deletedAt: Date | null;
|
25810
|
+
systemName: string;
|
25811
|
+
displayName: string;
|
25812
|
+
permissions: {
|
25813
|
+
id: string;
|
25814
|
+
description: string | null;
|
25815
|
+
createdAt: Date;
|
25816
|
+
updatedAt: Date;
|
25817
|
+
deletedAt: Date | null;
|
25818
|
+
systemName: string;
|
25819
|
+
displayName: string;
|
25820
|
+
}[];
|
25821
|
+
}, {
|
25822
|
+
id: string;
|
25823
|
+
description: string | null;
|
25824
|
+
createdAt: Date;
|
25825
|
+
updatedAt: Date;
|
25826
|
+
deletedAt: Date | null;
|
25827
|
+
systemName: string;
|
25828
|
+
displayName: string;
|
25829
|
+
permissions: {
|
25830
|
+
id: string;
|
25831
|
+
description: string | null;
|
25832
|
+
createdAt: Date;
|
25833
|
+
updatedAt: Date;
|
25834
|
+
deletedAt: Date | null;
|
25835
|
+
systemName: string;
|
25836
|
+
displayName: string;
|
25837
|
+
}[];
|
25838
|
+
}>, "many">;
|
25839
|
+
extension: import("zod").ZodObject<{
|
25840
|
+
id: import("zod").ZodString;
|
25841
|
+
createdAt: import("zod").ZodDate;
|
25842
|
+
updatedAt: import("zod").ZodDate;
|
25843
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
25844
|
+
userId: import("zod").ZodNullable<import("zod").ZodString>;
|
25845
|
+
sipServerUrl: import("zod").ZodString;
|
25846
|
+
sipUserName: import("zod").ZodString;
|
25847
|
+
webphoneLoginUser: import("zod").ZodString;
|
25848
|
+
extensionId: import("zod").ZodNullable<import("zod").ZodString>;
|
25849
|
+
extensionName: import("zod").ZodString;
|
25850
|
+
telephonySignature: import("zod").ZodNullable<import("zod").ZodString>;
|
25851
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25852
|
+
id: string;
|
25853
|
+
createdAt: Date;
|
25854
|
+
updatedAt: Date;
|
25855
|
+
deletedAt: Date | null;
|
25856
|
+
userId: string | null;
|
25857
|
+
sipServerUrl: string;
|
25858
|
+
sipUserName: string;
|
25859
|
+
webphoneLoginUser: string;
|
25860
|
+
extensionId: string | null;
|
25861
|
+
extensionName: string;
|
25862
|
+
telephonySignature: string | null;
|
25863
|
+
}, {
|
25864
|
+
id: string;
|
25865
|
+
createdAt: Date;
|
25866
|
+
updatedAt: Date;
|
25867
|
+
deletedAt: Date | null;
|
25868
|
+
userId: string | null;
|
25869
|
+
sipServerUrl: string;
|
25870
|
+
sipUserName: string;
|
25871
|
+
webphoneLoginUser: string;
|
25872
|
+
extensionId: string | null;
|
25873
|
+
extensionName: string;
|
25874
|
+
telephonySignature: string | null;
|
25875
|
+
}>;
|
25876
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25877
|
+
id: string;
|
25878
|
+
address: string | null;
|
25879
|
+
name: string;
|
25880
|
+
email: string;
|
25881
|
+
createdAt: Date;
|
25882
|
+
updatedAt: Date;
|
25883
|
+
deletedAt: Date | null;
|
25884
|
+
emailVerifiedAt: Date | null;
|
25885
|
+
password: string;
|
25886
|
+
phone: string | null;
|
25887
|
+
notificationCount: number | null;
|
25888
|
+
roles: {
|
25889
|
+
id: string;
|
25890
|
+
description: string | null;
|
25891
|
+
createdAt: Date;
|
25892
|
+
updatedAt: Date;
|
25893
|
+
deletedAt: Date | null;
|
25894
|
+
systemName: string;
|
25895
|
+
displayName: string;
|
25896
|
+
permissions: {
|
25897
|
+
id: string;
|
25898
|
+
description: string | null;
|
25899
|
+
createdAt: Date;
|
25900
|
+
updatedAt: Date;
|
25901
|
+
deletedAt: Date | null;
|
25902
|
+
systemName: string;
|
25903
|
+
displayName: string;
|
25904
|
+
}[];
|
25905
|
+
}[];
|
25906
|
+
extension: {
|
25907
|
+
id: string;
|
25908
|
+
createdAt: Date;
|
25909
|
+
updatedAt: Date;
|
25910
|
+
deletedAt: Date | null;
|
25911
|
+
userId: string | null;
|
25912
|
+
sipServerUrl: string;
|
25913
|
+
sipUserName: string;
|
25914
|
+
webphoneLoginUser: string;
|
25915
|
+
extensionId: string | null;
|
25916
|
+
extensionName: string;
|
25917
|
+
telephonySignature: string | null;
|
25918
|
+
};
|
25919
|
+
}, {
|
25920
|
+
id: string;
|
25921
|
+
address: string | null;
|
25922
|
+
name: string;
|
25923
|
+
email: string;
|
25924
|
+
createdAt: Date;
|
25925
|
+
updatedAt: Date;
|
25926
|
+
deletedAt: Date | null;
|
25927
|
+
emailVerifiedAt: Date | null;
|
25928
|
+
password: string;
|
25929
|
+
phone: string | null;
|
25930
|
+
notificationCount: number | null;
|
25931
|
+
roles: {
|
25932
|
+
id: string;
|
25933
|
+
description: string | null;
|
25934
|
+
createdAt: Date;
|
25935
|
+
updatedAt: Date;
|
25936
|
+
deletedAt: Date | null;
|
25937
|
+
systemName: string;
|
25938
|
+
displayName: string;
|
25939
|
+
permissions: {
|
25940
|
+
id: string;
|
25941
|
+
description: string | null;
|
25942
|
+
createdAt: Date;
|
25943
|
+
updatedAt: Date;
|
25944
|
+
deletedAt: Date | null;
|
25945
|
+
systemName: string;
|
25946
|
+
displayName: string;
|
25947
|
+
}[];
|
25948
|
+
}[];
|
25949
|
+
extension: {
|
25950
|
+
id: string;
|
25951
|
+
createdAt: Date;
|
25952
|
+
updatedAt: Date;
|
25953
|
+
deletedAt: Date | null;
|
25954
|
+
userId: string | null;
|
25955
|
+
sipServerUrl: string;
|
25956
|
+
sipUserName: string;
|
25957
|
+
webphoneLoginUser: string;
|
25958
|
+
extensionId: string | null;
|
25959
|
+
extensionName: string;
|
25960
|
+
telephonySignature: string | null;
|
25961
|
+
};
|
25962
|
+
}>;
|
25963
|
+
400: import("zod").ZodObject<{
|
25964
|
+
message: import("zod").ZodString;
|
25965
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25966
|
+
message: string;
|
25967
|
+
}, {
|
25968
|
+
message: string;
|
25969
|
+
}>;
|
25970
|
+
401: import("zod").ZodObject<{
|
25971
|
+
message: import("zod").ZodString;
|
25972
|
+
error: import("zod").ZodAny;
|
25973
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25974
|
+
message: string;
|
25975
|
+
error?: any;
|
25976
|
+
}, {
|
25977
|
+
message: string;
|
25978
|
+
error?: any;
|
25979
|
+
}>;
|
25980
|
+
};
|
25981
|
+
path: "user/:id";
|
25982
|
+
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
25983
|
+
'x-tenant': import("zod").ZodString;
|
25984
|
+
authorization: import("zod").ZodString;
|
25985
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
25986
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
25987
|
+
}, "strip", import("zod").ZodTypeAny, {
|
25988
|
+
'x-tenant': string;
|
25989
|
+
authorization: string;
|
25990
|
+
'x-client-timezone': string;
|
25991
|
+
'x-code'?: string | undefined;
|
25992
|
+
}, {
|
25993
|
+
'x-tenant': string;
|
25994
|
+
authorization: string;
|
25995
|
+
'x-code'?: string | undefined;
|
25996
|
+
'x-client-timezone'?: string | undefined;
|
25997
|
+
}>>>;
|
25998
|
+
};
|
25999
|
+
updateUser: {
|
26000
|
+
body: import("zod").ZodObject<{
|
26001
|
+
address: import("zod").ZodNullable<import("zod").ZodString>;
|
26002
|
+
name: import("zod").ZodString;
|
26003
|
+
email: import("zod").ZodString;
|
26004
|
+
password: import("zod").ZodString;
|
26005
|
+
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
26006
|
+
notificationCount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
26007
|
+
roles: import("zod").ZodArray<import("zod").ZodString, "many">;
|
26008
|
+
newPassword: import("zod").ZodString;
|
26009
|
+
}, "strip", import("zod").ZodTypeAny, {
|
26010
|
+
address: string | null;
|
26011
|
+
name: string;
|
26012
|
+
email: string;
|
26013
|
+
password: string;
|
26014
|
+
phone: string | null;
|
26015
|
+
roles: string[];
|
26016
|
+
newPassword: string;
|
26017
|
+
notificationCount?: number | null | undefined;
|
26018
|
+
}, {
|
26019
|
+
address: string | null;
|
26020
|
+
name: string;
|
26021
|
+
email: string;
|
26022
|
+
password: string;
|
26023
|
+
phone: string | null;
|
26024
|
+
roles: string[];
|
26025
|
+
newPassword: string;
|
26026
|
+
notificationCount?: number | null | undefined;
|
26027
|
+
}>;
|
26028
|
+
summary: "Update a user.";
|
26029
|
+
method: "PATCH";
|
26030
|
+
pathParams: import("zod").ZodObject<{
|
26031
|
+
id: import("zod").ZodString;
|
26032
|
+
}, "strip", import("zod").ZodTypeAny, {
|
26033
|
+
id: string;
|
26034
|
+
}, {
|
26035
|
+
id: string;
|
26036
|
+
}>;
|
26037
|
+
responses: {
|
26038
|
+
201: import("zod").ZodObject<{
|
26039
|
+
requestId: import("zod").ZodString;
|
26040
|
+
user: import("zod").ZodObject<{
|
26041
|
+
id: import("zod").ZodString;
|
26042
|
+
createdAt: import("zod").ZodDate;
|
26043
|
+
updatedAt: import("zod").ZodDate;
|
26044
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
26045
|
+
name: import("zod").ZodString;
|
26046
|
+
email: import("zod").ZodString;
|
26047
|
+
emailVerifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
26048
|
+
password: import("zod").ZodString;
|
26049
|
+
address: import("zod").ZodNullable<import("zod").ZodString>;
|
26050
|
+
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
26051
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
26052
|
+
roles: import("zod").ZodArray<import("zod").ZodObject<{
|
26053
|
+
id: import("zod").ZodString;
|
26054
|
+
createdAt: import("zod").ZodDate;
|
26055
|
+
updatedAt: import("zod").ZodDate;
|
26056
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
26057
|
+
systemName: import("zod").ZodString;
|
26058
|
+
displayName: import("zod").ZodString;
|
26059
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
26060
|
+
permissions: import("zod").ZodArray<import("zod").ZodObject<{
|
26061
|
+
id: import("zod").ZodString;
|
26062
|
+
createdAt: import("zod").ZodDate;
|
26063
|
+
updatedAt: import("zod").ZodDate;
|
26064
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
26065
|
+
systemName: import("zod").ZodString;
|
26066
|
+
displayName: import("zod").ZodString;
|
26067
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
26068
|
+
}, "strip", import("zod").ZodTypeAny, {
|
26069
|
+
id: string;
|
26070
|
+
description: string | null;
|
26071
|
+
createdAt: Date;
|
26072
|
+
updatedAt: Date;
|
26073
|
+
deletedAt: Date | null;
|
26074
|
+
systemName: string;
|
26075
|
+
displayName: string;
|
26076
|
+
}, {
|
26077
|
+
id: string;
|
26078
|
+
description: string | null;
|
26079
|
+
createdAt: Date;
|
26080
|
+
updatedAt: Date;
|
26081
|
+
deletedAt: Date | null;
|
26082
|
+
systemName: string;
|
26083
|
+
displayName: string;
|
26084
|
+
}>, "many">;
|
26085
|
+
}, "strip", import("zod").ZodTypeAny, {
|
26086
|
+
id: string;
|
26087
|
+
description: string | null;
|
26088
|
+
createdAt: Date;
|
26089
|
+
updatedAt: Date;
|
26090
|
+
deletedAt: Date | null;
|
26091
|
+
systemName: string;
|
26092
|
+
displayName: string;
|
26093
|
+
permissions: {
|
26094
|
+
id: string;
|
26095
|
+
description: string | null;
|
26096
|
+
createdAt: Date;
|
26097
|
+
updatedAt: Date;
|
26098
|
+
deletedAt: Date | null;
|
26099
|
+
systemName: string;
|
26100
|
+
displayName: string;
|
26101
|
+
}[];
|
26102
|
+
}, {
|
26103
|
+
id: string;
|
26104
|
+
description: string | null;
|
26105
|
+
createdAt: Date;
|
26106
|
+
updatedAt: Date;
|
26107
|
+
deletedAt: Date | null;
|
26108
|
+
systemName: string;
|
26109
|
+
displayName: string;
|
26110
|
+
permissions: {
|
26111
|
+
id: string;
|
26112
|
+
description: string | null;
|
26113
|
+
createdAt: Date;
|
26114
|
+
updatedAt: Date;
|
26115
|
+
deletedAt: Date | null;
|
26116
|
+
systemName: string;
|
26117
|
+
displayName: string;
|
26118
|
+
}[];
|
26119
|
+
}>, "many">;
|
26120
|
+
extension: import("zod").ZodObject<{
|
26121
|
+
id: import("zod").ZodString;
|
26122
|
+
createdAt: import("zod").ZodDate;
|
26123
|
+
updatedAt: import("zod").ZodDate;
|
26124
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
26125
|
+
userId: import("zod").ZodNullable<import("zod").ZodString>;
|
26126
|
+
sipServerUrl: import("zod").ZodString;
|
26127
|
+
sipUserName: import("zod").ZodString;
|
26128
|
+
webphoneLoginUser: import("zod").ZodString;
|
26129
|
+
extensionId: import("zod").ZodNullable<import("zod").ZodString>;
|
26130
|
+
extensionName: import("zod").ZodString;
|
26131
|
+
telephonySignature: import("zod").ZodNullable<import("zod").ZodString>;
|
26132
|
+
}, "strip", import("zod").ZodTypeAny, {
|
26133
|
+
id: string;
|
26134
|
+
createdAt: Date;
|
26135
|
+
updatedAt: Date;
|
26136
|
+
deletedAt: Date | null;
|
26137
|
+
userId: string | null;
|
26138
|
+
sipServerUrl: string;
|
26139
|
+
sipUserName: string;
|
26140
|
+
webphoneLoginUser: string;
|
26141
|
+
extensionId: string | null;
|
26142
|
+
extensionName: string;
|
26143
|
+
telephonySignature: string | null;
|
26144
|
+
}, {
|
26145
|
+
id: string;
|
26146
|
+
createdAt: Date;
|
26147
|
+
updatedAt: Date;
|
26148
|
+
deletedAt: Date | null;
|
26149
|
+
userId: string | null;
|
26150
|
+
sipServerUrl: string;
|
26151
|
+
sipUserName: string;
|
26152
|
+
webphoneLoginUser: string;
|
26153
|
+
extensionId: string | null;
|
26154
|
+
extensionName: string;
|
26155
|
+
telephonySignature: string | null;
|
26156
|
+
}>;
|
26157
|
+
}, "strip", import("zod").ZodTypeAny, {
|
26158
|
+
id: string;
|
26159
|
+
address: string | null;
|
26160
|
+
name: string;
|
26161
|
+
email: string;
|
26162
|
+
createdAt: Date;
|
26163
|
+
updatedAt: Date;
|
26164
|
+
deletedAt: Date | null;
|
26165
|
+
emailVerifiedAt: Date | null;
|
26166
|
+
password: string;
|
26167
|
+
phone: string | null;
|
26168
|
+
notificationCount: number | null;
|
26169
|
+
roles: {
|
26170
|
+
id: string;
|
26171
|
+
description: string | null;
|
26172
|
+
createdAt: Date;
|
26173
|
+
updatedAt: Date;
|
26174
|
+
deletedAt: Date | null;
|
26175
|
+
systemName: string;
|
26176
|
+
displayName: string;
|
26177
|
+
permissions: {
|
26178
|
+
id: string;
|
26179
|
+
description: string | null;
|
26180
|
+
createdAt: Date;
|
26181
|
+
updatedAt: Date;
|
26182
|
+
deletedAt: Date | null;
|
26183
|
+
systemName: string;
|
26184
|
+
displayName: string;
|
26185
|
+
}[];
|
26186
|
+
}[];
|
26187
|
+
extension: {
|
26188
|
+
id: string;
|
26189
|
+
createdAt: Date;
|
26190
|
+
updatedAt: Date;
|
26191
|
+
deletedAt: Date | null;
|
26192
|
+
userId: string | null;
|
26193
|
+
sipServerUrl: string;
|
26194
|
+
sipUserName: string;
|
26195
|
+
webphoneLoginUser: string;
|
26196
|
+
extensionId: string | null;
|
26197
|
+
extensionName: string;
|
26198
|
+
telephonySignature: string | null;
|
26199
|
+
};
|
26200
|
+
}, {
|
25103
26201
|
id: string;
|
25104
26202
|
address: string | null;
|
25105
26203
|
name: string;
|
@@ -25142,9 +26240,9 @@ export declare const apiContract: {
|
|
25142
26240
|
extensionName: string;
|
25143
26241
|
telephonySignature: string | null;
|
25144
26242
|
};
|
25145
|
-
}
|
26243
|
+
}>;
|
25146
26244
|
}, "strip", import("zod").ZodTypeAny, {
|
25147
|
-
|
26245
|
+
user: {
|
25148
26246
|
id: string;
|
25149
26247
|
address: string | null;
|
25150
26248
|
name: string;
|
@@ -25187,13 +26285,10 @@ export declare const apiContract: {
|
|
25187
26285
|
extensionName: string;
|
25188
26286
|
telephonySignature: string | null;
|
25189
26287
|
};
|
25190
|
-
}
|
25191
|
-
|
25192
|
-
page: number;
|
25193
|
-
pageSize: number;
|
25194
|
-
lastPage?: number | null | undefined;
|
26288
|
+
};
|
26289
|
+
requestId: string;
|
25195
26290
|
}, {
|
25196
|
-
|
26291
|
+
user: {
|
25197
26292
|
id: string;
|
25198
26293
|
address: string | null;
|
25199
26294
|
name: string;
|
@@ -25236,11 +26331,8 @@ export declare const apiContract: {
|
|
25236
26331
|
extensionName: string;
|
25237
26332
|
telephonySignature: string | null;
|
25238
26333
|
};
|
25239
|
-
}
|
25240
|
-
|
25241
|
-
page?: number | undefined;
|
25242
|
-
pageSize?: number | undefined;
|
25243
|
-
lastPage?: number | null | undefined;
|
26334
|
+
};
|
26335
|
+
requestId: string;
|
25244
26336
|
}>;
|
25245
26337
|
400: import("zod").ZodObject<{
|
25246
26338
|
message: import("zod").ZodString;
|
@@ -25259,7 +26351,7 @@ export declare const apiContract: {
|
|
25259
26351
|
message: string;
|
25260
26352
|
error?: any;
|
25261
26353
|
}>;
|
25262
|
-
|
26354
|
+
404: import("zod").ZodObject<{
|
25263
26355
|
message: import("zod").ZodString;
|
25264
26356
|
error: import("zod").ZodAny;
|
25265
26357
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -25269,248 +26361,17 @@ export declare const apiContract: {
|
|
25269
26361
|
message: string;
|
25270
26362
|
error?: any;
|
25271
26363
|
}>;
|
25272
|
-
|
25273
|
-
path: "user";
|
25274
|
-
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
25275
|
-
'x-tenant': import("zod").ZodString;
|
25276
|
-
authorization: import("zod").ZodString;
|
25277
|
-
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
25278
|
-
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
25279
|
-
}, "strip", import("zod").ZodTypeAny, {
|
25280
|
-
'x-tenant': string;
|
25281
|
-
authorization: string;
|
25282
|
-
'x-client-timezone': string;
|
25283
|
-
'x-code'?: string | undefined;
|
25284
|
-
}, {
|
25285
|
-
'x-tenant': string;
|
25286
|
-
authorization: string;
|
25287
|
-
'x-code'?: string | undefined;
|
25288
|
-
'x-client-timezone'?: string | undefined;
|
25289
|
-
}>>>;
|
25290
|
-
};
|
25291
|
-
getUserById: {
|
25292
|
-
summary: "Get user by id";
|
25293
|
-
method: "GET";
|
25294
|
-
pathParams: import("zod").ZodObject<{
|
25295
|
-
id: import("zod").ZodString;
|
25296
|
-
}, "strip", import("zod").ZodTypeAny, {
|
25297
|
-
id: string;
|
25298
|
-
}, {
|
25299
|
-
id: string;
|
25300
|
-
}>;
|
25301
|
-
responses: {
|
25302
|
-
200: import("zod").ZodObject<{
|
25303
|
-
id: import("zod").ZodString;
|
25304
|
-
createdAt: import("zod").ZodDate;
|
25305
|
-
updatedAt: import("zod").ZodDate;
|
25306
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
25307
|
-
name: import("zod").ZodString;
|
25308
|
-
email: import("zod").ZodString;
|
25309
|
-
emailVerifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
25310
|
-
password: import("zod").ZodString;
|
25311
|
-
address: import("zod").ZodNullable<import("zod").ZodString>;
|
25312
|
-
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
25313
|
-
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
25314
|
-
roles: import("zod").ZodArray<import("zod").ZodObject<{
|
25315
|
-
id: import("zod").ZodString;
|
25316
|
-
createdAt: import("zod").ZodDate;
|
25317
|
-
updatedAt: import("zod").ZodDate;
|
25318
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
25319
|
-
systemName: import("zod").ZodString;
|
25320
|
-
displayName: import("zod").ZodString;
|
25321
|
-
description: import("zod").ZodNullable<import("zod").ZodString>;
|
25322
|
-
permissions: import("zod").ZodArray<import("zod").ZodObject<{
|
25323
|
-
id: import("zod").ZodString;
|
25324
|
-
createdAt: import("zod").ZodDate;
|
25325
|
-
updatedAt: import("zod").ZodDate;
|
25326
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
25327
|
-
systemName: import("zod").ZodString;
|
25328
|
-
displayName: import("zod").ZodString;
|
25329
|
-
description: import("zod").ZodNullable<import("zod").ZodString>;
|
25330
|
-
}, "strip", import("zod").ZodTypeAny, {
|
25331
|
-
id: string;
|
25332
|
-
description: string | null;
|
25333
|
-
createdAt: Date;
|
25334
|
-
updatedAt: Date;
|
25335
|
-
deletedAt: Date | null;
|
25336
|
-
systemName: string;
|
25337
|
-
displayName: string;
|
25338
|
-
}, {
|
25339
|
-
id: string;
|
25340
|
-
description: string | null;
|
25341
|
-
createdAt: Date;
|
25342
|
-
updatedAt: Date;
|
25343
|
-
deletedAt: Date | null;
|
25344
|
-
systemName: string;
|
25345
|
-
displayName: string;
|
25346
|
-
}>, "many">;
|
25347
|
-
}, "strip", import("zod").ZodTypeAny, {
|
25348
|
-
id: string;
|
25349
|
-
description: string | null;
|
25350
|
-
createdAt: Date;
|
25351
|
-
updatedAt: Date;
|
25352
|
-
deletedAt: Date | null;
|
25353
|
-
systemName: string;
|
25354
|
-
displayName: string;
|
25355
|
-
permissions: {
|
25356
|
-
id: string;
|
25357
|
-
description: string | null;
|
25358
|
-
createdAt: Date;
|
25359
|
-
updatedAt: Date;
|
25360
|
-
deletedAt: Date | null;
|
25361
|
-
systemName: string;
|
25362
|
-
displayName: string;
|
25363
|
-
}[];
|
25364
|
-
}, {
|
25365
|
-
id: string;
|
25366
|
-
description: string | null;
|
25367
|
-
createdAt: Date;
|
25368
|
-
updatedAt: Date;
|
25369
|
-
deletedAt: Date | null;
|
25370
|
-
systemName: string;
|
25371
|
-
displayName: string;
|
25372
|
-
permissions: {
|
25373
|
-
id: string;
|
25374
|
-
description: string | null;
|
25375
|
-
createdAt: Date;
|
25376
|
-
updatedAt: Date;
|
25377
|
-
deletedAt: Date | null;
|
25378
|
-
systemName: string;
|
25379
|
-
displayName: string;
|
25380
|
-
}[];
|
25381
|
-
}>, "many">;
|
25382
|
-
extension: import("zod").ZodObject<{
|
25383
|
-
id: import("zod").ZodString;
|
25384
|
-
createdAt: import("zod").ZodDate;
|
25385
|
-
updatedAt: import("zod").ZodDate;
|
25386
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
25387
|
-
userId: import("zod").ZodNullable<import("zod").ZodString>;
|
25388
|
-
sipServerUrl: import("zod").ZodString;
|
25389
|
-
sipUserName: import("zod").ZodString;
|
25390
|
-
webphoneLoginUser: import("zod").ZodString;
|
25391
|
-
extensionId: import("zod").ZodNullable<import("zod").ZodString>;
|
25392
|
-
extensionName: import("zod").ZodString;
|
25393
|
-
telephonySignature: import("zod").ZodNullable<import("zod").ZodString>;
|
25394
|
-
}, "strip", import("zod").ZodTypeAny, {
|
25395
|
-
id: string;
|
25396
|
-
createdAt: Date;
|
25397
|
-
updatedAt: Date;
|
25398
|
-
deletedAt: Date | null;
|
25399
|
-
userId: string | null;
|
25400
|
-
sipServerUrl: string;
|
25401
|
-
sipUserName: string;
|
25402
|
-
webphoneLoginUser: string;
|
25403
|
-
extensionId: string | null;
|
25404
|
-
extensionName: string;
|
25405
|
-
telephonySignature: string | null;
|
25406
|
-
}, {
|
25407
|
-
id: string;
|
25408
|
-
createdAt: Date;
|
25409
|
-
updatedAt: Date;
|
25410
|
-
deletedAt: Date | null;
|
25411
|
-
userId: string | null;
|
25412
|
-
sipServerUrl: string;
|
25413
|
-
sipUserName: string;
|
25414
|
-
webphoneLoginUser: string;
|
25415
|
-
extensionId: string | null;
|
25416
|
-
extensionName: string;
|
25417
|
-
telephonySignature: string | null;
|
25418
|
-
}>;
|
25419
|
-
}, "strip", import("zod").ZodTypeAny, {
|
25420
|
-
id: string;
|
25421
|
-
address: string | null;
|
25422
|
-
name: string;
|
25423
|
-
email: string;
|
25424
|
-
createdAt: Date;
|
25425
|
-
updatedAt: Date;
|
25426
|
-
deletedAt: Date | null;
|
25427
|
-
emailVerifiedAt: Date | null;
|
25428
|
-
password: string;
|
25429
|
-
phone: string | null;
|
25430
|
-
notificationCount: number | null;
|
25431
|
-
roles: {
|
25432
|
-
id: string;
|
25433
|
-
description: string | null;
|
25434
|
-
createdAt: Date;
|
25435
|
-
updatedAt: Date;
|
25436
|
-
deletedAt: Date | null;
|
25437
|
-
systemName: string;
|
25438
|
-
displayName: string;
|
25439
|
-
permissions: {
|
25440
|
-
id: string;
|
25441
|
-
description: string | null;
|
25442
|
-
createdAt: Date;
|
25443
|
-
updatedAt: Date;
|
25444
|
-
deletedAt: Date | null;
|
25445
|
-
systemName: string;
|
25446
|
-
displayName: string;
|
25447
|
-
}[];
|
25448
|
-
}[];
|
25449
|
-
extension: {
|
25450
|
-
id: string;
|
25451
|
-
createdAt: Date;
|
25452
|
-
updatedAt: Date;
|
25453
|
-
deletedAt: Date | null;
|
25454
|
-
userId: string | null;
|
25455
|
-
sipServerUrl: string;
|
25456
|
-
sipUserName: string;
|
25457
|
-
webphoneLoginUser: string;
|
25458
|
-
extensionId: string | null;
|
25459
|
-
extensionName: string;
|
25460
|
-
telephonySignature: string | null;
|
25461
|
-
};
|
25462
|
-
}, {
|
25463
|
-
id: string;
|
25464
|
-
address: string | null;
|
25465
|
-
name: string;
|
25466
|
-
email: string;
|
25467
|
-
createdAt: Date;
|
25468
|
-
updatedAt: Date;
|
25469
|
-
deletedAt: Date | null;
|
25470
|
-
emailVerifiedAt: Date | null;
|
25471
|
-
password: string;
|
25472
|
-
phone: string | null;
|
25473
|
-
notificationCount: number | null;
|
25474
|
-
roles: {
|
25475
|
-
id: string;
|
25476
|
-
description: string | null;
|
25477
|
-
createdAt: Date;
|
25478
|
-
updatedAt: Date;
|
25479
|
-
deletedAt: Date | null;
|
25480
|
-
systemName: string;
|
25481
|
-
displayName: string;
|
25482
|
-
permissions: {
|
25483
|
-
id: string;
|
25484
|
-
description: string | null;
|
25485
|
-
createdAt: Date;
|
25486
|
-
updatedAt: Date;
|
25487
|
-
deletedAt: Date | null;
|
25488
|
-
systemName: string;
|
25489
|
-
displayName: string;
|
25490
|
-
}[];
|
25491
|
-
}[];
|
25492
|
-
extension: {
|
25493
|
-
id: string;
|
25494
|
-
createdAt: Date;
|
25495
|
-
updatedAt: Date;
|
25496
|
-
deletedAt: Date | null;
|
25497
|
-
userId: string | null;
|
25498
|
-
sipServerUrl: string;
|
25499
|
-
sipUserName: string;
|
25500
|
-
webphoneLoginUser: string;
|
25501
|
-
extensionId: string | null;
|
25502
|
-
extensionName: string;
|
25503
|
-
telephonySignature: string | null;
|
25504
|
-
};
|
25505
|
-
}>;
|
25506
|
-
400: import("zod").ZodObject<{
|
26364
|
+
422: import("zod").ZodObject<{
|
25507
26365
|
message: import("zod").ZodString;
|
26366
|
+
error: import("zod").ZodAny;
|
25508
26367
|
}, "strip", import("zod").ZodTypeAny, {
|
25509
26368
|
message: string;
|
26369
|
+
error?: any;
|
25510
26370
|
}, {
|
25511
26371
|
message: string;
|
26372
|
+
error?: any;
|
25512
26373
|
}>;
|
25513
|
-
|
26374
|
+
500: import("zod").ZodObject<{
|
25514
26375
|
message: import("zod").ZodString;
|
25515
26376
|
error: import("zod").ZodAny;
|
25516
26377
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -25539,36 +26400,15 @@ export declare const apiContract: {
|
|
25539
26400
|
'x-client-timezone'?: string | undefined;
|
25540
26401
|
}>>>;
|
25541
26402
|
};
|
25542
|
-
|
26403
|
+
updateUserProfile: {
|
25543
26404
|
body: import("zod").ZodObject<{
|
25544
|
-
address: import("zod").ZodNullable<import("zod").ZodString>;
|
25545
|
-
name: import("zod").ZodString;
|
25546
|
-
email: import("zod").ZodString;
|
25547
26405
|
password: import("zod").ZodString;
|
25548
|
-
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
25549
|
-
notificationCount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
25550
|
-
roles: import("zod").ZodArray<import("zod").ZodString, "many">;
|
25551
|
-
newPassword: import("zod").ZodString;
|
25552
26406
|
}, "strip", import("zod").ZodTypeAny, {
|
25553
|
-
address: string | null;
|
25554
|
-
name: string;
|
25555
|
-
email: string;
|
25556
26407
|
password: string;
|
25557
|
-
phone: string | null;
|
25558
|
-
roles: string[];
|
25559
|
-
newPassword: string;
|
25560
|
-
notificationCount?: number | null | undefined;
|
25561
26408
|
}, {
|
25562
|
-
address: string | null;
|
25563
|
-
name: string;
|
25564
|
-
email: string;
|
25565
26409
|
password: string;
|
25566
|
-
phone: string | null;
|
25567
|
-
roles: string[];
|
25568
|
-
newPassword: string;
|
25569
|
-
notificationCount?: number | null | undefined;
|
25570
26410
|
}>;
|
25571
|
-
summary: "Update a user.";
|
26411
|
+
summary: "Update a user profile.";
|
25572
26412
|
method: "PATCH";
|
25573
26413
|
pathParams: import("zod").ZodObject<{
|
25574
26414
|
id: import("zod").ZodString;
|
@@ -25580,7 +26420,7 @@ export declare const apiContract: {
|
|
25580
26420
|
responses: {
|
25581
26421
|
201: import("zod").ZodObject<{
|
25582
26422
|
requestId: import("zod").ZodString;
|
25583
|
-
|
26423
|
+
user: import("zod").ZodObject<{
|
25584
26424
|
id: import("zod").ZodString;
|
25585
26425
|
createdAt: import("zod").ZodDate;
|
25586
26426
|
updatedAt: import("zod").ZodDate;
|
@@ -25785,7 +26625,7 @@ export declare const apiContract: {
|
|
25785
26625
|
};
|
25786
26626
|
}>;
|
25787
26627
|
}, "strip", import("zod").ZodTypeAny, {
|
25788
|
-
|
26628
|
+
user: {
|
25789
26629
|
id: string;
|
25790
26630
|
address: string | null;
|
25791
26631
|
name: string;
|
@@ -25831,7 +26671,7 @@ export declare const apiContract: {
|
|
25831
26671
|
};
|
25832
26672
|
requestId: string;
|
25833
26673
|
}, {
|
25834
|
-
|
26674
|
+
user: {
|
25835
26675
|
id: string;
|
25836
26676
|
address: string | null;
|
25837
26677
|
name: string;
|
@@ -25925,7 +26765,7 @@ export declare const apiContract: {
|
|
25925
26765
|
error?: any;
|
25926
26766
|
}>;
|
25927
26767
|
};
|
25928
|
-
path: "user/:id";
|
26768
|
+
path: "user/profile/:id";
|
25929
26769
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
25930
26770
|
'x-tenant': import("zod").ZodString;
|
25931
26771
|
authorization: import("zod").ZodString;
|
@@ -82826,7 +83666,7 @@ export declare const platformContract: {
|
|
82826
83666
|
phone: string | null;
|
82827
83667
|
} | undefined;
|
82828
83668
|
}>;
|
82829
|
-
|
83669
|
+
status: import("zod").ZodNumber;
|
82830
83670
|
}, "strip", import("zod").ZodTypeAny, {
|
82831
83671
|
id: string;
|
82832
83672
|
channel: {
|
@@ -82854,6 +83694,7 @@ export declare const platformContract: {
|
|
82854
83694
|
} | undefined;
|
82855
83695
|
};
|
82856
83696
|
direction: "incoming" | "outgoing" | "system";
|
83697
|
+
status: number;
|
82857
83698
|
createdAt: string;
|
82858
83699
|
updatedAt: string;
|
82859
83700
|
actor: {
|
@@ -82884,7 +83725,6 @@ export declare const platformContract: {
|
|
82884
83725
|
};
|
82885
83726
|
lastMessage?: string | undefined;
|
82886
83727
|
handleTime?: number | undefined;
|
82887
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
82888
83728
|
}, {
|
82889
83729
|
id: string;
|
82890
83730
|
channel: {
|
@@ -82912,6 +83752,7 @@ export declare const platformContract: {
|
|
82912
83752
|
} | undefined;
|
82913
83753
|
};
|
82914
83754
|
direction: "incoming" | "outgoing" | "system";
|
83755
|
+
status: number;
|
82915
83756
|
createdAt: string;
|
82916
83757
|
updatedAt: string;
|
82917
83758
|
actor: {
|
@@ -82942,7 +83783,6 @@ export declare const platformContract: {
|
|
82942
83783
|
};
|
82943
83784
|
lastMessage?: string | undefined;
|
82944
83785
|
handleTime?: number | undefined;
|
82945
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
82946
83786
|
}>;
|
82947
83787
|
message: import("zod").ZodObject<{
|
82948
83788
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -83104,6 +83944,7 @@ export declare const platformContract: {
|
|
83104
83944
|
} | undefined;
|
83105
83945
|
};
|
83106
83946
|
direction: "incoming" | "outgoing" | "system";
|
83947
|
+
status: number;
|
83107
83948
|
createdAt: string;
|
83108
83949
|
updatedAt: string;
|
83109
83950
|
actor: {
|
@@ -83134,7 +83975,6 @@ export declare const platformContract: {
|
|
83134
83975
|
};
|
83135
83976
|
lastMessage?: string | undefined;
|
83136
83977
|
handleTime?: number | undefined;
|
83137
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
83138
83978
|
};
|
83139
83979
|
}, {
|
83140
83980
|
message: {
|
@@ -83192,6 +84032,7 @@ export declare const platformContract: {
|
|
83192
84032
|
} | undefined;
|
83193
84033
|
};
|
83194
84034
|
direction: "incoming" | "outgoing" | "system";
|
84035
|
+
status: number;
|
83195
84036
|
createdAt: string;
|
83196
84037
|
updatedAt: string;
|
83197
84038
|
actor: {
|
@@ -83222,7 +84063,6 @@ export declare const platformContract: {
|
|
83222
84063
|
};
|
83223
84064
|
lastMessage?: string | undefined;
|
83224
84065
|
handleTime?: number | undefined;
|
83225
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
83226
84066
|
};
|
83227
84067
|
}>;
|
83228
84068
|
method: "POST";
|
@@ -90780,7 +91620,7 @@ export declare const platformContract: {
|
|
90780
91620
|
phone: string | null;
|
90781
91621
|
} | undefined;
|
90782
91622
|
}>;
|
90783
|
-
|
91623
|
+
status: import("zod").ZodNumber;
|
90784
91624
|
}, "strip", import("zod").ZodTypeAny, {
|
90785
91625
|
id: string;
|
90786
91626
|
channel: {
|
@@ -90808,6 +91648,7 @@ export declare const platformContract: {
|
|
90808
91648
|
} | undefined;
|
90809
91649
|
};
|
90810
91650
|
direction: "incoming" | "outgoing" | "system";
|
91651
|
+
status: number;
|
90811
91652
|
createdAt: string;
|
90812
91653
|
updatedAt: string;
|
90813
91654
|
actor: {
|
@@ -90838,7 +91679,6 @@ export declare const platformContract: {
|
|
90838
91679
|
};
|
90839
91680
|
lastMessage?: string | undefined;
|
90840
91681
|
handleTime?: number | undefined;
|
90841
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
90842
91682
|
}, {
|
90843
91683
|
id: string;
|
90844
91684
|
channel: {
|
@@ -90866,6 +91706,7 @@ export declare const platformContract: {
|
|
90866
91706
|
} | undefined;
|
90867
91707
|
};
|
90868
91708
|
direction: "incoming" | "outgoing" | "system";
|
91709
|
+
status: number;
|
90869
91710
|
createdAt: string;
|
90870
91711
|
updatedAt: string;
|
90871
91712
|
actor: {
|
@@ -90896,7 +91737,6 @@ export declare const platformContract: {
|
|
90896
91737
|
};
|
90897
91738
|
lastMessage?: string | undefined;
|
90898
91739
|
handleTime?: number | undefined;
|
90899
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
90900
91740
|
}>;
|
90901
91741
|
message: import("zod").ZodObject<{
|
90902
91742
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -91058,6 +91898,7 @@ export declare const platformContract: {
|
|
91058
91898
|
} | undefined;
|
91059
91899
|
};
|
91060
91900
|
direction: "incoming" | "outgoing" | "system";
|
91901
|
+
status: number;
|
91061
91902
|
createdAt: string;
|
91062
91903
|
updatedAt: string;
|
91063
91904
|
actor: {
|
@@ -91088,7 +91929,6 @@ export declare const platformContract: {
|
|
91088
91929
|
};
|
91089
91930
|
lastMessage?: string | undefined;
|
91090
91931
|
handleTime?: number | undefined;
|
91091
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
91092
91932
|
};
|
91093
91933
|
}, {
|
91094
91934
|
message: {
|
@@ -91146,6 +91986,7 @@ export declare const platformContract: {
|
|
91146
91986
|
} | undefined;
|
91147
91987
|
};
|
91148
91988
|
direction: "incoming" | "outgoing" | "system";
|
91989
|
+
status: number;
|
91149
91990
|
createdAt: string;
|
91150
91991
|
updatedAt: string;
|
91151
91992
|
actor: {
|
@@ -91176,7 +92017,6 @@ export declare const platformContract: {
|
|
91176
92017
|
};
|
91177
92018
|
lastMessage?: string | undefined;
|
91178
92019
|
handleTime?: number | undefined;
|
91179
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
91180
92020
|
};
|
91181
92021
|
}>;
|
91182
92022
|
method: "POST";
|
@@ -99410,7 +100250,7 @@ export declare const platformContract: {
|
|
99410
100250
|
phone: string | null;
|
99411
100251
|
} | undefined;
|
99412
100252
|
}>;
|
99413
|
-
|
100253
|
+
status: import("zod").ZodNumber;
|
99414
100254
|
}, "strip", import("zod").ZodTypeAny, {
|
99415
100255
|
id: string;
|
99416
100256
|
channel: {
|
@@ -99438,6 +100278,7 @@ export declare const platformContract: {
|
|
99438
100278
|
} | undefined;
|
99439
100279
|
};
|
99440
100280
|
direction: "incoming" | "outgoing" | "system";
|
100281
|
+
status: number;
|
99441
100282
|
createdAt: string;
|
99442
100283
|
updatedAt: string;
|
99443
100284
|
actor: {
|
@@ -99468,7 +100309,6 @@ export declare const platformContract: {
|
|
99468
100309
|
};
|
99469
100310
|
lastMessage?: string | undefined;
|
99470
100311
|
handleTime?: number | undefined;
|
99471
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
99472
100312
|
}, {
|
99473
100313
|
id: string;
|
99474
100314
|
channel: {
|
@@ -99496,6 +100336,7 @@ export declare const platformContract: {
|
|
99496
100336
|
} | undefined;
|
99497
100337
|
};
|
99498
100338
|
direction: "incoming" | "outgoing" | "system";
|
100339
|
+
status: number;
|
99499
100340
|
createdAt: string;
|
99500
100341
|
updatedAt: string;
|
99501
100342
|
actor: {
|
@@ -99526,7 +100367,6 @@ export declare const platformContract: {
|
|
99526
100367
|
};
|
99527
100368
|
lastMessage?: string | undefined;
|
99528
100369
|
handleTime?: number | undefined;
|
99529
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
99530
100370
|
}>;
|
99531
100371
|
message: import("zod").ZodObject<{
|
99532
100372
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -99688,6 +100528,7 @@ export declare const platformContract: {
|
|
99688
100528
|
} | undefined;
|
99689
100529
|
};
|
99690
100530
|
direction: "incoming" | "outgoing" | "system";
|
100531
|
+
status: number;
|
99691
100532
|
createdAt: string;
|
99692
100533
|
updatedAt: string;
|
99693
100534
|
actor: {
|
@@ -99718,7 +100559,6 @@ export declare const platformContract: {
|
|
99718
100559
|
};
|
99719
100560
|
lastMessage?: string | undefined;
|
99720
100561
|
handleTime?: number | undefined;
|
99721
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
99722
100562
|
};
|
99723
100563
|
}, {
|
99724
100564
|
message: {
|
@@ -99776,6 +100616,7 @@ export declare const platformContract: {
|
|
99776
100616
|
} | undefined;
|
99777
100617
|
};
|
99778
100618
|
direction: "incoming" | "outgoing" | "system";
|
100619
|
+
status: number;
|
99779
100620
|
createdAt: string;
|
99780
100621
|
updatedAt: string;
|
99781
100622
|
actor: {
|
@@ -99806,7 +100647,6 @@ export declare const platformContract: {
|
|
99806
100647
|
};
|
99807
100648
|
lastMessage?: string | undefined;
|
99808
100649
|
handleTime?: number | undefined;
|
99809
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
99810
100650
|
};
|
99811
100651
|
}>;
|
99812
100652
|
method: "POST";
|
@@ -109130,7 +109970,7 @@ export declare const platformContract: {
|
|
109130
109970
|
phone: string | null;
|
109131
109971
|
} | undefined;
|
109132
109972
|
}>;
|
109133
|
-
|
109973
|
+
status: import("zod").ZodNumber;
|
109134
109974
|
}, "strip", import("zod").ZodTypeAny, {
|
109135
109975
|
id: string;
|
109136
109976
|
channel: {
|
@@ -109158,6 +109998,7 @@ export declare const platformContract: {
|
|
109158
109998
|
} | undefined;
|
109159
109999
|
};
|
109160
110000
|
direction: "incoming" | "outgoing" | "system";
|
110001
|
+
status: number;
|
109161
110002
|
createdAt: string;
|
109162
110003
|
updatedAt: string;
|
109163
110004
|
actor: {
|
@@ -109188,7 +110029,6 @@ export declare const platformContract: {
|
|
109188
110029
|
};
|
109189
110030
|
lastMessage?: string | undefined;
|
109190
110031
|
handleTime?: number | undefined;
|
109191
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
109192
110032
|
}, {
|
109193
110033
|
id: string;
|
109194
110034
|
channel: {
|
@@ -109216,6 +110056,7 @@ export declare const platformContract: {
|
|
109216
110056
|
} | undefined;
|
109217
110057
|
};
|
109218
110058
|
direction: "incoming" | "outgoing" | "system";
|
110059
|
+
status: number;
|
109219
110060
|
createdAt: string;
|
109220
110061
|
updatedAt: string;
|
109221
110062
|
actor: {
|
@@ -109246,7 +110087,6 @@ export declare const platformContract: {
|
|
109246
110087
|
};
|
109247
110088
|
lastMessage?: string | undefined;
|
109248
110089
|
handleTime?: number | undefined;
|
109249
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
109250
110090
|
}>;
|
109251
110091
|
message: import("zod").ZodObject<{
|
109252
110092
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -109408,6 +110248,7 @@ export declare const platformContract: {
|
|
109408
110248
|
} | undefined;
|
109409
110249
|
};
|
109410
110250
|
direction: "incoming" | "outgoing" | "system";
|
110251
|
+
status: number;
|
109411
110252
|
createdAt: string;
|
109412
110253
|
updatedAt: string;
|
109413
110254
|
actor: {
|
@@ -109438,7 +110279,6 @@ export declare const platformContract: {
|
|
109438
110279
|
};
|
109439
110280
|
lastMessage?: string | undefined;
|
109440
110281
|
handleTime?: number | undefined;
|
109441
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
109442
110282
|
};
|
109443
110283
|
}, {
|
109444
110284
|
message: {
|
@@ -109496,6 +110336,7 @@ export declare const platformContract: {
|
|
109496
110336
|
} | undefined;
|
109497
110337
|
};
|
109498
110338
|
direction: "incoming" | "outgoing" | "system";
|
110339
|
+
status: number;
|
109499
110340
|
createdAt: string;
|
109500
110341
|
updatedAt: string;
|
109501
110342
|
actor: {
|
@@ -109526,7 +110367,6 @@ export declare const platformContract: {
|
|
109526
110367
|
};
|
109527
110368
|
lastMessage?: string | undefined;
|
109528
110369
|
handleTime?: number | undefined;
|
109529
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
109530
110370
|
};
|
109531
110371
|
}>;
|
109532
110372
|
method: "POST";
|
@@ -124627,10 +125467,11 @@ export declare const chatContract: {
|
|
124627
125467
|
stickerId: number;
|
124628
125468
|
}>>;
|
124629
125469
|
file: import("zod").ZodOptional<import("zod").ZodType<File, import("zod").ZodTypeDef, File>>;
|
124630
|
-
messengerTags: import("zod").
|
125470
|
+
messengerTags: import("zod").ZodUnion<[import("zod").ZodLiteral<1>, import("zod").ZodLiteral<2>, import("zod").ZodLiteral<3>]>;
|
124631
125471
|
}, "strip", import("zod").ZodTypeAny, {
|
124632
125472
|
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
124633
125473
|
roomId: string;
|
125474
|
+
messengerTags: 2 | 1 | 3;
|
124634
125475
|
message?: string | undefined;
|
124635
125476
|
messageAttachments?: {
|
124636
125477
|
url: string | null;
|
@@ -124690,10 +125531,10 @@ export declare const chatContract: {
|
|
124690
125531
|
stickerId: number;
|
124691
125532
|
} | undefined;
|
124692
125533
|
file?: File | undefined;
|
124693
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
124694
125534
|
}, {
|
124695
125535
|
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
124696
125536
|
roomId: string;
|
125537
|
+
messengerTags: 2 | 1 | 3;
|
124697
125538
|
message?: string | undefined;
|
124698
125539
|
messageAttachments?: {
|
124699
125540
|
url: string | null;
|
@@ -124753,7 +125594,6 @@ export declare const chatContract: {
|
|
124753
125594
|
stickerId: number;
|
124754
125595
|
} | undefined;
|
124755
125596
|
file?: File | undefined;
|
124756
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
124757
125597
|
}>;
|
124758
125598
|
summary: "Send message to room";
|
124759
125599
|
method: "POST";
|