@maxim_mazurok/gapi.client.gmailpostmastertools-v1beta1 0.1.20260621 → 0.2.20260623
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 +3 -11
- 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=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260623
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -74,11 +74,7 @@ declare namespace gapi.client {
|
|
|
74
74
|
numIps?: string;
|
|
75
75
|
/** The reputation category this IP reputation represents. */
|
|
76
76
|
reputation?:
|
|
77
|
-
| '
|
|
78
|
-
| 'HIGH'
|
|
79
|
-
| 'MEDIUM'
|
|
80
|
-
| 'LOW'
|
|
81
|
-
| 'BAD';
|
|
77
|
+
'REPUTATION_CATEGORY_UNSPECIFIED' | 'HIGH' | 'MEDIUM' | 'LOW' | 'BAD';
|
|
82
78
|
/** A sample of IPs in this reputation category. */
|
|
83
79
|
sampleIps?: string[];
|
|
84
80
|
}
|
|
@@ -103,11 +99,7 @@ declare namespace gapi.client {
|
|
|
103
99
|
dmarcSuccessRatio?: number;
|
|
104
100
|
/** Reputation of the domain. */
|
|
105
101
|
domainReputation?:
|
|
106
|
-
| '
|
|
107
|
-
| 'HIGH'
|
|
108
|
-
| 'MEDIUM'
|
|
109
|
-
| 'LOW'
|
|
110
|
-
| 'BAD';
|
|
102
|
+
'REPUTATION_CATEGORY_UNSPECIFIED' | 'HIGH' | 'MEDIUM' | 'LOW' | 'BAD';
|
|
111
103
|
/** The ratio of incoming mail (to Gmail), that passed secure transport (TLS) vs all mail received from that domain. This metric only pertains to traffic that passed [SPF](http://www.openspf.org/) or [DKIM](http://www.dkim.org/). */
|
|
112
104
|
inboundEncryptionRatio?: number;
|
|
113
105
|
/** Reputation information pertaining to the IP addresses of the email servers for the domain. There is exactly one entry for each reputation category except REPUTATION_CATEGORY_UNSPECIFIED. */
|
package/package.json
CHANGED