@remnawave/backend-contract 0.3.63 → 0.3.65
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/update-subscription-settings.command.d.ts +3 -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/commands/users/activate-all-inbounds.command.d.ts +5 -5
- package/build/backend/commands/users/create-user.command.d.ts +5 -5
- package/build/backend/commands/users/disable-user.command.d.ts +5 -5
- package/build/backend/commands/users/enable-user.command.d.ts +5 -5
- package/build/backend/commands/users/get-all-users-v2.command.d.ts +7 -7
- package/build/backend/commands/users/get-user-by-email.command.d.ts +5 -5
- package/build/backend/commands/users/get-user-by-short-uuid.command.d.ts +5 -5
- package/build/backend/commands/users/get-user-by-subscription-uuid.command.d.ts +5 -5
- package/build/backend/commands/users/get-user-by-telegram-id.command.d.ts +5 -5
- package/build/backend/commands/users/get-user-by-username.command.d.ts +5 -5
- package/build/backend/commands/users/get-user-by-uuid.command.d.ts +5 -5
- package/build/backend/commands/users/reset-user-traffic.command.d.ts +5 -5
- package/build/backend/commands/users/revoke-user-subscription.command.d.ts +5 -5
- package/build/backend/commands/users/update-user.command.d.ts +6 -6
- package/build/backend/models/users.schema.d.ts +3 -3
- package/build/backend/models/users.schema.js +2 -2
- package/build/frontend/commands/subscription-settings/update-subscription-settings.command.js +1 -0
- package/build/frontend/models/users.schema.js +2 -2
- package/package.json +1 -1
package/build/backend/commands/subscription-settings/update-subscription-settings.command.d.ts
CHANGED
@@ -10,6 +10,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
10
10
|
isProfileWebpageUrlEnabled: z.ZodOptional<z.ZodBoolean>;
|
11
11
|
serveJsonAtBaseSubscription: z.ZodOptional<z.ZodBoolean>;
|
12
12
|
addUsernameToBaseSubscription: z.ZodOptional<z.ZodBoolean>;
|
13
|
+
isShowCustomRemarks: z.ZodOptional<z.ZodBoolean>;
|
13
14
|
happAnnounce: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14
15
|
happRouting: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15
16
|
expiredUsersRemarks: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
@@ -28,6 +29,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
28
29
|
expiredUsersRemarks?: string[] | undefined;
|
29
30
|
limitedUsersRemarks?: string[] | undefined;
|
30
31
|
disabledUsersRemarks?: string[] | undefined;
|
32
|
+
isShowCustomRemarks?: boolean | undefined;
|
31
33
|
}, {
|
32
34
|
uuid: string;
|
33
35
|
profileTitle?: string | undefined;
|
@@ -41,6 +43,7 @@ export declare namespace UpdateSubscriptionSettingsCommand {
|
|
41
43
|
expiredUsersRemarks?: string[] | undefined;
|
42
44
|
limitedUsersRemarks?: string[] | undefined;
|
43
45
|
disabledUsersRemarks?: string[] | undefined;
|
46
|
+
isShowCustomRemarks?: boolean | undefined;
|
44
47
|
}>;
|
45
48
|
type Request = z.infer<typeof RequestSchema>;
|
46
49
|
const ResponseSchema: z.ZodObject<{
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
package/build/backend/commands/subscription-settings/update-subscription-settings.command.js
CHANGED
@@ -16,6 +16,7 @@ var UpdateSubscriptionSettingsCommand;
|
|
16
16
|
isProfileWebpageUrlEnabled: zod_1.z.optional(zod_1.z.boolean()),
|
17
17
|
serveJsonAtBaseSubscription: zod_1.z.optional(zod_1.z.boolean()),
|
18
18
|
addUsernameToBaseSubscription: zod_1.z.optional(zod_1.z.boolean()),
|
19
|
+
isShowCustomRemarks: zod_1.z.optional(zod_1.z.boolean()),
|
19
20
|
happAnnounce: zod_1.z.optional(zod_1.z
|
20
21
|
.string()
|
21
22
|
.max(200, { message: 'Announce must be less than 200 characters' })
|
@@ -33,7 +33,7 @@ export declare namespace ActivateAllInboundsCommand {
|
|
33
33
|
}>>;
|
34
34
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
35
35
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
36
|
-
expireAt: z.
|
36
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
37
37
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
38
38
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
39
39
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -92,7 +92,7 @@ export declare namespace ActivateAllInboundsCommand {
|
|
92
92
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
93
93
|
subLastUserAgent: string | null;
|
94
94
|
subLastOpenedAt: Date | null;
|
95
|
-
expireAt: Date
|
95
|
+
expireAt: Date;
|
96
96
|
onlineAt: Date | null;
|
97
97
|
subRevokedAt: Date | null;
|
98
98
|
lastTrafficResetAt: Date | null;
|
@@ -125,7 +125,7 @@ export declare namespace ActivateAllInboundsCommand {
|
|
125
125
|
description: string | null;
|
126
126
|
subLastUserAgent: string | null;
|
127
127
|
subLastOpenedAt: string | null;
|
128
|
-
expireAt: string
|
128
|
+
expireAt: string;
|
129
129
|
onlineAt: string | null;
|
130
130
|
subRevokedAt: string | null;
|
131
131
|
lastTrafficResetAt: string | null;
|
@@ -166,7 +166,7 @@ export declare namespace ActivateAllInboundsCommand {
|
|
166
166
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
167
167
|
subLastUserAgent: string | null;
|
168
168
|
subLastOpenedAt: Date | null;
|
169
|
-
expireAt: Date
|
169
|
+
expireAt: Date;
|
170
170
|
onlineAt: Date | null;
|
171
171
|
subRevokedAt: Date | null;
|
172
172
|
lastTrafficResetAt: Date | null;
|
@@ -201,7 +201,7 @@ export declare namespace ActivateAllInboundsCommand {
|
|
201
201
|
description: string | null;
|
202
202
|
subLastUserAgent: string | null;
|
203
203
|
subLastOpenedAt: string | null;
|
204
|
-
expireAt: string
|
204
|
+
expireAt: string;
|
205
205
|
onlineAt: string | null;
|
206
206
|
subRevokedAt: string | null;
|
207
207
|
lastTrafficResetAt: string | null;
|
@@ -91,7 +91,7 @@ export declare namespace CreateUserCommand {
|
|
91
91
|
}>>;
|
92
92
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
93
93
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
94
|
-
expireAt: z.
|
94
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
95
95
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
96
96
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
97
97
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -150,7 +150,7 @@ export declare namespace CreateUserCommand {
|
|
150
150
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
151
151
|
subLastUserAgent: string | null;
|
152
152
|
subLastOpenedAt: Date | null;
|
153
|
-
expireAt: Date
|
153
|
+
expireAt: Date;
|
154
154
|
onlineAt: Date | null;
|
155
155
|
subRevokedAt: Date | null;
|
156
156
|
lastTrafficResetAt: Date | null;
|
@@ -183,7 +183,7 @@ export declare namespace CreateUserCommand {
|
|
183
183
|
description: string | null;
|
184
184
|
subLastUserAgent: string | null;
|
185
185
|
subLastOpenedAt: string | null;
|
186
|
-
expireAt: string
|
186
|
+
expireAt: string;
|
187
187
|
onlineAt: string | null;
|
188
188
|
subRevokedAt: string | null;
|
189
189
|
lastTrafficResetAt: string | null;
|
@@ -224,7 +224,7 @@ export declare namespace CreateUserCommand {
|
|
224
224
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
225
225
|
subLastUserAgent: string | null;
|
226
226
|
subLastOpenedAt: Date | null;
|
227
|
-
expireAt: Date
|
227
|
+
expireAt: Date;
|
228
228
|
onlineAt: Date | null;
|
229
229
|
subRevokedAt: Date | null;
|
230
230
|
lastTrafficResetAt: Date | null;
|
@@ -259,7 +259,7 @@ export declare namespace CreateUserCommand {
|
|
259
259
|
description: string | null;
|
260
260
|
subLastUserAgent: string | null;
|
261
261
|
subLastOpenedAt: string | null;
|
262
|
-
expireAt: string
|
262
|
+
expireAt: string;
|
263
263
|
onlineAt: string | null;
|
264
264
|
subRevokedAt: string | null;
|
265
265
|
lastTrafficResetAt: string | null;
|
@@ -33,7 +33,7 @@ export declare namespace DisableUserCommand {
|
|
33
33
|
}>>;
|
34
34
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
35
35
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
36
|
-
expireAt: z.
|
36
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
37
37
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
38
38
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
39
39
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -92,7 +92,7 @@ export declare namespace DisableUserCommand {
|
|
92
92
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
93
93
|
subLastUserAgent: string | null;
|
94
94
|
subLastOpenedAt: Date | null;
|
95
|
-
expireAt: Date
|
95
|
+
expireAt: Date;
|
96
96
|
onlineAt: Date | null;
|
97
97
|
subRevokedAt: Date | null;
|
98
98
|
lastTrafficResetAt: Date | null;
|
@@ -125,7 +125,7 @@ export declare namespace DisableUserCommand {
|
|
125
125
|
description: string | null;
|
126
126
|
subLastUserAgent: string | null;
|
127
127
|
subLastOpenedAt: string | null;
|
128
|
-
expireAt: string
|
128
|
+
expireAt: string;
|
129
129
|
onlineAt: string | null;
|
130
130
|
subRevokedAt: string | null;
|
131
131
|
lastTrafficResetAt: string | null;
|
@@ -166,7 +166,7 @@ export declare namespace DisableUserCommand {
|
|
166
166
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
167
167
|
subLastUserAgent: string | null;
|
168
168
|
subLastOpenedAt: Date | null;
|
169
|
-
expireAt: Date
|
169
|
+
expireAt: Date;
|
170
170
|
onlineAt: Date | null;
|
171
171
|
subRevokedAt: Date | null;
|
172
172
|
lastTrafficResetAt: Date | null;
|
@@ -201,7 +201,7 @@ export declare namespace DisableUserCommand {
|
|
201
201
|
description: string | null;
|
202
202
|
subLastUserAgent: string | null;
|
203
203
|
subLastOpenedAt: string | null;
|
204
|
-
expireAt: string
|
204
|
+
expireAt: string;
|
205
205
|
onlineAt: string | null;
|
206
206
|
subRevokedAt: string | null;
|
207
207
|
lastTrafficResetAt: string | null;
|
@@ -33,7 +33,7 @@ export declare namespace EnableUserCommand {
|
|
33
33
|
}>>;
|
34
34
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
35
35
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
36
|
-
expireAt: z.
|
36
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
37
37
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
38
38
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
39
39
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -92,7 +92,7 @@ export declare namespace EnableUserCommand {
|
|
92
92
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
93
93
|
subLastUserAgent: string | null;
|
94
94
|
subLastOpenedAt: Date | null;
|
95
|
-
expireAt: Date
|
95
|
+
expireAt: Date;
|
96
96
|
onlineAt: Date | null;
|
97
97
|
subRevokedAt: Date | null;
|
98
98
|
lastTrafficResetAt: Date | null;
|
@@ -125,7 +125,7 @@ export declare namespace EnableUserCommand {
|
|
125
125
|
description: string | null;
|
126
126
|
subLastUserAgent: string | null;
|
127
127
|
subLastOpenedAt: string | null;
|
128
|
-
expireAt: string
|
128
|
+
expireAt: string;
|
129
129
|
onlineAt: string | null;
|
130
130
|
subRevokedAt: string | null;
|
131
131
|
lastTrafficResetAt: string | null;
|
@@ -166,7 +166,7 @@ export declare namespace EnableUserCommand {
|
|
166
166
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
167
167
|
subLastUserAgent: string | null;
|
168
168
|
subLastOpenedAt: Date | null;
|
169
|
-
expireAt: Date
|
169
|
+
expireAt: Date;
|
170
170
|
onlineAt: Date | null;
|
171
171
|
subRevokedAt: Date | null;
|
172
172
|
lastTrafficResetAt: Date | null;
|
@@ -201,7 +201,7 @@ export declare namespace EnableUserCommand {
|
|
201
201
|
description: string | null;
|
202
202
|
subLastUserAgent: string | null;
|
203
203
|
subLastOpenedAt: string | null;
|
204
|
-
expireAt: string
|
204
|
+
expireAt: string;
|
205
205
|
onlineAt: string | null;
|
206
206
|
subRevokedAt: string | null;
|
207
207
|
lastTrafficResetAt: string | null;
|
@@ -79,7 +79,7 @@ export declare namespace GetAllUsersV2Command {
|
|
79
79
|
}>>;
|
80
80
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
81
81
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
82
|
-
expireAt: z.
|
82
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
83
83
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
84
84
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
85
85
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -138,7 +138,7 @@ export declare namespace GetAllUsersV2Command {
|
|
138
138
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
139
139
|
subLastUserAgent: string | null;
|
140
140
|
subLastOpenedAt: Date | null;
|
141
|
-
expireAt: Date
|
141
|
+
expireAt: Date;
|
142
142
|
onlineAt: Date | null;
|
143
143
|
subRevokedAt: Date | null;
|
144
144
|
lastTrafficResetAt: Date | null;
|
@@ -171,7 +171,7 @@ export declare namespace GetAllUsersV2Command {
|
|
171
171
|
description: string | null;
|
172
172
|
subLastUserAgent: string | null;
|
173
173
|
subLastOpenedAt: string | null;
|
174
|
-
expireAt: string
|
174
|
+
expireAt: string;
|
175
175
|
onlineAt: string | null;
|
176
176
|
subRevokedAt: string | null;
|
177
177
|
lastTrafficResetAt: string | null;
|
@@ -213,7 +213,7 @@ export declare namespace GetAllUsersV2Command {
|
|
213
213
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
214
214
|
subLastUserAgent: string | null;
|
215
215
|
subLastOpenedAt: Date | null;
|
216
|
-
expireAt: Date
|
216
|
+
expireAt: Date;
|
217
217
|
onlineAt: Date | null;
|
218
218
|
subRevokedAt: Date | null;
|
219
219
|
lastTrafficResetAt: Date | null;
|
@@ -249,7 +249,7 @@ export declare namespace GetAllUsersV2Command {
|
|
249
249
|
description: string | null;
|
250
250
|
subLastUserAgent: string | null;
|
251
251
|
subLastOpenedAt: string | null;
|
252
|
-
expireAt: string
|
252
|
+
expireAt: string;
|
253
253
|
onlineAt: string | null;
|
254
254
|
subRevokedAt: string | null;
|
255
255
|
lastTrafficResetAt: string | null;
|
@@ -293,7 +293,7 @@ export declare namespace GetAllUsersV2Command {
|
|
293
293
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
294
294
|
subLastUserAgent: string | null;
|
295
295
|
subLastOpenedAt: Date | null;
|
296
|
-
expireAt: Date
|
296
|
+
expireAt: Date;
|
297
297
|
onlineAt: Date | null;
|
298
298
|
subRevokedAt: Date | null;
|
299
299
|
lastTrafficResetAt: Date | null;
|
@@ -331,7 +331,7 @@ export declare namespace GetAllUsersV2Command {
|
|
331
331
|
description: string | null;
|
332
332
|
subLastUserAgent: string | null;
|
333
333
|
subLastOpenedAt: string | null;
|
334
|
-
expireAt: string
|
334
|
+
expireAt: string;
|
335
335
|
onlineAt: string | null;
|
336
336
|
subRevokedAt: string | null;
|
337
337
|
lastTrafficResetAt: string | null;
|
@@ -33,7 +33,7 @@ export declare namespace GetUserByEmailCommand {
|
|
33
33
|
}>>;
|
34
34
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
35
35
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
36
|
-
expireAt: z.
|
36
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
37
37
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
38
38
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
39
39
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -92,7 +92,7 @@ export declare namespace GetUserByEmailCommand {
|
|
92
92
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
93
93
|
subLastUserAgent: string | null;
|
94
94
|
subLastOpenedAt: Date | null;
|
95
|
-
expireAt: Date
|
95
|
+
expireAt: Date;
|
96
96
|
onlineAt: Date | null;
|
97
97
|
subRevokedAt: Date | null;
|
98
98
|
lastTrafficResetAt: Date | null;
|
@@ -125,7 +125,7 @@ export declare namespace GetUserByEmailCommand {
|
|
125
125
|
description: string | null;
|
126
126
|
subLastUserAgent: string | null;
|
127
127
|
subLastOpenedAt: string | null;
|
128
|
-
expireAt: string
|
128
|
+
expireAt: string;
|
129
129
|
onlineAt: string | null;
|
130
130
|
subRevokedAt: string | null;
|
131
131
|
lastTrafficResetAt: string | null;
|
@@ -166,7 +166,7 @@ export declare namespace GetUserByEmailCommand {
|
|
166
166
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
167
167
|
subLastUserAgent: string | null;
|
168
168
|
subLastOpenedAt: Date | null;
|
169
|
-
expireAt: Date
|
169
|
+
expireAt: Date;
|
170
170
|
onlineAt: Date | null;
|
171
171
|
subRevokedAt: Date | null;
|
172
172
|
lastTrafficResetAt: Date | null;
|
@@ -201,7 +201,7 @@ export declare namespace GetUserByEmailCommand {
|
|
201
201
|
description: string | null;
|
202
202
|
subLastUserAgent: string | null;
|
203
203
|
subLastOpenedAt: string | null;
|
204
|
-
expireAt: string
|
204
|
+
expireAt: string;
|
205
205
|
onlineAt: string | null;
|
206
206
|
subRevokedAt: string | null;
|
207
207
|
lastTrafficResetAt: string | null;
|
@@ -33,7 +33,7 @@ export declare namespace GetUserByShortUuidCommand {
|
|
33
33
|
}>>;
|
34
34
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
35
35
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
36
|
-
expireAt: z.
|
36
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
37
37
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
38
38
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
39
39
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -92,7 +92,7 @@ export declare namespace GetUserByShortUuidCommand {
|
|
92
92
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
93
93
|
subLastUserAgent: string | null;
|
94
94
|
subLastOpenedAt: Date | null;
|
95
|
-
expireAt: Date
|
95
|
+
expireAt: Date;
|
96
96
|
onlineAt: Date | null;
|
97
97
|
subRevokedAt: Date | null;
|
98
98
|
lastTrafficResetAt: Date | null;
|
@@ -125,7 +125,7 @@ export declare namespace GetUserByShortUuidCommand {
|
|
125
125
|
description: string | null;
|
126
126
|
subLastUserAgent: string | null;
|
127
127
|
subLastOpenedAt: string | null;
|
128
|
-
expireAt: string
|
128
|
+
expireAt: string;
|
129
129
|
onlineAt: string | null;
|
130
130
|
subRevokedAt: string | null;
|
131
131
|
lastTrafficResetAt: string | null;
|
@@ -166,7 +166,7 @@ export declare namespace GetUserByShortUuidCommand {
|
|
166
166
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
167
167
|
subLastUserAgent: string | null;
|
168
168
|
subLastOpenedAt: Date | null;
|
169
|
-
expireAt: Date
|
169
|
+
expireAt: Date;
|
170
170
|
onlineAt: Date | null;
|
171
171
|
subRevokedAt: Date | null;
|
172
172
|
lastTrafficResetAt: Date | null;
|
@@ -201,7 +201,7 @@ export declare namespace GetUserByShortUuidCommand {
|
|
201
201
|
description: string | null;
|
202
202
|
subLastUserAgent: string | null;
|
203
203
|
subLastOpenedAt: string | null;
|
204
|
-
expireAt: string
|
204
|
+
expireAt: string;
|
205
205
|
onlineAt: string | null;
|
206
206
|
subRevokedAt: string | null;
|
207
207
|
lastTrafficResetAt: string | null;
|
@@ -33,7 +33,7 @@ export declare namespace GetUserBySubscriptionUuidCommand {
|
|
33
33
|
}>>;
|
34
34
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
35
35
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
36
|
-
expireAt: z.
|
36
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
37
37
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
38
38
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
39
39
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -92,7 +92,7 @@ export declare namespace GetUserBySubscriptionUuidCommand {
|
|
92
92
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
93
93
|
subLastUserAgent: string | null;
|
94
94
|
subLastOpenedAt: Date | null;
|
95
|
-
expireAt: Date
|
95
|
+
expireAt: Date;
|
96
96
|
onlineAt: Date | null;
|
97
97
|
subRevokedAt: Date | null;
|
98
98
|
lastTrafficResetAt: Date | null;
|
@@ -125,7 +125,7 @@ export declare namespace GetUserBySubscriptionUuidCommand {
|
|
125
125
|
description: string | null;
|
126
126
|
subLastUserAgent: string | null;
|
127
127
|
subLastOpenedAt: string | null;
|
128
|
-
expireAt: string
|
128
|
+
expireAt: string;
|
129
129
|
onlineAt: string | null;
|
130
130
|
subRevokedAt: string | null;
|
131
131
|
lastTrafficResetAt: string | null;
|
@@ -166,7 +166,7 @@ export declare namespace GetUserBySubscriptionUuidCommand {
|
|
166
166
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
167
167
|
subLastUserAgent: string | null;
|
168
168
|
subLastOpenedAt: Date | null;
|
169
|
-
expireAt: Date
|
169
|
+
expireAt: Date;
|
170
170
|
onlineAt: Date | null;
|
171
171
|
subRevokedAt: Date | null;
|
172
172
|
lastTrafficResetAt: Date | null;
|
@@ -201,7 +201,7 @@ export declare namespace GetUserBySubscriptionUuidCommand {
|
|
201
201
|
description: string | null;
|
202
202
|
subLastUserAgent: string | null;
|
203
203
|
subLastOpenedAt: string | null;
|
204
|
-
expireAt: string
|
204
|
+
expireAt: string;
|
205
205
|
onlineAt: string | null;
|
206
206
|
subRevokedAt: string | null;
|
207
207
|
lastTrafficResetAt: string | null;
|
@@ -33,7 +33,7 @@ export declare namespace GetUserByTelegramIdCommand {
|
|
33
33
|
}>>;
|
34
34
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
35
35
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
36
|
-
expireAt: z.
|
36
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
37
37
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
38
38
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
39
39
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -92,7 +92,7 @@ export declare namespace GetUserByTelegramIdCommand {
|
|
92
92
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
93
93
|
subLastUserAgent: string | null;
|
94
94
|
subLastOpenedAt: Date | null;
|
95
|
-
expireAt: Date
|
95
|
+
expireAt: Date;
|
96
96
|
onlineAt: Date | null;
|
97
97
|
subRevokedAt: Date | null;
|
98
98
|
lastTrafficResetAt: Date | null;
|
@@ -125,7 +125,7 @@ export declare namespace GetUserByTelegramIdCommand {
|
|
125
125
|
description: string | null;
|
126
126
|
subLastUserAgent: string | null;
|
127
127
|
subLastOpenedAt: string | null;
|
128
|
-
expireAt: string
|
128
|
+
expireAt: string;
|
129
129
|
onlineAt: string | null;
|
130
130
|
subRevokedAt: string | null;
|
131
131
|
lastTrafficResetAt: string | null;
|
@@ -166,7 +166,7 @@ export declare namespace GetUserByTelegramIdCommand {
|
|
166
166
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
167
167
|
subLastUserAgent: string | null;
|
168
168
|
subLastOpenedAt: Date | null;
|
169
|
-
expireAt: Date
|
169
|
+
expireAt: Date;
|
170
170
|
onlineAt: Date | null;
|
171
171
|
subRevokedAt: Date | null;
|
172
172
|
lastTrafficResetAt: Date | null;
|
@@ -201,7 +201,7 @@ export declare namespace GetUserByTelegramIdCommand {
|
|
201
201
|
description: string | null;
|
202
202
|
subLastUserAgent: string | null;
|
203
203
|
subLastOpenedAt: string | null;
|
204
|
-
expireAt: string
|
204
|
+
expireAt: string;
|
205
205
|
onlineAt: string | null;
|
206
206
|
subRevokedAt: string | null;
|
207
207
|
lastTrafficResetAt: string | null;
|
@@ -33,7 +33,7 @@ export declare namespace GetUserByUsernameCommand {
|
|
33
33
|
}>>;
|
34
34
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
35
35
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
36
|
-
expireAt: z.
|
36
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
37
37
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
38
38
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
39
39
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -92,7 +92,7 @@ export declare namespace GetUserByUsernameCommand {
|
|
92
92
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
93
93
|
subLastUserAgent: string | null;
|
94
94
|
subLastOpenedAt: Date | null;
|
95
|
-
expireAt: Date
|
95
|
+
expireAt: Date;
|
96
96
|
onlineAt: Date | null;
|
97
97
|
subRevokedAt: Date | null;
|
98
98
|
lastTrafficResetAt: Date | null;
|
@@ -125,7 +125,7 @@ export declare namespace GetUserByUsernameCommand {
|
|
125
125
|
description: string | null;
|
126
126
|
subLastUserAgent: string | null;
|
127
127
|
subLastOpenedAt: string | null;
|
128
|
-
expireAt: string
|
128
|
+
expireAt: string;
|
129
129
|
onlineAt: string | null;
|
130
130
|
subRevokedAt: string | null;
|
131
131
|
lastTrafficResetAt: string | null;
|
@@ -166,7 +166,7 @@ export declare namespace GetUserByUsernameCommand {
|
|
166
166
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
167
167
|
subLastUserAgent: string | null;
|
168
168
|
subLastOpenedAt: Date | null;
|
169
|
-
expireAt: Date
|
169
|
+
expireAt: Date;
|
170
170
|
onlineAt: Date | null;
|
171
171
|
subRevokedAt: Date | null;
|
172
172
|
lastTrafficResetAt: Date | null;
|
@@ -201,7 +201,7 @@ export declare namespace GetUserByUsernameCommand {
|
|
201
201
|
description: string | null;
|
202
202
|
subLastUserAgent: string | null;
|
203
203
|
subLastOpenedAt: string | null;
|
204
|
-
expireAt: string
|
204
|
+
expireAt: string;
|
205
205
|
onlineAt: string | null;
|
206
206
|
subRevokedAt: string | null;
|
207
207
|
lastTrafficResetAt: string | null;
|
@@ -33,7 +33,7 @@ export declare namespace GetUserByUuidCommand {
|
|
33
33
|
}>>;
|
34
34
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
35
35
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
36
|
-
expireAt: z.
|
36
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
37
37
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
38
38
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
39
39
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -92,7 +92,7 @@ export declare namespace GetUserByUuidCommand {
|
|
92
92
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
93
93
|
subLastUserAgent: string | null;
|
94
94
|
subLastOpenedAt: Date | null;
|
95
|
-
expireAt: Date
|
95
|
+
expireAt: Date;
|
96
96
|
onlineAt: Date | null;
|
97
97
|
subRevokedAt: Date | null;
|
98
98
|
lastTrafficResetAt: Date | null;
|
@@ -125,7 +125,7 @@ export declare namespace GetUserByUuidCommand {
|
|
125
125
|
description: string | null;
|
126
126
|
subLastUserAgent: string | null;
|
127
127
|
subLastOpenedAt: string | null;
|
128
|
-
expireAt: string
|
128
|
+
expireAt: string;
|
129
129
|
onlineAt: string | null;
|
130
130
|
subRevokedAt: string | null;
|
131
131
|
lastTrafficResetAt: string | null;
|
@@ -166,7 +166,7 @@ export declare namespace GetUserByUuidCommand {
|
|
166
166
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
167
167
|
subLastUserAgent: string | null;
|
168
168
|
subLastOpenedAt: Date | null;
|
169
|
-
expireAt: Date
|
169
|
+
expireAt: Date;
|
170
170
|
onlineAt: Date | null;
|
171
171
|
subRevokedAt: Date | null;
|
172
172
|
lastTrafficResetAt: Date | null;
|
@@ -201,7 +201,7 @@ export declare namespace GetUserByUuidCommand {
|
|
201
201
|
description: string | null;
|
202
202
|
subLastUserAgent: string | null;
|
203
203
|
subLastOpenedAt: string | null;
|
204
|
-
expireAt: string
|
204
|
+
expireAt: string;
|
205
205
|
onlineAt: string | null;
|
206
206
|
subRevokedAt: string | null;
|
207
207
|
lastTrafficResetAt: string | null;
|
@@ -33,7 +33,7 @@ export declare namespace ResetUserTrafficCommand {
|
|
33
33
|
}>>;
|
34
34
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
35
35
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
36
|
-
expireAt: z.
|
36
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
37
37
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
38
38
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
39
39
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -92,7 +92,7 @@ export declare namespace ResetUserTrafficCommand {
|
|
92
92
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
93
93
|
subLastUserAgent: string | null;
|
94
94
|
subLastOpenedAt: Date | null;
|
95
|
-
expireAt: Date
|
95
|
+
expireAt: Date;
|
96
96
|
onlineAt: Date | null;
|
97
97
|
subRevokedAt: Date | null;
|
98
98
|
lastTrafficResetAt: Date | null;
|
@@ -125,7 +125,7 @@ export declare namespace ResetUserTrafficCommand {
|
|
125
125
|
description: string | null;
|
126
126
|
subLastUserAgent: string | null;
|
127
127
|
subLastOpenedAt: string | null;
|
128
|
-
expireAt: string
|
128
|
+
expireAt: string;
|
129
129
|
onlineAt: string | null;
|
130
130
|
subRevokedAt: string | null;
|
131
131
|
lastTrafficResetAt: string | null;
|
@@ -166,7 +166,7 @@ export declare namespace ResetUserTrafficCommand {
|
|
166
166
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
167
167
|
subLastUserAgent: string | null;
|
168
168
|
subLastOpenedAt: Date | null;
|
169
|
-
expireAt: Date
|
169
|
+
expireAt: Date;
|
170
170
|
onlineAt: Date | null;
|
171
171
|
subRevokedAt: Date | null;
|
172
172
|
lastTrafficResetAt: Date | null;
|
@@ -201,7 +201,7 @@ export declare namespace ResetUserTrafficCommand {
|
|
201
201
|
description: string | null;
|
202
202
|
subLastUserAgent: string | null;
|
203
203
|
subLastOpenedAt: string | null;
|
204
|
-
expireAt: string
|
204
|
+
expireAt: string;
|
205
205
|
onlineAt: string | null;
|
206
206
|
subRevokedAt: string | null;
|
207
207
|
lastTrafficResetAt: string | null;
|
@@ -33,7 +33,7 @@ export declare namespace RevokeUserSubscriptionCommand {
|
|
33
33
|
}>>;
|
34
34
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
35
35
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
36
|
-
expireAt: z.
|
36
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
37
37
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
38
38
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
39
39
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -92,7 +92,7 @@ export declare namespace RevokeUserSubscriptionCommand {
|
|
92
92
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
93
93
|
subLastUserAgent: string | null;
|
94
94
|
subLastOpenedAt: Date | null;
|
95
|
-
expireAt: Date
|
95
|
+
expireAt: Date;
|
96
96
|
onlineAt: Date | null;
|
97
97
|
subRevokedAt: Date | null;
|
98
98
|
lastTrafficResetAt: Date | null;
|
@@ -125,7 +125,7 @@ export declare namespace RevokeUserSubscriptionCommand {
|
|
125
125
|
description: string | null;
|
126
126
|
subLastUserAgent: string | null;
|
127
127
|
subLastOpenedAt: string | null;
|
128
|
-
expireAt: string
|
128
|
+
expireAt: string;
|
129
129
|
onlineAt: string | null;
|
130
130
|
subRevokedAt: string | null;
|
131
131
|
lastTrafficResetAt: string | null;
|
@@ -166,7 +166,7 @@ export declare namespace RevokeUserSubscriptionCommand {
|
|
166
166
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
167
167
|
subLastUserAgent: string | null;
|
168
168
|
subLastOpenedAt: Date | null;
|
169
|
-
expireAt: Date
|
169
|
+
expireAt: Date;
|
170
170
|
onlineAt: Date | null;
|
171
171
|
subRevokedAt: Date | null;
|
172
172
|
lastTrafficResetAt: Date | null;
|
@@ -201,7 +201,7 @@ export declare namespace RevokeUserSubscriptionCommand {
|
|
201
201
|
description: string | null;
|
202
202
|
subLastUserAgent: string | null;
|
203
203
|
subLastOpenedAt: string | null;
|
204
|
-
expireAt: string
|
204
|
+
expireAt: string;
|
205
205
|
onlineAt: string | null;
|
206
206
|
subRevokedAt: string | null;
|
207
207
|
lastTrafficResetAt: string | null;
|
@@ -24,7 +24,7 @@ export declare namespace UpdateUserCommand {
|
|
24
24
|
}>>;
|
25
25
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
26
26
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
27
|
-
expireAt: z.
|
27
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
28
28
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
29
29
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
30
30
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -119,7 +119,7 @@ export declare namespace UpdateUserCommand {
|
|
119
119
|
}>>;
|
120
120
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
121
121
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
122
|
-
expireAt: z.
|
122
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
123
123
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
124
124
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
125
125
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -178,7 +178,7 @@ export declare namespace UpdateUserCommand {
|
|
178
178
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
179
179
|
subLastUserAgent: string | null;
|
180
180
|
subLastOpenedAt: Date | null;
|
181
|
-
expireAt: Date
|
181
|
+
expireAt: Date;
|
182
182
|
onlineAt: Date | null;
|
183
183
|
subRevokedAt: Date | null;
|
184
184
|
lastTrafficResetAt: Date | null;
|
@@ -211,7 +211,7 @@ export declare namespace UpdateUserCommand {
|
|
211
211
|
description: string | null;
|
212
212
|
subLastUserAgent: string | null;
|
213
213
|
subLastOpenedAt: string | null;
|
214
|
-
expireAt: string
|
214
|
+
expireAt: string;
|
215
215
|
onlineAt: string | null;
|
216
216
|
subRevokedAt: string | null;
|
217
217
|
lastTrafficResetAt: string | null;
|
@@ -252,7 +252,7 @@ export declare namespace UpdateUserCommand {
|
|
252
252
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
253
253
|
subLastUserAgent: string | null;
|
254
254
|
subLastOpenedAt: Date | null;
|
255
|
-
expireAt: Date
|
255
|
+
expireAt: Date;
|
256
256
|
onlineAt: Date | null;
|
257
257
|
subRevokedAt: Date | null;
|
258
258
|
lastTrafficResetAt: Date | null;
|
@@ -287,7 +287,7 @@ export declare namespace UpdateUserCommand {
|
|
287
287
|
description: string | null;
|
288
288
|
subLastUserAgent: string | null;
|
289
289
|
subLastOpenedAt: string | null;
|
290
|
-
expireAt: string
|
290
|
+
expireAt: string;
|
291
291
|
onlineAt: string | null;
|
292
292
|
subRevokedAt: string | null;
|
293
293
|
lastTrafficResetAt: string | null;
|
@@ -21,7 +21,7 @@ export declare const UsersSchema: z.ZodObject<{
|
|
21
21
|
}>>;
|
22
22
|
subLastUserAgent: z.ZodNullable<z.ZodString>;
|
23
23
|
subLastOpenedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
24
|
-
expireAt: z.
|
24
|
+
expireAt: z.ZodEffects<z.ZodString, Date, string>;
|
25
25
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
26
26
|
subRevokedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
27
27
|
lastTrafficResetAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
@@ -68,7 +68,7 @@ export declare const UsersSchema: z.ZodObject<{
|
|
68
68
|
trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
|
69
69
|
subLastUserAgent: string | null;
|
70
70
|
subLastOpenedAt: Date | null;
|
71
|
-
expireAt: Date
|
71
|
+
expireAt: Date;
|
72
72
|
onlineAt: Date | null;
|
73
73
|
subRevokedAt: Date | null;
|
74
74
|
lastTrafficResetAt: Date | null;
|
@@ -96,7 +96,7 @@ export declare const UsersSchema: z.ZodObject<{
|
|
96
96
|
description: string | null;
|
97
97
|
subLastUserAgent: string | null;
|
98
98
|
subLastOpenedAt: string | null;
|
99
|
-
expireAt: string
|
99
|
+
expireAt: string;
|
100
100
|
onlineAt: string | null;
|
101
101
|
subRevokedAt: string | null;
|
102
102
|
lastTrafficResetAt: string | null;
|
@@ -23,10 +23,10 @@ exports.UsersSchema = zod_1.z.object({
|
|
23
23
|
.string()
|
24
24
|
.datetime()
|
25
25
|
.transform((str) => new Date(str))),
|
26
|
-
expireAt: zod_1.z
|
26
|
+
expireAt: zod_1.z
|
27
27
|
.string()
|
28
28
|
.datetime()
|
29
|
-
.transform((str) => new Date(str))
|
29
|
+
.transform((str) => new Date(str)),
|
30
30
|
onlineAt: zod_1.z.nullable(zod_1.z
|
31
31
|
.string()
|
32
32
|
.datetime()
|
package/build/frontend/commands/subscription-settings/update-subscription-settings.command.js
CHANGED
@@ -16,6 +16,7 @@ var UpdateSubscriptionSettingsCommand;
|
|
16
16
|
isProfileWebpageUrlEnabled: zod_1.z.optional(zod_1.z.boolean()),
|
17
17
|
serveJsonAtBaseSubscription: zod_1.z.optional(zod_1.z.boolean()),
|
18
18
|
addUsernameToBaseSubscription: zod_1.z.optional(zod_1.z.boolean()),
|
19
|
+
isShowCustomRemarks: zod_1.z.optional(zod_1.z.boolean()),
|
19
20
|
happAnnounce: zod_1.z.optional(zod_1.z
|
20
21
|
.string()
|
21
22
|
.max(200, { message: 'Announce must be less than 200 characters' })
|
@@ -23,10 +23,10 @@ exports.UsersSchema = zod_1.z.object({
|
|
23
23
|
.string()
|
24
24
|
.datetime()
|
25
25
|
.transform((str) => new Date(str))),
|
26
|
-
expireAt: zod_1.z
|
26
|
+
expireAt: zod_1.z
|
27
27
|
.string()
|
28
28
|
.datetime()
|
29
|
-
.transform((str) => new Date(str))
|
29
|
+
.transform((str) => new Date(str)),
|
30
30
|
onlineAt: zod_1.z.nullable(zod_1.z
|
31
31
|
.string()
|
32
32
|
.datetime()
|