@kl1/contracts 1.1.62-uat → 1.1.64-uat

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.mjs CHANGED
@@ -1137,9 +1137,7 @@ var CxLogSchemaWithRelations = DefaultEntitySchema.extend({
1137
1137
  direction: MessageDirectionTypeSchema,
1138
1138
  platformContact: PlatformContactSchema,
1139
1139
  actor: UserSchema,
1140
- firstAssignee: UserSchema.nullable(),
1141
1140
  assignee: UserSchema.nullable(),
1142
- closedAssignee: UserSchema.nullable(),
1143
1141
  channel: ChannelSchema
1144
1142
  }).nullable(),
1145
1143
  telephonyCdr: TelephonyCdrSchema.nullable(),
@@ -1147,7 +1145,9 @@ var CxLogSchemaWithRelations = DefaultEntitySchema.extend({
1147
1145
  queueName: z27.string().nullable().optional()
1148
1146
  }).nullable(),
1149
1147
  contact: ContactSchema.nullable(),
1148
+ firstAssignee: UserSchema.nullable(),
1150
1149
  agent: UserSchema.nullable(),
1150
+ closedAssignee: UserSchema.nullable(),
1151
1151
  contactLabel: z27.array(z27.string())
1152
1152
  });
1153
1153
 
@@ -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(),