Gintautas Miselis

Results 169 comments of Gintautas Miselis

@ak-beam catching error and logging it using `console.log` is a simple but noisy workaround. I created this error wrapper which shows correct error message, SQL statement, parameters and displays correct...

Release notes say "There are no breaking API changes", but there are at least 2 breaking changes in this pull request: 1. The signature of `ZodDiscriminatedUnion` was changed from `class...

Side pots only exists when some players go all-in so I will implement AllIn action first #34

I will work on this ticket next.

Yes, it is, but use 1.4 until #18 is fixed.

I noticed that `anyOf` generator fails in 2 different ways: 1. ```yaml Component: anyOf: - $ref: "#/components/schemas/Component1" - $ref: "#/components/schemas/Component2" ``` generates empty interface: ```ts export interface Component { }...

I changed all `anyOf` keywords to`oneOf` in my specification and openapi-generator produced expected types. ```ts export type Component = Component1 | Component2; ```

Is there a reason why `isNullable` is missing on `isEnum` side? ``` {{#isEnum}}{{{datatypeWithEnum}}}{{/isEnum}}{{^isEnum}}{{{dataType}}}{{#isNullable}} | null{{/isNullable}}{{/isEnum}}, ``` We have a nullable enum field in our API ```yaml field: type: string nullable:...

@DavertMik Have you abandoned this project?

Alright, I understand the problem now. `tryTo` stopped returning `true/false` when `void` return type was declared for `seeElement` method in https://github.com/Codeception/module-webdriver/commit/f297164d057e6b401f65dfe253ad59d7231b0e4d. It happens because `tryTo` decorator copies method template from...