@emeryld/rrroutes-openapi 2.5.1 → 2.5.3
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/public/assets/docs.js +35 -35
- package/dist/web/v2/types/types.socket.d.ts +6 -6
- package/package.json +1 -1
|
@@ -8,9 +8,9 @@ export declare const socketEventSchema: z.ZodObject<{
|
|
|
8
8
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9
9
|
createdAt: z.ZodNumber;
|
|
10
10
|
updatedAt: z.ZodNumber;
|
|
11
|
-
eventName: z.ZodString;
|
|
12
11
|
message: z.ZodOptional<z.ZodAny>;
|
|
13
12
|
toRoomId: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
13
|
+
fromServer: z.ZodBoolean;
|
|
14
14
|
}, z.core.$strip>;
|
|
15
15
|
export type SocketEventType = z.infer<typeof socketEventSchema>;
|
|
16
16
|
export declare const socketEventQuerySchema: z.ZodObject<{
|
|
@@ -83,9 +83,9 @@ export declare const socketLeaves: readonly [{
|
|
|
83
83
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
84
84
|
createdAt: z.ZodNumber;
|
|
85
85
|
updatedAt: z.ZodNumber;
|
|
86
|
-
eventName: z.ZodString;
|
|
87
86
|
message: z.ZodOptional<z.ZodAny>;
|
|
88
87
|
toRoomId: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
88
|
+
fromServer: z.ZodBoolean;
|
|
89
89
|
}, z.core.$strip>>;
|
|
90
90
|
querySchema: z.ZodObject<{
|
|
91
91
|
beforeDate: z.ZodOptional<z.ZodString>;
|
|
@@ -138,9 +138,9 @@ export declare const socketLeaves: readonly [{
|
|
|
138
138
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
139
139
|
createdAt: z.ZodNumber;
|
|
140
140
|
updatedAt: z.ZodNumber;
|
|
141
|
-
eventName: z.ZodString;
|
|
142
141
|
message: z.ZodOptional<z.ZodAny>;
|
|
143
142
|
toRoomId: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
143
|
+
fromServer: z.ZodBoolean;
|
|
144
144
|
}, z.core.$strip>>;
|
|
145
145
|
querySchema: z.ZodObject<{
|
|
146
146
|
beforeDate: z.ZodOptional<z.ZodString>;
|
|
@@ -191,9 +191,9 @@ export declare const socketLeaves: readonly [{
|
|
|
191
191
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
192
192
|
createdAt: z.ZodNumber;
|
|
193
193
|
updatedAt: z.ZodNumber;
|
|
194
|
-
eventName: z.ZodString;
|
|
195
194
|
message: z.ZodOptional<z.ZodAny>;
|
|
196
195
|
toRoomId: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
196
|
+
fromServer: z.ZodBoolean;
|
|
197
197
|
}, z.core.$strip>>;
|
|
198
198
|
meta: z.ZodObject<{
|
|
199
199
|
totalCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -244,8 +244,8 @@ export declare const socketLeaves: readonly [{
|
|
|
244
244
|
name: string;
|
|
245
245
|
createdAt: number;
|
|
246
246
|
updatedAt: number;
|
|
247
|
-
eventName: string;
|
|
248
247
|
toRoomId: string[] | null;
|
|
248
|
+
fromServer: boolean;
|
|
249
249
|
description?: string | undefined;
|
|
250
250
|
groupId?: string | undefined;
|
|
251
251
|
tags?: string[] | undefined;
|
|
@@ -261,8 +261,8 @@ export declare const socketLeaves: readonly [{
|
|
|
261
261
|
name: string;
|
|
262
262
|
createdAt: number;
|
|
263
263
|
updatedAt: number;
|
|
264
|
-
eventName: string;
|
|
265
264
|
toRoomId: string[] | null;
|
|
265
|
+
fromServer: boolean;
|
|
266
266
|
description?: string | undefined;
|
|
267
267
|
groupId?: string | undefined;
|
|
268
268
|
tags?: string[] | undefined;
|