@remnawave/backend-contract 0.3.23 → 0.3.25
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/subscription-settings/get-subscription-settings.command.d.ts +5 -0
- package/build/backend/commands/subscription-settings/get-subscription-settings.command.d.ts.map +1 -1
- package/build/backend/commands/subscription-settings/update-subscription-settings.command.d.ts +8 -0
- package/build/backend/commands/subscription-settings/update-subscription-settings.command.d.ts.map +1 -1
- package/build/backend/commands/subscription-settings/update-subscription-settings.command.js +1 -0
- package/build/backend/models/subscription-settings.schema.d.ts +3 -0
- package/build/backend/models/subscription-settings.schema.d.ts.map +1 -1
- package/build/backend/models/subscription-settings.schema.js +1 -0
- package/build/frontend/commands/subscription-settings/update-subscription-settings.command.js +1 -0
- package/build/frontend/models/subscription-settings.schema.js +1 -0
- package/package.json +1 -1
@@ -10,6 +10,7 @@ export declare namespace GetSubscriptionSettingsCommand {
|
|
10
10
|
profileUpdateInterval: z.ZodNumber;
|
11
11
|
isProfileWebpageUrlEnabled: z.ZodBoolean;
|
12
12
|
serveJsonAtBaseSubscription: z.ZodBoolean;
|
13
|
+
addUsernameToBaseSubscription: z.ZodBoolean;
|
13
14
|
happAnnounce: z.ZodNullable<z.ZodString>;
|
14
15
|
happRouting: z.ZodNullable<z.ZodString>;
|
15
16
|
expiredUsersRemarks: z.ZodArray<z.ZodString, "many">;
|
@@ -26,6 +27,7 @@ export declare namespace GetSubscriptionSettingsCommand {
|
|
26
27
|
profileUpdateInterval: number;
|
27
28
|
isProfileWebpageUrlEnabled: boolean;
|
28
29
|
serveJsonAtBaseSubscription: boolean;
|
30
|
+
addUsernameToBaseSubscription: boolean;
|
29
31
|
happAnnounce: string | null;
|
30
32
|
happRouting: string | null;
|
31
33
|
expiredUsersRemarks: string[];
|
@@ -40,6 +42,7 @@ export declare namespace GetSubscriptionSettingsCommand {
|
|
40
42
|
profileUpdateInterval: number;
|
41
43
|
isProfileWebpageUrlEnabled: boolean;
|
42
44
|
serveJsonAtBaseSubscription: boolean;
|
45
|
+
addUsernameToBaseSubscription: boolean;
|
43
46
|
happAnnounce: string | null;
|
44
47
|
happRouting: string | null;
|
45
48
|
expiredUsersRemarks: string[];
|
@@ -56,6 +59,7 @@ export declare namespace GetSubscriptionSettingsCommand {
|
|
56
59
|
profileUpdateInterval: number;
|
57
60
|
isProfileWebpageUrlEnabled: boolean;
|
58
61
|
serveJsonAtBaseSubscription: boolean;
|
62
|
+
addUsernameToBaseSubscription: boolean;
|
59
63
|
happAnnounce: string | null;
|
60
64
|
happRouting: string | null;
|
61
65
|
expiredUsersRemarks: string[];
|
@@ -72,6 +76,7 @@ export declare namespace GetSubscriptionSettingsCommand {
|
|
72
76
|
profileUpdateInterval: number;
|
73
77
|
isProfileWebpageUrlEnabled: boolean;
|
74
78
|
serveJsonAtBaseSubscription: boolean;
|
79
|
+
addUsernameToBaseSubscription: boolean;
|
75
80
|
happAnnounce: string | null;
|
76
81
|
happRouting: string | null;
|
77
82
|
expiredUsersRemarks: string[];
|
package/build/backend/commands/subscription-settings/get-subscription-settings.command.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"get-subscription-settings.command.d.ts","sourceRoot":"","sources":["../../../../commands/subscription-settings/get-subscription-settings.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,8BAA8B,CAAC;IACrC,MAAM,GAAG,kCAA8C,CAAC;IACxD,MAAM,OAAO,kCAAM,CAAC;IAEpB,MAAM,cAAc
|
1
|
+
{"version":3,"file":"get-subscription-settings.command.d.ts","sourceRoot":"","sources":["../../../../commands/subscription-settings/get-subscription-settings.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,8BAA8B,CAAC;IACrC,MAAM,GAAG,kCAA8C,CAAC;IACxD,MAAM,OAAO,kCAAM,CAAC;IAEpB,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
package/build/backend/commands/subscription-settings/update-subscription-settings.command.d.ts
CHANGED
@@ -9,6 +9,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
9
9
|
profileUpdateInterval: z.ZodOptional<z.ZodNumber>;
|
10
10
|
isProfileWebpageUrlEnabled: z.ZodOptional<z.ZodBoolean>;
|
11
11
|
serveJsonAtBaseSubscription: z.ZodOptional<z.ZodBoolean>;
|
12
|
+
addUsernameToBaseSubscription: z.ZodOptional<z.ZodBoolean>;
|
12
13
|
happAnnounce: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13
14
|
happRouting: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14
15
|
expiredUsersRemarks: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
@@ -21,6 +22,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
21
22
|
profileUpdateInterval?: number | undefined;
|
22
23
|
isProfileWebpageUrlEnabled?: boolean | undefined;
|
23
24
|
serveJsonAtBaseSubscription?: boolean | undefined;
|
25
|
+
addUsernameToBaseSubscription?: boolean | undefined;
|
24
26
|
happAnnounce?: string | null | undefined;
|
25
27
|
happRouting?: string | null | undefined;
|
26
28
|
expiredUsersRemarks?: string[] | undefined;
|
@@ -33,6 +35,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
33
35
|
profileUpdateInterval?: number | undefined;
|
34
36
|
isProfileWebpageUrlEnabled?: boolean | undefined;
|
35
37
|
serveJsonAtBaseSubscription?: boolean | undefined;
|
38
|
+
addUsernameToBaseSubscription?: boolean | undefined;
|
36
39
|
happAnnounce?: string | null | undefined;
|
37
40
|
happRouting?: string | null | undefined;
|
38
41
|
expiredUsersRemarks?: string[] | undefined;
|
@@ -48,6 +51,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
48
51
|
profileUpdateInterval: z.ZodNumber;
|
49
52
|
isProfileWebpageUrlEnabled: z.ZodBoolean;
|
50
53
|
serveJsonAtBaseSubscription: z.ZodBoolean;
|
54
|
+
addUsernameToBaseSubscription: z.ZodBoolean;
|
51
55
|
happAnnounce: z.ZodNullable<z.ZodString>;
|
52
56
|
happRouting: z.ZodNullable<z.ZodString>;
|
53
57
|
expiredUsersRemarks: z.ZodArray<z.ZodString, "many">;
|
@@ -64,6 +68,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
64
68
|
profileUpdateInterval: number;
|
65
69
|
isProfileWebpageUrlEnabled: boolean;
|
66
70
|
serveJsonAtBaseSubscription: boolean;
|
71
|
+
addUsernameToBaseSubscription: boolean;
|
67
72
|
happAnnounce: string | null;
|
68
73
|
happRouting: string | null;
|
69
74
|
expiredUsersRemarks: string[];
|
@@ -78,6 +83,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
78
83
|
profileUpdateInterval: number;
|
79
84
|
isProfileWebpageUrlEnabled: boolean;
|
80
85
|
serveJsonAtBaseSubscription: boolean;
|
86
|
+
addUsernameToBaseSubscription: boolean;
|
81
87
|
happAnnounce: string | null;
|
82
88
|
happRouting: string | null;
|
83
89
|
expiredUsersRemarks: string[];
|
@@ -94,6 +100,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
94
100
|
profileUpdateInterval: number;
|
95
101
|
isProfileWebpageUrlEnabled: boolean;
|
96
102
|
serveJsonAtBaseSubscription: boolean;
|
103
|
+
addUsernameToBaseSubscription: boolean;
|
97
104
|
happAnnounce: string | null;
|
98
105
|
happRouting: string | null;
|
99
106
|
expiredUsersRemarks: string[];
|
@@ -110,6 +117,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
110
117
|
profileUpdateInterval: number;
|
111
118
|
isProfileWebpageUrlEnabled: boolean;
|
112
119
|
serveJsonAtBaseSubscription: boolean;
|
120
|
+
addUsernameToBaseSubscription: boolean;
|
113
121
|
happAnnounce: string | null;
|
114
122
|
happRouting: string | null;
|
115
123
|
expiredUsersRemarks: string[];
|
package/build/backend/commands/subscription-settings/update-subscription-settings.command.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"update-subscription-settings.command.d.ts","sourceRoot":"","sources":["../../../../commands/subscription-settings/update-subscription-settings.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iCAAiC,CAAC;IACxC,MAAM,GAAG,qCAAiD,CAAC;IAC3D,MAAM,OAAO,qCAAM,CAAC;IAEpB,MAAM,aAAa
|
1
|
+
{"version":3,"file":"update-subscription-settings.command.d.ts","sourceRoot":"","sources":["../../../../commands/subscription-settings/update-subscription-settings.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iCAAiC,CAAC;IACxC,MAAM,GAAG,qCAAiD,CAAC;IAC3D,MAAM,OAAO,qCAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAqBxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
package/build/backend/commands/subscription-settings/update-subscription-settings.command.js
CHANGED
@@ -15,6 +15,7 @@ var UpdateSubscriptionSettingsCommand;
|
|
15
15
|
profileUpdateInterval: zod_1.z.optional(zod_1.z.number().int()),
|
16
16
|
isProfileWebpageUrlEnabled: zod_1.z.optional(zod_1.z.boolean()),
|
17
17
|
serveJsonAtBaseSubscription: zod_1.z.optional(zod_1.z.boolean()),
|
18
|
+
addUsernameToBaseSubscription: zod_1.z.optional(zod_1.z.boolean()),
|
18
19
|
happAnnounce: zod_1.z.optional(zod_1.z
|
19
20
|
.string()
|
20
21
|
.max(200, { message: 'Announce must be less than 200 characters' })
|
@@ -6,6 +6,7 @@ export declare const SubscriptionSettingsSchema: z.ZodObject<{
|
|
6
6
|
profileUpdateInterval: z.ZodNumber;
|
7
7
|
isProfileWebpageUrlEnabled: z.ZodBoolean;
|
8
8
|
serveJsonAtBaseSubscription: z.ZodBoolean;
|
9
|
+
addUsernameToBaseSubscription: z.ZodBoolean;
|
9
10
|
happAnnounce: z.ZodNullable<z.ZodString>;
|
10
11
|
happRouting: z.ZodNullable<z.ZodString>;
|
11
12
|
expiredUsersRemarks: z.ZodArray<z.ZodString, "many">;
|
@@ -22,6 +23,7 @@ export declare const SubscriptionSettingsSchema: z.ZodObject<{
|
|
22
23
|
profileUpdateInterval: number;
|
23
24
|
isProfileWebpageUrlEnabled: boolean;
|
24
25
|
serveJsonAtBaseSubscription: boolean;
|
26
|
+
addUsernameToBaseSubscription: boolean;
|
25
27
|
happAnnounce: string | null;
|
26
28
|
happRouting: string | null;
|
27
29
|
expiredUsersRemarks: string[];
|
@@ -36,6 +38,7 @@ export declare const SubscriptionSettingsSchema: z.ZodObject<{
|
|
36
38
|
profileUpdateInterval: number;
|
37
39
|
isProfileWebpageUrlEnabled: boolean;
|
38
40
|
serveJsonAtBaseSubscription: boolean;
|
41
|
+
addUsernameToBaseSubscription: boolean;
|
39
42
|
happAnnounce: string | null;
|
40
43
|
happRouting: string | null;
|
41
44
|
expiredUsersRemarks: string[];
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"subscription-settings.schema.d.ts","sourceRoot":"","sources":["../../../models/subscription-settings.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,0BAA0B
|
1
|
+
{"version":3,"file":"subscription-settings.schema.d.ts","sourceRoot":"","sources":["../../../models/subscription-settings.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6BrC,CAAC"}
|
@@ -12,6 +12,7 @@ exports.SubscriptionSettingsSchema = zod_1.z.object({
|
|
12
12
|
.min(1, 'Profile update interval must be greater than 0'),
|
13
13
|
isProfileWebpageUrlEnabled: zod_1.z.boolean(),
|
14
14
|
serveJsonAtBaseSubscription: zod_1.z.boolean(),
|
15
|
+
addUsernameToBaseSubscription: zod_1.z.boolean(),
|
15
16
|
happAnnounce: zod_1.z.string().nullable(),
|
16
17
|
happRouting: zod_1.z.string().nullable(),
|
17
18
|
expiredUsersRemarks: zod_1.z.array(zod_1.z.string()),
|
package/build/frontend/commands/subscription-settings/update-subscription-settings.command.js
CHANGED
@@ -15,6 +15,7 @@ var UpdateSubscriptionSettingsCommand;
|
|
15
15
|
profileUpdateInterval: zod_1.z.optional(zod_1.z.number().int()),
|
16
16
|
isProfileWebpageUrlEnabled: zod_1.z.optional(zod_1.z.boolean()),
|
17
17
|
serveJsonAtBaseSubscription: zod_1.z.optional(zod_1.z.boolean()),
|
18
|
+
addUsernameToBaseSubscription: zod_1.z.optional(zod_1.z.boolean()),
|
18
19
|
happAnnounce: zod_1.z.optional(zod_1.z
|
19
20
|
.string()
|
20
21
|
.max(200, { message: 'Announce must be less than 200 characters' })
|
@@ -12,6 +12,7 @@ exports.SubscriptionSettingsSchema = zod_1.z.object({
|
|
12
12
|
.min(1, 'Profile update interval must be greater than 0'),
|
13
13
|
isProfileWebpageUrlEnabled: zod_1.z.boolean(),
|
14
14
|
serveJsonAtBaseSubscription: zod_1.z.boolean(),
|
15
|
+
addUsernameToBaseSubscription: zod_1.z.boolean(),
|
15
16
|
happAnnounce: zod_1.z.string().nullable(),
|
16
17
|
happRouting: zod_1.z.string().nullable(),
|
17
18
|
expiredUsersRemarks: zod_1.z.array(zod_1.z.string()),
|