@maxim_mazurok/gapi.client.displayvideo-v3 0.8.20260708 → 0.8.20260720
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/index.d.ts +19 -10
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://displayvideo.googleapis.com/$discovery/rest?version=v3
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260720
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -518,6 +518,10 @@ declare namespace gapi.client {
|
|
|
518
518
|
creativeConfig?: AdvertiserCreativeConfig;
|
|
519
519
|
/** Settings that control how advertiser data may be accessed. */
|
|
520
520
|
dataAccessConfig?: AdvertiserDataAccessConfig;
|
|
521
|
+
/** Optional. The default business name for the advertiser. This is the value used by YouTube and Demand Gen ads under this advertiser if a business name is not provided. */
|
|
522
|
+
defaultBusinessName?: string;
|
|
523
|
+
/** Optional. The asset ID of the default logo image for the advertiser. This is the asset ID that will be used by YouTube and Demand ads under this advertiser if a logo asset is not provided. You must use advertisers.adAssets.upload to upload this asset using the API. */
|
|
524
|
+
defaultLogoAssetId?: string;
|
|
521
525
|
/** Required. The display name of the advertiser. Must be UTF-8 encoded with a maximum size of 240 bytes. */
|
|
522
526
|
displayName?: string;
|
|
523
527
|
/** Required. Controls whether or not insertion orders and line items of the advertiser can spend their budgets and bid on inventory. * Accepted values are `ENTITY_STATUS_ACTIVE`, `ENTITY_STATUS_PAUSED` and `ENTITY_STATUS_SCHEDULED_FOR_DELETION`. * If set to `ENTITY_STATUS_SCHEDULED_FOR_DELETION`, the advertiser will be deleted 30 days from when it was first scheduled for deletion. */
|
|
@@ -2083,6 +2087,11 @@ declare namespace gapi.client {
|
|
|
2083
2087
|
skipOffset?: AudioVideoOffset;
|
|
2084
2088
|
/** Optional. Whether the user can choose to skip a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO` */
|
|
2085
2089
|
skippable?: boolean;
|
|
2090
|
+
/** Optional. Whether the creative contains synthetic content or was created using AI. */
|
|
2091
|
+
syntheticContentAttestationStatus?:
|
|
2092
|
+
| 'SYNTHETIC_CONTENT_ATTESTATION_STATUS_UNSPECIFIED'
|
|
2093
|
+
| 'NOT_SYNTHETIC'
|
|
2094
|
+
| 'IS_SYNTHETIC';
|
|
2086
2095
|
/** Optional. The original third-party tag used for the creative. Required and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` */
|
|
2087
2096
|
thirdPartyTag?: string;
|
|
2088
2097
|
/** Optional. Tracking URLs from third parties to track interactions with a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO` */
|
|
@@ -2371,7 +2380,7 @@ declare namespace gapi.client {
|
|
|
2371
2380
|
value?: string;
|
|
2372
2381
|
}
|
|
2373
2382
|
interface DemandGenCarouselAd {
|
|
2374
|
-
/**
|
|
2383
|
+
/** Optional. The business name shown on the ad. This setting is required unless a default value is set at the advertiser level. If left unset, the default value will be applied. */
|
|
2375
2384
|
businessName?: string;
|
|
2376
2385
|
/** Required. The list of cards shown on the ad. */
|
|
2377
2386
|
cards?: CarouselCard[];
|
|
@@ -2385,7 +2394,7 @@ declare namespace gapi.client {
|
|
|
2385
2394
|
finalUrlSuffix?: string;
|
|
2386
2395
|
/** Required. The headline of the ad. */
|
|
2387
2396
|
headline?: string;
|
|
2388
|
-
/**
|
|
2397
|
+
/** Optional. The logo image used by this ad. This setting is required unless a default value is set at the advertiser level. If left unset, the default value will be applied. */
|
|
2389
2398
|
logo?: ImageAsset;
|
|
2390
2399
|
/** Output only. The URL address loaded in the background for tracking purposes. */
|
|
2391
2400
|
trackingUrl?: string;
|
|
@@ -2393,7 +2402,7 @@ declare namespace gapi.client {
|
|
|
2393
2402
|
userSpecifiedTrackingUrl?: string;
|
|
2394
2403
|
}
|
|
2395
2404
|
interface DemandGenImageAd {
|
|
2396
|
-
/**
|
|
2405
|
+
/** Optional. The business name shown on the ad. This setting is required unless a default value is set at the advertiser level. If left unset, the default value will be applied. */
|
|
2397
2406
|
businessName?: string;
|
|
2398
2407
|
/** Required. The call-to-action button shown on the ad. */
|
|
2399
2408
|
callToAction?: string;
|
|
@@ -2409,7 +2418,7 @@ declare namespace gapi.client {
|
|
|
2409
2418
|
finalUrlSuffix?: string;
|
|
2410
2419
|
/** Required. The list of headlines shown on the ad. */
|
|
2411
2420
|
headlines?: string[];
|
|
2412
|
-
/** The list of logo images shown on the ad.
|
|
2421
|
+
/** The list of logo images shown on the ad. This setting is required unless a default value is set at the advertiser level. If left unset, the default value will be applied. */
|
|
2413
2422
|
logoImages?: ImageAsset[];
|
|
2414
2423
|
/** The list of marketing images shown on the ad. */
|
|
2415
2424
|
marketingImages?: ImageAsset[];
|
|
@@ -2423,7 +2432,7 @@ declare namespace gapi.client {
|
|
|
2423
2432
|
userSpecifiedTrackingUrl?: string;
|
|
2424
2433
|
}
|
|
2425
2434
|
interface DemandGenProductAd {
|
|
2426
|
-
/**
|
|
2435
|
+
/** Optional. The business name shown on the ad. This setting is required unless a default value is set at the advertiser level. If left unset, the default value will be applied. */
|
|
2427
2436
|
businessName?: string;
|
|
2428
2437
|
/** Required. The call-to-action button shown on the ad. The supported values are: * `AUTOMATED` * `APPLY_NOW` * `BOOK_NOW` * `CONTACT_US` * `DOWNLOAD` * `GET_QUOTE` * `LEARN_MORE` * `SHOP_NOW` * `SIGN_UP` * `SUBSCRIBE` */
|
|
2429
2438
|
callToAction?:
|
|
@@ -2460,7 +2469,7 @@ declare namespace gapi.client {
|
|
|
2460
2469
|
finalUrlSuffix?: string;
|
|
2461
2470
|
/** Required. The headline of the ad. */
|
|
2462
2471
|
headline?: string;
|
|
2463
|
-
/**
|
|
2472
|
+
/** Optional. The logo image used by this ad. This setting is required unless a default value is set at the advertiser level. If left unset, the default value will be applied. */
|
|
2464
2473
|
logo?: ImageAsset;
|
|
2465
2474
|
/** Output only. The URL address loaded in the background for tracking purposes. */
|
|
2466
2475
|
trackingUrl?: string;
|
|
@@ -2476,7 +2485,7 @@ declare namespace gapi.client {
|
|
|
2476
2485
|
thirdPartyMeasurementConfigs?: ThirdPartyMeasurementConfigs;
|
|
2477
2486
|
}
|
|
2478
2487
|
interface DemandGenVideoAd {
|
|
2479
|
-
/**
|
|
2488
|
+
/** Optional. The business name shown on the ad. This setting is required unless a default value is set at the advertiser level. If left unset, the default value will be applied. */
|
|
2480
2489
|
businessName?: string;
|
|
2481
2490
|
/** Required. The call-to-action button shown on the ad. The supported values are: * `AUTOMATED` * `LEARN_MORE` * `GET_QUOTE` * `APPLY_NOW` * `SIGN_UP` * `CONTACT_US` * `SUBSCRIBE` * `DOWNLOAD` * `BOOK_NOW` * `SHOP_NOW` * `BUY_NOW` * `DONATE_NOW` * `ORDER_NOW` * `PLAY_NOW` * `SEE_MORE` * `START_NOW` * `VISIT_SITE` * `WATCH_NOW` */
|
|
2482
2491
|
callToAction?:
|
|
@@ -2517,7 +2526,7 @@ declare namespace gapi.client {
|
|
|
2517
2526
|
finalUrlSuffix?: string;
|
|
2518
2527
|
/** Required. The list of headlines shown on the ad. */
|
|
2519
2528
|
headlines?: string[];
|
|
2520
|
-
/**
|
|
2529
|
+
/** Optional. The logo image used by this ad. This setting is required unless a default value is set at the advertiser level. If left unset, the default value will be applied. */
|
|
2521
2530
|
logo?: ImageAsset;
|
|
2522
2531
|
/** Required. The list of long headlines shown on the ad. */
|
|
2523
2532
|
longHeadlines?: string[];
|
|
@@ -5119,7 +5128,7 @@ declare namespace gapi.client {
|
|
|
5119
5128
|
viewabilityDetails?: ViewabilityTargetingOptionDetails;
|
|
5120
5129
|
}
|
|
5121
5130
|
interface ThirdPartyMeasurementConfigs {
|
|
5122
|
-
/** Optional. The third-party vendors measuring brand lift. The following third-party vendors are applicable: * `THIRD_PARTY_VENDOR_DYNATA` * `THIRD_PARTY_VENDOR_KANTAR` * `THIRD_PARTY_VENDOR_INTAGE` * `
|
|
5131
|
+
/** Optional. The third-party vendors measuring brand lift. The following third-party vendors are applicable: * `THIRD_PARTY_VENDOR_DYNATA` * `THIRD_PARTY_VENDOR_KANTAR` * `THIRD_PARTY_VENDOR_INTAGE` * `THIRD_PARTY_VENDOR_MACROMILL` */
|
|
5123
5132
|
brandLiftVendorConfigs?: ThirdPartyVendorConfig[];
|
|
5124
5133
|
/** Optional. The third-party vendors measuring brand safety. The following third-party vendors are applicable: * `THIRD_PARTY_VENDOR_ZEFR` * `THIRD_PARTY_VENDOR_DOUBLE_VERIFY` * `THIRD_PARTY_VENDOR_INTEGRAL_AD_SCIENCE` */
|
|
5125
5134
|
brandSafetyVendorConfigs?: ThirdPartyVendorConfig[];
|