@remnawave/backend-contract 2.3.51 → 2.3.52

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-page-configs/actions/reorder.command.d.ts +2012 -8
  2. package/build/backend/commands/subscription-page-configs/actions/reorder.command.d.ts.map +1 -1
  3. package/build/backend/commands/subscription-page-configs/create-subpage-config.command.d.ts +1082 -5
  4. package/build/backend/commands/subscription-page-configs/create-subpage-config.command.d.ts.map +1 -1
  5. package/build/backend/commands/subscription-page-configs/get-subpage-config.command.d.ts +1083 -5
  6. package/build/backend/commands/subscription-page-configs/get-subpage-config.command.d.ts.map +1 -1
  7. package/build/backend/commands/subscription-page-configs/get-subpage-config.command.js +4 -2
  8. package/build/backend/commands/subscription-page-configs/get-subpage-configs.command.d.ts +1234 -7
  9. package/build/backend/commands/subscription-page-configs/get-subpage-configs.command.d.ts.map +1 -1
  10. package/build/backend/commands/subscription-page-configs/update-subpage-config.command.d.ts +2013 -8
  11. package/build/backend/commands/subscription-page-configs/update-subpage-config.command.d.ts.map +1 -1
  12. package/build/backend/commands/subscription-page-configs/update-subpage-config.command.js +5 -3
  13. package/build/backend/constants/errors/errors.d.ts +5 -0
  14. package/build/backend/constants/errors/errors.d.ts.map +1 -1
  15. package/build/backend/constants/errors/errors.js +5 -0
  16. package/build/backend/models/subscripion-page-config.schema.d.ts +930 -3
  17. package/build/backend/models/subscripion-page-config.schema.d.ts.map +1 -1
  18. package/build/backend/models/subscripion-page-config.schema.js +2 -1
  19. package/build/frontend/commands/subscription-page-configs/get-subpage-config.command.js +4 -2
  20. package/build/frontend/commands/subscription-page-configs/update-subpage-config.command.js +5 -3
  21. package/build/frontend/constants/errors/errors.js +5 -0
  22. package/build/frontend/models/subscripion-page-config.schema.js +2 -1
  23. package/package.json +1 -1
