@kl1/contracts 1.1.57-uat → 1.1.58-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +75 -0
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/subscription/index.d.ts +75 -0
- package/dist/src/subscription/index.d.ts.map +1 -1
- package/dist/src/subscription/schema.d.ts +53 -0
- package/dist/src/subscription/schema.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -6816,7 +6816,8 @@ 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
|
6820
6821
|
});
|
6821
6822
|
|
6822
6823
|
// src/subscription/validation.ts
|