@emeryld/rrroutes-openapi 2.4.19 → 2.5.1

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.
@@ -9,7 +9,7 @@ export declare const socketEventSchema: z.ZodObject<{
9
9
  createdAt: z.ZodNumber;
10
10
  updatedAt: z.ZodNumber;
11
11
  eventName: z.ZodString;
12
- message: z.ZodOptional<z.ZodJSONSchema>;
12
+ message: z.ZodOptional<z.ZodAny>;
13
13
  toRoomId: z.ZodNullable<z.ZodArray<z.ZodString>>;
14
14
  }, z.core.$strip>;
15
15
  export type SocketEventType = z.infer<typeof socketEventSchema>;
@@ -84,7 +84,7 @@ export declare const socketLeaves: readonly [{
84
84
  createdAt: z.ZodNumber;
85
85
  updatedAt: z.ZodNumber;
86
86
  eventName: z.ZodString;
87
- message: z.ZodOptional<z.ZodJSONSchema>;
87
+ message: z.ZodOptional<z.ZodAny>;
88
88
  toRoomId: z.ZodNullable<z.ZodArray<z.ZodString>>;
89
89
  }, z.core.$strip>>;
90
90
  querySchema: z.ZodObject<{
@@ -139,7 +139,7 @@ export declare const socketLeaves: readonly [{
139
139
  createdAt: z.ZodNumber;
140
140
  updatedAt: z.ZodNumber;
141
141
  eventName: z.ZodString;
142
- message: z.ZodOptional<z.ZodJSONSchema>;
142
+ message: z.ZodOptional<z.ZodAny>;
143
143
  toRoomId: z.ZodNullable<z.ZodArray<z.ZodString>>;
144
144
  }, z.core.$strip>>;
145
145
  querySchema: z.ZodObject<{
@@ -192,7 +192,7 @@ export declare const socketLeaves: readonly [{
192
192
  createdAt: z.ZodNumber;
193
193
  updatedAt: z.ZodNumber;
194
194
  eventName: z.ZodString;
195
- message: z.ZodOptional<z.ZodJSONSchema>;
195
+ message: z.ZodOptional<z.ZodAny>;
196
196
  toRoomId: z.ZodNullable<z.ZodArray<z.ZodString>>;
197
197
  }, z.core.$strip>>;
198
198
  meta: z.ZodObject<{
@@ -249,7 +249,7 @@ export declare const socketLeaves: readonly [{
249
249
  description?: string | undefined;
250
250
  groupId?: string | undefined;
251
251
  tags?: string[] | undefined;
252
- message?: z.core.util.JSONType | undefined;
252
+ message?: any;
253
253
  }[];
254
254
  meta: {
255
255
  totalCount?: number | undefined;
@@ -266,7 +266,7 @@ export declare const socketLeaves: readonly [{
266
266
  description?: string | undefined;
267
267
  groupId?: string | undefined;
268
268
  tags?: string[] | undefined;
269
- message?: z.core.util.JSONType | undefined;
269
+ message?: any;
270
270
  }[];
271
271
  meta: {
272
272
  totalCount?: number | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emeryld/rrroutes-openapi",
3
- "version": "2.4.19",
3
+ "version": "2.5.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -17,8 +17,8 @@
17
17
  "dist"
18
18
  ],
19
19
  "dependencies": {
20
- "@emeryld/rrroutes-client": "^2.4.11",
21
- "@emeryld/rrroutes-contract": "^2.4.23",
20
+ "@emeryld/rrroutes-client": "^2.5.0",
21
+ "@emeryld/rrroutes-contract": "^2.5.0",
22
22
  "@emotion/cache": "^11.14.0",
23
23
  "@emotion/react": "^11.14.0",
24
24
  "@emotion/styled": "^11.14.1",
@@ -43,6 +43,10 @@
43
43
  "vite": "^6.4.1",
44
44
  "vite-plugin-terminal": "^1.3.0"
45
45
  },
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "https://github.com/EmeryK-1/RRRoutes.git"
49
+ },
46
50
  "scripts": {
47
51
  "clean": "rimraf dist && rimraf node_modules",
48
52
  "dev": "vite",