@kl1/contracts 1.1.59-uat → 1.1.60-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.js +11 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +138 -138
- package/dist/src/chat/schema.d.ts +51 -81
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +46 -46
- package/dist/src/contract.d.ts +393 -236
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/facebook-feed/index.d.ts +66 -66
- package/dist/src/facebook-feed/schema.d.ts +3 -3
- package/dist/src/instagram/index.d.ts +33 -33
- package/dist/src/line/index.d.ts +38 -38
- package/dist/src/line/validation.d.ts +5 -5
- package/dist/src/messenger/index.d.ts +33 -33
- package/dist/src/subscription/index.d.ts +157 -0
- package/dist/src/subscription/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +33 -33
- package/dist/src/webchat/index.d.ts +33 -33
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1286,7 +1286,6 @@ var MessageTypeSchema = import_zod30.default.enum([
|
|
|
1286
1286
|
"fallback",
|
|
1287
1287
|
"location",
|
|
1288
1288
|
"sticker",
|
|
1289
|
-
"text_with_image",
|
|
1290
1289
|
// botpress specific
|
|
1291
1290
|
"carousel",
|
|
1292
1291
|
"card",
|
|
@@ -6859,6 +6858,17 @@ var subscriptionContract = (0, import_core34.initContract)().router(
|
|
|
6859
6858
|
}),
|
|
6860
6859
|
500: DefaultErrorResponseSchema
|
|
6861
6860
|
}
|
|
6861
|
+
},
|
|
6862
|
+
getAvailablePlan: {
|
|
6863
|
+
method: "GET",
|
|
6864
|
+
path: "/available-plan",
|
|
6865
|
+
query: null,
|
|
6866
|
+
responses: {
|
|
6867
|
+
200: DefaultSuccessResponseSchema.extend({
|
|
6868
|
+
data: import_zod96.z.array(ProductSchema)
|
|
6869
|
+
}),
|
|
6870
|
+
500: DefaultErrorResponseSchema
|
|
6871
|
+
}
|
|
6862
6872
|
}
|
|
6863
6873
|
},
|
|
6864
6874
|
{
|