@maxim_mazurok/gapi.client.adsenseplatform-v1alpha 0.0.20250107 → 0.0.20250109
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 +38 -1
- 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://adsenseplatform.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250109
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -89,6 +89,12 @@ declare namespace gapi.client {
|
|
|
89
89
|
/** Continuation token used to page through accounts. To retrieve the next page of the results, set the next request's "page_token" value to this. */
|
|
90
90
|
nextPageToken?: string;
|
|
91
91
|
}
|
|
92
|
+
interface ListPlatformsResponse {
|
|
93
|
+
/** Continuation token used to page through platforms. To retrieve the next page of the results, set the next request's "page_token" value to this. */
|
|
94
|
+
nextPageToken?: string;
|
|
95
|
+
/** The platforms returned in this list response. */
|
|
96
|
+
platforms?: Platform[];
|
|
97
|
+
}
|
|
92
98
|
interface ListSitesResponse {
|
|
93
99
|
/** Continuation token used to page through sites. To retrieve the next page of the results, set the next request's "page_token" value to this. */
|
|
94
100
|
nextPageToken?: string;
|
|
@@ -150,6 +156,37 @@ declare namespace gapi.client {
|
|
|
150
156
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
151
157
|
uploadType?: string;
|
|
152
158
|
}): Request<Platform>;
|
|
159
|
+
/** Lists platforms for a specified account. */
|
|
160
|
+
list(request?: {
|
|
161
|
+
/** V1 error format. */
|
|
162
|
+
'$.xgafv'?: string;
|
|
163
|
+
/** OAuth access token. */
|
|
164
|
+
access_token?: string;
|
|
165
|
+
/** Data format for response. */
|
|
166
|
+
alt?: string;
|
|
167
|
+
/** JSONP */
|
|
168
|
+
callback?: string;
|
|
169
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
170
|
+
fields?: string;
|
|
171
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
172
|
+
key?: string;
|
|
173
|
+
/** OAuth 2.0 token for the current user. */
|
|
174
|
+
oauth_token?: string;
|
|
175
|
+
/** Optional. The maximum number of platforms to include in the response, used for paging. If unspecified, at most 10000 platforms will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */
|
|
176
|
+
pageSize?: number;
|
|
177
|
+
/** Optional. A page token, received from a previous `ListPlatforms` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListPlatforms` must match the call that provided the page token. */
|
|
178
|
+
pageToken?: string;
|
|
179
|
+
/** Required. The account which owns the platforms. Format: accounts/{account} */
|
|
180
|
+
parent: string;
|
|
181
|
+
/** Returns response with indentations and line breaks. */
|
|
182
|
+
prettyPrint?: boolean;
|
|
183
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
184
|
+
quotaUser?: string;
|
|
185
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
186
|
+
upload_protocol?: string;
|
|
187
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
188
|
+
uploadType?: string;
|
|
189
|
+
}): Request<ListPlatformsResponse>;
|
|
153
190
|
}
|
|
154
191
|
interface AccountsResource {
|
|
155
192
|
platforms: PlatformsResource;
|