@remnawave/backend-contract 0.0.19 → 0.0.21
Sign up to get free protection for your applications and to get access to all the features.
@@ -40,8 +40,8 @@ var UpdateHostCommand;
|
|
40
40
|
path: zod_1.z.optional(zod_1.z.string()),
|
41
41
|
sni: zod_1.z.optional(zod_1.z.string()),
|
42
42
|
host: zod_1.z.optional(zod_1.z.string()),
|
43
|
-
alpn: zod_1.z.optional(zod_1.z.
|
44
|
-
fingerprint: zod_1.z.optional(zod_1.z.
|
43
|
+
alpn: zod_1.z.optional(zod_1.z.enum([alpn_1.ALPN_VALUES[0], ...alpn_1.ALPN_VALUES]).nullable()),
|
44
|
+
fingerprint: zod_1.z.optional(zod_1.z.enum([fingerprints_1.FINGERPRINTS_VALUES[0], ...fingerprints_1.FINGERPRINTS_VALUES]).nullable()),
|
45
45
|
allowInsecure: zod_1.z.optional(zod_1.z.boolean()),
|
46
46
|
isDisabled: zod_1.z.optional(zod_1.z.boolean()),
|
47
47
|
});
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { z } from 'zod';
|
2
2
|
import { REST_API } from '../../api';
|
3
|
-
import { ALPN } from '../../constants/hosts/alpn';
|
4
|
-
import { FINGERPRINTS } from '../../constants/hosts/fingerprints';
|
3
|
+
import { ALPN, ALPN_VALUES } from '../../constants/hosts/alpn';
|
4
|
+
import { FINGERPRINTS, FINGERPRINTS_VALUES } from '../../constants/hosts/fingerprints';
|
5
5
|
import { HostsSchema } from '../../models';
|
6
6
|
|
7
7
|
export namespace UpdateHostCommand {
|
@@ -38,8 +38,10 @@ export namespace UpdateHostCommand {
|
|
38
38
|
path: z.optional(z.string()),
|
39
39
|
sni: z.optional(z.string()),
|
40
40
|
host: z.optional(z.string()),
|
41
|
-
alpn: z.optional(z.
|
42
|
-
fingerprint: z.optional(
|
41
|
+
alpn: z.optional(z.enum([ALPN_VALUES[0], ...ALPN_VALUES]).nullable()),
|
42
|
+
fingerprint: z.optional(
|
43
|
+
z.enum([FINGERPRINTS_VALUES[0], ...FINGERPRINTS_VALUES]).nullable(),
|
44
|
+
),
|
43
45
|
allowInsecure: z.optional(z.boolean()),
|
44
46
|
isDisabled: z.optional(z.boolean()),
|
45
47
|
});
|