@loopback/typeorm 0.7.5 → 0.7.6
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/dist/.sandbox/{17643nebVSh → 242434gFfuC}/application.js +0 -0
- package/dist/.sandbox/{17643nebVSh → 242434gFfuC}/typeorm-connections/sqlite.connection.js +0 -0
- package/dist/.sandbox/{17643nebVSh → 242434gFfuC}/typeorm-entities/book.entity.js +0 -0
- package/dist/.sandbox/{17645zReezQ → 24244V6q97p}/application.js +0 -0
- package/dist/.sandbox/{17643nebVSh → 24244V6q97p}/controllers/book.controller.js +0 -0
- package/dist/.sandbox/{17643nebVSh → 24244V6q97p}/typeorm-connections/mydb.sql +0 -0
- package/dist/.sandbox/{17645zReezQ → 24244V6q97p}/typeorm-connections/sqlite.connection.js +0 -0
- package/dist/.sandbox/{17645zReezQ → 24244V6q97p}/typeorm-entities/book.entity.js +0 -0
- package/dist/typeorm.mixin.d.ts +1 -1
- package/dist/typeorm.utils.d.ts +2 -2
- package/package.json +15 -15
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
package/dist/typeorm.mixin.d.ts
CHANGED
|
@@ -93,7 +93,7 @@ export interface ApplicationUsingTypeOrm extends Application {
|
|
|
93
93
|
connection(options: ConnectionOptions): void;
|
|
94
94
|
migrateSchema(): Promise<void>;
|
|
95
95
|
}
|
|
96
|
-
export
|
|
96
|
+
export type TypeOrmComponentOptions = {
|
|
97
97
|
[prop: string]: string;
|
|
98
98
|
};
|
|
99
99
|
export declare class TypeOrmComponent implements Component {
|
package/dist/typeorm.utils.d.ts
CHANGED
|
@@ -10,10 +10,10 @@ import { ColumnType } from 'typeorm/driver/types/ColumnTypes';
|
|
|
10
10
|
export declare function getModelSchema<T extends object>(modelCtor: Function & {
|
|
11
11
|
prototype: T;
|
|
12
12
|
}, options?: JsonSchemaOptions<T>): SchemaObject;
|
|
13
|
-
export
|
|
13
|
+
export type PropertyType = {
|
|
14
14
|
[propertyName: string]: SchemaObject | ReferenceObject;
|
|
15
15
|
};
|
|
16
|
-
export
|
|
16
|
+
export type StringifiedTypeOptions = {
|
|
17
17
|
func: ColumnType;
|
|
18
18
|
entity: string;
|
|
19
19
|
property: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/typeorm",
|
|
3
3
|
"description": "Adds support for TypeORM in LoopBack",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.6",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -33,27 +33,27 @@
|
|
|
33
33
|
"!*/__tests__"
|
|
34
34
|
],
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@loopback/boot": "^5.0.
|
|
37
|
-
"@loopback/core": "^4.0.
|
|
38
|
-
"@loopback/rest": "^12.0.
|
|
36
|
+
"@loopback/boot": "^5.0.6",
|
|
37
|
+
"@loopback/core": "^4.0.6",
|
|
38
|
+
"@loopback/rest": "^12.0.6"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"debug": "^4.3.4",
|
|
42
42
|
"tslib": "^2.4.1",
|
|
43
|
-
"typeorm": "^0.3.
|
|
43
|
+
"typeorm": "^0.3.11"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@loopback/boot": "^5.0.
|
|
47
|
-
"@loopback/build": "^9.0.
|
|
48
|
-
"@loopback/core": "^4.0.
|
|
49
|
-
"@loopback/eslint-config": "^13.0.
|
|
50
|
-
"@loopback/repository": "^5.1.
|
|
51
|
-
"@loopback/rest": "^12.0.
|
|
52
|
-
"@loopback/testlab": "^5.0.
|
|
46
|
+
"@loopback/boot": "^5.0.6",
|
|
47
|
+
"@loopback/build": "^9.0.6",
|
|
48
|
+
"@loopback/core": "^4.0.6",
|
|
49
|
+
"@loopback/eslint-config": "^13.0.6",
|
|
50
|
+
"@loopback/repository": "^5.1.1",
|
|
51
|
+
"@loopback/rest": "^12.0.6",
|
|
52
|
+
"@loopback/testlab": "^5.0.6",
|
|
53
53
|
"@types/debug": "^4.1.7",
|
|
54
54
|
"@types/json-schema": "^7.0.11",
|
|
55
|
-
"@types/node": "^14.18.
|
|
56
|
-
"sqlite3": "^5.1.
|
|
55
|
+
"@types/node": "^14.18.34",
|
|
56
|
+
"sqlite3": "^5.1.4"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "709a5ecd1ffddeb02262cecabf7b663c7b4d7e47"
|
|
59
59
|
}
|