@remnawave/backend-contract 0.3.52 → 0.3.54

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.
Files changed (49) hide show
  1. package/build/backend/commands/nodes/create.command.d.ts +14 -0
  2. package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
  3. package/build/backend/commands/nodes/disable.command.d.ts +14 -0
  4. package/build/backend/commands/nodes/disable.command.d.ts.map +1 -1
  5. package/build/backend/commands/nodes/enable.command.d.ts +14 -0
  6. package/build/backend/commands/nodes/enable.command.d.ts.map +1 -1
  7. package/build/backend/commands/nodes/get-all.command.d.ts +14 -0
  8. package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
  9. package/build/backend/commands/nodes/get-one.command.d.ts +14 -0
  10. package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
  11. package/build/backend/commands/nodes/reorder.command.d.ts +20 -0
  12. package/build/backend/commands/nodes/reorder.command.d.ts.map +1 -1
  13. package/build/backend/commands/nodes/update.command.d.ts +20 -0
  14. package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
  15. package/build/backend/commands/users/create-user.command.d.ts +14 -0
  16. package/build/backend/commands/users/create-user.command.d.ts.map +1 -1
  17. package/build/backend/commands/users/disable-user.command.d.ts +14 -0
  18. package/build/backend/commands/users/disable-user.command.d.ts.map +1 -1
  19. package/build/backend/commands/users/enable-user.command.d.ts +14 -0
  20. package/build/backend/commands/users/enable-user.command.d.ts.map +1 -1
  21. package/build/backend/commands/users/get-all-users-v2.command.d.ts +18 -0
  22. package/build/backend/commands/users/get-all-users-v2.command.d.ts.map +1 -1
  23. package/build/backend/commands/users/get-user-by-email.command.d.ts +14 -0
  24. package/build/backend/commands/users/get-user-by-email.command.d.ts.map +1 -1
  25. package/build/backend/commands/users/get-user-by-short-uuid.command.d.ts +14 -0
  26. package/build/backend/commands/users/get-user-by-short-uuid.command.d.ts.map +1 -1
  27. package/build/backend/commands/users/get-user-by-subscription-uuid.command.d.ts +14 -0
  28. package/build/backend/commands/users/get-user-by-subscription-uuid.command.d.ts.map +1 -1
  29. package/build/backend/commands/users/get-user-by-telegram-id.command.d.ts +14 -0
  30. package/build/backend/commands/users/get-user-by-telegram-id.command.d.ts.map +1 -1
  31. package/build/backend/commands/users/get-user-by-username.command.d.ts +14 -0
  32. package/build/backend/commands/users/get-user-by-username.command.d.ts.map +1 -1
  33. package/build/backend/commands/users/get-user-by-uuid.command.d.ts +14 -0
  34. package/build/backend/commands/users/get-user-by-uuid.command.d.ts.map +1 -1
  35. package/build/backend/commands/users/reset-user-traffic.command.d.ts +14 -0
  36. package/build/backend/commands/users/reset-user-traffic.command.d.ts.map +1 -1
  37. package/build/backend/commands/users/revoke-user-subscription.command.d.ts +14 -0
  38. package/build/backend/commands/users/revoke-user-subscription.command.d.ts.map +1 -1
  39. package/build/backend/commands/users/update-user.command.d.ts +20 -0
  40. package/build/backend/commands/users/update-user.command.d.ts.map +1 -1
  41. package/build/backend/models/inbounds.schema.d.ts +6 -0
  42. package/build/backend/models/inbounds.schema.d.ts.map +1 -1
  43. package/build/backend/models/inbounds.schema.js +2 -0
  44. package/build/backend/models/nodes.schema.d.ts +10 -0
  45. package/build/backend/models/nodes.schema.d.ts.map +1 -1
  46. package/build/backend/models/users.schema.d.ts +10 -0
  47. package/build/backend/models/users.schema.d.ts.map +1 -1
  48. package/build/frontend/models/inbounds.schema.js +2 -0
  49. package/package.json +1 -1
