sqltyper icon indicating copy to clipboard operation
sqltyper copied to clipboard

TypeScript types for raw PostgreSQL queries

Results 14 sqltyper issues
Sort by recently updated
recently updated
newest added

Bumps [wrap-ansi](https://github.com/chalk/wrap-ansi) from 7.0.0 to 9.0.0. Release notes Sourced from wrap-ansi's releases. v9.0.0 Breaking Require Node.js 18 43069a6 Improvements Improve performance (#51) d989bc4 https://github.com/chalk/wrap-ansi/compare/v8.1.0...v9.0.0 v8.1.0 Add TypeScript definition (#50) bafa535...

dependencies

Bumps [wrap-ansi](https://github.com/chalk/wrap-ansi) and [@types/wrap-ansi](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/wrap-ansi). These dependencies needed to be updated together. Updates `wrap-ansi` from 7.0.0 to 8.1.0 Release notes Sourced from wrap-ansi's releases. v8.1.0 Add TypeScript definition (#50) bafa535 https://github.com/chalk/wrap-ansi/compare/v8.0.1...v8.1.0...

dependencies

Bumps [jest-cli](https://github.com/jestjs/jest/tree/HEAD/packages/jest-cli) from 27.5.1 to 29.7.0. Release notes Sourced from jest-cli's releases. v29.7.0 Features [create-jest] Add npm init / yarn create initialiser for Jest projects (#14465) [jest-validate] Allow deprecation warnings...

dependencies

Bumps [@types/ramda](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ramda) from 0.27.37 to 0.29.5. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/ramda&package-manager=npm_and_yarn&previous-version=0.27.37&new-version=0.29.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [camelcase](https://github.com/sindresorhus/camelcase) from 6.3.0 to 8.0.0. Release notes Sourced from camelcase's releases. v8.0.0 Breaking Require Node.js 16 3d497a1 Fixes Fix incorrect camelization (#112) e7dccc9 https://github.com/sindresorhus/camelcase/compare/v7.0.1...v8.0.0 v7.0.1 Fix the preserveConsecutiveUppercase option...

dependencies

Right now, the parser sends throws a warning when trying to put a param inside the ANY part of a WHERE clause. Functionally it works great and it seems like...

in the following query: ``` SELECT * FROM foo LIMIT ${count} ``` `count` will be added as a parameter with type `string`, though I'd expect it to be of type...

Tried to use with `Postgres.js` TypeScript error: ```ts const result: postgres.RowList Type 'RowList' is not assignable to type '{ name: string; }[]'. The types returned by 'pop()' are incompatible between...

Hi, As mentioned in #123, this is my first attempt at supporting function calls in FROM clauses. I changed the infer module a bit to support both ```SourceColumn``` and ```VirtualField```...

We've noticed that function calls in from clauses are not supported. One of the use cases that we were looking at are bulk inserts: ```sql insert into employee_team select :employeeid,...