@kl1/contracts 1.1.62-uat → 1.1.63-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 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(),