File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sqlitecloud/drivers" ,
3
- "version" : " 1.0.506 " ,
3
+ "version" : " 1.0.507 " ,
4
4
"description" : " SQLiteCloud drivers for Typescript/Javascript in edge, web and node clients" ,
5
5
"main" : " ./lib/index.js" ,
6
6
"types" : " ./lib/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ export abstract class SQLiteCloudConnection {
112
112
* @returns An array of rows in case of selections or an object with
113
113
* metadata in case of insert, update, delete.
114
114
*/
115
- public async sql ( sql : TemplateStringsArray | string | SQLiteCloudCommand , ...values : SQLiteCloudDataTypes [ ] ) : Promise < any > {
115
+ public async sql ( sql : TemplateStringsArray | string | SQLiteCloudCommand , ...values : any [ ] ) : Promise < any > {
116
116
let commands = { query : '' } as SQLiteCloudCommand
117
117
118
118
// sql is a TemplateStringsArray, the 'raw' property is specific to TemplateStringsArray
Original file line number Diff line number Diff line change @@ -437,7 +437,7 @@ export class Database extends EventEmitter {
437
437
* @returns An array of rows in case of selections or an object with
438
438
* metadata in case of insert, update, delete.
439
439
*/
440
- public async sql ( sql : TemplateStringsArray | string | SQLiteCloudCommand , ...values : SQLiteCloudDataTypes [ ] ) : Promise < any > {
440
+ public async sql ( sql : TemplateStringsArray | string | SQLiteCloudCommand , ...values : any [ ] ) : Promise < any > {
441
441
let commands = { query : '' } as SQLiteCloudCommand
442
442
443
443
// sql is a TemplateStringsArray, the 'raw' property is specific to TemplateStringsArray
You can’t perform that action at this time.
0 commit comments