@emeryld/rrroutes-openapi 2.5.0 → 2.5.2

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.
@@ -8,8 +8,7 @@ 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
- message: z.ZodOptional<z.ZodJSONSchema>;
11
+ message: z.ZodOptional<z.ZodAny>;
13
12
  toRoomId: z.ZodNullable<z.ZodArray<z.ZodString>>;
14
13
  }, z.core.$strip>;
15
14
  export type SocketEventType = z.infer<typeof socketEventSchema>;
@@ -83,8 +82,7 @@ export declare const socketLeaves: readonly [{
83
82
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
84
83
  createdAt: z.ZodNumber;
85
84
  updatedAt: z.ZodNumber;
86
- eventName: z.ZodString;
87
- message: z.ZodOptional<z.ZodJSONSchema>;
85
+ message: z.ZodOptional<z.ZodAny>;
88
86
  toRoomId: z.ZodNullable<z.ZodArray<z.ZodString>>;
89
87
  }, z.core.$strip>>;
90
88
  querySchema: z.ZodObject<{
@@ -138,8 +136,7 @@ export declare const socketLeaves: readonly [{
138
136
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
139
137
  createdAt: z.ZodNumber;
140
138
  updatedAt: z.ZodNumber;
141
- eventName: z.ZodString;
142
- message: z.ZodOptional<z.ZodJSONSchema>;
139
+ message: z.ZodOptional<z.ZodAny>;
143
140
  toRoomId: z.ZodNullable<z.ZodArray<z.ZodString>>;
144
141
  }, z.core.$strip>>;
145
142
  querySchema: z.ZodObject<{
@@ -191,8 +188,7 @@ export declare const socketLeaves: readonly [{
191
188
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
192
189
  createdAt: z.ZodNumber;
193
190
  updatedAt: z.ZodNumber;
194
- eventName: z.ZodString;
195
- message: z.ZodOptional<z.ZodJSONSchema>;
191
+ message: z.ZodOptional<z.ZodAny>;
196
192
  toRoomId: z.ZodNullable<z.ZodArray<z.ZodString>>;
197
193
  }, z.core.$strip>>;
198
194
  meta: z.ZodObject<{
@@ -244,12 +240,11 @@ export declare const socketLeaves: readonly [{
244
240
  name: string;
245
241
  createdAt: number;
246
242
  updatedAt: number;
247
- eventName: string;
248
243
  toRoomId: string[] | null;
249
244
  description?: string | undefined;
250
245
  groupId?: string | undefined;
251
246
  tags?: string[] | undefined;
252
- message?: z.core.util.JSONType | undefined;
247
+ message?: any;
253
248
  }[];
254
249
  meta: {
255
250
  totalCount?: number | undefined;
@@ -261,12 +256,11 @@ export declare const socketLeaves: readonly [{
261
256
  name: string;
262
257
  createdAt: number;
263
258
  updatedAt: number;
264
- eventName: string;
265
259
  toRoomId: string[] | null;
266
260
  description?: string | undefined;
267
261
  groupId?: string | undefined;
268
262
  tags?: string[] | undefined;
269
- message?: z.core.util.JSONType | undefined;
263
+ message?: any;
270
264
  }[];
271
265
  meta: {
272
266
  totalCount?: number | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emeryld/rrroutes-openapi",
3
- "version": "2.5.0",
3
+ "version": "2.5.2",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",