@remnawave/backend-contract 2.8.17 → 2.8.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.
Files changed (23) hide show
  1. package/build/backend/commands/subscription-settings/get-subscription-settings.command.d.ts +61 -0
  2. package/build/backend/commands/subscription-settings/get-subscription-settings.command.d.ts.map +1 -1
  3. package/build/backend/commands/subscription-settings/update-subscription-settings.command.d.ts +112 -0
  4. package/build/backend/commands/subscription-settings/update-subscription-settings.command.d.ts.map +1 -1
  5. package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts +12 -12
  6. package/build/backend/commands/system/testers/test-srr-matcher.command.d.ts +102 -0
  7. package/build/backend/commands/system/testers/test-srr-matcher.command.d.ts.map +1 -1
  8. package/build/backend/models/resolved-proxy-config.schema.d.ts +22 -22
  9. package/build/backend/models/response-rules/index.d.ts +1 -0
  10. package/build/backend/models/response-rules/index.d.ts.map +1 -1
  11. package/build/backend/models/response-rules/index.js +1 -0
  12. package/build/backend/models/response-rules/response-rule-modifications.schema.d.ts +31 -0
  13. package/build/backend/models/response-rules/response-rule-modifications.schema.d.ts.map +1 -1
  14. package/build/backend/models/response-rules/response-rule-modifications.schema.js +14 -1
  15. package/build/backend/models/response-rules/response-rule.schema.d.ts +62 -0
  16. package/build/backend/models/response-rules/response-rule.schema.d.ts.map +1 -1
  17. package/build/backend/models/response-rules/response-rules-config.schema.d.ts +41 -0
  18. package/build/backend/models/response-rules/response-rules-config.schema.d.ts.map +1 -1
  19. package/build/backend/models/subscription-settings.schema.d.ts +51 -0
  20. package/build/backend/models/subscription-settings.schema.d.ts.map +1 -1
  21. package/build/frontend/models/response-rules/index.js +1 -0
  22. package/build/frontend/models/response-rules/response-rule-modifications.schema.js +14 -1
  23. package/package.json +1 -1
