@google-cloud/dns
Advanced tools
@@ -23,3 +23,3 @@ /*! | ||
| } | ||
| export declare type CreateChangeResponse = [Change, Metadata]; | ||
| export type CreateChangeResponse = [Change, Metadata]; | ||
| export interface CreateChangeCallback { | ||
@@ -26,0 +26,0 @@ (err: Error | null, change?: Change | null, apiResponse?: Metadata): void; |
@@ -34,3 +34,3 @@ /*! | ||
| } | ||
| export declare type GetZonesResponse = [Zone[], GetZonesRequest | null, Metadata]; | ||
| export type GetZonesResponse = [Zone[], GetZonesRequest | null, Metadata]; | ||
| export interface GetZoneCallback { | ||
@@ -75,4 +75,4 @@ (err: Error | null, zone?: Zone | null, apiResponse?: Metadata): void; | ||
| } | ||
| export declare type CreateZoneResponse = [Zone, Metadata]; | ||
| export declare type CreateZoneCallback = GetZoneCallback; | ||
| export type CreateZoneResponse = [Zone, Metadata]; | ||
| export type CreateZoneCallback = GetZoneCallback; | ||
| export interface DNSOptions extends GoogleAuthOptions { | ||
@@ -79,0 +79,0 @@ /** |
@@ -37,3 +37,3 @@ /*! | ||
| */ | ||
| export declare type DeleteRecordResponse = [Change, Metadata]; | ||
| export type DeleteRecordResponse = [Change, Metadata]; | ||
| /** | ||
@@ -40,0 +40,0 @@ * @callback DeleteRecordCallback |
@@ -42,3 +42,3 @@ /*! | ||
| */ | ||
| export declare type CreateChangeResponse = [Change, Metadata]; | ||
| export type CreateChangeResponse = [Change, Metadata]; | ||
| /** | ||
@@ -57,3 +57,3 @@ * @callback CreateChangeCallback | ||
| */ | ||
| export declare type DeleteZoneResponse = [Metadata]; | ||
| export type DeleteZoneResponse = [Metadata]; | ||
| /** | ||
@@ -64,3 +64,3 @@ * @callback DeleteZoneCallback | ||
| */ | ||
| export declare type DeleteZoneCallback = DeleteCallback; | ||
| export type DeleteZoneCallback = DeleteCallback; | ||
| export interface DeleteZoneConfig { | ||
@@ -72,3 +72,3 @@ force?: boolean; | ||
| } | ||
| export declare type GetRecordsResponse = [Record[], Metadata]; | ||
| export type GetRecordsResponse = [Record[], Metadata]; | ||
| export interface GetRecordsRequest { | ||
@@ -113,3 +113,3 @@ autoPaginate?: boolean; | ||
| */ | ||
| export declare type GetChangesResponse = [Change[], Metadata]; | ||
| export type GetChangesResponse = [Change[], Metadata]; | ||
| /** | ||
@@ -128,3 +128,3 @@ * @callback GetChangesCallback | ||
| */ | ||
| export declare type ZoneExportResponse = [Metadata]; | ||
| export type ZoneExportResponse = [Metadata]; | ||
| /** | ||
@@ -138,6 +138,6 @@ * @callback ZoneExportCallback | ||
| } | ||
| declare type Without<T, K> = { | ||
| type Without<T, K> = { | ||
| [P in Exclude<keyof T, K>]: T[P]; | ||
| }; | ||
| declare type ZoneServiceObject = new (config: ServiceObjectConfig) => Without<ServiceObject<Zone>, 'create' | 'delete' | 'get'>; | ||
| type ZoneServiceObject = new (config: ServiceObjectConfig) => Without<ServiceObject<Zone>, 'create' | 'delete' | 'get'>; | ||
| declare const ZoneServiceObject: ZoneServiceObject; | ||
@@ -144,0 +144,0 @@ /** |
+11
-0
@@ -7,2 +7,13 @@ # Changelog | ||
| ## [4.0.0](https://github.com/googleapis/nodejs-dns/compare/v3.0.2...v4.0.0) (2023-08-10) | ||
| ### ⚠ BREAKING CHANGES | ||
| * upgrade to Node 14 ([#556](https://github.com/googleapis/nodejs-dns/issues/556)) | ||
| ### Miscellaneous Chores | ||
| * Upgrade to Node 14 ([#556](https://github.com/googleapis/nodejs-dns/issues/556)) ([75b5a56](https://github.com/googleapis/nodejs-dns/commit/75b5a56993e74826b69650c8c7601e977802b15f)) | ||
| ## [3.0.2](https://github.com/googleapis/nodejs-dns/compare/v3.0.1...v3.0.2) (2022-08-23) | ||
@@ -9,0 +20,0 @@ |
+12
-12
| { | ||
| "name": "@google-cloud/dns", | ||
| "description": "Cloud DNS Client Library for Node.js", | ||
| "version": "3.0.2", | ||
| "version": "4.0.0", | ||
| "license": "Apache-2.0", | ||
| "author": "Google Inc.", | ||
| "engines": { | ||
| "node": ">=12.0.0" | ||
| "node": ">=14.0.0" | ||
| }, | ||
@@ -47,5 +47,5 @@ "repository": "googleapis/nodejs-dns", | ||
| "dependencies": { | ||
| "@google-cloud/common": "^4.0.0", | ||
| "@google-cloud/paginator": "^4.0.0", | ||
| "@google-cloud/promisify": "^3.0.0", | ||
| "@google-cloud/common": "^5.0.0", | ||
| "@google-cloud/paginator": "^5.0.0", | ||
| "@google-cloud/promisify": "^4.0.0", | ||
| "arrify": "^2.0.0", | ||
@@ -59,11 +59,11 @@ "dns-zonefile": "0.2.10", | ||
| "@types/mocha": "^9.0.0", | ||
| "@types/node": "^16.0.0", | ||
| "@types/node": "^20.4.9", | ||
| "@types/proxyquire": "^1.3.28", | ||
| "@types/request": "^2.48.1", | ||
| "@types/tmp": "0.2.3", | ||
| "@types/uuid": "^8.0.0", | ||
| "c8": "^7.0.0", | ||
| "@types/uuid": "^9.0.0", | ||
| "c8": "^8.0.1", | ||
| "codecov": "^3.0.2", | ||
| "gts": "^3.0.0", | ||
| "jsdoc": "^3.6.2", | ||
| "gts": "^5.0.0", | ||
| "jsdoc": "^4.0.0", | ||
| "jsdoc-fresh": "^2.0.0", | ||
@@ -75,5 +75,5 @@ "jsdoc-region-tag": "^2.0.0", | ||
| "tmp": "^0.2.0", | ||
| "typescript": "^4.6.4", | ||
| "uuid": "^8.0.0" | ||
| "typescript": "^5.1.6", | ||
| "uuid": "^9.0.0" | ||
| } | ||
| } |
+1
-1
@@ -94,3 +94,3 @@ [//]: # "This README.md file is auto-generated, all changes to this file will be lost." | ||
| Our client libraries follow the [Node.js release schedule](https://nodejs.org/en/about/releases/). | ||
| Our client libraries follow the [Node.js release schedule](https://github.com/nodejs/release#release-schedule). | ||
| Libraries are compatible with all current _active_ and _maintenance_ versions of | ||
@@ -97,0 +97,0 @@ Node.js. |
Network access
Supply chain riskThis module accesses the network.
Found 2 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 2 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
131231
0.25%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
Updated