@kl1/contracts 1.1.59-uat → 1.1.61-uat

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.mjs CHANGED
@@ -1191,7 +1191,6 @@ var MessageTypeSchema = z30.enum([
1191
1191
  "fallback",
1192
1192
  "location",
1193
1193
  "sticker",
1194
- "text_with_image",
1195
1194
  // botpress specific
1196
1195
  "carousel",
1197
1196
  "card",
@@ -2433,7 +2432,7 @@ var mainChatContract = initContract7().router(
2433
2432
  data: z37.array(MessageWithFeedPostSchema)
2434
2433
  })
2435
2434
  },
2436
- query: DefaultQueryParamsSchema,
2435
+ query: OrderQueryParamSchema,
2437
2436
  summary: "Get messages"
2438
2437
  },
2439
2438
  updateAssignee: {
@@ -6764,6 +6763,17 @@ var subscriptionContract = initContract34().router(
6764
6763
  }),
6765
6764
  500: DefaultErrorResponseSchema
6766
6765
  }
6766
+ },
6767
+ getAvailablePlan: {
6768
+ method: "GET",
6769
+ path: "/available-plan",
6770
+ query: null,
6771
+ responses: {
6772
+ 200: DefaultSuccessResponseSchema.extend({
6773
+ data: z96.array(ProductSchema)
6774
+ }),
6775
+ 500: DefaultErrorResponseSchema
6776
+ }
6767
6777
  }
6768
6778
  },
6769
6779
  {