@lyxa.ai/core 1.1.31 → 1.1.32
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/libraries/mongo/models/user.model.d.ts +1 -1
- package/dist/libraries/socket/core/socket-event-registry.js.map +1 -1
- package/dist/libraries/trpc/middlewares/createSocketSubscriptionProcedure.d.ts +19 -10
- package/dist/libraries/trpc/middlewares/createSocketSubscriptionProcedure.js +30 -29
- package/dist/libraries/trpc/middlewares/createSocketSubscriptionProcedure.js.map +1 -1
- package/dist/types/README.md +1 -1
- package/dist/types/package.json +1 -1
- package/dist/types/utilities/validation/common-validation.d.ts +78 -2
- package/dist/types/utilities/validation/global-validation.d.ts +38 -14
- package/dist/utilities/validation/common-validation.d.ts +78 -2
- package/dist/utilities/validation/global-validation.d.ts +38 -14
- package/package.json +1 -1
|
@@ -32,7 +32,7 @@ export declare class User extends TimeStamps {
|
|
|
32
32
|
isPhoneVerified?: boolean;
|
|
33
33
|
onlineStatus?: OnlineStatus;
|
|
34
34
|
fcmTokens?: string[];
|
|
35
|
-
static updateWallet(this: ReturnModelType<typeof User>, userId: string, amount: number): Promise<(import("mongoose").Document<unknown, import("@typegoose/typegoose/lib/types").BeAnObject, User, import("@typegoose/typegoose/lib/types").BeAnyObject
|
|
35
|
+
static updateWallet(this: ReturnModelType<typeof User>, userId: string, amount: number): Promise<(import("mongoose").Document<unknown, import("@typegoose/typegoose/lib/types").BeAnObject, User, import("@typegoose/typegoose/lib/types").BeAnyObject> & Omit<User & {
|
|
36
36
|
_id: import("mongoose").Types.ObjectId;
|
|
37
37
|
} & {
|
|
38
38
|
__v: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"socket-event-registry.js","sourceRoot":"/","sources":["libraries/socket/core/socket-event-registry.ts"],"names":[],"mappings":";;;AAGA,
|
|
1
|
+
{"version":3,"file":"socket-event-registry.js","sourceRoot":"/","sources":["libraries/socket/core/socket-event-registry.ts"],"names":[],"mappings":";;;AAGA,2EAA+D;AAiB/D,MAAa,YAAY;IACrB,MAAM,CAAC,eAAe,CAA4B,SAAY;QAC1D,OAAO,oCAAQ,CAAC,SAAS,CAAgB,CAAC;IAC9C,CAAC;IAED,MAAM,CAAC,kBAAkB,CAA4B,eAAkB,EAAE,KAAkB;QACvF,MAAM,EAAC,UAAU,EAAE,OAAO,EAAC,GAAG,IAAI,CAAC,eAAe,CAAC,eAAe,CAAC,CAAC;QACpE,MAAM,cAAc,GAAG,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;QAClD,MAAM,GAAG,GAAG,UAAU,EAAE,CAAC,cAAc,CAAC,IAAI,SAAS,CAAC;QACtD,OAAO,GAAG,eAAe,IAAI,GAAG,EAAE,CAAC;IACvC,CAAC;IAEM,MAAM,CAAC,WAAW,CAA4B,eAAkB,EAAE,IAAkB;QACvF,MAAM,EAAC,IAAI,EAAC,GAAG,oCAAQ,CAAC,eAAe,CAAC,CAAC;QACzC,OAAO,IAAI,IAAI,CAAC,IAAI,CAAgB,CAAC;IACzC,CAAC;CAEJ;AAjBD,oCAiBC","sourcesContent":["import {z} from 'zod';\nimport {SocketEventType} from '../../../utilities/enum';\nimport {BaseSocketEvent} from '../BaseSocketEvent';\nimport {Registry, REGISTRY} from './socket-event-registry.map';\nimport {TrackedData} from \"@trpc/server/unstable-core-do-not-import\";\n\ninterface EventRegistration<TEvent extends BaseSocketEvent<any, any>> {\n ctor: new (payload: z.input<TEvent['outputSchema']>) => TEvent;\n schemas: { input: TEvent['inputSchema']; output: TEvent['outputSchema'] };\n identifier?: (input: z.infer<TEvent['inputSchema']>) => string;\n}\n\ntype InputFor<T extends SocketEventType> =\n z.infer<Registry[T]['schemas']['input']>;\ntype OutputFor<T extends SocketEventType> =\n z.infer<Registry[T]['schemas']['output']>;\ntype EventFor<T extends SocketEventType> =\n InstanceType<Registry[T]['ctor']>;\n\n\nexport class EventFactory {\n static getRegistration<T extends SocketEventType>(eventType: T) {\n return REGISTRY[eventType] as Registry[T];\n }\n\n static getSubscriptionKey<T extends SocketEventType>(SocketEventType: T, input: InputFor<T>) {\n const {identifier, schemas} = this.getRegistration(SocketEventType);\n const validatedInput = schemas.input.parse(input);\n const key = identifier?.(validatedInput) ?? 'default';\n return `${SocketEventType}:${key}`;\n }\n\n public static createEvent<T extends SocketEventType>(SocketEventType: T, data: OutputFor<T>): EventFor<T> {\n const {ctor} = REGISTRY[SocketEventType];\n return new ctor(data) as EventFor<T>;\n }\n\n}\n\nexport type {Registry, EventFor, InputFor, OutputFor, EventRegistration};\n"]}
|
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
import { SocketEventType } from '../../../utilities/enum';
|
|
2
|
-
import { AuthEntityType } from '../../auth';
|
|
3
2
|
import { OutputFor } from '../../socket';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
interface SubscriptionContext {
|
|
4
|
+
entity?: {
|
|
5
|
+
id: string;
|
|
6
|
+
};
|
|
7
|
+
signal?: AbortSignal;
|
|
8
|
+
}
|
|
9
|
+
interface SubscriptionOpts<TInput = any> {
|
|
10
|
+
ctx: SubscriptionContext;
|
|
11
|
+
input: TInput;
|
|
12
|
+
}
|
|
13
|
+
interface CreateSubscriptionOptions<TEventType extends SocketEventType> {
|
|
14
|
+
eventType: TEventType;
|
|
15
|
+
ctx: SubscriptionContext;
|
|
16
|
+
input: any;
|
|
17
|
+
getTrackingId?: (payload: OutputFor<TEventType>) => string;
|
|
18
|
+
}
|
|
19
|
+
export declare function createSocketSubscription<TEventType extends SocketEventType>(options: CreateSubscriptionOptions<TEventType>): AsyncGenerator<import("@trpc/server").TrackedEnvelope<OutputFor<TEventType>>, void, unknown>;
|
|
20
|
+
export declare function socketSubscription<TEventType extends SocketEventType>(eventType: TEventType, getTrackingId?: (payload: OutputFor<TEventType>) => string): (opts: SubscriptionOpts) => AsyncGenerator<import("@trpc/server").TrackedEnvelope<OutputFor<TEventType>>, void, unknown>;
|
|
21
|
+
export {};
|
|
@@ -1,40 +1,41 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
|
|
3
|
+
exports.createSocketSubscription = createSocketSubscription;
|
|
4
|
+
exports.socketSubscription = socketSubscription;
|
|
5
5
|
const socket_1 = require("../../socket");
|
|
6
6
|
const crypto_1 = require("crypto");
|
|
7
7
|
const instance_utils_1 = require("../../../utilities/instance.utils");
|
|
8
8
|
const ws_1 = require("ws");
|
|
9
9
|
const server_1 = require("@trpc/server");
|
|
10
|
-
function
|
|
10
|
+
async function* createSocketSubscription(options) {
|
|
11
|
+
const { eventType, ctx, input, getTrackingId } = options;
|
|
11
12
|
const registration = socket_1.EventFactory.getRegistration(eventType);
|
|
12
|
-
const
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
const
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
13
|
+
const socketId = (0, crypto_1.randomUUID)();
|
|
14
|
+
const localEE = new socket_1.LocalEventEmitter(socketId);
|
|
15
|
+
const entityId = ctx.entity.id;
|
|
16
|
+
const eventKey = socket_1.EventFactory.getSubscriptionKey(eventType, input);
|
|
17
|
+
const instanceId = (0, instance_utils_1.getInstanceId)();
|
|
18
|
+
const socketInfo = { socketId, eventKey, instanceId };
|
|
19
|
+
await (0, socket_1.connectEntityToSocketEvent)(entityId, socketInfo);
|
|
20
|
+
socket_1.LocalSubs.bind(entityId, eventKey, localEE);
|
|
21
|
+
ctx.signal?.addEventListener('abort', () => {
|
|
22
|
+
socket_1.LocalSubs.unbind(entityId, eventKey, localEE);
|
|
23
|
+
(0, socket_1.disconnectEntityFromSocketEvent)(entityId, socketInfo).catch(console.error);
|
|
24
|
+
});
|
|
25
|
+
for await (const [data] of (0, ws_1.on)(localEE.ee, eventKey, { signal: ctx.signal })) {
|
|
26
|
+
const payload = data;
|
|
27
|
+
const id = getTrackingId
|
|
28
|
+
? getTrackingId(payload)
|
|
29
|
+
: payload._id?.toString() ?? (0, crypto_1.randomUUID)();
|
|
30
|
+
yield (0, server_1.tracked)(id, payload);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
function socketSubscription(eventType, getTrackingId) {
|
|
34
|
+
return (opts) => createSocketSubscription({
|
|
35
|
+
eventType,
|
|
36
|
+
ctx: opts.ctx,
|
|
37
|
+
input: opts.input,
|
|
38
|
+
getTrackingId,
|
|
38
39
|
});
|
|
39
40
|
}
|
|
40
41
|
//# sourceMappingURL=createSocketSubscriptionProcedure.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createSocketSubscriptionProcedure.js","sourceRoot":"/","sources":["libraries/trpc/middlewares/createSocketSubscriptionProcedure.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"createSocketSubscriptionProcedure.js","sourceRoot":"/","sources":["libraries/trpc/middlewares/createSocketSubscriptionProcedure.ts"],"names":[],"mappings":";;AA+BA,4DAgCC;AAED,gDAWC;AA3ED,yCAOsB;AACtB,mCAAkC;AAClC,sEAAgE;AAChE,2BAAsB;AACtB,yCAAqC;AAmB9B,KAAK,SAAS,CAAC,CAAC,wBAAwB,CAC3C,OAA8C;IAE9C,MAAM,EAAC,SAAS,EAAE,GAAG,EAAE,KAAK,EAAE,aAAa,EAAC,GAAG,OAAO,CAAC;IAEvD,MAAM,YAAY,GAAG,qBAAY,CAAC,eAAe,CAAC,SAAS,CAAC,CAAC;IAC7D,MAAM,QAAQ,GAAG,IAAA,mBAAU,GAAE,CAAC;IAC9B,MAAM,OAAO,GAAG,IAAI,0BAAiB,CAAC,QAAQ,CAAC,CAAC;IAEhD,MAAM,QAAQ,GAAG,GAAG,CAAC,MAAO,CAAC,EAAE,CAAC;IAChC,MAAM,QAAQ,GAAG,qBAAY,CAAC,kBAAkB,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;IAEnE,MAAM,UAAU,GAAG,IAAA,8BAAa,GAAE,CAAC;IACnC,MAAM,UAAU,GAAG,EAAC,QAAQ,EAAE,QAAQ,EAAE,UAAU,EAAC,CAAC;IAEpD,MAAM,IAAA,mCAA0B,EAAC,QAAQ,EAAE,UAAU,CAAC,CAAC;IACvD,kBAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;IAE5C,GAAG,CAAC,MAAM,EAAE,gBAAgB,CAAC,OAAO,EAAE,GAAG,EAAE;QACvC,kBAAS,CAAC,MAAM,CAAC,QAAQ,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;QAC9C,IAAA,wCAA+B,EAAC,QAAQ,EAAE,UAAU,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;IAC/E,CAAC,CAAC,CAAC;IAGH,IAAI,KAAK,EAAE,MAAM,CAAC,IAAI,CAAC,IAAI,IAAA,OAAE,EAAC,OAAO,CAAC,EAAE,EAAE,QAAQ,EAAE,EAAC,MAAM,EAAE,GAAG,CAAC,MAAM,EAAC,CAAC,EAAE,CAAC;QACxE,MAAM,OAAO,GAAG,IAAW,CAAC;QAC5B,MAAM,EAAE,GAAG,aAAa;YACpB,CAAC,CAAC,aAAa,CAAC,OAAO,CAAC;YACxB,CAAC,CAAE,OAAe,CAAC,GAAG,EAAE,QAAQ,EAAE,IAAI,IAAA,mBAAU,GAAE,CAAC;QAEvD,MAAM,IAAA,gBAAO,EAAC,EAAE,EAAE,OAAO,CAAC,CAAC;IAC/B,CAAC;AACL,CAAC;AAED,SAAgB,kBAAkB,CAC9B,SAAqB,EACrB,aAA0D;IAE1D,OAAO,CAAC,IAAsB,EAAE,EAAE,CAC9B,wBAAwB,CAAC;QACrB,SAAS;QACT,GAAG,EAAE,IAAI,CAAC,GAAG;QACb,KAAK,EAAE,IAAI,CAAC,KAAK;QACjB,aAAa;KAChB,CAAC,CAAC;AACX,CAAC","sourcesContent":["import {SocketEventType} from '../../../utilities/enum';\nimport {\n connectEntityToSocketEvent,\n disconnectEntityFromSocketEvent,\n EventFactory,\n LocalEventEmitter,\n LocalSubs,\n OutputFor,\n} from '../../socket';\nimport {randomUUID} from 'crypto';\nimport {getInstanceId} from '../../../utilities/instance.utils';\nimport {on} from 'ws';\nimport {tracked} from '@trpc/server';\n\ninterface SubscriptionContext {\n entity?: { id: string };\n signal?: AbortSignal;\n}\n\ninterface SubscriptionOpts<TInput = any> {\n ctx: SubscriptionContext;\n input: TInput;\n}\n\ninterface CreateSubscriptionOptions<TEventType extends SocketEventType> {\n eventType: TEventType;\n ctx: SubscriptionContext;\n input: any;\n getTrackingId?: (payload: OutputFor<TEventType>) => string;\n}\n\nexport async function* createSocketSubscription<TEventType extends SocketEventType>(\n options: CreateSubscriptionOptions<TEventType>\n) {\n const {eventType, ctx, input, getTrackingId} = options;\n\n const registration = EventFactory.getRegistration(eventType);\n const socketId = randomUUID();\n const localEE = new LocalEventEmitter(socketId);\n\n const entityId = ctx.entity!.id;\n const eventKey = EventFactory.getSubscriptionKey(eventType, input);\n\n const instanceId = getInstanceId();\n const socketInfo = {socketId, eventKey, instanceId};\n\n await connectEntityToSocketEvent(entityId, socketInfo);\n LocalSubs.bind(entityId, eventKey, localEE);\n\n ctx.signal?.addEventListener('abort', () => {\n LocalSubs.unbind(entityId, eventKey, localEE);\n disconnectEntityFromSocketEvent(entityId, socketInfo).catch(console.error);\n });\n\n type Out = OutputFor<TEventType>;\n for await (const [data] of on(localEE.ee, eventKey, {signal: ctx.signal})) {\n const payload = data as Out;\n const id = getTrackingId\n ? getTrackingId(payload)\n : (payload as any)._id?.toString() ?? randomUUID();\n\n yield tracked(id, payload);\n }\n}\n\nexport function socketSubscription<TEventType extends SocketEventType>(\n eventType: TEventType,\n getTrackingId?: (payload: OutputFor<TEventType>) => string\n) {\n return (opts: SubscriptionOpts) =>\n createSocketSubscription({\n eventType,\n ctx: opts.ctx,\n input: opts.input,\n getTrackingId,\n });\n}\n\n/**\n * @Example\n * const socketRouterTwo = createTRPCRouter({\n * onMessage: createAuthenticatedProcedure({entityTypes: [AuthEntityType.CRM]})\n * .input(ChatroomMessageSendSocketInputSchema)\n * .output(\n * zAsyncIterable({\n * yield: ChatroomMessageSendOutputSchema,\n * tracked: true,\n * })\n * )\n * .subscription(socketSubscription(SocketEventType.CHATROOM_MESSAGE_SEND)),\n *\n * onChatMessage: createAuthenticatedProcedure({entityTypes: [AuthEntityType.CRM]})\n * .input(ChatlistMessageSendSocketInputSchema)\n * .output(\n * zAsyncIterable({\n * yield: ChatlistMessageSendSocketOutputSchema,\n * tracked: true,\n * })\n * )\n * .subscription(socketSubscription(SocketEventType.CHATLIST_MESSAGE_RECEIVED)),\n * });\n */\n\n"]}
|
package/dist/types/README.md
CHANGED
package/dist/types/package.json
CHANGED
|
@@ -647,7 +647,7 @@ export declare const createResponseSchema: <T>(schema: z.ZodSchema<T>) => z.ZodO
|
|
|
647
647
|
totalPages: number;
|
|
648
648
|
} | undefined;
|
|
649
649
|
}>, z.ZodType<T, z.ZodTypeDef, T>]>>;
|
|
650
|
-
}>, any> extends infer T_1 ? { [k in keyof T_1]:
|
|
650
|
+
}>, any> extends infer T_1 ? { [k in keyof T_1]: z.objectUtil.addQuestionMarks<z.baseObjectOutputType<{
|
|
651
651
|
success: z.ZodBoolean;
|
|
652
652
|
message: z.ZodString | z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
653
653
|
data: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -685,7 +685,83 @@ export declare const createResponseSchema: <T>(schema: z.ZodSchema<T>) => z.ZodO
|
|
|
685
685
|
totalPages: number;
|
|
686
686
|
} | undefined;
|
|
687
687
|
}>, z.ZodType<T, z.ZodTypeDef, T>]>>;
|
|
688
|
-
}>
|
|
688
|
+
}>, any>[k]; } : never, z.baseObjectInputType<{
|
|
689
|
+
success: z.ZodBoolean;
|
|
690
|
+
message: z.ZodString | z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
691
|
+
data: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
692
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
693
|
+
page: z.ZodNumber;
|
|
694
|
+
size: z.ZodNumber;
|
|
695
|
+
totalElements: z.ZodNumber;
|
|
696
|
+
totalPages: z.ZodNumber;
|
|
697
|
+
}, "strip", z.ZodTypeAny, {
|
|
698
|
+
size: number;
|
|
699
|
+
page: number;
|
|
700
|
+
totalElements: number;
|
|
701
|
+
totalPages: number;
|
|
702
|
+
}, {
|
|
703
|
+
size: number;
|
|
704
|
+
page: number;
|
|
705
|
+
totalElements: number;
|
|
706
|
+
totalPages: number;
|
|
707
|
+
}>>;
|
|
708
|
+
documents: z.ZodArray<z.ZodType<T, z.ZodTypeDef, T>, "many">;
|
|
709
|
+
}, "strip", z.ZodTypeAny, {
|
|
710
|
+
documents: T[];
|
|
711
|
+
metadata?: {
|
|
712
|
+
size: number;
|
|
713
|
+
page: number;
|
|
714
|
+
totalElements: number;
|
|
715
|
+
totalPages: number;
|
|
716
|
+
} | undefined;
|
|
717
|
+
}, {
|
|
718
|
+
documents: T[];
|
|
719
|
+
metadata?: {
|
|
720
|
+
size: number;
|
|
721
|
+
page: number;
|
|
722
|
+
totalElements: number;
|
|
723
|
+
totalPages: number;
|
|
724
|
+
} | undefined;
|
|
725
|
+
}>, z.ZodType<T, z.ZodTypeDef, T>]>>;
|
|
726
|
+
}> extends infer T_2 ? { [k_1 in keyof T_2]: z.baseObjectInputType<{
|
|
727
|
+
success: z.ZodBoolean;
|
|
728
|
+
message: z.ZodString | z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
729
|
+
data: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
730
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
731
|
+
page: z.ZodNumber;
|
|
732
|
+
size: z.ZodNumber;
|
|
733
|
+
totalElements: z.ZodNumber;
|
|
734
|
+
totalPages: z.ZodNumber;
|
|
735
|
+
}, "strip", z.ZodTypeAny, {
|
|
736
|
+
size: number;
|
|
737
|
+
page: number;
|
|
738
|
+
totalElements: number;
|
|
739
|
+
totalPages: number;
|
|
740
|
+
}, {
|
|
741
|
+
size: number;
|
|
742
|
+
page: number;
|
|
743
|
+
totalElements: number;
|
|
744
|
+
totalPages: number;
|
|
745
|
+
}>>;
|
|
746
|
+
documents: z.ZodArray<z.ZodType<T, z.ZodTypeDef, T>, "many">;
|
|
747
|
+
}, "strip", z.ZodTypeAny, {
|
|
748
|
+
documents: T[];
|
|
749
|
+
metadata?: {
|
|
750
|
+
size: number;
|
|
751
|
+
page: number;
|
|
752
|
+
totalElements: number;
|
|
753
|
+
totalPages: number;
|
|
754
|
+
} | undefined;
|
|
755
|
+
}, {
|
|
756
|
+
documents: T[];
|
|
757
|
+
metadata?: {
|
|
758
|
+
size: number;
|
|
759
|
+
page: number;
|
|
760
|
+
totalElements: number;
|
|
761
|
+
totalPages: number;
|
|
762
|
+
} | undefined;
|
|
763
|
+
}>, z.ZodType<T, z.ZodTypeDef, T>]>>;
|
|
764
|
+
}>[k_1]; } : never>;
|
|
689
765
|
export type PaginatedDTO<T> = {
|
|
690
766
|
metadata: DTO<typeof metadataSchema>;
|
|
691
767
|
documents: T[];
|
|
@@ -76,22 +76,34 @@ export declare class SchemaBuilder<T extends z.ZodRawShape> {
|
|
|
76
76
|
private baseSchema;
|
|
77
77
|
constructor(baseFields: T, includeTimestamps?: boolean, includeTracking?: boolean);
|
|
78
78
|
private createBaseSchema;
|
|
79
|
-
getBaseSchema(): z.ZodObject<T, "strict", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T>, any> extends infer T_1 ? { [k in keyof T_1]:
|
|
79
|
+
getBaseSchema(): z.ZodObject<T, "strict", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T>, any> extends infer T_1 ? { [k in keyof T_1]: z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T>, any>[k]; } : never, z.baseObjectInputType<T> extends infer T_2 ? { [k_1 in keyof T_2]: z.baseObjectInputType<T>[k_1]; } : never>;
|
|
80
80
|
getEntitySchema(): z.ZodObject<z.objectUtil.extendShape<T, {
|
|
81
81
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
82
|
-
}> extends infer T_1 extends z.ZodRawShape ? { [k in keyof T_1]: z.ZodOptional<
|
|
82
|
+
}> extends infer T_1 extends z.ZodRawShape ? { [k in keyof T_1]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
83
83
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
84
|
-
}>
|
|
84
|
+
}>[k]>; } : never, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<T, {
|
|
85
85
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
86
|
-
}> extends infer
|
|
86
|
+
}> extends infer T_2 extends z.ZodRawShape ? { [k in keyof T_2]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
87
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
88
|
+
}>[k]>; } : never, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<T, {
|
|
89
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
90
|
+
}> extends infer T_3 extends z.ZodRawShape ? { [k in keyof T_3]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
91
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
92
|
+
}>[k]>; } : never, z.ZodTypeAny, "passthrough">>;
|
|
87
93
|
getIdSchema(): z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
88
94
|
getUpdateSchema(excludeFields?: ExcludeFromUpdate): z.ZodObject<z.objectUtil.extendShape<T, {
|
|
89
95
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
90
|
-
}> extends infer T_1 extends z.ZodRawShape ? { [k in keyof T_1]: z.ZodOptional<
|
|
96
|
+
}> extends infer T_1 extends z.ZodRawShape ? { [k in keyof T_1]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
97
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
98
|
+
}>[k]>; } : never, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<T, {
|
|
99
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
100
|
+
}> extends infer T_2 extends z.ZodRawShape ? { [k in keyof T_2]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
101
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
102
|
+
}>[k]>; } : never, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<T, {
|
|
91
103
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
92
|
-
}> extends infer
|
|
104
|
+
}> extends infer T_3 extends z.ZodRawShape ? { [k in keyof T_3]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
93
105
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
94
|
-
}>
|
|
106
|
+
}>[k]>; } : never, z.ZodTypeAny, "passthrough">> | z.ZodObject<{
|
|
95
107
|
[x: string]: z.ZodOptional<z.ZodTypeAny>;
|
|
96
108
|
}, "strict", z.ZodTypeAny, {
|
|
97
109
|
[x: string]: any;
|
|
@@ -114,22 +126,34 @@ export declare class SchemaBuilder<T extends z.ZodRawShape> {
|
|
|
114
126
|
[x: string]: any;
|
|
115
127
|
}>;
|
|
116
128
|
getAllSchemas(excludeFromUpdate?: ExcludeFromUpdate): {
|
|
117
|
-
BaseSchema: z.ZodObject<T, "strict", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T>, any> extends infer T_1 ? { [k in keyof T_1]:
|
|
129
|
+
BaseSchema: z.ZodObject<T, "strict", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T>, any> extends infer T_1 ? { [k in keyof T_1]: z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T>, any>[k]; } : never, z.baseObjectInputType<T> extends infer T_2 ? { [k_1 in keyof T_2]: z.baseObjectInputType<T>[k_1]; } : never>;
|
|
118
130
|
EntitySchema: z.ZodObject<z.objectUtil.extendShape<T, {
|
|
119
131
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
120
|
-
}> extends infer T_3 extends z.ZodRawShape ? { [k_2 in keyof T_3]: z.ZodOptional<
|
|
132
|
+
}> extends infer T_3 extends z.ZodRawShape ? { [k_2 in keyof T_3]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
121
133
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
122
|
-
}>
|
|
134
|
+
}>[k_2]>; } : never, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<T, {
|
|
123
135
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
124
|
-
}> extends infer
|
|
136
|
+
}> extends infer T_4 extends z.ZodRawShape ? { [k_2 in keyof T_4]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
137
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
138
|
+
}>[k_2]>; } : never, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<T, {
|
|
139
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
140
|
+
}> extends infer T_5 extends z.ZodRawShape ? { [k_2 in keyof T_5]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
141
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
142
|
+
}>[k_2]>; } : never, z.ZodTypeAny, "passthrough">>;
|
|
125
143
|
IdSchema: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
126
144
|
UpdateSchema: z.ZodObject<z.objectUtil.extendShape<T, {
|
|
127
145
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
128
|
-
}> extends infer T_6 extends z.ZodRawShape ? { [k_2 in keyof T_6]: z.ZodOptional<
|
|
146
|
+
}> extends infer T_6 extends z.ZodRawShape ? { [k_2 in keyof T_6]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
147
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
148
|
+
}>[k_2]>; } : never, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<T, {
|
|
149
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
150
|
+
}> extends infer T_7 extends z.ZodRawShape ? { [k_2 in keyof T_7]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
151
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
152
|
+
}>[k_2]>; } : never, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<T, {
|
|
129
153
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
130
|
-
}> extends infer
|
|
154
|
+
}> extends infer T_8 extends z.ZodRawShape ? { [k_2 in keyof T_8]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
131
155
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
132
|
-
}>
|
|
156
|
+
}>[k_2]>; } : never, z.ZodTypeAny, "passthrough">> | z.ZodObject<{
|
|
133
157
|
[x: string]: z.ZodOptional<z.ZodTypeAny>;
|
|
134
158
|
}, "strict", z.ZodTypeAny, {
|
|
135
159
|
[x: string]: any;
|
|
@@ -647,7 +647,7 @@ export declare const createResponseSchema: <T>(schema: z.ZodSchema<T>) => z.ZodO
|
|
|
647
647
|
totalPages: number;
|
|
648
648
|
} | undefined;
|
|
649
649
|
}>, z.ZodType<T, z.ZodTypeDef, T>]>>;
|
|
650
|
-
}>, any> extends infer T_1 ? { [k in keyof T_1]:
|
|
650
|
+
}>, any> extends infer T_1 ? { [k in keyof T_1]: z.objectUtil.addQuestionMarks<z.baseObjectOutputType<{
|
|
651
651
|
success: z.ZodBoolean;
|
|
652
652
|
message: z.ZodString | z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
653
653
|
data: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -685,7 +685,83 @@ export declare const createResponseSchema: <T>(schema: z.ZodSchema<T>) => z.ZodO
|
|
|
685
685
|
totalPages: number;
|
|
686
686
|
} | undefined;
|
|
687
687
|
}>, z.ZodType<T, z.ZodTypeDef, T>]>>;
|
|
688
|
-
}>
|
|
688
|
+
}>, any>[k]; } : never, z.baseObjectInputType<{
|
|
689
|
+
success: z.ZodBoolean;
|
|
690
|
+
message: z.ZodString | z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
691
|
+
data: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
692
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
693
|
+
page: z.ZodNumber;
|
|
694
|
+
size: z.ZodNumber;
|
|
695
|
+
totalElements: z.ZodNumber;
|
|
696
|
+
totalPages: z.ZodNumber;
|
|
697
|
+
}, "strip", z.ZodTypeAny, {
|
|
698
|
+
page: number;
|
|
699
|
+
size: number;
|
|
700
|
+
totalElements: number;
|
|
701
|
+
totalPages: number;
|
|
702
|
+
}, {
|
|
703
|
+
page: number;
|
|
704
|
+
size: number;
|
|
705
|
+
totalElements: number;
|
|
706
|
+
totalPages: number;
|
|
707
|
+
}>>;
|
|
708
|
+
documents: z.ZodArray<z.ZodType<T, z.ZodTypeDef, T>, "many">;
|
|
709
|
+
}, "strip", z.ZodTypeAny, {
|
|
710
|
+
documents: T[];
|
|
711
|
+
metadata?: {
|
|
712
|
+
page: number;
|
|
713
|
+
size: number;
|
|
714
|
+
totalElements: number;
|
|
715
|
+
totalPages: number;
|
|
716
|
+
} | undefined;
|
|
717
|
+
}, {
|
|
718
|
+
documents: T[];
|
|
719
|
+
metadata?: {
|
|
720
|
+
page: number;
|
|
721
|
+
size: number;
|
|
722
|
+
totalElements: number;
|
|
723
|
+
totalPages: number;
|
|
724
|
+
} | undefined;
|
|
725
|
+
}>, z.ZodType<T, z.ZodTypeDef, T>]>>;
|
|
726
|
+
}> extends infer T_2 ? { [k_1 in keyof T_2]: z.baseObjectInputType<{
|
|
727
|
+
success: z.ZodBoolean;
|
|
728
|
+
message: z.ZodString | z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
729
|
+
data: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
730
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
731
|
+
page: z.ZodNumber;
|
|
732
|
+
size: z.ZodNumber;
|
|
733
|
+
totalElements: z.ZodNumber;
|
|
734
|
+
totalPages: z.ZodNumber;
|
|
735
|
+
}, "strip", z.ZodTypeAny, {
|
|
736
|
+
page: number;
|
|
737
|
+
size: number;
|
|
738
|
+
totalElements: number;
|
|
739
|
+
totalPages: number;
|
|
740
|
+
}, {
|
|
741
|
+
page: number;
|
|
742
|
+
size: number;
|
|
743
|
+
totalElements: number;
|
|
744
|
+
totalPages: number;
|
|
745
|
+
}>>;
|
|
746
|
+
documents: z.ZodArray<z.ZodType<T, z.ZodTypeDef, T>, "many">;
|
|
747
|
+
}, "strip", z.ZodTypeAny, {
|
|
748
|
+
documents: T[];
|
|
749
|
+
metadata?: {
|
|
750
|
+
page: number;
|
|
751
|
+
size: number;
|
|
752
|
+
totalElements: number;
|
|
753
|
+
totalPages: number;
|
|
754
|
+
} | undefined;
|
|
755
|
+
}, {
|
|
756
|
+
documents: T[];
|
|
757
|
+
metadata?: {
|
|
758
|
+
page: number;
|
|
759
|
+
size: number;
|
|
760
|
+
totalElements: number;
|
|
761
|
+
totalPages: number;
|
|
762
|
+
} | undefined;
|
|
763
|
+
}>, z.ZodType<T, z.ZodTypeDef, T>]>>;
|
|
764
|
+
}>[k_1]; } : never>;
|
|
689
765
|
export type PaginatedDTO<T> = {
|
|
690
766
|
metadata: DTO<typeof metadataSchema>;
|
|
691
767
|
documents: T[];
|
|
@@ -76,22 +76,34 @@ export declare class SchemaBuilder<T extends z.ZodRawShape> {
|
|
|
76
76
|
private baseSchema;
|
|
77
77
|
constructor(baseFields: T, includeTimestamps?: boolean, includeTracking?: boolean);
|
|
78
78
|
private createBaseSchema;
|
|
79
|
-
getBaseSchema(): z.ZodObject<T, "strict", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T>, any> extends infer T_1 ? { [k in keyof T_1]:
|
|
79
|
+
getBaseSchema(): z.ZodObject<T, "strict", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T>, any> extends infer T_1 ? { [k in keyof T_1]: z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T>, any>[k]; } : never, z.baseObjectInputType<T> extends infer T_2 ? { [k_1 in keyof T_2]: z.baseObjectInputType<T>[k_1]; } : never>;
|
|
80
80
|
getEntitySchema(): z.ZodObject<z.objectUtil.extendShape<T, {
|
|
81
81
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
82
|
-
}> extends infer T_1 extends z.ZodRawShape ? { [k in keyof T_1]: z.ZodOptional<
|
|
82
|
+
}> extends infer T_1 extends z.ZodRawShape ? { [k in keyof T_1]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
83
83
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
84
|
-
}>
|
|
84
|
+
}>[k]>; } : never, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<T, {
|
|
85
85
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
86
|
-
}> extends infer
|
|
86
|
+
}> extends infer T_2 extends z.ZodRawShape ? { [k in keyof T_2]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
87
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
88
|
+
}>[k]>; } : never, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<T, {
|
|
89
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
90
|
+
}> extends infer T_3 extends z.ZodRawShape ? { [k in keyof T_3]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
91
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
92
|
+
}>[k]>; } : never, z.ZodTypeAny, "passthrough">>;
|
|
87
93
|
getIdSchema(): z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
88
94
|
getUpdateSchema(excludeFields?: ExcludeFromUpdate): z.ZodObject<z.objectUtil.extendShape<T, {
|
|
89
95
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
90
|
-
}> extends infer T_1 extends z.ZodRawShape ? { [k in keyof T_1]: z.ZodOptional<
|
|
96
|
+
}> extends infer T_1 extends z.ZodRawShape ? { [k in keyof T_1]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
97
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
98
|
+
}>[k]>; } : never, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<T, {
|
|
99
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
100
|
+
}> extends infer T_2 extends z.ZodRawShape ? { [k in keyof T_2]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
101
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
102
|
+
}>[k]>; } : never, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<T, {
|
|
91
103
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
92
|
-
}> extends infer
|
|
104
|
+
}> extends infer T_3 extends z.ZodRawShape ? { [k in keyof T_3]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
93
105
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
94
|
-
}>
|
|
106
|
+
}>[k]>; } : never, z.ZodTypeAny, "passthrough">> | z.ZodObject<{
|
|
95
107
|
[x: string]: z.ZodOptional<z.ZodTypeAny>;
|
|
96
108
|
}, "strict", z.ZodTypeAny, {
|
|
97
109
|
[x: string]: any;
|
|
@@ -114,22 +126,34 @@ export declare class SchemaBuilder<T extends z.ZodRawShape> {
|
|
|
114
126
|
[x: string]: any;
|
|
115
127
|
}>;
|
|
116
128
|
getAllSchemas(excludeFromUpdate?: ExcludeFromUpdate): {
|
|
117
|
-
BaseSchema: z.ZodObject<T, "strict", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T>, any> extends infer T_1 ? { [k in keyof T_1]:
|
|
129
|
+
BaseSchema: z.ZodObject<T, "strict", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T>, any> extends infer T_1 ? { [k in keyof T_1]: z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T>, any>[k]; } : never, z.baseObjectInputType<T> extends infer T_2 ? { [k_1 in keyof T_2]: z.baseObjectInputType<T>[k_1]; } : never>;
|
|
118
130
|
EntitySchema: z.ZodObject<z.objectUtil.extendShape<T, {
|
|
119
131
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
120
|
-
}> extends infer T_3 extends z.ZodRawShape ? { [k_2 in keyof T_3]: z.ZodOptional<
|
|
132
|
+
}> extends infer T_3 extends z.ZodRawShape ? { [k_2 in keyof T_3]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
121
133
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
122
|
-
}>
|
|
134
|
+
}>[k_2]>; } : never, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<T, {
|
|
123
135
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
124
|
-
}> extends infer
|
|
136
|
+
}> extends infer T_4 extends z.ZodRawShape ? { [k_2 in keyof T_4]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
137
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
138
|
+
}>[k_2]>; } : never, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<T, {
|
|
139
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
140
|
+
}> extends infer T_5 extends z.ZodRawShape ? { [k_2 in keyof T_5]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
141
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
142
|
+
}>[k_2]>; } : never, z.ZodTypeAny, "passthrough">>;
|
|
125
143
|
IdSchema: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
126
144
|
UpdateSchema: z.ZodObject<z.objectUtil.extendShape<T, {
|
|
127
145
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
128
|
-
}> extends infer T_6 extends z.ZodRawShape ? { [k_2 in keyof T_6]: z.ZodOptional<
|
|
146
|
+
}> extends infer T_6 extends z.ZodRawShape ? { [k_2 in keyof T_6]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
147
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
148
|
+
}>[k_2]>; } : never, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<T, {
|
|
149
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
150
|
+
}> extends infer T_7 extends z.ZodRawShape ? { [k_2 in keyof T_7]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
151
|
+
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
152
|
+
}>[k_2]>; } : never, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<T, {
|
|
129
153
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
130
|
-
}> extends infer
|
|
154
|
+
}> extends infer T_8 extends z.ZodRawShape ? { [k_2 in keyof T_8]: z.ZodOptional<z.objectUtil.extendShape<T, {
|
|
131
155
|
_id: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, mongoose.Types.ObjectId, string>, z.ZodType<mongoose.Types.ObjectId, z.ZodTypeDef, mongoose.Types.ObjectId>]>;
|
|
132
|
-
}>
|
|
156
|
+
}>[k_2]>; } : never, z.ZodTypeAny, "passthrough">> | z.ZodObject<{
|
|
133
157
|
[x: string]: z.ZodOptional<z.ZodTypeAny>;
|
|
134
158
|
}, "strict", z.ZodTypeAny, {
|
|
135
159
|
[x: string]: any;
|