@zernio/node 0.2.99 → 0.2.101
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 +4 -2
- package/dist/index.d.mts +301 -21
- package/dist/index.d.ts +301 -21
- package/dist/index.js +14 -0
- package/dist/index.mjs +14 -0
- package/package.json +1 -1
- package/src/client.ts +4 -0
- package/src/generated/sdk.gen.ts +91 -17
- package/src/generated/types.gen.ts +306 -20
package/dist/index.d.ts
CHANGED
|
@@ -498,6 +498,8 @@ declare class Zernio {
|
|
|
498
498
|
deleteAd: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteAdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteAdResponse, DeleteAdError, ThrowOnError>;
|
|
499
499
|
getAdAnalytics: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetAdAnalyticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetAdAnalyticsResponse, unknown, ThrowOnError>;
|
|
500
500
|
getAdComments: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetAdCommentsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetAdCommentsResponse, unknown, ThrowOnError>;
|
|
501
|
+
listAdsBusinessCenters: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListAdsBusinessCentersData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListAdsBusinessCentersResponse, unknown, ThrowOnError>;
|
|
502
|
+
triggerAdsInitialSync: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<TriggerAdsInitialSyncData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TriggerAdsInitialSyncResponse, unknown, ThrowOnError>;
|
|
501
503
|
listAdAccounts: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListAdAccountsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListAdAccountsResponse, unknown, ThrowOnError>;
|
|
502
504
|
boostPost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<BoostPostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<BoostPostResponse, unknown, ThrowOnError>;
|
|
503
505
|
createStandaloneAd: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateStandaloneAdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateStandaloneAdResponse, unknown, ThrowOnError>;
|
|
@@ -719,9 +721,56 @@ type Ad = {
|
|
|
719
721
|
*/
|
|
720
722
|
optimizationGoal?: (string) | null;
|
|
721
723
|
/**
|
|
722
|
-
*
|
|
724
|
+
* Human-readable advertiser/account name (Meta `AdAccount.name`, TikTok
|
|
725
|
+
* `advertiser_name`, LinkedIn / X / Pinterest equivalents). Refreshed every
|
|
726
|
+
* sync so platform-side renames propagate within one cycle. `null` when the
|
|
727
|
+
* platform doesn't return a name or the sync hasn't run yet.
|
|
728
|
+
*
|
|
729
|
+
*/
|
|
730
|
+
platformAdAccountName?: (string) | null;
|
|
731
|
+
/**
|
|
732
|
+
* Platform-reported creation timestamp (Meta `created_time`, TikTok `create_time`).
|
|
733
|
+
* Distinct from `createdAt` which reflects when Zernio first synced the doc — for
|
|
734
|
+
* sort/filter by "when the ad was actually created on the platform", read this field.
|
|
735
|
+
* `null` for legacy ads synced before this field was added; aggregations fall back
|
|
736
|
+
* to `createdAt` in that case.
|
|
737
|
+
*
|
|
738
|
+
*/
|
|
739
|
+
platformCreatedAt?: (string) | null;
|
|
740
|
+
/**
|
|
741
|
+
* Ad-set bid strategy (overrides campaign level on Meta). Populated for Meta and
|
|
742
|
+
* TikTok. TikTok's native `bid_type` is normalized to the cross-platform Meta enum:
|
|
743
|
+
* `BID_TYPE_NO_BID` -> `LOWEST_COST_WITHOUT_CAP`, `BID_TYPE_CUSTOM` ->
|
|
744
|
+
* `LOWEST_COST_WITH_BID_CAP`, deep_bid_type=MIN_ROAS or roas_bid>0 ->
|
|
745
|
+
* `LOWEST_COST_WITH_MIN_ROAS`, `BID_TYPE_MAX_CONVERSION` -> `LOWEST_COST_WITHOUT_CAP`.
|
|
746
|
+
*
|
|
747
|
+
*/
|
|
748
|
+
bidStrategy?: ((BidStrategy) | null);
|
|
749
|
+
/**
|
|
750
|
+
* Bid cap in WHOLE currency units of the ad account (USD: 5 = $5.00; JPY: 100 = ¥100).
|
|
751
|
+
* Populated when bidStrategy is `LOWEST_COST_WITH_BID_CAP` or `COST_CAP`. `null` for
|
|
752
|
+
* auto-bid (`LOWEST_COST_WITHOUT_CAP`).
|
|
753
|
+
*
|
|
754
|
+
* - Meta source: `bid_amount` on the ad set (smallest-denomination int, decoded here).
|
|
755
|
+
* - TikTok source: priority order `bid_price` -> `conversion_bid_price` -> `deep_cpa_bid`
|
|
756
|
+
* (whichever is set on the ad group). TikTok stores all three in whole currency units.
|
|
757
|
+
*
|
|
758
|
+
* Source: facebook-business-sdk-codegen api_specs/specs/AdSet.json (`bid_amount`).
|
|
759
|
+
*
|
|
760
|
+
*/
|
|
761
|
+
bidAmount?: (number) | null;
|
|
762
|
+
/**
|
|
763
|
+
* Minimum ROAS as a decimal multiplier (2.0 = 2.0x ROAS). Populated when bidStrategy
|
|
764
|
+
* is `LOWEST_COST_WITH_MIN_ROAS`.
|
|
765
|
+
*
|
|
766
|
+
* - Meta source: decoded from `bid_constraints.roas_average_floor` (Meta stores as
|
|
767
|
+
* fixed-point int × 10000; we return the decimal).
|
|
768
|
+
* - TikTok source: `roas_bid` on the ad group (already a decimal).
|
|
769
|
+
*
|
|
770
|
+
* Source: facebook-business-sdk-codegen api_specs/specs/AdCampaignBidConstraint.json.
|
|
771
|
+
*
|
|
723
772
|
*/
|
|
724
|
-
|
|
773
|
+
roasAverageFloor?: (number) | null;
|
|
725
774
|
/**
|
|
726
775
|
* Meta promoted object containing conversion event details. Structure varies by objective. Only present for Meta ads.
|
|
727
776
|
*/
|
|
@@ -871,6 +920,10 @@ type AdCampaign = {
|
|
|
871
920
|
currency?: (string) | null;
|
|
872
921
|
metrics?: AdMetrics;
|
|
873
922
|
platformAdAccountId?: string;
|
|
923
|
+
/**
|
|
924
|
+
* Human-readable advertiser/account name from the platform. Refreshed on every sync.
|
|
925
|
+
*/
|
|
926
|
+
platformAdAccountName?: (string) | null;
|
|
874
927
|
accountId?: string;
|
|
875
928
|
profileId?: string;
|
|
876
929
|
/**
|
|
@@ -882,9 +935,17 @@ type AdCampaign = {
|
|
|
882
935
|
*/
|
|
883
936
|
optimizationGoal?: (string) | null;
|
|
884
937
|
/**
|
|
885
|
-
* Campaign-level bid strategy
|
|
938
|
+
* Campaign-level bid strategy. Ad sets inherit this unless they override.
|
|
939
|
+
*/
|
|
940
|
+
bidStrategy?: ((BidStrategy) | null);
|
|
941
|
+
/**
|
|
942
|
+
* Representative bid cap from the top-spending ad set (whole currency units). Populated when bidStrategy is LOWEST_COST_WITH_BID_CAP or COST_CAP.
|
|
886
943
|
*/
|
|
887
|
-
|
|
944
|
+
bidAmount?: (number) | null;
|
|
945
|
+
/**
|
|
946
|
+
* Representative ROAS floor from the top-spending ad set. Decimal multiplier (2.0 = 2.0x).
|
|
947
|
+
*/
|
|
948
|
+
roasAverageFloor?: (number) | null;
|
|
888
949
|
/**
|
|
889
950
|
* Meta promoted object at campaign level (conversion event details)
|
|
890
951
|
*/
|
|
@@ -989,7 +1050,15 @@ type AdTreeAdSet = {
|
|
|
989
1050
|
/**
|
|
990
1051
|
* Bid strategy for this ad set (overrides campaign level when set)
|
|
991
1052
|
*/
|
|
992
|
-
bidStrategy?: (
|
|
1053
|
+
bidStrategy?: ((BidStrategy) | null);
|
|
1054
|
+
/**
|
|
1055
|
+
* Bid cap in whole currency units. Populated when bidStrategy is LOWEST_COST_WITH_BID_CAP or COST_CAP.
|
|
1056
|
+
*/
|
|
1057
|
+
bidAmount?: (number) | null;
|
|
1058
|
+
/**
|
|
1059
|
+
* Minimum ROAS as a decimal multiplier (2.0 = 2.0x). Populated when bidStrategy is LOWEST_COST_WITH_MIN_ROAS.
|
|
1060
|
+
*/
|
|
1061
|
+
roasAverageFloor?: (number) | null;
|
|
993
1062
|
/**
|
|
994
1063
|
* Meta promoted object for this ad set (conversion event details)
|
|
995
1064
|
*/
|
|
@@ -1067,6 +1136,10 @@ type AdTreeCampaign = {
|
|
|
1067
1136
|
currency?: (string) | null;
|
|
1068
1137
|
metrics?: AdMetrics;
|
|
1069
1138
|
platformAdAccountId?: string;
|
|
1139
|
+
/**
|
|
1140
|
+
* Human-readable advertiser/account name from the platform. Refreshed on every sync.
|
|
1141
|
+
*/
|
|
1142
|
+
platformAdAccountName?: (string) | null;
|
|
1070
1143
|
accountId?: string;
|
|
1071
1144
|
profileId?: string;
|
|
1072
1145
|
/**
|
|
@@ -1078,9 +1151,17 @@ type AdTreeCampaign = {
|
|
|
1078
1151
|
*/
|
|
1079
1152
|
optimizationGoal?: (string) | null;
|
|
1080
1153
|
/**
|
|
1081
|
-
* Campaign-level bid strategy
|
|
1154
|
+
* Campaign-level bid strategy. Ad sets inherit this unless they override.
|
|
1155
|
+
*/
|
|
1156
|
+
bidStrategy?: ((BidStrategy) | null);
|
|
1157
|
+
/**
|
|
1158
|
+
* Representative bid cap for the campaign — bubbled up from the top-spending ad set's `bid_amount` (whole currency units). Populated when the ad-set bidStrategy is LOWEST_COST_WITH_BID_CAP or COST_CAP.
|
|
1159
|
+
*/
|
|
1160
|
+
bidAmount?: (number) | null;
|
|
1161
|
+
/**
|
|
1162
|
+
* Representative ROAS floor for the campaign — bubbled up from the top-spending ad set. Decimal multiplier (2.0 = 2.0x).
|
|
1082
1163
|
*/
|
|
1083
|
-
|
|
1164
|
+
roasAverageFloor?: (number) | null;
|
|
1084
1165
|
/**
|
|
1085
1166
|
* Meta promoted object at campaign level (conversion event details)
|
|
1086
1167
|
*/
|
|
@@ -1239,6 +1320,17 @@ type scope = 'full' | 'profiles';
|
|
|
1239
1320
|
* 'read-write' allows all operations, 'read' restricts to GET requests only
|
|
1240
1321
|
*/
|
|
1241
1322
|
type permission = 'read-write' | 'read';
|
|
1323
|
+
/**
|
|
1324
|
+
* Meta bid strategy. Same enum applies at campaign and ad-set level; ad-set value (when set)
|
|
1325
|
+
* overrides campaign-level. Cross-field rules:
|
|
1326
|
+
* - `LOWEST_COST_WITHOUT_CAP` (default): auto-bid, forbids `bidAmount` and `roasAverageFloor`.
|
|
1327
|
+
* - `LOWEST_COST_WITH_BID_CAP` / `COST_CAP`: require `bidAmount` (whole currency units).
|
|
1328
|
+
* - `LOWEST_COST_WITH_MIN_ROAS`: requires `roasAverageFloor` (decimal multiplier, 2.0 = 2.0x).
|
|
1329
|
+
* Source: facebook-business-sdk-codegen api_specs/specs/enum_types.json (`AdSet_bid_strategy`,
|
|
1330
|
+
* `Campaign_bid_strategy`).
|
|
1331
|
+
*
|
|
1332
|
+
*/
|
|
1333
|
+
type BidStrategy = 'LOWEST_COST_WITHOUT_CAP' | 'LOWEST_COST_WITH_BID_CAP' | 'COST_CAP' | 'LOWEST_COST_WITH_MIN_ROAS';
|
|
1242
1334
|
/**
|
|
1243
1335
|
* Bluesky post settings. Supports text posts with up to 4 images or a single video. threadItems creates a reply chain (Bluesky thread). Images exceeding 1MB are automatically compressed. Alt text supported via mediaItem properties.
|
|
1244
1336
|
*
|
|
@@ -1253,6 +1345,26 @@ type BlueskyPlatformData = {
|
|
|
1253
1345
|
mediaItems?: Array<MediaItem>;
|
|
1254
1346
|
}>;
|
|
1255
1347
|
};
|
|
1348
|
+
/**
|
|
1349
|
+
* TikTok Business Center entity. Returned by `GET /v1/ads/business-centers`. BCs are
|
|
1350
|
+
* TikTok's agency container — one BC owns N advertisers (ad accounts). Most solo
|
|
1351
|
+
* advertisers don't have one; the agency token uses BCs to roll up multi-client access.
|
|
1352
|
+
*
|
|
1353
|
+
*/
|
|
1354
|
+
type BusinessCenter = {
|
|
1355
|
+
/**
|
|
1356
|
+
* Business Center ID
|
|
1357
|
+
*/
|
|
1358
|
+
bcId?: string;
|
|
1359
|
+
/**
|
|
1360
|
+
* Display name set by the BC owner
|
|
1361
|
+
*/
|
|
1362
|
+
name?: string;
|
|
1363
|
+
/**
|
|
1364
|
+
* Number of advertisers (ad accounts) reachable under this BC for the calling token
|
|
1365
|
+
*/
|
|
1366
|
+
advertiserCount?: number;
|
|
1367
|
+
};
|
|
1256
1368
|
/**
|
|
1257
1369
|
* A single conversion event to relay to the ad platform. All PII fields
|
|
1258
1370
|
* (email, phone, names) are hashed with SHA-256 server-side using each
|
|
@@ -6259,6 +6371,9 @@ type GetGoogleBusinessLocationDetailsData = {
|
|
|
6259
6371
|
locationId?: string;
|
|
6260
6372
|
/**
|
|
6261
6373
|
* Comma-separated fields to return. Available: name, title, phoneNumbers, categories, storefrontAddress, websiteUri, regularHours, specialHours, serviceArea, serviceItems, profile, openInfo, metadata, moreHours.
|
|
6374
|
+
* `title` and `metadata` are always included in the response so the `location` summary block can be populated, even if you omit them here.
|
|
6375
|
+
* Note: `location` is a derived response field, not a Google readMask value, passing it returns 400.
|
|
6376
|
+
*
|
|
6262
6377
|
*/
|
|
6263
6378
|
readMask?: string;
|
|
6264
6379
|
};
|
|
@@ -6268,11 +6383,11 @@ type GetGoogleBusinessLocationDetailsResponse = ({
|
|
|
6268
6383
|
accountId?: string;
|
|
6269
6384
|
locationId?: string;
|
|
6270
6385
|
/**
|
|
6271
|
-
* Compact public-facing summary derived from `metadata`. Useful
|
|
6272
|
-
* surfacing the "leave a review" URL (e.g. behind a QR code) without
|
|
6273
|
-
* parsing
|
|
6274
|
-
*
|
|
6275
|
-
*
|
|
6386
|
+
* Compact public-facing summary derived from Google's `metadata`. Useful
|
|
6387
|
+
* for surfacing the "leave a review" URL (e.g. behind a QR code) without
|
|
6388
|
+
* parsing the raw block. Always populated regardless of readMask.
|
|
6389
|
+
* For unverified or new locations Google omits placeId/reviewUrl/mapsUri,
|
|
6390
|
+
* so those return as null and `isVerified` is false.
|
|
6276
6391
|
*
|
|
6277
6392
|
*/
|
|
6278
6393
|
location?: {
|
|
@@ -12303,13 +12418,17 @@ type UpdateAdCampaignStatusError = (unknown | {
|
|
|
12303
12418
|
type UpdateAdCampaignData = {
|
|
12304
12419
|
body: {
|
|
12305
12420
|
platform: 'facebook' | 'instagram';
|
|
12306
|
-
budget
|
|
12421
|
+
budget?: {
|
|
12307
12422
|
/**
|
|
12308
12423
|
* Budget amount in the ad account's currency
|
|
12309
12424
|
*/
|
|
12310
12425
|
amount: number;
|
|
12311
12426
|
type: 'daily' | 'lifetime';
|
|
12312
12427
|
};
|
|
12428
|
+
/**
|
|
12429
|
+
* Campaign-level default. Ad sets inherit this unless they override.
|
|
12430
|
+
*/
|
|
12431
|
+
bidStrategy?: (BidStrategy);
|
|
12313
12432
|
};
|
|
12314
12433
|
path: {
|
|
12315
12434
|
/**
|
|
@@ -12322,6 +12441,7 @@ type UpdateAdCampaignResponse = ({
|
|
|
12322
12441
|
updated?: number;
|
|
12323
12442
|
budget?: AdBudget;
|
|
12324
12443
|
budgetLevel?: 'campaign';
|
|
12444
|
+
bidStrategy?: BidStrategy;
|
|
12325
12445
|
});
|
|
12326
12446
|
type UpdateAdCampaignError = (unknown | {
|
|
12327
12447
|
error?: string;
|
|
@@ -12376,7 +12496,7 @@ type BulkUpdateAdCampaignStatusError = (unknown | {
|
|
|
12376
12496
|
});
|
|
12377
12497
|
type DuplicateAdCampaignData = {
|
|
12378
12498
|
body: {
|
|
12379
|
-
platform: 'facebook' | 'instagram';
|
|
12499
|
+
platform: 'facebook' | 'instagram' | 'tiktok';
|
|
12380
12500
|
/**
|
|
12381
12501
|
* Copy child ad sets + ads + creatives + targeting
|
|
12382
12502
|
*/
|
|
@@ -12422,16 +12542,38 @@ type UpdateAdSetData = {
|
|
|
12422
12542
|
body: {
|
|
12423
12543
|
platform: 'facebook' | 'instagram' | 'tiktok' | 'linkedin' | 'pinterest' | 'google' | 'twitter';
|
|
12424
12544
|
/**
|
|
12425
|
-
* Omit if
|
|
12545
|
+
* Omit if not updating budget
|
|
12426
12546
|
*/
|
|
12427
12547
|
budget?: {
|
|
12428
12548
|
amount?: number;
|
|
12429
12549
|
type?: 'daily' | 'lifetime';
|
|
12430
12550
|
};
|
|
12431
12551
|
/**
|
|
12432
|
-
* Omit if
|
|
12552
|
+
* Omit if not toggling delivery state
|
|
12433
12553
|
*/
|
|
12434
12554
|
status?: 'active' | 'paused';
|
|
12555
|
+
/**
|
|
12556
|
+
* Ad-set-level bid strategy. Overrides the campaign-level default.
|
|
12557
|
+
* Supported on Meta (facebook, instagram) and TikTok. On TikTok the
|
|
12558
|
+
* Meta-style enum is mapped to bid_type / bid_price / deep_bid_type
|
|
12559
|
+
* automatically. Other platforms (linkedin, pinterest, google, twitter)
|
|
12560
|
+
* return 501 Not Implemented when bidStrategy is set.
|
|
12561
|
+
*
|
|
12562
|
+
*/
|
|
12563
|
+
bidStrategy?: (BidStrategy);
|
|
12564
|
+
/**
|
|
12565
|
+
* Bid cap in WHOLE currency units (USD: 5 = $5.00; JPY: 100 = ¥100). Required when
|
|
12566
|
+
* bidStrategy is LOWEST_COST_WITH_BID_CAP or COST_CAP. Internally converted to Meta's
|
|
12567
|
+
* smallest-denomination integer.
|
|
12568
|
+
*
|
|
12569
|
+
*/
|
|
12570
|
+
bidAmount?: number;
|
|
12571
|
+
/**
|
|
12572
|
+
* Minimum ROAS as a decimal multiplier (2.0 = 2.0x). Required when bidStrategy is
|
|
12573
|
+
* LOWEST_COST_WITH_MIN_ROAS. Sent to Meta as `bid_constraints.roas_average_floor` × 10000.
|
|
12574
|
+
*
|
|
12575
|
+
*/
|
|
12576
|
+
roasAverageFloor?: number;
|
|
12435
12577
|
};
|
|
12436
12578
|
path: {
|
|
12437
12579
|
/**
|
|
@@ -12446,6 +12588,9 @@ type UpdateAdSetResponse = ({
|
|
|
12446
12588
|
status?: 'active' | 'paused';
|
|
12447
12589
|
statusUpdated?: number;
|
|
12448
12590
|
statusSkipped?: number;
|
|
12591
|
+
bidStrategy?: BidStrategy;
|
|
12592
|
+
bidAmount?: (number) | null;
|
|
12593
|
+
roasAverageFloor?: (number) | null;
|
|
12449
12594
|
});
|
|
12450
12595
|
type UpdateAdSetError = (unknown | {
|
|
12451
12596
|
error?: string;
|
|
@@ -12539,7 +12684,8 @@ type UpdateAdData = {
|
|
|
12539
12684
|
type?: 'daily' | 'lifetime';
|
|
12540
12685
|
};
|
|
12541
12686
|
/**
|
|
12542
|
-
* Meta
|
|
12687
|
+
* Meta + TikTok only. Pinterest / X / LinkedIn / Google return 501.
|
|
12688
|
+
*
|
|
12543
12689
|
*/
|
|
12544
12690
|
targeting?: {
|
|
12545
12691
|
ageMin?: number;
|
|
@@ -12557,6 +12703,28 @@ type UpdateAdData = {
|
|
|
12557
12703
|
*/
|
|
12558
12704
|
advantage_audience?: 0 | 1;
|
|
12559
12705
|
};
|
|
12706
|
+
/**
|
|
12707
|
+
* Replace the ad's creative. Meta + TikTok only.
|
|
12708
|
+
*
|
|
12709
|
+
* - **Meta**: requires `headline`, `body`, `callToAction`, `linkUrl`, `imageUrl`. The
|
|
12710
|
+
* ad's existing creative is replaced via a new `/act_X/adcreatives` upload + ad
|
|
12711
|
+
* update. The old creative is retained on the ad account for historical reporting.
|
|
12712
|
+
* - **TikTok**: patch-style. Pass any subset; `headline` is ignored (TikTok creatives
|
|
12713
|
+
* have no headline slot). `body` becomes the in-feed `ad_text`; `linkUrl` becomes
|
|
12714
|
+
* `landing_page_url`; `videoUrl` triggers a fresh upload.
|
|
12715
|
+
*
|
|
12716
|
+
*/
|
|
12717
|
+
creative?: {
|
|
12718
|
+
/**
|
|
12719
|
+
* Meta only
|
|
12720
|
+
*/
|
|
12721
|
+
headline?: string;
|
|
12722
|
+
body?: string;
|
|
12723
|
+
callToAction?: string;
|
|
12724
|
+
linkUrl?: string;
|
|
12725
|
+
imageUrl?: string;
|
|
12726
|
+
videoUrl?: string;
|
|
12727
|
+
};
|
|
12560
12728
|
name?: string;
|
|
12561
12729
|
};
|
|
12562
12730
|
path: {
|
|
@@ -12670,12 +12838,56 @@ type GetAdCommentsResponse = ({
|
|
|
12670
12838
|
type GetAdCommentsError = (unknown | {
|
|
12671
12839
|
error?: string;
|
|
12672
12840
|
});
|
|
12841
|
+
type ListAdsBusinessCentersData = {
|
|
12842
|
+
query: {
|
|
12843
|
+
/**
|
|
12844
|
+
* ID of the `tiktokads` (or parent `tiktok` posting) SocialAccount
|
|
12845
|
+
*/
|
|
12846
|
+
accountId: string;
|
|
12847
|
+
};
|
|
12848
|
+
};
|
|
12849
|
+
type ListAdsBusinessCentersResponse = ({
|
|
12850
|
+
businessCenters?: Array<BusinessCenter>;
|
|
12851
|
+
});
|
|
12852
|
+
type ListAdsBusinessCentersError = ({
|
|
12853
|
+
error?: string;
|
|
12854
|
+
} | unknown);
|
|
12855
|
+
type TriggerAdsInitialSyncData = {
|
|
12856
|
+
body: {
|
|
12857
|
+
/**
|
|
12858
|
+
* ID of the ads SocialAccount to re-sync (e.g. `metaads` / `tiktokads` doc).
|
|
12859
|
+
* Posting accounts (`facebook` / `tiktok`) are rejected — pass the ads-side
|
|
12860
|
+
* account ID that owns the platform tokens.
|
|
12861
|
+
*
|
|
12862
|
+
*/
|
|
12863
|
+
accountId: string;
|
|
12864
|
+
};
|
|
12865
|
+
};
|
|
12866
|
+
type TriggerAdsInitialSyncResponse = ({
|
|
12867
|
+
status?: 'queued' | 'already_queued';
|
|
12868
|
+
/**
|
|
12869
|
+
* Trace ID for the enqueued job. Reused on `already_queued`.
|
|
12870
|
+
*/
|
|
12871
|
+
traceId?: (string) | null;
|
|
12872
|
+
message?: string;
|
|
12873
|
+
});
|
|
12874
|
+
type TriggerAdsInitialSyncError = (unknown | {
|
|
12875
|
+
error?: string;
|
|
12876
|
+
});
|
|
12673
12877
|
type ListAdAccountsData = {
|
|
12674
12878
|
query: {
|
|
12675
12879
|
/**
|
|
12676
12880
|
* Social account ID
|
|
12677
12881
|
*/
|
|
12678
12882
|
accountId: string;
|
|
12883
|
+
/**
|
|
12884
|
+
* Filter response to a single platform ad account ID (e.g. `act_123` for Meta, advertiser_id for TikTok). Returns at most one item.
|
|
12885
|
+
*/
|
|
12886
|
+
adAccountId?: string;
|
|
12887
|
+
/**
|
|
12888
|
+
* Clamp the returned `accounts[]` length. Useful for typeahead pickers on agency tokens with hundreds of advertisers.
|
|
12889
|
+
*/
|
|
12890
|
+
limit?: number;
|
|
12679
12891
|
};
|
|
12680
12892
|
};
|
|
12681
12893
|
type ListAdAccountsResponse = ({
|
|
@@ -12755,9 +12967,25 @@ type BoostPostData = {
|
|
|
12755
12967
|
advantage_audience?: 0 | 1;
|
|
12756
12968
|
};
|
|
12757
12969
|
/**
|
|
12758
|
-
*
|
|
12970
|
+
* Meta bid strategy applied to the ad set. On TikTok, mapped to
|
|
12971
|
+
* `bid_type` / `bid_price` / `deep_bid_type` automatically.
|
|
12972
|
+
*
|
|
12973
|
+
*/
|
|
12974
|
+
bidStrategy?: (BidStrategy);
|
|
12975
|
+
/**
|
|
12976
|
+
* Bid cap in WHOLE currency units (USD: 5 = $5.00; JPY: 100 = ¥100). Required when
|
|
12977
|
+
* `bidStrategy` is `LOWEST_COST_WITH_BID_CAP` or `COST_CAP`. Backward-compat: providing
|
|
12978
|
+
* `bidAmount` without `bidStrategy` is treated as `LOWEST_COST_WITH_BID_CAP`.
|
|
12979
|
+
*
|
|
12759
12980
|
*/
|
|
12760
12981
|
bidAmount?: number;
|
|
12982
|
+
/**
|
|
12983
|
+
* Minimum ROAS as a decimal multiplier (e.g. 2.0 = 2.0x ROAS). Required when
|
|
12984
|
+
* `bidStrategy` is `LOWEST_COST_WITH_MIN_ROAS`. Sent to Meta as
|
|
12985
|
+
* `bid_constraints.roas_average_floor` × 10000 (Meta uses fixed-point integers).
|
|
12986
|
+
*
|
|
12987
|
+
*/
|
|
12988
|
+
roasAverageFloor?: number;
|
|
12761
12989
|
/**
|
|
12762
12990
|
* Meta only. Tracking specs (pixel, URL tags).
|
|
12763
12991
|
*/
|
|
@@ -12769,6 +12997,34 @@ type BoostPostData = {
|
|
|
12769
12997
|
* Meta only. Required for housing, employment, credit, or political ads.
|
|
12770
12998
|
*/
|
|
12771
12999
|
specialAdCategories?: Array<('HOUSING' | 'EMPLOYMENT' | 'CREDIT' | 'ISSUES_ELECTIONS_POLITICS')>;
|
|
13000
|
+
/**
|
|
13001
|
+
* TikTok-only. Custom destination URL for the Spark Ad. Without this, TikTok
|
|
13002
|
+
* Spark Ads have no clickable destination — required for traffic / conversion
|
|
13003
|
+
* objectives. Maps to `landing_page_url` on the creative entry of /v2/ad/create/
|
|
13004
|
+
* (TikTok SDK `AdcreateCreatives.landing_page_url`). Ignored on Meta / LinkedIn /
|
|
13005
|
+
* Pinterest / X / Google (those infer the destination from the boosted post).
|
|
13006
|
+
*
|
|
13007
|
+
*/
|
|
13008
|
+
linkUrl?: string;
|
|
13009
|
+
/**
|
|
13010
|
+
* TikTok-only. Call-to-action button label on the Spark Ad creative (e.g.
|
|
13011
|
+
* `LEARN_MORE`, `SHOP_NOW`, `DOWNLOAD_NOW`, `SIGN_UP`, `WATCH_NOW`). Maps to
|
|
13012
|
+
* `call_to_action` on the creative entry of /v2/ad/create/. Pass-through —
|
|
13013
|
+
* the platform validates the value. See TikTok's "Enumeration - Call-to-Action"
|
|
13014
|
+
* reference for the full list.
|
|
13015
|
+
*
|
|
13016
|
+
*/
|
|
13017
|
+
callToAction?: string;
|
|
13018
|
+
/**
|
|
13019
|
+
* TikTok-only. Spark Code (creator's `auth_code`) authorizing cross-creator
|
|
13020
|
+
* Spark Ads — the advertiser can boost a video owned by a DIFFERENT TikTok
|
|
13021
|
+
* account. Without this, boosts are limited to videos owned by the same
|
|
13022
|
+
* account running the ads (same-BC creators only). The creator generates the
|
|
13023
|
+
* code in their TikTok app's Promote settings and shares it with the
|
|
13024
|
+
* advertiser. Maps to `auth_code` on the creative entry of /v2/ad/create/.
|
|
13025
|
+
*
|
|
13026
|
+
*/
|
|
13027
|
+
sparkAuthCode?: string;
|
|
12772
13028
|
/**
|
|
12773
13029
|
* Name of the legal entity benefiting from the ad.
|
|
12774
13030
|
* Required by Meta when targeting EU users (DSA Article 26).
|
|
@@ -12887,8 +13143,15 @@ type CreateStandaloneAdData = {
|
|
|
12887
13143
|
/**
|
|
12888
13144
|
* Meta-only. When present, switches to the attach shape: adds
|
|
12889
13145
|
* one new ad to this existing ad set without creating a new
|
|
12890
|
-
* campaign. Budget, targeting, goal,
|
|
12891
|
-
* from the ad set on Meta
|
|
13146
|
+
* campaign. Budget, targeting, goal, schedule, AND bid strategy
|
|
13147
|
+
* are inherited from the ad set on Meta — passing `bidStrategy`
|
|
13148
|
+
* in attach mode returns 400. To change an existing ad set's
|
|
13149
|
+
* bid, use `PUT /v1/ads/ad-sets/{adSetId}`. Mutually exclusive
|
|
13150
|
+
* with `creatives[]`.
|
|
13151
|
+
*
|
|
13152
|
+
* Supported on Meta (facebook, instagram) and TikTok. On TikTok
|
|
13153
|
+
* the `adSetId` is the ad group ID; the new ad inherits the
|
|
13154
|
+
* ad group's bid + budget + targeting.
|
|
12892
13155
|
*
|
|
12893
13156
|
*/
|
|
12894
13157
|
adSetId?: string;
|
|
@@ -12942,6 +13205,23 @@ type CreateStandaloneAdData = {
|
|
|
12942
13205
|
* Meta only. Restrict the audience by gender. 'male' targets men only, 'female' targets women only, 'all' (default) targets everyone. Ignored by non-Meta platforms.
|
|
12943
13206
|
*/
|
|
12944
13207
|
gender?: 'all' | 'male' | 'female';
|
|
13208
|
+
/**
|
|
13209
|
+
* Meta bid strategy applied to the ad set.
|
|
13210
|
+
*/
|
|
13211
|
+
bidStrategy?: (BidStrategy);
|
|
13212
|
+
/**
|
|
13213
|
+
* Bid cap in WHOLE currency units (USD: 5 = $5.00; JPY: 100 = ¥100). Required when
|
|
13214
|
+
* `bidStrategy` is `LOWEST_COST_WITH_BID_CAP` or `COST_CAP`.
|
|
13215
|
+
*
|
|
13216
|
+
*/
|
|
13217
|
+
bidAmount?: number;
|
|
13218
|
+
/**
|
|
13219
|
+
* Minimum ROAS as a decimal multiplier (e.g. 2.0 = 2.0x ROAS). Required when
|
|
13220
|
+
* `bidStrategy` is `LOWEST_COST_WITH_MIN_ROAS`. Sent to Meta as
|
|
13221
|
+
* `bid_constraints.roas_average_floor` × 10000.
|
|
13222
|
+
*
|
|
13223
|
+
*/
|
|
13224
|
+
roasAverageFloor?: number;
|
|
12945
13225
|
/**
|
|
12946
13226
|
* Name of the legal entity benefiting from the ad.
|
|
12947
13227
|
* Required by Meta when targeting EU users (DSA Article 26).
|
|
@@ -13443,4 +13723,4 @@ type CreateCtwaAdError = (unknown | {
|
|
|
13443
13723
|
error?: string;
|
|
13444
13724
|
});
|
|
13445
13725
|
|
|
13446
|
-
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type Ad, type AdBudget, type AdCampaign, type AdMetrics, type AdStatus, type AdTreeAdSet, type AdTreeCampaign, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddUsersToAdAudienceData, type AddUsersToAdAudienceError, type AddUsersToAdAudienceResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type BatchGetGoogleBusinessReviewsData, type BatchGetGoogleBusinessReviewsError, type BatchGetGoogleBusinessReviewsResponse, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BoostPostData, type BoostPostError, type BoostPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkUpdateAdCampaignStatusData, type BulkUpdateAdCampaignStatusError, type BulkUpdateAdCampaignStatusResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConversionEvent, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateAdAudienceData, type CreateAdAudienceError, type CreateAdAudienceResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateBroadcastData, type CreateBroadcastError, type CreateBroadcastResponse, type CreateCommentAutomationData, type CreateCommentAutomationError, type CreateCommentAutomationResponse, type CreateContactData, type CreateContactError, type CreateContactResponse, type CreateCtwaAdData, type CreateCtwaAdError, type CreateCtwaAdResponse, type CreateCustomFieldData, type CreateCustomFieldError, type CreateCustomFieldResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInboxConversationData, type CreateInboxConversationError, type CreateInboxConversationResponse, 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 CreateSequenceData, type CreateSequenceError, type CreateSequenceResponse, type CreateStandaloneAdData, type CreateStandaloneAdError, type CreateStandaloneAdResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppFlowData, type CreateWhatsAppFlowError, type CreateWhatsAppFlowResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteAdAudienceData, type DeleteAdAudienceError, type DeleteAdAudienceResponse, type DeleteAdCampaignData, type DeleteAdCampaignError, type DeleteAdCampaignResponse, type DeleteAdData, type DeleteAdError, type DeleteAdResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeleteBroadcastData, type DeleteBroadcastError, type DeleteBroadcastResponse, type DeleteCommentAutomationData, type DeleteCommentAutomationError, type DeleteCommentAutomationResponse, type DeleteContactData, type DeleteContactError, type DeleteContactResponse, type DeleteCustomFieldData, type DeleteCustomFieldError, type DeleteCustomFieldResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxMessageData, type DeleteInboxMessageError, type DeleteInboxMessageResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteSequenceData, type DeleteSequenceError, type DeleteSequenceResponse, type DeleteTelegramCommandsData, type DeleteTelegramCommandsError, type DeleteTelegramCommandsResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DeleteWhatsAppFlowData, type DeleteWhatsAppFlowError, type DeleteWhatsAppFlowResponse, type DeleteWhatsAppGroupChatData, type DeleteWhatsAppGroupChatError, type DeleteWhatsAppGroupChatResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DeprecateWhatsAppFlowData, type DeprecateWhatsAppFlowError, type DeprecateWhatsAppFlowResponse, type DiscordPlatformData, type DuplicateAdCampaignData, type DuplicateAdCampaignError, type DuplicateAdCampaignResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type EditPostData, type EditPostError, type EditPostResponse, type EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, type ErrorResponse, type FacebookPlatformData, type FollowUserData, type FollowUserError, type FollowUserResponse, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GeoRestriction, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAdAnalyticsData, type GetAdAnalyticsError, type GetAdAnalyticsResponse, type GetAdAudienceData, type GetAdAudienceError, type GetAdAudienceResponse, type GetAdCommentsData, type GetAdCommentsError, type GetAdCommentsResponse, type GetAdData, type GetAdError, type GetAdResponse, type GetAdTreeData, type GetAdTreeError, type GetAdTreeResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetBroadcastData, type GetBroadcastError, type GetBroadcastResponse, type GetCommentAutomationData, type GetCommentAutomationError, type GetCommentAutomationResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContactChannelsData, type GetContactChannelsError, type GetContactChannelsResponse, type GetContactData, type GetContactError, type GetContactResponse, type GetContentDecayData, type GetContentDecayError, type GetContentDecayResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetDiscordChannelsData, type GetDiscordChannelsError, type GetDiscordChannelsResponse, type GetDiscordSettingsData, type GetDiscordSettingsError, type GetDiscordSettingsResponse, type GetFacebookPageInsightsData, type GetFacebookPageInsightsError, type GetFacebookPageInsightsResponse, 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 GetGoogleBusinessPerformanceData, type GetGoogleBusinessPerformanceError, type GetGoogleBusinessPerformanceResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetGoogleBusinessSearchKeywordsData, type GetGoogleBusinessSearchKeywordsError, type GetGoogleBusinessSearchKeywordsResponse, type GetGoogleBusinessServicesData, type GetGoogleBusinessServicesError, type GetGoogleBusinessServicesResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInstagramAccountInsightsData, type GetInstagramAccountInsightsError, type GetInstagramAccountInsightsResponse, type GetInstagramDemographicsData, type GetInstagramDemographicsError, type GetInstagramDemographicsResponse, type GetInstagramFollowerHistoryData, type GetInstagramFollowerHistoryError, type GetInstagramFollowerHistoryResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrgAggregateAnalyticsData, type GetLinkedInOrgAggregateAnalyticsError, type GetLinkedInOrgAggregateAnalyticsResponse, type GetLinkedInOrganizationsData, type GetLinkedInOrganizationsError, type GetLinkedInOrganizationsResponse, type GetLinkedInPostAnalyticsData, type GetLinkedInPostAnalyticsError, type GetLinkedInPostAnalyticsResponse, type GetLinkedInPostReactionsData, type GetLinkedInPostReactionsError, type GetLinkedInPostReactionsResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, type GetMessengerMenuData, type GetMessengerMenuError, type GetMessengerMenuResponse, type GetNextQueueSlotData, type GetNextQueueSlotError, type GetNextQueueSlotResponse, type GetPendingOAuthDataData, type GetPendingOAuthDataError, type GetPendingOAuthDataResponse, type GetPinterestBoardsData, type GetPinterestBoardsError, type GetPinterestBoardsResponse, type GetPostData, type GetPostError, type GetPostResponse, type GetPostTimelineData, type GetPostTimelineError, type GetPostTimelineResponse, type GetPostingFrequencyData, type GetPostingFrequencyError, type GetPostingFrequencyResponse, type GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditFlairsData, type GetRedditFlairsError, type GetRedditFlairsResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, type GetSequenceData, type GetSequenceError, type GetSequenceResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetTikTokAccountInsightsData, type GetTikTokAccountInsightsError, type GetTikTokAccountInsightsResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type GetWhatsAppFlowData, type GetWhatsAppFlowError, type GetWhatsAppFlowJsonData, type GetWhatsAppFlowJsonError, type GetWhatsAppFlowJsonResponse, type GetWhatsAppFlowResponse, type GetWhatsAppGroupChatData, type GetWhatsAppGroupChatError, type GetWhatsAppGroupChatResponse, type GetWhatsAppPhoneNumberData, type GetWhatsAppPhoneNumberError, type GetWhatsAppPhoneNumberResponse, type GetWhatsAppPhoneNumbersData, type GetWhatsAppPhoneNumbersError, type GetWhatsAppPhoneNumbersResponse, type GetWhatsAppTemplateData, type GetWhatsAppTemplateError, type GetWhatsAppTemplateResponse, type GetWhatsAppTemplatesData, type GetWhatsAppTemplatesError, type GetWhatsAppTemplatesResponse, type GetYouTubeChannelInsightsData, type GetYouTubeChannelInsightsError, type GetYouTubeChannelInsightsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeDemographicsData, type GetYouTubeDemographicsError, type GetYouTubeDemographicsResponse, type GetYoutubePlaylistsData, type GetYoutubePlaylistsError, type GetYoutubePlaylistsResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InboxWebhookAccount, type InboxWebhookConversation, type InboxWebhookMessage, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InstagramAccountInsightsResponse, type InstagramDemographicsResponse, 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 ListAdAccountsData, type ListAdAccountsError, type ListAdAccountsResponse, type ListAdAudiencesData, type ListAdAudiencesError, type ListAdAudiencesResponse, type ListAdCampaignsData, type ListAdCampaignsError, type ListAdCampaignsResponse, type ListAdsData, type ListAdsError, type ListAdsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListBroadcastRecipientsData, type ListBroadcastRecipientsError, type ListBroadcastRecipientsResponse, type ListBroadcastsData, type ListBroadcastsError, type ListBroadcastsResponse, type ListCommentAutomationLogsData, type ListCommentAutomationLogsError, type ListCommentAutomationLogsResponse, type ListCommentAutomationsData, type ListCommentAutomationsError, type ListCommentAutomationsResponse, type ListContactsData, type ListContactsError, type ListContactsResponse, type ListConversionDestinationsData, type ListConversionDestinationsError, type ListConversionDestinationsResponse, type ListCustomFieldsData, type ListCustomFieldsError, type ListCustomFieldsResponse, 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 ListSequenceEnrollmentsData, type ListSequenceEnrollmentsError, type ListSequenceEnrollmentsResponse, type ListSequencesData, type ListSequencesError, type ListSequencesResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, 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 PublishWhatsAppFlowData, type PublishWhatsAppFlowError, type PublishWhatsAppFlowResponse, type PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type RedditPost, type RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ReviewWebhookReview, type ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type SearchAdInterestsData, type SearchAdInterestsError, type SearchAdInterestsResponse, 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 SendBroadcastData, type SendBroadcastError, type SendBroadcastResponse, type SendConversionsData, type SendConversionsError, type SendConversionsResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendTypingIndicatorData, type SendTypingIndicatorError, type SendTypingIndicatorResponse, type SendWhatsAppConversionData, type SendWhatsAppConversionError, type SendWhatsAppConversionResponse, type SendWhatsAppFlowMessageData, type SendWhatsAppFlowMessageError, type SendWhatsAppFlowMessageResponse, type SetContactFieldValueData, type SetContactFieldValueError, type SetContactFieldValueResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TwitterPlatformData, type UndoRetweetData, type UndoRetweetError, type UndoRetweetResponse, type UnenrollContactData, type UnenrollContactError, type UnenrollContactResponse, type UnfollowUserData, type UnfollowUserError, type UnfollowUserResponse, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateAdCampaignData, type UpdateAdCampaignError, type UpdateAdCampaignResponse, type UpdateAdCampaignStatusData, type UpdateAdCampaignStatusError, type UpdateAdCampaignStatusResponse, type UpdateAdData, type UpdateAdError, type UpdateAdResponse, type UpdateAdSetData, type UpdateAdSetError, type UpdateAdSetResponse, type UpdateAdSetStatusData, type UpdateAdSetStatusError, type UpdateAdSetStatusResponse, type UpdateBroadcastData, type UpdateBroadcastError, type UpdateBroadcastResponse, type UpdateCommentAutomationData, type UpdateCommentAutomationError, type UpdateCommentAutomationResponse, type UpdateContactData, type UpdateContactError, type UpdateContactResponse, type UpdateCustomFieldData, type UpdateCustomFieldError, type UpdateCustomFieldResponse, type UpdateDiscordSettingsData, type UpdateDiscordSettingsError, type UpdateDiscordSettingsResponse, 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 UpdateGoogleBusinessPlaceActionData, type UpdateGoogleBusinessPlaceActionError, type UpdateGoogleBusinessPlaceActionResponse, type UpdateGoogleBusinessServicesData, type UpdateGoogleBusinessServicesError, type UpdateGoogleBusinessServicesResponse, type UpdateInboxConversationData, type UpdateInboxConversationError, type UpdateInboxConversationResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostMetadataData, type UpdatePostMetadataError, type UpdatePostMetadataResponse, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateSequenceData, type UpdateSequenceError, type UpdateSequenceResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppDisplayNameData, type UpdateWhatsAppDisplayNameError, type UpdateWhatsAppDisplayNameResponse, type UpdateWhatsAppFlowData, type UpdateWhatsAppFlowError, type UpdateWhatsAppFlowResponse, type UpdateWhatsAppGroupChatData, type UpdateWhatsAppGroupChatError, type UpdateWhatsAppGroupChatResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UpdateYoutubeDefaultPlaylistData, type UpdateYoutubeDefaultPlaylistError, type UpdateYoutubeDefaultPlaylistResponse, type UploadMediaDirectData, type UploadMediaDirectError, type UploadMediaDirectResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppFlowJsonData, type UploadWhatsAppFlowJsonError, type UploadWhatsAppFlowJsonResponse, type UploadWhatsAppProfilePhotoData, type UploadWhatsAppProfilePhotoError, type UploadWhatsAppProfilePhotoResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, ValidationError, type Webhook, type WebhookPayloadAccountAdsInitialSyncCompleted, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadComment, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadReviewNew, type WebhookPayloadReviewUpdated, type WebhookPayloadTest, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type actionSource, type adType, type aggregation, type aggregation2, type aggregation3, type autoArchiveDuration, type billingPeriod, type budgetLevel, type commercialContentType, type contentType, type contentType2, type contentType3, Zernio as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event10, type event11, type event12, type event13, type event2, type event3, type event4, type event5, type event6, type event7, type event8, type event9, type format, type gapFreq, type goal, type graduationStrategy, type interactiveType, type mediaType, type mediaType2, type metric, type metricType, type offerType, type otp_type, parseApiError, type parseMode, type permission, type platform, type platform2, type platform3, type platform4, type platform5, type platform6, type replySettings, type reviewStatus, type scope, type status, type status2, type status3, type status4, type status5, type status6, type syncStatus, type syncStatus2, type timeframe, type topicType, type type, type type2, type type3, type type4, type type5, type visibility };
|
|
13726
|
+
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type Ad, type AdBudget, type AdCampaign, type AdMetrics, type AdStatus, type AdTreeAdSet, type AdTreeCampaign, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddUsersToAdAudienceData, type AddUsersToAdAudienceError, type AddUsersToAdAudienceResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type BatchGetGoogleBusinessReviewsData, type BatchGetGoogleBusinessReviewsError, type BatchGetGoogleBusinessReviewsResponse, type BidStrategy, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BoostPostData, type BoostPostError, type BoostPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkUpdateAdCampaignStatusData, type BulkUpdateAdCampaignStatusError, type BulkUpdateAdCampaignStatusResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type BusinessCenter, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConversionEvent, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateAdAudienceData, type CreateAdAudienceError, type CreateAdAudienceResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateBroadcastData, type CreateBroadcastError, type CreateBroadcastResponse, type CreateCommentAutomationData, type CreateCommentAutomationError, type CreateCommentAutomationResponse, type CreateContactData, type CreateContactError, type CreateContactResponse, type CreateCtwaAdData, type CreateCtwaAdError, type CreateCtwaAdResponse, type CreateCustomFieldData, type CreateCustomFieldError, type CreateCustomFieldResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInboxConversationData, type CreateInboxConversationError, type CreateInboxConversationResponse, 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 CreateSequenceData, type CreateSequenceError, type CreateSequenceResponse, type CreateStandaloneAdData, type CreateStandaloneAdError, type CreateStandaloneAdResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppFlowData, type CreateWhatsAppFlowError, type CreateWhatsAppFlowResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteAdAudienceData, type DeleteAdAudienceError, type DeleteAdAudienceResponse, type DeleteAdCampaignData, type DeleteAdCampaignError, type DeleteAdCampaignResponse, type DeleteAdData, type DeleteAdError, type DeleteAdResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeleteBroadcastData, type DeleteBroadcastError, type DeleteBroadcastResponse, type DeleteCommentAutomationData, type DeleteCommentAutomationError, type DeleteCommentAutomationResponse, type DeleteContactData, type DeleteContactError, type DeleteContactResponse, type DeleteCustomFieldData, type DeleteCustomFieldError, type DeleteCustomFieldResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxMessageData, type DeleteInboxMessageError, type DeleteInboxMessageResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteSequenceData, type DeleteSequenceError, type DeleteSequenceResponse, type DeleteTelegramCommandsData, type DeleteTelegramCommandsError, type DeleteTelegramCommandsResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DeleteWhatsAppFlowData, type DeleteWhatsAppFlowError, type DeleteWhatsAppFlowResponse, type DeleteWhatsAppGroupChatData, type DeleteWhatsAppGroupChatError, type DeleteWhatsAppGroupChatResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DeprecateWhatsAppFlowData, type DeprecateWhatsAppFlowError, type DeprecateWhatsAppFlowResponse, type DiscordPlatformData, type DuplicateAdCampaignData, type DuplicateAdCampaignError, type DuplicateAdCampaignResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type EditPostData, type EditPostError, type EditPostResponse, type EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, type ErrorResponse, type FacebookPlatformData, type FollowUserData, type FollowUserError, type FollowUserResponse, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GeoRestriction, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAdAnalyticsData, type GetAdAnalyticsError, type GetAdAnalyticsResponse, type GetAdAudienceData, type GetAdAudienceError, type GetAdAudienceResponse, type GetAdCommentsData, type GetAdCommentsError, type GetAdCommentsResponse, type GetAdData, type GetAdError, type GetAdResponse, type GetAdTreeData, type GetAdTreeError, type GetAdTreeResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetBroadcastData, type GetBroadcastError, type GetBroadcastResponse, type GetCommentAutomationData, type GetCommentAutomationError, type GetCommentAutomationResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContactChannelsData, type GetContactChannelsError, type GetContactChannelsResponse, type GetContactData, type GetContactError, type GetContactResponse, type GetContentDecayData, type GetContentDecayError, type GetContentDecayResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetDiscordChannelsData, type GetDiscordChannelsError, type GetDiscordChannelsResponse, type GetDiscordSettingsData, type GetDiscordSettingsError, type GetDiscordSettingsResponse, type GetFacebookPageInsightsData, type GetFacebookPageInsightsError, type GetFacebookPageInsightsResponse, 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 GetGoogleBusinessPerformanceData, type GetGoogleBusinessPerformanceError, type GetGoogleBusinessPerformanceResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetGoogleBusinessSearchKeywordsData, type GetGoogleBusinessSearchKeywordsError, type GetGoogleBusinessSearchKeywordsResponse, type GetGoogleBusinessServicesData, type GetGoogleBusinessServicesError, type GetGoogleBusinessServicesResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInstagramAccountInsightsData, type GetInstagramAccountInsightsError, type GetInstagramAccountInsightsResponse, type GetInstagramDemographicsData, type GetInstagramDemographicsError, type GetInstagramDemographicsResponse, type GetInstagramFollowerHistoryData, type GetInstagramFollowerHistoryError, type GetInstagramFollowerHistoryResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrgAggregateAnalyticsData, type GetLinkedInOrgAggregateAnalyticsError, type GetLinkedInOrgAggregateAnalyticsResponse, type GetLinkedInOrganizationsData, type GetLinkedInOrganizationsError, type GetLinkedInOrganizationsResponse, type GetLinkedInPostAnalyticsData, type GetLinkedInPostAnalyticsError, type GetLinkedInPostAnalyticsResponse, type GetLinkedInPostReactionsData, type GetLinkedInPostReactionsError, type GetLinkedInPostReactionsResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, type GetMessengerMenuData, type GetMessengerMenuError, type GetMessengerMenuResponse, type GetNextQueueSlotData, type GetNextQueueSlotError, type GetNextQueueSlotResponse, type GetPendingOAuthDataData, type GetPendingOAuthDataError, type GetPendingOAuthDataResponse, type GetPinterestBoardsData, type GetPinterestBoardsError, type GetPinterestBoardsResponse, type GetPostData, type GetPostError, type GetPostResponse, type GetPostTimelineData, type GetPostTimelineError, type GetPostTimelineResponse, type GetPostingFrequencyData, type GetPostingFrequencyError, type GetPostingFrequencyResponse, type GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditFlairsData, type GetRedditFlairsError, type GetRedditFlairsResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, type GetSequenceData, type GetSequenceError, type GetSequenceResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetTikTokAccountInsightsData, type GetTikTokAccountInsightsError, type GetTikTokAccountInsightsResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type GetWhatsAppFlowData, type GetWhatsAppFlowError, type GetWhatsAppFlowJsonData, type GetWhatsAppFlowJsonError, type GetWhatsAppFlowJsonResponse, type GetWhatsAppFlowResponse, type GetWhatsAppGroupChatData, type GetWhatsAppGroupChatError, type GetWhatsAppGroupChatResponse, type GetWhatsAppPhoneNumberData, type GetWhatsAppPhoneNumberError, type GetWhatsAppPhoneNumberResponse, type GetWhatsAppPhoneNumbersData, type GetWhatsAppPhoneNumbersError, type GetWhatsAppPhoneNumbersResponse, type GetWhatsAppTemplateData, type GetWhatsAppTemplateError, type GetWhatsAppTemplateResponse, type GetWhatsAppTemplatesData, type GetWhatsAppTemplatesError, type GetWhatsAppTemplatesResponse, type GetYouTubeChannelInsightsData, type GetYouTubeChannelInsightsError, type GetYouTubeChannelInsightsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeDemographicsData, type GetYouTubeDemographicsError, type GetYouTubeDemographicsResponse, type GetYoutubePlaylistsData, type GetYoutubePlaylistsError, type GetYoutubePlaylistsResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InboxWebhookAccount, type InboxWebhookConversation, type InboxWebhookMessage, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InstagramAccountInsightsResponse, type InstagramDemographicsResponse, 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 ListAdAccountsData, type ListAdAccountsError, type ListAdAccountsResponse, type ListAdAudiencesData, type ListAdAudiencesError, type ListAdAudiencesResponse, type ListAdCampaignsData, type ListAdCampaignsError, type ListAdCampaignsResponse, type ListAdsBusinessCentersData, type ListAdsBusinessCentersError, type ListAdsBusinessCentersResponse, type ListAdsData, type ListAdsError, type ListAdsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListBroadcastRecipientsData, type ListBroadcastRecipientsError, type ListBroadcastRecipientsResponse, type ListBroadcastsData, type ListBroadcastsError, type ListBroadcastsResponse, type ListCommentAutomationLogsData, type ListCommentAutomationLogsError, type ListCommentAutomationLogsResponse, type ListCommentAutomationsData, type ListCommentAutomationsError, type ListCommentAutomationsResponse, type ListContactsData, type ListContactsError, type ListContactsResponse, type ListConversionDestinationsData, type ListConversionDestinationsError, type ListConversionDestinationsResponse, type ListCustomFieldsData, type ListCustomFieldsError, type ListCustomFieldsResponse, 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 ListSequenceEnrollmentsData, type ListSequenceEnrollmentsError, type ListSequenceEnrollmentsResponse, type ListSequencesData, type ListSequencesError, type ListSequencesResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, 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 PublishWhatsAppFlowData, type PublishWhatsAppFlowError, type PublishWhatsAppFlowResponse, type PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type RedditPost, type RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ReviewWebhookReview, type ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type SearchAdInterestsData, type SearchAdInterestsError, type SearchAdInterestsResponse, 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 SendBroadcastData, type SendBroadcastError, type SendBroadcastResponse, type SendConversionsData, type SendConversionsError, type SendConversionsResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendTypingIndicatorData, type SendTypingIndicatorError, type SendTypingIndicatorResponse, type SendWhatsAppConversionData, type SendWhatsAppConversionError, type SendWhatsAppConversionResponse, type SendWhatsAppFlowMessageData, type SendWhatsAppFlowMessageError, type SendWhatsAppFlowMessageResponse, type SetContactFieldValueData, type SetContactFieldValueError, type SetContactFieldValueResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TriggerAdsInitialSyncData, type TriggerAdsInitialSyncError, type TriggerAdsInitialSyncResponse, type TwitterPlatformData, type UndoRetweetData, type UndoRetweetError, type UndoRetweetResponse, type UnenrollContactData, type UnenrollContactError, type UnenrollContactResponse, type UnfollowUserData, type UnfollowUserError, type UnfollowUserResponse, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateAdCampaignData, type UpdateAdCampaignError, type UpdateAdCampaignResponse, type UpdateAdCampaignStatusData, type UpdateAdCampaignStatusError, type UpdateAdCampaignStatusResponse, type UpdateAdData, type UpdateAdError, type UpdateAdResponse, type UpdateAdSetData, type UpdateAdSetError, type UpdateAdSetResponse, type UpdateAdSetStatusData, type UpdateAdSetStatusError, type UpdateAdSetStatusResponse, type UpdateBroadcastData, type UpdateBroadcastError, type UpdateBroadcastResponse, type UpdateCommentAutomationData, type UpdateCommentAutomationError, type UpdateCommentAutomationResponse, type UpdateContactData, type UpdateContactError, type UpdateContactResponse, type UpdateCustomFieldData, type UpdateCustomFieldError, type UpdateCustomFieldResponse, type UpdateDiscordSettingsData, type UpdateDiscordSettingsError, type UpdateDiscordSettingsResponse, 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 UpdateGoogleBusinessPlaceActionData, type UpdateGoogleBusinessPlaceActionError, type UpdateGoogleBusinessPlaceActionResponse, type UpdateGoogleBusinessServicesData, type UpdateGoogleBusinessServicesError, type UpdateGoogleBusinessServicesResponse, type UpdateInboxConversationData, type UpdateInboxConversationError, type UpdateInboxConversationResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostMetadataData, type UpdatePostMetadataError, type UpdatePostMetadataResponse, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateSequenceData, type UpdateSequenceError, type UpdateSequenceResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppDisplayNameData, type UpdateWhatsAppDisplayNameError, type UpdateWhatsAppDisplayNameResponse, type UpdateWhatsAppFlowData, type UpdateWhatsAppFlowError, type UpdateWhatsAppFlowResponse, type UpdateWhatsAppGroupChatData, type UpdateWhatsAppGroupChatError, type UpdateWhatsAppGroupChatResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UpdateYoutubeDefaultPlaylistData, type UpdateYoutubeDefaultPlaylistError, type UpdateYoutubeDefaultPlaylistResponse, type UploadMediaDirectData, type UploadMediaDirectError, type UploadMediaDirectResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppFlowJsonData, type UploadWhatsAppFlowJsonError, type UploadWhatsAppFlowJsonResponse, type UploadWhatsAppProfilePhotoData, type UploadWhatsAppProfilePhotoError, type UploadWhatsAppProfilePhotoResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, ValidationError, type Webhook, type WebhookPayloadAccountAdsInitialSyncCompleted, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadComment, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadReviewNew, type WebhookPayloadReviewUpdated, type WebhookPayloadTest, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type actionSource, type adType, type aggregation, type aggregation2, type aggregation3, type autoArchiveDuration, type billingPeriod, type budgetLevel, type commercialContentType, type contentType, type contentType2, type contentType3, Zernio as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event10, type event11, type event12, type event13, type event2, type event3, type event4, type event5, type event6, type event7, type event8, type event9, type format, type gapFreq, type goal, type graduationStrategy, type interactiveType, type mediaType, type mediaType2, type metric, type metricType, type offerType, type otp_type, parseApiError, type parseMode, type permission, type platform, type platform2, type platform3, type platform4, type platform5, type platform6, type replySettings, type reviewStatus, type scope, type status, type status2, type status3, type status4, type status5, type status6, type syncStatus, type syncStatus2, type timeframe, type topicType, type type, type type2, type type3, type type4, type type5, type visibility };
|
package/dist/index.js
CHANGED
|
@@ -1807,6 +1807,18 @@ var getAdComments = (options) => {
|
|
|
1807
1807
|
url: "/v1/ads/{adId}/comments"
|
|
1808
1808
|
});
|
|
1809
1809
|
};
|
|
1810
|
+
var listAdsBusinessCenters = (options) => {
|
|
1811
|
+
return (options?.client ?? client).get({
|
|
1812
|
+
...options,
|
|
1813
|
+
url: "/v1/ads/business-centers"
|
|
1814
|
+
});
|
|
1815
|
+
};
|
|
1816
|
+
var triggerAdsInitialSync = (options) => {
|
|
1817
|
+
return (options?.client ?? client).post({
|
|
1818
|
+
...options,
|
|
1819
|
+
url: "/v1/ads/sync/initial"
|
|
1820
|
+
});
|
|
1821
|
+
};
|
|
1810
1822
|
var listAdAccounts = (options) => {
|
|
1811
1823
|
return (options?.client ?? client).get({
|
|
1812
1824
|
...options,
|
|
@@ -2431,6 +2443,8 @@ var Zernio = class {
|
|
|
2431
2443
|
deleteAd,
|
|
2432
2444
|
getAdAnalytics,
|
|
2433
2445
|
getAdComments,
|
|
2446
|
+
listAdsBusinessCenters,
|
|
2447
|
+
triggerAdsInitialSync,
|
|
2434
2448
|
listAdAccounts,
|
|
2435
2449
|
boostPost,
|
|
2436
2450
|
createStandaloneAd,
|