@apicity/telegram 0.5.4 → 0.6.0
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/src/zod.d.ts +364 -182
- package/dist/src/zod.d.ts.map +1 -1
- package/dist/src/zod.js.map +1 -1
- package/package.json +1 -1
package/dist/src/zod.d.ts
CHANGED
|
@@ -177,12 +177,16 @@ export type TelegramChatAdministratorRights = z.infer<typeof TelegramChatAdminis
|
|
|
177
177
|
export type TelegramChatPermissions = z.infer<typeof TelegramChatPermissionsSchema>;
|
|
178
178
|
export type TelegramInputChecklist = z.infer<typeof TelegramInputChecklistSchema>;
|
|
179
179
|
export type TelegramInputMedia = z.infer<typeof TelegramInputMediaSchema>;
|
|
180
|
-
export type TelegramEmptyRequest = z.
|
|
181
|
-
export type
|
|
180
|
+
export type TelegramEmptyRequest = z.input<typeof TelegramEmptyRequestSchema>;
|
|
181
|
+
export type TelegramEmptyParsedRequest = z.output<typeof TelegramEmptyRequestSchema>;
|
|
182
|
+
export type TelegramGenericRequest = z.input<typeof TelegramGenericRequestSchema>;
|
|
183
|
+
export type TelegramGenericParsedRequest = z.output<typeof TelegramGenericRequestSchema>;
|
|
182
184
|
export declare const TelegramAddStickerToSetRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
183
|
-
export type TelegramAddStickerToSetRequest = z.
|
|
185
|
+
export type TelegramAddStickerToSetRequest = z.input<typeof TelegramAddStickerToSetRequestSchema>;
|
|
186
|
+
export type TelegramAddStickerToSetParsedRequest = z.output<typeof TelegramAddStickerToSetRequestSchema>;
|
|
184
187
|
export declare const TelegramAnswerCallbackQueryRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
185
|
-
export type TelegramAnswerCallbackQueryRequest = z.
|
|
188
|
+
export type TelegramAnswerCallbackQueryRequest = z.input<typeof TelegramAnswerCallbackQueryRequestSchema>;
|
|
189
|
+
export type TelegramAnswerCallbackQueryParsedRequest = z.output<typeof TelegramAnswerCallbackQueryRequestSchema>;
|
|
186
190
|
export declare const TelegramAnswerChatJoinRequestQueryRequestSchema: z.ZodObject<{
|
|
187
191
|
chat_join_request_query_id: z.ZodString;
|
|
188
192
|
result: z.ZodEnum<["approve", "decline", "queue"]>;
|
|
@@ -193,9 +197,11 @@ export declare const TelegramAnswerChatJoinRequestQueryRequestSchema: z.ZodObjec
|
|
|
193
197
|
chat_join_request_query_id: z.ZodString;
|
|
194
198
|
result: z.ZodEnum<["approve", "decline", "queue"]>;
|
|
195
199
|
}, z.ZodTypeAny, "passthrough">>;
|
|
196
|
-
export type TelegramAnswerChatJoinRequestQueryRequest = z.
|
|
200
|
+
export type TelegramAnswerChatJoinRequestQueryRequest = z.input<typeof TelegramAnswerChatJoinRequestQueryRequestSchema>;
|
|
201
|
+
export type TelegramAnswerChatJoinRequestQueryParsedRequest = z.output<typeof TelegramAnswerChatJoinRequestQueryRequestSchema>;
|
|
197
202
|
export declare const TelegramAnswerGuestQueryRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
198
|
-
export type TelegramAnswerGuestQueryRequest = z.
|
|
203
|
+
export type TelegramAnswerGuestQueryRequest = z.input<typeof TelegramAnswerGuestQueryRequestSchema>;
|
|
204
|
+
export type TelegramAnswerGuestQueryParsedRequest = z.output<typeof TelegramAnswerGuestQueryRequestSchema>;
|
|
199
205
|
export declare const TelegramAnswerInlineQueryRequestSchema: z.ZodObject<{
|
|
200
206
|
inline_query_id: z.ZodString;
|
|
201
207
|
results: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
@@ -206,27 +212,38 @@ export declare const TelegramAnswerInlineQueryRequestSchema: z.ZodObject<{
|
|
|
206
212
|
inline_query_id: z.ZodString;
|
|
207
213
|
results: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
208
214
|
}, z.ZodTypeAny, "passthrough">>;
|
|
209
|
-
export type TelegramAnswerInlineQueryRequest = z.
|
|
215
|
+
export type TelegramAnswerInlineQueryRequest = z.input<typeof TelegramAnswerInlineQueryRequestSchema>;
|
|
216
|
+
export type TelegramAnswerInlineQueryParsedRequest = z.output<typeof TelegramAnswerInlineQueryRequestSchema>;
|
|
210
217
|
export declare const TelegramAnswerPreCheckoutQueryRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
211
|
-
export type TelegramAnswerPreCheckoutQueryRequest = z.
|
|
218
|
+
export type TelegramAnswerPreCheckoutQueryRequest = z.input<typeof TelegramAnswerPreCheckoutQueryRequestSchema>;
|
|
219
|
+
export type TelegramAnswerPreCheckoutQueryParsedRequest = z.output<typeof TelegramAnswerPreCheckoutQueryRequestSchema>;
|
|
212
220
|
export declare const TelegramAnswerShippingQueryRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
213
|
-
export type TelegramAnswerShippingQueryRequest = z.
|
|
221
|
+
export type TelegramAnswerShippingQueryRequest = z.input<typeof TelegramAnswerShippingQueryRequestSchema>;
|
|
222
|
+
export type TelegramAnswerShippingQueryParsedRequest = z.output<typeof TelegramAnswerShippingQueryRequestSchema>;
|
|
214
223
|
export declare const TelegramAnswerWebAppQueryRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
215
|
-
export type TelegramAnswerWebAppQueryRequest = z.
|
|
224
|
+
export type TelegramAnswerWebAppQueryRequest = z.input<typeof TelegramAnswerWebAppQueryRequestSchema>;
|
|
225
|
+
export type TelegramAnswerWebAppQueryParsedRequest = z.output<typeof TelegramAnswerWebAppQueryRequestSchema>;
|
|
216
226
|
export declare const TelegramApproveChatJoinRequestRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
217
|
-
export type TelegramApproveChatJoinRequestRequest = z.
|
|
227
|
+
export type TelegramApproveChatJoinRequestRequest = z.input<typeof TelegramApproveChatJoinRequestRequestSchema>;
|
|
228
|
+
export type TelegramApproveChatJoinRequestParsedRequest = z.output<typeof TelegramApproveChatJoinRequestRequestSchema>;
|
|
218
229
|
export declare const TelegramBanChatMemberRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
219
|
-
export type TelegramBanChatMemberRequest = z.
|
|
230
|
+
export type TelegramBanChatMemberRequest = z.input<typeof TelegramBanChatMemberRequestSchema>;
|
|
231
|
+
export type TelegramBanChatMemberParsedRequest = z.output<typeof TelegramBanChatMemberRequestSchema>;
|
|
220
232
|
export declare const TelegramBanChatSenderChatRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
221
|
-
export type TelegramBanChatSenderChatRequest = z.
|
|
233
|
+
export type TelegramBanChatSenderChatRequest = z.input<typeof TelegramBanChatSenderChatRequestSchema>;
|
|
234
|
+
export type TelegramBanChatSenderChatParsedRequest = z.output<typeof TelegramBanChatSenderChatRequestSchema>;
|
|
222
235
|
export declare const TelegramCloseRequestSchema: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
223
|
-
export type TelegramCloseRequest = z.
|
|
236
|
+
export type TelegramCloseRequest = z.input<typeof TelegramCloseRequestSchema>;
|
|
237
|
+
export type TelegramCloseParsedRequest = z.output<typeof TelegramCloseRequestSchema>;
|
|
224
238
|
export declare const TelegramCloseForumTopicRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
225
|
-
export type TelegramCloseForumTopicRequest = z.
|
|
239
|
+
export type TelegramCloseForumTopicRequest = z.input<typeof TelegramCloseForumTopicRequestSchema>;
|
|
240
|
+
export type TelegramCloseForumTopicParsedRequest = z.output<typeof TelegramCloseForumTopicRequestSchema>;
|
|
226
241
|
export declare const TelegramCloseGeneralForumTopicRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
227
|
-
export type TelegramCloseGeneralForumTopicRequest = z.
|
|
242
|
+
export type TelegramCloseGeneralForumTopicRequest = z.input<typeof TelegramCloseGeneralForumTopicRequestSchema>;
|
|
243
|
+
export type TelegramCloseGeneralForumTopicParsedRequest = z.output<typeof TelegramCloseGeneralForumTopicRequestSchema>;
|
|
228
244
|
export declare const TelegramConvertGiftToStarsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
229
|
-
export type TelegramConvertGiftToStarsRequest = z.
|
|
245
|
+
export type TelegramConvertGiftToStarsRequest = z.input<typeof TelegramConvertGiftToStarsRequestSchema>;
|
|
246
|
+
export type TelegramConvertGiftToStarsParsedRequest = z.output<typeof TelegramConvertGiftToStarsRequestSchema>;
|
|
230
247
|
export declare const TelegramCopyMessageRequestSchema: z.ZodObject<{
|
|
231
248
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
232
249
|
from_chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -240,17 +257,23 @@ export declare const TelegramCopyMessageRequestSchema: z.ZodObject<{
|
|
|
240
257
|
from_chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
241
258
|
message_id: z.ZodNumber;
|
|
242
259
|
}, z.ZodTypeAny, "passthrough">>;
|
|
243
|
-
export type TelegramCopyMessageRequest = z.
|
|
260
|
+
export type TelegramCopyMessageRequest = z.input<typeof TelegramCopyMessageRequestSchema>;
|
|
261
|
+
export type TelegramCopyMessageParsedRequest = z.output<typeof TelegramCopyMessageRequestSchema>;
|
|
244
262
|
export declare const TelegramCopyMessagesRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
245
|
-
export type TelegramCopyMessagesRequest = z.
|
|
263
|
+
export type TelegramCopyMessagesRequest = z.input<typeof TelegramCopyMessagesRequestSchema>;
|
|
264
|
+
export type TelegramCopyMessagesParsedRequest = z.output<typeof TelegramCopyMessagesRequestSchema>;
|
|
246
265
|
export declare const TelegramCreateChatInviteLinkRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
247
|
-
export type TelegramCreateChatInviteLinkRequest = z.
|
|
266
|
+
export type TelegramCreateChatInviteLinkRequest = z.input<typeof TelegramCreateChatInviteLinkRequestSchema>;
|
|
267
|
+
export type TelegramCreateChatInviteLinkParsedRequest = z.output<typeof TelegramCreateChatInviteLinkRequestSchema>;
|
|
248
268
|
export declare const TelegramCreateChatSubscriptionInviteLinkRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
249
|
-
export type TelegramCreateChatSubscriptionInviteLinkRequest = z.
|
|
269
|
+
export type TelegramCreateChatSubscriptionInviteLinkRequest = z.input<typeof TelegramCreateChatSubscriptionInviteLinkRequestSchema>;
|
|
270
|
+
export type TelegramCreateChatSubscriptionInviteLinkParsedRequest = z.output<typeof TelegramCreateChatSubscriptionInviteLinkRequestSchema>;
|
|
250
271
|
export declare const TelegramCreateForumTopicRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
251
|
-
export type TelegramCreateForumTopicRequest = z.
|
|
272
|
+
export type TelegramCreateForumTopicRequest = z.input<typeof TelegramCreateForumTopicRequestSchema>;
|
|
273
|
+
export type TelegramCreateForumTopicParsedRequest = z.output<typeof TelegramCreateForumTopicRequestSchema>;
|
|
252
274
|
export declare const TelegramCreateInvoiceLinkRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
253
|
-
export type TelegramCreateInvoiceLinkRequest = z.
|
|
275
|
+
export type TelegramCreateInvoiceLinkRequest = z.input<typeof TelegramCreateInvoiceLinkRequestSchema>;
|
|
276
|
+
export type TelegramCreateInvoiceLinkParsedRequest = z.output<typeof TelegramCreateInvoiceLinkRequestSchema>;
|
|
254
277
|
export declare const TelegramCreateNewStickerSetRequestSchema: z.ZodObject<{
|
|
255
278
|
user_id: z.ZodNumber;
|
|
256
279
|
name: z.ZodString;
|
|
@@ -267,9 +290,11 @@ export declare const TelegramCreateNewStickerSetRequestSchema: z.ZodObject<{
|
|
|
267
290
|
title: z.ZodString;
|
|
268
291
|
stickers: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
269
292
|
}, z.ZodTypeAny, "passthrough">>;
|
|
270
|
-
export type TelegramCreateNewStickerSetRequest = z.
|
|
293
|
+
export type TelegramCreateNewStickerSetRequest = z.input<typeof TelegramCreateNewStickerSetRequestSchema>;
|
|
294
|
+
export type TelegramCreateNewStickerSetParsedRequest = z.output<typeof TelegramCreateNewStickerSetRequestSchema>;
|
|
271
295
|
export declare const TelegramDeclineChatJoinRequestRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
272
|
-
export type TelegramDeclineChatJoinRequestRequest = z.
|
|
296
|
+
export type TelegramDeclineChatJoinRequestRequest = z.input<typeof TelegramDeclineChatJoinRequestRequestSchema>;
|
|
297
|
+
export type TelegramDeclineChatJoinRequestParsedRequest = z.output<typeof TelegramDeclineChatJoinRequestRequestSchema>;
|
|
273
298
|
export declare const TelegramDeleteAllMessageReactionsRequestSchema: z.ZodObject<{
|
|
274
299
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
275
300
|
message_id: z.ZodNumber;
|
|
@@ -280,17 +305,23 @@ export declare const TelegramDeleteAllMessageReactionsRequestSchema: z.ZodObject
|
|
|
280
305
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
281
306
|
message_id: z.ZodNumber;
|
|
282
307
|
}, z.ZodTypeAny, "passthrough">>;
|
|
283
|
-
export type TelegramDeleteAllMessageReactionsRequest = z.
|
|
308
|
+
export type TelegramDeleteAllMessageReactionsRequest = z.input<typeof TelegramDeleteAllMessageReactionsRequestSchema>;
|
|
309
|
+
export type TelegramDeleteAllMessageReactionsParsedRequest = z.output<typeof TelegramDeleteAllMessageReactionsRequestSchema>;
|
|
284
310
|
export declare const TelegramDeleteBusinessMessagesRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
285
|
-
export type TelegramDeleteBusinessMessagesRequest = z.
|
|
311
|
+
export type TelegramDeleteBusinessMessagesRequest = z.input<typeof TelegramDeleteBusinessMessagesRequestSchema>;
|
|
312
|
+
export type TelegramDeleteBusinessMessagesParsedRequest = z.output<typeof TelegramDeleteBusinessMessagesRequestSchema>;
|
|
286
313
|
export declare const TelegramDeleteChatPhotoRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
287
|
-
export type TelegramDeleteChatPhotoRequest = z.
|
|
314
|
+
export type TelegramDeleteChatPhotoRequest = z.input<typeof TelegramDeleteChatPhotoRequestSchema>;
|
|
315
|
+
export type TelegramDeleteChatPhotoParsedRequest = z.output<typeof TelegramDeleteChatPhotoRequestSchema>;
|
|
288
316
|
export declare const TelegramDeleteChatStickerSetRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
289
|
-
export type TelegramDeleteChatStickerSetRequest = z.
|
|
317
|
+
export type TelegramDeleteChatStickerSetRequest = z.input<typeof TelegramDeleteChatStickerSetRequestSchema>;
|
|
318
|
+
export type TelegramDeleteChatStickerSetParsedRequest = z.output<typeof TelegramDeleteChatStickerSetRequestSchema>;
|
|
290
319
|
export declare const TelegramDeleteForumTopicRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
291
|
-
export type TelegramDeleteForumTopicRequest = z.
|
|
320
|
+
export type TelegramDeleteForumTopicRequest = z.input<typeof TelegramDeleteForumTopicRequestSchema>;
|
|
321
|
+
export type TelegramDeleteForumTopicParsedRequest = z.output<typeof TelegramDeleteForumTopicRequestSchema>;
|
|
292
322
|
export declare const TelegramDeleteMessageRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
293
|
-
export type TelegramDeleteMessageRequest = z.
|
|
323
|
+
export type TelegramDeleteMessageRequest = z.input<typeof TelegramDeleteMessageRequestSchema>;
|
|
324
|
+
export type TelegramDeleteMessageParsedRequest = z.output<typeof TelegramDeleteMessageRequestSchema>;
|
|
294
325
|
export declare const TelegramDeleteMessageReactionRequestSchema: z.ZodObject<{
|
|
295
326
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
296
327
|
message_id: z.ZodNumber;
|
|
@@ -304,29 +335,41 @@ export declare const TelegramDeleteMessageReactionRequestSchema: z.ZodObject<{
|
|
|
304
335
|
message_id: z.ZodNumber;
|
|
305
336
|
user_id: z.ZodOptional<z.ZodNumber>;
|
|
306
337
|
}, z.ZodTypeAny, "passthrough">>;
|
|
307
|
-
export type TelegramDeleteMessageReactionRequest = z.
|
|
338
|
+
export type TelegramDeleteMessageReactionRequest = z.input<typeof TelegramDeleteMessageReactionRequestSchema>;
|
|
339
|
+
export type TelegramDeleteMessageReactionParsedRequest = z.output<typeof TelegramDeleteMessageReactionRequestSchema>;
|
|
308
340
|
export declare const TelegramDeleteMessagesRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
309
|
-
export type TelegramDeleteMessagesRequest = z.
|
|
341
|
+
export type TelegramDeleteMessagesRequest = z.input<typeof TelegramDeleteMessagesRequestSchema>;
|
|
342
|
+
export type TelegramDeleteMessagesParsedRequest = z.output<typeof TelegramDeleteMessagesRequestSchema>;
|
|
310
343
|
export declare const TelegramDeleteMyCommandsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
311
|
-
export type TelegramDeleteMyCommandsRequest = z.
|
|
344
|
+
export type TelegramDeleteMyCommandsRequest = z.input<typeof TelegramDeleteMyCommandsRequestSchema>;
|
|
345
|
+
export type TelegramDeleteMyCommandsParsedRequest = z.output<typeof TelegramDeleteMyCommandsRequestSchema>;
|
|
312
346
|
export declare const TelegramDeleteStickerFromSetRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
313
|
-
export type TelegramDeleteStickerFromSetRequest = z.
|
|
347
|
+
export type TelegramDeleteStickerFromSetRequest = z.input<typeof TelegramDeleteStickerFromSetRequestSchema>;
|
|
348
|
+
export type TelegramDeleteStickerFromSetParsedRequest = z.output<typeof TelegramDeleteStickerFromSetRequestSchema>;
|
|
314
349
|
export declare const TelegramDeleteStickerSetRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
315
|
-
export type TelegramDeleteStickerSetRequest = z.
|
|
350
|
+
export type TelegramDeleteStickerSetRequest = z.input<typeof TelegramDeleteStickerSetRequestSchema>;
|
|
351
|
+
export type TelegramDeleteStickerSetParsedRequest = z.output<typeof TelegramDeleteStickerSetRequestSchema>;
|
|
316
352
|
export declare const TelegramDeleteStoryRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
317
|
-
export type TelegramDeleteStoryRequest = z.
|
|
353
|
+
export type TelegramDeleteStoryRequest = z.input<typeof TelegramDeleteStoryRequestSchema>;
|
|
354
|
+
export type TelegramDeleteStoryParsedRequest = z.output<typeof TelegramDeleteStoryRequestSchema>;
|
|
318
355
|
export declare const TelegramDeleteWebhookRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
319
|
-
export type TelegramDeleteWebhookRequest = z.
|
|
356
|
+
export type TelegramDeleteWebhookRequest = z.input<typeof TelegramDeleteWebhookRequestSchema>;
|
|
357
|
+
export type TelegramDeleteWebhookParsedRequest = z.output<typeof TelegramDeleteWebhookRequestSchema>;
|
|
320
358
|
export declare const TelegramEditChatInviteLinkRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
321
|
-
export type TelegramEditChatInviteLinkRequest = z.
|
|
359
|
+
export type TelegramEditChatInviteLinkRequest = z.input<typeof TelegramEditChatInviteLinkRequestSchema>;
|
|
360
|
+
export type TelegramEditChatInviteLinkParsedRequest = z.output<typeof TelegramEditChatInviteLinkRequestSchema>;
|
|
322
361
|
export declare const TelegramEditChatSubscriptionInviteLinkRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
323
|
-
export type TelegramEditChatSubscriptionInviteLinkRequest = z.
|
|
362
|
+
export type TelegramEditChatSubscriptionInviteLinkRequest = z.input<typeof TelegramEditChatSubscriptionInviteLinkRequestSchema>;
|
|
363
|
+
export type TelegramEditChatSubscriptionInviteLinkParsedRequest = z.output<typeof TelegramEditChatSubscriptionInviteLinkRequestSchema>;
|
|
324
364
|
export declare const TelegramEditForumTopicRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
325
|
-
export type TelegramEditForumTopicRequest = z.
|
|
365
|
+
export type TelegramEditForumTopicRequest = z.input<typeof TelegramEditForumTopicRequestSchema>;
|
|
366
|
+
export type TelegramEditForumTopicParsedRequest = z.output<typeof TelegramEditForumTopicRequestSchema>;
|
|
326
367
|
export declare const TelegramEditGeneralForumTopicRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
327
|
-
export type TelegramEditGeneralForumTopicRequest = z.
|
|
368
|
+
export type TelegramEditGeneralForumTopicRequest = z.input<typeof TelegramEditGeneralForumTopicRequestSchema>;
|
|
369
|
+
export type TelegramEditGeneralForumTopicParsedRequest = z.output<typeof TelegramEditGeneralForumTopicRequestSchema>;
|
|
328
370
|
export declare const TelegramEditMessageCaptionRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
329
|
-
export type TelegramEditMessageCaptionRequest = z.
|
|
371
|
+
export type TelegramEditMessageCaptionRequest = z.input<typeof TelegramEditMessageCaptionRequestSchema>;
|
|
372
|
+
export type TelegramEditMessageCaptionParsedRequest = z.output<typeof TelegramEditMessageCaptionRequestSchema>;
|
|
330
373
|
export declare const TelegramEditMessageChecklistRequestSchema: z.ZodObject<{
|
|
331
374
|
business_connection_id: z.ZodOptional<z.ZodString>;
|
|
332
375
|
chat_id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -346,13 +389,17 @@ export declare const TelegramEditMessageChecklistRequestSchema: z.ZodObject<{
|
|
|
346
389
|
inline_message_id: z.ZodOptional<z.ZodString>;
|
|
347
390
|
checklist: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
348
391
|
}, z.ZodTypeAny, "passthrough">>;
|
|
349
|
-
export type TelegramEditMessageChecklistRequest = z.
|
|
392
|
+
export type TelegramEditMessageChecklistRequest = z.input<typeof TelegramEditMessageChecklistRequestSchema>;
|
|
393
|
+
export type TelegramEditMessageChecklistParsedRequest = z.output<typeof TelegramEditMessageChecklistRequestSchema>;
|
|
350
394
|
export declare const TelegramEditMessageLiveLocationRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
351
|
-
export type TelegramEditMessageLiveLocationRequest = z.
|
|
395
|
+
export type TelegramEditMessageLiveLocationRequest = z.input<typeof TelegramEditMessageLiveLocationRequestSchema>;
|
|
396
|
+
export type TelegramEditMessageLiveLocationParsedRequest = z.output<typeof TelegramEditMessageLiveLocationRequestSchema>;
|
|
352
397
|
export declare const TelegramEditMessageMediaRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
353
|
-
export type TelegramEditMessageMediaRequest = z.
|
|
398
|
+
export type TelegramEditMessageMediaRequest = z.input<typeof TelegramEditMessageMediaRequestSchema>;
|
|
399
|
+
export type TelegramEditMessageMediaParsedRequest = z.output<typeof TelegramEditMessageMediaRequestSchema>;
|
|
354
400
|
export declare const TelegramEditMessageReplyMarkupRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
355
|
-
export type TelegramEditMessageReplyMarkupRequest = z.
|
|
401
|
+
export type TelegramEditMessageReplyMarkupRequest = z.input<typeof TelegramEditMessageReplyMarkupRequestSchema>;
|
|
402
|
+
export type TelegramEditMessageReplyMarkupParsedRequest = z.output<typeof TelegramEditMessageReplyMarkupRequestSchema>;
|
|
356
403
|
export declare const TelegramEditMessageTextRequestSchema: z.ZodObject<{
|
|
357
404
|
text: z.ZodString;
|
|
358
405
|
} & {
|
|
@@ -375,15 +422,20 @@ export declare const TelegramEditMessageTextRequestSchema: z.ZodObject<{
|
|
|
375
422
|
message_id: z.ZodOptional<z.ZodNumber>;
|
|
376
423
|
inline_message_id: z.ZodOptional<z.ZodString>;
|
|
377
424
|
}, z.ZodTypeAny, "passthrough">>;
|
|
378
|
-
export type TelegramEditMessageTextRequest = z.
|
|
425
|
+
export type TelegramEditMessageTextRequest = z.input<typeof TelegramEditMessageTextRequestSchema>;
|
|
426
|
+
export type TelegramEditMessageTextParsedRequest = z.output<typeof TelegramEditMessageTextRequestSchema>;
|
|
379
427
|
export declare const TelegramEditStoryRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
380
|
-
export type TelegramEditStoryRequest = z.
|
|
428
|
+
export type TelegramEditStoryRequest = z.input<typeof TelegramEditStoryRequestSchema>;
|
|
429
|
+
export type TelegramEditStoryParsedRequest = z.output<typeof TelegramEditStoryRequestSchema>;
|
|
381
430
|
export declare const TelegramEditUserStarSubscriptionRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
382
|
-
export type TelegramEditUserStarSubscriptionRequest = z.
|
|
431
|
+
export type TelegramEditUserStarSubscriptionRequest = z.input<typeof TelegramEditUserStarSubscriptionRequestSchema>;
|
|
432
|
+
export type TelegramEditUserStarSubscriptionParsedRequest = z.output<typeof TelegramEditUserStarSubscriptionRequestSchema>;
|
|
383
433
|
export declare const TelegramExportChatInviteLinkRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
384
|
-
export type TelegramExportChatInviteLinkRequest = z.
|
|
434
|
+
export type TelegramExportChatInviteLinkRequest = z.input<typeof TelegramExportChatInviteLinkRequestSchema>;
|
|
435
|
+
export type TelegramExportChatInviteLinkParsedRequest = z.output<typeof TelegramExportChatInviteLinkRequestSchema>;
|
|
385
436
|
export declare const TelegramForwardMessageRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
386
|
-
export type TelegramForwardMessageRequest = z.
|
|
437
|
+
export type TelegramForwardMessageRequest = z.input<typeof TelegramForwardMessageRequestSchema>;
|
|
438
|
+
export type TelegramForwardMessageParsedRequest = z.output<typeof TelegramForwardMessageRequestSchema>;
|
|
387
439
|
export declare const TelegramForwardMessagesRequestSchema: z.ZodObject<{
|
|
388
440
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
389
441
|
from_chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -397,13 +449,17 @@ export declare const TelegramForwardMessagesRequestSchema: z.ZodObject<{
|
|
|
397
449
|
from_chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
398
450
|
message_ids: z.ZodArray<z.ZodNumber, "many">;
|
|
399
451
|
}, z.ZodTypeAny, "passthrough">>;
|
|
400
|
-
export type TelegramForwardMessagesRequest = z.
|
|
452
|
+
export type TelegramForwardMessagesRequest = z.input<typeof TelegramForwardMessagesRequestSchema>;
|
|
453
|
+
export type TelegramForwardMessagesParsedRequest = z.output<typeof TelegramForwardMessagesRequestSchema>;
|
|
401
454
|
export declare const TelegramGetAvailableGiftsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
402
|
-
export type TelegramGetAvailableGiftsRequest = z.
|
|
455
|
+
export type TelegramGetAvailableGiftsRequest = z.input<typeof TelegramGetAvailableGiftsRequestSchema>;
|
|
456
|
+
export type TelegramGetAvailableGiftsParsedRequest = z.output<typeof TelegramGetAvailableGiftsRequestSchema>;
|
|
403
457
|
export declare const TelegramGetBusinessAccountGiftsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
404
|
-
export type TelegramGetBusinessAccountGiftsRequest = z.
|
|
458
|
+
export type TelegramGetBusinessAccountGiftsRequest = z.input<typeof TelegramGetBusinessAccountGiftsRequestSchema>;
|
|
459
|
+
export type TelegramGetBusinessAccountGiftsParsedRequest = z.output<typeof TelegramGetBusinessAccountGiftsRequestSchema>;
|
|
405
460
|
export declare const TelegramGetBusinessAccountStarBalanceRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
406
|
-
export type TelegramGetBusinessAccountStarBalanceRequest = z.
|
|
461
|
+
export type TelegramGetBusinessAccountStarBalanceRequest = z.input<typeof TelegramGetBusinessAccountStarBalanceRequestSchema>;
|
|
462
|
+
export type TelegramGetBusinessAccountStarBalanceParsedRequest = z.output<typeof TelegramGetBusinessAccountStarBalanceRequestSchema>;
|
|
407
463
|
export declare const TelegramGetBusinessConnectionRequestSchema: z.ZodObject<{
|
|
408
464
|
business_connection_id: z.ZodString;
|
|
409
465
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -411,21 +467,29 @@ export declare const TelegramGetBusinessConnectionRequestSchema: z.ZodObject<{
|
|
|
411
467
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
412
468
|
business_connection_id: z.ZodString;
|
|
413
469
|
}, z.ZodTypeAny, "passthrough">>;
|
|
414
|
-
export type TelegramGetBusinessConnectionRequest = z.
|
|
470
|
+
export type TelegramGetBusinessConnectionRequest = z.input<typeof TelegramGetBusinessConnectionRequestSchema>;
|
|
471
|
+
export type TelegramGetBusinessConnectionParsedRequest = z.output<typeof TelegramGetBusinessConnectionRequestSchema>;
|
|
415
472
|
export declare const TelegramGetChatRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
416
|
-
export type TelegramGetChatRequest = z.
|
|
473
|
+
export type TelegramGetChatRequest = z.input<typeof TelegramGetChatRequestSchema>;
|
|
474
|
+
export type TelegramGetChatParsedRequest = z.output<typeof TelegramGetChatRequestSchema>;
|
|
417
475
|
export declare const TelegramGetChatAdministratorsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
418
|
-
export type TelegramGetChatAdministratorsRequest = z.
|
|
476
|
+
export type TelegramGetChatAdministratorsRequest = z.input<typeof TelegramGetChatAdministratorsRequestSchema>;
|
|
477
|
+
export type TelegramGetChatAdministratorsParsedRequest = z.output<typeof TelegramGetChatAdministratorsRequestSchema>;
|
|
419
478
|
export declare const TelegramGetChatGiftsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
420
|
-
export type TelegramGetChatGiftsRequest = z.
|
|
479
|
+
export type TelegramGetChatGiftsRequest = z.input<typeof TelegramGetChatGiftsRequestSchema>;
|
|
480
|
+
export type TelegramGetChatGiftsParsedRequest = z.output<typeof TelegramGetChatGiftsRequestSchema>;
|
|
421
481
|
export declare const TelegramGetChatMemberRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
422
|
-
export type TelegramGetChatMemberRequest = z.
|
|
482
|
+
export type TelegramGetChatMemberRequest = z.input<typeof TelegramGetChatMemberRequestSchema>;
|
|
483
|
+
export type TelegramGetChatMemberParsedRequest = z.output<typeof TelegramGetChatMemberRequestSchema>;
|
|
423
484
|
export declare const TelegramGetChatMemberCountRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
424
|
-
export type TelegramGetChatMemberCountRequest = z.
|
|
485
|
+
export type TelegramGetChatMemberCountRequest = z.input<typeof TelegramGetChatMemberCountRequestSchema>;
|
|
486
|
+
export type TelegramGetChatMemberCountParsedRequest = z.output<typeof TelegramGetChatMemberCountRequestSchema>;
|
|
425
487
|
export declare const TelegramGetChatMenuButtonRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
426
|
-
export type TelegramGetChatMenuButtonRequest = z.
|
|
488
|
+
export type TelegramGetChatMenuButtonRequest = z.input<typeof TelegramGetChatMenuButtonRequestSchema>;
|
|
489
|
+
export type TelegramGetChatMenuButtonParsedRequest = z.output<typeof TelegramGetChatMenuButtonRequestSchema>;
|
|
427
490
|
export declare const TelegramGetCustomEmojiStickersRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
428
|
-
export type TelegramGetCustomEmojiStickersRequest = z.
|
|
491
|
+
export type TelegramGetCustomEmojiStickersRequest = z.input<typeof TelegramGetCustomEmojiStickersRequestSchema>;
|
|
492
|
+
export type TelegramGetCustomEmojiStickersParsedRequest = z.output<typeof TelegramGetCustomEmojiStickersRequestSchema>;
|
|
429
493
|
export declare const TelegramGetFileRequestSchema: z.ZodObject<{
|
|
430
494
|
file_id: z.ZodString;
|
|
431
495
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -433,33 +497,47 @@ export declare const TelegramGetFileRequestSchema: z.ZodObject<{
|
|
|
433
497
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
434
498
|
file_id: z.ZodString;
|
|
435
499
|
}, z.ZodTypeAny, "passthrough">>;
|
|
436
|
-
export type TelegramGetFileRequest = z.
|
|
500
|
+
export type TelegramGetFileRequest = z.input<typeof TelegramGetFileRequestSchema>;
|
|
501
|
+
export type TelegramGetFileParsedRequest = z.output<typeof TelegramGetFileRequestSchema>;
|
|
437
502
|
export declare const TelegramGetForumTopicIconStickersRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
438
|
-
export type TelegramGetForumTopicIconStickersRequest = z.
|
|
503
|
+
export type TelegramGetForumTopicIconStickersRequest = z.input<typeof TelegramGetForumTopicIconStickersRequestSchema>;
|
|
504
|
+
export type TelegramGetForumTopicIconStickersParsedRequest = z.output<typeof TelegramGetForumTopicIconStickersRequestSchema>;
|
|
439
505
|
export declare const TelegramGetGameHighScoresRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
440
|
-
export type TelegramGetGameHighScoresRequest = z.
|
|
506
|
+
export type TelegramGetGameHighScoresRequest = z.input<typeof TelegramGetGameHighScoresRequestSchema>;
|
|
507
|
+
export type TelegramGetGameHighScoresParsedRequest = z.output<typeof TelegramGetGameHighScoresRequestSchema>;
|
|
441
508
|
export declare const TelegramGetManagedBotAccessSettingsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
442
|
-
export type TelegramGetManagedBotAccessSettingsRequest = z.
|
|
509
|
+
export type TelegramGetManagedBotAccessSettingsRequest = z.input<typeof TelegramGetManagedBotAccessSettingsRequestSchema>;
|
|
510
|
+
export type TelegramGetManagedBotAccessSettingsParsedRequest = z.output<typeof TelegramGetManagedBotAccessSettingsRequestSchema>;
|
|
443
511
|
export declare const TelegramGetManagedBotTokenRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
444
|
-
export type TelegramGetManagedBotTokenRequest = z.
|
|
512
|
+
export type TelegramGetManagedBotTokenRequest = z.input<typeof TelegramGetManagedBotTokenRequestSchema>;
|
|
513
|
+
export type TelegramGetManagedBotTokenParsedRequest = z.output<typeof TelegramGetManagedBotTokenRequestSchema>;
|
|
445
514
|
export declare const TelegramGetMeRequestSchema: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
446
|
-
export type TelegramGetMeRequest = z.
|
|
515
|
+
export type TelegramGetMeRequest = z.input<typeof TelegramGetMeRequestSchema>;
|
|
516
|
+
export type TelegramGetMeParsedRequest = z.output<typeof TelegramGetMeRequestSchema>;
|
|
447
517
|
export declare const TelegramGetMyCommandsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
448
|
-
export type TelegramGetMyCommandsRequest = z.
|
|
518
|
+
export type TelegramGetMyCommandsRequest = z.input<typeof TelegramGetMyCommandsRequestSchema>;
|
|
519
|
+
export type TelegramGetMyCommandsParsedRequest = z.output<typeof TelegramGetMyCommandsRequestSchema>;
|
|
449
520
|
export declare const TelegramGetMyDefaultAdministratorRightsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
450
|
-
export type TelegramGetMyDefaultAdministratorRightsRequest = z.
|
|
521
|
+
export type TelegramGetMyDefaultAdministratorRightsRequest = z.input<typeof TelegramGetMyDefaultAdministratorRightsRequestSchema>;
|
|
522
|
+
export type TelegramGetMyDefaultAdministratorRightsParsedRequest = z.output<typeof TelegramGetMyDefaultAdministratorRightsRequestSchema>;
|
|
451
523
|
export declare const TelegramGetMyDescriptionRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
452
|
-
export type TelegramGetMyDescriptionRequest = z.
|
|
524
|
+
export type TelegramGetMyDescriptionRequest = z.input<typeof TelegramGetMyDescriptionRequestSchema>;
|
|
525
|
+
export type TelegramGetMyDescriptionParsedRequest = z.output<typeof TelegramGetMyDescriptionRequestSchema>;
|
|
453
526
|
export declare const TelegramGetMyNameRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
454
|
-
export type TelegramGetMyNameRequest = z.
|
|
527
|
+
export type TelegramGetMyNameRequest = z.input<typeof TelegramGetMyNameRequestSchema>;
|
|
528
|
+
export type TelegramGetMyNameParsedRequest = z.output<typeof TelegramGetMyNameRequestSchema>;
|
|
455
529
|
export declare const TelegramGetMyShortDescriptionRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
456
|
-
export type TelegramGetMyShortDescriptionRequest = z.
|
|
530
|
+
export type TelegramGetMyShortDescriptionRequest = z.input<typeof TelegramGetMyShortDescriptionRequestSchema>;
|
|
531
|
+
export type TelegramGetMyShortDescriptionParsedRequest = z.output<typeof TelegramGetMyShortDescriptionRequestSchema>;
|
|
457
532
|
export declare const TelegramGetMyStarBalanceRequestSchema: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
458
|
-
export type TelegramGetMyStarBalanceRequest = z.
|
|
533
|
+
export type TelegramGetMyStarBalanceRequest = z.input<typeof TelegramGetMyStarBalanceRequestSchema>;
|
|
534
|
+
export type TelegramGetMyStarBalanceParsedRequest = z.output<typeof TelegramGetMyStarBalanceRequestSchema>;
|
|
459
535
|
export declare const TelegramGetStarTransactionsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
460
|
-
export type TelegramGetStarTransactionsRequest = z.
|
|
536
|
+
export type TelegramGetStarTransactionsRequest = z.input<typeof TelegramGetStarTransactionsRequestSchema>;
|
|
537
|
+
export type TelegramGetStarTransactionsParsedRequest = z.output<typeof TelegramGetStarTransactionsRequestSchema>;
|
|
461
538
|
export declare const TelegramGetStickerSetRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
462
|
-
export type TelegramGetStickerSetRequest = z.
|
|
539
|
+
export type TelegramGetStickerSetRequest = z.input<typeof TelegramGetStickerSetRequestSchema>;
|
|
540
|
+
export type TelegramGetStickerSetParsedRequest = z.output<typeof TelegramGetStickerSetRequestSchema>;
|
|
463
541
|
export declare const TelegramGetUpdatesRequestSchema: z.ZodObject<{
|
|
464
542
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
465
543
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -476,15 +554,20 @@ export declare const TelegramGetUpdatesRequestSchema: z.ZodObject<{
|
|
|
476
554
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
477
555
|
allowed_updates: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
478
556
|
}, z.ZodTypeAny, "passthrough">>;
|
|
479
|
-
export type TelegramGetUpdatesRequest = z.
|
|
557
|
+
export type TelegramGetUpdatesRequest = z.input<typeof TelegramGetUpdatesRequestSchema>;
|
|
558
|
+
export type TelegramGetUpdatesParsedRequest = z.output<typeof TelegramGetUpdatesRequestSchema>;
|
|
480
559
|
export declare const TelegramGetUserChatBoostsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
481
|
-
export type TelegramGetUserChatBoostsRequest = z.
|
|
560
|
+
export type TelegramGetUserChatBoostsRequest = z.input<typeof TelegramGetUserChatBoostsRequestSchema>;
|
|
561
|
+
export type TelegramGetUserChatBoostsParsedRequest = z.output<typeof TelegramGetUserChatBoostsRequestSchema>;
|
|
482
562
|
export declare const TelegramGetUserGiftsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
483
|
-
export type TelegramGetUserGiftsRequest = z.
|
|
563
|
+
export type TelegramGetUserGiftsRequest = z.input<typeof TelegramGetUserGiftsRequestSchema>;
|
|
564
|
+
export type TelegramGetUserGiftsParsedRequest = z.output<typeof TelegramGetUserGiftsRequestSchema>;
|
|
484
565
|
export declare const TelegramGetUserPersonalChatMessagesRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
485
|
-
export type TelegramGetUserPersonalChatMessagesRequest = z.
|
|
566
|
+
export type TelegramGetUserPersonalChatMessagesRequest = z.input<typeof TelegramGetUserPersonalChatMessagesRequestSchema>;
|
|
567
|
+
export type TelegramGetUserPersonalChatMessagesParsedRequest = z.output<typeof TelegramGetUserPersonalChatMessagesRequestSchema>;
|
|
486
568
|
export declare const TelegramGetWebhookInfoRequestSchema: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
487
|
-
export type TelegramGetWebhookInfoRequest = z.
|
|
569
|
+
export type TelegramGetWebhookInfoRequest = z.input<typeof TelegramGetWebhookInfoRequestSchema>;
|
|
570
|
+
export type TelegramGetWebhookInfoParsedRequest = z.output<typeof TelegramGetWebhookInfoRequestSchema>;
|
|
488
571
|
export declare const TelegramGiftPremiumSubscriptionRequestSchema: z.ZodObject<{
|
|
489
572
|
user_id: z.ZodNumber;
|
|
490
573
|
month_count: z.ZodNumber;
|
|
@@ -498,15 +581,20 @@ export declare const TelegramGiftPremiumSubscriptionRequestSchema: z.ZodObject<{
|
|
|
498
581
|
month_count: z.ZodNumber;
|
|
499
582
|
star_count: z.ZodNumber;
|
|
500
583
|
}, z.ZodTypeAny, "passthrough">>;
|
|
501
|
-
export type TelegramGiftPremiumSubscriptionRequest = z.
|
|
584
|
+
export type TelegramGiftPremiumSubscriptionRequest = z.input<typeof TelegramGiftPremiumSubscriptionRequestSchema>;
|
|
585
|
+
export type TelegramGiftPremiumSubscriptionParsedRequest = z.output<typeof TelegramGiftPremiumSubscriptionRequestSchema>;
|
|
502
586
|
export declare const TelegramHideGeneralForumTopicRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
503
|
-
export type TelegramHideGeneralForumTopicRequest = z.
|
|
587
|
+
export type TelegramHideGeneralForumTopicRequest = z.input<typeof TelegramHideGeneralForumTopicRequestSchema>;
|
|
588
|
+
export type TelegramHideGeneralForumTopicParsedRequest = z.output<typeof TelegramHideGeneralForumTopicRequestSchema>;
|
|
504
589
|
export declare const TelegramLeaveChatRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
505
|
-
export type TelegramLeaveChatRequest = z.
|
|
590
|
+
export type TelegramLeaveChatRequest = z.input<typeof TelegramLeaveChatRequestSchema>;
|
|
591
|
+
export type TelegramLeaveChatParsedRequest = z.output<typeof TelegramLeaveChatRequestSchema>;
|
|
506
592
|
export declare const TelegramLogOutRequestSchema: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
507
|
-
export type TelegramLogOutRequest = z.
|
|
593
|
+
export type TelegramLogOutRequest = z.input<typeof TelegramLogOutRequestSchema>;
|
|
594
|
+
export type TelegramLogOutParsedRequest = z.output<typeof TelegramLogOutRequestSchema>;
|
|
508
595
|
export declare const TelegramPinChatMessageRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
509
|
-
export type TelegramPinChatMessageRequest = z.
|
|
596
|
+
export type TelegramPinChatMessageRequest = z.input<typeof TelegramPinChatMessageRequestSchema>;
|
|
597
|
+
export type TelegramPinChatMessageParsedRequest = z.output<typeof TelegramPinChatMessageRequestSchema>;
|
|
510
598
|
export declare const TelegramPostStoryRequestSchema: z.ZodObject<{
|
|
511
599
|
business_connection_id: z.ZodString;
|
|
512
600
|
content: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -517,39 +605,56 @@ export declare const TelegramPostStoryRequestSchema: z.ZodObject<{
|
|
|
517
605
|
business_connection_id: z.ZodString;
|
|
518
606
|
content: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
519
607
|
}, z.ZodTypeAny, "passthrough">>;
|
|
520
|
-
export type TelegramPostStoryRequest = z.
|
|
608
|
+
export type TelegramPostStoryRequest = z.input<typeof TelegramPostStoryRequestSchema>;
|
|
609
|
+
export type TelegramPostStoryParsedRequest = z.output<typeof TelegramPostStoryRequestSchema>;
|
|
521
610
|
export declare const TelegramPromoteChatMemberRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
522
|
-
export type TelegramPromoteChatMemberRequest = z.
|
|
611
|
+
export type TelegramPromoteChatMemberRequest = z.input<typeof TelegramPromoteChatMemberRequestSchema>;
|
|
612
|
+
export type TelegramPromoteChatMemberParsedRequest = z.output<typeof TelegramPromoteChatMemberRequestSchema>;
|
|
523
613
|
export declare const TelegramReadBusinessMessageRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
524
|
-
export type TelegramReadBusinessMessageRequest = z.
|
|
614
|
+
export type TelegramReadBusinessMessageRequest = z.input<typeof TelegramReadBusinessMessageRequestSchema>;
|
|
615
|
+
export type TelegramReadBusinessMessageParsedRequest = z.output<typeof TelegramReadBusinessMessageRequestSchema>;
|
|
525
616
|
export declare const TelegramRefundStarPaymentRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
526
|
-
export type TelegramRefundStarPaymentRequest = z.
|
|
617
|
+
export type TelegramRefundStarPaymentRequest = z.input<typeof TelegramRefundStarPaymentRequestSchema>;
|
|
618
|
+
export type TelegramRefundStarPaymentParsedRequest = z.output<typeof TelegramRefundStarPaymentRequestSchema>;
|
|
527
619
|
export declare const TelegramRemoveBusinessAccountProfilePhotoRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
528
|
-
export type TelegramRemoveBusinessAccountProfilePhotoRequest = z.
|
|
620
|
+
export type TelegramRemoveBusinessAccountProfilePhotoRequest = z.input<typeof TelegramRemoveBusinessAccountProfilePhotoRequestSchema>;
|
|
621
|
+
export type TelegramRemoveBusinessAccountProfilePhotoParsedRequest = z.output<typeof TelegramRemoveBusinessAccountProfilePhotoRequestSchema>;
|
|
529
622
|
export declare const TelegramRemoveChatVerificationRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
530
|
-
export type TelegramRemoveChatVerificationRequest = z.
|
|
623
|
+
export type TelegramRemoveChatVerificationRequest = z.input<typeof TelegramRemoveChatVerificationRequestSchema>;
|
|
624
|
+
export type TelegramRemoveChatVerificationParsedRequest = z.output<typeof TelegramRemoveChatVerificationRequestSchema>;
|
|
531
625
|
export declare const TelegramRemoveUserVerificationRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
532
|
-
export type TelegramRemoveUserVerificationRequest = z.
|
|
626
|
+
export type TelegramRemoveUserVerificationRequest = z.input<typeof TelegramRemoveUserVerificationRequestSchema>;
|
|
627
|
+
export type TelegramRemoveUserVerificationParsedRequest = z.output<typeof TelegramRemoveUserVerificationRequestSchema>;
|
|
533
628
|
export declare const TelegramReopenForumTopicRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
534
|
-
export type TelegramReopenForumTopicRequest = z.
|
|
629
|
+
export type TelegramReopenForumTopicRequest = z.input<typeof TelegramReopenForumTopicRequestSchema>;
|
|
630
|
+
export type TelegramReopenForumTopicParsedRequest = z.output<typeof TelegramReopenForumTopicRequestSchema>;
|
|
535
631
|
export declare const TelegramReopenGeneralForumTopicRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
536
|
-
export type TelegramReopenGeneralForumTopicRequest = z.
|
|
632
|
+
export type TelegramReopenGeneralForumTopicRequest = z.input<typeof TelegramReopenGeneralForumTopicRequestSchema>;
|
|
633
|
+
export type TelegramReopenGeneralForumTopicParsedRequest = z.output<typeof TelegramReopenGeneralForumTopicRequestSchema>;
|
|
537
634
|
export declare const TelegramReplaceManagedBotTokenRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
538
|
-
export type TelegramReplaceManagedBotTokenRequest = z.
|
|
635
|
+
export type TelegramReplaceManagedBotTokenRequest = z.input<typeof TelegramReplaceManagedBotTokenRequestSchema>;
|
|
636
|
+
export type TelegramReplaceManagedBotTokenParsedRequest = z.output<typeof TelegramReplaceManagedBotTokenRequestSchema>;
|
|
539
637
|
export declare const TelegramReplaceStickerInSetRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
540
|
-
export type TelegramReplaceStickerInSetRequest = z.
|
|
638
|
+
export type TelegramReplaceStickerInSetRequest = z.input<typeof TelegramReplaceStickerInSetRequestSchema>;
|
|
639
|
+
export type TelegramReplaceStickerInSetParsedRequest = z.output<typeof TelegramReplaceStickerInSetRequestSchema>;
|
|
541
640
|
export declare const TelegramRepostStoryRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
542
|
-
export type TelegramRepostStoryRequest = z.
|
|
641
|
+
export type TelegramRepostStoryRequest = z.input<typeof TelegramRepostStoryRequestSchema>;
|
|
642
|
+
export type TelegramRepostStoryParsedRequest = z.output<typeof TelegramRepostStoryRequestSchema>;
|
|
543
643
|
export declare const TelegramRestrictChatMemberRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
544
|
-
export type TelegramRestrictChatMemberRequest = z.
|
|
644
|
+
export type TelegramRestrictChatMemberRequest = z.input<typeof TelegramRestrictChatMemberRequestSchema>;
|
|
645
|
+
export type TelegramRestrictChatMemberParsedRequest = z.output<typeof TelegramRestrictChatMemberRequestSchema>;
|
|
545
646
|
export declare const TelegramRevokeChatInviteLinkRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
546
|
-
export type TelegramRevokeChatInviteLinkRequest = z.
|
|
647
|
+
export type TelegramRevokeChatInviteLinkRequest = z.input<typeof TelegramRevokeChatInviteLinkRequestSchema>;
|
|
648
|
+
export type TelegramRevokeChatInviteLinkParsedRequest = z.output<typeof TelegramRevokeChatInviteLinkRequestSchema>;
|
|
547
649
|
export declare const TelegramSavePreparedInlineMessageRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
548
|
-
export type TelegramSavePreparedInlineMessageRequest = z.
|
|
650
|
+
export type TelegramSavePreparedInlineMessageRequest = z.input<typeof TelegramSavePreparedInlineMessageRequestSchema>;
|
|
651
|
+
export type TelegramSavePreparedInlineMessageParsedRequest = z.output<typeof TelegramSavePreparedInlineMessageRequestSchema>;
|
|
549
652
|
export declare const TelegramSavePreparedKeyboardButtonRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
550
|
-
export type TelegramSavePreparedKeyboardButtonRequest = z.
|
|
653
|
+
export type TelegramSavePreparedKeyboardButtonRequest = z.input<typeof TelegramSavePreparedKeyboardButtonRequestSchema>;
|
|
654
|
+
export type TelegramSavePreparedKeyboardButtonParsedRequest = z.output<typeof TelegramSavePreparedKeyboardButtonRequestSchema>;
|
|
551
655
|
export declare const TelegramSendAnimationRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
552
|
-
export type TelegramSendAnimationRequest = z.
|
|
656
|
+
export type TelegramSendAnimationRequest = z.input<typeof TelegramSendAnimationRequestSchema>;
|
|
657
|
+
export type TelegramSendAnimationParsedRequest = z.output<typeof TelegramSendAnimationRequestSchema>;
|
|
553
658
|
export declare const TelegramSendAudioRequestSchema: z.ZodObject<{
|
|
554
659
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
555
660
|
business_connection_id: z.ZodOptional<z.ZodString>;
|
|
@@ -614,9 +719,11 @@ export declare const TelegramSendAudioRequestSchema: z.ZodObject<{
|
|
|
614
719
|
audio: z.ZodUnion<[z.ZodString, z.ZodType<Blob, z.ZodTypeDef, Blob>]>;
|
|
615
720
|
thumbnail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodType<Blob, z.ZodTypeDef, Blob>]>>;
|
|
616
721
|
}, z.ZodTypeAny, "passthrough">>;
|
|
617
|
-
export type TelegramSendAudioRequest = z.
|
|
722
|
+
export type TelegramSendAudioRequest = z.input<typeof TelegramSendAudioRequestSchema>;
|
|
723
|
+
export type TelegramSendAudioParsedRequest = z.output<typeof TelegramSendAudioRequestSchema>;
|
|
618
724
|
export declare const TelegramSendChatActionRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
619
|
-
export type TelegramSendChatActionRequest = z.
|
|
725
|
+
export type TelegramSendChatActionRequest = z.input<typeof TelegramSendChatActionRequestSchema>;
|
|
726
|
+
export type TelegramSendChatActionParsedRequest = z.output<typeof TelegramSendChatActionRequestSchema>;
|
|
620
727
|
export declare const TelegramSendChatJoinRequestWebAppRequestSchema: z.ZodObject<{
|
|
621
728
|
chat_join_request_query_id: z.ZodString;
|
|
622
729
|
web_app_url: z.ZodString;
|
|
@@ -627,13 +734,17 @@ export declare const TelegramSendChatJoinRequestWebAppRequestSchema: z.ZodObject
|
|
|
627
734
|
chat_join_request_query_id: z.ZodString;
|
|
628
735
|
web_app_url: z.ZodString;
|
|
629
736
|
}, z.ZodTypeAny, "passthrough">>;
|
|
630
|
-
export type TelegramSendChatJoinRequestWebAppRequest = z.
|
|
737
|
+
export type TelegramSendChatJoinRequestWebAppRequest = z.input<typeof TelegramSendChatJoinRequestWebAppRequestSchema>;
|
|
738
|
+
export type TelegramSendChatJoinRequestWebAppParsedRequest = z.output<typeof TelegramSendChatJoinRequestWebAppRequestSchema>;
|
|
631
739
|
export declare const TelegramSendChecklistRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
632
|
-
export type TelegramSendChecklistRequest = z.
|
|
740
|
+
export type TelegramSendChecklistRequest = z.input<typeof TelegramSendChecklistRequestSchema>;
|
|
741
|
+
export type TelegramSendChecklistParsedRequest = z.output<typeof TelegramSendChecklistRequestSchema>;
|
|
633
742
|
export declare const TelegramSendContactRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
634
|
-
export type TelegramSendContactRequest = z.
|
|
743
|
+
export type TelegramSendContactRequest = z.input<typeof TelegramSendContactRequestSchema>;
|
|
744
|
+
export type TelegramSendContactParsedRequest = z.output<typeof TelegramSendContactRequestSchema>;
|
|
635
745
|
export declare const TelegramSendDiceRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
636
|
-
export type TelegramSendDiceRequest = z.
|
|
746
|
+
export type TelegramSendDiceRequest = z.input<typeof TelegramSendDiceRequestSchema>;
|
|
747
|
+
export type TelegramSendDiceParsedRequest = z.output<typeof TelegramSendDiceRequestSchema>;
|
|
637
748
|
export declare const TelegramSendDocumentRequestSchema: z.ZodObject<{
|
|
638
749
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
639
750
|
business_connection_id: z.ZodOptional<z.ZodString>;
|
|
@@ -698,7 +809,8 @@ export declare const TelegramSendDocumentRequestSchema: z.ZodObject<{
|
|
|
698
809
|
document: z.ZodUnion<[z.ZodString, z.ZodType<Blob, z.ZodTypeDef, Blob>]>;
|
|
699
810
|
thumbnail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodType<Blob, z.ZodTypeDef, Blob>]>>;
|
|
700
811
|
}, z.ZodTypeAny, "passthrough">>;
|
|
701
|
-
export type TelegramSendDocumentRequest = z.
|
|
812
|
+
export type TelegramSendDocumentRequest = z.input<typeof TelegramSendDocumentRequestSchema>;
|
|
813
|
+
export type TelegramSendDocumentParsedRequest = z.output<typeof TelegramSendDocumentRequestSchema>;
|
|
702
814
|
export declare const TelegramSendGameRequestSchema: z.ZodObject<{
|
|
703
815
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
704
816
|
business_connection_id: z.ZodOptional<z.ZodString>;
|
|
@@ -742,9 +854,11 @@ export declare const TelegramSendGameRequestSchema: z.ZodObject<{
|
|
|
742
854
|
} & {
|
|
743
855
|
game_short_name: z.ZodString;
|
|
744
856
|
}, z.ZodTypeAny, "passthrough">>;
|
|
745
|
-
export type TelegramSendGameRequest = z.
|
|
857
|
+
export type TelegramSendGameRequest = z.input<typeof TelegramSendGameRequestSchema>;
|
|
858
|
+
export type TelegramSendGameParsedRequest = z.output<typeof TelegramSendGameRequestSchema>;
|
|
746
859
|
export declare const TelegramSendGiftRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
747
|
-
export type TelegramSendGiftRequest = z.
|
|
860
|
+
export type TelegramSendGiftRequest = z.input<typeof TelegramSendGiftRequestSchema>;
|
|
861
|
+
export type TelegramSendGiftParsedRequest = z.output<typeof TelegramSendGiftRequestSchema>;
|
|
748
862
|
export declare const TelegramSendInvoiceRequestSchema: z.ZodObject<{
|
|
749
863
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
750
864
|
business_connection_id: z.ZodOptional<z.ZodString>;
|
|
@@ -800,11 +914,14 @@ export declare const TelegramSendInvoiceRequestSchema: z.ZodObject<{
|
|
|
800
914
|
currency: z.ZodString;
|
|
801
915
|
prices: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
802
916
|
}, z.ZodTypeAny, "passthrough">>;
|
|
803
|
-
export type TelegramSendInvoiceRequest = z.
|
|
917
|
+
export type TelegramSendInvoiceRequest = z.input<typeof TelegramSendInvoiceRequestSchema>;
|
|
918
|
+
export type TelegramSendInvoiceParsedRequest = z.output<typeof TelegramSendInvoiceRequestSchema>;
|
|
804
919
|
export declare const TelegramSendLivePhotoRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
805
|
-
export type TelegramSendLivePhotoRequest = z.
|
|
920
|
+
export type TelegramSendLivePhotoRequest = z.input<typeof TelegramSendLivePhotoRequestSchema>;
|
|
921
|
+
export type TelegramSendLivePhotoParsedRequest = z.output<typeof TelegramSendLivePhotoRequestSchema>;
|
|
806
922
|
export declare const TelegramSendLocationRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
807
|
-
export type TelegramSendLocationRequest = z.
|
|
923
|
+
export type TelegramSendLocationRequest = z.input<typeof TelegramSendLocationRequestSchema>;
|
|
924
|
+
export type TelegramSendLocationParsedRequest = z.output<typeof TelegramSendLocationRequestSchema>;
|
|
808
925
|
export declare const TelegramSendMediaGroupRequestSchema: z.ZodObject<{
|
|
809
926
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
810
927
|
business_connection_id: z.ZodOptional<z.ZodString>;
|
|
@@ -875,7 +992,8 @@ export declare const TelegramSendMediaGroupRequestSchema: z.ZodObject<{
|
|
|
875
992
|
thumbnail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodType<Blob, z.ZodTypeDef, Blob>]>>;
|
|
876
993
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
877
994
|
}, z.ZodTypeAny, "passthrough">>;
|
|
878
|
-
export type TelegramSendMediaGroupRequest = z.
|
|
995
|
+
export type TelegramSendMediaGroupRequest = z.input<typeof TelegramSendMediaGroupRequestSchema>;
|
|
996
|
+
export type TelegramSendMediaGroupParsedRequest = z.output<typeof TelegramSendMediaGroupRequestSchema>;
|
|
879
997
|
export declare const TelegramSendMessageRequestSchema: z.ZodObject<{
|
|
880
998
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
881
999
|
business_connection_id: z.ZodOptional<z.ZodString>;
|
|
@@ -928,9 +1046,11 @@ export declare const TelegramSendMessageRequestSchema: z.ZodObject<{
|
|
|
928
1046
|
entities: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
929
1047
|
link_preview_options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
930
1048
|
}, z.ZodTypeAny, "passthrough">>;
|
|
931
|
-
export type TelegramSendMessageRequest = z.
|
|
1049
|
+
export type TelegramSendMessageRequest = z.input<typeof TelegramSendMessageRequestSchema>;
|
|
1050
|
+
export type TelegramSendMessageParsedRequest = z.output<typeof TelegramSendMessageRequestSchema>;
|
|
932
1051
|
export declare const TelegramSendMessageDraftRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
933
|
-
export type TelegramSendMessageDraftRequest = z.
|
|
1052
|
+
export type TelegramSendMessageDraftRequest = z.input<typeof TelegramSendMessageDraftRequestSchema>;
|
|
1053
|
+
export type TelegramSendMessageDraftParsedRequest = z.output<typeof TelegramSendMessageDraftRequestSchema>;
|
|
934
1054
|
export declare const TelegramSendPaidMediaRequestSchema: z.ZodObject<{
|
|
935
1055
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
936
1056
|
business_connection_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1007,7 +1127,8 @@ export declare const TelegramSendPaidMediaRequestSchema: z.ZodObject<{
|
|
|
1007
1127
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
1008
1128
|
payload: z.ZodOptional<z.ZodString>;
|
|
1009
1129
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1010
|
-
export type TelegramSendPaidMediaRequest = z.
|
|
1130
|
+
export type TelegramSendPaidMediaRequest = z.input<typeof TelegramSendPaidMediaRequestSchema>;
|
|
1131
|
+
export type TelegramSendPaidMediaParsedRequest = z.output<typeof TelegramSendPaidMediaRequestSchema>;
|
|
1011
1132
|
export declare const TelegramSendPhotoRequestSchema: z.ZodObject<{
|
|
1012
1133
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1013
1134
|
business_connection_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1069,7 +1190,8 @@ export declare const TelegramSendPhotoRequestSchema: z.ZodObject<{
|
|
|
1069
1190
|
} & {
|
|
1070
1191
|
photo: z.ZodUnion<[z.ZodString, z.ZodType<Blob, z.ZodTypeDef, Blob>]>;
|
|
1071
1192
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1072
|
-
export type TelegramSendPhotoRequest = z.
|
|
1193
|
+
export type TelegramSendPhotoRequest = z.input<typeof TelegramSendPhotoRequestSchema>;
|
|
1194
|
+
export type TelegramSendPhotoParsedRequest = z.output<typeof TelegramSendPhotoRequestSchema>;
|
|
1073
1195
|
export declare const TelegramSendPollRequestSchema: z.ZodObject<{
|
|
1074
1196
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1075
1197
|
business_connection_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1119,15 +1241,20 @@ export declare const TelegramSendPollRequestSchema: z.ZodObject<{
|
|
|
1119
1241
|
options: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
1120
1242
|
media: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1121
1243
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1122
|
-
export type TelegramSendPollRequest = z.
|
|
1244
|
+
export type TelegramSendPollRequest = z.input<typeof TelegramSendPollRequestSchema>;
|
|
1245
|
+
export type TelegramSendPollParsedRequest = z.output<typeof TelegramSendPollRequestSchema>;
|
|
1123
1246
|
export declare const TelegramSendRichMessageRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1124
|
-
export type TelegramSendRichMessageRequest = z.
|
|
1247
|
+
export type TelegramSendRichMessageRequest = z.input<typeof TelegramSendRichMessageRequestSchema>;
|
|
1248
|
+
export type TelegramSendRichMessageParsedRequest = z.output<typeof TelegramSendRichMessageRequestSchema>;
|
|
1125
1249
|
export declare const TelegramSendRichMessageDraftRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1126
|
-
export type TelegramSendRichMessageDraftRequest = z.
|
|
1250
|
+
export type TelegramSendRichMessageDraftRequest = z.input<typeof TelegramSendRichMessageDraftRequestSchema>;
|
|
1251
|
+
export type TelegramSendRichMessageDraftParsedRequest = z.output<typeof TelegramSendRichMessageDraftRequestSchema>;
|
|
1127
1252
|
export declare const TelegramSendStickerRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1128
|
-
export type TelegramSendStickerRequest = z.
|
|
1253
|
+
export type TelegramSendStickerRequest = z.input<typeof TelegramSendStickerRequestSchema>;
|
|
1254
|
+
export type TelegramSendStickerParsedRequest = z.output<typeof TelegramSendStickerRequestSchema>;
|
|
1129
1255
|
export declare const TelegramSendVenueRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1130
|
-
export type TelegramSendVenueRequest = z.
|
|
1256
|
+
export type TelegramSendVenueRequest = z.input<typeof TelegramSendVenueRequestSchema>;
|
|
1257
|
+
export type TelegramSendVenueParsedRequest = z.output<typeof TelegramSendVenueRequestSchema>;
|
|
1131
1258
|
export declare const TelegramSendVideoRequestSchema: z.ZodObject<{
|
|
1132
1259
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1133
1260
|
business_connection_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1195,9 +1322,11 @@ export declare const TelegramSendVideoRequestSchema: z.ZodObject<{
|
|
|
1195
1322
|
thumbnail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodType<Blob, z.ZodTypeDef, Blob>]>>;
|
|
1196
1323
|
cover: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodType<Blob, z.ZodTypeDef, Blob>]>>;
|
|
1197
1324
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1198
|
-
export type TelegramSendVideoRequest = z.
|
|
1325
|
+
export type TelegramSendVideoRequest = z.input<typeof TelegramSendVideoRequestSchema>;
|
|
1326
|
+
export type TelegramSendVideoParsedRequest = z.output<typeof TelegramSendVideoRequestSchema>;
|
|
1199
1327
|
export declare const TelegramSendVideoNoteRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1200
|
-
export type TelegramSendVideoNoteRequest = z.
|
|
1328
|
+
export type TelegramSendVideoNoteRequest = z.input<typeof TelegramSendVideoNoteRequestSchema>;
|
|
1329
|
+
export type TelegramSendVideoNoteParsedRequest = z.output<typeof TelegramSendVideoNoteRequestSchema>;
|
|
1201
1330
|
export declare const TelegramSendVoiceRequestSchema: z.ZodObject<{
|
|
1202
1331
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1203
1332
|
business_connection_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1259,37 +1388,53 @@ export declare const TelegramSendVoiceRequestSchema: z.ZodObject<{
|
|
|
1259
1388
|
} & {
|
|
1260
1389
|
voice: z.ZodUnion<[z.ZodString, z.ZodType<Blob, z.ZodTypeDef, Blob>]>;
|
|
1261
1390
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1262
|
-
export type TelegramSendVoiceRequest = z.
|
|
1391
|
+
export type TelegramSendVoiceRequest = z.input<typeof TelegramSendVoiceRequestSchema>;
|
|
1392
|
+
export type TelegramSendVoiceParsedRequest = z.output<typeof TelegramSendVoiceRequestSchema>;
|
|
1263
1393
|
export declare const TelegramSetBusinessAccountBioRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1264
|
-
export type TelegramSetBusinessAccountBioRequest = z.
|
|
1394
|
+
export type TelegramSetBusinessAccountBioRequest = z.input<typeof TelegramSetBusinessAccountBioRequestSchema>;
|
|
1395
|
+
export type TelegramSetBusinessAccountBioParsedRequest = z.output<typeof TelegramSetBusinessAccountBioRequestSchema>;
|
|
1265
1396
|
export declare const TelegramSetBusinessAccountGiftSettingsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1266
|
-
export type TelegramSetBusinessAccountGiftSettingsRequest = z.
|
|
1397
|
+
export type TelegramSetBusinessAccountGiftSettingsRequest = z.input<typeof TelegramSetBusinessAccountGiftSettingsRequestSchema>;
|
|
1398
|
+
export type TelegramSetBusinessAccountGiftSettingsParsedRequest = z.output<typeof TelegramSetBusinessAccountGiftSettingsRequestSchema>;
|
|
1267
1399
|
export declare const TelegramSetBusinessAccountNameRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1268
|
-
export type TelegramSetBusinessAccountNameRequest = z.
|
|
1400
|
+
export type TelegramSetBusinessAccountNameRequest = z.input<typeof TelegramSetBusinessAccountNameRequestSchema>;
|
|
1401
|
+
export type TelegramSetBusinessAccountNameParsedRequest = z.output<typeof TelegramSetBusinessAccountNameRequestSchema>;
|
|
1269
1402
|
export declare const TelegramSetBusinessAccountProfilePhotoRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1270
|
-
export type TelegramSetBusinessAccountProfilePhotoRequest = z.
|
|
1403
|
+
export type TelegramSetBusinessAccountProfilePhotoRequest = z.input<typeof TelegramSetBusinessAccountProfilePhotoRequestSchema>;
|
|
1404
|
+
export type TelegramSetBusinessAccountProfilePhotoParsedRequest = z.output<typeof TelegramSetBusinessAccountProfilePhotoRequestSchema>;
|
|
1271
1405
|
export declare const TelegramSetBusinessAccountUsernameRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1272
|
-
export type TelegramSetBusinessAccountUsernameRequest = z.
|
|
1406
|
+
export type TelegramSetBusinessAccountUsernameRequest = z.input<typeof TelegramSetBusinessAccountUsernameRequestSchema>;
|
|
1407
|
+
export type TelegramSetBusinessAccountUsernameParsedRequest = z.output<typeof TelegramSetBusinessAccountUsernameRequestSchema>;
|
|
1273
1408
|
export declare const TelegramSetChatAdministratorCustomTitleRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1274
|
-
export type TelegramSetChatAdministratorCustomTitleRequest = z.
|
|
1409
|
+
export type TelegramSetChatAdministratorCustomTitleRequest = z.input<typeof TelegramSetChatAdministratorCustomTitleRequestSchema>;
|
|
1410
|
+
export type TelegramSetChatAdministratorCustomTitleParsedRequest = z.output<typeof TelegramSetChatAdministratorCustomTitleRequestSchema>;
|
|
1275
1411
|
export declare const TelegramSetChatDescriptionRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1276
|
-
export type TelegramSetChatDescriptionRequest = z.
|
|
1412
|
+
export type TelegramSetChatDescriptionRequest = z.input<typeof TelegramSetChatDescriptionRequestSchema>;
|
|
1413
|
+
export type TelegramSetChatDescriptionParsedRequest = z.output<typeof TelegramSetChatDescriptionRequestSchema>;
|
|
1277
1414
|
export declare const TelegramSetChatMemberTagRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1278
|
-
export type TelegramSetChatMemberTagRequest = z.
|
|
1415
|
+
export type TelegramSetChatMemberTagRequest = z.input<typeof TelegramSetChatMemberTagRequestSchema>;
|
|
1416
|
+
export type TelegramSetChatMemberTagParsedRequest = z.output<typeof TelegramSetChatMemberTagRequestSchema>;
|
|
1279
1417
|
export declare const TelegramSetChatMenuButtonRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1280
|
-
export type TelegramSetChatMenuButtonRequest = z.
|
|
1418
|
+
export type TelegramSetChatMenuButtonRequest = z.input<typeof TelegramSetChatMenuButtonRequestSchema>;
|
|
1419
|
+
export type TelegramSetChatMenuButtonParsedRequest = z.output<typeof TelegramSetChatMenuButtonRequestSchema>;
|
|
1281
1420
|
export declare const TelegramSetChatPermissionsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1282
|
-
export type TelegramSetChatPermissionsRequest = z.
|
|
1421
|
+
export type TelegramSetChatPermissionsRequest = z.input<typeof TelegramSetChatPermissionsRequestSchema>;
|
|
1422
|
+
export type TelegramSetChatPermissionsParsedRequest = z.output<typeof TelegramSetChatPermissionsRequestSchema>;
|
|
1283
1423
|
export declare const TelegramSetChatPhotoRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1284
|
-
export type TelegramSetChatPhotoRequest = z.
|
|
1424
|
+
export type TelegramSetChatPhotoRequest = z.input<typeof TelegramSetChatPhotoRequestSchema>;
|
|
1425
|
+
export type TelegramSetChatPhotoParsedRequest = z.output<typeof TelegramSetChatPhotoRequestSchema>;
|
|
1285
1426
|
export declare const TelegramSetChatStickerSetRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1286
|
-
export type TelegramSetChatStickerSetRequest = z.
|
|
1427
|
+
export type TelegramSetChatStickerSetRequest = z.input<typeof TelegramSetChatStickerSetRequestSchema>;
|
|
1428
|
+
export type TelegramSetChatStickerSetParsedRequest = z.output<typeof TelegramSetChatStickerSetRequestSchema>;
|
|
1287
1429
|
export declare const TelegramSetChatTitleRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1288
|
-
export type TelegramSetChatTitleRequest = z.
|
|
1430
|
+
export type TelegramSetChatTitleRequest = z.input<typeof TelegramSetChatTitleRequestSchema>;
|
|
1431
|
+
export type TelegramSetChatTitleParsedRequest = z.output<typeof TelegramSetChatTitleRequestSchema>;
|
|
1289
1432
|
export declare const TelegramSetCustomEmojiStickerSetThumbnailRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1290
|
-
export type TelegramSetCustomEmojiStickerSetThumbnailRequest = z.
|
|
1433
|
+
export type TelegramSetCustomEmojiStickerSetThumbnailRequest = z.input<typeof TelegramSetCustomEmojiStickerSetThumbnailRequestSchema>;
|
|
1434
|
+
export type TelegramSetCustomEmojiStickerSetThumbnailParsedRequest = z.output<typeof TelegramSetCustomEmojiStickerSetThumbnailRequestSchema>;
|
|
1291
1435
|
export declare const TelegramSetGameScoreRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1292
|
-
export type TelegramSetGameScoreRequest = z.
|
|
1436
|
+
export type TelegramSetGameScoreRequest = z.input<typeof TelegramSetGameScoreRequestSchema>;
|
|
1437
|
+
export type TelegramSetGameScoreParsedRequest = z.output<typeof TelegramSetGameScoreRequestSchema>;
|
|
1293
1438
|
export declare const TelegramSetManagedBotAccessSettingsRequestSchema: z.ZodObject<{
|
|
1294
1439
|
user_id: z.ZodNumber;
|
|
1295
1440
|
is_access_restricted: z.ZodBoolean;
|
|
@@ -1306,7 +1451,8 @@ export declare const TelegramSetManagedBotAccessSettingsRequestSchema: z.ZodObje
|
|
|
1306
1451
|
added_user_ids: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
1307
1452
|
removed_user_ids: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
1308
1453
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1309
|
-
export type TelegramSetManagedBotAccessSettingsRequest = z.
|
|
1454
|
+
export type TelegramSetManagedBotAccessSettingsRequest = z.input<typeof TelegramSetManagedBotAccessSettingsRequestSchema>;
|
|
1455
|
+
export type TelegramSetManagedBotAccessSettingsParsedRequest = z.output<typeof TelegramSetManagedBotAccessSettingsRequestSchema>;
|
|
1310
1456
|
export declare const TelegramSetMessageReactionRequestSchema: z.ZodObject<{
|
|
1311
1457
|
chat_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1312
1458
|
message_id: z.ZodNumber;
|
|
@@ -1320,7 +1466,8 @@ export declare const TelegramSetMessageReactionRequestSchema: z.ZodObject<{
|
|
|
1320
1466
|
message_id: z.ZodNumber;
|
|
1321
1467
|
reaction: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
1322
1468
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1323
|
-
export type TelegramSetMessageReactionRequest = z.
|
|
1469
|
+
export type TelegramSetMessageReactionRequest = z.input<typeof TelegramSetMessageReactionRequestSchema>;
|
|
1470
|
+
export type TelegramSetMessageReactionParsedRequest = z.output<typeof TelegramSetMessageReactionRequestSchema>;
|
|
1324
1471
|
export declare const TelegramSetMyCommandsRequestSchema: z.ZodObject<{
|
|
1325
1472
|
commands: z.ZodArray<z.ZodObject<{
|
|
1326
1473
|
command: z.ZodString;
|
|
@@ -1361,9 +1508,11 @@ export declare const TelegramSetMyCommandsRequestSchema: z.ZodObject<{
|
|
|
1361
1508
|
scope: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1362
1509
|
language_code: z.ZodOptional<z.ZodString>;
|
|
1363
1510
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1364
|
-
export type TelegramSetMyCommandsRequest = z.
|
|
1511
|
+
export type TelegramSetMyCommandsRequest = z.input<typeof TelegramSetMyCommandsRequestSchema>;
|
|
1512
|
+
export type TelegramSetMyCommandsParsedRequest = z.output<typeof TelegramSetMyCommandsRequestSchema>;
|
|
1365
1513
|
export declare const TelegramSetMyDefaultAdministratorRightsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1366
|
-
export type TelegramSetMyDefaultAdministratorRightsRequest = z.
|
|
1514
|
+
export type TelegramSetMyDefaultAdministratorRightsRequest = z.input<typeof TelegramSetMyDefaultAdministratorRightsRequestSchema>;
|
|
1515
|
+
export type TelegramSetMyDefaultAdministratorRightsParsedRequest = z.output<typeof TelegramSetMyDefaultAdministratorRightsRequestSchema>;
|
|
1367
1516
|
export declare const TelegramSetMyDescriptionRequestSchema: z.ZodObject<{
|
|
1368
1517
|
description: z.ZodOptional<z.ZodString>;
|
|
1369
1518
|
language_code: z.ZodOptional<z.ZodString>;
|
|
@@ -1374,7 +1523,8 @@ export declare const TelegramSetMyDescriptionRequestSchema: z.ZodObject<{
|
|
|
1374
1523
|
description: z.ZodOptional<z.ZodString>;
|
|
1375
1524
|
language_code: z.ZodOptional<z.ZodString>;
|
|
1376
1525
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1377
|
-
export type TelegramSetMyDescriptionRequest = z.
|
|
1526
|
+
export type TelegramSetMyDescriptionRequest = z.input<typeof TelegramSetMyDescriptionRequestSchema>;
|
|
1527
|
+
export type TelegramSetMyDescriptionParsedRequest = z.output<typeof TelegramSetMyDescriptionRequestSchema>;
|
|
1378
1528
|
export declare const TelegramSetMyNameRequestSchema: z.ZodObject<{
|
|
1379
1529
|
name: z.ZodOptional<z.ZodString>;
|
|
1380
1530
|
language_code: z.ZodOptional<z.ZodString>;
|
|
@@ -1385,7 +1535,8 @@ export declare const TelegramSetMyNameRequestSchema: z.ZodObject<{
|
|
|
1385
1535
|
name: z.ZodOptional<z.ZodString>;
|
|
1386
1536
|
language_code: z.ZodOptional<z.ZodString>;
|
|
1387
1537
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1388
|
-
export type TelegramSetMyNameRequest = z.
|
|
1538
|
+
export type TelegramSetMyNameRequest = z.input<typeof TelegramSetMyNameRequestSchema>;
|
|
1539
|
+
export type TelegramSetMyNameParsedRequest = z.output<typeof TelegramSetMyNameRequestSchema>;
|
|
1389
1540
|
export declare const TelegramSetMyShortDescriptionRequestSchema: z.ZodObject<{
|
|
1390
1541
|
short_description: z.ZodOptional<z.ZodString>;
|
|
1391
1542
|
language_code: z.ZodOptional<z.ZodString>;
|
|
@@ -1396,7 +1547,8 @@ export declare const TelegramSetMyShortDescriptionRequestSchema: z.ZodObject<{
|
|
|
1396
1547
|
short_description: z.ZodOptional<z.ZodString>;
|
|
1397
1548
|
language_code: z.ZodOptional<z.ZodString>;
|
|
1398
1549
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1399
|
-
export type TelegramSetMyShortDescriptionRequest = z.
|
|
1550
|
+
export type TelegramSetMyShortDescriptionRequest = z.input<typeof TelegramSetMyShortDescriptionRequestSchema>;
|
|
1551
|
+
export type TelegramSetMyShortDescriptionParsedRequest = z.output<typeof TelegramSetMyShortDescriptionRequestSchema>;
|
|
1400
1552
|
export declare const TelegramSetPassportDataErrorsRequestSchema: z.ZodObject<{
|
|
1401
1553
|
user_id: z.ZodNumber;
|
|
1402
1554
|
errors: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
@@ -1407,19 +1559,26 @@ export declare const TelegramSetPassportDataErrorsRequestSchema: z.ZodObject<{
|
|
|
1407
1559
|
user_id: z.ZodNumber;
|
|
1408
1560
|
errors: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
1409
1561
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1410
|
-
export type TelegramSetPassportDataErrorsRequest = z.
|
|
1562
|
+
export type TelegramSetPassportDataErrorsRequest = z.input<typeof TelegramSetPassportDataErrorsRequestSchema>;
|
|
1563
|
+
export type TelegramSetPassportDataErrorsParsedRequest = z.output<typeof TelegramSetPassportDataErrorsRequestSchema>;
|
|
1411
1564
|
export declare const TelegramSetStickerEmojiListRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1412
|
-
export type TelegramSetStickerEmojiListRequest = z.
|
|
1565
|
+
export type TelegramSetStickerEmojiListRequest = z.input<typeof TelegramSetStickerEmojiListRequestSchema>;
|
|
1566
|
+
export type TelegramSetStickerEmojiListParsedRequest = z.output<typeof TelegramSetStickerEmojiListRequestSchema>;
|
|
1413
1567
|
export declare const TelegramSetStickerKeywordsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1414
|
-
export type TelegramSetStickerKeywordsRequest = z.
|
|
1568
|
+
export type TelegramSetStickerKeywordsRequest = z.input<typeof TelegramSetStickerKeywordsRequestSchema>;
|
|
1569
|
+
export type TelegramSetStickerKeywordsParsedRequest = z.output<typeof TelegramSetStickerKeywordsRequestSchema>;
|
|
1415
1570
|
export declare const TelegramSetStickerMaskPositionRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1416
|
-
export type TelegramSetStickerMaskPositionRequest = z.
|
|
1571
|
+
export type TelegramSetStickerMaskPositionRequest = z.input<typeof TelegramSetStickerMaskPositionRequestSchema>;
|
|
1572
|
+
export type TelegramSetStickerMaskPositionParsedRequest = z.output<typeof TelegramSetStickerMaskPositionRequestSchema>;
|
|
1417
1573
|
export declare const TelegramSetStickerPositionInSetRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1418
|
-
export type TelegramSetStickerPositionInSetRequest = z.
|
|
1574
|
+
export type TelegramSetStickerPositionInSetRequest = z.input<typeof TelegramSetStickerPositionInSetRequestSchema>;
|
|
1575
|
+
export type TelegramSetStickerPositionInSetParsedRequest = z.output<typeof TelegramSetStickerPositionInSetRequestSchema>;
|
|
1419
1576
|
export declare const TelegramSetStickerSetThumbnailRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1420
|
-
export type TelegramSetStickerSetThumbnailRequest = z.
|
|
1577
|
+
export type TelegramSetStickerSetThumbnailRequest = z.input<typeof TelegramSetStickerSetThumbnailRequestSchema>;
|
|
1578
|
+
export type TelegramSetStickerSetThumbnailParsedRequest = z.output<typeof TelegramSetStickerSetThumbnailRequestSchema>;
|
|
1421
1579
|
export declare const TelegramSetStickerSetTitleRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1422
|
-
export type TelegramSetStickerSetTitleRequest = z.
|
|
1580
|
+
export type TelegramSetStickerSetTitleRequest = z.input<typeof TelegramSetStickerSetTitleRequestSchema>;
|
|
1581
|
+
export type TelegramSetStickerSetTitleParsedRequest = z.output<typeof TelegramSetStickerSetTitleRequestSchema>;
|
|
1423
1582
|
export declare const TelegramSetUserEmojiStatusRequestSchema: z.ZodObject<{
|
|
1424
1583
|
user_id: z.ZodNumber;
|
|
1425
1584
|
emoji_status_custom_emoji_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1430,7 +1589,8 @@ export declare const TelegramSetUserEmojiStatusRequestSchema: z.ZodObject<{
|
|
|
1430
1589
|
user_id: z.ZodNumber;
|
|
1431
1590
|
emoji_status_custom_emoji_id: z.ZodOptional<z.ZodString>;
|
|
1432
1591
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1433
|
-
export type TelegramSetUserEmojiStatusRequest = z.
|
|
1592
|
+
export type TelegramSetUserEmojiStatusRequest = z.input<typeof TelegramSetUserEmojiStatusRequestSchema>;
|
|
1593
|
+
export type TelegramSetUserEmojiStatusParsedRequest = z.output<typeof TelegramSetUserEmojiStatusRequestSchema>;
|
|
1434
1594
|
export declare const TelegramSetWebhookRequestSchema: z.ZodObject<{
|
|
1435
1595
|
url: z.ZodString;
|
|
1436
1596
|
certificate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodType<Blob, z.ZodTypeDef, Blob>]>>;
|
|
@@ -1447,47 +1607,69 @@ export declare const TelegramSetWebhookRequestSchema: z.ZodObject<{
|
|
|
1447
1607
|
allowed_updates: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1448
1608
|
secret_token: z.ZodOptional<z.ZodString>;
|
|
1449
1609
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1450
|
-
export type TelegramSetWebhookRequest = z.
|
|
1610
|
+
export type TelegramSetWebhookRequest = z.input<typeof TelegramSetWebhookRequestSchema>;
|
|
1611
|
+
export type TelegramSetWebhookParsedRequest = z.output<typeof TelegramSetWebhookRequestSchema>;
|
|
1451
1612
|
export declare const TelegramStopMessageLiveLocationRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1452
|
-
export type TelegramStopMessageLiveLocationRequest = z.
|
|
1613
|
+
export type TelegramStopMessageLiveLocationRequest = z.input<typeof TelegramStopMessageLiveLocationRequestSchema>;
|
|
1614
|
+
export type TelegramStopMessageLiveLocationParsedRequest = z.output<typeof TelegramStopMessageLiveLocationRequestSchema>;
|
|
1453
1615
|
export declare const TelegramStopPollRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1454
|
-
export type TelegramStopPollRequest = z.
|
|
1616
|
+
export type TelegramStopPollRequest = z.input<typeof TelegramStopPollRequestSchema>;
|
|
1617
|
+
export type TelegramStopPollParsedRequest = z.output<typeof TelegramStopPollRequestSchema>;
|
|
1455
1618
|
export declare const TelegramTransferBusinessAccountStarsRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1456
|
-
export type TelegramTransferBusinessAccountStarsRequest = z.
|
|
1619
|
+
export type TelegramTransferBusinessAccountStarsRequest = z.input<typeof TelegramTransferBusinessAccountStarsRequestSchema>;
|
|
1620
|
+
export type TelegramTransferBusinessAccountStarsParsedRequest = z.output<typeof TelegramTransferBusinessAccountStarsRequestSchema>;
|
|
1457
1621
|
export declare const TelegramTransferGiftRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1458
|
-
export type TelegramTransferGiftRequest = z.
|
|
1622
|
+
export type TelegramTransferGiftRequest = z.input<typeof TelegramTransferGiftRequestSchema>;
|
|
1623
|
+
export type TelegramTransferGiftParsedRequest = z.output<typeof TelegramTransferGiftRequestSchema>;
|
|
1459
1624
|
export declare const TelegramUnbanChatMemberRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1460
|
-
export type TelegramUnbanChatMemberRequest = z.
|
|
1625
|
+
export type TelegramUnbanChatMemberRequest = z.input<typeof TelegramUnbanChatMemberRequestSchema>;
|
|
1626
|
+
export type TelegramUnbanChatMemberParsedRequest = z.output<typeof TelegramUnbanChatMemberRequestSchema>;
|
|
1461
1627
|
export declare const TelegramUnbanChatSenderChatRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1462
|
-
export type TelegramUnbanChatSenderChatRequest = z.
|
|
1628
|
+
export type TelegramUnbanChatSenderChatRequest = z.input<typeof TelegramUnbanChatSenderChatRequestSchema>;
|
|
1629
|
+
export type TelegramUnbanChatSenderChatParsedRequest = z.output<typeof TelegramUnbanChatSenderChatRequestSchema>;
|
|
1463
1630
|
export declare const TelegramUnhideGeneralForumTopicRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1464
|
-
export type TelegramUnhideGeneralForumTopicRequest = z.
|
|
1631
|
+
export type TelegramUnhideGeneralForumTopicRequest = z.input<typeof TelegramUnhideGeneralForumTopicRequestSchema>;
|
|
1632
|
+
export type TelegramUnhideGeneralForumTopicParsedRequest = z.output<typeof TelegramUnhideGeneralForumTopicRequestSchema>;
|
|
1465
1633
|
export declare const TelegramUnpinAllChatMessagesRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1466
|
-
export type TelegramUnpinAllChatMessagesRequest = z.
|
|
1634
|
+
export type TelegramUnpinAllChatMessagesRequest = z.input<typeof TelegramUnpinAllChatMessagesRequestSchema>;
|
|
1635
|
+
export type TelegramUnpinAllChatMessagesParsedRequest = z.output<typeof TelegramUnpinAllChatMessagesRequestSchema>;
|
|
1467
1636
|
export declare const TelegramUnpinAllForumTopicMessagesRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1468
|
-
export type TelegramUnpinAllForumTopicMessagesRequest = z.
|
|
1637
|
+
export type TelegramUnpinAllForumTopicMessagesRequest = z.input<typeof TelegramUnpinAllForumTopicMessagesRequestSchema>;
|
|
1638
|
+
export type TelegramUnpinAllForumTopicMessagesParsedRequest = z.output<typeof TelegramUnpinAllForumTopicMessagesRequestSchema>;
|
|
1469
1639
|
export declare const TelegramUnpinAllGeneralForumTopicMessagesRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1470
|
-
export type TelegramUnpinAllGeneralForumTopicMessagesRequest = z.
|
|
1640
|
+
export type TelegramUnpinAllGeneralForumTopicMessagesRequest = z.input<typeof TelegramUnpinAllGeneralForumTopicMessagesRequestSchema>;
|
|
1641
|
+
export type TelegramUnpinAllGeneralForumTopicMessagesParsedRequest = z.output<typeof TelegramUnpinAllGeneralForumTopicMessagesRequestSchema>;
|
|
1471
1642
|
export declare const TelegramUnpinChatMessageRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1472
|
-
export type TelegramUnpinChatMessageRequest = z.
|
|
1643
|
+
export type TelegramUnpinChatMessageRequest = z.input<typeof TelegramUnpinChatMessageRequestSchema>;
|
|
1644
|
+
export type TelegramUnpinChatMessageParsedRequest = z.output<typeof TelegramUnpinChatMessageRequestSchema>;
|
|
1473
1645
|
export declare const TelegramUpgradeGiftRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1474
|
-
export type TelegramUpgradeGiftRequest = z.
|
|
1646
|
+
export type TelegramUpgradeGiftRequest = z.input<typeof TelegramUpgradeGiftRequestSchema>;
|
|
1647
|
+
export type TelegramUpgradeGiftParsedRequest = z.output<typeof TelegramUpgradeGiftRequestSchema>;
|
|
1475
1648
|
export declare const TelegramUploadStickerFileRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1476
|
-
export type TelegramUploadStickerFileRequest = z.
|
|
1649
|
+
export type TelegramUploadStickerFileRequest = z.input<typeof TelegramUploadStickerFileRequestSchema>;
|
|
1650
|
+
export type TelegramUploadStickerFileParsedRequest = z.output<typeof TelegramUploadStickerFileRequestSchema>;
|
|
1477
1651
|
export declare const TelegramVerifyChatRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1478
|
-
export type TelegramVerifyChatRequest = z.
|
|
1652
|
+
export type TelegramVerifyChatRequest = z.input<typeof TelegramVerifyChatRequestSchema>;
|
|
1653
|
+
export type TelegramVerifyChatParsedRequest = z.output<typeof TelegramVerifyChatRequestSchema>;
|
|
1479
1654
|
export declare const TelegramVerifyUserRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1480
|
-
export type TelegramVerifyUserRequest = z.
|
|
1655
|
+
export type TelegramVerifyUserRequest = z.input<typeof TelegramVerifyUserRequestSchema>;
|
|
1656
|
+
export type TelegramVerifyUserParsedRequest = z.output<typeof TelegramVerifyUserRequestSchema>;
|
|
1481
1657
|
export declare const TelegramApproveSuggestedPostRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1482
|
-
export type TelegramApproveSuggestedPostRequest = z.
|
|
1658
|
+
export type TelegramApproveSuggestedPostRequest = z.input<typeof TelegramApproveSuggestedPostRequestSchema>;
|
|
1659
|
+
export type TelegramApproveSuggestedPostParsedRequest = z.output<typeof TelegramApproveSuggestedPostRequestSchema>;
|
|
1483
1660
|
export declare const TelegramDeclineSuggestedPostRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1484
|
-
export type TelegramDeclineSuggestedPostRequest = z.
|
|
1661
|
+
export type TelegramDeclineSuggestedPostRequest = z.input<typeof TelegramDeclineSuggestedPostRequestSchema>;
|
|
1662
|
+
export type TelegramDeclineSuggestedPostParsedRequest = z.output<typeof TelegramDeclineSuggestedPostRequestSchema>;
|
|
1485
1663
|
export declare const TelegramGetUserProfileAudiosRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1486
|
-
export type TelegramGetUserProfileAudiosRequest = z.
|
|
1664
|
+
export type TelegramGetUserProfileAudiosRequest = z.input<typeof TelegramGetUserProfileAudiosRequestSchema>;
|
|
1665
|
+
export type TelegramGetUserProfileAudiosParsedRequest = z.output<typeof TelegramGetUserProfileAudiosRequestSchema>;
|
|
1487
1666
|
export declare const TelegramGetUserProfilePhotosRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1488
|
-
export type TelegramGetUserProfilePhotosRequest = z.
|
|
1667
|
+
export type TelegramGetUserProfilePhotosRequest = z.input<typeof TelegramGetUserProfilePhotosRequestSchema>;
|
|
1668
|
+
export type TelegramGetUserProfilePhotosParsedRequest = z.output<typeof TelegramGetUserProfilePhotosRequestSchema>;
|
|
1489
1669
|
export declare const TelegramRemoveMyProfilePhotoRequestSchema: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
1490
|
-
export type TelegramRemoveMyProfilePhotoRequest = z.
|
|
1670
|
+
export type TelegramRemoveMyProfilePhotoRequest = z.input<typeof TelegramRemoveMyProfilePhotoRequestSchema>;
|
|
1671
|
+
export type TelegramRemoveMyProfilePhotoParsedRequest = z.output<typeof TelegramRemoveMyProfilePhotoRequestSchema>;
|
|
1491
1672
|
export declare const TelegramSetMyProfilePhotoRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1492
|
-
export type TelegramSetMyProfilePhotoRequest = z.
|
|
1673
|
+
export type TelegramSetMyProfilePhotoRequest = z.input<typeof TelegramSetMyProfilePhotoRequestSchema>;
|
|
1674
|
+
export type TelegramSetMyProfilePhotoParsedRequest = z.output<typeof TelegramSetMyProfilePhotoRequestSchema>;
|
|
1493
1675
|
//# sourceMappingURL=zod.d.ts.map
|