@@ -113,6 +113,17 @@ export declare namespace GetSubscriptionSettingsCommand {
113
113
  ignoreHostXrayJsonTemplate: z.ZodOptional<z.ZodBoolean>;
114
114
  ignoreServeJsonAtBaseSubscription: z.ZodOptional<z.ZodBoolean>;
115
115
  additionalExtendedClientsRegex: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
116
+ disableHwidCheck: z.ZodOptional<z.ZodBoolean>;
117
+ encryption: z.ZodOptional<z.ZodObject<{
118
+ method: z.ZodEnum<["age1", "age1pq1"]>;
119
+ key: z.ZodString;
120
+ }, "strip", z.ZodTypeAny, {
121
+ method: "age1" | "age1pq1";
122
+ key: string;
123
+ }, {
124
+ method: "age1" | "age1pq1";
125
+ key: string;
126
+ }>>;
116
127
  }, "strip", z.ZodTypeAny, {
117
128
  headers?: {
118
129
  value: string;
@@ -123,6 +134,11 @@ export declare namespace GetSubscriptionSettingsCommand {
123
134
  ignoreHostXrayJsonTemplate?: boolean | undefined;
124
135
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
125
136
  additionalExtendedClientsRegex?: string[] | undefined;
137
+ disableHwidCheck?: boolean | undefined;
138
+ encryption?: {
139
+ method: "age1" | "age1pq1";
140
+ key: string;
141
+ } | undefined;
126
142
  }, {
127
143
  headers?: {
128
144
  value: string;
@@ -133,6 +149,11 @@ export declare namespace GetSubscriptionSettingsCommand {
133
149
  ignoreHostXrayJsonTemplate?: boolean | undefined;
134
150
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
135
151
  additionalExtendedClientsRegex?: string[] | undefined;
152
+ disableHwidCheck?: boolean | undefined;
153
+ encryption?: {
154
+ method: "age1" | "age1pq1";
155
+ key: string;
156
+ } | undefined;
136
157
  }>>;
137
158
  }, "strip", z.ZodTypeAny, {
138
159
  enabled: boolean;
@@ -156,6 +177,11 @@ export declare namespace GetSubscriptionSettingsCommand {
156
177
  ignoreHostXrayJsonTemplate?: boolean | undefined;
157
178
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
158
179
  additionalExtendedClientsRegex?: string[] | undefined;
180
+ disableHwidCheck?: boolean | undefined;
181
+ encryption?: {
182
+ method: "age1" | "age1pq1";
183
+ key: string;
184
+ } | undefined;
159
185
  } | undefined;
160
186
  }, {
161
187
  enabled: boolean;
@@ -179,6 +205,11 @@ export declare namespace GetSubscriptionSettingsCommand {
179
205
  ignoreHostXrayJsonTemplate?: boolean | undefined;
180
206
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
181
207
  additionalExtendedClientsRegex?: string[] | undefined;
208
+ disableHwidCheck?: boolean | undefined;
209
+ encryption?: {
210
+ method: "age1" | "age1pq1";
211
+ key: string;
212
+ } | undefined;
182
213
  } | undefined;
183
214
  }>, "many">;
184
215
  }, "strip", z.ZodTypeAny, {
@@ -205,6 +236,11 @@ export declare namespace GetSubscriptionSettingsCommand {
205
236
  ignoreHostXrayJsonTemplate?: boolean | undefined;
206
237
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
207
238
  additionalExtendedClientsRegex?: string[] | undefined;
239
+ disableHwidCheck?: boolean | undefined;
240
+ encryption?: {
241
+ method: "age1" | "age1pq1";
242
+ key: string;
243
+ } | undefined;
208
244
  } | undefined;
209
245
  }[];
210
246
  settings?: {
@@ -234,6 +270,11 @@ export declare namespace GetSubscriptionSettingsCommand {
234
270
  ignoreHostXrayJsonTemplate?: boolean | undefined;
235
271
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
236
272
  additionalExtendedClientsRegex?: string[] | undefined;
273
+ disableHwidCheck?: boolean | undefined;
274
+ encryption?: {
275
+ method: "age1" | "age1pq1";
276
+ key: string;
277
+ } | undefined;
237
278
  } | undefined;
238
279
  }[];
239
280
  settings?: {
@@ -301,6 +342,11 @@ export declare namespace GetSubscriptionSettingsCommand {
301
342
  ignoreHostXrayJsonTemplate?: boolean | undefined;
302
343
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
303
344
  additionalExtendedClientsRegex?: string[] | undefined;
345
+ disableHwidCheck?: boolean | undefined;
346
+ encryption?: {
347
+ method: "age1" | "age1pq1";
348
+ key: string;
349
+ } | undefined;
304
350
  } | undefined;
305
351
  }[];
306
352
  settings?: {
@@ -358,6 +404,11 @@ export declare namespace GetSubscriptionSettingsCommand {
358
404
  ignoreHostXrayJsonTemplate?: boolean | undefined;
359
405
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
360
406
  additionalExtendedClientsRegex?: string[] | undefined;
407
+ disableHwidCheck?: boolean | undefined;
408
+ encryption?: {
409
+ method: "age1" | "age1pq1";
410
+ key: string;
411
+ } | undefined;
361
412
  } | undefined;
362
413
  }[];
363
414
  settings?: {
@@ -417,6 +468,11 @@ export declare namespace GetSubscriptionSettingsCommand {
417
468
  ignoreHostXrayJsonTemplate?: boolean | undefined;
418
469
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
419
470
  additionalExtendedClientsRegex?: string[] | undefined;
471
+ disableHwidCheck?: boolean | undefined;
472
+ encryption?: {
473
+ method: "age1" | "age1pq1";
474
+ key: string;
475
+ } | undefined;
420
476
  } | undefined;
421
477
  }[];
422
478
  settings?: {
@@ -476,6 +532,11 @@ export declare namespace GetSubscriptionSettingsCommand {
476
532
  ignoreHostXrayJsonTemplate?: boolean | undefined;
477
533
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
478
534
  additionalExtendedClientsRegex?: string[] | undefined;
535
+ disableHwidCheck?: boolean | undefined;
536
+ encryption?: {
537
+ method: "age1" | "age1pq1";
538
+ key: string;
539
+ } | undefined;
479
540
  } | undefined;
480
541
  }[];
481
542
  settings?: {
@@ -1 +1 @@
1
- {"version":3,"file":"get-subscription-settings.command.d.ts","sourceRoot":"","sources":["../../../../commands/subscription-settings/get-subscription-settings.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,8BAA8B,CAAC;IACrC,MAAM,GAAG,+BAAqC,CAAC;IAC/C,MAAM,OAAO,+BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-subscription-settings.command.d.ts","sourceRoot":"","sources":["../../../../commands/subscription-settings/get-subscription-settings.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,8BAA8B,CAAC;IACrC,MAAM,GAAG,+BAAqC,CAAC;IAC/C,MAAM,OAAO,+BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -112,6 +112,17 @@ export declare namespace UpdateSubscriptionSettingsCommand {
112
112
  ignoreHostXrayJsonTemplate: z.ZodOptional<z.ZodBoolean>;
113
113
  ignoreServeJsonAtBaseSubscription: z.ZodOptional<z.ZodBoolean>;
114
114
  additionalExtendedClientsRegex: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
115
+ disableHwidCheck: z.ZodOptional<z.ZodBoolean>;
116
+ encryption: z.ZodOptional<z.ZodObject<{
117
+ method: z.ZodEnum<["age1", "age1pq1"]>;
118
+ key: z.ZodString;
119
+ }, "strip", z.ZodTypeAny, {
120
+ method: "age1" | "age1pq1";
121
+ key: string;
122
+ }, {
123
+ method: "age1" | "age1pq1";
124
+ key: string;
125
+ }>>;
115
126
  }, "strip", z.ZodTypeAny, {
116
127
  headers?: {
117
128
  value: string;
@@ -122,6 +133,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
122
133
  ignoreHostXrayJsonTemplate?: boolean | undefined;
123
134
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
124
135
  additionalExtendedClientsRegex?: string[] | undefined;
136
+ disableHwidCheck?: boolean | undefined;
137
+ encryption?: {
138
+ method: "age1" | "age1pq1";
139
+ key: string;
140
+ } | undefined;
125
141
  }, {
126
142
  headers?: {
127
143
  value: string;
@@ -132,6 +148,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
132
148
  ignoreHostXrayJsonTemplate?: boolean | undefined;
133
149
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
134
150
  additionalExtendedClientsRegex?: string[] | undefined;
151
+ disableHwidCheck?: boolean | undefined;
152
+ encryption?: {
153
+ method: "age1" | "age1pq1";
154
+ key: string;
155
+ } | undefined;
135
156
  }>>;
136
157
  }, "strip", z.ZodTypeAny, {
137
158
  enabled: boolean;
@@ -155,6 +176,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
155
176
  ignoreHostXrayJsonTemplate?: boolean | undefined;
156
177
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
157
178
  additionalExtendedClientsRegex?: string[] | undefined;
179
+ disableHwidCheck?: boolean | undefined;
180
+ encryption?: {
181
+ method: "age1" | "age1pq1";
182
+ key: string;
183
+ } | undefined;
158
184
  } | undefined;
159
185
  }, {
160
186
  enabled: boolean;
@@ -178,6 +204,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
178
204
  ignoreHostXrayJsonTemplate?: boolean | undefined;
179
205
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
180
206
  additionalExtendedClientsRegex?: string[] | undefined;
207
+ disableHwidCheck?: boolean | undefined;
208
+ encryption?: {
209
+ method: "age1" | "age1pq1";
210
+ key: string;
211
+ } | undefined;
181
212
  } | undefined;
182
213
  }>, "many">;
183
214
  }, "strip", z.ZodTypeAny, {
@@ -204,6 +235,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
204
235
  ignoreHostXrayJsonTemplate?: boolean | undefined;
205
236
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
206
237
  additionalExtendedClientsRegex?: string[] | undefined;
238
+ disableHwidCheck?: boolean | undefined;
239
+ encryption?: {
240
+ method: "age1" | "age1pq1";
241
+ key: string;
242
+ } | undefined;
207
243
  } | undefined;
208
244
  }[];
209
245
  settings?: {
@@ -233,6 +269,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
233
269
  ignoreHostXrayJsonTemplate?: boolean | undefined;
234
270
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
235
271
  additionalExtendedClientsRegex?: string[] | undefined;
272
+ disableHwidCheck?: boolean | undefined;
273
+ encryption?: {
274
+ method: "age1" | "age1pq1";
275
+ key: string;
276
+ } | undefined;
236
277
  } | undefined;
237
278
  }[];
238
279
  settings?: {
@@ -296,6 +337,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
296
337
  ignoreHostXrayJsonTemplate?: boolean | undefined;
297
338
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
298
339
  additionalExtendedClientsRegex?: string[] | undefined;
340
+ disableHwidCheck?: boolean | undefined;
341
+ encryption?: {
342
+ method: "age1" | "age1pq1";
343
+ key: string;
344
+ } | undefined;
299
345
  } | undefined;
300
346
  }[];