@@ -8,7 +8,784 @@ export declare namespace ReorderSubscriptionPageConfigsCommand {
8
8
  uuid: z.ZodString;
9
9
  viewPosition: z.ZodNumber;
10
10
  name: z.ZodString;
11
- encodedConfig: z.ZodNullable<z.ZodString>;
11
+ config: z.ZodNullable<z.ZodEffects<z.ZodObject<{
12
+ version: z.ZodNativeEnum<{
13
+ readonly 1: "1";
14
+ }>;
15
+ additionalLocales: z.ZodArray<z.ZodEnum<["ru", "zh", "fa", "fr"]>, "many">;
16
+ brandingSettings: z.ZodObject<{
17
+ title: z.ZodString;
18
+ logoUrl: z.ZodString;
19
+ supportUrl: z.ZodString;
20
+ }, "strip", z.ZodTypeAny, {
21
+ title: string;
22
+ logoUrl: string;
23
+ supportUrl: string;
24
+ }, {
25
+ title: string;
26
+ logoUrl: string;
27
+ supportUrl: string;
28
+ }>;
29
+ uiConfig: z.ZodObject<{
30
+ subscriptionInfo: z.ZodObject<{
31
+ block: z.ZodEnum<["collapsed", "expanded"]>;
32
+ }, "strip", z.ZodTypeAny, {
33
+ block: "collapsed" | "expanded";
34
+ }, {
35
+ block: "collapsed" | "expanded";
36
+ }>;
37
+ installationGuides: z.ZodObject<{
38
+ headerText: z.ZodObject<{
39
+ en: z.ZodString;
40
+ ru: z.ZodOptional<z.ZodString>;
41
+ zh: z.ZodOptional<z.ZodString>;
42
+ fa: z.ZodOptional<z.ZodString>;
43
+ fr: z.ZodOptional<z.ZodString>;
44
+ }, "strip", z.ZodTypeAny, {
45
+ en: string;
46
+ ru?: string | undefined;
47
+ zh?: string | undefined;
48
+ fa?: string | undefined;
49
+ fr?: string | undefined;
50
+ }, {
51
+ en: string;
52
+ ru?: string | undefined;
53
+ zh?: string | undefined;
54
+ fa?: string | undefined;
55
+ fr?: string | undefined;
56
+ }>;
57
+ }, "strip", z.ZodTypeAny, {
58
+ headerText: {
59
+ en: string;
60
+ ru?: string | undefined;
61
+ zh?: string | undefined;
62
+ fa?: string | undefined;
63
+ fr?: string | undefined;
64
+ };
65
+ }, {
66
+ headerText: {
67
+ en: string;
68
+ ru?: string | undefined;
69
+ zh?: string | undefined;
70
+ fa?: string | undefined;
71
+ fr?: string | undefined;
72
+ };
73
+ }>;
74
+ connectionKeys: z.ZodObject<{
75
+ headerText: z.ZodObject<{
76
+ en: z.ZodString;
77
+ ru: z.ZodOptional<z.ZodString>;
78
+ zh: z.ZodOptional<z.ZodString>;
79
+ fa: z.ZodOptional<z.ZodString>;
80
+ fr: z.ZodOptional<z.ZodString>;
81
+ }, "strip", z.ZodTypeAny, {
82
+ en: string;
83
+ ru?: string | undefined;
84
+ zh?: string | undefined;
85
+ fa?: string | undefined;
86
+ fr?: string | undefined;
87
+ }, {
88
+ en: string;
89
+ ru?: string | undefined;
90
+ zh?: string | undefined;
91
+ fa?: string | undefined;
92
+ fr?: string | undefined;
93
+ }>;
94
+ }, "strip", z.ZodTypeAny, {
95
+ headerText: {
96
+ en: string;
97
+ ru?: string | undefined;
98
+ zh?: string | undefined;
99
+ fa?: string | undefined;
100
+ fr?: string | undefined;
101
+ };
102
+ }, {
103
+ headerText: {
104
+ en: string;
105
+ ru?: string | undefined;
106
+ zh?: string | undefined;
107
+ fa?: string | undefined;
108
+ fr?: string | undefined;
109
+ };
110
+ }>;
111
+ }, "strip", z.ZodTypeAny, {
112
+ subscriptionInfo: {
113
+ block: "collapsed" | "expanded";
114
+ };
115
+ installationGuides: {
116
+ headerText: {
117
+ en: string;
118
+ ru?: string | undefined;
119
+ zh?: string | undefined;
120
+ fa?: string | undefined;
121
+ fr?: string | undefined;
122
+ };
123
+ };
124
+ connectionKeys: {
125
+ headerText: {
126
+ en: string;
127
+ ru?: string | undefined;
128
+ zh?: string | undefined;
129
+ fa?: string | undefined;
130
+ fr?: string | undefined;
131
+ };
132
+ };
133
+ }, {
134
+ subscriptionInfo: {
135
+ block: "collapsed" | "expanded";
136
+ };
137
+ installationGuides: {
138
+ headerText: {
139
+ en: string;
140
+ ru?: string | undefined;
141
+ zh?: string | undefined;
142
+ fa?: string | undefined;
143
+ fr?: string | undefined;
144
+ };
145
+ };
146
+ connectionKeys: {
147
+ headerText: {
148
+ en: string;
149
+ ru?: string | undefined;
150
+ zh?: string | undefined;
151
+ fa?: string | undefined;
152
+ fr?: string | undefined;
153
+ };
154
+ };
155
+ }>;
156
+ platforms: z.ZodRecord<z.ZodNativeEnum<{
157
+ readonly IOS: "ios";
158
+ readonly ANDROID: "android";
159
+ readonly LINUX: "linux";
160
+ readonly MACOS: "macos";
161
+ readonly WINDOWS: "windows";
162
+ readonly ANDROID_TV: "androidTV";
163
+ readonly APPLE_TV: "appleTV";
164
+ }>, z.ZodObject<{
165
+ displayName: z.ZodObject<{
166
+ en: z.ZodString;
167
+ ru: z.ZodOptional<z.ZodString>;
168
+ zh: z.ZodOptional<z.ZodString>;
169
+ fa: z.ZodOptional<z.ZodString>;
170
+ fr: z.ZodOptional<z.ZodString>;
171
+ }, "strip", z.ZodTypeAny, {
172
+ en: string;
173
+ ru?: string | undefined;
174
+ zh?: string | undefined;
175
+ fa?: string | undefined;
176
+ fr?: string | undefined;
177
+ }, {
178
+ en: string;
179
+ ru?: string | undefined;
180
+ zh?: string | undefined;
181
+ fa?: string | undefined;
182
+ fr?: string | undefined;
183
+ }>;
184
+ svgIcon: z.ZodString;
185
+ apps: z.ZodArray<z.ZodObject<{
186
+ name: z.ZodString;
187
+ featured: z.ZodBoolean;
188
+ blocks: z.ZodArray<z.ZodObject<{
189
+ svgIcon: z.ZodString;
190
+ svgIconColor: z.ZodEffects<z.ZodString, string, string>;
191
+ title: z.ZodObject<{
192
+ en: z.ZodString;
193
+ ru: z.ZodOptional<z.ZodString>;
194
+ zh: z.ZodOptional<z.ZodString>;
195
+ fa: z.ZodOptional<z.ZodString>;
196
+ fr: z.ZodOptional<z.ZodString>;
197
+ }, "strip", z.ZodTypeAny, {
198
+ en: string;
199
+ ru?: string | undefined;
200
+ zh?: string | undefined;
201
+ fa?: string | undefined;
202
+ fr?: string | undefined;
203
+ }, {
204
+ en: string;
205
+ ru?: string | undefined;
206
+ zh?: string | undefined;
207
+ fa?: string | undefined;
208
+ fr?: string | undefined;
209
+ }>;
210
+ description: z.ZodObject<{
211
+ en: z.ZodString;
212
+ ru: z.ZodOptional<z.ZodString>;
213
+ zh: z.ZodOptional<z.ZodString>;
214
+ fa: z.ZodOptional<z.ZodString>;
215
+ fr: z.ZodOptional<z.ZodString>;
216
+ }, "strip", z.ZodTypeAny, {
217
+ en: string;
218
+ ru?: string | undefined;
219
+ zh?: string | undefined;
220
+ fa?: string | undefined;
221
+ fr?: string | undefined;
222
+ }, {
223
+ en: string;
224
+ ru?: string | undefined;
225
+ zh?: string | undefined;
226
+ fa?: string | undefined;
227
+ fr?: string | undefined;
228
+ }>;
229
+ buttons: z.ZodArray<z.ZodObject<{
230
+ link: z.ZodString;
231
+ type: z.ZodEnum<["external", "subscriptionLink"]>;
232
+ text: z.ZodObject<{
233
+ en: z.ZodString;
234
+ ru: z.ZodOptional<z.ZodString>;
235
+ zh: z.ZodOptional<z.ZodString>;
236
+ fa: z.ZodOptional<z.ZodString>;
237
+ fr: z.ZodOptional<z.ZodString>;
238
+ }, "strip", z.ZodTypeAny, {
239
+ en: string;
240
+ ru?: string | undefined;
241
+ zh?: string | undefined;
242
+ fa?: string | undefined;
243
+ fr?: string | undefined;
244
+ }, {
245
+ en: string;
246
+ ru?: string | undefined;
247
+ zh?: string | undefined;
248
+ fa?: string | undefined;
249
+ fr?: string | undefined;
250
+ }>;
251
+ svgIcon: z.ZodString;
252
+ }, "strip", z.ZodTypeAny, {
253
+ type: "external" | "subscriptionLink";
254
+ link: string;
255
+ text: {
256
+ en: string;
257
+ ru?: string | undefined;
258
+ zh?: string | undefined;
259
+ fa?: string | undefined;
260
+ fr?: string | undefined;
261
+ };
262
+ svgIcon: string;
263
+ }, {
264
+ type: "external" | "subscriptionLink";
265
+ link: string;
266
+ text: {
267
+ en: string;
268
+ ru?: string | undefined;
269
+ zh?: string | undefined;
270
+ fa?: string | undefined;
271
+ fr?: string | undefined;
272
+ };
273
+ svgIcon: string;
274
+ }>, "many">;
275
+ }, "strip", z.ZodTypeAny, {
276
+ title: {
277
+ en: string;
278
+ ru?: string | undefined;
279
+ zh?: string | undefined;
280
+ fa?: string | undefined;
281
+ fr?: string | undefined;
282
+ };
283
+ description: {
284
+ en: string;
285
+ ru?: string | undefined;
286
+ zh?: string | undefined;
287
+ fa?: string | undefined;
288
+ fr?: string | undefined;
289
+ };
290
+ svgIcon: string;
291
+ svgIconColor: string;
292
+ buttons: {
293
+ type: "external" | "subscriptionLink";
294
+ link: string;
295
+ text: {
296
+ en: string;
297
+ ru?: string | undefined;
298
+ zh?: string | undefined;
299
+ fa?: string | undefined;
300
+ fr?: string | undefined;
301
+ };
302
+ svgIcon: string;
303
+ }[];
304
+ }, {
305
+ title: {
306
+ en: string;
307
+ ru?: string | undefined;
308
+ zh?: string | undefined;
309
+ fa?: string | undefined;
310
+ fr?: string | undefined;
311
+ };
312
+ description: {
313
+ en: string;
314
+ ru?: string | undefined;
315
+ zh?: string | undefined;
316
+ fa?: string | undefined;
317
+ fr?: string | undefined;
318
+ };
319
+ svgIcon: string;
320
+ svgIconColor: string;
321
+ buttons: {
322
+ type: "external" | "subscriptionLink";
323
+ link: string;
324
+ text: {
325
+ en: string;
326
+ ru?: string | undefined;
327
+ zh?: string | undefined;
328
+ fa?: string | undefined;
329
+ fr?: string | undefined;
330
+ };
331
+ svgIcon: string;
332
+ }[];
333
+ }>, "many">;
334
+ }, "strip", z.ZodTypeAny, {
335
+ name: string;
336
+ featured: boolean;
337
+ blocks: {
338
+ title: {
339
+ en: string;
340
+ ru?: string | undefined;
341
+ zh?: string | undefined;
342
+ fa?: string | undefined;
343
+ fr?: string | undefined;
344
+ };
345
+ description: {
346
+ en: string;
347
+ ru?: string | undefined;
348
+ zh?: string | undefined;
349
+ fa?: string | undefined;
350
+ fr?: string | undefined;
351
+ };
352
+ svgIcon: string;
353
+ svgIconColor: string;
354
+ buttons: {
355
+ type: "external" | "subscriptionLink";
356
+ link: string;
357
+ text: {
358
+ en: string;
359
+ ru?: string | undefined;
360
+ zh?: string | undefined;
361
+ fa?: string | undefined;
362
+ fr?: string | undefined;
363
+ };
364
+ svgIcon: string;
365
+ }[];
366
+ }[];
367
+ }, {
368
+ name: string;
369
+ featured: boolean;
370
+ blocks: {
371
+ title: {
372
+ en: string;
373
+ ru?: string | undefined;
374
+ zh?: string | undefined;
375
+ fa?: string | undefined;
376
+ fr?: string | undefined;
377
+ };
378
+ description: {
379
+ en: string;
380
+ ru?: string | undefined;
381
+ zh?: string | undefined;
382
+ fa?: string | undefined;
383
+ fr?: string | undefined;
384
+ };
385
+ svgIcon: string;
386
+ svgIconColor: string;
387
+ buttons: {
388
+ type: "external" | "subscriptionLink";
389
+ link: string;
390
+ text: {
391
+ en: string;
392
+ ru?: string | undefined;
393
+ zh?: string | undefined;
394
+ fa?: string | undefined;
395
+ fr?: string | undefined;
396
+ };
397
+ svgIcon: string;
398
+ }[];
399
+ }[];
400
+ }>, "many">;
401
+ }, "strip", z.ZodTypeAny, {
402
+ svgIcon: string;
403
+ displayName: {
404
+ en: string;
405
+ ru?: string | undefined;
406
+ zh?: string | undefined;
407
+ fa?: string | undefined;
408
+ fr?: string | undefined;
409
+ };
410
+ apps: {
411
+ name: string;
412
+ featured: boolean;
413
+ blocks: {
414
+ title: {
415
+ en: string;
416
+ ru?: string | undefined;
417
+ zh?: string | undefined;
418
+ fa?: string | undefined;
419
+ fr?: string | undefined;
420
+ };
421
+ description: {
422
+ en: string;
423
+ ru?: string | undefined;
424
+ zh?: string | undefined;
425
+ fa?: string | undefined;
426
+ fr?: string | undefined;
427
+ };
428
+ svgIcon: string;
429
+ svgIconColor: string;
430
+ buttons: {
431
+ type: "external" | "subscriptionLink";
432
+ link: string;
433
+ text: {
434
+ en: string;
435
+ ru?: string | undefined;
436
+ zh?: string | undefined;
437
+ fa?: string | undefined;
438
+ fr?: string | undefined;
439
+ };
440
+ svgIcon: string;
441
+ }[];
442
+ }[];
443
+ }[];
444
+ }, {
445
+ svgIcon: string;
446
+ displayName: {
447
+ en: string;
448
+ ru?: string | undefined;
449
+ zh?: string | undefined;
450
+ fa?: string | undefined;
451
+ fr?: string | undefined;
452
+ };
453
+ apps: {
454
+ name: string;
455
+ featured: boolean;
456
+ blocks: {
457
+ title: {
458
+ en: string;
459
+ ru?: string | undefined;
460
+ zh?: string | undefined;
461
+ fa?: string | undefined;
462
+ fr?: string | undefined;
463
+ };
464
+ description: {
465
+ en: string;
466
+ ru?: string | undefined;
467
+ zh?: string | undefined;
468
+ fa?: string | undefined;
469
+ fr?: string | undefined;
470
+ };
471
+ svgIcon: string;
472
+ svgIconColor: string;
473
+ buttons: {
474
+ type: "external" | "subscriptionLink";
475
+ link: string;
476
+ text: {
477
+ en: string;
478
+ ru?: string | undefined;
479
+ zh?: string | undefined;
480
+ fa?: string | undefined;
481
+ fr?: string | undefined;
482
+ };
483
+ svgIcon: string;
484
+ }[];
485
+ }[];
486
+ }[];
487
+ }>>;
488
+ }, "strip", z.ZodTypeAny, {
489
+ version: "1";
490
+ brandingSettings: {
491
+ title: string;
492
+ logoUrl: string;
493
+ supportUrl: string;
494
+ };
495
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
496
+ uiConfig: {
497
+ subscriptionInfo: {
498
+ block: "collapsed" | "expanded";
499
+ };
500
+ installationGuides: {
501
+ headerText: {
502
+ en: string;
503
+ ru?: string | undefined;
504
+ zh?: string | undefined;
505
+ fa?: string | undefined;
506
+ fr?: string | undefined;
507
+ };
508
+ };
509
+ connectionKeys: {
510
+ headerText: {
511
+ en: string;
512
+ ru?: string | undefined;
513
+ zh?: string | undefined;
514
+ fa?: string | undefined;
515
+ fr?: string | undefined;
516
+ };
517
+ };
518
+ };
519
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
520
+ svgIcon: string;
521
+ displayName: {
522
+ en: string;
523
+ ru?: string | undefined;
524
+ zh?: string | undefined;
525
+ fa?: string | undefined;
526
+ fr?: string | undefined;
527
+ };
528
+ apps: {
529
+ name: string;
530
+ featured: boolean;
531
+ blocks: {
532
+ title: {
533
+ en: string;
534
+ ru?: string | undefined;
535
+ zh?: string | undefined;
536
+ fa?: string | undefined;
537
+ fr?: string | undefined;
538
+ };
539
+ description: {
540
+ en: string;
541
+ ru?: string | undefined;
542
+ zh?: string | undefined;
543
+ fa?: string | undefined;
544
+ fr?: string | undefined;
545
+ };
546
+ svgIcon: string;
547
+ svgIconColor: string;
548
+ buttons: {
549
+ type: "external" | "subscriptionLink";
550
+ link: string;
551
+ text: {
552
+ en: string;
553
+ ru?: string | undefined;
554
+ zh?: string | undefined;
555
+ fa?: string | undefined;
556
+ fr?: string | undefined;
557
+ };
558
+ svgIcon: string;
559
+ }[];
560
+ }[];
561
+ }[];
562
+ }>>;
563
+ }, {
564
+ version: "1";
565
+ brandingSettings: {
566
+ title: string;
567
+ logoUrl: string;
568
+ supportUrl: string;
569
+ };
570
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
571
+ uiConfig: {
572
+ subscriptionInfo: {
573
+ block: "collapsed" | "expanded";
574
+ };
575
+ installationGuides: {
576
+ headerText: {
577
+ en: string;
578
+ ru?: string | undefined;
579
+ zh?: string | undefined;
580
+ fa?: string | undefined;
581
+ fr?: string | undefined;
582
+ };
583
+ };
584
+ connectionKeys: {
585
+ headerText: {
586
+ en: string;
587
+ ru?: string | undefined;
588
+ zh?: string | undefined;
589
+ fa?: string | undefined;
590
+ fr?: string | undefined;
591
+ };
592
+ };
593
+ };
594
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
595
+ svgIcon: string;
596
+ displayName: {
597
+ en: string;
598
+ ru?: string | undefined;
599
+ zh?: string | undefined;
600
+ fa?: string | undefined;
601
+ fr?: string | undefined;
602
+ };
603
+ apps: {
604
+ name: string;
605
+ featured: boolean;
606
+ blocks: {
607
+ title: {
608
+ en: string;
609
+ ru?: string | undefined;
610
+ zh?: string | undefined;
611
+ fa?: string | undefined;
612
+ fr?: string | undefined;
613
+ };
614
+ description: {
615
+ en: string;
616
+ ru?: string | undefined;
617
+ zh?: string | undefined;
618
+ fa?: string | undefined;
619
+ fr?: string | undefined;
620
+ };
621
+ svgIcon: string;
622
+ svgIconColor: string;
623
+ buttons: {
624
+ type: "external" | "subscriptionLink";
625
+ link: string;
626
+ text: {
627
+ en: string;
628
+ ru?: string | undefined;
629
+ zh?: string | undefined;
630
+ fa?: string | undefined;
631
+ fr?: string | undefined;
632
+ };
633
+ svgIcon: string;
634
+ }[];
635
+ }[];
636
+ }[];
637
+ }>>;
638
+ }>, {
639
+ version: "1";
640
+ brandingSettings: {
641
+ title: string;
642
+ logoUrl: string;
643
+ supportUrl: string;
644
+ };
645
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
646
+ uiConfig: {
647
+ subscriptionInfo: {
648
+ block: "collapsed" | "expanded";
649
+ };
650
+ installationGuides: {
651
+ headerText: {
652
+ en: string;
653
+ ru?: string | undefined;
654
+ zh?: string | undefined;
655
+ fa?: string | undefined;
656
+ fr?: string | undefined;
657
+ };
658
+ };
659
+ connectionKeys: {
660
+ headerText: {
661
+ en: string;
662
+ ru?: string | undefined;
663
+ zh?: string | undefined;
664
+ fa?: string | undefined;
665
+ fr?: string | undefined;
666
+ };
667
+ };
668
+ };
669
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
670
+ svgIcon: string;
671
+ displayName: {
672
+ en: string;
673
+ ru?: string | undefined;
674
+ zh?: string | undefined;
675
+ fa?: string | undefined;
676
+ fr?: string | undefined;
677
+ };
678
+ apps: {
679
+ name: string;
680
+ featured: boolean;
681
+ blocks: {
682
+ title: {
683
+ en: string;
684
+ ru?: string | undefined;
685
+ zh?: string | undefined;
686
+ fa?: string | undefined;
687
+ fr?: string | undefined;
688
+ };
689
+ description: {
690
+ en: string;
691
+ ru?: string | undefined;
692
+ zh?: string | undefined;
693
+ fa?: string | undefined;
694
+ fr?: string | undefined;
695
+ };
696
+ svgIcon: string;
697
+ svgIconColor: string;
698
+ buttons: {
699
+ type: "external" | "subscriptionLink";
700
+ link: string;
701
+ text: {
702
+ en: string;
703
+ ru?: string | undefined;
704
+ zh?: string | undefined;
705
+ fa?: string | undefined;
706
+ fr?: string | undefined;
707
+ };
708
+ svgIcon: string;
709
+ }[];
710
+ }[];
711
+ }[];
712
+ }>>;
713
+ }, {
714
+ version: "1";
715
+ brandingSettings: {
716
+ title: string;
717
+ logoUrl: string;
718
+ supportUrl: string;
719
+ };
720
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
721
+ uiConfig: {
722
+ subscriptionInfo: {
723
+ block: "collapsed" | "expanded";
724
+ };
725
+ installationGuides: {
726
+ headerText: {
727
+ en: string;
728
+ ru?: string | undefined;
729
+ zh?: string | undefined;
730
+ fa?: string | undefined;
731
+ fr?: string | undefined;
732
+ };
733
+ };
734
+ connectionKeys: {
735
+ headerText: {
736
+ en: string;
737
+ ru?: string | undefined;
738
+ zh?: string | undefined;
739
+ fa?: string | undefined;
740
+ fr?: string | undefined;
741
+ };
742
+ };
743
+ };
744
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
745
+ svgIcon: string;
746
+ displayName: {
747
+ en: string;
748
+ ru?: string | undefined;
749
+ zh?: string | undefined;
750
+ fa?: string | undefined;
751
+ fr?: string | undefined;
752
+ };
753
+ apps: {
754
+ name: string;
755
+ featured: boolean;
756
+ blocks: {
757
+ title: {
758
+ en: string;
759
+ ru?: string | undefined;
760
+ zh?: string | undefined;
761
+ fa?: string | undefined;
762
+ fr?: string | undefined;
763
+ };
764
+ description: {
765
+ en: string;
766
+ ru?: string | undefined;
767
+ zh?: string | undefined;
768
+ fa?: string | undefined;
769
+ fr?: string | undefined;
770
+ };
771
+ svgIcon: string;
772
+ svgIconColor: string;
773
+ buttons: {
774
+ type: "external" | "subscriptionLink";
775
+ link: string;
776
+ text: {
777
+ en: string;
778
+ ru?: string | undefined;
779
+ zh?: string | undefined;
780
+ fa?: string | undefined;
781
+ fr?: string | undefined;
782
+ };
783
+ svgIcon: string;
784
+ }[];
785
+ }[];
786
+ }[];
787
+ }>>;
788
+ }>>;
12
789
  }, "uuid" | "viewPosition">, "strip", z.ZodTypeAny, {
13
790
  uuid: string;
14
791
  viewPosition: number;
@@ -35,17 +812,944 @@ export declare namespace ReorderSubscriptionPageConfigsCommand {
35
812
  uuid: z.ZodString;
36
813
  viewPosition: z.ZodNumber;
37
814
  name: z.ZodString;
38
- encodedConfig: z.ZodNullable<z.ZodString>;
815
+ config: z.ZodNullable<z.ZodEffects<z.ZodObject<{
816
+ version: z.ZodNativeEnum<{
817
+ readonly 1: "1";
818
+ }>;
819
+ additionalLocales: z.ZodArray<z.ZodEnum<["ru", "zh", "fa", "fr"]>, "many">;
820
+ brandingSettings: z.ZodObject<{
821
+ title: z.ZodString;
822
+ logoUrl: z.ZodString;
823
+ supportUrl: z.ZodString;
824
+ }, "strip", z.ZodTypeAny, {
825
+ title: string;
826
+ logoUrl: string;
827
+ supportUrl: string;
828
+ }, {
829
+ title: string;
830
+ logoUrl: string;
831
+ supportUrl: string;
832
+ }>;
833
+ uiConfig: z.ZodObject<{
834
+ subscriptionInfo: z.ZodObject<{
835
+ block: z.ZodEnum<["collapsed", "expanded"]>;
836
+ }, "strip", z.ZodTypeAny, {
837
+ block: "collapsed" | "expanded";
838
+ }, {
839
+ block: "collapsed" | "expanded";
840
+ }>;
841
+ installationGuides: z.ZodObject<{
842
+ headerText: z.ZodObject<{
843
+ en: z.ZodString;
844
+ ru: z.ZodOptional<z.ZodString>;
845
+ zh: z.ZodOptional<z.ZodString>;
846
+ fa: z.ZodOptional<z.ZodString>;
847
+ fr: z.ZodOptional<z.ZodString>;
848
+ }, "strip", z.ZodTypeAny, {
849
+ en: string;
850
+ ru?: string | undefined;
851
+ zh?: string | undefined;
852
+ fa?: string | undefined;
853
+ fr?: string | undefined;
854
+ }, {
855
+ en: string;
856
+ ru?: string | undefined;
857
+ zh?: string | undefined;
858
+ fa?: string | undefined;
859
+ fr?: string | undefined;
860
+ }>;
861
+ }, "strip", z.ZodTypeAny, {
862
+ headerText: {
863
+ en: string;
864
+ ru?: string | undefined;
865
+ zh?: string | undefined;
866
+ fa?: string | undefined;
867
+ fr?: string | undefined;
868
+ };
869
+ }, {
870
+ headerText: {
871
+ en: string;
872
+ ru?: string | undefined;
873
+ zh?: string | undefined;
874
+ fa?: string | undefined;
875
+ fr?: string | undefined;
876
+ };
877
+ }>;
878
+ connectionKeys: z.ZodObject<{
879
+ headerText: z.ZodObject<{
880
+ en: z.ZodString;
881
+ ru: z.ZodOptional<z.ZodString>;
882
+ zh: z.ZodOptional<z.ZodString>;
883
+ fa: z.ZodOptional<z.ZodString>;
884
+ fr: z.ZodOptional<z.ZodString>;
885
+ }, "strip", z.ZodTypeAny, {
886
+ en: string;
887
+ ru?: string | undefined;
888
+ zh?: string | undefined;
889
+ fa?: string | undefined;
890
+ fr?: string | undefined;
891
+ }, {
892
+ en: string;
893
+ ru?: string | undefined;
894
+ zh?: string | undefined;
895
+ fa?: string | undefined;
896
+ fr?: string | undefined;
897
+ }>;
898
+ }, "strip", z.ZodTypeAny, {
899
+ headerText: {
900
+ en: string;
901
+ ru?: string | undefined;
902
+ zh?: string | undefined;
903
+ fa?: string | undefined;
904
+ fr?: string | undefined;
905
+ };
906
+ }, {
907
+ headerText: {
908
+ en: string;
909
+ ru?: string | undefined;
910
+ zh?: string | undefined;
911
+ fa?: string | undefined;
912
+ fr?: string | undefined;
913
+ };
914
+ }>;
915
+ }, "strip", z.ZodTypeAny, {
916
+ subscriptionInfo: {
917
+ block: "collapsed" | "expanded";
918
+ };
919
+ installationGuides: {
920
+ headerText: {
921
+ en: string;
922
+ ru?: string | undefined;
923
+ zh?: string | undefined;
924
+ fa?: string | undefined;
925
+ fr?: string | undefined;
926
+ };
927
+ };
928
+ connectionKeys: {
929
+ headerText: {
930
+ en: string;
931
+ ru?: string | undefined;
932
+ zh?: string | undefined;
933
+ fa?: string | undefined;
934
+ fr?: string | undefined;
935
+ };
936
+ };
937
+ }, {
938
+ subscriptionInfo: {
939
+ block: "collapsed" | "expanded";
940
+ };
941
+ installationGuides: {
942
+ headerText: {
943
+ en: string;
944
+ ru?: string | undefined;
945
+ zh?: string | undefined;
946
+ fa?: string | undefined;
947
+ fr?: string | undefined;
948
+ };
949
+ };
950
+ connectionKeys: {
951
+ headerText: {
952
+ en: string;
953
+ ru?: string | undefined;
954
+ zh?: string | undefined;
955
+ fa?: string | undefined;
956
+ fr?: string | undefined;
957
+ };
958
+ };
959
+ }>;
960
+ platforms: z.ZodRecord<z.ZodNativeEnum<{
961
+ readonly IOS: "ios";
962
+ readonly ANDROID: "android";
963
+ readonly LINUX: "linux";
964
+ readonly MACOS: "macos";
965
+ readonly WINDOWS: "windows";
966
+ readonly ANDROID_TV: "androidTV";
967
+ readonly APPLE_TV: "appleTV";
968
+ }>, z.ZodObject<{
969
+ displayName: z.ZodObject<{
970
+ en: z.ZodString;
971
+ ru: z.ZodOptional<z.ZodString>;
972
+ zh: z.ZodOptional<z.ZodString>;
973
+ fa: z.ZodOptional<z.ZodString>;
974
+ fr: z.ZodOptional<z.ZodString>;
975
+ }, "strip", z.ZodTypeAny, {
976
+ en: string;
977
+ ru?: string | undefined;
978
+ zh?: string | undefined;
979
+ fa?: string | undefined;
980
+ fr?: string | undefined;
981
+ }, {
982
+ en: string;
983
+ ru?: string | undefined;
984
+ zh?: string | undefined;
985
+ fa?: string | undefined;
986
+ fr?: string | undefined;
987
+ }>;
988
+ svgIcon: z.ZodString;
989
+ apps: z.ZodArray<z.ZodObject<{
990
+ name: z.ZodString;
991
+ featured: z.ZodBoolean;
992
+ blocks: z.ZodArray<z.ZodObject<{
993
+ svgIcon: z.ZodString;
994
+ svgIconColor: z.ZodEffects<z.ZodString, string, string>;
995
+ title: z.ZodObject<{
996
+ en: z.ZodString;
997
+ ru: z.ZodOptional<z.ZodString>;
998
+ zh: z.ZodOptional<z.ZodString>;
999
+ fa: z.ZodOptional<z.ZodString>;
1000
+ fr: z.ZodOptional<z.ZodString>;
1001
+ }, "strip", z.ZodTypeAny, {
1002
+ en: string;
1003
+ ru?: string | undefined;
1004
+ zh?: string | undefined;
1005
+ fa?: string | undefined;
1006
+ fr?: string | undefined;
1007
+ }, {
1008
+ en: string;
1009
+ ru?: string | undefined;
1010
+ zh?: string | undefined;
1011
+ fa?: string | undefined;
1012
+ fr?: string | undefined;
1013
+ }>;
1014
+ description: z.ZodObject<{
1015
+ en: z.ZodString;
1016
+ ru: z.ZodOptional<z.ZodString>;
1017
+ zh: z.ZodOptional<z.ZodString>;
1018
+ fa: z.ZodOptional<z.ZodString>;
1019
+ fr: z.ZodOptional<z.ZodString>;
1020
+ }, "strip", z.ZodTypeAny, {
1021
+ en: string;
1022
+ ru?: string | undefined;
1023
+ zh?: string | undefined;
1024
+ fa?: string | undefined;
1025
+ fr?: string | undefined;
1026
+ }, {
1027
+ en: string;
1028
+ ru?: string | undefined;
1029
+ zh?: string | undefined;
1030
+ fa?: string | undefined;
1031
+ fr?: string | undefined;
1032
+ }>;
1033
+ buttons: z.ZodArray<z.ZodObject<{
1034
+ link: z.ZodString;
1035
+ type: z.ZodEnum<["external", "subscriptionLink"]>;
1036
+ text: z.ZodObject<{
1037
+ en: z.ZodString;
1038
+ ru: z.ZodOptional<z.ZodString>;
1039
+ zh: z.ZodOptional<z.ZodString>;
1040
+ fa: z.ZodOptional<z.ZodString>;
1041
+ fr: z.ZodOptional<z.ZodString>;
1042
+ }, "strip", z.ZodTypeAny, {
1043
+ en: string;
1044
+ ru?: string | undefined;
1045
+ zh?: string | undefined;
1046
+ fa?: string | undefined;
1047
+ fr?: string | undefined;
1048
+ }, {
1049
+ en: string;
1050
+ ru?: string | undefined;
1051
+ zh?: string | undefined;
1052
+ fa?: string | undefined;
1053
+ fr?: string | undefined;
1054
+ }>;
1055
+ svgIcon: z.ZodString;
1056
+ }, "strip", z.ZodTypeAny, {
1057
+ type: "external" | "subscriptionLink";
1058
+ link: string;
1059
+ text: {
1060
+ en: string;
1061
+ ru?: string | undefined;
1062
+ zh?: string | undefined;
1063
+ fa?: string | undefined;
1064
+ fr?: string | undefined;
1065
+ };
1066
+ svgIcon: string;
1067
+ }, {
1068
+ type: "external" | "subscriptionLink";
1069
+ link: string;
1070
+ text: {
1071
+ en: string;
1072
+ ru?: string | undefined;
1073
+ zh?: string | undefined;
1074
+ fa?: string | undefined;
1075
+ fr?: string | undefined;
1076
+ };
1077
+ svgIcon: string;
1078
+ }>, "many">;
1079
+ }, "strip", z.ZodTypeAny, {
1080
+ title: {
1081
+ en: string;
1082
+ ru?: string | undefined;
1083
+ zh?: string | undefined;
1084
+ fa?: string | undefined;
1085
+ fr?: string | undefined;
1086
+ };
1087
+ description: {
1088
+ en: string;
1089
+ ru?: string | undefined;
1090
+ zh?: string | undefined;
1091
+ fa?: string | undefined;
1092
+ fr?: string | undefined;
1093
+ };
1094
+ svgIcon: string;
1095
+ svgIconColor: string;
1096
+ buttons: {
1097
+ type: "external" | "subscriptionLink";
1098
+ link: string;
1099
+ text: {
1100
+ en: string;
1101
+ ru?: string | undefined;
1102
+ zh?: string | undefined;
1103
+ fa?: string | undefined;
1104
+ fr?: string | undefined;
1105
+ };
1106
+ svgIcon: string;
1107
+ }[];
1108
+ }, {
1109
+ title: {
1110
+ en: string;
1111
+ ru?: string | undefined;
1112
+ zh?: string | undefined;
1113
+ fa?: string | undefined;
1114
+ fr?: string | undefined;
1115
+ };
1116
+ description: {
1117
+ en: string;
1118
+ ru?: string | undefined;
1119
+ zh?: string | undefined;
1120
+ fa?: string | undefined;
1121
+ fr?: string | undefined;
1122
+ };
1123
+ svgIcon: string;
1124
+ svgIconColor: string;
1125
+ buttons: {
1126
+ type: "external" | "subscriptionLink";
1127
+ link: string;
1128
+ text: {
1129
+ en: string;
1130
+ ru?: string | undefined;
1131
+ zh?: string | undefined;
1132
+ fa?: string | undefined;
1133
+ fr?: string | undefined;
1134
+ };
1135
+ svgIcon: string;
1136
+ }[];
1137
+ }>, "many">;
1138
+ }, "strip", z.ZodTypeAny, {
1139
+ name: string;
1140
+ featured: boolean;
1141
+ blocks: {
1142
+ title: {
1143
+ en: string;
1144
+ ru?: string | undefined;
1145
+ zh?: string | undefined;
1146
+ fa?: string | undefined;
1147
+ fr?: string | undefined;
1148
+ };
1149
+ description: {
1150
+ en: string;
1151
+ ru?: string | undefined;
1152
+ zh?: string | undefined;
1153
+ fa?: string | undefined;
1154
+ fr?: string | undefined;
1155
+ };
1156
+ svgIcon: string;
1157
+ svgIconColor: string;
1158
+ buttons: {
1159
+ type: "external" | "subscriptionLink";
1160
+ link: string;
1161
+ text: {
1162
+ en: string;
1163
+ ru?: string | undefined;
1164
+ zh?: string | undefined;
1165
+ fa?: string | undefined;
1166
+ fr?: string | undefined;
1167
+ };
1168
+ svgIcon: string;
1169
+ }[];
1170
+ }[];
1171
+ }, {
1172
+ name: string;
1173
+ featured: boolean;
1174
+ blocks: {
1175
+ title: {
1176
+ en: string;
1177
+ ru?: string | undefined;
1178
+ zh?: string | undefined;
1179
+ fa?: string | undefined;
1180
+ fr?: string | undefined;
1181
+ };
1182
+ description: {
1183
+ en: string;
1184
+ ru?: string | undefined;
1185
+ zh?: string | undefined;
1186
+ fa?: string | undefined;
1187
+ fr?: string | undefined;
1188
+ };
1189
+ svgIcon: string;
1190
+ svgIconColor: string;
1191
+ buttons: {
1192
+ type: "external" | "subscriptionLink";
1193
+ link: string;
1194
+ text: {
1195
+ en: string;
1196
+ ru?: string | undefined;
1197
+ zh?: string | undefined;
1198
+ fa?: string | undefined;
1199
+ fr?: string | undefined;
1200
+ };
1201
+ svgIcon: string;
1202
+ }[];
1203
+ }[];
1204
+ }>, "many">;
1205
+ }, "strip", z.ZodTypeAny, {
1206
+ svgIcon: string;
1207
+ displayName: {
1208
+ en: string;
1209
+ ru?: string | undefined;
1210
+ zh?: string | undefined;
1211
+ fa?: string | undefined;
1212
+ fr?: string | undefined;
1213
+ };
1214
+ apps: {
1215
+ name: string;
1216
+ featured: boolean;
1217
+ blocks: {
1218
+ title: {
1219
+ en: string;
1220
+ ru?: string | undefined;
1221
+ zh?: string | undefined;
1222
+ fa?: string | undefined;
1223
+ fr?: string | undefined;
1224
+ };
1225
+ description: {
1226
+ en: string;
1227
+ ru?: string | undefined;
1228
+ zh?: string | undefined;
1229
+ fa?: string | undefined;
1230
+ fr?: string | undefined;
1231
+ };
1232
+ svgIcon: string;
1233
+ svgIconColor: string;
1234
+ buttons: {
1235
+ type: "external" | "subscriptionLink";
1236
+ link: string;
1237
+ text: {
1238
+ en: string;
1239
+ ru?: string | undefined;
1240
+ zh?: string | undefined;
1241
+ fa?: string | undefined;
1242
+ fr?: string | undefined;
1243
+ };
1244
+ svgIcon: string;
1245
+ }[];
1246
+ }[];
1247
+ }[];
1248
+ }, {
1249
+ svgIcon: string;
1250
+ displayName: {
1251
+ en: string;
1252
+ ru?: string | undefined;
1253
+ zh?: string | undefined;
1254
+ fa?: string | undefined;
1255
+ fr?: string | undefined;
1256
+ };
1257
+ apps: {
1258
+ name: string;
1259
+ featured: boolean;
1260
+ blocks: {
1261
+ title: {
1262
+ en: string;
1263
+ ru?: string | undefined;
1264
+ zh?: string | undefined;
1265
+ fa?: string | undefined;
1266
+ fr?: string | undefined;
1267
+ };
1268
+ description: {
1269
+ en: string;
1270
+ ru?: string | undefined;
1271
+ zh?: string | undefined;
1272
+ fa?: string | undefined;
1273
+ fr?: string | undefined;
1274
+ };
1275
+ svgIcon: string;
1276
+ svgIconColor: string;
1277
+ buttons: {
1278
+ type: "external" | "subscriptionLink";
1279
+ link: string;
1280
+ text: {
1281
+ en: string;
1282
+ ru?: string | undefined;
1283
+ zh?: string | undefined;
1284
+ fa?: string | undefined;
1285
+ fr?: string | undefined;
1286
+ };
1287
+ svgIcon: string;
1288
+ }[];
1289
+ }[];
1290
+ }[];
1291
+ }>>;
1292
+ }, "strip", z.ZodTypeAny, {
1293
+ version: "1";
1294
+ brandingSettings: {
1295
+ title: string;
1296
+ logoUrl: string;
1297
+ supportUrl: string;
1298
+ };
1299
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
1300
+ uiConfig: {
1301
+ subscriptionInfo: {
1302
+ block: "collapsed" | "expanded";
1303
+ };
1304
+ installationGuides: {
1305
+ headerText: {
1306
+ en: string;
1307
+ ru?: string | undefined;
1308
+ zh?: string | undefined;
1309
+ fa?: string | undefined;
1310
+ fr?: string | undefined;
1311
+ };
1312
+ };
1313
+ connectionKeys: {
1314
+ headerText: {
1315
+ en: string;
1316
+ ru?: string | undefined;
1317
+ zh?: string | undefined;
1318
+ fa?: string | undefined;
1319
+ fr?: string | undefined;
1320
+ };
1321
+ };
1322
+ };
1323
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
1324
+ svgIcon: string;
1325
+ displayName: {
1326
+ en: string;
1327
+ ru?: string | undefined;
1328
+ zh?: string | undefined;
1329
+ fa?: string | undefined;
1330
+ fr?: string | undefined;
1331
+ };
1332
+ apps: {
1333
+ name: string;
1334
+ featured: boolean;
1335
+ blocks: {
1336
+ title: {
1337
+ en: string;
1338
+ ru?: string | undefined;
1339
+ zh?: string | undefined;
1340
+ fa?: string | undefined;
1341
+ fr?: string | undefined;
1342
+ };
1343
+ description: {
1344
+ en: string;
1345
+ ru?: string | undefined;
1346
+ zh?: string | undefined;
1347
+ fa?: string | undefined;
1348
+ fr?: string | undefined;
1349
+ };
1350
+ svgIcon: string;
1351
+ svgIconColor: string;
1352
+ buttons: {
1353
+ type: "external" | "subscriptionLink";
1354
+ link: string;
1355
+ text: {
1356
+ en: string;
1357
+ ru?: string | undefined;
1358
+ zh?: string | undefined;
1359
+ fa?: string | undefined;
1360
+ fr?: string | undefined;
1361
+ };
1362
+ svgIcon: string;
1363
+ }[];
1364
+ }[];
1365
+ }[];
1366
+ }>>;
1367
+ }, {
1368
+ version: "1";
1369
+ brandingSettings: {
1370
+ title: string;
1371
+ logoUrl: string;
1372
+ supportUrl: string;
1373
+ };
1374
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
1375
+ uiConfig: {
1376
+ subscriptionInfo: {
1377
+ block: "collapsed" | "expanded";
1378
+ };
1379
+ installationGuides: {
1380
+ headerText: {
1381
+ en: string;
1382
+ ru?: string | undefined;
1383
+ zh?: string | undefined;
1384
+ fa?: string | undefined;
1385
+ fr?: string | undefined;
1386
+ };
1387
+ };
1388
+ connectionKeys: {
1389
+ headerText: {
1390
+ en: string;
1391
+ ru?: string | undefined;
1392
+ zh?: string | undefined;
1393
+ fa?: string | undefined;
1394
+ fr?: string | undefined;
1395
+ };
1396
+ };
1397
+ };
1398
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
1399
+ svgIcon: string;
1400
+ displayName: {
1401
+ en: string;
1402
+ ru?: string | undefined;
1403
+ zh?: string | undefined;
1404
+ fa?: string | undefined;
1405
+ fr?: string | undefined;
1406
+ };
1407
+ apps: {
1408
+ name: string;
1409
+ featured: boolean;
1410
+ blocks: {
1411
+ title: {
1412
+ en: string;
1413
+ ru?: string | undefined;
1414
+ zh?: string | undefined;
1415
+ fa?: string | undefined;
1416
+ fr?: string | undefined;
1417
+ };
1418
+ description: {
1419
+ en: string;
1420
+ ru?: string | undefined;
1421
+ zh?: string | undefined;
1422
+ fa?: string | undefined;
1423
+ fr?: string | undefined;
1424
+ };
1425
+ svgIcon: string;
1426
+ svgIconColor: string;
1427
+ buttons: {
1428
+ type: "external" | "subscriptionLink";
1429
+ link: string;
1430
+ text: {
1431
+ en: string;
1432
+ ru?: string | undefined;
1433
+ zh?: string | undefined;
1434
+ fa?: string | undefined;
1435
+ fr?: string | undefined;
1436
+ };
1437
+ svgIcon: string;
1438
+ }[];
1439
+ }[];
1440
+ }[];
1441
+ }>>;
1442
+ }>, {
1443
+ version: "1";
1444
+ brandingSettings: {
1445
+ title: string;
1446
+ logoUrl: string;
1447
+ supportUrl: string;
1448
+ };
1449
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
1450
+ uiConfig: {
1451
+ subscriptionInfo: {
1452
+ block: "collapsed" | "expanded";
1453
+ };
1454
+ installationGuides: {
1455
+ headerText: {
1456
+ en: string;
1457
+ ru?: string | undefined;
1458
+ zh?: string | undefined;
1459
+ fa?: string | undefined;
1460
+ fr?: string | undefined;
1461
+ };
1462
+ };
1463
+ connectionKeys: {
1464
+ headerText: {
1465
+ en: string;
1466
+ ru?: string | undefined;
1467
+ zh?: string | undefined;
1468
+ fa?: string | undefined;
1469
+ fr?: string | undefined;
1470
+ };
1471
+ };
1472
+ };
1473
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
1474
+ svgIcon: string;
1475
+ displayName: {
1476
+ en: string;
1477
+ ru?: string | undefined;
1478
+ zh?: string | undefined;
1479
+ fa?: string | undefined;
1480
+ fr?: string | undefined;
1481
+ };
1482
+ apps: {
1483
+ name: string;
1484
+ featured: boolean;
1485
+ blocks: {
1486
+ title: {
1487
+ en: string;
1488
+ ru?: string | undefined;
1489
+ zh?: string | undefined;
1490
+ fa?: string | undefined;
1491
+ fr?: string | undefined;
1492
+ };
1493
+ description: {
1494
+ en: string;
1495
+ ru?: string | undefined;
1496
+ zh?: string | undefined;
1497
+ fa?: string | undefined;
1498
+ fr?: string | undefined;
1499
+ };
1500
+ svgIcon: string;
1501
+ svgIconColor: string;
1502
+ buttons: {
1503
+ type: "external" | "subscriptionLink";
1504
+ link: string;
1505
+ text: {
1506
+ en: string;
1507
+ ru?: string | undefined;
1508
+ zh?: string | undefined;
1509
+ fa?: string | undefined;
1510
+ fr?: string | undefined;
1511
+ };
1512
+ svgIcon: string;
1513
+ }[];
1514
+ }[];
1515
+ }[];
1516
+ }>>;
1517
+ }, {
1518
+ version: "1";
1519
+ brandingSettings: {
1520
+ title: string;
1521
+ logoUrl: string;
1522
+ supportUrl: string;
1523
+ };
1524
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
1525
+ uiConfig: {
1526
+ subscriptionInfo: {
1527
+ block: "collapsed" | "expanded";
1528
+ };
1529
+ installationGuides: {
1530
+ headerText: {
1531
+ en: string;
1532
+ ru?: string | undefined;
1533
+ zh?: string | undefined;
1534
+ fa?: string | undefined;
1535
+ fr?: string | undefined;
1536
+ };
1537
+ };
1538
+ connectionKeys: {
1539
+ headerText: {
1540
+ en: string;
1541
+ ru?: string | undefined;
1542
+ zh?: string | undefined;
1543
+ fa?: string | undefined;
1544
+ fr?: string | undefined;
1545
+ };
1546
+ };
1547
+ };
1548
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
1549
+ svgIcon: string;
1550
+ displayName: {
1551
+ en: string;
1552
+ ru?: string | undefined;
1553
+ zh?: string | undefined;
1554
+ fa?: string | undefined;
1555
+ fr?: string | undefined;
1556
+ };
1557
+ apps: {
1558
+ name: string;
1559
+ featured: boolean;
1560
+ blocks: {
1561
+ title: {
1562
+ en: string;
1563
+ ru?: string | undefined;
1564
+ zh?: string | undefined;
1565
+ fa?: string | undefined;
1566
+ fr?: string | undefined;
1567
+ };
1568
+ description: {
1569
+ en: string;
1570
+ ru?: string | undefined;
1571
+ zh?: string | undefined;
1572
+ fa?: string | undefined;
1573
+ fr?: string | undefined;
1574
+ };
1575
+ svgIcon: string;
1576
+ svgIconColor: string;
1577
+ buttons: {
1578
+ type: "external" | "subscriptionLink";
1579
+ link: string;
1580
+ text: {
1581
+ en: string;
1582
+ ru?: string | undefined;
1583
+ zh?: string | undefined;
1584
+ fa?: string | undefined;
1585
+ fr?: string | undefined;
1586
+ };
1587
+ svgIcon: string;
1588
+ }[];
1589
+ }[];
1590
+ }[];
1591
+ }>>;
1592
+ }>>;
39
1593
  }, "strip", z.ZodTypeAny, {
40
1594
  uuid: string;
41
1595
  name: string;
42
1596
  viewPosition: number;
43
- encodedConfig: string | null;
1597
+ config: {
1598
+ version: "1";
1599
+ brandingSettings: {
1600
+ title: string;
1601
+ logoUrl: string;
1602
+ supportUrl: string;
1603
+ };
1604
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
1605
+ uiConfig: {
1606
+ subscriptionInfo: {
1607
+ block: "collapsed" | "expanded";
1608
+ };
1609
+ installationGuides: {
1610
+ headerText: {
1611
+ en: string;
1612
+ ru?: string | undefined;
1613
+ zh?: string | undefined;
1614
+ fa?: string | undefined;
1615
+ fr?: string | undefined;
1616
+ };
1617
+ };
1618
+ connectionKeys: {
1619
+ headerText: {
1620
+ en: string;
1621
+ ru?: string | undefined;
1622
+ zh?: string | undefined;
1623
+ fa?: string | undefined;
1624
+ fr?: string | undefined;
1625
+ };
1626
+ };
1627
+ };
1628
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
1629
+ svgIcon: string;
1630
+ displayName: {
1631
+ en: string;
1632
+ ru?: string | undefined;
1633
+ zh?: string | undefined;
1634
+ fa?: string | undefined;
1635
+ fr?: string | undefined;
1636
+ };
1637
+ apps: {
1638
+ name: string;
1639
+ featured: boolean;
1640
+ blocks: {
1641
+ title: {
1642
+ en: string;
1643
+ ru?: string | undefined;
1644
+ zh?: string | undefined;
1645
+ fa?: string | undefined;
1646
+ fr?: string | undefined;
1647
+ };
1648
+ description: {
1649
+ en: string;
1650
+ ru?: string | undefined;
1651
+ zh?: string | undefined;
1652
+ fa?: string | undefined;
1653
+ fr?: string | undefined;
1654
+ };
1655
+ svgIcon: string;
1656
+ svgIconColor: string;
1657
+ buttons: {
1658
+ type: "external" | "subscriptionLink";
1659
+ link: string;
1660
+ text: {
1661
+ en: string;
1662
+ ru?: string | undefined;
1663
+ zh?: string | undefined;
1664
+ fa?: string | undefined;
1665
+ fr?: string | undefined;
1666
+ };
1667
+ svgIcon: string;
1668
+ }[];
1669
+ }[];
1670
+ }[];
1671
+ }>>;
1672
+ } | null;
44
1673
  }, {
45
1674
  uuid: string;
46
1675
  name: string;
47
1676
  viewPosition: number;
48
- encodedConfig: string | null;
1677
+ config: {
1678
+ version: "1";
1679
+ brandingSettings: {
1680
+ title: string;
1681
+ logoUrl: string;
1682
+ supportUrl: string;
1683
+ };
1684
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
1685
+ uiConfig: {
1686
+ subscriptionInfo: {
1687
+ block: "collapsed" | "expanded";
1688
+ };
1689
+ installationGuides: {
1690
+ headerText: {
1691
+ en: string;
1692
+ ru?: string | undefined;
1693
+ zh?: string | undefined;
1694
+ fa?: string | undefined;
1695
+ fr?: string | undefined;
1696
+ };
1697
+ };
1698
+ connectionKeys: {
1699
+ headerText: {
1700
+ en: string;
1701
+ ru?: string | undefined;
1702
+ zh?: string | undefined;
1703
+ fa?: string | undefined;
1704
+ fr?: string | undefined;
1705
+ };
1706
+ };
1707
+ };
1708
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
1709
+ svgIcon: string;
1710
+ displayName: {
1711
+ en: string;
1712
+ ru?: string | undefined;
1713
+ zh?: string | undefined;
1714
+ fa?: string | undefined;
1715
+ fr?: string | undefined;
1716
+ };
1717
+ apps: {
1718
+ name: string;
1719
+ featured: boolean;
1720
+ blocks: {
1721
+ title: {
1722
+ en: string;
1723
+ ru?: string | undefined;
1724
+ zh?: string | undefined;
1725
+ fa?: string | undefined;
1726
+ fr?: string | undefined;
1727
+ };
1728
+ description: {
1729
+ en: string;
1730
+ ru?: string | undefined;
1731
+ zh?: string | undefined;
1732
+ fa?: string | undefined;
1733
+ fr?: string | undefined;
1734
+ };
1735
+ svgIcon: string;
1736
+ svgIconColor: string;
1737
+ buttons: {
1738
+ type: "external" | "subscriptionLink";
1739
+ link: string;
1740
+ text: {
1741
+ en: string;
1742
+ ru?: string | undefined;
1743
+ zh?: string | undefined;
1744
+ fa?: string | undefined;
1745
+ fr?: string | undefined;
1746
+ };
1747
+ svgIcon: string;
1748
+ }[];
1749
+ }[];
1750
+ }[];
1751
+ }>>;
1752
+ } | null;
49
1753
  }>, "many">;
