@kl1/contracts 1.2.53-uat → 1.2.55-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.mjs CHANGED
@@ -1602,7 +1602,7 @@ var smsContract = initContract().router({
1602
1602
  disconnectSMSChannel: {
1603
1603
  method: "POST",
1604
1604
  path: "/disconnect",
1605
- body: ChannelSchema.partial(),
1605
+ body: z27.object({ id: z27.string().uuid() }),
1606
1606
  responses: {
1607
1607
  200: DefaultSuccessResponseSchema.extend({
1608
1608
  channel: ChannelSchema
@@ -10090,10 +10090,12 @@ var GetAvailablePlanSchema = z136.object({
10090
10090
  });
10091
10091
  var UpdateSubscriptionSchema = z136.object({
10092
10092
  planProductId: z136.string(),
10093
+ planProductPriceId: z136.string(),
10093
10094
  subscriptionId: z136.string(),
10094
10095
  subscriptionProducts: z136.array(
10095
10096
  z136.object({
10096
10097
  productId: z136.string(),
10098
+ productPriceId: z136.string(),
10097
10099
  quantity: z136.number()
10098
10100
  })
10099
10101
  )