301
347
  settings?: {
@@ -351,6 +397,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
351
397
  ignoreHostXrayJsonTemplate?: boolean | undefined;
352
398
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
353
399
  additionalExtendedClientsRegex?: string[] | undefined;
400
+ disableHwidCheck?: boolean | undefined;
401
+ encryption?: {
402
+ method: "age1" | "age1pq1";
403
+ key: string;
404
+ } | undefined;
354
405
  } | undefined;
355
406
  }[];
356
407
  settings?: {
@@ -474,6 +525,17 @@ export declare namespace UpdateSubscriptionSettingsCommand {
474
525
  ignoreHostXrayJsonTemplate: z.ZodOptional<z.ZodBoolean>;
475
526
  ignoreServeJsonAtBaseSubscription: z.ZodOptional<z.ZodBoolean>;
476
527
  additionalExtendedClientsRegex: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
528
+ disableHwidCheck: z.ZodOptional<z.ZodBoolean>;
529
+ encryption: z.ZodOptional<z.ZodObject<{
530
+ method: z.ZodEnum<["age1", "age1pq1"]>;
531
+ key: z.ZodString;
532
+ }, "strip", z.ZodTypeAny, {
533
+ method: "age1" | "age1pq1";
534
+ key: string;
535
+ }, {
536
+ method: "age1" | "age1pq1";
537
+ key: string;
538
+ }>>;
477
539
  }, "strip", z.ZodTypeAny, {
478
540
  headers?: {
479
541
  value: string;
@@ -484,6 +546,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
484
546
  ignoreHostXrayJsonTemplate?: boolean | undefined;
485
547
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
486
548
  additionalExtendedClientsRegex?: string[] | undefined;
549
+ disableHwidCheck?: boolean | undefined;
550
+ encryption?: {
551
+ method: "age1" | "age1pq1";
552
+ key: string;
553
+ } | undefined;
487
554
  }, {
488
555
  headers?: {
489
556
  value: string;
@@ -494,6 +561,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
494
561
  ignoreHostXrayJsonTemplate?: boolean | undefined;
495
562
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
496
563
  additionalExtendedClientsRegex?: string[] | undefined;
564
+ disableHwidCheck?: boolean | undefined;
565
+ encryption?: {
566
+ method: "age1" | "age1pq1";
567
+ key: string;
568
+ } | undefined;
497
569
  }>>;
498
570
  }, "strip", z.ZodTypeAny, {
499
571
  enabled: boolean;
@@ -517,6 +589,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
517
589
  ignoreHostXrayJsonTemplate?: boolean | undefined;
518
590
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
519
591
  additionalExtendedClientsRegex?: string[] | undefined;
592
+ disableHwidCheck?: boolean | undefined;
593
+ encryption?: {
594
+ method: "age1" | "age1pq1";
595
+ key: string;
596
+ } | undefined;
520
597
  } | undefined;
521
598
  }, {
522
599
  enabled: boolean;
@@ -540,6 +617,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
540
617
  ignoreHostXrayJsonTemplate?: boolean | undefined;
541
618
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
542
619
  additionalExtendedClientsRegex?: string[] | undefined;
620
+ disableHwidCheck?: boolean | undefined;
621
+ encryption?: {
622
+ method: "age1" | "age1pq1";
623
+ key: string;
624
+ } | undefined;
543
625
  } | undefined;
544
626
  }>, "many">;
