@maxim_mazurok/gapi.client.gmailpostmastertools-v2 0.1.20260623 → 0.2.20260628
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 +9 -31
- 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://gmailpostmastertools.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260628
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -84,11 +84,7 @@ declare namespace gapi.client {
|
|
|
84
84
|
interface CreateUserRequest {
|
|
85
85
|
/** Optional. Specifies the permission level to give the user for the specified domain. If not specified, the default value for this field is READER. */
|
|
86
86
|
permission?:
|
|
87
|
-
| '
|
|
88
|
-
| 'READER'
|
|
89
|
-
| 'ADMIN'
|
|
90
|
-
| 'OWNER'
|
|
91
|
-
| 'NONE';
|
|
87
|
+
'PERMISSION_UNSPECIFIED' | 'READER' | 'ADMIN' | 'OWNER' | 'NONE';
|
|
92
88
|
/** Required. The user to create. */
|
|
93
89
|
userId?: string;
|
|
94
90
|
}
|
|
@@ -137,16 +133,10 @@ declare namespace gapi.client {
|
|
|
137
133
|
name?: string;
|
|
138
134
|
/** Output only. User's permission of this domain. */
|
|
139
135
|
permission?:
|
|
140
|
-
| '
|
|
141
|
-
| 'READER'
|
|
142
|
-
| 'ADMIN'
|
|
143
|
-
| 'OWNER'
|
|
144
|
-
| 'NONE';
|
|
136
|
+
'PERMISSION_UNSPECIFIED' | 'READER' | 'ADMIN' | 'OWNER' | 'NONE';
|
|
145
137
|
/** Output only. Information about a user's verification history and properties for the domain. */
|
|
146
138
|
verificationState?:
|
|
147
|
-
| '
|
|
148
|
-
| 'UNVERIFIED'
|
|
149
|
-
| 'VERIFIED';
|
|
139
|
+
'VERIFICATION_STATE_UNSPECIFIED' | 'UNVERIFIED' | 'VERIFIED';
|
|
150
140
|
}
|
|
151
141
|
interface DomainComplianceData {
|
|
152
142
|
/** Output only. Deliverability status verdict. */
|
|
@@ -185,9 +175,7 @@ declare namespace gapi.client {
|
|
|
185
175
|
token?: string;
|
|
186
176
|
/** The verification method used. */
|
|
187
177
|
verificationMethod?:
|
|
188
|
-
| '
|
|
189
|
-
| 'TXT'
|
|
190
|
-
| 'CNAME';
|
|
178
|
+
'DOMAIN_VERIFICATION_METHOD_UNSPECIFIED' | 'TXT' | 'CNAME';
|
|
191
179
|
}
|
|
192
180
|
interface Empty {}
|
|
193
181
|
interface HonorUnsubscribeVerdict {
|
|
@@ -233,9 +221,7 @@ declare namespace gapi.client {
|
|
|
233
221
|
interface QueryDomainStatsRequest {
|
|
234
222
|
/** Optional. The granularity at which to aggregate the statistics. If unspecified, defaults to DAILY. */
|
|
235
223
|
aggregationGranularity?:
|
|
236
|
-
| '
|
|
237
|
-
| 'DAILY'
|
|
238
|
-
| 'OVERALL';
|
|
224
|
+
'AGGREGATION_GRANULARITY_UNSPECIFIED' | 'DAILY' | 'OVERALL';
|
|
239
225
|
/** Required. The specific metrics to query. You can define a custom name for each metric, which will be used in the response. */
|
|
240
226
|
metricDefinitions?: MetricDefinition[];
|
|
241
227
|
/** Optional. The maximum number of DomainStats resources to return in the response. The server may return fewer than this value. If unspecified, a default value of 10 will be used. The maximum value is 200. */
|
|
@@ -292,20 +278,14 @@ declare namespace gapi.client {
|
|
|
292
278
|
name?: string;
|
|
293
279
|
/** The permission level that the user has for the specified domain. */
|
|
294
280
|
permission?:
|
|
295
|
-
| '
|
|
296
|
-
| 'READER'
|
|
297
|
-
| 'ADMIN'
|
|
298
|
-
| 'OWNER'
|
|
299
|
-
| 'NONE';
|
|
281
|
+
'PERMISSION_UNSPECIFIED' | 'READER' | 'ADMIN' | 'OWNER' | 'NONE';
|
|
300
282
|
/** The user's email address. */
|
|
301
283
|
user?: string;
|
|
302
284
|
}
|
|
303
285
|
interface VerifyDomainRequest {
|
|
304
286
|
/** Required. The verification method used. Must be specified, i.e. TXT or CNAME. */
|
|
305
287
|
verificationMethod?:
|
|
306
|
-
| '
|
|
307
|
-
| 'TXT'
|
|
308
|
-
| 'CNAME';
|
|
288
|
+
'DOMAIN_VERIFICATION_METHOD_UNSPECIFIED' | 'TXT' | 'CNAME';
|
|
309
289
|
}
|
|
310
290
|
interface VerifyDomainResponse {}
|
|
311
291
|
interface DomainStatsResource {
|
|
@@ -739,9 +719,7 @@ declare namespace gapi.client {
|
|
|
739
719
|
uploadType?: string;
|
|
740
720
|
/** Required. The verification method used. Must be specified, i.e. TXT or CNAME. */
|
|
741
721
|
verificationMethod?:
|
|
742
|
-
| '
|
|
743
|
-
| 'TXT'
|
|
744
|
-
| 'CNAME';
|
|
722
|
+
'DOMAIN_VERIFICATION_METHOD_UNSPECIFIED' | 'TXT' | 'CNAME';
|
|
745
723
|
}): Request<DomainVerificationToken>;
|
|
746
724
|
/** Retrieves a list of all domains registered by you, along with their corresponding metadata. The order of domains in the response is unspecified and non-deterministic. Newly registered domains will not necessarily be added to the end of this list. */
|
|
747
725
|
list(request?: {
|