@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.
@@ -93,7 +93,7 @@ export interface ApplicationUsingTypeOrm extends Application {
93
93
  connection(options: ConnectionOptions): void;
94
94
  migrateSchema(): Promise<void>;
95
95
  }
96
- export declare type TypeOrmComponentOptions = {
96
+ export type TypeOrmComponentOptions = {
97
97
  [prop: string]: string;
98
98
  };
99
99
  export declare class TypeOrmComponent implements Component {
@@ -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 declare type PropertyType = {
13
+ export type PropertyType = {
14
14
  [propertyName: string]: SchemaObject | ReferenceObject;
15
15
  };
16
- export declare type StringifiedTypeOptions = {
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.5",
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.5",
37
- "@loopback/core": "^4.0.5",
38
- "@loopback/rest": "^12.0.5"
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.10"
43
+ "typeorm": "^0.3.11"
44
44
  },
45
45
  "devDependencies": {
46
- "@loopback/boot": "^5.0.5",
47
- "@loopback/build": "^9.0.5",
48
- "@loopback/core": "^4.0.5",
49
- "@loopback/eslint-config": "^13.0.5",
50
- "@loopback/repository": "^5.1.0",
51
- "@loopback/rest": "^12.0.5",
52
- "@loopback/testlab": "^5.0.5",
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.33",
56
- "sqlite3": "^5.1.2"
55
+ "@types/node": "^14.18.34",
56
+ "sqlite3": "^5.1.4"
57
57
  },
58
- "gitHead": "2d762e2a1bcc73263dd7776e072b3ec3a9279472"
58
+ "gitHead": "709a5ecd1ffddeb02262cecabf7b663c7b4d7e47"
59
59
  }