545
627
  }, "strip", z.ZodTypeAny, {
@@ -566,6 +648,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
566
648
  ignoreHostXrayJsonTemplate?: boolean | undefined;
567
649
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
568
650
  additionalExtendedClientsRegex?: string[] | undefined;
651
+ disableHwidCheck?: boolean | undefined;
652
+ encryption?: {
653
+ method: "age1" | "age1pq1";
654
+ key: string;
655
+ } | undefined;
569
656
  } | undefined;
570
657
  }[];
571
658
  settings?: {
@@ -595,6 +682,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
595
682
  ignoreHostXrayJsonTemplate?: boolean | undefined;
596
683
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
597
684
  additionalExtendedClientsRegex?: string[] | undefined;
685
+ disableHwidCheck?: boolean | undefined;
686
+ encryption?: {
687
+ method: "age1" | "age1pq1";
688
+ key: string;
689
+ } | undefined;
598
690
  } | undefined;
599
691
  }[];
600
692
  settings?: {
@@ -662,6 +754,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
662
754
  ignoreHostXrayJsonTemplate?: boolean | undefined;
663
755
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
664
756
  additionalExtendedClientsRegex?: string[] | undefined;
757
+ disableHwidCheck?: boolean | undefined;
758
+ encryption?: {
759
+ method: "age1" | "age1pq1";
760
+ key: string;
761
+ } | undefined;
665
762
  } | undefined;
