@maxim_mazurok/gapi.client.dfareporting-v5 0.0.20260211 → 0.0.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=v5
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260213
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1580,7 +1580,7 @@ declare namespace gapi.client {
|
|
|
1580
1580
|
quantity?: number;
|
|
1581
1581
|
}
|
|
1582
1582
|
interface DynamicProfileGenerateCodeResponse {
|
|
1583
|
-
/** Generated code for the dynamic profile. */
|
|
1583
|
+
/** Generated code for the dynamic profile. The code will need to be unescaped. */
|
|
1584
1584
|
code?: string;
|
|
1585
1585
|
}
|
|
1586
1586
|
interface DynamicProfileVersion {
|
|
@@ -3131,14 +3131,12 @@ declare namespace gapi.client {
|
|
|
3131
3131
|
interface StudioCreative {
|
|
3132
3132
|
/** List of assets associated with this studio creative. It is a required field on insertion. */
|
|
3133
3133
|
assetIds?: string[];
|
|
3134
|
-
/** Backup image asset ID of this studio creative. */
|
|
3134
|
+
/** Backup image asset ID of this studio creative. It is a required field on insertion. */
|
|
3135
3135
|
backupImageAssetId?: string;
|
|
3136
3136
|
/** The timestamp when the studio creative was created. This is a read-only, auto-generated field. */
|
|
3137
3137
|
createdInfo?: LastModifiedInfo;
|
|
3138
3138
|
/** Dimension of this studio creative. This is a required field on insertion if format is BANNER or EXPANDING. */
|
|
3139
3139
|
dimension?: StudioCreativeDimension;
|
|
3140
|
-
/** Optional. Duration of this studio creative in seconds. */
|
|
3141
|
-
durationSeconds?: number;
|
|
3142
3140
|
/** Dynamic profile ID of this studio creative. */
|
|
3143
3141
|
dynamicProfileId?: string;
|
|
3144
3142
|
/** Format of this studio creative. This is a required field on insertion. */
|
|
@@ -3149,8 +3147,6 @@ declare namespace gapi.client {
|
|
|
3149
3147
|
lastModifiedInfo?: LastModifiedInfo;
|
|
3150
3148
|
/** Identifier. Name of this studio creative. This is a required field on insertion. */
|
|
3151
3149
|
name?: string;
|
|
3152
|
-
/** 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. */
|
|
3153
|
-
orientation?: string;
|
|
3154
3150
|
/** Output only. Status of this studio creative. It is a read-only field. */
|
|
3155
3151
|
status?: string;
|
|
3156
3152
|
/** Studio account ID of this creative. This field, if left unset, will be auto-populated. */
|
|
@@ -7991,7 +7987,7 @@ declare namespace gapi.client {
|
|
|
7991
7987
|
},
|
|
7992
7988
|
body: DynamicFeedsInsertRequest,
|
|
7993
7989
|
): Request<DynamicFeed>;
|
|
7994
|
-
/** Retransforms a dynamic feed. */
|
|
7990
|
+
/** Retransforms a dynamic feed. Only draft feeds can be retransformed (i.e. the feed has not been published). */
|
|
7995
7991
|
retransform(request?: {
|
|
7996
7992
|
/** V1 error format. */
|
|
7997
7993
|
'$.xgafv'?: string;
|
|
@@ -8018,7 +8014,7 @@ declare namespace gapi.client {
|
|
|
8018
8014
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8019
8015
|
uploadType?: string;
|
|
8020
8016
|
}): Request<DynamicFeed>;
|
|
8021
|
-
/** Updates a new dynamic feed. */
|
|
8017
|
+
/** 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. */
|
|
8022
8018
|
update(request: {
|
|
8023
8019
|
/** V1 error format. */
|
|
8024
8020
|
'$.xgafv'?: string;
|
|
@@ -8074,7 +8070,7 @@ declare namespace gapi.client {
|
|
|
8074
8070
|
): Request<DynamicFeed>;
|
|
8075
8071
|
}
|
|
8076
8072
|
interface DynamicProfilesResource {
|
|
8077
|
-
/** Generates code for a dynamic profile. */
|
|
8073
|
+
/** Generates code for a dynamic profile, which will need unescaping. */
|
|
8078
8074
|
generateCode(request?: {
|
|
8079
8075
|
/** V1 error format. */
|
|
8080
8076
|
'$.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',
|