@remnawave/backend-contract 2.6.10 → 2.6.11

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.
@@ -31,6 +31,7 @@ export declare namespace GetUserIpsResultCommand {
31
31
  result: z.ZodNullable<z.ZodObject<{
32
32
  success: z.ZodBoolean;
33
33
  userUuid: z.ZodString;
34
+ userId: z.ZodString;
34
35
  nodes: z.ZodArray<z.ZodObject<{
35
36
  nodeUuid: z.ZodString;
36
37
  nodeName: z.ZodString;
@@ -56,6 +57,7 @@ export declare namespace GetUserIpsResultCommand {
56
57
  }[];
57
58
  userUuid: string;
58
59
  success: boolean;
60
+ userId: string;
59
61
  }, {
60
62
  nodes: {
61
63
  nodeUuid: string;
@@ -65,6 +67,7 @@ export declare namespace GetUserIpsResultCommand {
65
67
  }[];
66
68
  userUuid: string;
67
69
  success: boolean;
70
+ userId: string;
68
71
  }>>;
69
72
  }, "strip", z.ZodTypeAny, {
70
73
  isCompleted: boolean;
@@ -83,6 +86,7 @@ export declare namespace GetUserIpsResultCommand {
83
86
  }[];
84
87
  userUuid: string;
85
88
  success: boolean;
89
+ userId: string;
86
90
  } | null;
87
91
  }, {
88
92
  isCompleted: boolean;
@@ -101,6 +105,7 @@ export declare namespace GetUserIpsResultCommand {
101
105
  }[];
102
106
  userUuid: string;
103
107
  success: boolean;
108
+ userId: string;
104
109
  } | null;
105
110
  }>;
106
111
  }, "strip", z.ZodTypeAny, {
@@ -121,6 +126,7 @@ export declare namespace GetUserIpsResultCommand {
121
126
  }[];
122
127
  userUuid: string;
123
128
  success: boolean;
129
+ userId: string;
124
130
  } | null;
125
131
  };
126
132
  }, {
@@ -141,6 +147,7 @@ export declare namespace GetUserIpsResultCommand {
141
147
  }[];
142
148
  userUuid: string;
143
149
  success: boolean;
150
+ userId: string;
144
151
  } | null;
145
152
  };
146
153
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"get-user-ips-result.command.d.ts","sourceRoot":"","sources":["../../../../../commands/bandwidth-stats/user-ips/get-user-ips-result.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,uBAAuB,CAAC;IAC9B,MAAM,GAAG,2BAA+C,CAAC;IACzD,MAAM,OAAO,QAAgB,CAAC;IAE9B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAwBzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-user-ips-result.command.d.ts","sourceRoot":"","sources":["../../../../../commands/bandwidth-stats/user-ips/get-user-ips-result.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,uBAAuB,CAAC;IAC9B,MAAM,GAAG,2BAA+C,CAAC;IACzD,MAAM,OAAO,QAAgB,CAAC;IAE9B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAyBzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -25,6 +25,7 @@ var GetUserIpsResultCommand;
25
25
  .object({
26
26
  success: zod_1.z.boolean(),
27
27
  userUuid: zod_1.z.string().uuid(),
28
+ userId: zod_1.z.string(),
28
29
  nodes: zod_1.z.array(zod_1.z.object({
29
30
  nodeUuid: zod_1.z.string().uuid(),
30
31
  nodeName: zod_1.z.string(),
@@ -25,6 +25,7 @@ var GetUserIpsResultCommand;
25
25
  .object({
26
26
  success: zod_1.z.boolean(),
27
27
  userUuid: zod_1.z.string().uuid(),
28
+ userId: zod_1.z.string(),
28
29
  nodes: zod_1.z.array(zod_1.z.object({
29
30
  nodeUuid: zod_1.z.string().uuid(),
30
31
  nodeName: zod_1.z.string(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnawave/backend-contract",
3
- "version": "2.6.10",
3
+ "version": "2.6.11",
4
4
  "public": true,
5
5
  "license": "AGPL-3.0-only",
6
6
  "description": "A contract library for Remnawave Backend. It can be used in backend and frontend.",