666
763
  }[];
667
764
  settings?: {
@@ -719,6 +816,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
719
816
  ignoreHostXrayJsonTemplate?: boolean | undefined;
720
817
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
721
818
  additionalExtendedClientsRegex?: string[] | undefined;
819
+ disableHwidCheck?: boolean | undefined;
820
+ encryption?: {
821
+ method: "age1" | "age1pq1";
822
+ key: string;
823
+ } | undefined;
722
824
  } | undefined;
723
825
  }[];
724
826
  settings?: {
@@ -778,6 +880,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
778
880
  ignoreHostXrayJsonTemplate?: boolean | undefined;
779
881
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
780
882
  additionalExtendedClientsRegex?: string[] | undefined;
883
+ disableHwidCheck?: boolean | undefined;
884
+ encryption?: {
885
+ method: "age1" | "age1pq1";
886
+ key: string;
887
+ } | undefined;
781
888
  } | undefined;
782
889
  }[];
783
890
  settings?: {
@@ -837,6 +944,11 @@ export declare namespace UpdateSubscriptionSettingsCommand {
837
944
  ignoreHostXrayJsonTemplate?: boolean | undefined;
838
945
  ignoreServeJsonAtBaseSubscription?: boolean | undefined;
839
946
  additionalExtendedClientsRegex?: string[] | undefined;
947
+ disableHwidCheck?: boolean | undefined;
948
+ encryption?: {
949
+ method: "age1" | "age1pq1";
950
+ key: string;
951
+ } | undefined;
840
952
  } | undefined;
841
953
  }[];
842
954
  settings?: {
@@ -1 +1 @@
1
- {"version":3,"file":"update-subscription-settings.command.d.ts","sourceRoot":"","sources":["../../../../commands/subscription-settings/update-subscription-settings.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAWxB,yBAAiB,iCAAiC,CAAC;IACxC,MAAM,GAAG,+BAAwC,CAAC;IAClD,MAAM,OAAO,+BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAoCxB,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"}
1
+ {"version":3,"file":"update-subscription-settings.command.d.ts","sourceRoot":"","sources":["../../../../commands/subscription-settings/update-subscription-settings.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAWxB,yBAAiB,iCAAiC,CAAC;IACxC,MAAM,GAAG,+BAAwC,CAAC;IAClD,MAAM,OAAO,+BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAoCxB,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"}
@@ -239,14 +239,14 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
239
239
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
240
240
  }, "strip", z.ZodTypeAny, {
241
241
  path?: string[] | undefined;
242
+ method?: string | undefined;
242
243
  headers?: Record<string, unknown> | undefined;
243
244
  version?: string | undefined;
244
- method?: string | undefined;
245
245
  }, {
246
246
  path?: string[] | undefined;
247
+ method?: string | undefined;
247
248
  headers?: Record<string, unknown> | undefined;
248
249
  version?: string | undefined;
249
- method?: string | undefined;
250
250
  }>>;
251
251
  response: z.ZodOptional<z.ZodObject<{
252
252
  version: z.ZodOptional<z.ZodString>;
@@ -274,9 +274,9 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
274
274
  } | undefined;
275
275
  request?: {
276
276
  path?: string[] | undefined;
277
+ method?: string | undefined;
277
278
  headers?: Record<string, unknown> | undefined;
278
279
  version?: string | undefined;
279
- method?: string | undefined;
280
280
  } | undefined;
281
281
  }, {
282
282
  type: "http";
@@ -288,9 +288,9 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
288
288
  } | undefined;
289
289
  request?: {
290
290
  path?: string[] | undefined;
291
+ method?: string | undefined;
291
292
  headers?: Record<string, unknown> | undefined;
292
293
  version?: string | undefined;
293
- method?: string | undefined;
294
294
  } | undefined;
295
295
  }>]>>;
