@remnawave/backend-contract 2.8.1 → 2.8.2
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 +9 -9
- package/build/backend/models/resolved-proxy-config.schema.d.ts +13 -13
- 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
|
@@ -385,15 +385,15 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
385
385
|
multiMode: boolean;
|
|
386
386
|
}>, z.ZodObject<{
|
|
387
387
|
clientMtu: z.ZodNumber;
|
|
388
|
-
|
|
388
|
+
clientTti: z.ZodNumber;
|
|
389
389
|
congestion: z.ZodBoolean;
|
|
390
390
|
}, "strip", z.ZodTypeAny, {
|
|
391
391
|
clientMtu: number;
|
|
392
|
-
|
|
392
|
+
clientTti: number;
|
|
393
393
|
congestion: boolean;
|
|
394
394
|
}, {
|
|
395
395
|
clientMtu: number;
|
|
396
|
-
|
|
396
|
+
clientTti: number;
|
|
397
397
|
congestion: boolean;
|
|
398
398
|
}>, z.ZodObject<{
|
|
399
399
|
version: z.ZodNumber;
|
|
@@ -598,7 +598,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
598
598
|
multiMode: boolean;
|
|
599
599
|
} | {
|
|
600
600
|
clientMtu: number;
|
|
601
|
-
|
|
601
|
+
clientTti: number;
|
|
602
602
|
congestion: boolean;
|
|
603
603
|
} | {
|
|
604
604
|
auth: string;
|
|
@@ -704,7 +704,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
704
704
|
multiMode: boolean;
|
|
705
705
|
} | {
|
|
706
706
|
clientMtu: number;
|
|
707
|
-
|
|
707
|
+
clientTti: number;
|
|
708
708
|
congestion: boolean;
|
|
709
709
|
} | {
|
|
710
710
|
auth: string;
|
|
@@ -856,7 +856,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
856
856
|
multiMode: boolean;
|
|
857
857
|
} | {
|
|
858
858
|
clientMtu: number;
|
|
859
|
-
|
|
859
|
+
clientTti: number;
|
|
860
860
|
congestion: boolean;
|
|
861
861
|
} | {
|
|
862
862
|
auth: string;
|
|
@@ -1008,7 +1008,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
1008
1008
|
multiMode: boolean;
|
|
1009
1009
|
} | {
|
|
1010
1010
|
clientMtu: number;
|
|
1011
|
-
|
|
1011
|
+
clientTti: number;
|
|
1012
1012
|
congestion: boolean;
|
|
1013
1013
|
} | {
|
|
1014
1014
|
auth: string;
|
|
@@ -1162,7 +1162,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
1162
1162
|
multiMode: boolean;
|
|
1163
1163
|
} | {
|
|
1164
1164
|
clientMtu: number;
|
|
1165
|
-
|
|
1165
|
+
clientTti: number;
|
|
1166
1166
|
congestion: boolean;
|
|
1167
1167
|
} | {
|
|
1168
1168
|
auth: string;
|
|
@@ -1316,7 +1316,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
1316
1316
|
multiMode: boolean;
|
|
1317
1317
|
} | {
|
|
1318
1318
|
clientMtu: number;
|
|
1319
|
-
|
|
1319
|
+
clientTti: number;
|
|
1320
1320
|
congestion: boolean;
|
|
1321
1321
|
} | {
|
|
1322
1322
|
auth: string;
|
|
@@ -202,15 +202,15 @@ export declare const GrpcTransportOptionsSchema: z.ZodObject<{
|
|
|
202
202
|
}>;
|
|
203
203
|
export declare const KcpTransportOptionsSchema: z.ZodObject<{
|
|
204
204
|
clientMtu: z.ZodNumber;
|
|
205
|
-
|
|
205
|
+
clientTti: z.ZodNumber;
|
|
206
206
|
congestion: z.ZodBoolean;
|
|
207
207
|
}, "strip", z.ZodTypeAny, {
|
|
208
208
|
clientMtu: number;
|
|
209
|
-
|
|
209
|
+
clientTti: number;
|
|
210
210
|
congestion: boolean;
|
|
211
211
|
}, {
|
|
212
212
|
clientMtu: number;
|
|
213
|
-
|
|
213
|
+
clientTti: number;
|
|
214
214
|
congestion: boolean;
|
|
215
215
|
}>;
|
|
216
216
|
export declare const HysteriaProtocolOptionsSchema: z.ZodObject<{
|
|
@@ -660,29 +660,29 @@ export declare const TransportVariantSchema: z.ZodDiscriminatedUnion<"transport"
|
|
|
660
660
|
transport: z.ZodLiteral<"kcp">;
|
|
661
661
|
transportOptions: z.ZodObject<{
|
|
662
662
|
clientMtu: z.ZodNumber;
|
|
663
|
-
|
|
663
|
+
clientTti: z.ZodNumber;
|
|
664
664
|
congestion: z.ZodBoolean;
|
|
665
665
|
}, "strip", z.ZodTypeAny, {
|
|
666
666
|
clientMtu: number;
|
|
667
|
-
|
|
667
|
+
clientTti: number;
|
|
668
668
|
congestion: boolean;
|
|
669
669
|
}, {
|
|
670
670
|
clientMtu: number;
|
|
671
|
-
|
|
671
|
+
clientTti: number;
|
|
672
672
|
congestion: boolean;
|
|
673
673
|
}>;
|
|
674
674
|
}, "strip", z.ZodTypeAny, {
|
|
675
675
|
transport: "kcp";
|
|
676
676
|
transportOptions: {
|
|
677
677
|
clientMtu: number;
|
|
678
|
-
|
|
678
|
+
clientTti: number;
|
|
679
679
|
congestion: boolean;
|
|
680
680
|
};
|
|
681
681
|
}, {
|
|
682
682
|
transport: "kcp";
|
|
683
683
|
transportOptions: {
|
|
684
684
|
clientMtu: number;
|
|
685
|
-
|
|
685
|
+
clientTti: number;
|
|
686
686
|
congestion: boolean;
|
|
687
687
|
};
|
|
688
688
|
}>, z.ZodObject<{
|
|
@@ -1065,15 +1065,15 @@ export declare const ResolvedProxyConfigSchema: z.ZodObject<{
|
|
|
1065
1065
|
multiMode: boolean;
|
|
1066
1066
|
}>, z.ZodObject<{
|
|
1067
1067
|
clientMtu: z.ZodNumber;
|
|
1068
|
-
|
|
1068
|
+
clientTti: z.ZodNumber;
|
|
1069
1069
|
congestion: z.ZodBoolean;
|
|
1070
1070
|
}, "strip", z.ZodTypeAny, {
|
|
1071
1071
|
clientMtu: number;
|
|
1072
|
-
|
|
1072
|
+
clientTti: number;
|
|
1073
1073
|
congestion: boolean;
|
|
1074
1074
|
}, {
|
|
1075
1075
|
clientMtu: number;
|
|
1076
|
-
|
|
1076
|
+
clientTti: number;
|
|
1077
1077
|
congestion: boolean;
|
|
1078
1078
|
}>, z.ZodObject<{
|
|
1079
1079
|
version: z.ZodNumber;
|
|
@@ -1278,7 +1278,7 @@ export declare const ResolvedProxyConfigSchema: z.ZodObject<{
|
|
|
1278
1278
|
multiMode: boolean;
|
|
1279
1279
|
} | {
|
|
1280
1280
|
clientMtu: number;
|
|
1281
|
-
|
|
1281
|
+
clientTti: number;
|
|
1282
1282
|
congestion: boolean;
|
|
1283
1283
|
} | {
|
|
1284
1284
|
auth: string;
|
|
@@ -1384,7 +1384,7 @@ export declare const ResolvedProxyConfigSchema: z.ZodObject<{
|
|
|
1384
1384
|
multiMode: boolean;
|
|
1385
1385
|
} | {
|
|
1386
1386
|
clientMtu: number;
|
|
1387
|
-
|
|
1387
|
+
clientTti: number;
|
|
1388
1388
|
congestion: boolean;
|
|
1389
1389
|
} | {
|
|
1390
1390
|
auth: string;
|
|
@@ -65,7 +65,7 @@ exports.GrpcTransportOptionsSchema = zod_1.z.object({
|
|
|
65
65
|
});
|
|
66
66
|
exports.KcpTransportOptionsSchema = zod_1.z.object({
|
|
67
67
|
clientMtu: zod_1.z.number().int(),
|
|
68
|
-
|
|
68
|
+
clientTti: zod_1.z.number().int(),
|
|
69
69
|
congestion: zod_1.z.boolean(),
|
|
70
70
|
});
|
|
71
71
|
exports.HysteriaProtocolOptionsSchema = zod_1.z.object({
|
|
@@ -65,7 +65,7 @@ exports.GrpcTransportOptionsSchema = zod_1.z.object({
|
|
|
65
65
|
});
|
|
66
66
|
exports.KcpTransportOptionsSchema = zod_1.z.object({
|
|
67
67
|
clientMtu: zod_1.z.number().int(),
|
|
68
|
-
|
|
68
|
+
clientTti: zod_1.z.number().int(),
|
|
69
69
|
congestion: zod_1.z.boolean(),
|
|
70
70
|
});
|
|
71
71
|
exports.HysteriaProtocolOptionsSchema = zod_1.z.object({
|