mohagan9 opened a new issue, #370: URL: https://github.com/apache/couchdb-nano/issues/370
Going off the CouchDB bulks docs endpoint, there are two properties: 1. docs 2. new_edits https://docs.couchdb.org/en/stable/api/database/bulk-api.html#db-bulk-docs > Request JSON Object: docs (array) – List of documents objects new_edits (boolean) – If false, prevents the database from assigning them new revision IDs. Default is true. Optional But this **new_edits** property is missing from the `BulkModifyDocsWrapper` type: ```ts interface BulkModifyDocsWrapper { docs: any[]; } ``` This feature is to request the type be updated to: ```ts interface BulkModifyDocsWrapper { docs: any[]; new_edits?: boolean } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
