@remnawave/backend-contract 0.3.65 → 0.3.67
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 +7 -2
- package/build/backend/commands/subscription-settings/update-subscription-settings.command.d.ts.map +1 -1
- 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/models/subscription-settings.schema.js +1 -0
- package/package.json +1 -1
@@ -11,6 +11,7 @@ export declare namespace GetSubscriptionSettingsCommand {
|
|
11
11
|
isProfileWebpageUrlEnabled: z.ZodBoolean;
|
12
12
|
serveJsonAtBaseSubscription: z.ZodBoolean;
|
13
13
|
addUsernameToBaseSubscription: z.ZodBoolean;
|
14
|
+
isShowCustomRemarks: z.ZodBoolean;
|
14
15
|
happAnnounce: z.ZodNullable<z.ZodString>;
|
15
16
|
happRouting: z.ZodNullable<z.ZodString>;
|
16
17
|
expiredUsersRemarks: z.ZodArray<z.ZodString, "many">;
|
@@ -28,6 +29,7 @@ export declare namespace GetSubscriptionSettingsCommand {
|
|
28
29
|
isProfileWebpageUrlEnabled: boolean;
|
29
30
|
serveJsonAtBaseSubscription: boolean;
|
30
31
|
addUsernameToBaseSubscription: boolean;
|
32
|
+
isShowCustomRemarks: boolean;
|
31
33
|
happAnnounce: string | null;
|
32
34
|
happRouting: string | null;
|
33
35
|
expiredUsersRemarks: string[];
|
@@ -43,6 +45,7 @@ export declare namespace GetSubscriptionSettingsCommand {
|
|
43
45
|
isProfileWebpageUrlEnabled: boolean;
|
44
46
|
serveJsonAtBaseSubscription: boolean;
|
45
47
|
addUsernameToBaseSubscription: boolean;
|
48
|
+
isShowCustomRemarks: boolean;
|
46
49
|
happAnnounce: string | null;
|
47
50
|
happRouting: string | null;
|
48
51
|
expiredUsersRemarks: string[];
|
@@ -60,6 +63,7 @@ export declare namespace GetSubscriptionSettingsCommand {
|
|
60
63
|
isProfileWebpageUrlEnabled: boolean;
|
61
64
|
serveJsonAtBaseSubscription: boolean;
|
62
65
|
addUsernameToBaseSubscription: boolean;
|
66
|
+
isShowCustomRemarks: boolean;
|
63
67
|
happAnnounce: string | null;
|
64
68
|
happRouting: string | null;
|
65
69
|
expiredUsersRemarks: string[];
|
@@ -77,6 +81,7 @@ export declare namespace GetSubscriptionSettingsCommand {
|
|
77
81
|
isProfileWebpageUrlEnabled: boolean;
|
78
82
|
serveJsonAtBaseSubscription: boolean;
|
79
83
|
addUsernameToBaseSubscription: boolean;
|
84
|
+
isShowCustomRemarks: boolean;
|
80
85
|
happAnnounce: string | null;
|
81
86
|
happRouting: string | null;
|
82
87
|
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
@@ -24,12 +24,12 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
24
24
|
isProfileWebpageUrlEnabled?: boolean | undefined;
|
25
25
|
serveJsonAtBaseSubscription?: boolean | undefined;
|
26
26
|
addUsernameToBaseSubscription?: boolean | undefined;
|
27
|
+
isShowCustomRemarks?: boolean | undefined;
|
27
28
|
happAnnounce?: string | null | undefined;
|
28
29
|
happRouting?: string | null | undefined;
|
29
30
|
expiredUsersRemarks?: string[] | undefined;
|
30
31
|
limitedUsersRemarks?: string[] | undefined;
|
31
32
|
disabledUsersRemarks?: string[] | undefined;
|
32
|
-
isShowCustomRemarks?: boolean | undefined;
|
33
33
|
}, {
|
34
34
|
uuid: string;
|
35
35
|
profileTitle?: string | undefined;
|
@@ -38,12 +38,12 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
38
38
|
isProfileWebpageUrlEnabled?: boolean | undefined;
|
39
39
|
serveJsonAtBaseSubscription?: boolean | undefined;
|
40
40
|
addUsernameToBaseSubscription?: boolean | undefined;
|
41
|
+
isShowCustomRemarks?: boolean | undefined;
|
41
42
|
happAnnounce?: string | null | undefined;
|
42
43
|
happRouting?: string | null | undefined;
|
43
44
|
expiredUsersRemarks?: string[] | undefined;
|
44
45
|
limitedUsersRemarks?: string[] | undefined;
|
45
46
|
disabledUsersRemarks?: string[] | undefined;
|
46
|
-
isShowCustomRemarks?: boolean | undefined;
|
47
47
|
}>;
|
48
48
|
type Request = z.infer<typeof RequestSchema>;
|
49
49
|
const ResponseSchema: z.ZodObject<{
|
@@ -55,6 +55,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
55
55
|
isProfileWebpageUrlEnabled: z.ZodBoolean;
|
56
56
|
serveJsonAtBaseSubscription: z.ZodBoolean;
|
57
57
|
addUsernameToBaseSubscription: z.ZodBoolean;
|
58
|
+
isShowCustomRemarks: z.ZodBoolean;
|
58
59
|
happAnnounce: z.ZodNullable<z.ZodString>;
|
59
60
|
happRouting: z.ZodNullable<z.ZodString>;
|
60
61
|
expiredUsersRemarks: z.ZodArray<z.ZodString, "many">;
|
@@ -72,6 +73,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
72
73
|
isProfileWebpageUrlEnabled: boolean;
|
73
74
|
serveJsonAtBaseSubscription: boolean;
|
74
75
|
addUsernameToBaseSubscription: boolean;
|
76
|
+
isShowCustomRemarks: boolean;
|
75
77
|
happAnnounce: string | null;
|
76
78
|
happRouting: string | null;
|
77
79
|
expiredUsersRemarks: string[];
|
@@ -87,6 +89,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
87
89
|
isProfileWebpageUrlEnabled: boolean;
|
88
90
|
serveJsonAtBaseSubscription: boolean;
|
89
91
|
addUsernameToBaseSubscription: boolean;
|
92
|
+
isShowCustomRemarks: boolean;
|
90
93
|
happAnnounce: string | null;
|
91
94
|
happRouting: string | null;
|
92
95
|
expiredUsersRemarks: string[];
|
@@ -104,6 +107,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
104
107
|
isProfileWebpageUrlEnabled: boolean;
|
105
108
|
serveJsonAtBaseSubscription: boolean;
|
106
109
|
addUsernameToBaseSubscription: boolean;
|
110
|
+
isShowCustomRemarks: boolean;
|
107
111
|
happAnnounce: string | null;
|
108
112
|
happRouting: string | null;
|
109
113
|
expiredUsersRemarks: string[];
|
@@ -121,6 +125,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
121
125
|
isProfileWebpageUrlEnabled: boolean;
|
122
126
|
serveJsonAtBaseSubscription: boolean;
|
123
127
|
addUsernameToBaseSubscription: boolean;
|
128
|
+
isShowCustomRemarks: boolean;
|
124
129
|
happAnnounce: string | null;
|
125
130
|
happRouting: string | null;
|
126
131
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAsBxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAsBxB,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"}
|
@@ -7,6 +7,7 @@ export declare const SubscriptionSettingsSchema: z.ZodObject<{
|
|
7
7
|
isProfileWebpageUrlEnabled: z.ZodBoolean;
|
8
8
|
serveJsonAtBaseSubscription: z.ZodBoolean;
|
9
9
|
addUsernameToBaseSubscription: z.ZodBoolean;
|
10
|
+
isShowCustomRemarks: z.ZodBoolean;
|
10
11
|
happAnnounce: z.ZodNullable<z.ZodString>;
|
11
12
|
happRouting: z.ZodNullable<z.ZodString>;
|
12
13
|
expiredUsersRemarks: z.ZodArray<z.ZodString, "many">;
|
@@ -24,6 +25,7 @@ export declare const SubscriptionSettingsSchema: z.ZodObject<{
|
|
24
25
|
isProfileWebpageUrlEnabled: boolean;
|
25
26
|
serveJsonAtBaseSubscription: boolean;
|
26
27
|
addUsernameToBaseSubscription: boolean;
|
28
|
+
isShowCustomRemarks: boolean;
|
27
29
|
happAnnounce: string | null;
|
28
30
|
happRouting: string | null;
|
29
31
|
expiredUsersRemarks: string[];
|
@@ -39,6 +41,7 @@ export declare const SubscriptionSettingsSchema: z.ZodObject<{
|
|
39
41
|
isProfileWebpageUrlEnabled: boolean;
|
40
42
|
serveJsonAtBaseSubscription: boolean;
|
41
43
|
addUsernameToBaseSubscription: boolean;
|
44
|
+
isShowCustomRemarks: boolean;
|
42
45
|
happAnnounce: string | null;
|
43
46
|
happRouting: string | null;
|
44
47
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8BrC,CAAC"}
|
@@ -13,6 +13,7 @@ exports.SubscriptionSettingsSchema = zod_1.z.object({
|
|
13
13
|
isProfileWebpageUrlEnabled: zod_1.z.boolean(),
|
14
14
|
serveJsonAtBaseSubscription: zod_1.z.boolean(),
|
15
15
|
addUsernameToBaseSubscription: zod_1.z.boolean(),
|
16
|
+
isShowCustomRemarks: zod_1.z.boolean(),
|
16
17
|
happAnnounce: zod_1.z.string().nullable(),
|
17
18
|
happRouting: zod_1.z.string().nullable(),
|
18
19
|
expiredUsersRemarks: zod_1.z.array(zod_1.z.string()),
|
@@ -13,6 +13,7 @@ exports.SubscriptionSettingsSchema = zod_1.z.object({
|
|
13
13
|
isProfileWebpageUrlEnabled: zod_1.z.boolean(),
|
14
14
|
serveJsonAtBaseSubscription: zod_1.z.boolean(),
|
15
15
|
addUsernameToBaseSubscription: zod_1.z.boolean(),
|
16
|
+
isShowCustomRemarks: zod_1.z.boolean(),
|
16
17
|
happAnnounce: zod_1.z.string().nullable(),
|
17
18
|
happRouting: zod_1.z.string().nullable(),
|
18
19
|
expiredUsersRemarks: zod_1.z.array(zod_1.z.string()),
|