@remnawave/backend-contract 2.3.3 → 2.3.4
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/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts +9 -0
- package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/users/actions/disable-user.command.d.ts +7 -0
- package/build/backend/commands/users/actions/disable-user.command.d.ts.map +1 -1
- package/build/backend/commands/users/actions/enable-user.command.d.ts +7 -0
- package/build/backend/commands/users/actions/enable-user.command.d.ts.map +1 -1
- package/build/backend/commands/users/actions/reset-user-traffic.command.d.ts +7 -0
- package/build/backend/commands/users/actions/reset-user-traffic.command.d.ts.map +1 -1
- package/build/backend/commands/users/actions/revoke-user-subscription.command.d.ts +7 -0
- package/build/backend/commands/users/actions/revoke-user-subscription.command.d.ts.map +1 -1
- package/build/backend/commands/users/create-user.command.d.ts +7 -0
- package/build/backend/commands/users/create-user.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-all-users.command.d.ts +9 -0
- package/build/backend/commands/users/get-all-users.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-by/get-user-by-email.command.d.ts +7 -0
- package/build/backend/commands/users/get-by/get-user-by-email.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-by/get-user-by-short-uuid.command.d.ts +7 -0
- package/build/backend/commands/users/get-by/get-user-by-short-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-by/get-user-by-tag.command.d.ts +7 -0
- package/build/backend/commands/users/get-by/get-user-by-tag.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-by/get-user-by-telegram-id.command.d.ts +7 -0
- package/build/backend/commands/users/get-by/get-user-by-telegram-id.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-by/get-user-by-username.command.d.ts +7 -0
- package/build/backend/commands/users/get-by/get-user-by-username.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-user-by-uuid.command.d.ts +7 -0
- package/build/backend/commands/users/get-user-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/users/update-user.command.d.ts +7 -0
- package/build/backend/commands/users/update-user.command.d.ts.map +1 -1
- package/build/backend/models/extended-users.schema.d.ts +5 -0
- package/build/backend/models/extended-users.schema.d.ts.map +1 -1
- package/build/backend/models/extended-users.schema.js +1 -0
- package/build/frontend/models/extended-users.schema.js +1 -0
- package/package.json +1 -1
package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts
CHANGED
|
@@ -79,16 +79,19 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
79
79
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
80
80
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
81
81
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
82
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
82
83
|
}, "strip", z.ZodTypeAny, {
|
|
83
84
|
usedTrafficBytes: number;
|
|
84
85
|
lifetimeUsedTrafficBytes: number;
|
|
85
86
|
onlineAt: Date | null;
|
|
86
87
|
firstConnectedAt: Date | null;
|
|
88
|
+
lastConnectedNodeUuid: string | null;
|
|
87
89
|
}, {
|
|
88
90
|
usedTrafficBytes: number;
|
|
89
91
|
lifetimeUsedTrafficBytes: number;
|
|
90
92
|
onlineAt: string | null;
|
|
91
93
|
firstConnectedAt: string | null;
|
|
94
|
+
lastConnectedNodeUuid: string | null;
|
|
92
95
|
}>;
|
|
93
96
|
}, "strip", z.ZodTypeAny, {
|
|
94
97
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -127,6 +130,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
127
130
|
lifetimeUsedTrafficBytes: number;
|
|
128
131
|
onlineAt: Date | null;
|
|
129
132
|
firstConnectedAt: Date | null;
|
|
133
|
+
lastConnectedNodeUuid: string | null;
|
|
130
134
|
};
|
|
131
135
|
}, {
|
|
132
136
|
uuid: string;
|
|
@@ -161,6 +165,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
161
165
|
lifetimeUsedTrafficBytes: number;
|
|
162
166
|
onlineAt: string | null;
|
|
163
167
|
firstConnectedAt: string | null;
|
|
168
|
+
lastConnectedNodeUuid: string | null;
|
|
164
169
|
};
|
|
165
170
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
166
171
|
trafficLimitBytes?: number | undefined;
|
|
@@ -436,6 +441,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
436
441
|
lifetimeUsedTrafficBytes: number;
|
|
437
442
|
onlineAt: Date | null;
|
|
438
443
|
firstConnectedAt: Date | null;
|
|
444
|
+
lastConnectedNodeUuid: string | null;
|
|
439
445
|
};
|
|
440
446
|
};
|
|
441
447
|
convertedUserInfo: {
|
|
@@ -534,6 +540,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
534
540
|
lifetimeUsedTrafficBytes: number;
|
|
535
541
|
onlineAt: string | null;
|
|
536
542
|
firstConnectedAt: string | null;
|
|
543
|
+
lastConnectedNodeUuid: string | null;
|
|
537
544
|
};
|
|
538
545
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
539
546
|
trafficLimitBytes?: number | undefined;
|
|
@@ -642,6 +649,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
642
649
|
lifetimeUsedTrafficBytes: number;
|
|
643
650
|
onlineAt: Date | null;
|
|
644
651
|
firstConnectedAt: Date | null;
|
|
652
|
+
lastConnectedNodeUuid: string | null;
|
|
645
653
|
};
|
|
646
654
|
};
|
|
647
655
|
convertedUserInfo: {
|
|
@@ -742,6 +750,7 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
742
750
|
lifetimeUsedTrafficBytes: number;
|
|
743
751
|
onlineAt: string | null;
|
|
744
752
|
firstConnectedAt: string | null;
|
|
753
|
+
lastConnectedNodeUuid: string | null;
|
|
745
754
|
};
|
|
746
755
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
747
756
|
trafficLimitBytes?: number | 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"}
|
|
@@ -70,16 +70,19 @@ export declare namespace DisableUserCommand {
|
|
|
70
70
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
71
71
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
72
72
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
73
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
73
74
|
}, "strip", z.ZodTypeAny, {
|
|
74
75
|
usedTrafficBytes: number;
|
|
75
76
|
lifetimeUsedTrafficBytes: number;
|
|
76
77
|
onlineAt: Date | null;
|
|
77
78
|
firstConnectedAt: Date | null;
|
|
79
|
+
lastConnectedNodeUuid: string | null;
|
|
78
80
|
}, {
|
|
79
81
|
usedTrafficBytes: number;
|
|
80
82
|
lifetimeUsedTrafficBytes: number;
|
|
81
83
|
onlineAt: string | null;
|
|
82
84
|
firstConnectedAt: string | null;
|
|
85
|
+
lastConnectedNodeUuid: string | null;
|
|
83
86
|
}>;
|
|
84
87
|
}, "strip", z.ZodTypeAny, {
|
|
85
88
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -118,6 +121,7 @@ export declare namespace DisableUserCommand {
|
|
|
118
121
|
lifetimeUsedTrafficBytes: number;
|
|
119
122
|
onlineAt: Date | null;
|
|
120
123
|
firstConnectedAt: Date | null;
|
|
124
|
+
lastConnectedNodeUuid: string | null;
|
|
121
125
|
};
|
|
122
126
|
}, {
|
|
123
127
|
uuid: string;
|
|
@@ -152,6 +156,7 @@ export declare namespace DisableUserCommand {
|
|
|
152
156
|
lifetimeUsedTrafficBytes: number;
|
|
153
157
|
onlineAt: string | null;
|
|
154
158
|
firstConnectedAt: string | null;
|
|
159
|
+
lastConnectedNodeUuid: string | null;
|
|
155
160
|
};
|
|
156
161
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
157
162
|
trafficLimitBytes?: number | undefined;
|
|
@@ -196,6 +201,7 @@ export declare namespace DisableUserCommand {
|
|
|
196
201
|
lifetimeUsedTrafficBytes: number;
|
|
197
202
|
onlineAt: Date | null;
|
|
198
203
|
firstConnectedAt: Date | null;
|
|
204
|
+
lastConnectedNodeUuid: string | null;
|
|
199
205
|
};
|
|
200
206
|
};
|
|
201
207
|
}, {
|
|
@@ -232,6 +238,7 @@ export declare namespace DisableUserCommand {
|
|
|
232
238
|
lifetimeUsedTrafficBytes: number;
|
|
233
239
|
onlineAt: string | null;
|
|
234
240
|
firstConnectedAt: string | null;
|
|
241
|
+
lastConnectedNodeUuid: string | null;
|
|
235
242
|
};
|
|
236
243
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
237
244
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"disable-user.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/actions/disable-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAAiC,CAAC;IAC3C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"disable-user.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/actions/disable-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAAiC,CAAC;IAC3C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,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"}
|
|
@@ -70,16 +70,19 @@ export declare namespace EnableUserCommand {
|
|
|
70
70
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
71
71
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
72
72
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
73
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
73
74
|
}, "strip", z.ZodTypeAny, {
|
|
74
75
|
usedTrafficBytes: number;
|
|
75
76
|
lifetimeUsedTrafficBytes: number;
|
|
76
77
|
onlineAt: Date | null;
|
|
77
78
|
firstConnectedAt: Date | null;
|
|
79
|
+
lastConnectedNodeUuid: string | null;
|
|
78
80
|
}, {
|
|
79
81
|
usedTrafficBytes: number;
|
|
80
82
|
lifetimeUsedTrafficBytes: number;
|
|
81
83
|
onlineAt: string | null;
|
|
82
84
|
firstConnectedAt: string | null;
|
|
85
|
+
lastConnectedNodeUuid: string | null;
|
|
83
86
|
}>;
|
|
84
87
|
}, "strip", z.ZodTypeAny, {
|
|
85
88
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -118,6 +121,7 @@ export declare namespace EnableUserCommand {
|
|
|
118
121
|
lifetimeUsedTrafficBytes: number;
|
|
119
122
|
onlineAt: Date | null;
|
|
120
123
|
firstConnectedAt: Date | null;
|
|
124
|
+
lastConnectedNodeUuid: string | null;
|
|
121
125
|
};
|
|
122
126
|
}, {
|
|
123
127
|
uuid: string;
|
|
@@ -152,6 +156,7 @@ export declare namespace EnableUserCommand {
|
|
|
152
156
|
lifetimeUsedTrafficBytes: number;
|
|
153
157
|
onlineAt: string | null;
|
|
154
158
|
firstConnectedAt: string | null;
|
|
159
|
+
lastConnectedNodeUuid: string | null;
|
|
155
160
|
};
|
|
156
161
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
157
162
|
trafficLimitBytes?: number | undefined;
|
|
@@ -196,6 +201,7 @@ export declare namespace EnableUserCommand {
|
|
|
196
201
|
lifetimeUsedTrafficBytes: number;
|
|
197
202
|
onlineAt: Date | null;
|
|
198
203
|
firstConnectedAt: Date | null;
|
|
204
|
+
lastConnectedNodeUuid: string | null;
|
|
199
205
|
};
|
|
200
206
|
};
|
|
201
207
|
}, {
|
|
@@ -232,6 +238,7 @@ export declare namespace EnableUserCommand {
|
|
|
232
238
|
lifetimeUsedTrafficBytes: number;
|
|
233
239
|
onlineAt: string | null;
|
|
234
240
|
firstConnectedAt: string | null;
|
|
241
|
+
lastConnectedNodeUuid: string | null;
|
|
235
242
|
};
|
|
236
243
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
237
244
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enable-user.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/actions/enable-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAgC,CAAC;IAC1C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"enable-user.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/actions/enable-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAgC,CAAC;IAC1C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,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"}
|
|
@@ -70,16 +70,19 @@ export declare namespace ResetUserTrafficCommand {
|
|
|
70
70
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
71
71
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
72
72
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
73
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
73
74
|
}, "strip", z.ZodTypeAny, {
|
|
74
75
|
usedTrafficBytes: number;
|
|
75
76
|
lifetimeUsedTrafficBytes: number;
|
|
76
77
|
onlineAt: Date | null;
|
|
77
78
|
firstConnectedAt: Date | null;
|
|
79
|
+
lastConnectedNodeUuid: string | null;
|
|
78
80
|
}, {
|
|
79
81
|
usedTrafficBytes: number;
|
|
80
82
|
lifetimeUsedTrafficBytes: number;
|
|
81
83
|
onlineAt: string | null;
|
|
82
84
|
firstConnectedAt: string | null;
|
|
85
|
+
lastConnectedNodeUuid: string | null;
|
|
83
86
|
}>;
|
|
84
87
|
}, "strip", z.ZodTypeAny, {
|
|
85
88
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -118,6 +121,7 @@ export declare namespace ResetUserTrafficCommand {
|
|
|
118
121
|
lifetimeUsedTrafficBytes: number;
|
|
119
122
|
onlineAt: Date | null;
|
|
120
123
|
firstConnectedAt: Date | null;
|
|
124
|
+
lastConnectedNodeUuid: string | null;
|
|
121
125
|
};
|
|
122
126
|
}, {
|
|
123
127
|
uuid: string;
|
|
@@ -152,6 +156,7 @@ export declare namespace ResetUserTrafficCommand {
|
|
|
152
156
|
lifetimeUsedTrafficBytes: number;
|
|
153
157
|
onlineAt: string | null;
|
|
154
158
|
firstConnectedAt: string | null;
|
|
159
|
+
lastConnectedNodeUuid: string | null;
|
|
155
160
|
};
|
|
156
161
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
157
162
|
trafficLimitBytes?: number | undefined;
|
|
@@ -196,6 +201,7 @@ export declare namespace ResetUserTrafficCommand {
|
|
|
196
201
|
lifetimeUsedTrafficBytes: number;
|
|
197
202
|
onlineAt: Date | null;
|
|
198
203
|
firstConnectedAt: Date | null;
|
|
204
|
+
lastConnectedNodeUuid: string | null;
|
|
199
205
|
};
|
|
200
206
|
};
|
|
201
207
|
}, {
|
|
@@ -232,6 +238,7 @@ export declare namespace ResetUserTrafficCommand {
|
|
|
232
238
|
lifetimeUsedTrafficBytes: number;
|
|
233
239
|
onlineAt: string | null;
|
|
234
240
|
firstConnectedAt: string | null;
|
|
241
|
+
lastConnectedNodeUuid: string | null;
|
|
235
242
|
};
|
|
236
243
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
237
244
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reset-user-traffic.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/actions/reset-user-traffic.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,uBAAuB,CAAC;IAC9B,MAAM,GAAG,0BAAuC,CAAC;IACjD,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"reset-user-traffic.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/actions/reset-user-traffic.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,uBAAuB,CAAC;IAC9B,MAAM,GAAG,0BAAuC,CAAC;IACjD,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,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"}
|
|
@@ -80,16 +80,19 @@ export declare namespace RevokeUserSubscriptionCommand {
|
|
|
80
80
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
81
81
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
82
82
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
83
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
83
84
|
}, "strip", z.ZodTypeAny, {
|
|
84
85
|
usedTrafficBytes: number;
|
|
85
86
|
lifetimeUsedTrafficBytes: number;
|
|
86
87
|
onlineAt: Date | null;
|
|
87
88
|
firstConnectedAt: Date | null;
|
|
89
|
+
lastConnectedNodeUuid: string | null;
|
|
88
90
|
}, {
|
|
89
91
|
usedTrafficBytes: number;
|
|
90
92
|
lifetimeUsedTrafficBytes: number;
|
|
91
93
|
onlineAt: string | null;
|
|
92
94
|
firstConnectedAt: string | null;
|
|
95
|
+
lastConnectedNodeUuid: string | null;
|
|
93
96
|
}>;
|
|
94
97
|
}, "strip", z.ZodTypeAny, {
|
|
95
98
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -128,6 +131,7 @@ export declare namespace RevokeUserSubscriptionCommand {
|
|
|
128
131
|
lifetimeUsedTrafficBytes: number;
|
|
129
132
|
onlineAt: Date | null;
|
|
130
133
|
firstConnectedAt: Date | null;
|
|
134
|
+
lastConnectedNodeUuid: string | null;
|
|
131
135
|
};
|
|
132
136
|
}, {
|
|
133
137
|
uuid: string;
|
|
@@ -162,6 +166,7 @@ export declare namespace RevokeUserSubscriptionCommand {
|
|
|
162
166
|
lifetimeUsedTrafficBytes: number;
|
|
163
167
|
onlineAt: string | null;
|
|
164
168
|
firstConnectedAt: string | null;
|
|
169
|
+
lastConnectedNodeUuid: string | null;
|
|
165
170
|
};
|
|
166
171
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
167
172
|
trafficLimitBytes?: number | undefined;
|
|
@@ -206,6 +211,7 @@ export declare namespace RevokeUserSubscriptionCommand {
|
|
|
206
211
|
lifetimeUsedTrafficBytes: number;
|
|
207
212
|
onlineAt: Date | null;
|
|
208
213
|
firstConnectedAt: Date | null;
|
|
214
|
+
lastConnectedNodeUuid: string | null;
|
|
209
215
|
};
|
|
210
216
|
};
|
|
211
217
|
}, {
|
|
@@ -242,6 +248,7 @@ export declare namespace RevokeUserSubscriptionCommand {
|
|
|
242
248
|
lifetimeUsedTrafficBytes: number;
|
|
243
249
|
onlineAt: string | null;
|
|
244
250
|
firstConnectedAt: string | null;
|
|
251
|
+
lastConnectedNodeUuid: string | null;
|
|
245
252
|
};
|
|
246
253
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
247
254
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"revoke-user-subscription.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/actions/revoke-user-subscription.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,0BAA6C,CAAC;IACvD,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,iBAAiB;;;;;;;;eAa7B,CAAC;IAEF,KAAY,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;IAErD,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"revoke-user-subscription.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/actions/revoke-user-subscription.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,0BAA6C,CAAC;IACvD,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,iBAAiB;;;;;;;;eAa7B,CAAC;IAEF,KAAY,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;IAErD,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -134,16 +134,19 @@ export declare namespace CreateUserCommand {
|
|
|
134
134
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
135
135
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
136
136
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
137
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
137
138
|
}, "strip", z.ZodTypeAny, {
|
|
138
139
|
usedTrafficBytes: number;
|
|
139
140
|
lifetimeUsedTrafficBytes: number;
|
|
140
141
|
onlineAt: Date | null;
|
|
141
142
|
firstConnectedAt: Date | null;
|
|
143
|
+
lastConnectedNodeUuid: string | null;
|
|
142
144
|
}, {
|
|
143
145
|
usedTrafficBytes: number;
|
|
144
146
|
lifetimeUsedTrafficBytes: number;
|
|
145
147
|
onlineAt: string | null;
|
|
146
148
|
firstConnectedAt: string | null;
|
|
149
|
+
lastConnectedNodeUuid: string | null;
|
|
147
150
|
}>;
|
|
148
151
|
}, "strip", z.ZodTypeAny, {
|
|
149
152
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -182,6 +185,7 @@ export declare namespace CreateUserCommand {
|
|
|
182
185
|
lifetimeUsedTrafficBytes: number;
|
|
183
186
|
onlineAt: Date | null;
|
|
184
187
|
firstConnectedAt: Date | null;
|
|
188
|
+
lastConnectedNodeUuid: string | null;
|
|
185
189
|
};
|
|
186
190
|
}, {
|
|
187
191
|
uuid: string;
|
|
@@ -216,6 +220,7 @@ export declare namespace CreateUserCommand {
|
|
|
216
220
|
lifetimeUsedTrafficBytes: number;
|
|
217
221
|
onlineAt: string | null;
|
|
218
222
|
firstConnectedAt: string | null;
|
|
223
|
+
lastConnectedNodeUuid: string | null;
|
|
219
224
|
};
|
|
220
225
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
221
226
|
trafficLimitBytes?: number | undefined;
|
|
@@ -260,6 +265,7 @@ export declare namespace CreateUserCommand {
|
|
|
260
265
|
lifetimeUsedTrafficBytes: number;
|
|
261
266
|
onlineAt: Date | null;
|
|
262
267
|
firstConnectedAt: Date | null;
|
|
268
|
+
lastConnectedNodeUuid: string | null;
|
|
263
269
|
};
|
|
264
270
|
};
|
|
265
271
|
}, {
|
|
@@ -296,6 +302,7 @@ export declare namespace CreateUserCommand {
|
|
|
296
302
|
lifetimeUsedTrafficBytes: number;
|
|
297
303
|
onlineAt: string | null;
|
|
298
304
|
firstConnectedAt: string | null;
|
|
305
|
+
lastConnectedNodeUuid: string | null;
|
|
299
306
|
};
|
|
300
307
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
301
308
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-user.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/create-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAmJxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"create-user.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/create-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAmJxB,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"}
|
|
@@ -116,16 +116,19 @@ export declare namespace GetAllUsersCommand {
|
|
|
116
116
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
117
117
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
118
118
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
119
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
119
120
|
}, "strip", z.ZodTypeAny, {
|
|
120
121
|
usedTrafficBytes: number;
|
|
121
122
|
lifetimeUsedTrafficBytes: number;
|
|
122
123
|
onlineAt: Date | null;
|
|
123
124
|
firstConnectedAt: Date | null;
|
|
125
|
+
lastConnectedNodeUuid: string | null;
|
|
124
126
|
}, {
|
|
125
127
|
usedTrafficBytes: number;
|
|
126
128
|
lifetimeUsedTrafficBytes: number;
|
|
127
129
|
onlineAt: string | null;
|
|
128
130
|
firstConnectedAt: string | null;
|
|
131
|
+
lastConnectedNodeUuid: string | null;
|
|
129
132
|
}>;
|
|
130
133
|
}, "strip", z.ZodTypeAny, {
|
|
131
134
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -164,6 +167,7 @@ export declare namespace GetAllUsersCommand {
|
|
|
164
167
|
lifetimeUsedTrafficBytes: number;
|
|
165
168
|
onlineAt: Date | null;
|
|
166
169
|
firstConnectedAt: Date | null;
|
|
170
|
+
lastConnectedNodeUuid: string | null;
|
|
167
171
|
};
|
|
168
172
|
}, {
|
|
169
173
|
uuid: string;
|
|
@@ -198,6 +202,7 @@ export declare namespace GetAllUsersCommand {
|
|
|
198
202
|
lifetimeUsedTrafficBytes: number;
|
|
199
203
|
onlineAt: string | null;
|
|
200
204
|
firstConnectedAt: string | null;
|
|
205
|
+
lastConnectedNodeUuid: string | null;
|
|
201
206
|
};
|
|
202
207
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
203
208
|
trafficLimitBytes?: number | undefined;
|
|
@@ -243,6 +248,7 @@ export declare namespace GetAllUsersCommand {
|
|
|
243
248
|
lifetimeUsedTrafficBytes: number;
|
|
244
249
|
onlineAt: Date | null;
|
|
245
250
|
firstConnectedAt: Date | null;
|
|
251
|
+
lastConnectedNodeUuid: string | null;
|
|
246
252
|
};
|
|
247
253
|
}[];
|
|
248
254
|
total: number;
|
|
@@ -280,6 +286,7 @@ export declare namespace GetAllUsersCommand {
|
|
|
280
286
|
lifetimeUsedTrafficBytes: number;
|
|
281
287
|
onlineAt: string | null;
|
|
282
288
|
firstConnectedAt: string | null;
|
|
289
|
+
lastConnectedNodeUuid: string | null;
|
|
283
290
|
};
|
|
284
291
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
285
292
|
trafficLimitBytes?: number | undefined;
|
|
@@ -327,6 +334,7 @@ export declare namespace GetAllUsersCommand {
|
|
|
327
334
|
lifetimeUsedTrafficBytes: number;
|
|
328
335
|
onlineAt: Date | null;
|
|
329
336
|
firstConnectedAt: Date | null;
|
|
337
|
+
lastConnectedNodeUuid: string | null;
|
|
330
338
|
};
|
|
331
339
|
}[];
|
|
332
340
|
total: number;
|
|
@@ -366,6 +374,7 @@ export declare namespace GetAllUsersCommand {
|
|
|
366
374
|
lifetimeUsedTrafficBytes: number;
|
|
367
375
|
onlineAt: string | null;
|
|
368
376
|
firstConnectedAt: string | null;
|
|
377
|
+
lastConnectedNodeUuid: string | null;
|
|
369
378
|
};
|
|
370
379
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
371
380
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-all-users.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-all-users.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAA+D,CAAC;IAErF,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAkC,CAAC;IAElE,KAAY,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAEvD,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"get-all-users.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-all-users.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAA+D,CAAC;IAErF,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAkC,CAAC;IAElE,KAAY,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAEvD,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -70,16 +70,19 @@ export declare namespace GetUserByEmailCommand {
|
|
|
70
70
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
71
71
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
72
72
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
73
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
73
74
|
}, "strip", z.ZodTypeAny, {
|
|
74
75
|
usedTrafficBytes: number;
|
|
75
76
|
lifetimeUsedTrafficBytes: number;
|
|
76
77
|
onlineAt: Date | null;
|
|
77
78
|
firstConnectedAt: Date | null;
|
|
79
|
+
lastConnectedNodeUuid: string | null;
|
|
78
80
|
}, {
|
|
79
81
|
usedTrafficBytes: number;
|
|
80
82
|
lifetimeUsedTrafficBytes: number;
|
|
81
83
|
onlineAt: string | null;
|
|
82
84
|
firstConnectedAt: string | null;
|
|
85
|
+
lastConnectedNodeUuid: string | null;
|
|
83
86
|
}>;
|
|
84
87
|
}, "strip", z.ZodTypeAny, {
|
|
85
88
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -118,6 +121,7 @@ export declare namespace GetUserByEmailCommand {
|
|
|
118
121
|
lifetimeUsedTrafficBytes: number;
|
|
119
122
|
onlineAt: Date | null;
|
|
120
123
|
firstConnectedAt: Date | null;
|
|
124
|
+
lastConnectedNodeUuid: string | null;
|
|
121
125
|
};
|
|
122
126
|
}, {
|
|
123
127
|
uuid: string;
|
|
@@ -152,6 +156,7 @@ export declare namespace GetUserByEmailCommand {
|
|
|
152
156
|
lifetimeUsedTrafficBytes: number;
|
|
153
157
|
onlineAt: string | null;
|
|
154
158
|
firstConnectedAt: string | null;
|
|
159
|
+
lastConnectedNodeUuid: string | null;
|
|
155
160
|
};
|
|
156
161
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
157
162
|
trafficLimitBytes?: number | undefined;
|
|
@@ -196,6 +201,7 @@ export declare namespace GetUserByEmailCommand {
|
|
|
196
201
|
lifetimeUsedTrafficBytes: number;
|
|
197
202
|
onlineAt: Date | null;
|
|
198
203
|
firstConnectedAt: Date | null;
|
|
204
|
+
lastConnectedNodeUuid: string | null;
|
|
199
205
|
};
|
|
200
206
|
}[];
|
|
201
207
|
}, {
|
|
@@ -232,6 +238,7 @@ export declare namespace GetUserByEmailCommand {
|
|
|
232
238
|
lifetimeUsedTrafficBytes: number;
|
|
233
239
|
onlineAt: string | null;
|
|
234
240
|
firstConnectedAt: string | null;
|
|
241
|
+
lastConnectedNodeUuid: string | null;
|
|
235
242
|
};
|
|
236
243
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
237
244
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-user-by-email.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/get-by/get-user-by-email.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,qBAAqB,CAAC;IAC5B,MAAM,GAAG,2BAA8B,CAAC;IACxC,MAAM,OAAO,QAAgB,CAAC;IAE9B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"get-user-by-email.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/get-by/get-user-by-email.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,qBAAqB,CAAC;IAC5B,MAAM,GAAG,2BAA8B,CAAC;IACxC,MAAM,OAAO,QAAgB,CAAC;IAE9B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,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"}
|
|
@@ -70,16 +70,19 @@ export declare namespace GetUserByShortUuidCommand {
|
|
|
70
70
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
71
71
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
72
72
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
73
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
73
74
|
}, "strip", z.ZodTypeAny, {
|
|
74
75
|
usedTrafficBytes: number;
|
|
75
76
|
lifetimeUsedTrafficBytes: number;
|
|
76
77
|
onlineAt: Date | null;
|
|
77
78
|
firstConnectedAt: Date | null;
|
|
79
|
+
lastConnectedNodeUuid: string | null;
|
|
78
80
|
}, {
|
|
79
81
|
usedTrafficBytes: number;
|
|
80
82
|
lifetimeUsedTrafficBytes: number;
|
|
81
83
|
onlineAt: string | null;
|
|
82
84
|
firstConnectedAt: string | null;
|
|
85
|
+
lastConnectedNodeUuid: string | null;
|
|
83
86
|
}>;
|
|
84
87
|
}, "strip", z.ZodTypeAny, {
|
|
85
88
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -118,6 +121,7 @@ export declare namespace GetUserByShortUuidCommand {
|
|
|
118
121
|
lifetimeUsedTrafficBytes: number;
|
|
119
122
|
onlineAt: Date | null;
|
|
120
123
|
firstConnectedAt: Date | null;
|
|
124
|
+
lastConnectedNodeUuid: string | null;
|
|
121
125
|
};
|
|
122
126
|
}, {
|
|
123
127
|
uuid: string;
|
|
@@ -152,6 +156,7 @@ export declare namespace GetUserByShortUuidCommand {
|
|
|
152
156
|
lifetimeUsedTrafficBytes: number;
|
|
153
157
|
onlineAt: string | null;
|
|
154
158
|
firstConnectedAt: string | null;
|
|
159
|
+
lastConnectedNodeUuid: string | null;
|
|
155
160
|
};
|
|
156
161
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
157
162
|
trafficLimitBytes?: number | undefined;
|
|
@@ -196,6 +201,7 @@ export declare namespace GetUserByShortUuidCommand {
|
|
|
196
201
|
lifetimeUsedTrafficBytes: number;
|
|
197
202
|
onlineAt: Date | null;
|
|
198
203
|
firstConnectedAt: Date | null;
|
|
204
|
+
lastConnectedNodeUuid: string | null;
|
|
199
205
|
};
|
|
200
206
|
};
|
|
201
207
|
}, {
|
|
@@ -232,6 +238,7 @@ export declare namespace GetUserByShortUuidCommand {
|
|
|
232
238
|
lifetimeUsedTrafficBytes: number;
|
|
233
239
|
onlineAt: string | null;
|
|
234
240
|
firstConnectedAt: string | null;
|
|
241
|
+
lastConnectedNodeUuid: string | null;
|
|
235
242
|
};
|
|
236
243
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
237
244
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-user-by-short-uuid.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/get-by/get-user-by-short-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,yBAAyB,CAAC;IAChC,MAAM,GAAG,+BAAmC,CAAC;IAC7C,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,cAAc
|
|
1
|
+
{"version":3,"file":"get-user-by-short-uuid.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/get-by/get-user-by-short-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,yBAAyB,CAAC;IAChC,MAAM,GAAG,+BAAmC,CAAC;IAC7C,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,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -70,16 +70,19 @@ export declare namespace GetUserByTagCommand {
|
|
|
70
70
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
71
71
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
72
72
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
73
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
73
74
|
}, "strip", z.ZodTypeAny, {
|
|
74
75
|
usedTrafficBytes: number;
|
|
75
76
|
lifetimeUsedTrafficBytes: number;
|
|
76
77
|
onlineAt: Date | null;
|
|
77
78
|
firstConnectedAt: Date | null;
|
|
79
|
+
lastConnectedNodeUuid: string | null;
|
|
78
80
|
}, {
|
|
79
81
|
usedTrafficBytes: number;
|
|
80
82
|
lifetimeUsedTrafficBytes: number;
|
|
81
83
|
onlineAt: string | null;
|
|
82
84
|
firstConnectedAt: string | null;
|
|
85
|
+
lastConnectedNodeUuid: string | null;
|
|
83
86
|
}>;
|
|
84
87
|
}, "strip", z.ZodTypeAny, {
|
|
85
88
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -118,6 +121,7 @@ export declare namespace GetUserByTagCommand {
|
|
|
118
121
|
lifetimeUsedTrafficBytes: number;
|
|
119
122
|
onlineAt: Date | null;
|
|
120
123
|
firstConnectedAt: Date | null;
|
|
124
|
+
lastConnectedNodeUuid: string | null;
|
|
121
125
|
};
|
|
122
126
|
}, {
|
|
123
127
|
uuid: string;
|
|
@@ -152,6 +156,7 @@ export declare namespace GetUserByTagCommand {
|
|
|
152
156
|
lifetimeUsedTrafficBytes: number;
|
|
153
157
|
onlineAt: string | null;
|
|
154
158
|
firstConnectedAt: string | null;
|
|
159
|
+
lastConnectedNodeUuid: string | null;
|
|
155
160
|
};
|
|
156
161
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
157
162
|
trafficLimitBytes?: number | undefined;
|
|
@@ -196,6 +201,7 @@ export declare namespace GetUserByTagCommand {
|
|
|
196
201
|
lifetimeUsedTrafficBytes: number;
|
|
197
202
|
onlineAt: Date | null;
|
|
198
203
|
firstConnectedAt: Date | null;
|
|
204
|
+
lastConnectedNodeUuid: string | null;
|
|
199
205
|
};
|
|
200
206
|
}[];
|
|
201
207
|
}, {
|
|
@@ -232,6 +238,7 @@ export declare namespace GetUserByTagCommand {
|
|
|
232
238
|
lifetimeUsedTrafficBytes: number;
|
|
233
239
|
onlineAt: string | null;
|
|
234
240
|
firstConnectedAt: string | null;
|
|
241
|
+
lastConnectedNodeUuid: string | null;
|
|
235
242
|
};
|
|
236
243
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
237
244
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-user-by-tag.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/get-by/get-user-by-tag.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,mBAAmB,CAAC;IAC1B,MAAM,GAAG,yBAA4B,CAAC;IACtC,MAAM,OAAO,QAAc,CAAC;IAE5B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAKxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"get-user-by-tag.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/get-by/get-user-by-tag.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,mBAAmB,CAAC;IAC1B,MAAM,GAAG,yBAA4B,CAAC;IACtC,MAAM,OAAO,QAAc,CAAC;IAE5B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAKxB,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"}
|
|
@@ -70,16 +70,19 @@ export declare namespace GetUserByTelegramIdCommand {
|
|
|
70
70
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
71
71
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
72
72
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
73
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
73
74
|
}, "strip", z.ZodTypeAny, {
|
|
74
75
|
usedTrafficBytes: number;
|
|
75
76
|
lifetimeUsedTrafficBytes: number;
|
|
76
77
|
onlineAt: Date | null;
|
|
77
78
|
firstConnectedAt: Date | null;
|
|
79
|
+
lastConnectedNodeUuid: string | null;
|
|
78
80
|
}, {
|
|
79
81
|
usedTrafficBytes: number;
|
|
80
82
|
lifetimeUsedTrafficBytes: number;
|
|
81
83
|
onlineAt: string | null;
|
|
82
84
|
firstConnectedAt: string | null;
|
|
85
|
+
lastConnectedNodeUuid: string | null;
|
|
83
86
|
}>;
|
|
84
87
|
}, "strip", z.ZodTypeAny, {
|
|
85
88
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -118,6 +121,7 @@ export declare namespace GetUserByTelegramIdCommand {
|
|
|
118
121
|
lifetimeUsedTrafficBytes: number;
|
|
119
122
|
onlineAt: Date | null;
|
|
120
123
|
firstConnectedAt: Date | null;
|
|
124
|
+
lastConnectedNodeUuid: string | null;
|
|
121
125
|
};
|
|
122
126
|
}, {
|
|
123
127
|
uuid: string;
|
|
@@ -152,6 +156,7 @@ export declare namespace GetUserByTelegramIdCommand {
|
|
|
152
156
|
lifetimeUsedTrafficBytes: number;
|
|
153
157
|
onlineAt: string | null;
|
|
154
158
|
firstConnectedAt: string | null;
|
|
159
|
+
lastConnectedNodeUuid: string | null;
|
|
155
160
|
};
|
|
156
161
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
157
162
|
trafficLimitBytes?: number | undefined;
|
|
@@ -196,6 +201,7 @@ export declare namespace GetUserByTelegramIdCommand {
|
|
|
196
201
|
lifetimeUsedTrafficBytes: number;
|
|
197
202
|
onlineAt: Date | null;
|
|
198
203
|
firstConnectedAt: Date | null;
|
|
204
|
+
lastConnectedNodeUuid: string | null;
|
|
199
205
|
};
|
|
200
206
|
}[];
|
|
201
207
|
}, {
|
|
@@ -232,6 +238,7 @@ export declare namespace GetUserByTelegramIdCommand {
|
|
|
232
238
|
lifetimeUsedTrafficBytes: number;
|
|
233
239
|
onlineAt: string | null;
|
|
234
240
|
firstConnectedAt: string | null;
|
|
241
|
+
lastConnectedNodeUuid: string | null;
|
|
235
242
|
};
|
|
236
243
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
237
244
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-user-by-telegram-id.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/get-by/get-user-by-telegram-id.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,gCAAoC,CAAC;IAC9C,MAAM,OAAO,QAAqB,CAAC;IAEnC,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"get-user-by-telegram-id.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/get-by/get-user-by-telegram-id.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,gCAAoC,CAAC;IAC9C,MAAM,OAAO,QAAqB,CAAC;IAEnC,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,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"}
|
|
@@ -70,16 +70,19 @@ export declare namespace GetUserByUsernameCommand {
|
|
|
70
70
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
71
71
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
72
72
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
73
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
73
74
|
}, "strip", z.ZodTypeAny, {
|
|
74
75
|
usedTrafficBytes: number;
|
|
75
76
|
lifetimeUsedTrafficBytes: number;
|
|
76
77
|
onlineAt: Date | null;
|
|
77
78
|
firstConnectedAt: Date | null;
|
|
79
|
+
lastConnectedNodeUuid: string | null;
|
|
78
80
|
}, {
|
|
79
81
|
usedTrafficBytes: number;
|
|
80
82
|
lifetimeUsedTrafficBytes: number;
|
|
81
83
|
onlineAt: string | null;
|
|
82
84
|
firstConnectedAt: string | null;
|
|
85
|
+
lastConnectedNodeUuid: string | null;
|
|
83
86
|
}>;
|
|
84
87
|
}, "strip", z.ZodTypeAny, {
|
|
85
88
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -118,6 +121,7 @@ export declare namespace GetUserByUsernameCommand {
|
|
|
118
121
|
lifetimeUsedTrafficBytes: number;
|
|
119
122
|
onlineAt: Date | null;
|
|
120
123
|
firstConnectedAt: Date | null;
|
|
124
|
+
lastConnectedNodeUuid: string | null;
|
|
121
125
|
};
|
|
122
126
|
}, {
|
|
123
127
|
uuid: string;
|
|
@@ -152,6 +156,7 @@ export declare namespace GetUserByUsernameCommand {
|
|
|
152
156
|
lifetimeUsedTrafficBytes: number;
|
|
153
157
|
onlineAt: string | null;
|
|
154
158
|
firstConnectedAt: string | null;
|
|
159
|
+
lastConnectedNodeUuid: string | null;
|
|
155
160
|
};
|
|
156
161
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
157
162
|
trafficLimitBytes?: number | undefined;
|
|
@@ -196,6 +201,7 @@ export declare namespace GetUserByUsernameCommand {
|
|
|
196
201
|
lifetimeUsedTrafficBytes: number;
|
|
197
202
|
onlineAt: Date | null;
|
|
198
203
|
firstConnectedAt: Date | null;
|
|
204
|
+
lastConnectedNodeUuid: string | null;
|
|
199
205
|
};
|
|
200
206
|
};
|
|
201
207
|
}, {
|
|
@@ -232,6 +238,7 @@ export declare namespace GetUserByUsernameCommand {
|
|
|
232
238
|
lifetimeUsedTrafficBytes: number;
|
|
233
239
|
onlineAt: string | null;
|
|
234
240
|
firstConnectedAt: string | null;
|
|
241
|
+
lastConnectedNodeUuid: string | null;
|
|
235
242
|
};
|
|
236
243
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
237
244
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-user-by-username.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/get-by/get-user-by-username.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,wBAAwB,CAAC;IAC/B,MAAM,GAAG,8BAAiC,CAAC;IAC3C,MAAM,OAAO,QAAmB,CAAC;IAEjC,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"get-user-by-username.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/get-by/get-user-by-username.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,wBAAwB,CAAC;IAC/B,MAAM,GAAG,8BAAiC,CAAC;IAC3C,MAAM,OAAO,QAAmB,CAAC;IAEjC,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,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"}
|
|
@@ -70,16 +70,19 @@ export declare namespace GetUserByUuidCommand {
|
|
|
70
70
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
71
71
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
72
72
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
73
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
73
74
|
}, "strip", z.ZodTypeAny, {
|
|
74
75
|
usedTrafficBytes: number;
|
|
75
76
|
lifetimeUsedTrafficBytes: number;
|
|
76
77
|
onlineAt: Date | null;
|
|
77
78
|
firstConnectedAt: Date | null;
|
|
79
|
+
lastConnectedNodeUuid: string | null;
|
|
78
80
|
}, {
|
|
79
81
|
usedTrafficBytes: number;
|
|
80
82
|
lifetimeUsedTrafficBytes: number;
|
|
81
83
|
onlineAt: string | null;
|
|
82
84
|
firstConnectedAt: string | null;
|
|
85
|
+
lastConnectedNodeUuid: string | null;
|
|
83
86
|
}>;
|
|
84
87
|
}, "strip", z.ZodTypeAny, {
|
|
85
88
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -118,6 +121,7 @@ export declare namespace GetUserByUuidCommand {
|
|
|
118
121
|
lifetimeUsedTrafficBytes: number;
|
|
119
122
|
onlineAt: Date | null;
|
|
120
123
|
firstConnectedAt: Date | null;
|
|
124
|
+
lastConnectedNodeUuid: string | null;
|
|
121
125
|
};
|
|
122
126
|
}, {
|
|
123
127
|
uuid: string;
|
|
@@ -152,6 +156,7 @@ export declare namespace GetUserByUuidCommand {
|
|
|
152
156
|
lifetimeUsedTrafficBytes: number;
|
|
153
157
|
onlineAt: string | null;
|
|
154
158
|
firstConnectedAt: string | null;
|
|
159
|
+
lastConnectedNodeUuid: string | null;
|
|
155
160
|
};
|
|
156
161
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
157
162
|
trafficLimitBytes?: number | undefined;
|
|
@@ -196,6 +201,7 @@ export declare namespace GetUserByUuidCommand {
|
|
|
196
201
|
lifetimeUsedTrafficBytes: number;
|
|
197
202
|
onlineAt: Date | null;
|
|
198
203
|
firstConnectedAt: Date | null;
|
|
204
|
+
lastConnectedNodeUuid: string | null;
|
|
199
205
|
};
|
|
200
206
|
};
|
|
201
207
|
}, {
|
|
@@ -232,6 +238,7 @@ export declare namespace GetUserByUuidCommand {
|
|
|
232
238
|
lifetimeUsedTrafficBytes: number;
|
|
233
239
|
onlineAt: string | null;
|
|
234
240
|
firstConnectedAt: string | null;
|
|
241
|
+
lastConnectedNodeUuid: string | null;
|
|
235
242
|
};
|
|
236
243
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
237
244
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-user-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,oBAAoB,CAAC;IAC3B,MAAM,GAAG,0BAA6B,CAAC;IACvC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"get-user-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-user-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,oBAAoB,CAAC;IAC3B,MAAM,GAAG,0BAA6B,CAAC;IACvC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,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"}
|
|
@@ -139,16 +139,19 @@ export declare namespace UpdateUserCommand {
|
|
|
139
139
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
140
140
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
141
141
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
142
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
142
143
|
}, "strip", z.ZodTypeAny, {
|
|
143
144
|
usedTrafficBytes: number;
|
|
144
145
|
lifetimeUsedTrafficBytes: number;
|
|
145
146
|
onlineAt: Date | null;
|
|
146
147
|
firstConnectedAt: Date | null;
|
|
148
|
+
lastConnectedNodeUuid: string | null;
|
|
147
149
|
}, {
|
|
148
150
|
usedTrafficBytes: number;
|
|
149
151
|
lifetimeUsedTrafficBytes: number;
|
|
150
152
|
onlineAt: string | null;
|
|
151
153
|
firstConnectedAt: string | null;
|
|
154
|
+
lastConnectedNodeUuid: string | null;
|
|
152
155
|
}>;
|
|
153
156
|
}, "strip", z.ZodTypeAny, {
|
|
154
157
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -187,6 +190,7 @@ export declare namespace UpdateUserCommand {
|
|
|
187
190
|
lifetimeUsedTrafficBytes: number;
|
|
188
191
|
onlineAt: Date | null;
|
|
189
192
|
firstConnectedAt: Date | null;
|
|
193
|
+
lastConnectedNodeUuid: string | null;
|
|
190
194
|
};
|
|
191
195
|
}, {
|
|
192
196
|
uuid: string;
|
|
@@ -221,6 +225,7 @@ export declare namespace UpdateUserCommand {
|
|
|
221
225
|
lifetimeUsedTrafficBytes: number;
|
|
222
226
|
onlineAt: string | null;
|
|
223
227
|
firstConnectedAt: string | null;
|
|
228
|
+
lastConnectedNodeUuid: string | null;
|
|
224
229
|
};
|
|
225
230
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
226
231
|
trafficLimitBytes?: number | undefined;
|
|
@@ -265,6 +270,7 @@ export declare namespace UpdateUserCommand {
|
|
|
265
270
|
lifetimeUsedTrafficBytes: number;
|
|
266
271
|
onlineAt: Date | null;
|
|
267
272
|
firstConnectedAt: Date | null;
|
|
273
|
+
lastConnectedNodeUuid: string | null;
|
|
268
274
|
};
|
|
269
275
|
};
|
|
270
276
|
}, {
|
|
@@ -301,6 +307,7 @@ export declare namespace UpdateUserCommand {
|
|
|
301
307
|
lifetimeUsedTrafficBytes: number;
|
|
302
308
|
onlineAt: string | null;
|
|
303
309
|
firstConnectedAt: string | null;
|
|
310
|
+
lastConnectedNodeUuid: string | null;
|
|
304
311
|
};
|
|
305
312
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
306
313
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-user.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/update-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA8EpB,CAAC;IAEP,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"update-user.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/update-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA8EpB,CAAC;IAEP,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"}
|
|
@@ -57,16 +57,19 @@ export declare const ExtendedUsersSchema: z.ZodObject<{
|
|
|
57
57
|
lifetimeUsedTrafficBytes: z.ZodNumber;
|
|
58
58
|
onlineAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
59
59
|
firstConnectedAt: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
60
|
+
lastConnectedNodeUuid: z.ZodNullable<z.ZodString>;
|
|
60
61
|
}, "strip", z.ZodTypeAny, {
|
|
61
62
|
usedTrafficBytes: number;
|
|
62
63
|
lifetimeUsedTrafficBytes: number;
|
|
63
64
|
onlineAt: Date | null;
|
|
64
65
|
firstConnectedAt: Date | null;
|
|
66
|
+
lastConnectedNodeUuid: string | null;
|
|
65
67
|
}, {
|
|
66
68
|
usedTrafficBytes: number;
|
|
67
69
|
lifetimeUsedTrafficBytes: number;
|
|
68
70
|
onlineAt: string | null;
|
|
69
71
|
firstConnectedAt: string | null;
|
|
72
|
+
lastConnectedNodeUuid: string | null;
|
|
70
73
|
}>;
|
|
71
74
|
}, "strip", z.ZodTypeAny, {
|
|
72
75
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
|
@@ -105,6 +108,7 @@ export declare const ExtendedUsersSchema: z.ZodObject<{
|
|
|
105
108
|
lifetimeUsedTrafficBytes: number;
|
|
106
109
|
onlineAt: Date | null;
|
|
107
110
|
firstConnectedAt: Date | null;
|
|
111
|
+
lastConnectedNodeUuid: string | null;
|
|
108
112
|
};
|
|
109
113
|
}, {
|
|
110
114
|
uuid: string;
|
|
@@ -139,6 +143,7 @@ export declare const ExtendedUsersSchema: z.ZodObject<{
|
|
|
139
143
|
lifetimeUsedTrafficBytes: number;
|
|
140
144
|
onlineAt: string | null;
|
|
141
145
|
firstConnectedAt: string | null;
|
|
146
|
+
lastConnectedNodeUuid: string | null;
|
|
142
147
|
};
|
|
143
148
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
|
144
149
|
trafficLimitBytes?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extended-users.schema.d.ts","sourceRoot":"","sources":["../../../models/extended-users.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"extended-users.schema.d.ts","sourceRoot":"","sources":["../../../models/extended-users.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqB9B,CAAC"}
|