@google-cloud/firestore
Advanced tools
Comparing version 4.11.0 to 4.11.1
@@ -807,4 +807,3 @@ "use strict"; | ||
validate() { | ||
const allowUndefined = !!this.ref.firestore._settings | ||
.ignoreUndefinedProperties; | ||
const allowUndefined = !!this.ref.firestore._settings.ignoreUndefinedProperties; | ||
this.transforms.forEach(transform => transform.validate(allowUndefined)); | ||
@@ -811,0 +810,0 @@ } |
@@ -22,3 +22,3 @@ "use strict"; | ||
const gax = require("google-gax"); | ||
const path = require("path"); | ||
const jsonProtos = require("../../protos/protos.json"); | ||
/** | ||
@@ -120,9 +120,3 @@ * Client JSON configuration object, loaded from | ||
// Load the applicable protos. | ||
// For Node.js, pass the path to JSON proto file. | ||
// For browsers, pass the JSON content. | ||
const nodejsProtoPath = path.join(__dirname, '..', '..', 'protos', 'protos.json'); | ||
this._protos = this._gaxGrpc.loadProto(opts.fallback | ||
? // eslint-disable-next-line @typescript-eslint/no-var-requires | ||
require('../../protos/protos.json') | ||
: nodejsProtoPath); | ||
this._protos = this._gaxGrpc.loadProtoJSON(jsonProtos); | ||
// This API contains "path templates"; forward-slash-separated | ||
@@ -144,10 +138,6 @@ // identifiers to uniquely identify resources within the API. | ||
}; | ||
const protoFilesRoot = this._gaxModule.protobuf.Root.fromJSON(jsonProtos); | ||
// This API contains "long-running operations", which return a | ||
// an Operation object that allows for tracking of the operation, | ||
// rather than holding a request open. | ||
const protoFilesRoot = opts.fallback | ||
? this._gaxModule.protobuf.Root.fromJSON( | ||
// eslint-disable-next-line @typescript-eslint/no-var-requires | ||
require('../../protos/protos.json')) | ||
: this._gaxModule.protobuf.loadSync(nodejsProtoPath); | ||
this.operationsClient = this._gaxModule | ||
@@ -308,5 +298,6 @@ .lro({ | ||
options.otherArgs.headers = options.otherArgs.headers || {}; | ||
options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ | ||
name: request.name || '', | ||
}); | ||
options.otherArgs.headers['x-goog-request-params'] = | ||
gax.routingHeader.fromParams({ | ||
name: request.name || '', | ||
}); | ||
this.initialize(); | ||
@@ -346,5 +337,6 @@ return this.innerApiCalls.getIndex(request, options, callback); | ||
options.otherArgs.headers = options.otherArgs.headers || {}; | ||
options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ | ||
name: request.name || '', | ||
}); | ||
options.otherArgs.headers['x-goog-request-params'] = | ||
gax.routingHeader.fromParams({ | ||
name: request.name || '', | ||
}); | ||
this.initialize(); | ||
@@ -384,5 +376,6 @@ return this.innerApiCalls.deleteIndex(request, options, callback); | ||
options.otherArgs.headers = options.otherArgs.headers || {}; | ||
options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ | ||
name: request.name || '', | ||
}); | ||
options.otherArgs.headers['x-goog-request-params'] = | ||
gax.routingHeader.fromParams({ | ||
name: request.name || '', | ||
}); | ||
this.initialize(); | ||
@@ -429,5 +422,6 @@ return this.innerApiCalls.getField(request, options, callback); | ||
options.otherArgs.headers = options.otherArgs.headers || {}; | ||
options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
options.otherArgs.headers['x-goog-request-params'] = | ||
gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
this.initialize(); | ||
@@ -505,5 +499,6 @@ return this.innerApiCalls.createIndex(request, options, callback); | ||
options.otherArgs.headers = options.otherArgs.headers || {}; | ||
options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ | ||
'field.name': request.field.name || '', | ||
}); | ||
options.otherArgs.headers['x-goog-request-params'] = | ||
gax.routingHeader.fromParams({ | ||
'field.name': request.field.name || '', | ||
}); | ||
this.initialize(); | ||
@@ -585,5 +580,6 @@ return this.innerApiCalls.updateField(request, options, callback); | ||
options.otherArgs.headers = options.otherArgs.headers || {}; | ||
options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ | ||
name: request.name || '', | ||
}); | ||
options.otherArgs.headers['x-goog-request-params'] = | ||
gax.routingHeader.fromParams({ | ||
name: request.name || '', | ||
}); | ||
this.initialize(); | ||
@@ -660,5 +656,6 @@ return this.innerApiCalls.exportDocuments(request, options, callback); | ||
options.otherArgs.headers = options.otherArgs.headers || {}; | ||
options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ | ||
name: request.name || '', | ||
}); | ||
options.otherArgs.headers['x-goog-request-params'] = | ||
gax.routingHeader.fromParams({ | ||
name: request.name || '', | ||
}); | ||
this.initialize(); | ||
@@ -730,5 +727,6 @@ return this.innerApiCalls.importDocuments(request, options, callback); | ||
options.otherArgs.headers = options.otherArgs.headers || {}; | ||
options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
options.otherArgs.headers['x-goog-request-params'] = | ||
gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
this.initialize(); | ||
@@ -769,5 +767,6 @@ return this.innerApiCalls.listIndexes(request, options, callback); | ||
options.otherArgs.headers = options.otherArgs.headers || {}; | ||
options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
options.otherArgs.headers['x-goog-request-params'] = | ||
gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
const callSettings = new gax.CallSettings(options); | ||
@@ -815,5 +814,6 @@ this.initialize(); | ||
options.otherArgs.headers = options.otherArgs.headers || {}; | ||
options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
options.otherArgs.headers['x-goog-request-params'] = | ||
gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
options = options || {}; | ||
@@ -875,5 +875,6 @@ const callSettings = new gax.CallSettings(options); | ||
options.otherArgs.headers = options.otherArgs.headers || {}; | ||
options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
options.otherArgs.headers['x-goog-request-params'] = | ||
gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
this.initialize(); | ||
@@ -918,5 +919,6 @@ return this.innerApiCalls.listFields(request, options, callback); | ||
options.otherArgs.headers = options.otherArgs.headers || {}; | ||
options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
options.otherArgs.headers['x-goog-request-params'] = | ||
gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
const callSettings = new gax.CallSettings(options); | ||
@@ -968,5 +970,6 @@ this.initialize(); | ||
options.otherArgs.headers = options.otherArgs.headers || {}; | ||
options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
options.otherArgs.headers['x-goog-request-params'] = | ||
gax.routingHeader.fromParams({ | ||
parent: request.parent || '', | ||
}); | ||
options = options || {}; | ||
@@ -973,0 +976,0 @@ const callSettings = new gax.CallSettings(options); |
@@ -386,4 +386,3 @@ "use strict"; | ||
const name = document.name; | ||
const relativeName = path_1.QualifiedResourcePath.fromSlashSeparatedString(name) | ||
.relativeName; | ||
const relativeName = path_1.QualifiedResourcePath.fromSlashSeparatedString(name).relativeName; | ||
if (changed) { | ||
@@ -406,4 +405,3 @@ logger_1.logger('Watch.onData', this.requestTag, 'Received document change'); | ||
const name = (proto.documentDelete || proto.documentRemove).document; | ||
const relativeName = path_1.QualifiedResourcePath.fromSlashSeparatedString(name) | ||
.relativeName; | ||
const relativeName = path_1.QualifiedResourcePath.fromSlashSeparatedString(name).relativeName; | ||
this.changeMap.set(relativeName, REMOVED); | ||
@@ -410,0 +408,0 @@ } |
@@ -7,2 +7,9 @@ # Changelog | ||
### [4.11.1](https://www.github.com/googleapis/nodejs-firestore/compare/v4.11.0...v4.11.1) (2021-05-13) | ||
### Bug Fixes | ||
* **deps:** require google-gax v2.12.0 ([#1497](https://www.github.com/googleapis/nodejs-firestore/issues/1497)) ([a8d5f0b](https://www.github.com/googleapis/nodejs-firestore/commit/a8d5f0b1e4503ef9f0d289dbf8ed67a30eb9ed4b)) | ||
## [4.11.0](https://www.github.com/googleapis/nodejs-firestore/compare/v4.10.1...v4.11.0) (2021-05-05) | ||
@@ -9,0 +16,0 @@ |
{ | ||
"name": "@google-cloud/firestore", | ||
"description": "Firestore Client Library for Node.js", | ||
"version": "4.11.0", | ||
"version": "4.11.1", | ||
"license": "Apache-2.0", | ||
@@ -57,3 +57,3 @@ "author": "Google Inc.", | ||
"functional-red-black-tree": "^1.0.1", | ||
"google-gax": "^2.9.2", | ||
"google-gax": "^2.12.0", | ||
"protobufjs": "^6.8.6" | ||
@@ -60,0 +60,0 @@ }, |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5479246
103250
Updatedgoogle-gax@^2.12.0