@remnawave/backend-contract 2.3.17 → 2.3.18
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/build/backend/commands/external-squads/actions/reorder.command.d.ts +72 -48
- package/build/backend/commands/external-squads/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/external-squads/create-external-squad.command.d.ts +43 -29
- package/build/backend/commands/external-squads/create-external-squad.command.d.ts.map +1 -1
- package/build/backend/commands/external-squads/get-external-squad-by-uuid.command.d.ts +43 -29
- package/build/backend/commands/external-squads/get-external-squad-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/external-squads/get-external-squads.command.d.ts +57 -39
- package/build/backend/commands/external-squads/get-external-squads.command.d.ts.map +1 -1
- package/build/backend/commands/external-squads/update-external-squad.command.d.ts +72 -48
- package/build/backend/commands/external-squads/update-external-squad.command.d.ts.map +1 -1
- package/build/backend/commands/external-squads/update-external-squad.command.js +1 -1
- package/build/backend/commands/subscription-settings/get-subscription-settings.command.d.ts +47 -15
- package/build/backend/commands/subscription-settings/get-subscription-settings.command.d.ts.map +1 -1
- package/build/backend/commands/subscription-settings/update-subscription-settings.command.d.ts +81 -25
- package/build/backend/commands/subscription-settings/update-subscription-settings.command.d.ts.map +1 -1
- package/build/backend/commands/subscription-settings/update-subscription-settings.command.js +2 -4
- package/build/backend/models/external-squad.schema.d.ts +29 -19
- package/build/backend/models/external-squad.schema.d.ts.map +1 -1
- package/build/backend/models/external-squad.schema.js +3 -3
- package/build/backend/models/external-squads/index.d.ts +0 -1
- package/build/backend/models/external-squads/index.d.ts.map +1 -1
- package/build/backend/models/external-squads/index.js +0 -1
- package/build/backend/models/subscription-settings/custom-remarks.schema.d.ts +22 -0
- package/build/backend/models/subscription-settings/custom-remarks.schema.d.ts.map +1 -0
- package/build/backend/models/subscription-settings/custom-remarks.schema.js +14 -0
- package/build/backend/models/subscription-settings/index.d.ts +1 -0
- package/build/backend/models/subscription-settings/index.d.ts.map +1 -1
- package/build/backend/models/subscription-settings/index.js +1 -0
- package/build/backend/models/subscription-settings.schema.d.ts +33 -9
- package/build/backend/models/subscription-settings.schema.d.ts.map +1 -1
- package/build/backend/models/subscription-settings.schema.js +2 -3
- package/build/frontend/commands/external-squads/update-external-squad.command.js +1 -1
- package/build/frontend/commands/subscription-settings/update-subscription-settings.command.js +2 -4
- package/build/frontend/models/external-squad.schema.js +3 -3
- package/build/frontend/models/external-squads/index.js +0 -1
- package/build/frontend/models/subscription-settings/custom-remarks.schema.js +14 -0
- package/build/frontend/models/subscription-settings/index.js +1 -0
- package/build/frontend/models/subscription-settings.schema.js +2 -3
- package/package.json +1 -1
- package/build/backend/models/external-squads/external-squad-custom-remarks.schema.d.ts +0 -16
- package/build/backend/models/external-squads/external-squad-custom-remarks.schema.d.ts.map +0 -1
- package/build/backend/models/external-squads/external-squad-custom-remarks.schema.js +0 -12
- package/build/frontend/models/external-squads/external-squad-custom-remarks.schema.js +0 -12
|
@@ -91,17 +91,23 @@ export declare namespace ReorderExternalSquadCommand {
|
|
|
91
91
|
maxDevicesAnnounce: string | null;
|
|
92
92
|
}>>;
|
|
93
93
|
customRemarks: z.ZodNullable<z.ZodObject<{
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
94
|
+
expiredUsers: z.ZodArray<z.ZodString, "many">;
|
|
95
|
+
limitedUsers: z.ZodArray<z.ZodString, "many">;
|
|
96
|
+
disabledUsers: z.ZodArray<z.ZodString, "many">;
|
|
97
|
+
emptyHosts: z.ZodArray<z.ZodString, "many">;
|
|
98
|
+
emptyInternalSquads: z.ZodArray<z.ZodString, "many">;
|
|
97
99
|
}, "strip", z.ZodTypeAny, {
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
100
|
+
expiredUsers: string[];
|
|
101
|
+
limitedUsers: string[];
|
|
102
|
+
disabledUsers: string[];
|
|
103
|
+
emptyHosts: string[];
|
|
104
|
+
emptyInternalSquads: string[];
|
|
101
105
|
}, {
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
106
|
+
expiredUsers: string[];
|
|
107
|
+
limitedUsers: string[];
|
|
108
|
+
disabledUsers: string[];
|
|
109
|
+
emptyHosts: string[];
|
|
110
|
+
emptyInternalSquads: string[];
|
|
105
111
|
}>>;
|
|
106
112
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
107
113
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
@@ -214,17 +220,23 @@ export declare namespace ReorderExternalSquadCommand {
|
|
|
214
220
|
maxDevicesAnnounce: string | null;
|
|
215
221
|
}>>;
|
|
216
222
|
customRemarks: z.ZodNullable<z.ZodObject<{
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
223
|
+
expiredUsers: z.ZodArray<z.ZodString, "many">;
|
|
224
|
+
limitedUsers: z.ZodArray<z.ZodString, "many">;
|
|
225
|
+
disabledUsers: z.ZodArray<z.ZodString, "many">;
|
|
226
|
+
emptyHosts: z.ZodArray<z.ZodString, "many">;
|
|
227
|
+
emptyInternalSquads: z.ZodArray<z.ZodString, "many">;
|
|
220
228
|
}, "strip", z.ZodTypeAny, {
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
229
|
+
expiredUsers: string[];
|
|
230
|
+
limitedUsers: string[];
|
|
231
|
+
disabledUsers: string[];
|
|
232
|
+
emptyHosts: string[];
|
|
233
|
+
emptyInternalSquads: string[];
|
|
224
234
|
}, {
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
235
|
+
expiredUsers: string[];
|
|
236
|
+
limitedUsers: string[];
|
|
237
|
+
disabledUsers: string[];
|
|
238
|
+
emptyHosts: string[];
|
|
239
|
+
emptyInternalSquads: string[];
|
|
228
240
|
}>>;
|
|
229
241
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
230
242
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
@@ -234,6 +246,13 @@ export declare namespace ReorderExternalSquadCommand {
|
|
|
234
246
|
updatedAt: Date;
|
|
235
247
|
name: string;
|
|
236
248
|
viewPosition: number;
|
|
249
|
+
customRemarks: {
|
|
250
|
+
expiredUsers: string[];
|
|
251
|
+
limitedUsers: string[];
|
|
252
|
+
disabledUsers: string[];
|
|
253
|
+
emptyHosts: string[];
|
|
254
|
+
emptyInternalSquads: string[];
|
|
255
|
+
} | null;
|
|
237
256
|
hwidSettings: {
|
|
238
257
|
enabled: boolean;
|
|
239
258
|
fallbackDeviceLimit: number;
|
|
@@ -263,17 +282,19 @@ export declare namespace ReorderExternalSquadCommand {
|
|
|
263
282
|
vlessRouteId?: number | null | undefined;
|
|
264
283
|
} | null;
|
|
265
284
|
responseHeaders: Record<string, string> | null;
|
|
266
|
-
customRemarks: {
|
|
267
|
-
expiredUsersRemarks: string[];
|
|
268
|
-
limitedUsersRemarks: string[];
|
|
269
|
-
disabledUsersRemarks: string[];
|
|
270
|
-
} | null;
|
|
271
285
|
}, {
|
|
272
286
|
uuid: string;
|
|
273
287
|
createdAt: string;
|
|
274
288
|
updatedAt: string;
|
|
275
289
|
name: string;
|
|
276
290
|
viewPosition: number;
|
|
291
|
+
customRemarks: {
|
|
292
|
+
expiredUsers: string[];
|
|
293
|
+
limitedUsers: string[];
|
|
294
|
+
disabledUsers: string[];
|
|
295
|
+
emptyHosts: string[];
|
|
296
|
+
emptyInternalSquads: string[];
|
|
297
|
+
} | null;
|
|
277
298
|
hwidSettings: {
|
|
278
299
|
enabled: boolean;
|
|
279
300
|
fallbackDeviceLimit: number;
|
|
@@ -303,11 +324,6 @@ export declare namespace ReorderExternalSquadCommand {
|
|
|
303
324
|
vlessRouteId?: number | null | undefined;
|
|
304
325
|
} | null;
|
|
305
326
|
responseHeaders: Record<string, string> | null;
|
|
306
|
-
customRemarks: {
|
|
307
|
-
expiredUsersRemarks: string[];
|
|
308
|
-
limitedUsersRemarks: string[];
|
|
309
|
-
disabledUsersRemarks: string[];
|
|
310
|
-
} | null;
|
|
311
327
|
}>, "many">;
|
|
312
328
|
}, "strip", z.ZodTypeAny, {
|
|
313
329
|
total: number;
|
|
@@ -317,6 +333,13 @@ export declare namespace ReorderExternalSquadCommand {
|
|
|
317
333
|
updatedAt: Date;
|
|
318
334
|
name: string;
|
|
319
335
|
viewPosition: number;
|
|
336
|
+
customRemarks: {
|
|
337
|
+
expiredUsers: string[];
|
|
338
|
+
limitedUsers: string[];
|
|
339
|
+
disabledUsers: string[];
|
|
340
|
+
emptyHosts: string[];
|
|
341
|
+
emptyInternalSquads: string[];
|
|
342
|
+
} | null;
|
|
320
343
|
hwidSettings: {
|
|
321
344
|
enabled: boolean;
|
|
322
345
|
fallbackDeviceLimit: number;
|
|
@@ -346,11 +369,6 @@ export declare namespace ReorderExternalSquadCommand {
|
|
|
346
369
|
vlessRouteId?: number | null | undefined;
|
|
347
370
|
} | null;
|
|
348
371
|
responseHeaders: Record<string, string> | null;
|
|
349
|
-
customRemarks: {
|
|
350
|
-
expiredUsersRemarks: string[];
|
|
351
|
-
limitedUsersRemarks: string[];
|
|
352
|
-
disabledUsersRemarks: string[];
|
|
353
|
-
} | null;
|
|
354
372
|
}[];
|
|
355
373
|
}, {
|
|
356
374
|
total: number;
|
|
@@ -360,6 +378,13 @@ export declare namespace ReorderExternalSquadCommand {
|
|
|
360
378
|
updatedAt: string;
|
|
361
379
|
name: string;
|
|
362
380
|
viewPosition: number;
|
|
381
|
+
customRemarks: {
|
|
382
|
+
expiredUsers: string[];
|
|
383
|
+
limitedUsers: string[];
|
|
384
|
+
disabledUsers: string[];
|
|
385
|
+
emptyHosts: string[];
|
|
386
|
+
emptyInternalSquads: string[];
|
|
387
|
+
} | null;
|
|
363
388
|
hwidSettings: {
|
|
364
389
|
enabled: boolean;
|
|
365
390
|
fallbackDeviceLimit: number;
|
|
@@ -389,11 +414,6 @@ export declare namespace ReorderExternalSquadCommand {
|
|
|
389
414
|
vlessRouteId?: number | null | undefined;
|
|
390
415
|
} | null;
|
|
391
416
|
responseHeaders: Record<string, string> | null;
|
|
392
|
-
customRemarks: {
|
|
393
|
-
expiredUsersRemarks: string[];
|
|
394
|
-
limitedUsersRemarks: string[];
|
|
395
|
-
disabledUsersRemarks: string[];
|
|
396
|
-
} | null;
|
|
397
417
|
}[];
|
|
398
418
|
}>;
|
|
399
419
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -405,6 +425,13 @@ export declare namespace ReorderExternalSquadCommand {
|
|
|
405
425
|
updatedAt: Date;
|
|
406
426
|
name: string;
|
|
407
427
|
viewPosition: number;
|
|
428
|
+
customRemarks: {
|
|
429
|
+
expiredUsers: string[];
|
|
430
|
+
limitedUsers: string[];
|
|
431
|
+
disabledUsers: string[];
|
|
432
|
+
emptyHosts: string[];
|
|
433
|
+
emptyInternalSquads: string[];
|
|
434
|
+
} | null;
|
|
408
435
|
hwidSettings: {
|
|
409
436
|
enabled: boolean;
|
|
410
437
|
fallbackDeviceLimit: number;
|
|
@@ -434,11 +461,6 @@ export declare namespace ReorderExternalSquadCommand {
|
|
|
434
461
|
vlessRouteId?: number | null | undefined;
|
|
435
462
|
} | null;
|
|
436
463
|
responseHeaders: Record<string, string> | null;
|
|
437
|
-
customRemarks: {
|
|
438
|
-
expiredUsersRemarks: string[];
|
|
439
|
-
limitedUsersRemarks: string[];
|
|
440
|
-
disabledUsersRemarks: string[];
|
|
441
|
-
} | null;
|
|
442
464
|
}[];
|
|
443
465
|
};
|
|
444
466
|
}, {
|
|
@@ -450,6 +472,13 @@ export declare namespace ReorderExternalSquadCommand {
|
|
|
450
472
|
updatedAt: string;
|
|
451
473
|
name: string;
|
|
452
474
|
viewPosition: number;
|
|
475
|
+
customRemarks: {
|
|
476
|
+
expiredUsers: string[];
|
|
477
|
+
limitedUsers: string[];
|
|
478
|
+
disabledUsers: string[];
|
|
479
|
+
emptyHosts: string[];
|
|
480
|
+
emptyInternalSquads: string[];
|
|
481
|
+
} | null;
|
|
453
482
|
hwidSettings: {
|
|
454
483
|
enabled: boolean;
|
|
455
484
|
fallbackDeviceLimit: number;
|
|
@@ -479,11 +508,6 @@ export declare namespace ReorderExternalSquadCommand {
|
|
|
479
508
|
vlessRouteId?: number | null | undefined;
|
|
480
509
|
} | null;
|
|
481
510
|
responseHeaders: Record<string, string> | null;
|
|
482
|
-
customRemarks: {
|
|
483
|
-
expiredUsersRemarks: string[];
|
|
484
|
-
limitedUsersRemarks: string[];
|
|
485
|
-
disabledUsersRemarks: string[];
|
|
486
|
-
} | null;
|
|
487
511
|
}[];
|
|
488
512
|
};
|
|
489
513
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reorder.command.d.ts","sourceRoot":"","sources":["../../../../../commands/external-squads/actions/reorder.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,2BAA2B,CAAC;IAClC,MAAM,GAAG,wCAA2C,CAAC;IACrD,MAAM,OAAO,wCAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"reorder.command.d.ts","sourceRoot":"","sources":["../../../../../commands/external-squads/actions/reorder.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,2BAA2B,CAAC;IAClC,MAAM,GAAG,wCAA2C,CAAC;IACrD,MAAM,OAAO,wCAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAOxB,CAAC;IACH,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"}
|
|
@@ -99,17 +99,23 @@ export declare namespace CreateExternalSquadCommand {
|
|
|
99
99
|
maxDevicesAnnounce: string | null;
|
|
100
100
|
}>>;
|
|
101
101
|
customRemarks: z.ZodNullable<z.ZodObject<{
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
102
|
+
expiredUsers: z.ZodArray<z.ZodString, "many">;
|
|
103
|
+
limitedUsers: z.ZodArray<z.ZodString, "many">;
|
|
104
|
+
disabledUsers: z.ZodArray<z.ZodString, "many">;
|
|
105
|
+
emptyHosts: z.ZodArray<z.ZodString, "many">;
|
|
106
|
+
emptyInternalSquads: z.ZodArray<z.ZodString, "many">;
|
|
105
107
|
}, "strip", z.ZodTypeAny, {
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
108
|
+
expiredUsers: string[];
|
|
109
|
+
limitedUsers: string[];
|
|
110
|
+
disabledUsers: string[];
|
|
111
|
+
emptyHosts: string[];
|
|
112
|
+
emptyInternalSquads: string[];
|
|
109
113
|
}, {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
114
|
+
expiredUsers: string[];
|
|
115
|
+
limitedUsers: string[];
|
|
116
|
+
disabledUsers: string[];
|
|
117
|
+
emptyHosts: string[];
|
|
118
|
+
emptyInternalSquads: string[];
|
|
113
119
|
}>>;
|
|
114
120
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
115
121
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
@@ -119,6 +125,13 @@ export declare namespace CreateExternalSquadCommand {
|
|
|
119
125
|
updatedAt: Date;
|
|
120
126
|
name: string;
|
|
121
127
|
viewPosition: number;
|
|
128
|
+
customRemarks: {
|
|
129
|
+
expiredUsers: string[];
|
|
130
|
+
limitedUsers: string[];
|
|
131
|
+
disabledUsers: string[];
|
|
132
|
+
emptyHosts: string[];
|
|
133
|
+
emptyInternalSquads: string[];
|
|
134
|
+
} | null;
|
|
122
135
|
hwidSettings: {
|
|
123
136
|
enabled: boolean;
|
|
124
137
|
fallbackDeviceLimit: number;
|
|
@@ -148,17 +161,19 @@ export declare namespace CreateExternalSquadCommand {
|
|
|
148
161
|
vlessRouteId?: number | null | undefined;
|
|
149
162
|
} | null;
|
|
150
163
|
responseHeaders: Record<string, string> | null;
|
|
151
|
-
customRemarks: {
|
|
152
|
-
expiredUsersRemarks: string[];
|
|
153
|
-
limitedUsersRemarks: string[];
|
|
154
|
-
disabledUsersRemarks: string[];
|
|
155
|
-
} | null;
|
|
156
164
|
}, {
|
|
157
165
|
uuid: string;
|
|
158
166
|
createdAt: string;
|
|
159
167
|
updatedAt: string;
|
|
160
168
|
name: string;
|
|
161
169
|
viewPosition: number;
|
|
170
|
+
customRemarks: {
|
|
171
|
+
expiredUsers: string[];
|
|
172
|
+
limitedUsers: string[];
|
|
173
|
+
disabledUsers: string[];
|
|
174
|
+
emptyHosts: string[];
|
|
175
|
+
emptyInternalSquads: string[];
|
|
176
|
+
} | null;
|
|
162
177
|
hwidSettings: {
|
|
163
178
|
enabled: boolean;
|
|
164
179
|
fallbackDeviceLimit: number;
|
|
@@ -188,11 +203,6 @@ export declare namespace CreateExternalSquadCommand {
|
|
|
188
203
|
vlessRouteId?: number | null | undefined;
|
|
189
204
|
} | null;
|
|
190
205
|
responseHeaders: Record<string, string> | null;
|
|
191
|
-
customRemarks: {
|
|
192
|
-
expiredUsersRemarks: string[];
|
|
193
|
-
limitedUsersRemarks: string[];
|
|
194
|
-
disabledUsersRemarks: string[];
|
|
195
|
-
} | null;
|
|
196
206
|
}>;
|
|
197
207
|
}, "strip", z.ZodTypeAny, {
|
|
198
208
|
response: {
|
|
@@ -201,6 +211,13 @@ export declare namespace CreateExternalSquadCommand {
|
|
|
201
211
|
updatedAt: Date;
|
|
202
212
|
name: string;
|
|
203
213
|
viewPosition: number;
|
|
214
|
+
customRemarks: {
|
|
215
|
+
expiredUsers: string[];
|
|
216
|
+
limitedUsers: string[];
|
|
217
|
+
disabledUsers: string[];
|
|
218
|
+
emptyHosts: string[];
|
|
219
|
+
emptyInternalSquads: string[];
|
|
220
|
+
} | null;
|
|
204
221
|
hwidSettings: {
|
|
205
222
|
enabled: boolean;
|
|
206
223
|
fallbackDeviceLimit: number;
|
|
@@ -230,11 +247,6 @@ export declare namespace CreateExternalSquadCommand {
|
|
|
230
247
|
vlessRouteId?: number | null | undefined;
|
|
231
248
|
} | null;
|
|
232
249
|
responseHeaders: Record<string, string> | null;
|
|
233
|
-
customRemarks: {
|
|
234
|
-
expiredUsersRemarks: string[];
|
|
235
|
-
limitedUsersRemarks: string[];
|
|
236
|
-
disabledUsersRemarks: string[];
|
|
237
|
-
} | null;
|
|
238
250
|
};
|
|
239
251
|
}, {
|
|
240
252
|
response: {
|
|
@@ -243,6 +255,13 @@ export declare namespace CreateExternalSquadCommand {
|
|
|
243
255
|
updatedAt: string;
|
|
244
256
|
name: string;
|
|
245
257
|
viewPosition: number;
|
|
258
|
+
customRemarks: {
|
|
259
|
+
expiredUsers: string[];
|
|
260
|
+
limitedUsers: string[];
|
|
261
|
+
disabledUsers: string[];
|
|
262
|
+
emptyHosts: string[];
|
|
263
|
+
emptyInternalSquads: string[];
|
|
264
|
+
} | null;
|
|
246
265
|
hwidSettings: {
|
|
247
266
|
enabled: boolean;
|
|
248
267
|
fallbackDeviceLimit: number;
|
|
@@ -272,11 +291,6 @@ export declare namespace CreateExternalSquadCommand {
|
|
|
272
291
|
vlessRouteId?: number | null | undefined;
|
|
273
292
|
} | null;
|
|
274
293
|
responseHeaders: Record<string, string> | null;
|
|
275
|
-
customRemarks: {
|
|
276
|
-
expiredUsersRemarks: string[];
|
|
277
|
-
limitedUsersRemarks: string[];
|
|
278
|
-
disabledUsersRemarks: string[];
|
|
279
|
-
} | null;
|
|
280
294
|
};
|
|
281
295
|
}>;
|
|
282
296
|
type Response = z.infer<typeof ResponseSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-external-squad.command.d.ts","sourceRoot":"","sources":["../../../../commands/external-squads/create-external-squad.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,yBAAkC,CAAC;IAC5C,MAAM,OAAO,yBAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MASxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"create-external-squad.command.d.ts","sourceRoot":"","sources":["../../../../commands/external-squads/create-external-squad.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,yBAAkC,CAAC;IAC5C,MAAM,OAAO,yBAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MASxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -99,17 +99,23 @@ export declare namespace GetExternalSquadByUuidCommand {
|
|
|
99
99
|
maxDevicesAnnounce: string | null;
|
|
100
100
|
}>>;
|
|
101
101
|
customRemarks: z.ZodNullable<z.ZodObject<{
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
102
|
+
expiredUsers: z.ZodArray<z.ZodString, "many">;
|
|
103
|
+
limitedUsers: z.ZodArray<z.ZodString, "many">;
|
|
104
|
+
disabledUsers: z.ZodArray<z.ZodString, "many">;
|
|
105
|
+
emptyHosts: z.ZodArray<z.ZodString, "many">;
|
|
106
|
+
emptyInternalSquads: z.ZodArray<z.ZodString, "many">;
|
|
105
107
|
}, "strip", z.ZodTypeAny, {
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
108
|
+
expiredUsers: string[];
|
|
109
|
+
limitedUsers: string[];
|
|
110
|
+
disabledUsers: string[];
|
|
111
|
+
emptyHosts: string[];
|
|
112
|
+
emptyInternalSquads: string[];
|
|
109
113
|
}, {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
114
|
+
expiredUsers: string[];
|
|
115
|
+
limitedUsers: string[];
|
|
116
|
+
disabledUsers: string[];
|
|
117
|
+
emptyHosts: string[];
|
|
118
|
+
emptyInternalSquads: string[];
|
|
113
119
|
}>>;
|
|
114
120
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
115
121
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
@@ -119,6 +125,13 @@ export declare namespace GetExternalSquadByUuidCommand {
|
|
|
119
125
|
updatedAt: Date;
|
|
120
126
|
name: string;
|
|
121
127
|
viewPosition: number;
|
|
128
|
+
customRemarks: {
|
|
129
|
+
expiredUsers: string[];
|
|
130
|
+
limitedUsers: string[];
|
|
131
|
+
disabledUsers: string[];
|
|
132
|
+
emptyHosts: string[];
|
|
133
|
+
emptyInternalSquads: string[];
|
|
134
|
+
} | null;
|
|
122
135
|
hwidSettings: {
|
|
123
136
|
enabled: boolean;
|
|
124
137
|
fallbackDeviceLimit: number;
|
|
@@ -148,17 +161,19 @@ export declare namespace GetExternalSquadByUuidCommand {
|
|
|
148
161
|
vlessRouteId?: number | null | undefined;
|
|
149
162
|
} | null;
|
|
150
163
|
responseHeaders: Record<string, string> | null;
|
|
151
|
-
customRemarks: {
|
|
152
|
-
expiredUsersRemarks: string[];
|
|
153
|
-
limitedUsersRemarks: string[];
|
|
154
|
-
disabledUsersRemarks: string[];
|
|
155
|
-
} | null;
|
|
156
164
|
}, {
|
|
157
165
|
uuid: string;
|
|
158
166
|
createdAt: string;
|
|
159
167
|
updatedAt: string;
|
|
160
168
|
name: string;
|
|
161
169
|
viewPosition: number;
|
|
170
|
+
customRemarks: {
|
|
171
|
+
expiredUsers: string[];
|
|
172
|
+
limitedUsers: string[];
|
|
173
|
+
disabledUsers: string[];
|
|
174
|
+
emptyHosts: string[];
|
|
175
|
+
emptyInternalSquads: string[];
|
|
176
|
+
} | null;
|
|
162
177
|
hwidSettings: {
|
|
163
178
|
enabled: boolean;
|
|
164
179
|
fallbackDeviceLimit: number;
|
|
@@ -188,11 +203,6 @@ export declare namespace GetExternalSquadByUuidCommand {
|
|
|
188
203
|
vlessRouteId?: number | null | undefined;
|
|
189
204
|
} | null;
|
|
190
205
|
responseHeaders: Record<string, string> | null;
|
|
191
|
-
customRemarks: {
|
|
192
|
-
expiredUsersRemarks: string[];
|
|
193
|
-
limitedUsersRemarks: string[];
|
|
194
|
-
disabledUsersRemarks: string[];
|
|
195
|
-
} | null;
|
|
196
206
|
}>;
|
|
197
207
|
}, "strip", z.ZodTypeAny, {
|
|
198
208
|
response: {
|
|
@@ -201,6 +211,13 @@ export declare namespace GetExternalSquadByUuidCommand {
|
|
|
201
211
|
updatedAt: Date;
|
|
202
212
|
name: string;
|
|
203
213
|
viewPosition: number;
|
|
214
|
+
customRemarks: {
|
|
215
|
+
expiredUsers: string[];
|
|
216
|
+
limitedUsers: string[];
|
|
217
|
+
disabledUsers: string[];
|
|
218
|
+
emptyHosts: string[];
|
|
219
|
+
emptyInternalSquads: string[];
|
|
220
|
+
} | null;
|
|
204
221
|
hwidSettings: {
|
|
205
222
|
enabled: boolean;
|
|
206
223
|
fallbackDeviceLimit: number;
|
|
@@ -230,11 +247,6 @@ export declare namespace GetExternalSquadByUuidCommand {
|
|
|
230
247
|
vlessRouteId?: number | null | undefined;
|
|
231
248
|
} | null;
|
|
232
249
|
responseHeaders: Record<string, string> | null;
|
|
233
|
-
customRemarks: {
|
|
234
|
-
expiredUsersRemarks: string[];
|
|
235
|
-
limitedUsersRemarks: string[];
|
|
236
|
-
disabledUsersRemarks: string[];
|
|
237
|
-
} | null;
|
|
238
250
|
};
|
|
239
251
|
}, {
|
|
240
252
|
response: {
|
|
@@ -243,6 +255,13 @@ export declare namespace GetExternalSquadByUuidCommand {
|
|
|
243
255
|
updatedAt: string;
|
|
244
256
|
name: string;
|
|
245
257
|
viewPosition: number;
|
|
258
|
+
customRemarks: {
|
|
259
|
+
expiredUsers: string[];
|
|
260
|
+
limitedUsers: string[];
|
|
261
|
+
disabledUsers: string[];
|
|
262
|
+
emptyHosts: string[];
|
|
263
|
+
emptyInternalSquads: string[];
|
|
264
|
+
} | null;
|
|
246
265
|
hwidSettings: {
|
|
247
266
|
enabled: boolean;
|
|
248
267
|
fallbackDeviceLimit: number;
|
|
@@ -272,11 +291,6 @@ export declare namespace GetExternalSquadByUuidCommand {
|
|
|
272
291
|
vlessRouteId?: number | null | undefined;
|
|
273
292
|
} | null;
|
|
274
293
|
responseHeaders: Record<string, string> | null;
|
|
275
|
-
customRemarks: {
|
|
276
|
-
expiredUsersRemarks: string[];
|
|
277
|
-
limitedUsersRemarks: string[];
|
|
278
|
-
disabledUsersRemarks: string[];
|
|
279
|
-
} | null;
|
|
280
294
|
};
|
|
281
295
|
}>;
|
|
282
296
|
type Response = z.infer<typeof ResponseSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-external-squad-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/external-squads/get-external-squad-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,0BAAuC,CAAC;IACjD,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"get-external-squad-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/external-squads/get-external-squad-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,0BAAuC,CAAC;IACjD,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|