50
1754
  }, "strip", z.ZodTypeAny, {
51
1755
  total: number;
@@ -53,7 +1757,82 @@ export declare namespace ReorderSubscriptionPageConfigsCommand {
53
1757
  uuid: string;
54
1758
  name: string;
55
1759
  viewPosition: number;
56
- encodedConfig: string | null;
1760
+ config: {
1761
+ version: "1";
1762
+ brandingSettings: {
1763
+ title: string;
1764
+ logoUrl: string;
1765
+ supportUrl: string;
1766
+ };
1767
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
1768
+ uiConfig: {
1769
+ subscriptionInfo: {
1770
+ block: "collapsed" | "expanded";
1771
+ };
1772
+ installationGuides: {
1773
+ headerText: {
1774
+ en: string;
1775
+ ru?: string | undefined;
1776
+ zh?: string | undefined;
1777
+ fa?: string | undefined;
1778
+ fr?: string | undefined;
1779
+ };
1780
+ };
1781
+ connectionKeys: {
1782
+ headerText: {
1783
+ en: string;
1784
+ ru?: string | undefined;
1785
+ zh?: string | undefined;
1786
+ fa?: string | undefined;
1787
+ fr?: string | undefined;
1788
+ };
1789
+ };
1790
+ };
1791
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
1792
+ svgIcon: string;
1793
+ displayName: {
1794
+ en: string;
1795
+ ru?: string | undefined;
1796
+ zh?: string | undefined;
1797
+ fa?: string | undefined;
1798
+ fr?: string | undefined;
1799
+ };
1800
+ apps: {
1801
+ name: string;
1802
+ featured: boolean;
1803
+ blocks: {
1804
+ title: {
1805
+ en: string;
1806
+ ru?: string | undefined;
1807
+ zh?: string | undefined;
1808
+ fa?: string | undefined;
1809
+ fr?: string | undefined;
1810
+ };
1811
+ description: {
1812
+ en: string;
1813
+ ru?: string | undefined;
1814
+ zh?: string | undefined;
1815
+ fa?: string | undefined;
1816
+ fr?: string | undefined;
1817
+ };
1818
+ svgIcon: string;
1819
+ svgIconColor: string;
1820
+ buttons: {
1821
+ type: "external" | "subscriptionLink";
1822
+ link: string;
1823
+ text: {
1824
+ en: string;
1825
+ ru?: string | undefined;
1826
+ zh?: string | undefined;
1827
+ fa?: string | undefined;
1828
+ fr?: string | undefined;
1829
+ };
1830
+ svgIcon: string;
1831
+ }[];
1832
+ }[];
1833
+ }[];
1834
+ }>>;
1835
+ } | null;
57
1836
  }[];