296
296
  }, "strip", z.ZodTypeAny, {
@@ -306,9 +306,9 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
306
306
  } | undefined;
307
307
  request?: {
308
308
  path?: string[] | undefined;
309
+ method?: string | undefined;
309
310
  headers?: Record<string, unknown> | undefined;
310
311
  version?: string | undefined;
311
- method?: string | undefined;
312
312
  } | undefined;
313
313
  } | null;
314
314
  }, {
@@ -324,9 +324,9 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
324
324
  } | undefined;
325
325
  request?: {
326
326
  path?: string[] | undefined;
327
+ method?: string | undefined;
327
328
  headers?: Record<string, unknown> | undefined;
328
329
  version?: string | undefined;
329
- method?: string | undefined;
330
330
  } | undefined;
331
331
  } | null;
332
332
  }>, z.ZodObject<{
@@ -585,9 +585,9 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
585
585
  } | undefined;
586
586
  request?: {
587
587
  path?: string[] | undefined;
588
+ method?: string | undefined;
588
589
  headers?: Record<string, unknown> | undefined;
589
590
  version?: string | undefined;
590
- method?: string | undefined;
591
591
  } | undefined;
592
592
  } | null;
593
593
  } | {
@@ -693,9 +693,9 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
693
693
  } | undefined;
694
694
  request?: {
695
695
  path?: string[] | undefined;
696
+ method?: string | undefined;
696
697
  headers?: Record<string, unknown> | undefined;
697
698
  version?: string | undefined;
698
- method?: string | undefined;
699
699
  } | undefined;
700
700
  } | null;
701
701
  } | {
@@ -847,9 +847,9 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
847
847
  } | undefined;
848
848
  request?: {
849
849
  path?: string[] | undefined;
850
+ method?: string | undefined;
850
851
  headers?: Record<string, unknown> | undefined;
851
852
  version?: string | undefined;
852
- method?: string | undefined;
853
853
  } | undefined;
854
854
  } | null;
855
855
  } | {
@@ -1001,9 +1001,9 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
1001
1001
  } | undefined;
1002
1002
  request?: {
1003
1003
  path?: string[] | undefined;
1004
+ method?: string | undefined;
1004
1005
  headers?: Record<string, unknown> | undefined;
1005
1006
  version?: string | undefined;
1006
- method?: string | undefined;
1007
1007
  } | undefined;
1008
1008
  } | null;
1009
1009
  } | {
@@ -1157,9 +1157,9 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
1157
1157
  } | undefined;
1158
1158
  request?: {
1159
1159
  path?: string[] | undefined;
1160
+ method?: string | undefined;
1160
1161
  headers?: Record<string, unknown> | undefined;
1161
1162
  version?: string | undefined;
1162
- method?: string | undefined;
1163
1163
  } | undefined;
1164
1164
  } | null;
1165
1165
  } | {
@@ -1313,9 +1313,9 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
1313
1313
  } | undefined;
1314
1314
  request?: {
1315
1315
  path?: string[] | undefined;
1316
+ method?: string | undefined;
1316
1317
  headers?: Record<string, unknown> | undefined;
1317
1318
  version?: string | undefined;
1318
- method?: string | undefined;
1319
1319
  } | undefined;
1320
1320
  } | null;
1321
1321
  } | {