@remnawave/backend-contract 2.8.23 → 2.8.24
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 +52 -7
- package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.js +8 -1
- package/build/frontend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.js +8 -1
- package/package.json +1 -1
package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts
CHANGED
|
@@ -162,19 +162,44 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
162
162
|
trafficLimit: z.ZodString;
|
|
163
163
|
trafficUsed: z.ZodString;
|
|
164
164
|
lifetimeTrafficUsed: z.ZodString;
|
|
165
|
-
|
|
165
|
+
hwidCheckup: z.ZodNullable<z.ZodObject<{
|
|
166
|
+
subscriptionAllowed: z.ZodBoolean;
|
|
167
|
+
maxDeviceReached: z.ZodBoolean;
|
|
168
|
+
hwidNotSupported: z.ZodBoolean;
|
|
169
|
+
limitBypassed: z.ZodBoolean;
|
|
170
|
+
}, "strip", z.ZodTypeAny, {
|
|
171
|
+
subscriptionAllowed: boolean;
|
|
172
|
+
maxDeviceReached: boolean;
|
|
173
|
+
hwidNotSupported: boolean;
|
|
174
|
+
limitBypassed: boolean;
|
|
175
|
+
}, {
|
|
176
|
+
subscriptionAllowed: boolean;
|
|
177
|
+
maxDeviceReached: boolean;
|
|
178
|
+
hwidNotSupported: boolean;
|
|
179
|
+
limitBypassed: boolean;
|
|
180
|
+
}>>;
|
|
166
181
|
}, "strip", z.ZodTypeAny, {
|
|
167
182
|
daysLeft: number;
|
|
168
183
|
trafficUsed: string;
|
|
169
184
|
trafficLimit: string;
|
|
170
185
|
lifetimeTrafficUsed: string;
|
|
171
|
-
|
|
186
|
+
hwidCheckup: {
|
|
187
|
+
subscriptionAllowed: boolean;
|
|
188
|
+
maxDeviceReached: boolean;
|
|
189
|
+
hwidNotSupported: boolean;
|
|
190
|
+
limitBypassed: boolean;
|
|
191
|
+
} | null;
|
|
172
192
|
}, {
|
|
173
193
|
daysLeft: number;
|
|
174
194
|
trafficUsed: string;
|
|
175
195
|
trafficLimit: string;
|
|
176
196
|
lifetimeTrafficUsed: string;
|
|
177
|
-
|
|
197
|
+
hwidCheckup: {
|
|
198
|
+
subscriptionAllowed: boolean;
|
|
199
|
+
maxDeviceReached: boolean;
|
|
200
|
+
hwidNotSupported: boolean;
|
|
201
|
+
limitBypassed: boolean;
|
|
202
|
+
} | null;
|
|
178
203
|
}>;
|
|
179
204
|
headers: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>;
|
|
180
205
|
resolvedProxyConfigs: z.ZodArray<z.ZodObject<{
|
|
@@ -798,7 +823,12 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
798
823
|
trafficUsed: string;
|
|
799
824
|
trafficLimit: string;
|
|
800
825
|
lifetimeTrafficUsed: string;
|
|
801
|
-
|
|
826
|
+
hwidCheckup: {
|
|
827
|
+
subscriptionAllowed: boolean;
|
|
828
|
+
maxDeviceReached: boolean;
|
|
829
|
+
hwidNotSupported: boolean;
|
|
830
|
+
limitBypassed: boolean;
|
|
831
|
+
} | null;
|
|
802
832
|
};
|
|
803
833
|
resolvedProxyConfigs: {
|
|
804
834
|
metadata: {
|
|
@@ -952,7 +982,12 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
952
982
|
trafficUsed: string;
|
|
953
983
|
trafficLimit: string;
|
|
954
984
|
lifetimeTrafficUsed: string;
|
|
955
|
-
|
|
985
|
+
hwidCheckup: {
|
|
986
|
+
subscriptionAllowed: boolean;
|
|
987
|
+
maxDeviceReached: boolean;
|
|
988
|
+
hwidNotSupported: boolean;
|
|
989
|
+
limitBypassed: boolean;
|
|
990
|
+
} | null;
|
|
956
991
|
};
|
|
957
992
|
resolvedProxyConfigs: {
|
|
958
993
|
metadata: {
|
|
@@ -1108,7 +1143,12 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
1108
1143
|
trafficUsed: string;
|
|
1109
1144
|
trafficLimit: string;
|
|
1110
1145
|
lifetimeTrafficUsed: string;
|
|
1111
|
-
|
|
1146
|
+
hwidCheckup: {
|
|
1147
|
+
subscriptionAllowed: boolean;
|
|
1148
|
+
maxDeviceReached: boolean;
|
|
1149
|
+
hwidNotSupported: boolean;
|
|
1150
|
+
limitBypassed: boolean;
|
|
1151
|
+
} | null;
|
|
1112
1152
|
};
|
|
1113
1153
|
resolvedProxyConfigs: {
|
|
1114
1154
|
metadata: {
|
|
@@ -1264,7 +1304,12 @@ export declare namespace GetRawSubscriptionByShortUuidCommand {
|
|
|
1264
1304
|
trafficUsed: string;
|
|
1265
1305
|
trafficLimit: string;
|
|
1266
1306
|
lifetimeTrafficUsed: string;
|
|
1267
|
-
|
|
1307
|
+
hwidCheckup: {
|
|
1308
|
+
subscriptionAllowed: boolean;
|
|
1309
|
+
maxDeviceReached: boolean;
|
|
1310
|
+
hwidNotSupported: boolean;
|
|
1311
|
+
limitBypassed: boolean;
|
|
1312
|
+
} | null;
|
|
1268
1313
|
};
|
|
1269
1314
|
resolvedProxyConfigs: {
|
|
1270
1315
|
metadata: {
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAoBzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.js
CHANGED
|
@@ -28,7 +28,14 @@ var GetRawSubscriptionByShortUuidCommand;
|
|
|
28
28
|
trafficLimit: zod_1.z.string(),
|
|
29
29
|
trafficUsed: zod_1.z.string(),
|
|
30
30
|
lifetimeTrafficUsed: zod_1.z.string(),
|
|
31
|
-
|
|
31
|
+
hwidCheckup: zod_1.z
|
|
32
|
+
.object({
|
|
33
|
+
subscriptionAllowed: zod_1.z.boolean(),
|
|
34
|
+
maxDeviceReached: zod_1.z.boolean(),
|
|
35
|
+
hwidNotSupported: zod_1.z.boolean(),
|
|
36
|
+
limitBypassed: zod_1.z.boolean(),
|
|
37
|
+
})
|
|
38
|
+
.nullable(),
|
|
32
39
|
}),
|
|
33
40
|
headers: zod_1.z.record(zod_1.z.string(), zod_1.z.string().optional()),
|
|
34
41
|
resolvedProxyConfigs: zod_1.z.array(models_1.ResolvedProxyConfigSchema),
|
package/build/frontend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.js
CHANGED
|
@@ -28,7 +28,14 @@ var GetRawSubscriptionByShortUuidCommand;
|
|
|
28
28
|
trafficLimit: zod_1.z.string(),
|
|
29
29
|
trafficUsed: zod_1.z.string(),
|
|
30
30
|
lifetimeTrafficUsed: zod_1.z.string(),
|
|
31
|
-
|
|
31
|
+
hwidCheckup: zod_1.z
|
|
32
|
+
.object({
|
|
33
|
+
subscriptionAllowed: zod_1.z.boolean(),
|
|
34
|
+
maxDeviceReached: zod_1.z.boolean(),
|
|
35
|
+
hwidNotSupported: zod_1.z.boolean(),
|
|
36
|
+
limitBypassed: zod_1.z.boolean(),
|
|
37
|
+
})
|
|
38
|
+
.nullable(),
|
|
32
39
|
}),
|
|
33
40
|
headers: zod_1.z.record(zod_1.z.string(), zod_1.z.string().optional()),
|
|
34
41
|
resolvedProxyConfigs: zod_1.z.array(models_1.ResolvedProxyConfigSchema),
|