@moonbase.sh/storefront-api 0.4.72 → 0.4.73
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 +1 -0
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -637,6 +637,7 @@ var licenseSchema = import_zod8.z.object({
|
|
|
637
637
|
activeNumberOfActivations: import_zod8.z.number(),
|
|
638
638
|
maxNumberOfActivations: import_zod8.z.number(),
|
|
639
639
|
externalFulfillment: externalLicenseContent.optional(),
|
|
640
|
+
fulfillmentMessage: import_zod8.z.string().optional(),
|
|
640
641
|
expiresAt: import_zod8.z.coerce.date().optional(),
|
|
641
642
|
createdAt: import_zod8.z.coerce.date()
|
|
642
643
|
});
|
package/dist/index.d.cts
CHANGED
|
@@ -1345,6 +1345,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
1345
1345
|
fileName: string;
|
|
1346
1346
|
contentType: string;
|
|
1347
1347
|
}>]>>;
|
|
1348
|
+
fulfillmentMessage: z.ZodOptional<z.ZodString>;
|
|
1348
1349
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
1349
1350
|
createdAt: z.ZodDate;
|
|
1350
1351
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1393,6 +1394,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
1393
1394
|
fileName: string;
|
|
1394
1395
|
contentType: string;
|
|
1395
1396
|
} | undefined;
|
|
1397
|
+
fulfillmentMessage?: string | undefined;
|
|
1396
1398
|
}, {
|
|
1397
1399
|
id: string;
|
|
1398
1400
|
status: LicenseStatus;
|
|
@@ -1439,6 +1441,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
1439
1441
|
fileName: string;
|
|
1440
1442
|
contentType: string;
|
|
1441
1443
|
} | undefined;
|
|
1444
|
+
fulfillmentMessage?: string | undefined;
|
|
1442
1445
|
}>;
|
|
1443
1446
|
declare const activationSchema: z.ZodObject<{
|
|
1444
1447
|
id: z.ZodString;
|
package/dist/index.d.ts
CHANGED
|
@@ -1345,6 +1345,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
1345
1345
|
fileName: string;
|
|
1346
1346
|
contentType: string;
|
|
1347
1347
|
}>]>>;
|
|
1348
|
+
fulfillmentMessage: z.ZodOptional<z.ZodString>;
|
|
1348
1349
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
1349
1350
|
createdAt: z.ZodDate;
|
|
1350
1351
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1393,6 +1394,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
1393
1394
|
fileName: string;
|
|
1394
1395
|
contentType: string;
|
|
1395
1396
|
} | undefined;
|
|
1397
|
+
fulfillmentMessage?: string | undefined;
|
|
1396
1398
|
}, {
|
|
1397
1399
|
id: string;
|
|
1398
1400
|
status: LicenseStatus;
|
|
@@ -1439,6 +1441,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
1439
1441
|
fileName: string;
|
|
1440
1442
|
contentType: string;
|
|
1441
1443
|
} | undefined;
|
|
1444
|
+
fulfillmentMessage?: string | undefined;
|
|
1442
1445
|
}>;
|
|
1443
1446
|
declare const activationSchema: z.ZodObject<{
|
|
1444
1447
|
id: z.ZodString;
|
package/dist/index.js
CHANGED
|
@@ -580,6 +580,7 @@ var licenseSchema = z8.object({
|
|
|
580
580
|
activeNumberOfActivations: z8.number(),
|
|
581
581
|
maxNumberOfActivations: z8.number(),
|
|
582
582
|
externalFulfillment: externalLicenseContent.optional(),
|
|
583
|
+
fulfillmentMessage: z8.string().optional(),
|
|
583
584
|
expiresAt: z8.coerce.date().optional(),
|
|
584
585
|
createdAt: z8.coerce.date()
|
|
585
586
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonbase.sh/storefront-api",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.73",
|
|
5
5
|
"description": "Package to let you build storefronts with Moonbase.sh as payment and delivery provider",
|
|
6
6
|
"author": "Tobias Lønnerød Madsen <m@dsen.tv>",
|
|
7
7
|
"license": "MIT",
|