@getlatedev/node 0.1.10 → 0.1.12

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/README.md CHANGED
@@ -327,6 +327,38 @@ try {
327
327
  | `comments.unhideInboxComment()` | Unhide a comment |
328
328
  | `comments.unlikeInboxComment()` | Unlike a comment |
329
329
 
330
+ ### GMB Attributes
331
+ | Method | Description |
332
+ |--------|-------------|
333
+ | `gmbAttributes.getGoogleBusinessAttributes()` | Get Google Business Profile location attributes |
334
+ | `gmbAttributes.updateGoogleBusinessAttributes()` | Update Google Business Profile location attributes |
335
+
336
+ ### GMB Food Menus
337
+ | Method | Description |
338
+ |--------|-------------|
339
+ | `gmbFoodMenus.getGoogleBusinessFoodMenus()` | Get Google Business Profile food menus |
340
+ | `gmbFoodMenus.updateGoogleBusinessFoodMenus()` | Update Google Business Profile food menus |
341
+
342
+ ### GMB Location Details
343
+ | Method | Description |
344
+ |--------|-------------|
345
+ | `gmbLocationDetails.getGoogleBusinessLocationDetails()` | Get Google Business Profile location details |
346
+ | `gmbLocationDetails.updateGoogleBusinessLocationDetails()` | Update Google Business Profile location details |
347
+
348
+ ### GMB Media
349
+ | Method | Description |
350
+ |--------|-------------|
351
+ | `gmbMedia.listGoogleBusinessMedia()` | List Google Business Profile media (photos) |
352
+ | `gmbMedia.createGoogleBusinessMedia()` | Upload a photo to Google Business Profile |
353
+ | `gmbMedia.deleteGoogleBusinessMedia()` | Delete a photo from Google Business Profile |
354
+
355
+ ### GMB Place Actions
356
+ | Method | Description |
357
+ |--------|-------------|
358
+ | `gmbPlaceActions.listGoogleBusinessPlaceActions()` | List place action links (booking, ordering, reservations) |
359
+ | `gmbPlaceActions.createGoogleBusinessPlaceAction()` | Create a place action link (booking, ordering, reservation) |
360
+ | `gmbPlaceActions.deleteGoogleBusinessPlaceAction()` | Delete a place action link |
361
+
330
362
  ### Messages (Inbox)
331
363
  | Method | Description |
332
364
  |--------|-------------|
package/dist/index.d.mts CHANGED
@@ -208,6 +208,43 @@ declare class Late {
208
208
  completeTelegramConnect: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CompleteTelegramConnectData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CompleteTelegramConnectResponse, unknown, ThrowOnError>;
209
209
  };
210
210
  };
