bundlesocial 2.19.0 → 2.20.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/index.d.mts CHANGED
@@ -98,6 +98,7 @@ type OrganizationGetOrganizationResponse = {
98
98
  } | null;
99
99
  apiAccess?: boolean;
100
100
  analyticsDisabled?: boolean;
101
+ analyticsPostsDisabled?: boolean;
101
102
  createdAt: string | null;
102
103
  updatedAt: string | null;
103
104
  deletedAt?: string | null;
@@ -266,6 +267,7 @@ type TeamGetTeamResponse = {
266
267
  } | null;
267
268
  apiAccess?: boolean;
268
269
  analyticsDisabled?: boolean;
270
+ analyticsPostsDisabled?: boolean;
269
271
  createdAt: string | null;
270
272
  updatedAt: string | null;
271
273
  deletedAt?: string | null;
@@ -313,6 +315,8 @@ type TeamGetTeamResponse = {
313
315
  url?: string | null;
314
316
  } | null;
315
317
  }> | null;
318
+ mastodonServerId?: string | null;
319
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
316
320
  createdAt: string | null;
317
321
  updatedAt: string | null;
318
322
  deletedAt?: string | null;
@@ -425,6 +429,7 @@ type TeamGetListResponse = {
425
429
  } | null;
426
430
  apiAccess?: boolean;
427
431
  analyticsDisabled?: boolean;
432
+ analyticsPostsDisabled?: boolean;
428
433
  createdAt: string | null;
429
434
  updatedAt: string | null;
430
435
  deletedAt?: string | null;
@@ -472,6 +477,8 @@ type TeamGetListResponse = {
472
477
  url?: string | null;
473
478
  } | null;
474
479
  }> | null;
480
+ mastodonServerId?: string | null;
481
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
475
482
  createdAt: string | null;
476
483
  updatedAt: string | null;
477
484
  deletedAt?: string | null;
@@ -548,6 +555,10 @@ type SocialAccountConnectData = {
548
555
  * Mastodon only
549
556
  */
550
557
  serverUrl?: string;
558
+ /**
559
+ * Instagram only - connection method
560
+ */
561
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM';
551
562
  };
552
563
  };
553
564
  type SocialAccountConnectResponse = {
@@ -586,6 +597,8 @@ type SocialAccountDisconnectResponse = {
586
597
  url?: string | null;
587
598
  } | null;
588
599
  }> | null;
600
+ mastodonServerId?: string | null;
601
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
589
602
  createdAt: string | null;
590
603
  updatedAt: string | null;
591
604
  deletedAt?: string | null;
@@ -621,6 +634,8 @@ type SocialAccountSetChannelResponse = {
621
634
  url?: string | null;
622
635
  } | null;
623
636
  }> | null;
637
+ mastodonServerId?: string | null;
638
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
624
639
  createdAt: string | null;
625
640
  updatedAt: string | null;
626
641
  deletedAt?: string | null;
@@ -655,6 +670,8 @@ type SocialAccountRefreshChannelsResponse = {
655
670
  url?: string | null;
656
671
  } | null;
657
672
  }> | null;
673
+ mastodonServerId?: string | null;
674
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
658
675
  createdAt: string | null;
659
676
  updatedAt: string | null;
660
677
  deletedAt?: string | null;
@@ -670,6 +687,7 @@ type SocialAccountCreatePortalLinkData = {
670
687
  logoUrl?: string;
671
688
  userLogoUrl?: string;
672
689
  userName?: string;
690
+ language?: 'en' | 'pl' | 'fr' | 'hi' | 'sv';
673
691
  };
674
692
  };
675
693
  type SocialAccountCreatePortalLinkResponse = {
@@ -710,6 +728,8 @@ type SocialAccountCopyResponse = Array<{
710
728
  url?: string | null;
711
729
  } | null;
712
730
  }> | null;
731
+ mastodonServerId?: string | null;
732
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
713
733
  createdAt: string | null;
714
734
  updatedAt: string | null;
715
735
  deletedAt?: string | null;
