@zernio/node 0.2.865 → 0.2.867

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
@@ -19749,14 +19749,9 @@ type ConnectWhatsAppEmbeddedSignupData = {
19749
19749
  */
19750
19750
  expectedPhoneNumber?: string;
19751
19751
  /**
19752
- * Hosted signup page only. When present, the response also carries `redirectUrl`, the URL the user should land on, with the outcome mapped exactly like the redirect flow (success params, or `error` and `platform` with the same values). Must be an absolute http(s) URL or a custom app scheme.
19752
+ * Hosted signup page only. When present, the response also carries `redirectUrl`, the URL the user should land on, with the outcome mapped exactly like the redirect flow (success params, or `error` and `platform` with the same values). Must be an absolute http(s) URL or a custom app scheme. The legacy spelling `redirectUrl` remains accepted as an alias.
19753
19753
  */
19754
19754
  redirect_url?: string;
19755
- /**
19756
- * Alias of redirect_url, kept for existing callers
19757
- * @deprecated
19758
- */
19759
- redirectUrl?: string;
19760
19755
  /**
19761
19756
  * Hosted signup page only. Append the connect token to the success redirect, as the redirect flow does for API-key callers.
19762
19757
  */
@@ -34052,6 +34047,10 @@ type GetAdsSearchTermsData = {
34052
34047
  * Google ads SocialAccount id.
34053
34048
  */
34054
34049
  accountId: string;
34050
+ /**
34051
+ * Platform ad account ID (Google customer ID, digits only). Defaults to the account's connected customer.
34052
+ */
34053
+ adAccountId?: string;
34055
34054
  /**
34056
34055
  * Alias of adSetId, kept for existing callers.
34057
34056
  * @deprecated
@@ -34066,7 +34065,8 @@ type GetAdsSearchTermsData = {
34066
34065
  */
34067
34066
  campaignId?: string;
34068
34067
  /**
34069
- * Numeric Google Ads customer id (no dashes). Defaults to the account's connected customer.
34068
+ * Alias of adAccountId, kept for existing callers
34069
+ * @deprecated
34070
34070
  */
34071
34071
  customerId?: string;
34072
34072
  /**
@@ -34133,7 +34133,12 @@ type ListBidStrategiesData = {
34133
34133
  */
34134
34134
  accountId: string;
34135
34135
  /**
34136
- * Numeric Google Ads customer id (no dashes). Defaults to the account's connected customer.
34136
+ * Platform ad account ID (Google customer ID, digits only). Defaults to the account's connected customer.
34137
+ */
34138
+ adAccountId?: string;
34139
+ /**
34140
+ * Alias of adAccountId, kept for existing callers
34141
+ * @deprecated
34137
34142
  */
34138
34143
  customerId?: string;
34139
34144
  /**
@@ -34172,7 +34177,12 @@ type CreateBidStrategyData = {
34172
34177
  */
34173
34178
  accountId: string;
34174
34179
  /**
34175
- * Numeric Google Ads customer id (no dashes). Defaults to the account's connected customer.
34180
+ * Platform ad account ID (Google customer ID, digits only). Defaults to the account's connected customer.
34181
+ */
34182
+ adAccountId?: string;
34183
+ /**
34184
+ * Alias of adAccountId, kept for existing callers
34185
+ * @deprecated
34176
34186
  */
34177
34187
  customerId?: string;
34178
34188
  name: string;
@@ -34207,7 +34217,12 @@ type UpdateBidStrategyData = {
34207
34217
  */
34208
34218
  accountId: string;
34209
34219
  /**
34210
- * Numeric Google Ads customer id (no dashes). Defaults to the account's connected customer.
34220
+ * Platform ad account ID (Google customer ID, digits only). Defaults to the account's connected customer.
34221
+ */
34222
+ adAccountId?: string;
34223
+ /**
34224
+ * Alias of adAccountId, kept for existing callers
34225
+ * @deprecated
34211
34226
  */
34212
34227
  customerId?: string;
34213
34228
  name?: string;
@@ -34236,12 +34251,17 @@ type ListLocalServicesLeadsData = {
34236
34251
  * Google ads SocialAccount id.
34237
34252
  */
34238
34253
  accountId: string;
34254
+ /**
34255
+ * Platform ad account ID (Google customer ID, digits only). Defaults to the account's connected customer.
34256
+ */
34257
+ adAccountId?: string;
34239
34258
  /**
34240
34259
  * true = only leads Google charged for.
34241
34260
  */
34242
34261
  chargedOnly?: boolean;
34243
34262
  /**
34244
- * Numeric Google Ads customer id (no dashes). Defaults to the account's connected customer.
34263
+ * Alias of adAccountId, kept for existing callers
34264
+ * @deprecated
34245
34265
  */
34246
34266
  customerId?: string;
34247
34267
  /**
@@ -34317,7 +34337,12 @@ type ListLocalServicesLeadConversationsData = {
34317
34337
  */
34318
34338
  accountId: string;
34319
34339
  /**
34320
- * Numeric Google Ads customer id (no dashes). Defaults to the account's connected customer.
34340
+ * Platform ad account ID (Google customer ID, digits only). Defaults to the account's connected customer.
34341
+ */
34342
+ adAccountId?: string;
34343
+ /**
34344
+ * Alias of adAccountId, kept for existing callers
34345
+ * @deprecated
34321
34346
  */
34322
34347
  customerId?: string;
34323
34348
  /**
@@ -34789,7 +34814,12 @@ type GetCampaignBiddingData = {
34789
34814
  */
34790
34815
  accountId: string;
34791
34816
  /**
34792
- * Numeric Google Ads customer id (no dashes). Required when the connection has multiple Google Ads accounts; optional (and inferred) when it has only one.
34817
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple Google Ads accounts; optional (and inferred) when it has only one.
34818
+ */
34819
+ adAccountId?: string;
34820
+ /**
34821
+ * Alias of adAccountId, kept for existing callers
34822
+ * @deprecated
34793
34823
  */
34794
34824
  customerId?: string;
34795
34825
  /**
@@ -35365,7 +35395,12 @@ type CreateAdSetData = {
35365
35395
  name: string;
35366
35396
  status?: 'ACTIVE' | 'PAUSED';
35367
35397
  /**
35368
- * Numeric Google Ads customer id. Only required when the connection has more than one.
35398
+ * Platform ad account ID (Google customer ID, digits only). Only required when the connection has more than one.
35399
+ */
35400
+ adAccountId?: string;
35401
+ /**
35402
+ * Alias of adAccountId, kept for existing callers
35403
+ * @deprecated
35369
35404
  */
35370
35405
  customerId?: string;
35371
35406
  };
@@ -36114,6 +36149,10 @@ type ListCampaignAssetsData = {
36114
36149
  };
36115
36150
  query: {
36116
36151
  accountId: string;
36152
+ adAccountId?: string;
36153
+ /**
36154
+ * @deprecated
36155
+ */
36117
36156
  customerId?: string;
36118
36157
  };
36119
36158
  };
@@ -36157,7 +36196,12 @@ type AttachCampaignAssetsData = {
36157
36196
  */
36158
36197
  accountId: string;
36159
36198
  /**
36160
- * Google customer id without dashes. Required when the connection has multiple customers.
36199
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
36200
+ */
36201
+ adAccountId?: string;
36202
+ /**
36203
+ * Alias of adAccountId, kept for existing callers
36204
+ * @deprecated
36161
36205
  */
36162
36206
  customerId?: string;
36163
36207
  sitelinks?: Array<GoogleSitelink>;
@@ -36187,7 +36231,12 @@ type UpdateCampaignAssetsData = {
36187
36231
  */
36188
36232
  accountId: string;
36189
36233
  /**
36190
- * Google customer id without dashes. Required when the connection has multiple customers.
36234
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
36235
+ */
36236
+ adAccountId?: string;
36237
+ /**
36238
+ * Alias of adAccountId, kept for existing callers
36239
+ * @deprecated
36191
36240
  */
36192
36241
  customerId?: string;
36193
36242
  updates: Array<GoogleAssetUpdate>;
@@ -36212,7 +36261,12 @@ type RemoveCampaignAssetsData = {
36212
36261
  */
36213
36262
  accountId: string;
36214
36263
  /**
36215
- * Google customer id without dashes. Required when the connection has multiple customers.
36264
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
36265
+ */
36266
+ adAccountId?: string;
36267
+ /**
36268
+ * Alias of adAccountId, kept for existing callers
36269
+ * @deprecated
36216
36270
  */
36217
36271
  customerId?: string;
36218
36272
  assetResourceNames: Array<(string)>;
@@ -36240,6 +36294,10 @@ type ListAdGroupAssetsData = {
36240
36294
  };
36241
36295
  query: {
36242
36296
  accountId: string;
36297
+ adAccountId?: string;
36298
+ /**
36299
+ * @deprecated
36300
+ */
36243
36301
  customerId?: string;
36244
36302
  };
36245
36303
  };
@@ -36283,7 +36341,12 @@ type AttachAdGroupAssetsData = {
36283
36341
  */
36284
36342
  accountId: string;
36285
36343
  /**
36286
- * Google customer id without dashes. Required when the connection has multiple customers.
36344
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
36345
+ */
36346
+ adAccountId?: string;
36347
+ /**
36348
+ * Alias of adAccountId, kept for existing callers
36349
+ * @deprecated
36287
36350
  */
36288
36351
  customerId?: string;
36289
36352
  sitelinks?: Array<GoogleSitelink>;
@@ -36313,7 +36376,12 @@ type UpdateAdGroupAssetsData = {
36313
36376
  */
36314
36377
  accountId: string;
36315
36378
  /**
36316
- * Google customer id without dashes. Required when the connection has multiple customers.
36379
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
36380
+ */
36381
+ adAccountId?: string;
36382
+ /**
36383
+ * Alias of adAccountId, kept for existing callers
36384
+ * @deprecated
36317
36385
  */
36318
36386
  customerId?: string;
36319
36387
  updates: Array<GoogleAssetUpdate>;
@@ -36338,7 +36406,12 @@ type RemoveAdGroupAssetsData = {
36338
36406
  */
36339
36407
  accountId: string;
36340
36408
  /**
36341
- * Google customer id without dashes. Required when the connection has multiple customers.
36409
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
36410
+ */
36411
+ adAccountId?: string;
36412
+ /**
36413
+ * Alias of adAccountId, kept for existing callers
36414
+ * @deprecated
36342
36415
  */
36343
36416
  customerId?: string;
36344
36417
  assetResourceNames: Array<(string)>;
@@ -36514,7 +36587,12 @@ type GenerateKeywordIdeasData = {
36514
36587
  */
36515
36588
  accountId: string;
36516
36589
  /**
36517
- * Numeric Google Ads customer id (no dashes); only needed when the connection has several accounts.
36590
+ * Platform ad account ID (Google customer ID, digits only).
36591
+ */
36592
+ adAccountId?: string;
36593
+ /**
36594
+ * Alias of adAccountId, kept for existing callers
36595
+ * @deprecated
36518
36596
  */
36519
36597
  customerId?: string;
36520
36598
  /**
@@ -36570,7 +36648,12 @@ type GenerateKeywordHistoricalMetricsData = {
36570
36648
  */
36571
36649
  accountId: string;
36572
36650
  /**
36573
- * Numeric Google Ads customer id (no dashes); only needed when the connection has several accounts.
36651
+ * Platform ad account ID (Google customer ID, digits only).
36652
+ */
36653
+ adAccountId?: string;
36654
+ /**
36655
+ * Alias of adAccountId, kept for existing callers
36656
+ * @deprecated
36574
36657
  */
36575
36658
  customerId?: string;
36576
36659
  keywords: Array<(string)>;
@@ -36623,6 +36706,10 @@ type QueryAdInsightsData = {
36623
36706
  * When actions are counted: impression, conversion or mixed.
36624
36707
  */
36625
36708
  actionReportTime?: string;
36709
+ /**
36710
+ * Google only: platform ad account ID (Google customer ID, digits only) when the connection has several Google Ads accounts.
36711
+ */
36712
+ adAccountId?: string;
36626
36713
  /**
36627
36714
  * Cursor from paging.after of the previous page.
36628
36715
  */
@@ -36632,7 +36719,8 @@ type QueryAdInsightsData = {
36632
36719
  */
36633
36720
  breakdowns?: string;
36634
36721
  /**
36635
- * Google only: numeric customer id (no dashes) when the connection has several Google Ads accounts.
36722
+ * Alias of adAccountId, kept for existing callers
36723
+ * @deprecated
36636
36724
  */
36637
36725
  customerId?: string;
36638
36726
  /**
@@ -38045,6 +38133,10 @@ type DeleteValueRuleSetError = (unknown | {
38045
38133
  type ListAdNegativeKeywordListsData = {
38046
38134
  query: {
38047
38135
  accountId: string;
38136
+ adAccountId?: string;
38137
+ /**
38138
+ * @deprecated
38139
+ */
38048
38140
  customerId?: string;
38049
38141
  platform?: 'facebook' | 'instagram' | 'tiktok' | 'linkedin' | 'pinterest' | 'google' | 'twitter' | 'openai';
38050
38142
  };
@@ -38074,7 +38166,12 @@ type CreateAdNegativeKeywordListData = {
38074
38166
  */
38075
38167
  accountId: string;
38076
38168
  /**
38077
- * Connected Google Ads customer id, without dashes. Required when the connection has multiple customers.
38169
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
38170
+ */
38171
+ adAccountId?: string;
38172
+ /**
38173
+ * Alias of adAccountId, kept for existing callers
38174
+ * @deprecated
38078
38175
  */
38079
38176
  customerId?: string;
38080
38177
  /**
@@ -38118,6 +38215,10 @@ type GetAdNegativeKeywordListData = {
38118
38215
  };
38119
38216
  query: {
38120
38217
  accountId: string;
38218
+ adAccountId?: string;
38219
+ /**
38220
+ * @deprecated
38221
+ */
38121
38222
  customerId?: string;
38122
38223
  platform?: 'facebook' | 'instagram' | 'tiktok' | 'linkedin' | 'pinterest' | 'google' | 'twitter' | 'openai';
38123
38224
  };
@@ -38149,7 +38250,12 @@ type UpdateAdNegativeKeywordListData = {
38149
38250
  */
38150
38251
  accountId: string;
38151
38252
  /**
38152
- * Connected Google Ads customer id, without dashes. Required when the connection has multiple customers.
38253
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
38254
+ */
38255
+ adAccountId?: string;
38256
+ /**
38257
+ * Alias of adAccountId, kept for existing callers
38258
+ * @deprecated
38153
38259
  */
38154
38260
  customerId?: string;
38155
38261
  /**
@@ -38181,6 +38287,10 @@ type DeleteAdNegativeKeywordListData = {
38181
38287
  };
38182
38288
  query: {
38183
38289
  accountId: string;
38290
+ adAccountId?: string;
38291
+ /**
38292
+ * @deprecated
38293
+ */
38184
38294
  customerId?: string;
38185
38295
  platform?: 'facebook' | 'instagram' | 'tiktok' | 'linkedin' | 'pinterest' | 'google' | 'twitter' | 'openai';
38186
38296
  };
@@ -38202,7 +38312,12 @@ type ReplaceAdNegativeKeywordListKeywordsData = {
38202
38312
  */
38203
38313
  accountId: string;
38204
38314
  /**
38205
- * Connected Google Ads customer id, without dashes. Required when the connection has multiple customers.
38315
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
38316
+ */
38317
+ adAccountId?: string;
38318
+ /**
38319
+ * Alias of adAccountId, kept for existing callers
38320
+ * @deprecated
38206
38321
  */
38207
38322
  customerId?: string;
38208
38323
  /**
@@ -38293,6 +38408,10 @@ type ReplaceCampaignNegativeKeywordListsError = (ErrorResponse | {
38293
38408
  type ListAccountCalloutsData = {
38294
38409
  query: {
38295
38410
  accountId: string;
38411
+ adAccountId?: string;
38412
+ /**
38413
+ * @deprecated
38414
+ */
38296
38415
  customerId?: string;
38297
38416
  };
38298
38417
  };
@@ -38322,7 +38441,12 @@ type AddAccountCalloutsData = {
38322
38441
  */
38323
38442
  accountId: string;
38324
38443
  /**
38325
- * Google customer id without dashes. Required when the connection has multiple customers.
38444
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
38445
+ */
38446
+ adAccountId?: string;
38447
+ /**
38448
+ * Alias of adAccountId, kept for existing callers
38449
+ * @deprecated
38326
38450
  */
38327
38451
  customerId?: string;
38328
38452
  callouts: Array<(string)>;
@@ -38345,7 +38469,12 @@ type UpdateAccountCalloutsData = {
38345
38469
  */
38346
38470
  accountId: string;
38347
38471
  /**
38348
- * Google customer id without dashes. Required when the connection has multiple customers.
38472
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
38473
+ */
38474
+ adAccountId?: string;
38475
+ /**
38476
+ * Alias of adAccountId, kept for existing callers
38477
+ * @deprecated
38349
38478
  */
38350
38479
  customerId?: string;
38351
38480
  updates: Array<{
@@ -38373,7 +38502,12 @@ type RemoveAccountCalloutData = {
38373
38502
  */
38374
38503
  accountId: string;
38375
38504
  /**
38376
- * Google customer id without dashes. Required when the connection has multiple customers.
38505
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
38506
+ */
38507
+ adAccountId?: string;
38508
+ /**
38509
+ * Alias of adAccountId, kept for existing callers
38510
+ * @deprecated
38377
38511
  */
38378
38512
  customerId?: string;
38379
38513
  assetId: string;
@@ -38389,6 +38523,10 @@ type RemoveAccountCalloutError = (ErrorResponse | {
38389
38523
  type ListAccountSitelinksData = {
38390
38524
  query: {
38391
38525
  accountId: string;
38526
+ adAccountId?: string;
38527
+ /**
38528
+ * @deprecated
38529
+ */
38392
38530
  customerId?: string;
38393
38531
  };
38394
38532
  };
@@ -38423,7 +38561,12 @@ type AddAccountSitelinksData = {
38423
38561
  */
38424
38562
  accountId: string;
38425
38563
  /**
38426
- * Google customer id without dashes. Required when the connection has multiple customers.
38564
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
38565
+ */
38566
+ adAccountId?: string;
38567
+ /**
38568
+ * Alias of adAccountId, kept for existing callers
38569
+ * @deprecated
38427
38570
  */
38428
38571
  customerId?: string;
38429
38572
  sitelinks: Array<GoogleSitelink>;
@@ -38449,7 +38592,12 @@ type UpdateAccountSitelinksData = {
38449
38592
  */
38450
38593
  accountId: string;
38451
38594
  /**
38452
- * Google customer id without dashes. Required when the connection has multiple customers.
38595
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
38596
+ */
38597
+ adAccountId?: string;
38598
+ /**
38599
+ * Alias of adAccountId, kept for existing callers
38600
+ * @deprecated
38453
38601
  */
38454
38602
  customerId?: string;
38455
38603
  updates: Array<{
@@ -38484,7 +38632,12 @@ type RemoveAccountSitelinkData = {
38484
38632
  */
38485
38633
  accountId: string;
38486
38634
  /**
38487
- * Google customer id without dashes. Required when the connection has multiple customers.
38635
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
38636
+ */
38637
+ adAccountId?: string;
38638
+ /**
38639
+ * Alias of adAccountId, kept for existing callers
38640
+ * @deprecated
38488
38641
  */
38489
38642
  customerId?: string;
38490
38643
  assetId: string;
@@ -38500,6 +38653,10 @@ type RemoveAccountSitelinkError = (ErrorResponse | {
38500
38653
  type ListAccountStructuredSnippetsData = {
38501
38654
  query: {
38502
38655
  accountId: string;
38656
+ adAccountId?: string;
38657
+ /**
38658
+ * @deprecated
38659
+ */
38503
38660
  customerId?: string;
38504
38661
  };
38505
38662
  };
@@ -38532,7 +38689,12 @@ type AddAccountStructuredSnippetsData = {
38532
38689
  */
38533
38690
  accountId: string;
38534
38691
  /**
38535
- * Google customer id without dashes. Required when the connection has multiple customers.
38692
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
38693
+ */
38694
+ adAccountId?: string;
38695
+ /**
38696
+ * Alias of adAccountId, kept for existing callers
38697
+ * @deprecated
38536
38698
  */
38537
38699
  customerId?: string;
38538
38700
  structuredSnippets: Array<GoogleStructuredSnippet>;
@@ -38556,7 +38718,12 @@ type UpdateAccountStructuredSnippetsData = {
38556
38718
  */
38557
38719
  accountId: string;
38558
38720
  /**
38559
- * Google customer id without dashes. Required when the connection has multiple customers.
38721
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
38722
+ */
38723
+ adAccountId?: string;
38724
+ /**
38725
+ * Alias of adAccountId, kept for existing callers
38726
+ * @deprecated
38560
38727
  */
38561
38728
  customerId?: string;
38562
38729
  updates: Array<{
@@ -38582,7 +38749,12 @@ type RemoveAccountStructuredSnippetData = {
38582
38749
  */
38583
38750
  accountId: string;
38584
38751
  /**
38585
- * Google customer id without dashes. Required when the connection has multiple customers.
38752
+ * Platform ad account ID (Google customer ID, digits only). Required when the connection has multiple customers.
38753
+ */
38754
+ adAccountId?: string;
38755
+ /**
38756
+ * Alias of adAccountId, kept for existing callers
38757
+ * @deprecated
38586
38758
  */
38587
38759
  customerId?: string;
38588
38760
  assetId: string;
@@ -42481,7 +42653,12 @@ type ListConversionActionsData = {
42481
42653
  */
42482
42654
  accountId: string;
42483
42655
  /**
42484
- * Google Ads customer id (digits only). Resolved automatically when the connection has exactly one accessible customer.
42656
+ * Platform ad account ID (Google customer ID, digits only). Resolved automatically when the connection has exactly one accessible customer.
42657
+ */
42658
+ adAccountId?: string;
42659
+ /**
42660
+ * Alias of adAccountId, kept for existing callers
42661
+ * @deprecated
42485
42662
  */
42486
42663
  customerId?: string;
42487
42664
  /**
@@ -42515,7 +42692,12 @@ type CreateConversionActionData = {
42515
42692
  */
42516
42693
  accountId: string;
42517
42694
  /**
42518
- * Google Ads customer id (digits only). Resolved automatically when the connection has exactly one accessible customer.
42695
+ * Platform ad account ID (Google customer ID, digits only). Resolved automatically when the connection has exactly one accessible customer.
42696
+ */
42697
+ adAccountId?: string;
42698
+ /**
42699
+ * Alias of adAccountId, kept for existing callers
42700
+ * @deprecated
42519
42701
  */
42520
42702
  customerId?: string;
42521
42703
  name: string;
@@ -44712,7 +44894,12 @@ type ListTikTokAdPixelsData = {
44712
44894
  */
44713
44895
  accountId: string;
44714
44896
  /**
44715
- * Advertiser belonging to this connection.
44897
+ * Platform ad account ID (TikTok advertiser id, digits only). Defaults to the first advertiser on the connection.
44898
+ */
44899
+ adAccountId?: string;
44900
+ /**
44901
+ * Alias of adAccountId, kept for existing callers
44902
+ * @deprecated
44716
44903
  */
44717
44904
  advertiserId?: string;
44718
44905
  /**