Skip to content

Commit

Permalink
deps: upgrade nodejs-common (#582)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus authored Jan 28, 2019
1 parent fb0148b commit 4007cbe
Show file tree
Hide file tree
Showing 9 changed files with 826 additions and 1,530 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"prepare": "npm run compile"
},
"dependencies": {
"@google-cloud/common": "^0.27.0",
"@google-cloud/common": "^0.30.2",
"@google-cloud/paginator": "^0.1.0",
"@google-cloud/promisify": "^0.3.0",
"arrify": "^1.0.0",
Expand All @@ -56,7 +56,7 @@
"concat-stream": "^2.0.0",
"duplexify": "^3.5.0",
"extend": "^3.0.0",
"gcs-resumable-upload": "^0.13.0",
"gcs-resumable-upload": "^0.14.1",
"hash-stream-validation": "^0.2.1",
"mime": "^2.2.0",
"mime-types": "^2.0.8",
Expand Down Expand Up @@ -96,9 +96,9 @@
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"gts": "^0.9.0",
"jsdoc-baseline": "git+https://github.com/hegemonic/jsdoc-baseline.git",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.5.4",
"jsdoc-baseline": "git+https://github.com/hegemonic/jsdoc-baseline.git",
"mocha": "^5.0.0",
"nock": "^10.0.1",
"node-fetch": "^2.2.0",
Expand Down
6 changes: 4 additions & 2 deletions src/acl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ import * as r from 'request';

export interface AclOptions {
pathPrefix: string;
request: typeof r;
request:
(reqOpts: DecorateRequestOptions, callback: BodyResponseCallback) => void;
}

export type GetAclResponse =
Expand Down Expand Up @@ -378,7 +379,8 @@ class AclRoleAccessorMethods {
class Acl extends AclRoleAccessorMethods {
default !: Acl;
pathPrefix: string;
request_: typeof r;
request_:
(reqOpts: DecorateRequestOptions, callback: BodyResponseCallback) => void;

constructor(options: AclOptions) {
super();
Expand Down
Loading

0 comments on commit 4007cbe

Please sign in to comment.