@@ -1254,6 +1274,8 @@ type PostGetResponse = {
1254
1274
  url?: string | null;
1255
1275
  } | null;
1256
1276
  }> | null;
1277
+ mastodonServerId?: string | null;
1278
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
1257
1279
  createdAt: string | null;
1258
1280
  updatedAt: string | null;
1259
1281
  deletedAt?: string | null;
@@ -2419,6 +2441,8 @@ type PostGetListResponse = {
2419
2441
  url?: string | null;
2420
2442
  } | null;
2421
2443
  }> | null;
2444
+ mastodonServerId?: string | null;
2445
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
2422
2446
  createdAt: string | null;
2423
2447
  updatedAt: string | null;
2424
2448
  deletedAt?: string | null;
@@ -2935,7 +2959,7 @@ type PostCreateResponse = {
2935
2959
  deletedAt?: string | null;
2936
2960
  };
2937
2961
  type AnalyticsGetSocialAccountAnalyticsData = {
2938
- platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON';
2962
+ platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
2939
2963
  teamId: string;
2940
2964
  };
2941
2965
  type AnalyticsGetSocialAccountAnalyticsResponse = {
@@ -2960,6 +2984,8 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
2960
2984
  url?: string | null;
2961
2985
  } | null;
2962
2986
  }> | null;
2987
+ mastodonServerId?: string | null;
2988
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
2963
2989
  createdAt: string | null;
2964
2990
  updatedAt: string | null;
2965
2991
  deletedAt?: string | null;
@@ -2982,7 +3008,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
2982
3008
  }>;
2983
3009
  };
2984
3010
  type AnalyticsGetPostAnalyticsData = {
2985
- platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON';
3011
+ platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
2986
3012
  postId: string;
2987
3013
  };
2988
3014
  type AnalyticsGetPostAnalyticsResponse = {
@@ -3297,7 +3323,7 @@ type AnalyticsGetPostAnalyticsResponse = {
3297
3323
  }>;
3298
3324
  };
3299
3325
  type AnalyticsGetSocialAccountAnalyticsRawData = {
3300
- platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON';
3326
+ platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
3301
3327
  teamId: string;
3302
3328
  };
3303
3329
  type AnalyticsGetSocialAccountAnalyticsRawResponse = {
@@ -3322,6 +3348,8 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
3322
3348
  url?: string | null;
3323
3349
  } | null;
3324
3350
  }> | null;
3351
+ mastodonServerId?: string | null;
3352
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
3325
3353
  createdAt: string | null;
3326
3354
  updatedAt: string | null;
3327
3355
  deletedAt?: string | null;
@@ -3337,7 +3365,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
3337
3365
  }>;
3338
3366
  };
3339
3367
  type AnalyticsGetPostAnalyticsRawData = {
3340
- platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON';
3368
+ platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
3341
3369
  postId: string;
3342
3370
  };
3343
3371
  type AnalyticsGetPostAnalyticsRawResponse = {
@@ -4736,6 +4764,7 @@ type $OpenApiTs = {
4736
4764
  } | null;
4737
4765
  apiAccess?: boolean;
4738
4766
  analyticsDisabled?: boolean;
4767
+ analyticsPostsDisabled?: boolean;
4739
4768
  createdAt: string | null;
4740
4769
  updatedAt: string | null;
4741
4770
  deletedAt?: string | null;
@@ -4951,6 +4980,7 @@ type $OpenApiTs = {
4951
4980
  } | null;
4952
4981
  apiAccess?: boolean;
4953
4982
  analyticsDisabled?: boolean;
4983
+ analyticsPostsDisabled?: boolean;
4954
4984
  createdAt: string | null;
4955
4985
  updatedAt: string | null;
4956
4986
  deletedAt?: string | null;
@@ -4998,6 +5028,8 @@ type $OpenApiTs = {
4998
5028
  url?: string | null;
4999
5029
  } | null;
5000
5030
  }> | null;
