@collctiv/l2s-models 1.0.41-beta.14 → 1.0.41-beta.15
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/entities/user.d.ts
CHANGED
|
@@ -3,15 +3,19 @@ import type { Country, Currency } from "../global/types.js";
|
|
|
3
3
|
export declare class OidTestObject2 {
|
|
4
4
|
oid2: string;
|
|
5
5
|
}
|
|
6
|
+
export declare class OidTestObject3 {
|
|
7
|
+
oid3: string;
|
|
8
|
+
}
|
|
6
9
|
export declare class OidTestObject1 {
|
|
7
10
|
oid: string;
|
|
8
11
|
oid2: OidTestObject2;
|
|
12
|
+
oid3: OidTestObject3[];
|
|
9
13
|
}
|
|
10
14
|
export declare class User implements IDataEntity, ICreatable, IModifiable, IUpsertable {
|
|
11
15
|
id: string;
|
|
12
16
|
create_date: Date;
|
|
13
17
|
modified_date: Date | null;
|
|
14
|
-
oid_test: OidTestObject1
|
|
18
|
+
oid_test: OidTestObject1;
|
|
15
19
|
first_name: string;
|
|
16
20
|
last_name: string;
|
|
17
21
|
full_name: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../entities/user.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,KAAK,WAAW,EAChB,KAAK,UAAU,EACf,KAAK,WAAW,EAChB,KAAK,WAAW,EACnB,MAAM,yBAAyB,CAAC;AAEjC,OAAO,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAK5D,qBAAa,cAAc;IAEhB,IAAI,EAAE,MAAM,CAAC;CACvB;AACD,qBAAa,cAAc;IAEhB,GAAG,EAAE,MAAM,CAAC;IAGZ,IAAI,EAAE,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../entities/user.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,KAAK,WAAW,EAChB,KAAK,UAAU,EACf,KAAK,WAAW,EAChB,KAAK,WAAW,EACnB,MAAM,yBAAyB,CAAC;AAEjC,OAAO,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAK5D,qBAAa,cAAc;IAEhB,IAAI,EAAE,MAAM,CAAC;CACvB;AACD,qBAAa,cAAc;IAEhB,IAAI,EAAE,MAAM,CAAC;CACvB;AACD,qBAAa,cAAc;IAEhB,GAAG,EAAE,MAAM,CAAC;IAGZ,IAAI,EAAE,cAAc,CAAC;IAGrB,IAAI,EAAE,cAAc,EAAE,CAAC;CACjC;AAQD,qBAEa,IAAK,YAAW,WAAW,EAAE,UAAU,EAAE,WAAW,EAAE,WAAW;IAEnE,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,IAAI,CAAc;IAC/B,aAAa,EAAE,IAAI,GAAG,IAAI,CAAC;IAO3B,QAAQ,EAAE,cAAc,CAAC;IAOzB,UAAU,EAAE,MAAM,CAAQ;IAG1B,SAAS,EAAE,MAAM,CAAQ;IAGzB,SAAS,EAAE,MAAM,CAAQ;IAGzB,IAAI,EAAE,QAAQ,CAAuB;IAGrC,KAAK,EAAE,MAAM,CAAQ;IAGrB,OAAO,EAAE,OAAO,CAAQ;IAGxB,QAAQ,EAAE,QAAQ,CAAS;IAG3B,aAAa,EAAE,OAAO,CAAS;IAG/B,MAAM,EAAE,UAAU,CAAqB;IAGvC,WAAW,EAAE,OAAO,CAAS;IAG7B,aAAa,EAAE,MAAM,CAAQ;IAG7B,cAAc,EAAE,OAAO,CAAS;gBAEpB,IAAI,GAAE,OAAO,CAAC,IAAI,CAAM;CAG9C;AAED,oBAAY,UAAU;IAClB,MAAM,WAAW;IACjB,aAAa,mBAAmB;IAChC,MAAM,WAAW;IACjB,QAAQ,aAAa;CACxB;AAED,oBAAY,QAAQ;IAChB,UAAU,eAAe;CAC5B"}
|
package/dist/entities/user.js
CHANGED
|
@@ -17,9 +17,17 @@ __decorate([
|
|
|
17
17
|
ObjectId(),
|
|
18
18
|
__metadata("design:type", String)
|
|
19
19
|
], OidTestObject2.prototype, "oid2", void 0);
|
|
20
|
+
export class OidTestObject3 {
|
|
21
|
+
oid3;
|
|
22
|
+
}
|
|
23
|
+
__decorate([
|
|
24
|
+
ObjectId(),
|
|
25
|
+
__metadata("design:type", String)
|
|
26
|
+
], OidTestObject3.prototype, "oid3", void 0);
|
|
20
27
|
export class OidTestObject1 {
|
|
21
28
|
oid;
|
|
22
29
|
oid2;
|
|
30
|
+
oid3;
|
|
23
31
|
}
|
|
24
32
|
__decorate([
|
|
25
33
|
ObjectId(),
|
|
@@ -29,6 +37,10 @@ __decorate([
|
|
|
29
37
|
TypeOfObject(OidTestObject2),
|
|
30
38
|
__metadata("design:type", OidTestObject2)
|
|
31
39
|
], OidTestObject1.prototype, "oid2", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
TypeOfObjectArray(OidTestObject3),
|
|
42
|
+
__metadata("design:type", Array)
|
|
43
|
+
], OidTestObject1.prototype, "oid3", void 0);
|
|
32
44
|
// ---
|
|
33
45
|
let User = class User {
|
|
34
46
|
id;
|
|
@@ -54,8 +66,8 @@ let User = class User {
|
|
|
54
66
|
}
|
|
55
67
|
};
|
|
56
68
|
__decorate([
|
|
57
|
-
|
|
58
|
-
__metadata("design:type",
|
|
69
|
+
TypeOfObject(OidTestObject1),
|
|
70
|
+
__metadata("design:type", OidTestObject1)
|
|
59
71
|
], User.prototype, "oid_test", void 0);
|
|
60
72
|
__decorate([
|
|
61
73
|
Updatable(),
|