@remnawave/backend-contract 0.0.21 → 0.0.23

Sign up to get free protection for your applications and to get access to all the features.
@@ -9,18 +9,12 @@ const models_1 = require("../../models");
9
9
  var CreateHostCommand;
10
10
  (function (CreateHostCommand) {
11
11
  CreateHostCommand.url = api_1.REST_API.HOSTS.CREATE;
12
- CreateHostCommand.RequestSchema = models_1.HostsSchema.pick({}).extend({
12
+ CreateHostCommand.RequestSchema = zod_1.z.object({
13
13
  inboundUuid: zod_1.z
14
14
  .string({
15
15
  invalid_type_error: 'Inbound UUID must be a string',
16
16
  })
17
17
  .uuid('Inbound UUID must be a valid UUID'),
18
- viewPosition: zod_1.z
19
- .number({
20
- invalid_type_error: 'View position must be an integer',
21
- })
22
- .int()
23
- .optional(),
24
18
  remark: zod_1.z
25
19
  .string({
26
20
  invalid_type_error: 'Remark must be a string',
@@ -39,8 +33,8 @@ var CreateHostCommand;
39
33
  path: zod_1.z.string().optional(),
40
34
  sni: zod_1.z.string().optional(),
41
35
  host: zod_1.z.string().optional(),
42
- alpn: zod_1.z.nativeEnum(alpn_1.ALPN).optional(),
43
- fingerprint: zod_1.z.nativeEnum(fingerprints_1.FINGERPRINTS).optional(),
36
+ alpn: zod_1.z.optional(zod_1.z.enum([alpn_1.ALPN_VALUES[0], ...alpn_1.ALPN_VALUES]).nullable()),
37
+ fingerprint: zod_1.z.optional(zod_1.z.enum([fingerprints_1.FINGERPRINTS_VALUES[0], ...fingerprints_1.FINGERPRINTS_VALUES]).nullable()),
44
38
  allowInsecure: zod_1.z.boolean().optional().default(false),
45
39
  isDisabled: zod_1.z.boolean().optional().default(false),
46
40
  });
@@ -1,24 +1,18 @@
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_VALUES } from '../../constants/hosts/alpn';
4
+ import { FINGERPRINTS_VALUES } from '../../constants/hosts/fingerprints';
5
5
  import { HostsSchema } from '../../models';
6
6
 
7
7
  export namespace CreateHostCommand {
8
8
  export const url = REST_API.HOSTS.CREATE;
9
9
 
10
- export const RequestSchema = HostsSchema.pick({}).extend({
10
+ export const RequestSchema = z.object({
11
11
  inboundUuid: z
12
12
  .string({
13
13
  invalid_type_error: 'Inbound UUID must be a string',
14
14
  })
15
15
  .uuid('Inbound UUID must be a valid UUID'),
16
- viewPosition: z
17
- .number({
18
- invalid_type_error: 'View position must be an integer',
19
- })
20
- .int()
21
- .optional(),
22
16
  remark: z
23
17
  .string({
24
18
  invalid_type_error: 'Remark must be a string',
@@ -37,8 +31,10 @@ export namespace CreateHostCommand {
37
31
  path: z.string().optional(),
38
32
  sni: z.string().optional(),
39
33
  host: z.string().optional(),
40
- alpn: z.nativeEnum(ALPN).optional(),
41
- fingerprint: z.nativeEnum(FINGERPRINTS).optional(),
34
+ alpn: z.optional(z.enum([ALPN_VALUES[0], ...ALPN_VALUES]).nullable()),
35
+ fingerprint: z.optional(
36
+ z.enum([FINGERPRINTS_VALUES[0], ...FINGERPRINTS_VALUES]).nullable(),
37
+ ),
42
38
  allowInsecure: z.boolean().optional().default(false),
43
39
  isDisabled: z.boolean().optional().default(false),
44
40
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnawave/backend-contract",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
4
4
  "description": "A contract library for Remnawave",
5
5
  "main": "index.js",
6
6
  "scripts": {