@maxim_mazurok/gapi.client.displayvideo-v4 0.0.20250819 → 0.2.20250819
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 +8 -0
- package/package.json +1 -1
- package/readme.md +2 -0
package/index.d.ts
CHANGED
|
@@ -143,6 +143,8 @@ declare namespace gapi.client {
|
|
|
143
143
|
advertiserId?: string;
|
|
144
144
|
/** Required. Billing related settings of the advertiser. */
|
|
145
145
|
billingConfig?: AdvertiserBillingConfig;
|
|
146
|
+
/** Optional. Whether this advertiser contains line items that serve European Union political ads. If this field is set to `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING`, then the following will happen: * Any new line items created under this advertiser will be assigned `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` if not otherwise specified. * Any existing line items under this advertiser that do not have a set value be updated to `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` within a day. */
|
|
147
|
+
containsEuPoliticalAds?: string;
|
|
146
148
|
/** Required. Creative related settings of the advertiser. */
|
|
147
149
|
creativeConfig?: AdvertiserCreativeConfig;
|
|
148
150
|
/** Settings that control how advertiser data may be accessed. */
|
|
@@ -1367,6 +1369,8 @@ declare namespace gapi.client {
|
|
|
1367
1369
|
videoViewableRate?: string;
|
|
1368
1370
|
}
|
|
1369
1371
|
interface DuplicateLineItemRequest {
|
|
1372
|
+
/** Whether this line item will serve European Union political ads. If contains_eu_political_ads has been set to `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` in the parent advertiser, then this field will be assigned `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` if not otherwise specified. This field can then be updated using the UI, API, or Structured Data Files. *Warning*: Starting **September 8, 2025**, this field must be set. If not, either the value `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` will be assigned to the line item if the parent advertiser has declared that it does not serve EU political ads, or **the request will fail**. */
|
|
1373
|
+
containsEuPoliticalAds?: string;
|
|
1370
1374
|
/** The display name of the new line item. Must be UTF-8 encoded with a maximum size of 240 bytes. */
|
|
1371
1375
|
targetDisplayName?: string;
|
|
1372
1376
|
}
|
|
@@ -1574,6 +1578,8 @@ declare namespace gapi.client {
|
|
|
1574
1578
|
gender?: string;
|
|
1575
1579
|
}
|
|
1576
1580
|
interface GenerateDefaultLineItemRequest {
|
|
1581
|
+
/** Whether this line item will serve European Union political ads. If contains_eu_political_ads has been set to `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` in the parent advertiser, then this field will be assigned `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` if not otherwise specified. This field can then be updated using the UI, API, or Structured Data Files. *Warning*: Starting **September 8, 2025**, this field must be set. If not, either the value `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` will be assigned to the line item if the parent advertiser has declared that it does not serve EU political ads, or **the request will fail**. */
|
|
1582
|
+
containsEuPoliticalAds?: string;
|
|
1577
1583
|
/** Required. The display name of the line item. Must be UTF-8 encoded with a maximum size of 240 bytes. */
|
|
1578
1584
|
displayName?: string;
|
|
1579
1585
|
/** Required. The unique ID of the insertion order that the line item belongs to. */
|
|
@@ -1970,6 +1976,8 @@ declare namespace gapi.client {
|
|
|
1970
1976
|
budget?: LineItemBudget;
|
|
1971
1977
|
/** Output only. The unique ID of the campaign that the line item belongs to. */
|
|
1972
1978
|
campaignId?: string;
|
|
1979
|
+
/** Whether this line item will serve European Union political ads. If contains_eu_political_ads has been set to `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` in the parent advertiser, then this field will be assigned `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` if not otherwise specified. This field can then be updated using the UI, API, or Structured Data Files. *Warning*: Starting **September 8, 2025**, this field must be set when creating a new line item. If not, either the value `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` will be assigned if the parent advertiser has declared that it does not serve EU political ads, or **the `advertisers.lineItems.create` request will fail**. */
|
|
1980
|
+
containsEuPoliticalAds?: string;
|
|
1973
1981
|
/** The conversion tracking setting of the line item. */
|
|
1974
1982
|
conversionCounting?: ConversionCountingConfig;
|
|
1975
1983
|
/** The IDs of the creatives associated with the line item. */
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -402,3 +402,5 @@ Updates an existing user. Returns the updated user if successful. This method ha
|
|
|
402
402
|
*/
|
|
403
403
|
await gapi.client.displayvideo.users.patch({userId: 'userId'});
|
|
404
404
|
```
|
|
405
|
+
|
|
406
|
+
For provenance information see [Provenance section on NPM](https://www.npmjs.com/package/@maxim_mazurok/gapi.client.displayvideo-v4#Provenance:~:text=none-,Provenance,-Built%20and%20signed)
|