@remnawave/backend-contract 2.8.5 → 2.8.6
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/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts +15 -15
- package/build/backend/models/resolved-proxy-config.schema.d.ts +11 -31
- package/build/backend/models/resolved-proxy-config.schema.d.ts.map +1 -1
- package/build/backend/models/resolved-proxy-config.schema.js +1 -1
- package/build/frontend/models/resolved-proxy-config.schema.js +1 -1
- package/package.json +1 -1
package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts
CHANGED
|
@@ -409,13 +409,6 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
409
409
|
securityOptions: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
410
410
|
pinnedPeerCertSha256: z.ZodNullable<z.ZodString>;
|
|
411
411
|
verifyPeerCertByName: z.ZodNullable<z.ZodString>;
|
|
412
|
-
mihomoIpVersion: z.ZodNullable<z.ZodNativeEnum<{
|
|
413
|
-
readonly DUAL: "dual";
|
|
414
|
-
readonly IPV4: "ipv4";
|
|
415
|
-
readonly IPV6: "ipv6";
|
|
416
|
-
readonly IPV4_PREFER: "ipv4-prefer";
|
|
417
|
-
readonly IPV6_PREFER: "ipv6-prefer";
|
|
418
|
-
}>>;
|
|
419
412
|
alpn: z.ZodNullable<z.ZodString>;
|
|
420
413
|
enableSessionResumption: z.ZodBoolean;
|
|
421
414
|
fingerprint: z.ZodNullable<z.ZodString>;
|
|
@@ -427,7 +420,6 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
427
420
|
fingerprint: string | null;
|
|
428
421
|
pinnedPeerCertSha256: string | null;
|
|
429
422
|
verifyPeerCertByName: string | null;
|
|
430
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
431
423
|
enableSessionResumption: boolean;
|
|
432
424
|
serverName: string | null;
|
|
433
425
|
echConfigList: string | null;
|
|
@@ -437,7 +429,6 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
437
429
|
fingerprint: string | null;
|
|
438
430
|
pinnedPeerCertSha256: string | null;
|
|
439
431
|
verifyPeerCertByName: string | null;
|
|
440
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
441
432
|
enableSessionResumption: boolean;
|
|
442
433
|
serverName: string | null;
|
|
443
434
|
echConfigList: string | null;
|
|
@@ -478,17 +469,26 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
478
469
|
clientOverrides: z.ZodObject<{
|
|
479
470
|
shuffleHost: z.ZodBoolean;
|
|
480
471
|
mihomoX25519: z.ZodBoolean;
|
|
472
|
+
mihomoIpVersion: z.ZodNullable<z.ZodNativeEnum<{
|
|
473
|
+
readonly DUAL: "dual";
|
|
474
|
+
readonly IPV4: "ipv4";
|
|
475
|
+
readonly IPV6: "ipv6";
|
|
476
|
+
readonly IPV4_PREFER: "ipv4-prefer";
|
|
477
|
+
readonly IPV6_PREFER: "ipv6-prefer";
|
|
478
|
+
}>>;
|
|
481
479
|
serverDescription: z.ZodNullable<z.ZodString>;
|
|
482
480
|
xrayJsonTemplate: z.ZodNullable<z.ZodUnknown>;
|
|
483
481
|
}, "strip", z.ZodTypeAny, {
|
|
484
482
|
serverDescription: string | null;
|
|
485
483
|
shuffleHost: boolean;
|
|
486
484
|
mihomoX25519: boolean;
|
|
485
|
+
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
487
486
|
xrayJsonTemplate?: unknown;
|
|
488
487
|
}, {
|
|
489
488
|
serverDescription: string | null;
|
|
490
489
|
shuffleHost: boolean;
|
|
491
490
|
mihomoX25519: boolean;
|
|
491
|
+
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
492
492
|
xrayJsonTemplate?: unknown;
|
|
493
493
|
}>;
|
|
494
494
|
metadata: z.ZodObject<{
|
|
@@ -625,6 +625,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
625
625
|
serverDescription: string | null;
|
|
626
626
|
shuffleHost: boolean;
|
|
627
627
|
mihomoX25519: boolean;
|
|
628
|
+
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
628
629
|
xrayJsonTemplate?: unknown;
|
|
629
630
|
};
|
|
630
631
|
securityOptions?: {
|
|
@@ -632,7 +633,6 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
632
633
|
fingerprint: string | null;
|
|
633
634
|
pinnedPeerCertSha256: string | null;
|
|
634
635
|
verifyPeerCertByName: string | null;
|
|
635
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
636
636
|
enableSessionResumption: boolean;
|
|
637
637
|
serverName: string | null;
|
|
638
638
|
echConfigList: string | null;
|
|
@@ -733,6 +733,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
733
733
|
serverDescription: string | null;
|
|
734
734
|
shuffleHost: boolean;
|
|
735
735
|
mihomoX25519: boolean;
|
|
736
|
+
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
736
737
|
xrayJsonTemplate?: unknown;
|
|
737
738
|
};
|
|
738
739
|
securityOptions?: {
|
|
@@ -740,7 +741,6 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
740
741
|
fingerprint: string | null;
|
|
741
742
|
pinnedPeerCertSha256: string | null;
|
|
742
743
|
verifyPeerCertByName: string | null;
|
|
743
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
744
744
|
enableSessionResumption: boolean;
|
|
745
745
|
serverName: string | null;
|
|
746
746
|
echConfigList: string | null;
|
|
@@ -887,6 +887,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
887
887
|
serverDescription: string | null;
|
|
888
888
|
shuffleHost: boolean;
|
|
889
889
|
mihomoX25519: boolean;
|
|
890
|
+
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
890
891
|
xrayJsonTemplate?: unknown;
|
|
891
892
|
};
|
|
892
893
|
securityOptions?: {
|
|
@@ -894,7 +895,6 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
894
895
|
fingerprint: string | null;
|
|
895
896
|
pinnedPeerCertSha256: string | null;
|
|
896
897
|
verifyPeerCertByName: string | null;
|
|
897
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
898
898
|
enableSessionResumption: boolean;
|
|
899
899
|
serverName: string | null;
|
|
900
900
|
echConfigList: string | null;
|
|
@@ -1041,6 +1041,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
1041
1041
|
serverDescription: string | null;
|
|
1042
1042
|
shuffleHost: boolean;
|
|
1043
1043
|
mihomoX25519: boolean;
|
|
1044
|
+
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1044
1045
|
xrayJsonTemplate?: unknown;
|
|
1045
1046
|
};
|
|
1046
1047
|
securityOptions?: {
|
|
@@ -1048,7 +1049,6 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
1048
1049
|
fingerprint: string | null;
|
|
1049
1050
|
pinnedPeerCertSha256: string | null;
|
|
1050
1051
|
verifyPeerCertByName: string | null;
|
|
1051
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1052
1052
|
enableSessionResumption: boolean;
|
|
1053
1053
|
serverName: string | null;
|
|
1054
1054
|
echConfigList: string | null;
|
|
@@ -1197,6 +1197,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
1197
1197
|
serverDescription: string | null;
|
|
1198
1198
|
shuffleHost: boolean;
|
|
1199
1199
|
mihomoX25519: boolean;
|
|
1200
|
+
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1200
1201
|
xrayJsonTemplate?: unknown;
|
|
1201
1202
|
};
|
|
1202
1203
|
securityOptions?: {
|
|
@@ -1204,7 +1205,6 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
1204
1205
|
fingerprint: string | null;
|
|
1205
1206
|
pinnedPeerCertSha256: string | null;
|
|
1206
1207
|
verifyPeerCertByName: string | null;
|
|
1207
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1208
1208
|
enableSessionResumption: boolean;
|
|
1209
1209
|
serverName: string | null;
|
|
1210
1210
|
echConfigList: string | null;
|
|
@@ -1353,6 +1353,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
1353
1353
|
serverDescription: string | null;
|
|
1354
1354
|
shuffleHost: boolean;
|
|
1355
1355
|
mihomoX25519: boolean;
|
|
1356
|
+
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1356
1357
|
xrayJsonTemplate?: unknown;
|
|
1357
1358
|
};
|
|
1358
1359
|
securityOptions?: {
|
|
@@ -1360,7 +1361,6 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
1360
1361
|
fingerprint: string | null;
|
|
1361
1362
|
pinnedPeerCertSha256: string | null;
|
|
1362
1363
|
verifyPeerCertByName: string | null;
|
|
1363
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1364
1364
|
enableSessionResumption: boolean;
|
|
1365
1365
|
serverName: string | null;
|
|
1366
1366
|
echConfigList: string | null;
|
|
@@ -233,13 +233,6 @@ export declare const HysteriaTransportOptionsSchema: z.ZodObject<{
|
|
|
233
233
|
export declare const TlsSecurityOptionsSchema: z.ZodObject<{
|
|
234
234
|
pinnedPeerCertSha256: z.ZodNullable<z.ZodString>;
|
|
235
235
|
verifyPeerCertByName: z.ZodNullable<z.ZodString>;
|
|
236
|
-
mihomoIpVersion: z.ZodNullable<z.ZodNativeEnum<{
|
|
237
|
-
readonly DUAL: "dual";
|
|
238
|
-
readonly IPV4: "ipv4";
|
|
239
|
-
readonly IPV6: "ipv6";
|
|
240
|
-
readonly IPV4_PREFER: "ipv4-prefer";
|
|
241
|
-
readonly IPV6_PREFER: "ipv6-prefer";
|
|
242
|
-
}>>;
|
|
243
236
|
alpn: z.ZodNullable<z.ZodString>;
|
|
244
237
|
enableSessionResumption: z.ZodBoolean;
|
|
245
238
|
fingerprint: z.ZodNullable<z.ZodString>;
|
|
@@ -251,7 +244,6 @@ export declare const TlsSecurityOptionsSchema: z.ZodObject<{
|
|
|
251
244
|
fingerprint: string | null;
|
|
252
245
|
pinnedPeerCertSha256: string | null;
|
|
253
246
|
verifyPeerCertByName: string | null;
|
|
254
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
255
247
|
enableSessionResumption: boolean;
|
|
256
248
|
serverName: string | null;
|
|
257
249
|
echConfigList: string | null;
|
|
@@ -261,7 +253,6 @@ export declare const TlsSecurityOptionsSchema: z.ZodObject<{
|
|
|
261
253
|
fingerprint: string | null;
|
|
262
254
|
pinnedPeerCertSha256: string | null;
|
|
263
255
|
verifyPeerCertByName: string | null;
|
|
264
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
265
256
|
enableSessionResumption: boolean;
|
|
266
257
|
serverName: string | null;
|
|
267
258
|
echConfigList: string | null;
|
|
@@ -727,13 +718,6 @@ export declare const SecurityVariantSchema: z.ZodDiscriminatedUnion<"security",
|
|
|
727
718
|
securityOptions: z.ZodObject<{
|
|
728
719
|
pinnedPeerCertSha256: z.ZodNullable<z.ZodString>;
|
|
729
720
|
verifyPeerCertByName: z.ZodNullable<z.ZodString>;
|
|
730
|
-
mihomoIpVersion: z.ZodNullable<z.ZodNativeEnum<{
|
|
731
|
-
readonly DUAL: "dual";
|
|
732
|
-
readonly IPV4: "ipv4";
|
|
733
|
-
readonly IPV6: "ipv6";
|
|
734
|
-
readonly IPV4_PREFER: "ipv4-prefer";
|
|
735
|
-
readonly IPV6_PREFER: "ipv6-prefer";
|
|
736
|
-
}>>;
|
|
737
721
|
alpn: z.ZodNullable<z.ZodString>;
|
|
738
722
|
enableSessionResumption: z.ZodBoolean;
|
|
739
723
|
fingerprint: z.ZodNullable<z.ZodString>;
|
|
@@ -745,7 +729,6 @@ export declare const SecurityVariantSchema: z.ZodDiscriminatedUnion<"security",
|
|
|
745
729
|
fingerprint: string | null;
|
|
746
730
|
pinnedPeerCertSha256: string | null;
|
|
747
731
|
verifyPeerCertByName: string | null;
|
|
748
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
749
732
|
enableSessionResumption: boolean;
|
|
750
733
|
serverName: string | null;
|
|
751
734
|
echConfigList: string | null;
|
|
@@ -755,7 +738,6 @@ export declare const SecurityVariantSchema: z.ZodDiscriminatedUnion<"security",
|
|
|
755
738
|
fingerprint: string | null;
|
|
756
739
|
pinnedPeerCertSha256: string | null;
|
|
757
740
|
verifyPeerCertByName: string | null;
|
|
758
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
759
741
|
enableSessionResumption: boolean;
|
|
760
742
|
serverName: string | null;
|
|
761
743
|
echConfigList: string | null;
|
|
@@ -768,7 +750,6 @@ export declare const SecurityVariantSchema: z.ZodDiscriminatedUnion<"security",
|
|
|
768
750
|
fingerprint: string | null;
|
|
769
751
|
pinnedPeerCertSha256: string | null;
|
|
770
752
|
verifyPeerCertByName: string | null;
|
|
771
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
772
753
|
enableSessionResumption: boolean;
|
|
773
754
|
serverName: string | null;
|
|
774
755
|
echConfigList: string | null;
|
|
@@ -781,7 +762,6 @@ export declare const SecurityVariantSchema: z.ZodDiscriminatedUnion<"security",
|
|
|
781
762
|
fingerprint: string | null;
|
|
782
763
|
pinnedPeerCertSha256: string | null;
|
|
783
764
|
verifyPeerCertByName: string | null;
|
|
784
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
785
765
|
enableSessionResumption: boolean;
|
|
786
766
|
serverName: string | null;
|
|
787
767
|
echConfigList: string | null;
|
|
@@ -1117,13 +1097,6 @@ export declare const ResolvedProxyConfigSchema: z.ZodObject<{
|
|
|
1117
1097
|
securityOptions: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1118
1098
|
pinnedPeerCertSha256: z.ZodNullable<z.ZodString>;
|
|
1119
1099
|
verifyPeerCertByName: z.ZodNullable<z.ZodString>;
|
|
1120
|
-
mihomoIpVersion: z.ZodNullable<z.ZodNativeEnum<{
|
|
1121
|
-
readonly DUAL: "dual";
|
|
1122
|
-
readonly IPV4: "ipv4";
|
|
1123
|
-
readonly IPV6: "ipv6";
|
|
1124
|
-
readonly IPV4_PREFER: "ipv4-prefer";
|
|
1125
|
-
readonly IPV6_PREFER: "ipv6-prefer";
|
|
1126
|
-
}>>;
|
|
1127
1100
|
alpn: z.ZodNullable<z.ZodString>;
|
|
1128
1101
|
enableSessionResumption: z.ZodBoolean;
|
|
1129
1102
|
fingerprint: z.ZodNullable<z.ZodString>;
|
|
@@ -1135,7 +1108,6 @@ export declare const ResolvedProxyConfigSchema: z.ZodObject<{
|
|
|
1135
1108
|
fingerprint: string | null;
|
|
1136
1109
|
pinnedPeerCertSha256: string | null;
|
|
1137
1110
|
verifyPeerCertByName: string | null;
|
|
1138
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1139
1111
|
enableSessionResumption: boolean;
|
|
1140
1112
|
serverName: string | null;
|
|
1141
1113
|
echConfigList: string | null;
|
|
@@ -1145,7 +1117,6 @@ export declare const ResolvedProxyConfigSchema: z.ZodObject<{
|
|
|
1145
1117
|
fingerprint: string | null;
|
|
1146
1118
|
pinnedPeerCertSha256: string | null;
|
|
1147
1119
|
verifyPeerCertByName: string | null;
|
|
1148
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1149
1120
|
enableSessionResumption: boolean;
|
|
1150
1121
|
serverName: string | null;
|
|
1151
1122
|
echConfigList: string | null;
|
|
@@ -1186,17 +1157,26 @@ export declare const ResolvedProxyConfigSchema: z.ZodObject<{
|
|
|
1186
1157
|
clientOverrides: z.ZodObject<{
|
|
1187
1158
|
shuffleHost: z.ZodBoolean;
|
|
1188
1159
|
mihomoX25519: z.ZodBoolean;
|
|
1160
|
+
mihomoIpVersion: z.ZodNullable<z.ZodNativeEnum<{
|
|
1161
|
+
readonly DUAL: "dual";
|
|
1162
|
+
readonly IPV4: "ipv4";
|
|
1163
|
+
readonly IPV6: "ipv6";
|
|
1164
|
+
readonly IPV4_PREFER: "ipv4-prefer";
|
|
1165
|
+
readonly IPV6_PREFER: "ipv6-prefer";
|
|
1166
|
+
}>>;
|
|
1189
1167
|
serverDescription: z.ZodNullable<z.ZodString>;
|
|
1190
1168
|
xrayJsonTemplate: z.ZodNullable<z.ZodUnknown>;
|
|
1191
1169
|
}, "strip", z.ZodTypeAny, {
|
|
1192
1170
|
serverDescription: string | null;
|
|
1193
1171
|
shuffleHost: boolean;
|
|
1194
1172
|
mihomoX25519: boolean;
|
|
1173
|
+
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1195
1174
|
xrayJsonTemplate?: unknown;
|
|
1196
1175
|
}, {
|
|
1197
1176
|
serverDescription: string | null;
|
|
1198
1177
|
shuffleHost: boolean;
|
|
1199
1178
|
mihomoX25519: boolean;
|
|
1179
|
+
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1200
1180
|
xrayJsonTemplate?: unknown;
|
|
1201
1181
|
}>;
|
|
1202
1182
|
metadata: z.ZodObject<{
|
|
@@ -1333,6 +1313,7 @@ export declare const ResolvedProxyConfigSchema: z.ZodObject<{
|
|
|
1333
1313
|
serverDescription: string | null;
|
|
1334
1314
|
shuffleHost: boolean;
|
|
1335
1315
|
mihomoX25519: boolean;
|
|
1316
|
+
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1336
1317
|
xrayJsonTemplate?: unknown;
|
|
1337
1318
|
};
|
|
1338
1319
|
securityOptions?: {
|
|
@@ -1340,7 +1321,6 @@ export declare const ResolvedProxyConfigSchema: z.ZodObject<{
|
|
|
1340
1321
|
fingerprint: string | null;
|
|
1341
1322
|
pinnedPeerCertSha256: string | null;
|
|
1342
1323
|
verifyPeerCertByName: string | null;
|
|
1343
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1344
1324
|
enableSessionResumption: boolean;
|
|
1345
1325
|
serverName: string | null;
|
|
1346
1326
|
echConfigList: string | null;
|
|
@@ -1441,6 +1421,7 @@ export declare const ResolvedProxyConfigSchema: z.ZodObject<{
|
|
|
1441
1421
|
serverDescription: string | null;
|
|
1442
1422
|
shuffleHost: boolean;
|
|
1443
1423
|
mihomoX25519: boolean;
|
|
1424
|
+
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1444
1425
|
xrayJsonTemplate?: unknown;
|
|
1445
1426
|
};
|
|
1446
1427
|
securityOptions?: {
|
|
@@ -1448,7 +1429,6 @@ export declare const ResolvedProxyConfigSchema: z.ZodObject<{
|
|
|
1448
1429
|
fingerprint: string | null;
|
|
1449
1430
|
pinnedPeerCertSha256: string | null;
|
|
1450
1431
|
verifyPeerCertByName: string | null;
|
|
1451
|
-
mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
|
|
1452
1432
|
enableSessionResumption: boolean;
|
|
1453
1433
|
serverName: string | null;
|
|
1454
1434
|
echConfigList: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resolved-proxy-config.schema.d.ts","sourceRoot":"","sources":["../../../models/resolved-proxy-config.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;EAIrC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;EAEtC,CAAC;AAEH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;EAK3C,CAAC;AA4BH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEpC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;EAKtC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;EAKnC,CAAC;AAEH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;EAI5C,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;EAIrC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;EAIpC,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;;;EAExC,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;;;;;;;EAGzC,CAAC;AAEH,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"resolved-proxy-config.schema.d.ts","sourceRoot":"","sources":["../../../models/resolved-proxy-config.schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -78,7 +78,6 @@ exports.HysteriaTransportOptionsSchema = zod_1.z.object({
|
|
|
78
78
|
exports.TlsSecurityOptionsSchema = zod_1.z.object({
|
|
79
79
|
pinnedPeerCertSha256: zod_1.z.string().nullable(),
|
|
80
80
|
verifyPeerCertByName: zod_1.z.string().nullable(),
|
|
81
|
-
mihomoIpVersion: zod_1.z.nativeEnum(constants_1.MIHOMO_IP_VERSION).nullable(),
|
|
82
81
|
alpn: zod_1.z.string().nullable(),
|
|
83
82
|
enableSessionResumption: zod_1.z.boolean(),
|
|
84
83
|
fingerprint: zod_1.z.string().nullable(),
|
|
@@ -214,6 +213,7 @@ exports.ResolvedProxyConfigSchema = zod_1.z.object({
|
|
|
214
213
|
clientOverrides: zod_1.z.object({
|
|
215
214
|
shuffleHost: zod_1.z.boolean(),
|
|
216
215
|
mihomoX25519: zod_1.z.boolean(),
|
|
216
|
+
mihomoIpVersion: zod_1.z.nativeEnum(constants_1.MIHOMO_IP_VERSION).nullable(),
|
|
217
217
|
serverDescription: zod_1.z.string().nullable(),
|
|
218
218
|
xrayJsonTemplate: zod_1.z.nullable(zod_1.z.unknown()),
|
|
219
219
|
}),
|
|
@@ -78,7 +78,6 @@ exports.HysteriaTransportOptionsSchema = zod_1.z.object({
|
|
|
78
78
|
exports.TlsSecurityOptionsSchema = zod_1.z.object({
|
|
79
79
|
pinnedPeerCertSha256: zod_1.z.string().nullable(),
|
|
80
80
|
verifyPeerCertByName: zod_1.z.string().nullable(),
|
|
81
|
-
mihomoIpVersion: zod_1.z.nativeEnum(constants_1.MIHOMO_IP_VERSION).nullable(),
|
|
82
81
|
alpn: zod_1.z.string().nullable(),
|
|
83
82
|
enableSessionResumption: zod_1.z.boolean(),
|
|
84
83
|
fingerprint: zod_1.z.string().nullable(),
|
|
@@ -214,6 +213,7 @@ exports.ResolvedProxyConfigSchema = zod_1.z.object({
|
|
|
214
213
|
clientOverrides: zod_1.z.object({
|
|
215
214
|
shuffleHost: zod_1.z.boolean(),
|
|
216
215
|
mihomoX25519: zod_1.z.boolean(),
|
|
216
|
+
mihomoIpVersion: zod_1.z.nativeEnum(constants_1.MIHOMO_IP_VERSION).nullable(),
|
|
217
217
|
serverDescription: zod_1.z.string().nullable(),
|
|
218
218
|
xrayJsonTemplate: zod_1.z.nullable(zod_1.z.unknown()),
|
|
219
219
|
}),
|