5031
+ mastodonServerId?: string | null;
5032
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5001
5033
  createdAt: string | null;
5002
5034
  updatedAt: string | null;
5003
5035
  deletedAt?: string | null;
@@ -5239,6 +5271,7 @@ type $OpenApiTs = {
5239
5271
  } | null;
5240
5272
  apiAccess?: boolean;
5241
5273
  analyticsDisabled?: boolean;
5274
+ analyticsPostsDisabled?: boolean;
5242
5275
  createdAt: string | null;
5243
5276
  updatedAt: string | null;
5244
5277
  deletedAt?: string | null;
@@ -5286,6 +5319,8 @@ type $OpenApiTs = {
5286
5319
  url?: string | null;
5287
5320
  } | null;
5288
5321
  }> | null;
5322
+ mastodonServerId?: string | null;
5323
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5289
5324
  createdAt: string | null;
5290
5325
  updatedAt: string | null;
5291
5326
  deletedAt?: string | null;
@@ -5515,6 +5550,8 @@ type $OpenApiTs = {
5515
5550
  url?: string | null;
5516
5551
  } | null;
5517
5552
  }> | null;
5553
+ mastodonServerId?: string | null;
5554
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5518
5555
  createdAt: string | null;
5519
5556
  updatedAt: string | null;
5520
5557
  deletedAt?: string | null;
@@ -5590,6 +5627,8 @@ type $OpenApiTs = {
5590
5627
  url?: string | null;
5591
5628
  } | null;
5592
5629
  }> | null;
5630
+ mastodonServerId?: string | null;
5631
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5593
5632
  createdAt: string | null;
5594
5633
  updatedAt: string | null;
5595
5634
  deletedAt?: string | null;
@@ -5665,6 +5704,8 @@ type $OpenApiTs = {
5665
5704
  url?: string | null;
5666
5705
  } | null;
5667
5706
  }> | null;
5707
+ mastodonServerId?: string | null;
5708
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5668
5709
  createdAt: string | null;
5669
5710
  updatedAt: string | null;
5670
5711
  deletedAt?: string | null;
@@ -5793,6 +5834,8 @@ type $OpenApiTs = {
5793
5834
  url?: string | null;
5794
5835
  } | null;
5795
5836
  }> | null;
5837
+ mastodonServerId?: string | null;
5838
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5796
5839
  createdAt: string | null;
5797
5840
  updatedAt: string | null;
5798
5841
  deletedAt?: string | null;
@@ -6681,6 +6724,8 @@ type $OpenApiTs = {
6681
6724
  url?: string | null;
6682
6725
  } | null;
6683
6726
  }> | null;
6727
+ mastodonServerId?: string | null;
6728
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
6684
6729
  createdAt: string | null;
6685
6730
  updatedAt: string | null;
6686
6731
  deletedAt?: string | null;
@@ -7764,6 +7809,8 @@ type $OpenApiTs = {
7764
7809
  url?: string | null;
7765
7810
  } | null;
7766
7811
  }> | null;
7812
+ mastodonServerId?: string | null;
7813
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
7767
7814
  createdAt: string | null;
7768
7815
  updatedAt: string | null;
7769
7816
  deletedAt?: string | null;
@@ -8184,6 +8231,8 @@ type $OpenApiTs = {
8184
8231
  url?: string | null;
8185
8232
  } | null;
8186
8233
  }> | null;
8234
+ mastodonServerId?: string | null;
8235
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8187
8236
  createdAt: string | null;
8188
8237
  updatedAt: string | null;
8189
8238
  deletedAt?: string | null;
@@ -8638,6 +8687,8 @@ type $OpenApiTs = {
8638
8687
  url?: string | null;
8639
8688
  } | null;
8640
8689
  }> | null;
8690
+ mastodonServerId?: string | null;
8691
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8641
8692
  createdAt: string | null;
8642
8693
  updatedAt: string | null;
8643
8694
  deletedAt?: string | null;
package/dist/index.d.ts CHANGED
@@ -98,6 +98,7 @@ type OrganizationGetOrganizationResponse = {
98
98
  } | null;
