@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.mjs CHANGED
@@ -6734,7 +6734,7 @@ var ProductPriceSchema = DefaultEntitySchema.extend({
6734
6734
  price: z94.number(),
6735
6735
  currency: z94.string().nullable()
6736
6736
  });
6737
- var ProductSchema = DefaultEntitySchema.extend({
6737
+ var ProductWithoutRelatedSchema = DefaultEntitySchema.extend({
6738
6738
  provider: z94.string(),
6739
6739
  productId: z94.string(),
6740
6740
  name: z94.string(),
@@ -6743,6 +6743,20 @@ var ProductSchema = DefaultEntitySchema.extend({
6743
6743
  usageType: z94.string().nullable(),
6744
6744
  productPrice: ProductPriceSchema
6745
6745
  });
6746
+ var RelatedProductSchema = DefaultEntitySchema.extend({
6747
+ includedQuantity: z94.number(),
6748
+ product: ProductWithoutRelatedSchema
6749
+ });
6750
+ var ProductSchema = DefaultEntitySchema.extend({
6751
+ provider: z94.string(),
6752
+ productId: z94.string(),
6753
+ name: z94.string(),
6754
+ type: z94.string(),
6755
+ omnichannel: z94.string(),
6756
+ usageType: z94.string().nullable(),
6757
+ productPrice: ProductPriceSchema,
6758
+ relatedProducts: z94.array(RelatedProductSchema)
6759
+ });
6746
6760
  var SubscriptionProuctSchema = DefaultEntitySchema.extend({
6747
6761
  limit: z94.number(),
6748
6762
  subscriptionItemId: z94.string(),