@kl1/contracts 1.1.57-uat → 1.1.59-uat
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.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +254 -0
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/subscription/index.d.ts +254 -0
- package/dist/src/subscription/index.d.ts.map +1 -1
- package/dist/src/subscription/schema.d.ts +186 -0
- package/dist/src/subscription/schema.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6816,7 +6816,9 @@ var SubscriptionSchema = DefaultEntitySchema.extend({
|
|
|
6816
6816
|
expireAt: import_zod94.default.date(),
|
|
6817
6817
|
status: import_zod94.default.string(),
|
|
6818
6818
|
name: import_zod94.default.string().nullable(),
|
|
6819
|
-
subscriptionProducts: import_zod94.default.array(SubscriptionProuctSchema)
|
|
6819
|
+
subscriptionProducts: import_zod94.default.array(SubscriptionProuctSchema),
|
|
6820
|
+
productPrice: ProductPriceSchema,
|
|
6821
|
+
product: ProductSchema
|
|
6820
6822
|
});
|
|
6821
6823
|
|
|
6822
6824
|
// src/subscription/validation.ts
|