99
99
  apiAccess?: boolean;
100
100
  analyticsDisabled?: boolean;
101
+ analyticsPostsDisabled?: boolean;
101
102
  createdAt: string | null;
102
103
  updatedAt: string | null;
103
104
  deletedAt?: string | null;
@@ -266,6 +267,7 @@ type TeamGetTeamResponse = {
266
267
  } | null;
267
268
  apiAccess?: boolean;
268
269
  analyticsDisabled?: boolean;
270
+ analyticsPostsDisabled?: boolean;
269
271
  createdAt: string | null;
270
272
  updatedAt: string | null;
271
273
  deletedAt?: string | null;
@@ -313,6 +315,8 @@ type TeamGetTeamResponse = {
313
315
  url?: string | null;
314
316
  } | null;
315
317
  }> | null;
318
+ mastodonServerId?: string | null;
319
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
316
320
  createdAt: string | null;
317
321
  updatedAt: string | null;
318
322
  deletedAt?: string | null;
@@ -425,6 +429,7 @@ type TeamGetListResponse = {
425
429
  } | null;
426
430
  apiAccess?: boolean;
427
431
  analyticsDisabled?: boolean;
432
+ analyticsPostsDisabled?: boolean;
428
433
  createdAt: string | null;
429
434
  updatedAt: string | null;
430
435
  deletedAt?: string | null;
@@ -472,6 +477,8 @@ type TeamGetListResponse = {
472
477
  url?: string | null;
473
478
  } | null;
474
479
  }> | null;
480
+ mastodonServerId?: string | null;
481
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
475
482
  createdAt: string | null;
476
483
  updatedAt: string | null;
477
484
  deletedAt?: string | null;
@@ -548,6 +555,10 @@ type SocialAccountConnectData = {
548
555
  * Mastodon only
549
556
  */
550
557
  serverUrl?: string;
558
+ /**
559
+ * Instagram only - connection method
560
+ */
561
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM';
551
562
  };
552
563
  };
553
564
  type SocialAccountConnectResponse = {
@@ -586,6 +597,8 @@ type SocialAccountDisconnectResponse = {
586
597
  url?: string | null;
587
598
  } | null;
588
599
  }> | null;
600
+ mastodonServerId?: string | null;
601
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
589
602
  createdAt: string | null;
590
603
  updatedAt: string | null;
591
604
  deletedAt?: string | null;
@@ -621,6 +634,8 @@ type SocialAccountSetChannelResponse = {
621
634
  url?: string | null;
622
635
  } | null;
623
636
  }> | null;
637
+ mastodonServerId?: string | null;
638
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
624
639
  createdAt: string | null;
625
640
  updatedAt: string | null;
626
641
  deletedAt?: string | null;
@@ -655,6 +670,8 @@ type SocialAccountRefreshChannelsResponse = {
655
670
  url?: string | null;
656
671
  } | null;
657
672
  }> | null;
673
+ mastodonServerId?: string | null;
674
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
658
675
  createdAt: string | null;
659
676
  updatedAt: string | null;
660
677
  deletedAt?: string | null;
@@ -670,6 +687,7 @@ type SocialAccountCreatePortalLinkData = {
670
687
  logoUrl?: string;
671
688
  userLogoUrl?: string;
672
689
  userName?: string;
690
+ language?: 'en' | 'pl' | 'fr' | 'hi' | 'sv';
673
691
  };
674
692
  };
675
693
  type SocialAccountCreatePortalLinkResponse = {
@@ -710,6 +728,8 @@ type SocialAccountCopyResponse = Array<{
710
728
  url?: string | null;
711
729
  } | null;
712
730
  }> | null;
731
+ mastodonServerId?: string | null;
732
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
713
733
  createdAt: string | null;
714
734
  updatedAt: string | null;
715
735
  deletedAt?: string | null;
@@ -1254,6 +1274,8 @@ type PostGetResponse = {
1254
1274
  url?: string | null;
1255
1275
  } | null;
