@moonbase.sh/api 0.4.40 → 0.4.41

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/dist/index.cjs CHANGED
@@ -361,6 +361,7 @@ var activationRequestSchema = import_zod6.z.object({
361
361
  deviceName: import_zod6.z.string(),
362
362
  deviceSignature: import_zod6.z.string(),
363
363
  status: import_zod6.z.nativeEnum(ActivationRequestStatus),
364
+ browser: import_zod6.z.string(),
364
365
  product: productSchema,
365
366
  activation: licenseActivationSchema.optional(),
366
367
  trial: trialSchema.optional()
package/dist/index.d.cts CHANGED
@@ -19,6 +19,7 @@ declare const activationRequestSchema: z.ZodObject<{
19
19
  deviceName: z.ZodString;
20
20
  deviceSignature: z.ZodString;
21
21
  status: z.ZodNativeEnum<typeof ActivationRequestStatus>;
22
+ browser: z.ZodString;
22
23
  product: z.ZodObject<{
23
24
  id: z.ZodString;
24
25
  name: z.ZodString;
@@ -1104,6 +1105,7 @@ declare const activationRequestSchema: z.ZodObject<{
1104
1105
  id: string;
1105
1106
  deviceName: string;
1106
1107
  deviceSignature: string;
1108
+ browser: string;
1107
1109
  product: {
1108
1110
  status: ProductStatus;
1109
1111
  id: string;
@@ -1295,6 +1297,7 @@ declare const activationRequestSchema: z.ZodObject<{
1295
1297
  id: string;
1296
1298
  deviceName: string;
1297
1299
  deviceSignature: string;
1300
+ browser: string;
1298
1301
  product: {
1299
1302
  status: ProductStatus;
1300
1303
  id: string;
package/dist/index.d.ts CHANGED
@@ -19,6 +19,7 @@ declare const activationRequestSchema: z.ZodObject<{
19
19
  deviceName: z.ZodString;
20
20
  deviceSignature: z.ZodString;
21
21
  status: z.ZodNativeEnum<typeof ActivationRequestStatus>;
22
+ browser: z.ZodString;
22
23
  product: z.ZodObject<{
23
24
  id: z.ZodString;
24
25
  name: z.ZodString;
@@ -1104,6 +1105,7 @@ declare const activationRequestSchema: z.ZodObject<{
1104
1105
  id: string;
1105
1106
  deviceName: string;
1106
1107
  deviceSignature: string;
1108
+ browser: string;
1107
1109
  product: {
1108
1110
  status: ProductStatus;
1109
1111
  id: string;
@@ -1295,6 +1297,7 @@ declare const activationRequestSchema: z.ZodObject<{
1295
1297
  id: string;
1296
1298
  deviceName: string;
1297
1299
  deviceSignature: string;
1300
+ browser: string;
1298
1301
  product: {
1299
1302
  status: ProductStatus;
1300
1303
  id: string;
package/dist/index.js CHANGED
@@ -308,6 +308,7 @@ var activationRequestSchema = z6.object({
308
308
  deviceName: z6.string(),
309
309
  deviceSignature: z6.string(),
310
310
  status: z6.nativeEnum(ActivationRequestStatus),
311
+ browser: z6.string(),
311
312
  product: productSchema,
312
313
  activation: licenseActivationSchema.optional(),
313
314
  trial: trialSchema.optional()
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@moonbase.sh/api",
3
3
  "type": "module",
4
- "version": "0.4.40",
4
+ "version": "0.4.41",
5
5
  "description": "Package to let you integrate backends with Moonbase.sh as payment and delivery provider",
6
6
  "author": "Tobias Lønnerød Madsen <m@dsen.tv>",
7
7
  "license": "MIT",