58
1837
  }, {
59
1838
  total: number;
@@ -61,7 +1840,82 @@ export declare namespace ReorderSubscriptionPageConfigsCommand {
61
1840
  uuid: string;
62
1841
  name: string;
63
1842
  viewPosition: number;
64
- encodedConfig: string | null;
1843
+ config: {
1844
+ version: "1";
1845
+ brandingSettings: {
1846
+ title: string;
1847
+ logoUrl: string;
1848
+ supportUrl: string;
1849
+ };
1850
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
1851
+ uiConfig: {
1852
+ subscriptionInfo: {
1853
+ block: "collapsed" | "expanded";
1854
+ };
1855
+ installationGuides: {
1856
+ headerText: {
1857
+ en: string;
1858
+ ru?: string | undefined;
1859
+ zh?: string | undefined;
1860
+ fa?: string | undefined;
1861
+ fr?: string | undefined;
1862
+ };
1863
+ };
1864
+ connectionKeys: {
1865
+ headerText: {
1866
+ en: string;
1867
+ ru?: string | undefined;
1868
+ zh?: string | undefined;
1869
+ fa?: string | undefined;
1870
+ fr?: string | undefined;
1871
+ };
1872
+ };
1873
+ };
1874
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
1875
+ svgIcon: string;
1876
+ displayName: {
1877
+ en: string;
1878
+ ru?: string | undefined;
1879
+ zh?: string | undefined;
1880
+ fa?: string | undefined;
1881
+ fr?: string | undefined;
1882
+ };
1883
+ apps: {
1884
+ name: string;
1885
+ featured: boolean;
1886
+ blocks: {
1887
+ title: {
1888
+ en: string;
1889
+ ru?: string | undefined;
1890
+ zh?: string | undefined;
1891
+ fa?: string | undefined;
1892
+ fr?: string | undefined;
1893
+ };
1894
+ description: {
1895
+ en: string;
1896
+ ru?: string | undefined;
1897
+ zh?: string | undefined;
1898
+ fa?: string | undefined;
1899
+ fr?: string | undefined;
1900
+ };
1901
+ svgIcon: string;
1902
+ svgIconColor: string;
1903
+ buttons: {
1904
+ type: "external" | "subscriptionLink";
1905
+ link: string;
1906
+ text: {
1907
+ en: string;
1908
+ ru?: string | undefined;
1909
+ zh?: string | undefined;
1910
+ fa?: string | undefined;
1911
+ fr?: string | undefined;
1912
+ };
1913
+ svgIcon: string;
1914
+ }[];
1915
+ }[];
1916
+ }[];
1917
+ }>>;
1918
+ } | null;
65
1919
  }[];
