@kl1/contracts 1.1.62-uat → 1.1.63-uat

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.js CHANGED
@@ -6829,7 +6829,7 @@ var ProductPriceSchema = DefaultEntitySchema.extend({
6829
6829
  price: import_zod94.default.number(),
6830
6830
  currency: import_zod94.default.string().nullable()
6831
6831
  });
6832
- var ProductSchema = DefaultEntitySchema.extend({
6832
+ var ProductWithoutRelatedSchema = DefaultEntitySchema.extend({
6833
6833
  provider: import_zod94.default.string(),
6834
6834
  productId: import_zod94.default.string(),
6835
6835
  name: import_zod94.default.string(),
@@ -6838,6 +6838,20 @@ var ProductSchema = DefaultEntitySchema.extend({
6838
6838
  usageType: import_zod94.default.string().nullable(),
6839
6839
  productPrice: ProductPriceSchema
6840
6840
  });
6841
+ var RelatedProductSchema = DefaultEntitySchema.extend({
6842
+ includedQuantity: import_zod94.default.number(),
6843
+ product: ProductWithoutRelatedSchema
6844
+ });
6845
+ var ProductSchema = DefaultEntitySchema.extend({
6846
+ provider: import_zod94.default.string(),
6847
+ productId: import_zod94.default.string(),
6848
+ name: import_zod94.default.string(),
6849
+ type: import_zod94.default.string(),
6850
+ omnichannel: import_zod94.default.string(),
6851
+ usageType: import_zod94.default.string().nullable(),
6852
+ productPrice: ProductPriceSchema,
6853
+ relatedProducts: import_zod94.default.array(RelatedProductSchema)
6854
+ });
6841
6855
  var SubscriptionProuctSchema = DefaultEntitySchema.extend({
6842
6856
  limit: import_zod94.default.number(),
6843
6857
  subscriptionItemId: import_zod94.default.string(),