Wojciech Fiderek
Wojciech Fiderek
Example: ```javascript @JsonConverter class StringConverter implements JsonCustomConvert { serialize(data: Data): any {return "..."} deserialize(str: any): Data { if ( ! isValid( str ) ) { throw new Error(`Invalid value is...
Feature request to improve typings for partial update. Example: ```ts // current definition of updateOne of TheSchema schema TheSchema.prototype.updateOne = function(query: any, doc: any); // expected definition of updateOne of...
#### Environment details - Package: @google-cloud/[email protected] (tested also on v2.x) - OS: Docker Desktop v4.25.1 on MacOS 14.1.1, M2 - Node.js version: 18.18.2 (Docker image node:18-alpine) - npm version: 9.8.1...
Feature request description: - add option to play sound N times, eg. make `loop` option of type `boolean | number` (value `true` is infinite loop, and if value is `number`...
Am I doing something wrong in below example? ```javascript let { Writable } = require("stream"); let fs = require("fs"); var batcher = require('byte-stream'); let input = fs.createReadStream("./test-file"); let batchedStream =...
Hi, nice lib. In my opinion `OptionsForHtmlFileAsValidationTargetAndObjectAsResult` and `OptionsForExternalUrlAsValidationTargetAndObjectAsResult` should mark `format` as required, even if it contains only single value, because typings are not fulfilled in below case: ```typescript...
Database versions invalid behavior observed: - 23.9.2.56 (used in my project) - 24.10.1.10895 (playground - https://sql.clickhouse.com/) DESCRIBTION: Docs https://clickhouse.com/docs/en/sql-reference/statements/select/distinct#distinct-and-order-by tells that: - "The DISTINCT clause is executed before the ORDER...