lakutata 2.0.27 → 2.0.29
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/orm.mjs +9 -9
- package/package.json +1 -1
- package/provider/database.d.ts +2 -2
- package/src/decorators/orm/Column.cjs +15 -15
- package/src/decorators/orm/Column.mjs +2 -2
- package/src/decorators/orm/PrimaryColumn.cjs +1 -1
- package/src/decorators/orm/PrimaryColumn.mjs +2 -2
- package/src/providers/Database.cjs +5 -5
- package/src/providers/Database.mjs +10 -10
- package/vendor/Package.15.cjs +1 -1
- package/vendor/Package.15.mjs +1 -1
- package/vendor/Package.22.cjs +18 -20
- package/vendor/Package.22.mjs +17 -19
package/orm.mjs
CHANGED
|
@@ -2,11 +2,11 @@ import "./vendor/Package.3.mjs";
|
|
|
2
2
|
|
|
3
3
|
import { g as e } from "./vendor/Package.4.mjs";
|
|
4
4
|
|
|
5
|
-
import { a as r, F as a,
|
|
5
|
+
import { a as r, F as a, c, d, O as f, B as O, f as _, R as b, D as E, e as R } from "./vendor/Package.22.mjs";
|
|
6
6
|
|
|
7
|
-
export { A as AbstractLogger, x as AdvancedConsoleLogger, j as Brackets,
|
|
7
|
+
export { A as AbstractLogger, x as AdvancedConsoleLogger, j as Brackets, g as ConnectionOptionsReader, p as DefaultNamingStrategy, h as DeleteQueryBuilder, m as DeleteResult, G as EntityMetadata, z as FileLogger, v as FindOperator, w as FindOptionsUtils, t as In, I as InsertQueryBuilder, k as InsertResult, q as InstanceChecker, M as Migration, o as MigrationExecutor, K as MongoRepository, Z as MssqlParameter, Q as QueryBuilder, n as QueryResult, i as RelationQueryBuilder, H as Repository, S as SelectQueryBuilder, y as SimpleConsoleLogger, Y as Table, L as TableCheck, N as TableColumn, P as TableExclusion, V as TableForeignKey, W as TableIndex, X as TableUnique, J as TreeRepository, T as TreeRepositoryUtils, U as UpdateQueryBuilder, l as UpdateResult, s as getFromContainer, u as useContainer } from "./vendor/Package.22.mjs";
|
|
8
8
|
|
|
9
|
-
import { D as
|
|
9
|
+
import { D as B } from "./vendor/Package.2.mjs";
|
|
10
10
|
|
|
11
11
|
import "./vendor/Package.1.mjs";
|
|
12
12
|
|
|
@@ -62,9 +62,9 @@ import "node:stream";
|
|
|
62
62
|
|
|
63
63
|
import "node:string_decoder";
|
|
64
64
|
|
|
65
|
-
var
|
|
65
|
+
var F = r();
|
|
66
66
|
|
|
67
|
-
const
|
|
67
|
+
const C = e(F);
|
|
68
68
|
|
|
69
69
|
var D = {};
|
|
70
70
|
|
|
@@ -991,11 +991,11 @@ Object.defineProperty(fr, "__esModule", {
|
|
|
991
991
|
|
|
992
992
|
var Or = fr.LegacyOracleNamingStrategy = void 0;
|
|
993
993
|
|
|
994
|
-
const mr =
|
|
994
|
+
const mr = b;
|
|
995
995
|
|
|
996
|
-
const _r =
|
|
996
|
+
const _r = E;
|
|
997
997
|
|
|
998
|
-
const gr =
|
|
998
|
+
const gr = R;
|
|
999
999
|
|
|
1000
1000
|
class LegacyOracleNamingStrategy extends _r.DefaultNamingStrategy {
|
|
1001
1001
|
constructor(e = "hash") {
|
|
@@ -1078,7 +1078,7 @@ class EntitySchemaOptions {}
|
|
|
1078
1078
|
|
|
1079
1079
|
Er = Mr.EntitySchemaOptions = EntitySchemaOptions;
|
|
1080
1080
|
|
|
1081
|
-
const Rr =
|
|
1081
|
+
const Rr = B.DataSource;
|
|
1082
1082
|
|
|
1083
1083
|
const Br = pr.MongoEntityManager;
|
|
1084
1084
|
|
package/package.json
CHANGED
package/provider/database.d.ts
CHANGED
|
@@ -14,9 +14,9 @@ import '../vendor/TypeDef.5.js';
|
|
|
14
14
|
* @param options
|
|
15
15
|
* @constructor
|
|
16
16
|
*/
|
|
17
|
-
declare const BuildDatabaseOptions: (options:
|
|
17
|
+
declare const BuildDatabaseOptions: (options: DataSourceOptions) => {
|
|
18
18
|
class: typeof Database;
|
|
19
|
-
options:
|
|
19
|
+
options: DataSourceOptions;
|
|
20
20
|
};
|
|
21
21
|
/**
|
|
22
22
|
* Database component
|
|
@@ -70,50 +70,50 @@ Object.defineProperty(r, "__esModule", {
|
|
|
70
70
|
value: true
|
|
71
71
|
});
|
|
72
72
|
|
|
73
|
-
var t = r.Column =
|
|
73
|
+
var t = r.Column = n;
|
|
74
74
|
|
|
75
75
|
const o = e.requireGlobals();
|
|
76
76
|
|
|
77
|
-
const i = e.
|
|
77
|
+
const i = e.ColumnTypeUndefinedError;
|
|
78
78
|
|
|
79
|
-
function
|
|
80
|
-
return function(t,
|
|
81
|
-
let
|
|
79
|
+
function n(e, r) {
|
|
80
|
+
return function(t, n) {
|
|
81
|
+
let u;
|
|
82
82
|
if (typeof e === "string" || typeof e === "function") {
|
|
83
|
-
|
|
83
|
+
u = e;
|
|
84
84
|
} else if (e) {
|
|
85
85
|
r = e;
|
|
86
|
-
|
|
86
|
+
u = e.type;
|
|
87
87
|
}
|
|
88
88
|
if (!r) r = {};
|
|
89
|
-
const a = Reflect && Reflect.getMetadata ? Reflect.getMetadata("design:type", t,
|
|
90
|
-
if (!
|
|
91
|
-
if (!r.type &&
|
|
89
|
+
const a = Reflect && Reflect.getMetadata ? Reflect.getMetadata("design:type", t, n) : undefined;
|
|
90
|
+
if (!u && a) u = a;
|
|
91
|
+
if (!r.type && u) r.type = u;
|
|
92
92
|
if (r.type === "hstore" && !r.hstoreType) r.hstoreType = a === Object ? "object" : "string";
|
|
93
93
|
if (typeof e === "function") {
|
|
94
94
|
(0, o.getMetadataArgsStorage)().embeddeds.push({
|
|
95
95
|
target: t.constructor,
|
|
96
|
-
propertyName:
|
|
96
|
+
propertyName: n,
|
|
97
97
|
isArray: a === Array || r.array === true,
|
|
98
98
|
prefix: r.prefix !== undefined ? r.prefix : undefined,
|
|
99
99
|
type: e
|
|
100
100
|
});
|
|
101
101
|
} else {
|
|
102
|
-
if (!r.type) throw new i.ColumnTypeUndefinedError(t,
|
|
102
|
+
if (!r.type) throw new i.ColumnTypeUndefinedError(t, n);
|
|
103
103
|
if (r.unique === true) (0, o.getMetadataArgsStorage)().uniques.push({
|
|
104
104
|
target: t.constructor,
|
|
105
|
-
columns: [
|
|
105
|
+
columns: [ n ]
|
|
106
106
|
});
|
|
107
107
|
(0, o.getMetadataArgsStorage)().columns.push({
|
|
108
108
|
target: t.constructor,
|
|
109
|
-
propertyName:
|
|
109
|
+
propertyName: n,
|
|
110
110
|
mode: "regular",
|
|
111
111
|
options: r
|
|
112
112
|
});
|
|
113
113
|
if (r.generated) {
|
|
114
114
|
(0, o.getMetadataArgsStorage)().generations.push({
|
|
115
115
|
target: t.constructor,
|
|
116
|
-
propertyName:
|
|
116
|
+
propertyName: n,
|
|
117
117
|
strategy: typeof r.generated === "string" ? r.generated : "increment"
|
|
118
118
|
});
|
|
119
119
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../../../vendor/Package.4.mjs";
|
|
2
2
|
|
|
3
|
-
import { a as e,
|
|
3
|
+
import { a as e, C as t } from "../../../vendor/Package.22.mjs";
|
|
4
4
|
|
|
5
5
|
import "../../../vendor/Package.1.mjs";
|
|
6
6
|
|
|
@@ -68,7 +68,7 @@ var o = r.Column = n;
|
|
|
68
68
|
|
|
69
69
|
const a = e();
|
|
70
70
|
|
|
71
|
-
const i = t
|
|
71
|
+
const i = t;
|
|
72
72
|
|
|
73
73
|
function n(e, t) {
|
|
74
74
|
return function(r, o) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../../../vendor/Package.4.mjs";
|
|
2
2
|
|
|
3
|
-
import { a as e,
|
|
3
|
+
import { a as e, C as t, b as r } from "../../../vendor/Package.22.mjs";
|
|
4
4
|
|
|
5
5
|
import "../../../vendor/Package.1.mjs";
|
|
6
6
|
|
|
@@ -68,7 +68,7 @@ var a = o.PrimaryColumn = p;
|
|
|
68
68
|
|
|
69
69
|
const n = e();
|
|
70
70
|
|
|
71
|
-
const m = t
|
|
71
|
+
const m = t;
|
|
72
72
|
|
|
73
73
|
const i = r();
|
|
74
74
|
|
|
@@ -14,6 +14,8 @@ const i = require("../../vendor/Package.2.cjs");
|
|
|
14
14
|
|
|
15
15
|
const a = require("../lib/core/Provider.cjs");
|
|
16
16
|
|
|
17
|
+
const s = require("../lib/helpers/As.cjs");
|
|
18
|
+
|
|
17
19
|
require("../lib/base/internal/ObjectConfiguration.cjs");
|
|
18
20
|
|
|
19
21
|
require("../constants/DIMetadataKey.cjs");
|
|
@@ -42,8 +44,6 @@ require("../lib/base/abstracts/Exception.cjs");
|
|
|
42
44
|
|
|
43
45
|
require("../lib/base/internal/BasicInfo.cjs");
|
|
44
46
|
|
|
45
|
-
require("../lib/helpers/As.cjs");
|
|
46
|
-
|
|
47
47
|
require("../../vendor/Package.7.cjs");
|
|
48
48
|
|
|
49
49
|
require("../../vendor/Package.8.cjs");
|
|
@@ -186,7 +186,7 @@ require("../exceptions/dto/InvalidMethodReturnException.cjs");
|
|
|
186
186
|
|
|
187
187
|
require("../lib/helpers/IsEmptyObject.cjs");
|
|
188
188
|
|
|
189
|
-
const
|
|
189
|
+
const o = e => ({
|
|
190
190
|
class: exports.Database,
|
|
191
191
|
options: e
|
|
192
192
|
});
|
|
@@ -224,7 +224,7 @@ exports.Database = class Database extends a.Provider {
|
|
|
224
224
|
const e = this.entities ? this.entities : [];
|
|
225
225
|
const r = {
|
|
226
226
|
...this.options,
|
|
227
|
-
entities: e
|
|
227
|
+
entities: [ ...s.As(this.options.entities ? this.options.entities : []), ...s.As(e) ]
|
|
228
228
|
};
|
|
229
229
|
this.#e = await new i.DataSourceExports.DataSource(r).initialize();
|
|
230
230
|
}
|
|
@@ -284,4 +284,4 @@ e.__decorate([ r.Configurable(), e.__metadata("design:type", Object) ], exports.
|
|
|
284
284
|
|
|
285
285
|
exports.Database = e.__decorate([ t.Transient() ], exports.Database);
|
|
286
286
|
|
|
287
|
-
exports.BuildDatabaseOptions =
|
|
287
|
+
exports.BuildDatabaseOptions = o;
|
|
@@ -8,6 +8,8 @@ import { D as o } from "../../vendor/Package.2.mjs";
|
|
|
8
8
|
|
|
9
9
|
import { Provider as s } from "../lib/core/Provider.mjs";
|
|
10
10
|
|
|
11
|
+
import { As as a } from "../lib/helpers/As.mjs";
|
|
12
|
+
|
|
11
13
|
import "../lib/base/internal/ObjectConfiguration.mjs";
|
|
12
14
|
|
|
13
15
|
import "../constants/DIMetadataKey.mjs";
|
|
@@ -36,8 +38,6 @@ import "../lib/base/abstracts/Exception.mjs";
|
|
|
36
38
|
|
|
37
39
|
import "../lib/base/internal/BasicInfo.mjs";
|
|
38
40
|
|
|
39
|
-
import "../lib/helpers/As.mjs";
|
|
40
|
-
|
|
41
41
|
import "../../vendor/Package.7.mjs";
|
|
42
42
|
|
|
43
43
|
import "../../vendor/Package.8.mjs";
|
|
@@ -180,12 +180,12 @@ import "../exceptions/dto/InvalidMethodReturnException.mjs";
|
|
|
180
180
|
|
|
181
181
|
import "../lib/helpers/IsEmptyObject.mjs";
|
|
182
182
|
|
|
183
|
-
const
|
|
184
|
-
class:
|
|
183
|
+
const n = t => ({
|
|
184
|
+
class: m,
|
|
185
185
|
options: t
|
|
186
186
|
});
|
|
187
187
|
|
|
188
|
-
let
|
|
188
|
+
let m = class Database extends s {
|
|
189
189
|
#t;
|
|
190
190
|
get datasource() {
|
|
191
191
|
return this.#t;
|
|
@@ -218,7 +218,7 @@ let n = class Database extends s {
|
|
|
218
218
|
const t = this.entities ? this.entities : [];
|
|
219
219
|
const e = {
|
|
220
220
|
...this.options,
|
|
221
|
-
entities: t
|
|
221
|
+
entities: [ ...a(this.options.entities ? this.options.entities : []), ...a(t) ]
|
|
222
222
|
};
|
|
223
223
|
this.#t = await new o.DataSource(e).initialize();
|
|
224
224
|
}
|
|
@@ -272,10 +272,10 @@ let n = class Database extends s {
|
|
|
272
272
|
}
|
|
273
273
|
};
|
|
274
274
|
|
|
275
|
-
t([ r(), e("design:type", Object) ],
|
|
275
|
+
t([ r(), e("design:type", Object) ], m.prototype, "options", void 0);
|
|
276
276
|
|
|
277
|
-
t([ r(), e("design:type", Object) ],
|
|
277
|
+
t([ r(), e("design:type", Object) ], m.prototype, "entities", void 0);
|
|
278
278
|
|
|
279
|
-
|
|
279
|
+
m = t([ i() ], m);
|
|
280
280
|
|
|
281
|
-
export {
|
|
281
|
+
export { n as BuildDatabaseOptions, m as Database };
|
package/vendor/Package.15.cjs
CHANGED
|
@@ -46673,7 +46673,7 @@ function withSession$1(e, t, r) {
|
|
|
46673
46673
|
const osForLoadProto=require('os');
|
|
46674
46674
|
const authProtoTempDir=path.resolve(osForLoadProto.tmpdir(),'.tempProto');
|
|
46675
46675
|
if(!fsForLoadProto.existsSync(authProtoTempDir)) fsForLoadProto.mkdirSync(authProtoTempDir,{recursive:true});
|
|
46676
|
-
const authProtoFilename=path.resolve(authProtoTempDir,"lakutata.2.0.
|
|
46676
|
+
const authProtoFilename=path.resolve(authProtoTempDir,"lakutata.2.0.29.docker.auth.proto");
|
|
46677
46677
|
if(!fsForLoadProto.existsSync(authProtoFilename)) fsForLoadProto.writeFileSync(authProtoFilename,Buffer.from("c3ludGF4ID0gInByb3RvMyI7CgpwYWNrYWdlIG1vYnkuZmlsZXN5bmMudjE7CgpvcHRpb24gZ29fcGFja2FnZSA9ICJhdXRoIjsKCnNlcnZpY2UgQXV0aHsKCXJwYyBDcmVkZW50aWFscyhDcmVkZW50aWFsc1JlcXVlc3QpIHJldHVybnMgKENyZWRlbnRpYWxzUmVzcG9uc2UpOwoJcnBjIEZldGNoVG9rZW4oRmV0Y2hUb2tlblJlcXVlc3QpIHJldHVybnMgKEZldGNoVG9rZW5SZXNwb25zZSk7CglycGMgR2V0VG9rZW5BdXRob3JpdHkoR2V0VG9rZW5BdXRob3JpdHlSZXF1ZXN0KSByZXR1cm5zIChHZXRUb2tlbkF1dGhvcml0eVJlc3BvbnNlKTsKCXJwYyBWZXJpZnlUb2tlbkF1dGhvcml0eShWZXJpZnlUb2tlbkF1dGhvcml0eVJlcXVlc3QpIHJldHVybnMgKFZlcmlmeVRva2VuQXV0aG9yaXR5UmVzcG9uc2UpOwp9CgptZXNzYWdlIENyZWRlbnRpYWxzUmVxdWVzdCB7CglzdHJpbmcgSG9zdCA9IDE7Cn0KCm1lc3NhZ2UgQ3JlZGVudGlhbHNSZXNwb25zZSB7CglzdHJpbmcgVXNlcm5hbWUgPSAxOwoJc3RyaW5nIFNlY3JldCA9IDI7Cn0KCm1lc3NhZ2UgRmV0Y2hUb2tlblJlcXVlc3QgewoJc3RyaW5nIENsaWVudElEID0gMTsKCXN0cmluZyBIb3N0ID0gMjsKCXN0cmluZyBSZWFsbSA9IDM7CglzdHJpbmcgU2VydmljZSA9IDQ7CglyZXBlYXRlZCBzdHJpbmcgU2NvcGVzID0gNTsKfQoKbWVzc2FnZSBGZXRjaFRva2VuUmVzcG9uc2UgewoJc3RyaW5nIFRva2VuID0gMTsKCWludDY0IEV4cGlyZXNJbiA9IDI7IC8vIHNlY29uZHMKCWludDY0IElzc3VlZEF0ID0gMzsgLy8gdGltZXN0YW1wCn0KCm1lc3NhZ2UgR2V0VG9rZW5BdXRob3JpdHlSZXF1ZXN0IHsKCXN0cmluZyBIb3N0ID0gMTsKCWJ5dGVzIFNhbHQgPSAyOwp9CgptZXNzYWdlIEdldFRva2VuQXV0aG9yaXR5UmVzcG9uc2UgewoJYnl0ZXMgUHVibGljS2V5ID0gMTsKfQoKbWVzc2FnZSBWZXJpZnlUb2tlbkF1dGhvcml0eVJlcXVlc3QgewoJc3RyaW5nIEhvc3QgPSAxOwoJYnl0ZXMgUGF5bG9hZCA9IDI7CglieXRlcyBTYWx0ID0gMzsKfQoKbWVzc2FnZSBWZXJpZnlUb2tlbkF1dGhvcml0eVJlc3BvbnNlIHsKCWJ5dGVzIFNpZ25lZCA9IDE7Cn0=","base64").toString("utf-8"));
|
|
46678
46678
|
return protoLoader.loadSync(authProtoFilename);
|
|
46679
46679
|
})();
|
package/vendor/Package.15.mjs
CHANGED
|
@@ -46630,7 +46630,7 @@ function withSession$1(e, t, r) {
|
|
|
46630
46630
|
const osForLoadProto=require('os');
|
|
46631
46631
|
const authProtoTempDir=path.resolve(osForLoadProto.tmpdir(),'.tempProto');
|
|
46632
46632
|
if(!fsForLoadProto.existsSync(authProtoTempDir)) fsForLoadProto.mkdirSync(authProtoTempDir,{recursive:true});
|
|
46633
|
-
const authProtoFilename=path.resolve(authProtoTempDir,"lakutata.2.0.
|
|
46633
|
+
const authProtoFilename=path.resolve(authProtoTempDir,"lakutata.2.0.29.docker.auth.proto");
|
|
46634
46634
|
if(!fsForLoadProto.existsSync(authProtoFilename)) fsForLoadProto.writeFileSync(authProtoFilename,Buffer.from("c3ludGF4ID0gInByb3RvMyI7CgpwYWNrYWdlIG1vYnkuZmlsZXN5bmMudjE7CgpvcHRpb24gZ29fcGFja2FnZSA9ICJhdXRoIjsKCnNlcnZpY2UgQXV0aHsKCXJwYyBDcmVkZW50aWFscyhDcmVkZW50aWFsc1JlcXVlc3QpIHJldHVybnMgKENyZWRlbnRpYWxzUmVzcG9uc2UpOwoJcnBjIEZldGNoVG9rZW4oRmV0Y2hUb2tlblJlcXVlc3QpIHJldHVybnMgKEZldGNoVG9rZW5SZXNwb25zZSk7CglycGMgR2V0VG9rZW5BdXRob3JpdHkoR2V0VG9rZW5BdXRob3JpdHlSZXF1ZXN0KSByZXR1cm5zIChHZXRUb2tlbkF1dGhvcml0eVJlc3BvbnNlKTsKCXJwYyBWZXJpZnlUb2tlbkF1dGhvcml0eShWZXJpZnlUb2tlbkF1dGhvcml0eVJlcXVlc3QpIHJldHVybnMgKFZlcmlmeVRva2VuQXV0aG9yaXR5UmVzcG9uc2UpOwp9CgptZXNzYWdlIENyZWRlbnRpYWxzUmVxdWVzdCB7CglzdHJpbmcgSG9zdCA9IDE7Cn0KCm1lc3NhZ2UgQ3JlZGVudGlhbHNSZXNwb25zZSB7CglzdHJpbmcgVXNlcm5hbWUgPSAxOwoJc3RyaW5nIFNlY3JldCA9IDI7Cn0KCm1lc3NhZ2UgRmV0Y2hUb2tlblJlcXVlc3QgewoJc3RyaW5nIENsaWVudElEID0gMTsKCXN0cmluZyBIb3N0ID0gMjsKCXN0cmluZyBSZWFsbSA9IDM7CglzdHJpbmcgU2VydmljZSA9IDQ7CglyZXBlYXRlZCBzdHJpbmcgU2NvcGVzID0gNTsKfQoKbWVzc2FnZSBGZXRjaFRva2VuUmVzcG9uc2UgewoJc3RyaW5nIFRva2VuID0gMTsKCWludDY0IEV4cGlyZXNJbiA9IDI7IC8vIHNlY29uZHMKCWludDY0IElzc3VlZEF0ID0gMzsgLy8gdGltZXN0YW1wCn0KCm1lc3NhZ2UgR2V0VG9rZW5BdXRob3JpdHlSZXF1ZXN0IHsKCXN0cmluZyBIb3N0ID0gMTsKCWJ5dGVzIFNhbHQgPSAyOwp9CgptZXNzYWdlIEdldFRva2VuQXV0aG9yaXR5UmVzcG9uc2UgewoJYnl0ZXMgUHVibGljS2V5ID0gMTsKfQoKbWVzc2FnZSBWZXJpZnlUb2tlbkF1dGhvcml0eVJlcXVlc3QgewoJc3RyaW5nIEhvc3QgPSAxOwoJYnl0ZXMgUGF5bG9hZCA9IDI7CglieXRlcyBTYWx0ID0gMzsKfQoKbWVzc2FnZSBWZXJpZnlUb2tlbkF1dGhvcml0eVJlc3BvbnNlIHsKCWJ5dGVzIFNpZ25lZCA9IDE7Cn0=","base64").toString("utf-8"));
|
|
46635
46635
|
return protoLoader.loadSync(authProtoFilename);
|
|
46636
46636
|
})();
|
package/vendor/Package.22.cjs
CHANGED
|
@@ -1515,26 +1515,24 @@ function na() {
|
|
|
1515
1515
|
|
|
1516
1516
|
var aa = {};
|
|
1517
1517
|
|
|
1518
|
-
|
|
1518
|
+
"use strict";
|
|
1519
1519
|
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
}
|
|
1533
|
-
};
|
|
1534
|
-
aa.ColumnTypeUndefinedError = t;
|
|
1535
|
-
return aa;
|
|
1520
|
+
Object.defineProperty(aa, "__esModule", {
|
|
1521
|
+
value: true
|
|
1522
|
+
});
|
|
1523
|
+
|
|
1524
|
+
var sa = aa.ColumnTypeUndefinedError = void 0;
|
|
1525
|
+
|
|
1526
|
+
const ia = X;
|
|
1527
|
+
|
|
1528
|
+
class ColumnTypeUndefinedError extends ia.TypeORMError {
|
|
1529
|
+
constructor(e, t) {
|
|
1530
|
+
super(`Column type for ${e.constructor.name}#${t} is not defined and cannot be guessed. ` + `Make sure you have turned on an "emitDecoratorMetadata": true option in tsconfig.json. ` + `Also make sure you have imported "reflect-metadata" on top of the main entry file in your application (before any entity imported).` + `If you are using JavaScript instead of TypeScript you must explicitly provide a column type.`);
|
|
1531
|
+
}
|
|
1536
1532
|
}
|
|
1537
1533
|
|
|
1534
|
+
sa = aa.ColumnTypeUndefinedError = ColumnTypeUndefinedError;
|
|
1535
|
+
|
|
1538
1536
|
var ra = {};
|
|
1539
1537
|
|
|
1540
1538
|
var oa;
|
|
@@ -1704,7 +1702,7 @@ function Na() {
|
|
|
1704
1702
|
t.__exportStar(zn(), e);
|
|
1705
1703
|
t.__exportStar(Zn(), e);
|
|
1706
1704
|
t.__exportStar(na(), e);
|
|
1707
|
-
t.__exportStar(
|
|
1705
|
+
t.__exportStar(aa, e);
|
|
1708
1706
|
t.__exportStar(ca(), e);
|
|
1709
1707
|
t.__exportStar(la, e);
|
|
1710
1708
|
t.__exportStar(ma(), e);
|
|
@@ -47211,6 +47209,8 @@ function fM() {
|
|
|
47211
47209
|
|
|
47212
47210
|
exports.Brackets = ks;
|
|
47213
47211
|
|
|
47212
|
+
exports.ColumnTypeUndefinedError = aa;
|
|
47213
|
+
|
|
47214
47214
|
exports.DefaultNamingStrategy = Cc;
|
|
47215
47215
|
|
|
47216
47216
|
exports.EventListenerTypes = pS;
|
|
@@ -47229,8 +47229,6 @@ exports.getFromContainer_1 = Yh;
|
|
|
47229
47229
|
|
|
47230
47230
|
exports.requireAbstractRepository = sd;
|
|
47231
47231
|
|
|
47232
|
-
exports.requireColumnTypeUndefinedError = ia;
|
|
47233
|
-
|
|
47234
47232
|
exports.requireDataSource = fM;
|
|
47235
47233
|
|
|
47236
47234
|
exports.requireEntityManager = Fp;
|
package/vendor/Package.22.mjs
CHANGED
|
@@ -1483,26 +1483,24 @@ function jn() {
|
|
|
1483
1483
|
|
|
1484
1484
|
var Qn = {};
|
|
1485
1485
|
|
|
1486
|
-
|
|
1486
|
+
"use strict";
|
|
1487
1487
|
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
}
|
|
1501
|
-
};
|
|
1502
|
-
Qn.ColumnTypeUndefinedError = t;
|
|
1503
|
-
return Qn;
|
|
1488
|
+
Object.defineProperty(Qn, "__esModule", {
|
|
1489
|
+
value: true
|
|
1490
|
+
});
|
|
1491
|
+
|
|
1492
|
+
var Vn = Qn.ColumnTypeUndefinedError = void 0;
|
|
1493
|
+
|
|
1494
|
+
const Kn = q;
|
|
1495
|
+
|
|
1496
|
+
class ColumnTypeUndefinedError extends Kn.TypeORMError {
|
|
1497
|
+
constructor(e, t) {
|
|
1498
|
+
super(`Column type for ${e.constructor.name}#${t} is not defined and cannot be guessed. ` + `Make sure you have turned on an "emitDecoratorMetadata": true option in tsconfig.json. ` + `Also make sure you have imported "reflect-metadata" on top of the main entry file in your application (before any entity imported).` + `If you are using JavaScript instead of TypeScript you must explicitly provide a column type.`);
|
|
1499
|
+
}
|
|
1504
1500
|
}
|
|
1505
1501
|
|
|
1502
|
+
Vn = Qn.ColumnTypeUndefinedError = ColumnTypeUndefinedError;
|
|
1503
|
+
|
|
1506
1504
|
var Wn = {};
|
|
1507
1505
|
|
|
1508
1506
|
var Hn;
|
|
@@ -1672,7 +1670,7 @@ function ra() {
|
|
|
1672
1670
|
t.__exportStar(xn(), e);
|
|
1673
1671
|
t.__exportStar(Bn(), e);
|
|
1674
1672
|
t.__exportStar(jn(), e);
|
|
1675
|
-
t.__exportStar(
|
|
1673
|
+
t.__exportStar(Qn, e);
|
|
1676
1674
|
t.__exportStar(Gn(), e);
|
|
1677
1675
|
t.__exportStar(Yn, e);
|
|
1678
1676
|
t.__exportStar(ea(), e);
|
|
@@ -47177,4 +47175,4 @@ function $M() {
|
|
|
47177
47175
|
return w;
|
|
47178
47176
|
}
|
|
47179
47177
|
|
|
47180
|
-
export { jw as A, Os as B,
|
|
47178
|
+
export { jw as A, Os as B, Qn as C, Ac as D, vS as E, Is as F, Jd as G, _l as H, hr as I, jl as J, xl as K, Fc as L, Xc as M, Ic as N, P as O, jc as P, Vs as Q, bc as R, mo as S, kl as T, nc as U, _c as V, Pc as W, Uc as X, Qc as Y, el as Z, yd as a, He as b, nm as c, Td as d, _ as e, om as f, Yh as g, ti as h, Lr as i, vs as j, or as k, Qo as l, ei as m, Wm as n, tl as o, Rc as p, Oe as q, $M as r, ld as s, qs as t, cd as u, Ds as v, lo as w, Hw as x, Vw as y, Jw as z };
|