@remnawave/backend-contract 2.1.67 → 2.1.69
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/infra-billing/update-billing-node.command.d.ts +3 -3
- package/build/backend/commands/infra-billing/update-billing-node.command.js +2 -2
- package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts +7 -0
- package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.js +1 -0
- package/build/frontend/commands/infra-billing/update-billing-node.command.js +2 -2
- package/build/frontend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.js +1 -0
- package/package.json +1 -1
@@ -4,14 +4,14 @@ export declare namespace UpdateInfraBillingNodeCommand {
|
|
4
4
|
const TSQ_url: "/api/infra-billing/nodes";
|
5
5
|
const endpointDetails: import("../../constants").EndpointDetails;
|
6
6
|
const RequestSchema: z.ZodObject<{
|
7
|
-
|
7
|
+
uuids: z.ZodArray<z.ZodString, "many">;
|
8
8
|
nextBillingAt: z.ZodEffects<z.ZodString, Date, string>;
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
10
|
-
uuid: string;
|
11
10
|
nextBillingAt: Date;
|
11
|
+
uuids: string[];
|
12
12
|
}, {
|
13
|
-
uuid: string;
|
14
13
|
nextBillingAt: string;
|
14
|
+
uuids: string[];
|
15
15
|
}>;
|
16
16
|
type Request = z.infer<typeof RequestSchema>;
|
17
17
|
const ResponseSchema: z.ZodObject<{
|
@@ -9,9 +9,9 @@ var UpdateInfraBillingNodeCommand;
|
|
9
9
|
(function (UpdateInfraBillingNodeCommand) {
|
10
10
|
UpdateInfraBillingNodeCommand.url = api_1.REST_API.INFRA_BILLING.UPDATE_BILLING_NODE;
|
11
11
|
UpdateInfraBillingNodeCommand.TSQ_url = UpdateInfraBillingNodeCommand.url;
|
12
|
-
UpdateInfraBillingNodeCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.INFRA_BILLING_ROUTES.UPDATE_BILLING_NODE, 'patch', 'Update infra billing node');
|
12
|
+
UpdateInfraBillingNodeCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.INFRA_BILLING_ROUTES.UPDATE_BILLING_NODE, 'patch', 'Update infra billing node(s)');
|
13
13
|
UpdateInfraBillingNodeCommand.RequestSchema = zod_1.z.object({
|
14
|
-
|
14
|
+
uuids: zod_1.z.array(zod_1.z.string().uuid()),
|
15
15
|
nextBillingAt: zod_1.z
|
16
16
|
.string({
|
17
17
|
invalid_type_error: 'Invalid date format',
|
package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts
CHANGED
@@ -239,6 +239,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
239
239
|
shuffleHost: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
240
240
|
mihomoX25519: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
241
241
|
mldsa65Verify: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
242
|
+
encryption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
242
243
|
protocolOptions: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
243
244
|
ss: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
244
245
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
@@ -327,6 +328,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
327
328
|
} | null | undefined;
|
328
329
|
flow?: string | null | undefined;
|
329
330
|
mldsa65Verify?: string | null | undefined;
|
331
|
+
encryption?: string | null | undefined;
|
330
332
|
protocolOptions?: {
|
331
333
|
ss?: {
|
332
334
|
method?: string | null | undefined;
|
@@ -379,6 +381,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
379
381
|
} | null | undefined;
|
380
382
|
flow?: string | null | undefined;
|
381
383
|
mldsa65Verify?: string | null | undefined;
|
384
|
+
encryption?: string | null | undefined;
|
382
385
|
protocolOptions?: {
|
383
386
|
ss?: {
|
384
387
|
method?: string | null | undefined;
|
@@ -482,6 +485,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
482
485
|
} | null | undefined;
|
483
486
|
flow?: string | null | undefined;
|
484
487
|
mldsa65Verify?: string | null | undefined;
|
488
|
+
encryption?: string | null | undefined;
|
485
489
|
protocolOptions?: {
|
486
490
|
ss?: {
|
487
491
|
method?: string | null | undefined;
|
@@ -585,6 +589,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
585
589
|
} | null | undefined;
|
586
590
|
flow?: string | null | undefined;
|
587
591
|
mldsa65Verify?: string | null | undefined;
|
592
|
+
encryption?: string | null | undefined;
|
588
593
|
protocolOptions?: {
|
589
594
|
ss?: {
|
590
595
|
method?: string | null | undefined;
|
@@ -690,6 +695,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
690
695
|
} | null | undefined;
|
691
696
|
flow?: string | null | undefined;
|
692
697
|
mldsa65Verify?: string | null | undefined;
|
698
|
+
encryption?: string | null | undefined;
|
693
699
|
protocolOptions?: {
|
694
700
|
ss?: {
|
695
701
|
method?: string | null | undefined;
|
@@ -795,6 +801,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
795
801
|
} | null | undefined;
|
796
802
|
flow?: string | null | undefined;
|
797
803
|
mldsa65Verify?: string | null | undefined;
|
804
|
+
encryption?: string | null | undefined;
|
798
805
|
protocolOptions?: {
|
799
806
|
ss?: {
|
800
807
|
method?: string | null | undefined;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"get-raw-subscription-by-short-uuid.command.d.ts","sourceRoot":"","sources":["../../../../../commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,oCAAoC,CAAC;IAC3C,MAAM,GAAG,+BAA+C,CAAC;IACzD,MAAM,OAAO,QAAoB,CAAC;IAElC,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,kBAAkB;;;;;;MAM7B,CAAC;IAEH,KAAY,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAEvD,MAAM,cAAc
|
1
|
+
{"version":3,"file":"get-raw-subscription-by-short-uuid.command.d.ts","sourceRoot":"","sources":["../../../../../commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,oCAAoC,CAAC;IAC3C,MAAM,GAAG,+BAA+C,CAAC;IACzD,MAAM,OAAO,QAAoB,CAAC;IAElC,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,kBAAkB;;;;;;MAM7B,CAAC;IAEH,KAAY,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAEvD,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAkFzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.js
CHANGED
@@ -65,6 +65,7 @@ var GetRawSubscriptionByShortUuidCommand;
|
|
65
65
|
shuffleHost: zod_1.z.optional(zod_1.z.nullable(zod_1.z.boolean())),
|
66
66
|
mihomoX25519: zod_1.z.optional(zod_1.z.nullable(zod_1.z.boolean())),
|
67
67
|
mldsa65Verify: zod_1.z.optional(zod_1.z.nullable(zod_1.z.string())),
|
68
|
+
encryption: zod_1.z.optional(zod_1.z.nullable(zod_1.z.string())),
|
68
69
|
protocolOptions: zod_1.z.optional(zod_1.z.nullable(zod_1.z.object({
|
69
70
|
ss: zod_1.z.optional(zod_1.z.nullable(zod_1.z.object({
|
70
71
|
method: zod_1.z.optional(zod_1.z.nullable(zod_1.z.string())),
|
@@ -9,9 +9,9 @@ var UpdateInfraBillingNodeCommand;
|
|
9
9
|
(function (UpdateInfraBillingNodeCommand) {
|
10
10
|
UpdateInfraBillingNodeCommand.url = api_1.REST_API.INFRA_BILLING.UPDATE_BILLING_NODE;
|
11
11
|
UpdateInfraBillingNodeCommand.TSQ_url = UpdateInfraBillingNodeCommand.url;
|
12
|
-
UpdateInfraBillingNodeCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.INFRA_BILLING_ROUTES.UPDATE_BILLING_NODE, 'patch', 'Update infra billing node');
|
12
|
+
UpdateInfraBillingNodeCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.INFRA_BILLING_ROUTES.UPDATE_BILLING_NODE, 'patch', 'Update infra billing node(s)');
|
13
13
|
UpdateInfraBillingNodeCommand.RequestSchema = zod_1.z.object({
|
14
|
-
|
14
|
+
uuids: zod_1.z.array(zod_1.z.string().uuid()),
|
15
15
|
nextBillingAt: zod_1.z
|
16
16
|
.string({
|
17
17
|
invalid_type_error: 'Invalid date format',
|
package/build/frontend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.js
CHANGED
@@ -65,6 +65,7 @@ var GetRawSubscriptionByShortUuidCommand;
|
|
65
65
|
shuffleHost: zod_1.z.optional(zod_1.z.nullable(zod_1.z.boolean())),
|
66
66
|
mihomoX25519: zod_1.z.optional(zod_1.z.nullable(zod_1.z.boolean())),
|
67
67
|
mldsa65Verify: zod_1.z.optional(zod_1.z.nullable(zod_1.z.string())),
|
68
|
+
encryption: zod_1.z.optional(zod_1.z.nullable(zod_1.z.string())),
|
68
69
|
protocolOptions: zod_1.z.optional(zod_1.z.nullable(zod_1.z.object({
|
69
70
|
ss: zod_1.z.optional(zod_1.z.nullable(zod_1.z.object({
|
70
71
|
method: zod_1.z.optional(zod_1.z.nullable(zod_1.z.string())),
|