211
+ /**
212
+ * gmbfoodmenus API
213
+ */
214
+ gmbfoodmenus: {
215
+ getGoogleBusinessFoodMenus: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetGoogleBusinessFoodMenusData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetGoogleBusinessFoodMenusResponse, GetGoogleBusinessFoodMenusError, ThrowOnError>;
216
+ updateGoogleBusinessFoodMenus: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateGoogleBusinessFoodMenusData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateGoogleBusinessFoodMenusResponse, UpdateGoogleBusinessFoodMenusError, ThrowOnError>;
217
+ };
218
+ /**
219
+ * gmblocationdetails API
220
+ */
221
+ gmblocationdetails: {
222
+ getGoogleBusinessLocationDetails: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetGoogleBusinessLocationDetailsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetGoogleBusinessLocationDetailsResponse, GetGoogleBusinessLocationDetailsError, ThrowOnError>;
223
+ updateGoogleBusinessLocationDetails: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateGoogleBusinessLocationDetailsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateGoogleBusinessLocationDetailsResponse, UpdateGoogleBusinessLocationDetailsError, ThrowOnError>;
224
+ };
225
+ /**
226
+ * gmbmedia API
227
+ */
228
+ gmbmedia: {
229
+ listGoogleBusinessMedia: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListGoogleBusinessMediaData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListGoogleBusinessMediaResponse, ErrorResponse, ThrowOnError>;
230
+ createGoogleBusinessMedia: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateGoogleBusinessMediaData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateGoogleBusinessMediaResponse, ErrorResponse, ThrowOnError>;
231
+ deleteGoogleBusinessMedia: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteGoogleBusinessMediaData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteGoogleBusinessMediaResponse, ErrorResponse, ThrowOnError>;
232
+ };
233
+ /**
234
+ * gmbattributes API
235
+ */
236
+ gmbattributes: {
237
+ getGoogleBusinessAttributes: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetGoogleBusinessAttributesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetGoogleBusinessAttributesResponse, ErrorResponse, ThrowOnError>;
238
+ updateGoogleBusinessAttributes: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateGoogleBusinessAttributesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateGoogleBusinessAttributesResponse, ErrorResponse, ThrowOnError>;
239
+ };
240
+ /**
241
+ * gmbplaceactions API
242
+ */
243
+ gmbplaceactions: {
244
+ listGoogleBusinessPlaceActions: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListGoogleBusinessPlaceActionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListGoogleBusinessPlaceActionsResponse, ErrorResponse, ThrowOnError>;
245
+ createGoogleBusinessPlaceAction: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateGoogleBusinessPlaceActionData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateGoogleBusinessPlaceActionResponse, ErrorResponse, ThrowOnError>;
246
+ deleteGoogleBusinessPlaceAction: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteGoogleBusinessPlaceActionData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteGoogleBusinessPlaceActionResponse, ErrorResponse, ThrowOnError>;
247
+ };
211
248
  /**
212
249
  * Queue API - Manage posting queue
213
250
  */
@@ -490,6 +527,74 @@ type FollowerStatsResponse = {
490
527
  aggregation?: 'daily' | 'weekly' | 'monthly';
491
528
  };
492
529
  type aggregation = 'daily' | 'weekly' | 'monthly';