1256
1276
  }> | null;
1277
+ mastodonServerId?: string | null;
1278
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
1257
1279
  createdAt: string | null;
1258
1280
  updatedAt: string | null;
1259
1281
  deletedAt?: string | null;
@@ -2419,6 +2441,8 @@ type PostGetListResponse = {
2419
2441
  url?: string | null;
2420
2442
  } | null;
2421
2443
  }> | null;
2444
+ mastodonServerId?: string | null;
2445
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
2422
2446
  createdAt: string | null;
2423
2447
  updatedAt: string | null;
2424
2448
  deletedAt?: string | null;
@@ -2935,7 +2959,7 @@ type PostCreateResponse = {
2935
2959
  deletedAt?: string | null;
2936
2960
  };
2937
2961
  type AnalyticsGetSocialAccountAnalyticsData = {
2938
- platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON';
2962
+ platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
2939
2963
  teamId: string;
2940
2964
  };
2941
2965
  type AnalyticsGetSocialAccountAnalyticsResponse = {
@@ -2960,6 +2984,8 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
2960
2984
  url?: string | null;
2961
2985
  } | null;
2962
2986
  }> | null;
2987
+ mastodonServerId?: string | null;
2988
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
2963
2989
  createdAt: string | null;
2964
2990
  updatedAt: string | null;
2965
2991
  deletedAt?: string | null;
@@ -2982,7 +3008,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
2982
3008
  }>;
2983
3009
  };
2984
3010
  type AnalyticsGetPostAnalyticsData = {
2985
- platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON';
3011
+ platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
2986
3012
  postId: string;
2987
3013
  };
2988
3014
  type AnalyticsGetPostAnalyticsResponse = {
@@ -3297,7 +3323,7 @@ type AnalyticsGetPostAnalyticsResponse = {
3297
3323
  }>;
3298
3324
  };
3299
3325
  type AnalyticsGetSocialAccountAnalyticsRawData = {
3300
- platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON';
3326
+ platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
3301
3327
  teamId: string;
3302
3328
  };
3303
3329
  type AnalyticsGetSocialAccountAnalyticsRawResponse = {
@@ -3322,6 +3348,8 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
3322
3348
  url?: string | null;
3323
3349
  } | null;
3324
3350
  }> | null;
3351
+ mastodonServerId?: string | null;
3352
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
3325
3353
  createdAt: string | null;
3326
3354
  updatedAt: string | null;
3327
3355
  deletedAt?: string | null;
@@ -3337,7 +3365,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
3337
3365
  }>;
3338
3366
  };
3339
3367
  type AnalyticsGetPostAnalyticsRawData = {
3340
- platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON';
3368
+ platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
3341
3369
  postId: string;
3342
3370
  };
3343
3371
  type AnalyticsGetPostAnalyticsRawResponse = {
@@ -4736,6 +4764,7 @@ type $OpenApiTs = {
4736
4764
  } | null;
4737
4765
  apiAccess?: boolean;
4738
4766
  analyticsDisabled?: boolean;
4767
+ analyticsPostsDisabled?: boolean;
4739
4768
  createdAt: string | null;
4740
4769
  updatedAt: string | null;
4741
4770
  deletedAt?: string | null;
@@ -4951,6 +4980,7 @@ type $OpenApiTs = {
4951
4980
  } | null;
4952
4981
  apiAccess?: boolean;
4953
4982
  analyticsDisabled?: boolean;
4983
+ analyticsPostsDisabled?: boolean;
4954
4984
  createdAt: string | null;
4955
4985
  updatedAt: string | null;
4956
4986
  deletedAt?: string | null;
@@ -4998,6 +5028,8 @@ type $OpenApiTs = {
4998
5028
  url?: string | null;
4999
5029
  } | null;
5000
5030
  }> | null;
5031
+ mastodonServerId?: string | null;
5032
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5001
5033
  createdAt: string | null;
5002
5034
  updatedAt: string | null;
