@kl1/contracts 1.1.22-uat → 1.1.23-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +3 -0
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/mail/account-contract.d.ts +3 -0
- package/dist/src/mail/account-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +3 -0
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -13790,10 +13790,13 @@ export declare const apiContract: {
|
|
13790
13790
|
method: "GET";
|
13791
13791
|
query: import("zod").ZodOptional<import("zod").ZodObject<{
|
13792
13792
|
state: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">]>>;
|
13793
|
+
withDeleted: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
13793
13794
|
}, "strip", import("zod").ZodTypeAny, {
|
13795
|
+
withDeleted: boolean;
|
13794
13796
|
state?: "connected" | "disconnected" | undefined;
|
13795
13797
|
}, {
|
13796
13798
|
state?: "connected" | "disconnected" | undefined;
|
13799
|
+
withDeleted?: boolean | undefined;
|
13797
13800
|
}>>;
|
13798
13801
|
responses: {
|
13799
13802
|
401: import("zod").ZodObject<{
|