51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
"use strict"
|
|
|
|
const { READ } = require("@eslint-community/eslint-utils")
|
|
|
|
/**
|
|
* @satisfies {import('../types.js').SupportVersionTraceMap}
|
|
*/
|
|
const sqlite = {
|
|
constants: {
|
|
[READ]: { supported: ["22.13.0", "23.5.0"] },
|
|
SQLITE_CHANGESET_OMIT: { [READ]: { supported: ["22.13.0", "23.5.0"] } },
|
|
SQLITE_CHANGESET_REPLACE: {
|
|
[READ]: { supported: ["22.13.0", "23.5.0"] },
|
|
},
|
|
SQLITE_CHANGESET_ABORT: {
|
|
[READ]: { supported: ["22.13.0", "23.5.0"] },
|
|
},
|
|
},
|
|
backup: { [READ]: { supported: ["22.16.0", "23.8.0"] } },
|
|
DatabaseSync: { [READ]: { supported: ["22.5.0"] } },
|
|
StatementSync: { [READ]: { supported: ["22.5.0"] } },
|
|
SQLITE_CHANGESET_OMIT: {
|
|
[READ]: {
|
|
experimental: ["22.12.0"],
|
|
deprecated: ["22.13.0"],
|
|
},
|
|
},
|
|
SQLITE_CHANGESET_REPLACE: {
|
|
[READ]: {
|
|
experimental: ["22.12.0"],
|
|
deprecated: ["22.13.0"],
|
|
},
|
|
},
|
|
SQLITE_CHANGESET_ABORT: {
|
|
[READ]: {
|
|
experimental: ["22.12.0"],
|
|
deprecated: ["22.13.0"],
|
|
},
|
|
},
|
|
}
|
|
|
|
/**
|
|
* @satisfies {import('../types.js').SupportVersionTraceMap}
|
|
*/
|
|
module.exports = {
|
|
"node:sqlite": {
|
|
[READ]: { experimental: ["22.5.0"] },
|
|
...sqlite,
|
|
},
|
|
}
|