@opra/sqb 1.26.2 → 1.26.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/sqb-service-base.d.ts +2 -2
- package/sqb-service-base.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opra/sqb",
|
|
3
|
-
"version": "1.26.
|
|
3
|
+
"version": "1.26.3",
|
|
4
4
|
"description": "Opra SQB adapter package",
|
|
5
5
|
"author": "Panates",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"valgen": "^6.0.3"
|
|
11
11
|
},
|
|
12
12
|
"peerDependencies": {
|
|
13
|
-
"@opra/core": "^1.26.
|
|
14
|
-
"@opra/http": "^1.26.
|
|
13
|
+
"@opra/core": "^1.26.3",
|
|
14
|
+
"@opra/http": "^1.26.3",
|
|
15
15
|
"@sqb/builder": ">4.0.0 <5",
|
|
16
16
|
"@sqb/connect": ">4.0.0 <5"
|
|
17
17
|
},
|
package/sqb-service-base.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { SqbClient, SqbConnection } from '@sqb/connect';
|
|
|
4
4
|
* @namespace SqbServiceBase
|
|
5
5
|
*/
|
|
6
6
|
export declare namespace SqbServiceBase {
|
|
7
|
-
interface Options {
|
|
7
|
+
interface Options extends ServiceBase.Options {
|
|
8
8
|
db?: SqbServiceBase['db'];
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -14,7 +14,7 @@ export declare namespace SqbServiceBase {
|
|
|
14
14
|
*/
|
|
15
15
|
export declare class SqbServiceBase extends ServiceBase {
|
|
16
16
|
/**
|
|
17
|
-
* Represents
|
|
17
|
+
* Represents an SqbClient or SqbConnection object
|
|
18
18
|
*/
|
|
19
19
|
db?: (SqbClient | SqbConnection) | ((_this: this) => SqbClient | SqbConnection);
|
|
20
20
|
/**
|
package/sqb-service-base.js
CHANGED