5003
5035
  deletedAt?: string | null;
@@ -5239,6 +5271,7 @@ type $OpenApiTs = {
5239
5271
  } | null;
5240
5272
  apiAccess?: boolean;
5241
5273
  analyticsDisabled?: boolean;
5274
+ analyticsPostsDisabled?: boolean;
5242
5275
  createdAt: string | null;
5243
5276
  updatedAt: string | null;
5244
5277
  deletedAt?: string | null;
@@ -5286,6 +5319,8 @@ type $OpenApiTs = {
5286
5319
  url?: string | null;
5287
5320
  } | null;
5288
5321
  }> | null;
5322
+ mastodonServerId?: string | null;
5323
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5289
5324
  createdAt: string | null;
5290
5325
  updatedAt: string | null;
5291
5326
  deletedAt?: string | null;
@@ -5515,6 +5550,8 @@ type $OpenApiTs = {
5515
5550
  url?: string | null;
5516
5551
  } | null;
5517
5552
  }> | null;
5553
+ mastodonServerId?: string | null;
5554
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5518
5555
  createdAt: string | null;
5519
5556
  updatedAt: string | null;
5520
5557
  deletedAt?: string | null;
@@ -5590,6 +5627,8 @@ type $OpenApiTs = {
5590
5627
  url?: string | null;
5591
5628
  } | null;
5592
5629
  }> | null;
5630
+ mastodonServerId?: string | null;
5631
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5593
5632
  createdAt: string | null;
5594
5633
  updatedAt: string | null;
5595
5634
  deletedAt?: string | null;
@@ -5665,6 +5704,8 @@ type $OpenApiTs = {
5665
5704
  url?: string | null;
5666
5705
  } | null;
5667
5706
  }> | null;
5707
+ mastodonServerId?: string | null;
5708
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5668
5709
  createdAt: string | null;
5669
5710
  updatedAt: string | null;
5670
5711
  deletedAt?: string | null;
@@ -5793,6 +5834,8 @@ type $OpenApiTs = {
5793
5834
  url?: string | null;
5794
5835
  } | null;
5795
5836
  }> | null;
5837
+ mastodonServerId?: string | null;
5838
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5796
5839
  createdAt: string | null;
5797
5840
  updatedAt: string | null;
5798
5841
  deletedAt?: string | null;
@@ -6681,6 +6724,8 @@ type $OpenApiTs = {
6681
6724
  url?: string | null;
6682
6725
  } | null;
6683
6726
  }> | null;
6727
+ mastodonServerId?: string | null;
6728
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
6684
6729
  createdAt: string | null;
6685
6730
  updatedAt: string | null;
6686
6731
  deletedAt?: string | null;
@@ -7764,6 +7809,8 @@ type $OpenApiTs = {
7764
7809
  url?: string | null;
7765
7810
  } | null;
7766
7811
  }> | null;
7812
+ mastodonServerId?: string | null;
7813
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
7767
7814
  createdAt: string | null;
7768
7815
  updatedAt: string | null;
7769
7816
  deletedAt?: string | null;
@@ -8184,6 +8231,8 @@ type $OpenApiTs = {
8184
8231
  url?: string | null;
8185
8232
  } | null;
8186
8233
  }> | null;
8234
+ mastodonServerId?: string | null;
8235
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8187
8236
  createdAt: string | null;
8188
8237
  updatedAt: string | null;
8189
8238
  deletedAt?: string | null;
@@ -8638,6 +8687,8 @@ type $OpenApiTs = {
8638
8687
  url?: string | null;
8639
8688
  } | null;
8640
8689
  }> | null;
8690
+ mastodonServerId?: string | null;
8691
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8641
8692
  createdAt: string | null;
8642
8693
  updatedAt: string | null;
8643
8694
  deletedAt?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bundlesocial",
3
- "version": "2.19.0",
3
+ "version": "2.20.0",
4
4
  "description": "Node.js library for the bundle.social API",
5
5
  "keywords": [
6
6
  "bundle.social",