@maxim_mazurok/gapi.client.dfareporting-v4 0.1.20260211 → 0.1.20260213
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 +6 -10
- package/package.json +1 -1
- package/readme.md +3 -3
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://dfareporting.googleapis.com/$discovery/rest?version=v4
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260213
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1606,7 +1606,7 @@ declare namespace gapi.client {
|
|
|
1606
1606
|
quantity?: number;
|
|
1607
1607
|
}
|
|
1608
1608
|
interface DynamicProfileGenerateCodeResponse {
|
|
1609
|
-
/** Generated code for the dynamic profile. */
|
|
1609
|
+
/** Generated code for the dynamic profile. The code will need to be unescaped. */
|
|
1610
1610
|
code?: string;
|
|
1611
1611
|
}
|
|
1612
1612
|
interface DynamicProfileVersion {
|
|
@@ -3366,14 +3366,12 @@ declare namespace gapi.client {
|
|
|
3366
3366
|
interface StudioCreative {
|
|
3367
3367
|
/** List of assets associated with this studio creative. It is a required field on insertion. */
|
|
3368
3368
|
assetIds?: string[];
|
|
3369
|
-
/** Backup image asset ID of this studio creative. */
|
|
3369
|
+
/** Backup image asset ID of this studio creative. It is a required field on insertion. */
|
|
3370
3370
|
backupImageAssetId?: string;
|
|
3371
3371
|
/** The timestamp when the studio creative was created. This is a read-only, auto-generated field. */
|
|
3372
3372
|
createdInfo?: LastModifiedInfo;
|
|
3373
3373
|
/** Dimension of this studio creative. This is a required field on insertion if format is BANNER or EXPANDING. */
|
|
3374
3374
|
dimension?: StudioCreativeDimension;
|
|
3375
|
-
/** Optional. Duration of this studio creative in seconds. */
|
|
3376
|
-
durationSeconds?: number;
|
|
3377
3375
|
/** Dynamic profile ID of this studio creative. */
|
|
3378
3376
|
dynamicProfileId?: string;
|
|
3379
3377
|
/** Format of this studio creative. This is a required field on insertion. */
|
|
@@ -3384,8 +3382,6 @@ declare namespace gapi.client {
|
|
|
3384
3382
|
lastModifiedInfo?: LastModifiedInfo;
|
|
3385
3383
|
/** Identifier. Name of this studio creative. This is a required field on insertion. */
|
|
3386
3384
|
name?: string;
|
|
3387
|
-
/** Optional. LINT.ThenChange( //depot/google3/ads/richmedia/studio/proto/stubby/creative.proto:orientation, //depot/google3/ads/xfa/proto/api/enum.proto:orientation, //depot/google3/java/com/google/ads/richmedia/studio/domain/model/converter/CreativeConverter.java:orientation ) Orientation of this studio creative. */
|
|
3388
|
-
orientation?: string;
|
|
3389
3385
|
/** Output only. Status of this studio creative. It is a read-only field. */
|
|
3390
3386
|
status?: string;
|
|
3391
3387
|
/** Studio account ID of this creative. This field, if left unset, will be auto-populated. */
|
|
@@ -8226,7 +8222,7 @@ declare namespace gapi.client {
|
|
|
8226
8222
|
},
|
|
8227
8223
|
body: DynamicFeedsInsertRequest,
|
|
8228
8224
|
): Request<DynamicFeed>;
|
|
8229
|
-
/** Retransforms a dynamic feed. */
|
|
8225
|
+
/** Retransforms a dynamic feed. Only draft feeds can be retransformed (i.e. the feed has not been published). */
|
|
8230
8226
|
retransform(request?: {
|
|
8231
8227
|
/** V1 error format. */
|
|
8232
8228
|
'$.xgafv'?: string;
|
|
@@ -8253,7 +8249,7 @@ declare namespace gapi.client {
|
|
|
8253
8249
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8254
8250
|
uploadType?: string;
|
|
8255
8251
|
}): Request<DynamicFeed>;
|
|
8256
|
-
/** Updates a new dynamic feed. */
|
|
8252
|
+
/** Updates a new dynamic feed. For draft feeds, only Element can be updated. For published feeds, only FeedSchedule can be updated. Other fields will be ignored. */
|
|
8257
8253
|
update(request: {
|
|
8258
8254
|
/** V1 error format. */
|
|
8259
8255
|
'$.xgafv'?: string;
|
|
@@ -8309,7 +8305,7 @@ declare namespace gapi.client {
|
|
|
8309
8305
|
): Request<DynamicFeed>;
|
|
8310
8306
|
}
|
|
8311
8307
|
interface DynamicProfilesResource {
|
|
8312
|
-
/** Generates code for a dynamic profile. */
|
|
8308
|
+
/** Generates code for a dynamic profile, which will need unescaping. */
|
|
8313
8309
|
generateCode(request?: {
|
|
8314
8310
|
/** V1 error format. */
|
|
8315
8311
|
'$.xgafv'?: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -708,19 +708,19 @@ Inserts a new dynamic feed.
|
|
|
708
708
|
await gapi.client.dfareporting.dynamicFeeds.insert({});
|
|
709
709
|
|
|
710
710
|
/*
|
|
711
|
-
Retransforms a dynamic feed.
|
|
711
|
+
Retransforms a dynamic feed. Only draft feeds can be retransformed (i.e. the feed has not been published).
|
|
712
712
|
*/
|
|
713
713
|
await gapi.client.dfareporting.dynamicFeeds.retransform({
|
|
714
714
|
dynamicFeedId: 'dynamicFeedId',
|
|
715
715
|
});
|
|
716
716
|
|
|
717
717
|
/*
|
|
718
|
-
Updates a new dynamic feed.
|
|
718
|
+
Updates a new dynamic feed. For draft feeds, only Element can be updated. For published feeds, only FeedSchedule can be updated. Other fields will be ignored.
|
|
719
719
|
*/
|
|
720
720
|
await gapi.client.dfareporting.dynamicFeeds.update({});
|
|
721
721
|
|
|
722
722
|
/*
|
|
723
|
-
Generates code for a dynamic profile.
|
|
723
|
+
Generates code for a dynamic profile, which will need unescaping.
|
|
724
724
|
*/
|
|
725
725
|
await gapi.client.dfareporting.dynamicProfiles.generateCode({
|
|
726
726
|
dynamicProfileId: 'dynamicProfileId',
|