@steedos/objectql 2.7.18-beta.34 → 2.7.18-beta.36
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/lib/driver/metadata.d.ts +3 -3
- package/package.json +14 -14
package/lib/driver/metadata.d.ts
CHANGED
|
@@ -14,10 +14,10 @@ export declare class MetadataDriver implements SteedosDriver {
|
|
|
14
14
|
getMongoOptions(options: any): any;
|
|
15
15
|
getMongoSortOptions(sort: any): any;
|
|
16
16
|
getAggregateOptions(options: any): any[];
|
|
17
|
-
queryMetadata(collection: any, queryOptions: any, spaceId: any): import("mingo/cursor").Cursor
|
|
17
|
+
queryMetadata(collection: any, queryOptions: any, spaceId: any): import("mingo/dist/types/cursor").Cursor<unknown>;
|
|
18
18
|
getSupportedColumnTypes(): SteedosFieldDBType[];
|
|
19
|
-
find(collection: any, query: SteedosQueryOptions, spaceId?: SteedosIDType):
|
|
20
|
-
aggregate(collection: any, query: SteedosQueryOptions, externalPipeline: any, spaceId?: SteedosIDType):
|
|
19
|
+
find(collection: any, query: SteedosQueryOptions, spaceId?: SteedosIDType): unknown[];
|
|
20
|
+
aggregate(collection: any, query: SteedosQueryOptions, externalPipeline: any, spaceId?: SteedosIDType): unknown[];
|
|
21
21
|
findOne(collection: any, id: SteedosIDType, query: SteedosQueryOptions, spaceId?: SteedosIDType): void;
|
|
22
22
|
insert(collection: any, doc: Dictionary<any>, spaceId?: SteedosIDType): void;
|
|
23
23
|
update(collection: any, id: SteedosQueryOptions | SteedosIDType, doc: Dictionary<any>, spaceId?: SteedosIDType): void;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/objectql",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.7.18-beta.
|
|
4
|
+
"version": "2.7.18-beta.36",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"scripts": {
|
|
@@ -16,17 +16,17 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@salesforce/kit": "1.0.4",
|
|
18
18
|
"@salesforce/ts-types": "1.1.1",
|
|
19
|
-
"@steedos/cachers": "2.7.18-beta.
|
|
20
|
-
"@steedos/filters": "2.7.18-beta.
|
|
21
|
-
"@steedos/formula": "2.7.18-beta.
|
|
22
|
-
"@steedos/i18n": "2.7.18-beta.
|
|
23
|
-
"@steedos/metadata-core": "2.7.18-beta.
|
|
24
|
-
"@steedos/metadata-registrar": "2.7.18-beta.
|
|
25
|
-
"@steedos/odata-v4-mongodb": "2.7.18-beta.
|
|
26
|
-
"@steedos/odata-v4-sql": "2.7.18-beta.
|
|
27
|
-
"@steedos/odata-v4-typeorm": "2.7.18-beta.
|
|
28
|
-
"@steedos/schemas": "2.7.18-beta.
|
|
29
|
-
"@steedos/standard-objects": "2.7.18-beta.
|
|
19
|
+
"@steedos/cachers": "2.7.18-beta.36",
|
|
20
|
+
"@steedos/filters": "2.7.18-beta.36",
|
|
21
|
+
"@steedos/formula": "2.7.18-beta.36",
|
|
22
|
+
"@steedos/i18n": "2.7.18-beta.36",
|
|
23
|
+
"@steedos/metadata-core": "2.7.18-beta.36",
|
|
24
|
+
"@steedos/metadata-registrar": "2.7.18-beta.36",
|
|
25
|
+
"@steedos/odata-v4-mongodb": "2.7.18-beta.36",
|
|
26
|
+
"@steedos/odata-v4-sql": "2.7.18-beta.36",
|
|
27
|
+
"@steedos/odata-v4-typeorm": "2.7.18-beta.36",
|
|
28
|
+
"@steedos/schemas": "2.7.18-beta.36",
|
|
29
|
+
"@steedos/standard-objects": "2.7.18-beta.36",
|
|
30
30
|
"amis-formula": "~6.3.0",
|
|
31
31
|
"app-root-path": "^2.2.1",
|
|
32
32
|
"axios": "^0.21.1",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"vm2": "^3.9.17"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@steedos/meteor-bundle-runner": "2.7.18-beta.
|
|
60
|
+
"@steedos/meteor-bundle-runner": "2.7.18-beta.36",
|
|
61
61
|
"@types/express": "^4.16.1",
|
|
62
62
|
"@types/node": "^11.10.4",
|
|
63
63
|
"@types/underscore": "^1.8.13",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"publishConfig": {
|
|
68
68
|
"access": "public"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "d70e05ac2c86b847e8aceaf11ae7b192c46020fc"
|
|
71
71
|
}
|