66
1920
  }>;
67
1921
  }, "strip", z.ZodTypeAny, {
@@ -71,7 +1925,82 @@ export declare namespace ReorderSubscriptionPageConfigsCommand {
71
1925
  uuid: string;
72
1926
  name: string;
73
1927
  viewPosition: number;
74
- encodedConfig: string | null;
1928
+ config: {
1929
+ version: "1";
1930
+ brandingSettings: {
1931
+ title: string;
1932
+ logoUrl: string;
1933
+ supportUrl: string;
1934
+ };
1935
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
1936
+ uiConfig: {
1937
+ subscriptionInfo: {
1938
+ block: "collapsed" | "expanded";
1939
+ };
1940
+ installationGuides: {
1941
+ headerText: {
1942
+ en: string;
1943
+ ru?: string | undefined;
1944
+ zh?: string | undefined;
1945
+ fa?: string | undefined;
1946
+ fr?: string | undefined;
1947
+ };
1948
+ };
1949
+ connectionKeys: {
1950
+ headerText: {
1951
+ en: string;
1952
+ ru?: string | undefined;
1953
+ zh?: string | undefined;
1954
+ fa?: string | undefined;
1955
+ fr?: string | undefined;
1956
+ };
1957
+ };
1958
+ };
1959
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
1960
+ svgIcon: string;
1961
+ displayName: {
1962
+ en: string;
1963
+ ru?: string | undefined;
1964
+ zh?: string | undefined;
1965
+ fa?: string | undefined;
1966
+ fr?: string | undefined;
1967
+ };
1968
+ apps: {
1969
+ name: string;
1970
+ featured: boolean;
1971
+ blocks: {
1972
+ title: {
1973
+ en: string;
1974
+ ru?: string | undefined;
1975
+ zh?: string | undefined;
1976
+ fa?: string | undefined;
1977
+ fr?: string | undefined;
1978
+ };
1979
+ description: {
1980
+ en: string;
1981
+ ru?: string | undefined;
1982
+ zh?: string | undefined;
1983
+ fa?: string | undefined;
1984
+ fr?: string | undefined;
1985
+ };
1986
+ svgIcon: string;
1987
+ svgIconColor: string;
1988
+ buttons: {
1989
+ type: "external" | "subscriptionLink";
1990
+ link: string;
1991
+ text: {
1992
+ en: string;
1993
+ ru?: string | undefined;
1994
+ zh?: string | undefined;
1995
+ fa?: string | undefined;
1996
+ fr?: string | undefined;
1997
+ };
1998
+ svgIcon: string;
1999
+ }[];
2000
+ }[];
2001
+ }[];
2002
+ }>>;
2003
+ } | null;
75
2004
  }[];