@@ -95,14 +95,20 @@ export declare namespace GetAllUsersV2Command {
95
95
  uuid: z.ZodString;
96
96
  tag: z.ZodString;
97
97
  type: z.ZodString;
98
+ network: z.ZodNullable<z.ZodString>;
99
+ security: z.ZodNullable<z.ZodString>;
98
100
  }, "strip", z.ZodTypeAny, {
99
101
  uuid: string;
100
102
  type: string;
101
103
  tag: string;
104
+ network: string | null;
105
+ security: string | null;
102
106
  }, {
103
107
  uuid: string;
104
108
  type: string;
105
109
  tag: string;
110
+ network: string | null;
111
+ security: string | null;
106
112
  }>, "many">;
107
113
  }, {
108
114
  subscriptionUrl: z.ZodString;
@@ -144,6 +150,8 @@ export declare namespace GetAllUsersV2Command {
144
150
  uuid: string;
145
151
  type: string;
146
152
  tag: string;
153
+ network: string | null;
154
+ security: string | null;
147
155
  }[];
148
156
  subscriptionUrl: string;
149
157
  lastConnectedNode: {
@@ -175,6 +183,8 @@ export declare namespace GetAllUsersV2Command {
175
183
  uuid: string;
176
184
  type: string;
177
185
  tag: string;
186
+ network: string | null;
187
+ security: string | null;
178
188
  }[];
179
189
  subscriptionUrl: string;
180
190
  lastConnectedNode: {
@@ -215,6 +225,8 @@ export declare namespace GetAllUsersV2Command {
215
225
  uuid: string;
216
226
  type: string;
217
227
  tag: string;
228
+ network: string | null;
229
+ security: string | null;
218
230
  }[];
219
231
  subscriptionUrl: string;
220
232
  lastConnectedNode: {
@@ -249,6 +261,8 @@ export declare namespace GetAllUsersV2Command {
249
261
  uuid: string;
250
262
  type: string;
251
263
  tag: string;
264
+ network: string | null;
265
+ security: string | null;
252
266
  }[];
253
267
  subscriptionUrl: string;
254
268
  lastConnectedNode: {
@@ -291,6 +305,8 @@ export declare namespace GetAllUsersV2Command {
291
305
  uuid: string;
292
306
  type: string;
293
307
  tag: string;
308
+ network: string | null;
309
+ security: string | null;
294
310
  }[];
295
311
  subscriptionUrl: string;
296
312
  lastConnectedNode: {
@@ -327,6 +343,8 @@ export declare namespace GetAllUsersV2Command {
327
343
  uuid: string;
328
344
  type: string;
329
345
  tag: string;
346
+ network: string | null;
347
+ security: string | null;
330
348
  }[];
331
349
  subscriptionUrl: string;
332
350
  lastConnectedNode: {
@@ -1 +1 @@
1
- {"version":3,"file":"get-all-users-v2.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-all-users-v2.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,oBAAoB,CAAC;IAC3B,MAAM,GAAG,iBAA4B,CAAC;IACtC,MAAM,OAAO,iBAAM,CAAC;IAYpB,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAyB7B,CAAC;IAEH,KAAY,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAEvD,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAWzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-all-users-v2.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-all-users-v2.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,oBAAoB,CAAC;IAC3B,MAAM,GAAG,iBAA4B,CAAC;IACtC,MAAM,OAAO,iBAAM,CAAC;IAYpB,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAyB7B,CAAC;IAEH,KAAY,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAEvD,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAWzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -49,14 +49,20 @@ export declare namespace GetUserByEmailCommand {
49
49
  uuid: z.ZodString;
50
50
  tag: z.ZodString;
51
51
  type: z.ZodString;
52
+ network: z.ZodNullable<z.ZodString>;
53
+ security: z.ZodNullable<z.ZodString>;
52
54
  }, "strip", z.ZodTypeAny, {
53
55
  uuid: string;
54
56
  type: string;
55
57
  tag: string;
58
+ network: string | null;
59
+ security: string | null;
56
60
  }, {
57
61
  uuid: string;
58
62
  type: string;
59
63
  tag: string;
64
+ network: string | null;
65
+ security: string | null;
60
66
  }>, "many">;
61
67
  }, {
62
68
  subscriptionUrl: z.ZodString;
@@ -98,6 +104,8 @@ export declare namespace GetUserByEmailCommand {
98
104
  uuid: string;
99
105
  type: string;
100
106
  tag: string;
107
+ network: string | null;
108
+ security: string | null;
101
109
  }[];
102
110
  subscriptionUrl: string;
103
111
  lastConnectedNode: {
@@ -129,6 +137,8 @@ export declare namespace GetUserByEmailCommand {
129
137
  uuid: string;
130
138
  type: string;
131
139
  tag: string;
140
+ network: string | null;
141
+ security: string | null;
132
142
  }[];
133
143
  subscriptionUrl: string;
134
144
  lastConnectedNode: {
@@ -168,6 +178,8 @@ export declare namespace GetUserByEmailCommand {
168
178
  uuid: string;
169
179
  type: string;
170
180
  tag: string;
181
+ network: string | null;
182
+ security: string | null;
171
183
  }[];
172
184
  subscriptionUrl: string;
173
185
  lastConnectedNode: {
@@ -201,6 +213,8 @@ export declare namespace GetUserByEmailCommand {
201
213
  uuid: string;
202
214
  type: string;
203
215
  tag: string;
216
+ network: string | null;
217
+ security: string | null;
204
218
  }[];
205
219
  subscriptionUrl: string;
206
220
  lastConnectedNode: {
@@ -1 +1 @@
1
- {"version":3,"file":"get-user-by-email.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-email.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,qBAAqB,CAAC;IAC5B,MAAM,GAAG,2BAA8B,CAAC;IACxC,MAAM,OAAO,QAAgB,CAAC;IAE9B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAOzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-user-by-email.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-email.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,qBAAqB,CAAC;IAC5B,MAAM,GAAG,2BAA8B,CAAC;IACxC,MAAM,OAAO,QAAgB,CAAC;IAE9B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAOzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -49,14 +49,20 @@ export declare namespace GetUserByShortUuidCommand {
49
49
  uuid: z.ZodString;
50
50
  tag: z.ZodString;
51
51
  type: z.ZodString;
52
+ network: z.ZodNullable<z.ZodString>;
53
+ security: z.ZodNullable<z.ZodString>;
52
54
  }, "strip", z.ZodTypeAny, {
53
55
  uuid: string;
54
56
  type: string;
55
57
  tag: string;
58
+ network: string | null;
59
+ security: string | null;
56
60
  }, {
57
61
  uuid: string;
58
62
  type: string;
59
63
  tag: string;
64
+ network: string | null;
65
+ security: string | null;
60
66
  }>, "many">;
61
67
  }, {
62
68
  subscriptionUrl: z.ZodString;
@@ -98,6 +104,8 @@ export declare namespace GetUserByShortUuidCommand {
98
104
  uuid: string;
99
105
  type: string;
100
106
  tag: string;
107
+ network: string | null;
108
+ security: string | null;
101
109
  }[];
102
110
  subscriptionUrl: string;
103
111
  lastConnectedNode: {
@@ -129,6 +137,8 @@ export declare namespace GetUserByShortUuidCommand {
129
137
  uuid: string;
130
138
  type: string;
131
139
  tag: string;
140
+ network: string | null;
141
+ security: string | null;
132
142
  }[];
133
143
  subscriptionUrl: string;
134
144
  lastConnectedNode: {
@@ -168,6 +178,8 @@ export declare namespace GetUserByShortUuidCommand {
168
178
  uuid: string;
169
179
  type: string;
170
180
  tag: string;
181
+ network: string | null;
182
+ security: string | null;
171
183
  }[];
172
184
  subscriptionUrl: string;
173
185
  lastConnectedNode: {
@@ -201,6 +213,8 @@ export declare namespace GetUserByShortUuidCommand {
201
213
  uuid: string;
202
214
  type: string;
203
215
  tag: string;
216
+ network: string | null;
217
+ security: string | null;
204
218
  }[];
205
219
  subscriptionUrl: string;
206
220
  lastConnectedNode: {
@@ -1 +1 @@
1
- {"version":3,"file":"get-user-by-short-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-short-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,yBAAyB,CAAC;IAChC,MAAM,GAAG,+BAAmC,CAAC;IAC7C,MAAM,OAAO,QAAoB,CAAC;IAElC,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-user-by-short-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-short-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,yBAAyB,CAAC;IAChC,MAAM,GAAG,+BAAmC,CAAC;IAC7C,MAAM,OAAO,QAAoB,CAAC;IAElC,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -49,14 +49,20 @@ export declare namespace GetUserBySubscriptionUuidCommand {
49
49
  uuid: z.ZodString;
50
50
  tag: z.ZodString;
51
51
  type: z.ZodString;
52
+ network: z.ZodNullable<z.ZodString>;
53
+ security: z.ZodNullable<z.ZodString>;
52
54
  }, "strip", z.ZodTypeAny, {
53
55
  uuid: string;
54
56
  type: string;
55
57
  tag: string;
58
+ network: string | null;
59
+ security: string | null;
56
60
  }, {
57
61
  uuid: string;
58
62
  type: string;
59
63
  tag: string;
64
+ network: string | null;
65
+ security: string | null;
60
66
  }>, "many">;
61
67
  }, {
62
68
  subscriptionUrl: z.ZodString;
@@ -98,6 +104,8 @@ export declare namespace GetUserBySubscriptionUuidCommand {
98
104
  uuid: string;
99
105
  type: string;
100
106
  tag: string;
107
+ network: string | null;
108
+ security: string | null;
101
109
  }[];
102
110
  subscriptionUrl: string;
103
111
  lastConnectedNode: {
@@ -129,6 +137,8 @@ export declare namespace GetUserBySubscriptionUuidCommand {
129
137
  uuid: string;
130
138
  type: string;
131
139
  tag: string;
140
+ network: string | null;
141
+ security: string | null;
132
142
  }[];
133
143
  subscriptionUrl: string;
134
144
  lastConnectedNode: {
@@ -168,6 +178,8 @@ export declare namespace GetUserBySubscriptionUuidCommand {
168
178
  uuid: string;
169
179
  type: string;
170
180
  tag: string;
181
+ network: string | null;
182
+ security: string | null;
171
183
  }[];
172
184
  subscriptionUrl: string;
173
185
  lastConnectedNode: {
@@ -201,6 +213,8 @@ export declare namespace GetUserBySubscriptionUuidCommand {
201
213
  uuid: string;
202
214
  type: string;
203
215
  tag: string;
216
+ network: string | null;
217
+ security: string | null;
204
218
  }[];
205
219
  subscriptionUrl: string;
206
220
  lastConnectedNode: {
@@ -1 +1 @@
1
- {"version":3,"file":"get-user-by-subscription-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-subscription-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,gCAAgC,CAAC;IACvC,MAAM,GAAG,sCAA0C,CAAC;IACpD,MAAM,OAAO,QAA2B,CAAC;IAEzC,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-user-by-subscription-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-subscription-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,gCAAgC,CAAC;IACvC,MAAM,GAAG,sCAA0C,CAAC;IACpD,MAAM,OAAO,QAA2B,CAAC;IAEzC,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -49,14 +49,20 @@ export declare namespace GetUserByTelegramIdCommand {
49
49
  uuid: z.ZodString;
50
50
  tag: z.ZodString;
51
51
  type: z.ZodString;
52
+ network: z.ZodNullable<z.ZodString>;
53
+ security: z.ZodNullable<z.ZodString>;
52
54
  }, "strip", z.ZodTypeAny, {
53
55
  uuid: string;
54
56
  type: string;
55
57
  tag: string;
58
+ network: string | null;
59
+ security: string | null;
56
60
  }, {
57
61
  uuid: string;
58
62
  type: string;
59
63
  tag: string;
64
+ network: string | null;
65
+ security: string | null;
60
66
  }>, "many">;
61
67
  }, {
62
68
  subscriptionUrl: z.ZodString;
@@ -98,6 +104,8 @@ export declare namespace GetUserByTelegramIdCommand {
98
104
  uuid: string;
99
105
  type: string;
100
106
  tag: string;
107
+ network: string | null;
108
+ security: string | null;
101
109
  }[];
102
110
  subscriptionUrl: string;
103
111
  lastConnectedNode: {
@@ -129,6 +137,8 @@ export declare namespace GetUserByTelegramIdCommand {
129
137
  uuid: string;
130
138
  type: string;
131
139
  tag: string;
140
+ network: string | null;
141
+ security: string | null;
132
142
  }[];
133
143
  subscriptionUrl: string;
134
144
  lastConnectedNode: {
@@ -168,6 +178,8 @@ export declare namespace GetUserByTelegramIdCommand {
168
178
  uuid: string;
169
179
  type: string;
170
180
  tag: string;
181
+ network: string | null;
182
+ security: string | null;
171
183
  }[];
172
184
  subscriptionUrl: string;
173
185
  lastConnectedNode: {
@@ -201,6 +213,8 @@ export declare namespace GetUserByTelegramIdCommand {
201
213
  uuid: string;
202
214
  type: string;
203
215
  tag: string;
216
+ network: string | null;
217
+ security: string | null;
204
218
  }[];
205
219
  subscriptionUrl: string;
206
220
  lastConnectedNode: {
@@ -1 +1 @@
1
- {"version":3,"file":"get-user-by-telegram-id.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-telegram-id.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,gCAAoC,CAAC;IAC9C,MAAM,OAAO,QAAqB,CAAC;IAEnC,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAOzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-user-by-telegram-id.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-telegram-id.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,gCAAoC,CAAC;IAC9C,MAAM,OAAO,QAAqB,CAAC;IAEnC,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAOzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -49,14 +49,20 @@ export declare namespace GetUserByUsernameCommand {
49
49
  uuid: z.ZodString;
50
50
  tag: z.ZodString;
51
51
  type: z.ZodString;
52
+ network: z.ZodNullable<z.ZodString>;
53
+ security: z.ZodNullable<z.ZodString>;
52
54
  }, "strip", z.ZodTypeAny, {
53
55
  uuid: string;
54
56
  type: string;
55
57
  tag: string;
58
+ network: string | null;
59
+ security: string | null;
56
60
  }, {
57
61
  uuid: string;
58
62
  type: string;
59
63
  tag: string;
64
+ network: string | null;
65
+ security: string | null;
60
66
  }>, "many">;
61
67
  }, {
62
68
  subscriptionUrl: z.ZodString;
@@ -98,6 +104,8 @@ export declare namespace GetUserByUsernameCommand {
98
104
  uuid: string;
99
105
  type: string;
100
106
  tag: string;
107
+ network: string | null;
108
+ security: string | null;
101
109
  }[];
102
110
  subscriptionUrl: string;
103
111
  lastConnectedNode: {
@@ -129,6 +137,8 @@ export declare namespace GetUserByUsernameCommand {
129
137
  uuid: string;
130
138
  type: string;
131
139
  tag: string;
140
+ network: string | null;
141
+ security: string | null;
132
142
  }[];
133
143
  subscriptionUrl: string;
134
144
  lastConnectedNode: {
@@ -168,6 +178,8 @@ export declare namespace GetUserByUsernameCommand {
168
178
  uuid: string;
169
179
  type: string;
170
180
  tag: string;
181
+ network: string | null;
182
+ security: string | null;
171
183
  }[];
172
184
  subscriptionUrl: string;
173
185
  lastConnectedNode: {
@@ -201,6 +213,8 @@ export declare namespace GetUserByUsernameCommand {
201
213
  uuid: string;
202
214
  type: string;
203
215
  tag: string;
216
+ network: string | null;
217
+ security: string | null;
204
218
  }[];
205
219
  subscriptionUrl: string;
206
220
  lastConnectedNode: {
@@ -1 +1 @@
1
- {"version":3,"file":"get-user-by-username.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-username.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,wBAAwB,CAAC;IAC/B,MAAM,GAAG,8BAAiC,CAAC;IAC3C,MAAM,OAAO,QAAmB,CAAC;IAEjC,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-user-by-username.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-username.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,wBAAwB,CAAC;IAC/B,MAAM,GAAG,8BAAiC,CAAC;IAC3C,MAAM,OAAO,QAAmB,CAAC;IAEjC,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -49,14 +49,20 @@ export declare namespace GetUserByUuidCommand {
49
49
  uuid: z.ZodString;
50
50
  tag: z.ZodString;
51
51
  type: z.ZodString;
52
+ network: z.ZodNullable<z.ZodString>;
53
+ security: z.ZodNullable<z.ZodString>;
52
54
  }, "strip", z.ZodTypeAny, {
53
55
  uuid: string;
54
56
  type: string;
55
57
  tag: string;
58
+ network: string | null;
59
+ security: string | null;
56
60
  }, {
57
61
  uuid: string;
58
62
  type: string;
59
63
  tag: string;
64
+ network: string | null;
65
+ security: string | null;
60
66
  }>, "many">;
61
67
  }, {
62
68
  subscriptionUrl: z.ZodString;
@@ -98,6 +104,8 @@ export declare namespace GetUserByUuidCommand {
98
104
  uuid: string;
99
105
  type: string;
100
106
  tag: string;
107
+ network: string | null;
108
+ security: string | null;
101
109
  }[];
102
110
  subscriptionUrl: string;
103
111
  lastConnectedNode: {
@@ -129,6 +137,8 @@ export declare namespace GetUserByUuidCommand {
129
137
  uuid: string;
130
138
  type: string;
131
139
  tag: string;
140
+ network: string | null;
141
+ security: string | null;
132
142
  }[];
133
143
  subscriptionUrl: string;
134
144
  lastConnectedNode: {
@@ -168,6 +178,8 @@ export declare namespace GetUserByUuidCommand {
168
178
  uuid: string;
169
179
  type: string;
170
180
  tag: string;
181
+ network: string | null;
182
+ security: string | null;
171
183
  }[];
172
184
  subscriptionUrl: string;
173
185
  lastConnectedNode: {
@@ -201,6 +213,8 @@ export declare namespace GetUserByUuidCommand {
201
213
  uuid: string;
202
214
  type: string;
203
215
  tag: string;
216
+ network: string | null;
217
+ security: string | null;
204
218
  }[];
205
219
  subscriptionUrl: string;
206
220
  lastConnectedNode: {
@@ -1 +1 @@
1
- {"version":3,"file":"get-user-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,oBAAoB,CAAC;IAC3B,MAAM,GAAG,0BAA6B,CAAC;IACvC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-user-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,oBAAoB,CAAC;IAC3B,MAAM,GAAG,0BAA6B,CAAC;IACvC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -49,14 +49,20 @@ export declare namespace ResetUserTrafficCommand {
49
49
  uuid: z.ZodString;
50
50
  tag: z.ZodString;
51
51
  type: z.ZodString;
52
+ network: z.ZodNullable<z.ZodString>;
53
+ security: z.ZodNullable<z.ZodString>;
52
54
  }, "strip", z.ZodTypeAny, {
53
55
  uuid: string;
54
56
  type: string;
55
57
  tag: string;
58
+ network: string | null;
59
+ security: string | null;
56
60
  }, {
57
61
  uuid: string;
58
62
  type: string;
59
63
  tag: string;
64
+ network: string | null;
65
+ security: string | null;
60
66
  }>, "many">;
61
67
  }, {
62
68
  subscriptionUrl: z.ZodString;
@@ -98,6 +104,8 @@ export declare namespace ResetUserTrafficCommand {
98
104
  uuid: string;
99
105
  type: string;
100
106
  tag: string;
107
+ network: string | null;
108
+ security: string | null;
101
109
  }[];
102
110
  subscriptionUrl: string;
103
111
  lastConnectedNode: {
@@ -129,6 +137,8 @@ export declare namespace ResetUserTrafficCommand {
129
137
  uuid: string;
130
138
  type: string;
131
139
  tag: string;
140
+ network: string | null;
141
+ security: string | null;
132
142
  }[];
133
143
  subscriptionUrl: string;
134
144
  lastConnectedNode: {
@@ -168,6 +178,8 @@ export declare namespace ResetUserTrafficCommand {
168
178
  uuid: string;
169
179
  type: string;
170
180
  tag: string;
181
+ network: string | null;
182
+ security: string | null;
171
183
  }[];
172
184
  subscriptionUrl: string;
173
185
  lastConnectedNode: {
@@ -201,6 +213,8 @@ export declare namespace ResetUserTrafficCommand {
201
213
  uuid: string;
202
214
  type: string;
203
215
  tag: string;
216
+ network: string | null;
217
+ security: string | null;
204
218
  }[];
205
219
  subscriptionUrl: string;
206
220
  lastConnectedNode: {
@@ -1 +1 @@
1
- {"version":3,"file":"reset-user-traffic.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/reset-user-traffic.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,uBAAuB,CAAC;IAC9B,MAAM,GAAG,0BAAoC,CAAC;IAC9C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"reset-user-traffic.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/reset-user-traffic.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,uBAAuB,CAAC;IAC9B,MAAM,GAAG,0BAAoC,CAAC;IAC9C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -49,14 +49,20 @@ export declare namespace RevokeUserSubscriptionCommand {
49
49
  uuid: z.ZodString;
50
50
  tag: z.ZodString;
51
51
  type: z.ZodString;
52
+ network: z.ZodNullable<z.ZodString>;
53
+ security: z.ZodNullable<z.ZodString>;
52
54
  }, "strip", z.ZodTypeAny, {
53
55
  uuid: string;
54
56
  type: string;
55
57
  tag: string;
58
+ network: string | null;
59
+ security: string | null;
56
60
  }, {
57
61
  uuid: string;
58
62
  type: string;
59
63
  tag: string;
64
+ network: string | null;
65
+ security: string | null;
60
66
  }>, "many">;
61
67
  }, {
62
68
  subscriptionUrl: z.ZodString;
@@ -98,6 +104,8 @@ export declare namespace RevokeUserSubscriptionCommand {
98
104
  uuid: string;
99
105
  type: string;
100
106
  tag: string;
107
+ network: string | null;
108
+ security: string | null;
101
109
  }[];
102
110
  subscriptionUrl: string;
103
111
  lastConnectedNode: {
@@ -129,6 +137,8 @@ export declare namespace RevokeUserSubscriptionCommand {
129
137
  uuid: string;
130
138
  type: string;
131
139
  tag: string;
140
+ network: string | null;
141
+ security: string | null;
132
142
  }[];
133
143
  subscriptionUrl: string;
134
144
  lastConnectedNode: {
@@ -168,6 +178,8 @@ export declare namespace RevokeUserSubscriptionCommand {
168
178
  uuid: string;
169
179
  type: string;
170
180
  tag: string;
181
+ network: string | null;
182
+ security: string | null;
171
183
  }[];
172
184
  subscriptionUrl: string;
173
185
  lastConnectedNode: {
@@ -201,6 +213,8 @@ export declare namespace RevokeUserSubscriptionCommand {
201
213
  uuid: string;
202
214
  type: string;
203
215
  tag: string;
216
+ network: string | null;
217
+ security: string | null;
204
218
  }[];
205
219
  subscriptionUrl: string;
206
220
  lastConnectedNode: {
@@ -1 +1 @@
1
- {"version":3,"file":"revoke-user-subscription.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/revoke-user-subscription.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,0BAAqC,CAAC;IAC/C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"revoke-user-subscription.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/revoke-user-subscription.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,0BAAqC,CAAC;IAC/C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -40,14 +40,20 @@ export declare namespace UpdateUserCommand {
40
40
  uuid: z.ZodString;
41
41
  tag: z.ZodString;
42
42
  type: z.ZodString;
43
+ network: z.ZodNullable<z.ZodString>;
44
+ security: z.ZodNullable<z.ZodString>;
43
45
  }, "strip", z.ZodTypeAny, {
44
46
  uuid: string;
45
47
  type: string;
46
48
  tag: string;
49
+ network: string | null;
50
+ security: string | null;
47
51
  }, {
48
52
  uuid: string;
49
53
  type: string;
50
54
  tag: string;
55
+ network: string | null;
56
+ security: string | null;
51
57
  }>, "many">;
52
58
  }, "uuid">, {
53
59
  status: z.ZodOptional<z.ZodDefault<z.ZodNativeEnum<{
@@ -129,14 +135,20 @@ export declare namespace UpdateUserCommand {
129
135
  uuid: z.ZodString;
130
136
  tag: z.ZodString;
131
137
  type: z.ZodString;
138
+ network: z.ZodNullable<z.ZodString>;
139
+ security: z.ZodNullable<z.ZodString>;
132
140
  }, "strip", z.ZodTypeAny, {
133
141
  uuid: string;
134
142
  type: string;
135
143
  tag: string;
144
+ network: string | null;
145
+ security: string | null;
136
146
  }, {
137
147
  uuid: string;
138
148
  type: string;
139
149
  tag: string;
150
+ network: string | null;
151
+ security: string | null;
140
152
  }>, "many">;
141
153
  }, {
142
154
  subscriptionUrl: z.ZodString;
@@ -178,6 +190,8 @@ export declare namespace UpdateUserCommand {
178
190
  uuid: string;
179
191
  type: string;
180
192
  tag: string;
193
+ network: string | null;
194
+ security: string | null;
181
195
  }[];
182
196
  subscriptionUrl: string;
183
197
  lastConnectedNode: {
@@ -209,6 +223,8 @@ export declare namespace UpdateUserCommand {
209
223
  uuid: string;
210
224
  type: string;
211
225
  tag: string;
226
+ network: string | null;
227
+ security: string | null;
212
228
  }[];
213
229
  subscriptionUrl: string;
214
230
  lastConnectedNode: {
@@ -248,6 +264,8 @@ export declare namespace UpdateUserCommand {
248
264
  uuid: string;
249
265
  type: string;
250
266
  tag: string;
267
+ network: string | null;
268
+ security: string | null;
251
269
  }[];
252
270
  subscriptionUrl: string;
253
271
  lastConnectedNode: {
@@ -281,6 +299,8 @@ export declare namespace UpdateUserCommand {
281
299
  uuid: string;
282
300
  type: string;
283
301
  tag: string;
302
+ network: string | null;
303
+ security: string | null;
284
304
  }[];
285
305
  subscriptionUrl: string;
286
306
  lastConnectedNode: {
@@ -1 +1 @@
1
- {"version":3,"file":"update-user.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/update-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,qBAAwB,CAAC;IAClC,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA2CxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"update-user.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/update-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,qBAAwB,CAAC;IAClC,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA2CxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}