@nodescript/adapter-sql-protocol
Advanced tools
Comparing version 1.2.0 to 1.2.1
export * from './domains/SqlDomain.js'; | ||
export * from './protocol.js'; | ||
export * from './schema/FieldInfo.js'; | ||
export * from './schema/SqlModificationResult.js'; | ||
export * from './schema/SqlQueryResult.js'; | ||
export * from './schema/FieldInfo.js'; |
export * from './domains/SqlDomain.js'; | ||
export * from './protocol.js'; | ||
export * from './schema/FieldInfo.js'; | ||
export * from './schema/SqlModificationResult.js'; | ||
export * from './schema/SqlQueryResult.js'; | ||
export * from './schema/FieldInfo.js'; | ||
//# sourceMappingURL=index.js.map |
import { Schema } from 'airtight'; | ||
import { FieldInfo } from './FieldInfo.js'; | ||
export interface SqlModificationResult { | ||
rows?: Record<string, any>[]; | ||
rows?: Array<Record<string, any>>; | ||
fieldData?: FieldInfo[]; | ||
@@ -6,0 +6,0 @@ affectedRowCount: number; |
import { Schema } from 'airtight'; | ||
import { FieldInfo } from './FieldInfo.js'; | ||
export interface SqlQueryResult { | ||
rows?: Record<string, any>[]; | ||
rows?: Array<Record<string, any>>; | ||
rowCount?: number; | ||
@@ -6,0 +6,0 @@ fieldData?: FieldInfo[]; |
{ | ||
"name": "@nodescript/adapter-sql-protocol", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "SQL Adapter Protocol", | ||
@@ -5,0 +5,0 @@ "type": "module", |
Sorry, the diff of this file is not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
7247
1