76
2005
  };
77
2006
  }, {
@@ -81,7 +2010,82 @@ export declare namespace ReorderSubscriptionPageConfigsCommand {
81
2010
  uuid: string;
82
2011
  name: string;
83
2012
  viewPosition: number;
84
- encodedConfig: string | null;
2013
+ config: {
2014
+ version: "1";
2015
+ brandingSettings: {
2016
+ title: string;
2017
+ logoUrl: string;
2018
+ supportUrl: string;
2019
+ };
2020
+ additionalLocales: ("ru" | "zh" | "fa" | "fr")[];
2021
+ uiConfig: {
2022
+ subscriptionInfo: {
2023
+ block: "collapsed" | "expanded";
2024
+ };
2025
+ installationGuides: {
2026
+ headerText: {
2027
+ en: string;
2028
+ ru?: string | undefined;
2029
+ zh?: string | undefined;
2030
+ fa?: string | undefined;
2031
+ fr?: string | undefined;
2032
+ };
2033
+ };
2034
+ connectionKeys: {
2035
+ headerText: {
2036
+ en: string;
2037
+ ru?: string | undefined;
2038
+ zh?: string | undefined;
2039
+ fa?: string | undefined;
2040
+ fr?: string | undefined;
2041
+ };
2042
+ };
2043
+ };
2044
+ platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
2045
+ svgIcon: string;
2046
+ displayName: {
2047
+ en: string;
2048
+ ru?: string | undefined;
2049
+ zh?: string | undefined;
2050
+ fa?: string | undefined;
2051
+ fr?: string | undefined;
2052
+ };
2053
+ apps: {
2054
+ name: string;
2055
+ featured: boolean;
2056
+ blocks: {
2057
+ title: {
2058
+ en: string;
2059
+ ru?: string | undefined;
2060
+ zh?: string | undefined;
2061
+ fa?: string | undefined;
2062
+ fr?: string | undefined;
2063
+ };
2064
+ description: {
2065
+ en: string;
2066
+ ru?: string | undefined;
2067
+ zh?: string | undefined;
2068
+ fa?: string | undefined;
2069
+ fr?: string | undefined;
2070
+ };
2071
+ svgIcon: string;
2072
+ svgIconColor: string;
2073
+ buttons: {
2074
+ type: "external" | "subscriptionLink";
2075
+ link: string;
2076
+ text: {
2077
+ en: string;
2078
+ ru?: string | undefined;
2079
+ zh?: string | undefined;
2080
+ fa?: string | undefined;
2081
+ fr?: string | undefined;
2082
+ };
2083
+ svgIcon: string;
2084
+ }[];
2085
+ }[];
2086
+ }[];
2087
+ }>>;
2088
+ } | null;
85
2089
  }[];
86
2090
  };
87
2091
  }>;