@googleapis/safebrowsing 8.0.1 → 9.0.1
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/CHANGELOG.md +23 -0
- package/build/v5.d.ts +1 -1
- package/package.json +1 -1
- package/v5.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [9.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/safebrowsing-v9.0.0...safebrowsing-v9.0.1) (2024-05-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **safebrowsing:** update the API ([1cd8913](https://github.com/googleapis/google-api-nodejs-client/commit/1cd8913ce301e739276a811206e6aac367c41e16))
|
|
9
|
+
|
|
10
|
+
## [9.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/safebrowsing-v8.0.1...safebrowsing-v9.0.0) (2024-05-02)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### ⚠ BREAKING CHANGES
|
|
14
|
+
|
|
15
|
+
* This release has breaking changes.
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* run the generator ([#3434](https://github.com/googleapis/google-api-nodejs-client/issues/3434)) ([f0db524](https://github.com/googleapis/google-api-nodejs-client/commit/f0db524bb26f05cea3dec4c0ed66b496399e3857))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* **safebrowsing:** update the API ([ec3ca1a](https://github.com/googleapis/google-api-nodejs-client/commit/ec3ca1abec9b9a90efafba0840ad34bcaf28a24c))
|
|
25
|
+
|
|
3
26
|
## [8.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/safebrowsing-v8.0.0...safebrowsing-v8.0.1) (2024-05-02)
|
|
4
27
|
|
|
5
28
|
|
package/build/v5.d.ts
CHANGED
|
@@ -102,7 +102,7 @@ export declare namespace safebrowsing_v5 {
|
|
|
102
102
|
*/
|
|
103
103
|
export interface Schema$GoogleSecuritySafebrowsingV5SearchHashesResponse {
|
|
104
104
|
/**
|
|
105
|
-
* The client-side cache duration. The client MUST add this duration to the current time to determine the expiration time. The expiration time then applies to every hash prefix queried by the client in the request, regardless of how many full hashes are returned in the response. Even if the server returns no full hashes for a particular hash prefix, this fact MUST also be cached by the client. Important: the client MUST NOT assume that the server will return the same cache duration for all responses. The server MAY choose different cache durations for different responses depending on the situation.
|
|
105
|
+
* The client-side cache duration. The client MUST add this duration to the current time to determine the expiration time. The expiration time then applies to every hash prefix queried by the client in the request, regardless of how many full hashes are returned in the response. Even if the server returns no full hashes for a particular hash prefix, this fact MUST also be cached by the client. If and only if the field `full_hashes` is empty, the client MAY increase the `cache_duration` to determine a new expiration that is later than that specified by the server. In any case, the increased cache duration must not be longer than 24 hours. Important: the client MUST NOT assume that the server will return the same cache duration for all responses. The server MAY choose different cache durations for different responses depending on the situation.
|
|
106
106
|
*/
|
|
107
107
|
cacheDuration?: string | null;
|
|
108
108
|
/**
|
package/package.json
CHANGED
package/v5.ts
CHANGED
|
@@ -155,7 +155,7 @@ export namespace safebrowsing_v5 {
|
|
|
155
155
|
*/
|
|
156
156
|
export interface Schema$GoogleSecuritySafebrowsingV5SearchHashesResponse {
|
|
157
157
|
/**
|
|
158
|
-
* The client-side cache duration. The client MUST add this duration to the current time to determine the expiration time. The expiration time then applies to every hash prefix queried by the client in the request, regardless of how many full hashes are returned in the response. Even if the server returns no full hashes for a particular hash prefix, this fact MUST also be cached by the client. Important: the client MUST NOT assume that the server will return the same cache duration for all responses. The server MAY choose different cache durations for different responses depending on the situation.
|
|
158
|
+
* The client-side cache duration. The client MUST add this duration to the current time to determine the expiration time. The expiration time then applies to every hash prefix queried by the client in the request, regardless of how many full hashes are returned in the response. Even if the server returns no full hashes for a particular hash prefix, this fact MUST also be cached by the client. If and only if the field `full_hashes` is empty, the client MAY increase the `cache_duration` to determine a new expiration that is later than that specified by the server. In any case, the increased cache duration must not be longer than 24 hours. Important: the client MUST NOT assume that the server will return the same cache duration for all responses. The server MAY choose different cache durations for different responses depending on the situation.
|
|
159
159
|
*/
|
|
160
160
|
cacheDuration?: string | null;
|
|
161
161
|
/**
|