├── .changeset ├── README.md └── config.json ├── .github └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── jest.config.js ├── module-fixup.sh ├── package.json ├── pnpm-lock.yaml ├── src ├── data-api-dialect.ts ├── data-api-driver.ts ├── data-api-query-compiler.ts ├── index.ts └── postgres-introspector.ts ├── test ├── data-api-query-compiler.test.ts ├── harness.ts ├── migrations │ └── test-migration1.js ├── setup.js └── temporary.test.ts ├── tsconfig-cjs.json ├── tsconfig-esm.json ├── tsconfig.json └── vitest.config.ts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/jest.config.js -------------------------------------------------------------------------------- /module-fixup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/module-fixup.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/data-api-dialect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/src/data-api-dialect.ts -------------------------------------------------------------------------------- /src/data-api-driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/src/data-api-driver.ts -------------------------------------------------------------------------------- /src/data-api-query-compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/src/data-api-query-compiler.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./data-api-dialect.js"; 2 | -------------------------------------------------------------------------------- /src/postgres-introspector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/src/postgres-introspector.ts -------------------------------------------------------------------------------- /test/data-api-query-compiler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/test/data-api-query-compiler.test.ts -------------------------------------------------------------------------------- /test/harness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/test/harness.ts -------------------------------------------------------------------------------- /test/migrations/test-migration1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/test/migrations/test-migration1.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/test/setup.js -------------------------------------------------------------------------------- /test/temporary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/test/temporary.test.ts -------------------------------------------------------------------------------- /tsconfig-cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/tsconfig-cjs.json -------------------------------------------------------------------------------- /tsconfig-esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/tsconfig-esm.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/kysely-data-api/HEAD/vitest.config.ts --------------------------------------------------------------------------------