530
+ type FoodMenu = {
531
+ labels: Array<FoodMenuLabel>;
532
+ sections?: Array<FoodMenuSection>;
533
+ /**
534
+ * Cuisine types (e.g. AMERICAN, ITALIAN, JAPANESE)
535
+ */
536
+ cuisines?: Array<(string)>;
537
+ /**
538
+ * URL of the original menu source
539
+ */
540
+ sourceUrl?: string;
541
+ };
542
+ type FoodMenuItem = {
543
+ labels: Array<FoodMenuLabel>;
544
+ attributes?: FoodMenuItemAttributes;
545
+ /**
546
+ * Item variants/options (e.g. sizes, preparations)
547
+ */
548
+ options?: Array<{
549
+ labels?: Array<FoodMenuLabel>;
550
+ attributes?: FoodMenuItemAttributes;
551
+ }>;
552
+ };
553
+ type FoodMenuItemAttributes = {
554
+ price?: Money;
555
+ /**
556
+ * Spiciness level (e.g. MILD, MEDIUM, HOT)
557
+ */
558
+ spiciness?: string;
559
+ /**
560
+ * Allergens (e.g. DAIRY, GLUTEN, SHELLFISH)
561
+ */
562
+ allergen?: Array<(string)>;
563
+ /**
564
+ * Dietary labels (e.g. VEGETARIAN, VEGAN, GLUTEN_FREE)
565
+ */
566
+ dietaryRestriction?: Array<(string)>;
567
+ /**
568
+ * Number of people the item serves
569
+ */
570
+ servesNumPeople?: number;
571
+ /**
572
+ * Preparation methods (e.g. GRILLED, FRIED)
573
+ */
574
+ preparationMethods?: Array<(string)>;
575
+ /**
576
+ * Media references for item photos
577
+ */
578
+ mediaKeys?: Array<(string)>;
579
+ };
580
+ type FoodMenuLabel = {
581
+ /**
582
+ * Display name of the item/section/menu
583
+ */
584
+ displayName: string;
585
+ /**
586
+ * Optional description
587
+ */
588
+ description?: string;
589
+ /**
590
+ * BCP-47 language code (e.g. en, es)
591
+ */
592
+ languageCode?: string;
593
+ };
594
+ type FoodMenuSection = {
595
+ labels: Array<FoodMenuLabel>;
596
+ items?: Array<FoodMenuItem>;
597
+ };
493
598
  /**
494
599
  * Google Business Profile post settings:
495
600
  * - Posts support text content and a single image (no videos)
@@ -823,6 +928,20 @@ type type2 = 'image' | 'video' | 'gif' | 'document';
823
928
  type MediaUploadResponse = {
824
929
  files?: Array<UploadedFile>;
825
930
  };
931
+ type Money = {
932
+ /**
933
+ * ISO 4217 currency code (e.g. USD, EUR)
934
+ */
935
+ currencyCode: string;
936
+ /**
937
+ * Whole units of the amount
938
+ */
939
+ units: string;
940
+ /**
941
+ * Nano units (10^-9) of the amount
942
+ */
943
+ nanos?: number;
944
+ };
826
945
  type Pagination = {
827
946
  page?: number;
828
947
  limit?: number;
@@ -1014,6 +1133,10 @@ type PostAnalytics = {
1014
1133
  likes?: number;
1015
1134
  comments?: number;
1016
1135
  shares?: number;
1136
+ /**
1137
+ * Number of saves/bookmarks (Instagram, Pinterest)
1138
+ */
1139
+ saves?: number;
1017
1140
  clicks?: number;
1018
1141
  views?: number;
1019
1142
  engagementRate?: number;
@@ -3252,6 +3375,388 @@ type GetGoogleBusinessReviewsResponse = ({
3252
3375
  type GetGoogleBusinessReviewsError = (ErrorResponse | {
3253
3376
  error?: string;
3254
3377
  });
3378
+ type GetGoogleBusinessFoodMenusData = {
3379
+ path: {
3380
+ /**
3381
+ * The Late account ID (from /v1/accounts)
3382
+ */
3383
+ accountId: string;
3384
+ };
3385
+ };
3386
+ type GetGoogleBusinessFoodMenusResponse = ({
3387
+ success?: boolean;
3388
+ accountId?: string;
3389
+ locationId?: string;
3390
+ /**
3391
+ * Resource name of the food menus
3392
+ */
3393
+ name?: string;
3394
+ menus?: Array<FoodMenu>;
3395
+ });
3396
+ type GetGoogleBusinessFoodMenusError = (ErrorResponse | {
3397
+ error?: string;
3398
+ });
3399
+ type UpdateGoogleBusinessFoodMenusData = {
3400
+ body: {
3401
+ /**
3402
+ * Array of food menus to set
3403
+ */
3404
+ menus: Array<FoodMenu>;
3405
+ /**
3406
+ * Field mask for partial updates (e.g. "menus")
3407
+ */
3408
+ updateMask?: string;
3409
+ };
3410
+ path: {
3411
+ /**
3412
+ * The Late account ID (from /v1/accounts)
3413
+ */
3414
+ accountId: string;
3415
+ };
3416
+ };
3417
+ type UpdateGoogleBusinessFoodMenusResponse = ({
3418
+ success?: boolean;
3419
+ accountId?: string;
3420
+ locationId?: string;
3421
+ name?: string;
3422
+ menus?: Array<FoodMenu>;
3423
+ });
3424
+ type UpdateGoogleBusinessFoodMenusError = (ErrorResponse | {
3425
+ error?: string;
3426
+ });
3427
+ type GetGoogleBusinessLocationDetailsData = {
3428
+ path: {
3429
+ /**
3430
+ * The Late account ID (from /v1/accounts)
3431
+ */
3432
+ accountId: string;
3433
+ };
3434
+ query?: {
3435
+ /**
3436
+ * Comma-separated fields to return. Defaults to common fields.
3437
+ * Available: name, title, phoneNumbers, categories, storefrontAddress, websiteUri,
3438
+ * regularHours, specialHours, serviceArea, profile, openInfo, metadata, moreHours
3439
+ *
3440
+ */
3441
+ readMask?: string;
3442
+ };
3443
+ };
3444
+ type GetGoogleBusinessLocationDetailsResponse = ({
3445
+ success?: boolean;
3446
+ accountId?: string;
3447
+ locationId?: string;
3448
+ /**
3449
+ * Business name
3450
+ */
3451
+ title?: string;
3452
+ regularHours?: {
3453
+ periods?: Array<{
3454
+ openDay?: 'MONDAY' | 'TUESDAY' | 'WEDNESDAY' | 'THURSDAY' | 'FRIDAY' | 'SATURDAY' | 'SUNDAY';
3455
+ /**
3456
+ * Opening time in HH:MM format
3457
+ */
3458
+ openTime?: string;
3459
+ closeDay?: string;
3460
+ closeTime?: string;
3461
+ }>;
3462
+ };
3463
+ specialHours?: {
3464
+ specialHourPeriods?: Array<{
3465
+ startDate?: {
3466
+ year?: number;
3467
+ month?: number;
3468
+ day?: number;
3469
+ };
3470
+ endDate?: {
3471
+ year?: number;
3472
+ month?: number;
3473
+ day?: number;
3474
+ };
3475
+ openTime?: string;
3476
+ closeTime?: string;
3477
+ closed?: boolean;
3478
+ }>;
3479
+ };
3480
+ profile?: {
3481
+ /**
3482
+ * Business description
3483
+ */
3484
+ description?: string;
3485
+ };
3486
+ websiteUri?: string;
3487
+ phoneNumbers?: {
3488
+ primaryPhone?: string;
3489
+ additionalPhones?: Array<(string)>;
3490
+ };
3491
+ });
3492
+ type GetGoogleBusinessLocationDetailsError = (ErrorResponse | {
3493
+ error?: string;
3494
+ });
3495
+ type UpdateGoogleBusinessLocationDetailsData = {
3496
+ body: {
3497
+ /**
3498
+ * Required. Comma-separated fields to update (e.g. 'regularHours', 'specialHours', 'profile.description')
3499
+ */
3500
+ updateMask: string;
3501
+ regularHours?: {
3502
+ periods?: Array<{
3503
+ openDay?: string;
3504
+ openTime?: string;
3505
+ closeDay?: string;
3506
+ closeTime?: string;
3507
+ }>;
3508
+ };
3509
+ specialHours?: {
3510
+ specialHourPeriods?: Array<{
3511
+ startDate?: {
3512
+ year?: number;
3513
+ month?: number;
3514
+ day?: number;
3515
+ };
3516
+ endDate?: {
3517
+ year?: number;
3518
+ month?: number;
3519
+ day?: number;
3520
+ };
3521
+ openTime?: string;
3522
+ closeTime?: string;
3523
+ closed?: boolean;
3524
+ }>;
3525
+ };
3526
+ profile?: {
3527
+ description?: string;
3528
+ };
3529
+ websiteUri?: string;
3530
+ phoneNumbers?: {
3531
+ primaryPhone?: string;
3532
+ additionalPhones?: Array<(string)>;
3533
+ };
3534
+ };
3535
+ path: {
3536
+ /**
3537
+ * The Late account ID (from /v1/accounts)
3538
+ */
3539
+ accountId: string;
3540
+ };
3541
+ };
3542
+ type UpdateGoogleBusinessLocationDetailsResponse = ({
3543
+ success?: boolean;
3544
+ accountId?: string;
3545
+ locationId?: string;
3546
+ });
3547
+ type UpdateGoogleBusinessLocationDetailsError = (ErrorResponse | {
3548
+ error?: string;
3549
+ });
3550
+ type ListGoogleBusinessMediaData = {
3551
+ path: {
3552
+ accountId: string;
3553
+ };
3554
+ query?: {
3555
+ /**
3556
+ * Number of items to return (max 100)
3557
+ */
3558
+ pageSize?: number;
3559
+ /**
3560
+ * Pagination token from previous response
3561
+ */
3562
+ pageToken?: string;
3563
+ };
3564
+ };
3565
+ type ListGoogleBusinessMediaResponse = ({
3566
+ success?: boolean;
3567
+ accountId?: string;
3568
+ locationId?: string;
3569
+ mediaItems?: Array<{
3570
+ /**
3571
+ * Resource name
3572
+ */
3573
+ name?: string;
3574
+ mediaFormat?: 'PHOTO' | 'VIDEO';
3575
+ sourceUrl?: string;
3576
+ /**
3577
+ * Google-hosted URL
3578
+ */
3579
+ googleUrl?: string;
3580
+ thumbnailUrl?: string;
3581
+ description?: string;
3582
+ createTime?: string;
3583
+ locationAssociation?: {
3584
+ category?: string;
3585
+ };
3586
+ }>;
3587
+ nextPageToken?: string;
3588
+ totalMediaItemsCount?: number;
3589
+ });
3590
+ type ListGoogleBusinessMediaError = (ErrorResponse);
3591
+ type CreateGoogleBusinessMediaData = {
3592
+ body: {
3593
+ /**
3594
+ * Publicly accessible image URL
3595
+ */
3596
+ sourceUrl: string;
3597
+ mediaFormat?: 'PHOTO' | 'VIDEO';
3598
+ /**
3599
+ * Photo description
3600
+ */
3601
+ description?: string;
3602
+ /**
3603
+ * Where the photo appears on the listing
3604
+ */
3605
+ category?: 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'FOOD_AND_DRINK' | 'MENU' | 'PRODUCT' | 'TEAMS' | 'ADDITIONAL';
3606
+ };
3607
+ path: {
3608
+ accountId: string;
3609
+ };
3610
+ };
3611
+ type CreateGoogleBusinessMediaResponse = ({
3612
+ success?: boolean;
3613
+ name?: string;
3614
+ mediaFormat?: string;
3615
+ googleUrl?: string;
3616
+ });
3617
+ type CreateGoogleBusinessMediaError = (ErrorResponse);
3618
+ type DeleteGoogleBusinessMediaData = {
3619
+ path: {
3620
+ accountId: string;
3621
+ };
3622
+ query: {
3623
+ /**
3624
+ * The media item ID to delete
3625
+ */
3626
+ mediaId: string;
3627
+ };
3628
+ };
3629
+ type DeleteGoogleBusinessMediaResponse = ({
3630
+ success?: boolean;
3631
+ deleted?: boolean;
3632
+ mediaId?: string;
3633
+ });
3634
+ type DeleteGoogleBusinessMediaError = (ErrorResponse);
3635
+ type GetGoogleBusinessAttributesData = {
3636
+ path: {
3637
+ accountId: string;
3638
+ };
3639
+ };
3640
+ type GetGoogleBusinessAttributesResponse = ({
3641
+ success?: boolean;
3642
+ accountId?: string;
3643
+ locationId?: string;
3644
+ attributes?: Array<{
3645
+ /**
3646
+ * Attribute identifier (e.g. has_delivery)
3647
+ */
3648
+ name?: string;
3649
+ /**
3650
+ * Value type (BOOL, ENUM, URL, REPEATED_ENUM)
3651
+ */
3652
+ valueType?: string;
3653
+ values?: Array<unknown>;
3654
+ repeatedEnumValue?: {
3655
+ setValues?: Array<(string)>;
3656
+ unsetValues?: Array<(string)>;
3657
+ };
3658
+ }>;
3659
+ });
3660
+ type GetGoogleBusinessAttributesError = (ErrorResponse);
3661
+ type UpdateGoogleBusinessAttributesData = {
3662
+ body: {
3663
+ attributes: Array<{
3664
+ name?: string;
3665
+ values?: Array<unknown>;
3666
+ repeatedEnumValue?: {
3667
+ setValues?: Array<(string)>;
3668
+ unsetValues?: Array<(string)>;
3669
+ };
3670
+ }>;
3671
+ /**
3672
+ * Comma-separated attribute names to update (e.g. 'has_delivery,has_takeout')
3673
+ */
3674
+ attributeMask: string;
3675
+ };
3676
+ path: {
3677
+ accountId: string;
3678
+ };
3679
+ };
3680
+ type UpdateGoogleBusinessAttributesResponse = ({
3681
+ success?: boolean;
3682
+ accountId?: string;
3683
+ locationId?: string;
3684
+ attributes?: Array<{
3685
+ [key: string]: unknown;
3686
+ }>;
3687
+ });
3688
+ type UpdateGoogleBusinessAttributesError = (ErrorResponse);
3689
+ type ListGoogleBusinessPlaceActionsData = {
3690
+ path: {
3691
+ accountId: string;
3692
+ };
3693
+ query?: {
3694
+ pageSize?: number;
3695
+ pageToken?: string;
3696
+ };
3697
+ };
3698
+ type ListGoogleBusinessPlaceActionsResponse = ({
3699
+ success?: boolean;
3700
+ accountId?: string;
3701
+ locationId?: string;
3702
+ placeActionLinks?: Array<{
3703
+ /**
3704
+ * Resource name
3705
+ */
3706
+ name?: string;
3707
+ /**
3708
+ * Action URL
3709
+ */
3710
+ uri?: string;
3711
+ placeActionType?: string;
3712
+ createTime?: string;
3713
+ updateTime?: string;
3714
+ }>;
3715
+ nextPageToken?: string;
3716
+ });
3717
+ type ListGoogleBusinessPlaceActionsError = (ErrorResponse);
3718
+ type CreateGoogleBusinessPlaceActionData = {
3719
+ body: {
3720
+ /**
3721
+ * The action URL
3722
+ */
3723
+ uri: string;
3724
+ /**
3725
+ * Type of action
3726
+ */
3727
+ placeActionType: 'APPOINTMENT' | 'ONLINE_APPOINTMENT' | 'DINING_RESERVATION' | 'FOOD_ORDERING' | 'FOOD_DELIVERY' | 'FOOD_TAKEOUT' | 'SHOP_ONLINE';
3728
+ };
3729
+ path: {
3730
+ accountId: string;
3731
+ };
3732
+ };
3733
+ type CreateGoogleBusinessPlaceActionResponse = ({
3734
+ success?: boolean;
3735
+ /**
3736
+ * Resource name of the created link
3737
+ */
3738
+ name?: string;
3739
+ uri?: string;
3740
+ placeActionType?: string;
3741
+ });
3742
+ type CreateGoogleBusinessPlaceActionError = (ErrorResponse);
3743
+ type DeleteGoogleBusinessPlaceActionData = {
3744
+ path: {
3745
+ accountId: string;
3746
+ };
3747
+ query: {
3748
+ /**
3749
+ * The resource name of the place action link (e.g. locations/123/placeActionLinks/456)
3750
+ */
3751
+ name: string;
3752
+ };
3753
+ };
3754
+ type DeleteGoogleBusinessPlaceActionResponse = ({
3755
+ success?: boolean;
3756
+ deleted?: boolean;
3757
+ name?: string;
3758
+ });
3759
+ type DeleteGoogleBusinessPlaceActionError = (ErrorResponse);
3255
3760
  type GetPendingOAuthDataData = {
3256
3761
  query: {
3257
3762
  /**
@@ -5211,4 +5716,4 @@ type DeleteInboxReviewReplyError = ({
5211
5716
  error?: string;
5212
5717
  } | unknown);
5213
5718
 
5214
- export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CaptionResponse, type CheckInstagramHashtagsData, type CheckInstagramHashtagsError, type CheckInstagramHashtagsResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DownloadBlueskyMediaData, type DownloadBlueskyMediaError, type DownloadBlueskyMediaResponse, type DownloadFacebookVideoData, type DownloadFacebookVideoError, type DownloadFacebookVideoResponse, type DownloadFormat, type DownloadInstagramMediaData, type DownloadInstagramMediaError, type DownloadInstagramMediaResponse, type DownloadLinkedInVideoData, type DownloadLinkedInVideoError, type DownloadLinkedInVideoResponse, type DownloadResponse, type DownloadTikTokVideoData, type DownloadTikTokVideoError, type DownloadTikTokVideoResponse, type DownloadTwitterMediaData, type DownloadTwitterMediaError, type DownloadTwitterMediaResponse, type DownloadYouTubeVideoData, type DownloadYouTubeVideoError, type DownloadYouTubeVideoResponse, type ErrorResponse, type FacebookPlatformData, type FollowerStatsResponse, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrganizationsData, type GetLinkedInOrganizationsError, type GetLinkedInOrganizationsResponse, type GetLinkedInPostAnalyticsData, type GetLinkedInPostAnalyticsError, type GetLinkedInPostAnalyticsResponse, type GetLogData, type GetLogError, type GetLogResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, type GetNextQueueSlotData, type GetNextQueueSlotError, type GetNextQueueSlotResponse, type GetPendingOAuthDataData, type GetPendingOAuthDataError, type GetPendingOAuthDataResponse, type GetPinterestBoardsData, type GetPinterestBoardsError, type GetPinterestBoardsResponse, type GetPostData, type GetPostError, type GetPostLogsData, type GetPostLogsError, type GetPostLogsResponse, type GetPostResponse, type GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookLogsData, type GetWebhookLogsError, type GetWebhookLogsResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeTranscriptData, type GetYouTubeTranscriptError, type GetYouTubeTranscriptResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HashtagCheckResponse, type HashtagInfo, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAggregateAnalyticsDailyResponse, type LinkedInAggregateAnalyticsTotalResponse, type LinkedInPlatformData, type ListAccountGroupsError, type ListAccountGroupsResponse, type ListAccountsData, type ListAccountsError, type ListAccountsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListLogsData, type ListLogsError, type ListLogsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, type ListPostsResponse, type ListProfilesData, type ListProfilesError, type ListProfilesResponse, type ListQueueSlotsData, type ListQueueSlotsError, type ListQueueSlotsResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type MediaItem, type MediaUploadResponse, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostLog, type PostLogDetail, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreviewQueueData, type PreviewQueueError, type PreviewQueueResponse, type Profile, type ProfileCreateResponse, type ProfileDeleteResponse, type ProfileGetResponse, type ProfileUpdateResponse, type ProfilesListResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type SearchRedditData, type SearchRedditError, type SearchRedditResponse, type SelectFacebookPageData, type SelectFacebookPageError, type SelectFacebookPageResponse, type SelectGoogleBusinessLocationData, type SelectGoogleBusinessLocationError, type SelectGoogleBusinessLocationResponse, type SelectLinkedInOrganizationData, type SelectLinkedInOrganizationError, type SelectLinkedInOrganizationResponse, type SelectPinterestBoardData, type SelectPinterestBoardError, type SelectPinterestBoardResponse, type SelectSnapchatProfileData, type SelectSnapchatProfileError, type SelectSnapchatProfileResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TikTokSettings, type TranscriptResponse, type TranscriptSegment, type TwitterPlatformData, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateFacebookPageData, type UpdateFacebookPageError, type UpdateFacebookPageResponse, type UpdateGmbLocationData, type UpdateGmbLocationError, type UpdateGmbLocationResponse, type UpdateInboxConversationData, type UpdateInboxConversationError, type UpdateInboxConversationResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadMessage, type WebhookPayloadPost, type YouTubeDailyViewsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, type action, type aggregation, type aggregation2, type aggregation3, type billingPeriod, type commercialContentType, type contentType, type contentType2, Late as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event2, type event3, type event4, type event5, type graduationStrategy, type mediaType, parseApiError, type parseMode, type platform, type platform2, type status, type status2, type status3, type status4, type status5, type status6, type type, type type2, type type3, type visibility };
5719
+ export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CaptionResponse, type CheckInstagramHashtagsData, type CheckInstagramHashtagsError, type CheckInstagramHashtagsResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DownloadBlueskyMediaData, type DownloadBlueskyMediaError, type DownloadBlueskyMediaResponse, type DownloadFacebookVideoData, type DownloadFacebookVideoError, type DownloadFacebookVideoResponse, type DownloadFormat, type DownloadInstagramMediaData, type DownloadInstagramMediaError, type DownloadInstagramMediaResponse, type DownloadLinkedInVideoData, type DownloadLinkedInVideoError, type DownloadLinkedInVideoResponse, type DownloadResponse, type DownloadTikTokVideoData, type DownloadTikTokVideoError, type DownloadTikTokVideoResponse, type DownloadTwitterMediaData, type DownloadTwitterMediaError, type DownloadTwitterMediaResponse, type DownloadYouTubeVideoData, type DownloadYouTubeVideoError, type DownloadYouTubeVideoResponse, type ErrorResponse, type FacebookPlatformData, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessAttributesData, type GetGoogleBusinessAttributesError, type GetGoogleBusinessAttributesResponse, type GetGoogleBusinessFoodMenusData, type GetGoogleBusinessFoodMenusError, type GetGoogleBusinessFoodMenusResponse, type GetGoogleBusinessLocationDetailsData, type GetGoogleBusinessLocationDetailsError, type GetGoogleBusinessLocationDetailsResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrganizationsData, type GetLinkedInOrganizationsError, type GetLinkedInOrganizationsResponse, type GetLinkedInPostAnalyticsData, type GetLinkedInPostAnalyticsError, type GetLinkedInPostAnalyticsResponse, type GetLogData, type GetLogError, type GetLogResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, type GetNextQueueSlotData, type GetNextQueueSlotError, type GetNextQueueSlotResponse, type GetPendingOAuthDataData, type GetPendingOAuthDataError, type GetPendingOAuthDataResponse, type GetPinterestBoardsData, type GetPinterestBoardsError, type GetPinterestBoardsResponse, type GetPostData, type GetPostError, type GetPostLogsData, type GetPostLogsError, type GetPostLogsResponse, type GetPostResponse, type GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookLogsData, type GetWebhookLogsError, type GetWebhookLogsResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeTranscriptData, type GetYouTubeTranscriptError, type GetYouTubeTranscriptResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HashtagCheckResponse, type HashtagInfo, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAggregateAnalyticsDailyResponse, type LinkedInAggregateAnalyticsTotalResponse, type LinkedInPlatformData, type ListAccountGroupsError, type ListAccountGroupsResponse, type ListAccountsData, type ListAccountsError, type ListAccountsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListLogsData, type ListLogsError, type ListLogsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, type ListPostsResponse, type ListProfilesData, type ListProfilesError, type ListProfilesResponse, type ListQueueSlotsData, type ListQueueSlotsError, type ListQueueSlotsResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostLog, type PostLogDetail, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreviewQueueData, type PreviewQueueError, type PreviewQueueResponse, type Profile, type ProfileCreateResponse, type ProfileDeleteResponse, type ProfileGetResponse, type ProfileUpdateResponse, type ProfilesListResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type SearchRedditData, type SearchRedditError, type SearchRedditResponse, type SelectFacebookPageData, type SelectFacebookPageError, type SelectFacebookPageResponse, type SelectGoogleBusinessLocationData, type SelectGoogleBusinessLocationError, type SelectGoogleBusinessLocationResponse, type SelectLinkedInOrganizationData, type SelectLinkedInOrganizationError, type SelectLinkedInOrganizationResponse, type SelectPinterestBoardData, type SelectPinterestBoardError, type SelectPinterestBoardResponse, type SelectSnapchatProfileData, type SelectSnapchatProfileError, type SelectSnapchatProfileResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TikTokSettings, type TranscriptResponse, type TranscriptSegment, type TwitterPlatformData, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateFacebookPageData, type UpdateFacebookPageError, type UpdateFacebookPageResponse, type UpdateGmbLocationData, type UpdateGmbLocationError, type UpdateGmbLocationResponse, type UpdateGoogleBusinessAttributesData, type UpdateGoogleBusinessAttributesError, type UpdateGoogleBusinessAttributesResponse, type UpdateGoogleBusinessFoodMenusData, type UpdateGoogleBusinessFoodMenusError, type UpdateGoogleBusinessFoodMenusResponse, type UpdateGoogleBusinessLocationDetailsData, type UpdateGoogleBusinessLocationDetailsError, type UpdateGoogleBusinessLocationDetailsResponse, type UpdateInboxConversationData, type UpdateInboxConversationError, type UpdateInboxConversationResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadMessage, type WebhookPayloadPost, type YouTubeDailyViewsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, type action, type aggregation, type aggregation2, type aggregation3, type billingPeriod, type commercialContentType, type contentType, type contentType2, Late as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event2, type event3, type event4, type event5, type graduationStrategy, type mediaType, parseApiError, type parseMode, type platform, type platform2, type status, type status2, type status3, type status4, type status5, type status6, type type, type type2, type type3, type visibility };