@apicity/telegram 0.5.3 → 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 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.infer<typeof TelegramEmptyRequestSchema>;
181
- export type TelegramGenericRequest = z.infer<typeof TelegramGenericRequestSchema>;
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.infer<typeof TelegramAddStickerToSetRequestSchema>;
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.infer<typeof TelegramAnswerCallbackQueryRequestSchema>;
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.infer<typeof TelegramAnswerChatJoinRequestQueryRequestSchema>;
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.infer<typeof TelegramAnswerGuestQueryRequestSchema>;
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.infer<typeof TelegramAnswerInlineQueryRequestSchema>;
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.infer<typeof TelegramAnswerPreCheckoutQueryRequestSchema>;
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.infer<typeof TelegramAnswerShippingQueryRequestSchema>;
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.infer<typeof TelegramAnswerWebAppQueryRequestSchema>;
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.infer<typeof TelegramApproveChatJoinRequestRequestSchema>;
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.infer<typeof TelegramBanChatMemberRequestSchema>;
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.infer<typeof TelegramBanChatSenderChatRequestSchema>;
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.infer<typeof TelegramCloseRequestSchema>;
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.infer<typeof TelegramCloseForumTopicRequestSchema>;
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.infer<typeof TelegramCloseGeneralForumTopicRequestSchema>;
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.infer<typeof TelegramConvertGiftToStarsRequestSchema>;
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.infer<typeof TelegramCopyMessageRequestSchema>;
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.infer<typeof TelegramCopyMessagesRequestSchema>;
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.infer<typeof TelegramCreateChatInviteLinkRequestSchema>;
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.infer<typeof TelegramCreateChatSubscriptionInviteLinkRequestSchema>;
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.infer<typeof TelegramCreateForumTopicRequestSchema>;
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.infer<typeof TelegramCreateInvoiceLinkRequestSchema>;
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.infer<typeof TelegramCreateNewStickerSetRequestSchema>;
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.infer<typeof TelegramDeclineChatJoinRequestRequestSchema>;
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.infer<typeof TelegramDeleteAllMessageReactionsRequestSchema>;
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.infer<typeof TelegramDeleteBusinessMessagesRequestSchema>;
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.infer<typeof TelegramDeleteChatPhotoRequestSchema>;
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.infer<typeof TelegramDeleteChatStickerSetRequestSchema>;
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.infer<typeof TelegramDeleteForumTopicRequestSchema>;
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.infer<typeof TelegramDeleteMessageRequestSchema>;
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.infer<typeof TelegramDeleteMessageReactionRequestSchema>;
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.infer<typeof TelegramDeleteMessagesRequestSchema>;
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.infer<typeof TelegramDeleteMyCommandsRequestSchema>;
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.infer<typeof TelegramDeleteStickerFromSetRequestSchema>;
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.infer<typeof TelegramDeleteStickerSetRequestSchema>;
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.infer<typeof TelegramDeleteStoryRequestSchema>;
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.infer<typeof TelegramDeleteWebhookRequestSchema>;
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.infer<typeof TelegramEditChatInviteLinkRequestSchema>;
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.infer<typeof TelegramEditChatSubscriptionInviteLinkRequestSchema>;
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.infer<typeof TelegramEditForumTopicRequestSchema>;
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.infer<typeof TelegramEditGeneralForumTopicRequestSchema>;
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.infer<typeof TelegramEditMessageCaptionRequestSchema>;
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.infer<typeof TelegramEditMessageChecklistRequestSchema>;
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.infer<typeof TelegramEditMessageLiveLocationRequestSchema>;
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.infer<typeof TelegramEditMessageMediaRequestSchema>;
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.infer<typeof TelegramEditMessageReplyMarkupRequestSchema>;
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.infer<typeof TelegramEditMessageTextRequestSchema>;
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.infer<typeof TelegramEditStoryRequestSchema>;
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.infer<typeof TelegramEditUserStarSubscriptionRequestSchema>;
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.infer<typeof TelegramExportChatInviteLinkRequestSchema>;
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.infer<typeof TelegramForwardMessageRequestSchema>;
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.infer<typeof TelegramForwardMessagesRequestSchema>;
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.infer<typeof TelegramGetAvailableGiftsRequestSchema>;
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.infer<typeof TelegramGetBusinessAccountGiftsRequestSchema>;
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.infer<typeof TelegramGetBusinessAccountStarBalanceRequestSchema>;
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.infer<typeof TelegramGetBusinessConnectionRequestSchema>;
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.infer<typeof TelegramGetChatRequestSchema>;
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.infer<typeof TelegramGetChatAdministratorsRequestSchema>;
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.infer<typeof TelegramGetChatGiftsRequestSchema>;
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.infer<typeof TelegramGetChatMemberRequestSchema>;
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.infer<typeof TelegramGetChatMemberCountRequestSchema>;
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.infer<typeof TelegramGetChatMenuButtonRequestSchema>;
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.infer<typeof TelegramGetCustomEmojiStickersRequestSchema>;
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.infer<typeof TelegramGetFileRequestSchema>;
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.infer<typeof TelegramGetForumTopicIconStickersRequestSchema>;
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.infer<typeof TelegramGetGameHighScoresRequestSchema>;
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.infer<typeof TelegramGetManagedBotAccessSettingsRequestSchema>;
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.infer<typeof TelegramGetManagedBotTokenRequestSchema>;
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.infer<typeof TelegramGetMeRequestSchema>;
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.infer<typeof TelegramGetMyCommandsRequestSchema>;
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.infer<typeof TelegramGetMyDefaultAdministratorRightsRequestSchema>;
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.infer<typeof TelegramGetMyDescriptionRequestSchema>;
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.infer<typeof TelegramGetMyNameRequestSchema>;
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.infer<typeof TelegramGetMyShortDescriptionRequestSchema>;
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.infer<typeof TelegramGetMyStarBalanceRequestSchema>;
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.infer<typeof TelegramGetStarTransactionsRequestSchema>;
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.infer<typeof TelegramGetStickerSetRequestSchema>;
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.infer<typeof TelegramGetUpdatesRequestSchema>;
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.infer<typeof TelegramGetUserChatBoostsRequestSchema>;
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.infer<typeof TelegramGetUserGiftsRequestSchema>;
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.infer<typeof TelegramGetUserPersonalChatMessagesRequestSchema>;
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.infer<typeof TelegramGetWebhookInfoRequestSchema>;
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.infer<typeof TelegramGiftPremiumSubscriptionRequestSchema>;
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.infer<typeof TelegramHideGeneralForumTopicRequestSchema>;
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.infer<typeof TelegramLeaveChatRequestSchema>;
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.infer<typeof TelegramLogOutRequestSchema>;
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.infer<typeof TelegramPinChatMessageRequestSchema>;
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.infer<typeof TelegramPostStoryRequestSchema>;
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.infer<typeof TelegramPromoteChatMemberRequestSchema>;
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.infer<typeof TelegramReadBusinessMessageRequestSchema>;
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.infer<typeof TelegramRefundStarPaymentRequestSchema>;
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.infer<typeof TelegramRemoveBusinessAccountProfilePhotoRequestSchema>;
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.infer<typeof TelegramRemoveChatVerificationRequestSchema>;
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.infer<typeof TelegramRemoveUserVerificationRequestSchema>;
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.infer<typeof TelegramReopenForumTopicRequestSchema>;
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.infer<typeof TelegramReopenGeneralForumTopicRequestSchema>;
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.infer<typeof TelegramReplaceManagedBotTokenRequestSchema>;
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.infer<typeof TelegramReplaceStickerInSetRequestSchema>;
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.infer<typeof TelegramRepostStoryRequestSchema>;
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.infer<typeof TelegramRestrictChatMemberRequestSchema>;
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.infer<typeof TelegramRevokeChatInviteLinkRequestSchema>;
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.infer<typeof TelegramSavePreparedInlineMessageRequestSchema>;
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.infer<typeof TelegramSavePreparedKeyboardButtonRequestSchema>;
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.infer<typeof TelegramSendAnimationRequestSchema>;
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.infer<typeof TelegramSendAudioRequestSchema>;
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.infer<typeof TelegramSendChatActionRequestSchema>;
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.infer<typeof TelegramSendChatJoinRequestWebAppRequestSchema>;
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.infer<typeof TelegramSendChecklistRequestSchema>;
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.infer<typeof TelegramSendContactRequestSchema>;
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.infer<typeof TelegramSendDiceRequestSchema>;
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.infer<typeof TelegramSendDocumentRequestSchema>;
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.infer<typeof TelegramSendGameRequestSchema>;
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.infer<typeof TelegramSendGiftRequestSchema>;
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.infer<typeof TelegramSendInvoiceRequestSchema>;
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.infer<typeof TelegramSendLivePhotoRequestSchema>;
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.infer<typeof TelegramSendLocationRequestSchema>;
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.infer<typeof TelegramSendMediaGroupRequestSchema>;
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.infer<typeof TelegramSendMessageRequestSchema>;
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.infer<typeof TelegramSendMessageDraftRequestSchema>;
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.infer<typeof TelegramSendPaidMediaRequestSchema>;
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.infer<typeof TelegramSendPhotoRequestSchema>;
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.infer<typeof TelegramSendPollRequestSchema>;
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.infer<typeof TelegramSendRichMessageRequestSchema>;
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.infer<typeof TelegramSendRichMessageDraftRequestSchema>;
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.infer<typeof TelegramSendStickerRequestSchema>;
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.infer<typeof TelegramSendVenueRequestSchema>;
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.infer<typeof TelegramSendVideoRequestSchema>;
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.infer<typeof TelegramSendVideoNoteRequestSchema>;
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.infer<typeof TelegramSendVoiceRequestSchema>;
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.infer<typeof TelegramSetBusinessAccountBioRequestSchema>;
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.infer<typeof TelegramSetBusinessAccountGiftSettingsRequestSchema>;
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.infer<typeof TelegramSetBusinessAccountNameRequestSchema>;
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.infer<typeof TelegramSetBusinessAccountProfilePhotoRequestSchema>;
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.infer<typeof TelegramSetBusinessAccountUsernameRequestSchema>;
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.infer<typeof TelegramSetChatAdministratorCustomTitleRequestSchema>;
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.infer<typeof TelegramSetChatDescriptionRequestSchema>;
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.infer<typeof TelegramSetChatMemberTagRequestSchema>;
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.infer<typeof TelegramSetChatMenuButtonRequestSchema>;
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.infer<typeof TelegramSetChatPermissionsRequestSchema>;
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.infer<typeof TelegramSetChatPhotoRequestSchema>;
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.infer<typeof TelegramSetChatStickerSetRequestSchema>;
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.infer<typeof TelegramSetChatTitleRequestSchema>;
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.infer<typeof TelegramSetCustomEmojiStickerSetThumbnailRequestSchema>;
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.infer<typeof TelegramSetGameScoreRequestSchema>;
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.infer<typeof TelegramSetManagedBotAccessSettingsRequestSchema>;
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.infer<typeof TelegramSetMessageReactionRequestSchema>;
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.infer<typeof TelegramSetMyCommandsRequestSchema>;
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.infer<typeof TelegramSetMyDefaultAdministratorRightsRequestSchema>;
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.infer<typeof TelegramSetMyDescriptionRequestSchema>;
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.infer<typeof TelegramSetMyNameRequestSchema>;
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.infer<typeof TelegramSetMyShortDescriptionRequestSchema>;
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.infer<typeof TelegramSetPassportDataErrorsRequestSchema>;
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.infer<typeof TelegramSetStickerEmojiListRequestSchema>;
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.infer<typeof TelegramSetStickerKeywordsRequestSchema>;
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.infer<typeof TelegramSetStickerMaskPositionRequestSchema>;
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.infer<typeof TelegramSetStickerPositionInSetRequestSchema>;
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.infer<typeof TelegramSetStickerSetThumbnailRequestSchema>;
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.infer<typeof TelegramSetStickerSetTitleRequestSchema>;
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.infer<typeof TelegramSetUserEmojiStatusRequestSchema>;
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.infer<typeof TelegramSetWebhookRequestSchema>;
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.infer<typeof TelegramStopMessageLiveLocationRequestSchema>;
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.infer<typeof TelegramStopPollRequestSchema>;
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.infer<typeof TelegramTransferBusinessAccountStarsRequestSchema>;
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.infer<typeof TelegramTransferGiftRequestSchema>;
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.infer<typeof TelegramUnbanChatMemberRequestSchema>;
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.infer<typeof TelegramUnbanChatSenderChatRequestSchema>;
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.infer<typeof TelegramUnhideGeneralForumTopicRequestSchema>;
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.infer<typeof TelegramUnpinAllChatMessagesRequestSchema>;
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.infer<typeof TelegramUnpinAllForumTopicMessagesRequestSchema>;
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.infer<typeof TelegramUnpinAllGeneralForumTopicMessagesRequestSchema>;
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.infer<typeof TelegramUnpinChatMessageRequestSchema>;
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.infer<typeof TelegramUpgradeGiftRequestSchema>;
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.infer<typeof TelegramUploadStickerFileRequestSchema>;
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.infer<typeof TelegramVerifyChatRequestSchema>;
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.infer<typeof TelegramVerifyUserRequestSchema>;
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.infer<typeof TelegramApproveSuggestedPostRequestSchema>;
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.infer<typeof TelegramDeclineSuggestedPostRequestSchema>;
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.infer<typeof TelegramGetUserProfileAudiosRequestSchema>;
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.infer<typeof TelegramGetUserProfilePhotosRequestSchema>;
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.infer<typeof TelegramRemoveMyProfilePhotoRequestSchema>;
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.infer<typeof TelegramSetMyProfilePhotoRequestSchema>;
1673
+ export type TelegramSetMyProfilePhotoRequest = z.input<typeof TelegramSetMyProfilePhotoRequestSchema>;
1674
+ export type TelegramSetMyProfilePhotoParsedRequest = z.output<typeof TelegramSetMyProfilePhotoRequestSchema>;
1493
1675
  //# sourceMappingURL=zod.d.ts.map