Skip to content

Commit dc92634

Browse files
authored
chore: release v2.1.18
Merge pull request #106 from remnawave:dev
2 parents 3d1ec10 + 1062a6c commit dc92634

36 files changed

+922
-160
lines changed

libs/contract/commands/hosts/create.command.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export namespace CreateHostCommand {
7676
vlessRouteId: z.optional(z.number().int().min(0).max(65535).nullable()),
7777
shuffleHost: z.optional(z.boolean().default(false)),
7878
mihomoX25519: z.optional(z.boolean().default(false)),
79+
nodes: z.optional(z.array(z.string().uuid())),
7980
});
8081

8182
export type Request = z.infer<typeof RequestSchema>;

libs/contract/commands/hosts/update.command.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export namespace UpdateHostCommand {
8080
allowInsecure: z.optional(z.boolean()),
8181
shuffleHost: z.optional(z.boolean()),
8282
mihomoX25519: z.optional(z.boolean()),
83+
nodes: z.optional(z.array(z.string().uuid())),
8384
});
8485
export type Request = z.infer<typeof RequestSchema>;
8586

libs/contract/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ export namespace GetRawSubscriptionByShortUuidCommand {
7979
allowInsecure: z.optional(z.nullable(z.boolean())),
8080
shuffleHost: z.optional(z.nullable(z.boolean())),
8181
mihomoX25519: z.optional(z.nullable(z.boolean())),
82+
mldsa65Verify: z.optional(z.nullable(z.string())),
83+
encryption: z.optional(z.nullable(z.string())),
8284
protocolOptions: z.optional(
8385
z.nullable(
8486
z.object({

libs/contract/models/hosts.schema.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,6 @@ export const HostsSchema = z.object({
3232
allowInsecure: z.boolean().default(false),
3333
shuffleHost: z.boolean(),
3434
mihomoX25519: z.boolean(),
35+
36+
nodes: z.array(z.string().uuid()),
3537
});

libs/contract/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remnawave/backend-contract",
3-
"version": "2.1.64",
3+
"version": "2.1.68",
44
"public": true,
55
"license": "AGPL-3.0-only",
66
"description": "A contract library for Remnawave Backend. It can be used in backend and frontend.",

0 commit comments

Comments
 (0)