@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.mjs
CHANGED
@@ -6721,7 +6721,8 @@ var SubscriptionSchema = DefaultEntitySchema.extend({
|
|
6721
6721
|
expireAt: z94.date(),
|
6722
6722
|
status: z94.string(),
|
6723
6723
|
name: z94.string().nullable(),
|
6724
|
-
subscriptionProducts: z94.array(SubscriptionProuctSchema)
|
6724
|
+
subscriptionProducts: z94.array(SubscriptionProuctSchema),
|
6725
|
+
productPrice: ProductPriceSchema
|
6725
6726
|
});
|
6726
6727
|
|
6727
6728
|
// src/subscription/validation.ts
|