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