@kl1/contracts 1.2.53-uat → 1.2.55-uat

Sign up to get free protection for your applications and to get access to all the features.
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
  )