@twin.org/entity 0.0.3-next.3 → 0.0.3-next.30
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/README.md +1 -5
- package/dist/es/decorators/entityDecorator.js +2 -1
- package/dist/es/decorators/entityDecorator.js.map +1 -1
- package/dist/es/decorators/propertyDecorator.js +1 -0
- package/dist/es/decorators/propertyDecorator.js.map +1 -1
- package/dist/es/utils/decoratorHelper.js +1 -0
- package/dist/es/utils/decoratorHelper.js.map +1 -1
- package/dist/es/utils/entityConditions.js +8 -0
- package/dist/es/utils/entityConditions.js.map +1 -1
- package/dist/types/decorators/entityDecorator.d.ts +1 -0
- package/dist/types/decorators/propertyDecorator.d.ts +1 -0
- package/dist/types/utils/decoratorHelper.d.ts +1 -0
- package/docs/changelog.md +529 -1
- package/docs/examples.md +70 -1
- package/docs/reference/classes/DecoratorHelper.md +2 -2
- package/docs/reference/classes/EntityConditions.md +2 -2
- package/docs/reference/classes/EntitySchemaHelper.md +6 -6
- package/docs/reference/classes/EntitySorter.md +4 -4
- package/docs/reference/interfaces/IComparator.md +3 -3
- package/docs/reference/interfaces/IComparatorGroup.md +3 -3
- package/docs/reference/interfaces/IEntitySchema.md +5 -5
- package/docs/reference/interfaces/IEntitySchemaOptions.md +2 -2
- package/docs/reference/interfaces/IEntitySchemaProperty.md +20 -20
- package/docs/reference/interfaces/IEntitySort.md +3 -3
- package/docs/reference/variables/ComparisonOperator.md +9 -9
- package/docs/reference/variables/EntitySchemaPropertyFormat.md +17 -17
- package/docs/reference/variables/EntitySchemaPropertyType.md +6 -6
- package/docs/reference/variables/LogicalOperator.md +2 -2
- package/docs/reference/variables/SortDirection.md +2 -2
- package/package.json +5 -4
|
@@ -14,7 +14,7 @@ Class to perform sort operations on entities.
|
|
|
14
14
|
|
|
15
15
|
## Methods
|
|
16
16
|
|
|
17
|
-
### sort()
|
|
17
|
+
### sort() {#sort}
|
|
18
18
|
|
|
19
19
|
> `static` **sort**\<`T`\>(`entities`, `entitySorters?`): `T`[]
|
|
20
20
|
|
|
@@ -48,9 +48,9 @@ The sorted list.
|
|
|
48
48
|
|
|
49
49
|
***
|
|
50
50
|
|
|
51
|
-
### compare()
|
|
51
|
+
### compare() {#compare}
|
|
52
52
|
|
|
53
|
-
> `static` **compare**\<`T`\>(`entity1`, `entity2`, `prop`, `type`, `direction
|
|
53
|
+
> `static` **compare**\<`T`\>(`entity1`, `entity2`, `prop`, `type`, `direction?`): `number`
|
|
54
54
|
|
|
55
55
|
Compare two properties.
|
|
56
56
|
|
|
@@ -86,7 +86,7 @@ The property to compare.
|
|
|
86
86
|
|
|
87
87
|
The type of the property.
|
|
88
88
|
|
|
89
|
-
##### direction
|
|
89
|
+
##### direction?
|
|
90
90
|
|
|
91
91
|
[`SortDirection`](../type-aliases/SortDirection.md) = `SortDirection.Ascending`
|
|
92
92
|
|
|
@@ -4,7 +4,7 @@ Interface defining comparator operator.
|
|
|
4
4
|
|
|
5
5
|
## Properties
|
|
6
6
|
|
|
7
|
-
### property
|
|
7
|
+
### property {#property}
|
|
8
8
|
|
|
9
9
|
> **property**: `string`
|
|
10
10
|
|
|
@@ -12,7 +12,7 @@ The name of the property in the object to check.
|
|
|
12
12
|
|
|
13
13
|
***
|
|
14
14
|
|
|
15
|
-
### value
|
|
15
|
+
### value {#value}
|
|
16
16
|
|
|
17
17
|
> **value**: `unknown`
|
|
18
18
|
|
|
@@ -20,7 +20,7 @@ The value of the property to check.
|
|
|
20
20
|
|
|
21
21
|
***
|
|
22
22
|
|
|
23
|
-
### comparison
|
|
23
|
+
### comparison {#comparison}
|
|
24
24
|
|
|
25
25
|
> **comparison**: [`ComparisonOperator`](../type-aliases/ComparisonOperator.md)
|
|
26
26
|
|
|
@@ -10,7 +10,7 @@ Interface defining condition group operator.
|
|
|
10
10
|
|
|
11
11
|
## Properties
|
|
12
12
|
|
|
13
|
-
### conditions
|
|
13
|
+
### conditions {#conditions}
|
|
14
14
|
|
|
15
15
|
> **conditions**: [`EntityCondition`](../type-aliases/EntityCondition.md)\<`T`\>[]
|
|
16
16
|
|
|
@@ -18,8 +18,8 @@ The conditions to join in a group.
|
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
### logicalOperator?
|
|
21
|
+
### logicalOperator? {#logicaloperator}
|
|
22
22
|
|
|
23
|
-
> `optional` **logicalOperator
|
|
23
|
+
> `optional` **logicalOperator?**: [`LogicalOperator`](../type-aliases/LogicalOperator.md)
|
|
24
24
|
|
|
25
25
|
The logical operator to use.
|
|
@@ -10,7 +10,7 @@ Definition for an entity schema.
|
|
|
10
10
|
|
|
11
11
|
## Properties
|
|
12
12
|
|
|
13
|
-
### type
|
|
13
|
+
### type {#type}
|
|
14
14
|
|
|
15
15
|
> **type**: `string` \| `undefined`
|
|
16
16
|
|
|
@@ -18,16 +18,16 @@ The type of the entity.
|
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
### options?
|
|
21
|
+
### options? {#options}
|
|
22
22
|
|
|
23
|
-
> `optional` **options
|
|
23
|
+
> `optional` **options?**: [`IEntitySchemaOptions`](IEntitySchemaOptions.md)
|
|
24
24
|
|
|
25
25
|
The options for the entity.
|
|
26
26
|
|
|
27
27
|
***
|
|
28
28
|
|
|
29
|
-
### properties?
|
|
29
|
+
### properties? {#properties}
|
|
30
30
|
|
|
31
|
-
> `optional` **properties
|
|
31
|
+
> `optional` **properties?**: [`IEntitySchemaProperty`](IEntitySchemaProperty.md)\<`T`\>[]
|
|
32
32
|
|
|
33
33
|
The properties of the entity.
|
|
@@ -10,7 +10,7 @@ Definition for an entity schema property.
|
|
|
10
10
|
|
|
11
11
|
## Properties
|
|
12
12
|
|
|
13
|
-
### property
|
|
13
|
+
### property {#property}
|
|
14
14
|
|
|
15
15
|
> **property**: keyof `T`
|
|
16
16
|
|
|
@@ -18,7 +18,7 @@ The property name from the entity.
|
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
### type
|
|
21
|
+
### type {#type}
|
|
22
22
|
|
|
23
23
|
> **type**: [`EntitySchemaPropertyType`](../type-aliases/EntitySchemaPropertyType.md)
|
|
24
24
|
|
|
@@ -26,72 +26,72 @@ The type of the property.
|
|
|
26
26
|
|
|
27
27
|
***
|
|
28
28
|
|
|
29
|
-
### format?
|
|
29
|
+
### format? {#format}
|
|
30
30
|
|
|
31
|
-
> `optional` **format
|
|
31
|
+
> `optional` **format?**: [`EntitySchemaPropertyFormat`](../type-aliases/EntitySchemaPropertyFormat.md)
|
|
32
32
|
|
|
33
33
|
The format of the property.
|
|
34
34
|
|
|
35
35
|
***
|
|
36
36
|
|
|
37
|
-
### isPrimary?
|
|
37
|
+
### isPrimary? {#isprimary}
|
|
38
38
|
|
|
39
|
-
> `optional` **isPrimary
|
|
39
|
+
> `optional` **isPrimary?**: `boolean`
|
|
40
40
|
|
|
41
41
|
Is this the primary index property.
|
|
42
42
|
|
|
43
43
|
***
|
|
44
44
|
|
|
45
|
-
### isSecondary?
|
|
45
|
+
### isSecondary? {#issecondary}
|
|
46
46
|
|
|
47
|
-
> `optional` **isSecondary
|
|
47
|
+
> `optional` **isSecondary?**: `boolean`
|
|
48
48
|
|
|
49
49
|
Is this a secondary index property.
|
|
50
50
|
|
|
51
51
|
***
|
|
52
52
|
|
|
53
|
-
### sortDirection?
|
|
53
|
+
### sortDirection? {#sortdirection}
|
|
54
54
|
|
|
55
|
-
> `optional` **sortDirection
|
|
55
|
+
> `optional` **sortDirection?**: [`SortDirection`](../type-aliases/SortDirection.md)
|
|
56
56
|
|
|
57
57
|
Default sort direction for this field, leave empty if not sortable.
|
|
58
58
|
|
|
59
59
|
***
|
|
60
60
|
|
|
61
|
-
### optional?
|
|
61
|
+
### optional? {#optional}
|
|
62
62
|
|
|
63
|
-
> `optional` **optional
|
|
63
|
+
> `optional` **optional?**: `boolean`
|
|
64
64
|
|
|
65
65
|
Is the property optional.
|
|
66
66
|
|
|
67
67
|
***
|
|
68
68
|
|
|
69
|
-
### itemType?
|
|
69
|
+
### itemType? {#itemtype}
|
|
70
70
|
|
|
71
|
-
> `optional` **itemType
|
|
71
|
+
> `optional` **itemType?**: [`EntitySchemaPropertyType`](../type-aliases/EntitySchemaPropertyType.md)
|
|
72
72
|
|
|
73
73
|
The type of the item (only applies when type is `array`).
|
|
74
74
|
|
|
75
75
|
***
|
|
76
76
|
|
|
77
|
-
### itemTypeRef?
|
|
77
|
+
### itemTypeRef? {#itemtyperef}
|
|
78
78
|
|
|
79
|
-
> `optional` **itemTypeRef
|
|
79
|
+
> `optional` **itemTypeRef?**: `string`
|
|
80
80
|
|
|
81
81
|
The type ref of the item (only applies when type is either `array` or `object`).
|
|
82
82
|
|
|
83
83
|
***
|
|
84
84
|
|
|
85
|
-
### description?
|
|
85
|
+
### description? {#description}
|
|
86
86
|
|
|
87
|
-
> `optional` **description
|
|
87
|
+
> `optional` **description?**: `string`
|
|
88
88
|
|
|
89
89
|
Description of the object.
|
|
90
90
|
|
|
91
91
|
***
|
|
92
92
|
|
|
93
|
-
### examples?
|
|
93
|
+
### examples? {#examples}
|
|
94
94
|
|
|
95
|
-
> `optional` **examples
|
|
95
|
+
> `optional` **examples?**: `unknown`[]
|
|
96
96
|
|
|
97
97
|
Examples of the property values.
|
|
@@ -10,7 +10,7 @@ Definition of an entity property sort details.
|
|
|
10
10
|
|
|
11
11
|
## Properties
|
|
12
12
|
|
|
13
|
-
### property
|
|
13
|
+
### property {#property}
|
|
14
14
|
|
|
15
15
|
> **property**: keyof `T`
|
|
16
16
|
|
|
@@ -18,7 +18,7 @@ The name of the property.
|
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
### type
|
|
21
|
+
### type {#type}
|
|
22
22
|
|
|
23
23
|
> **type**: [`EntitySchemaPropertyType`](../type-aliases/EntitySchemaPropertyType.md)
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@ The type of the property.
|
|
|
26
26
|
|
|
27
27
|
***
|
|
28
28
|
|
|
29
|
-
### sortDirection
|
|
29
|
+
### sortDirection {#sortdirection}
|
|
30
30
|
|
|
31
31
|
> **sortDirection**: [`SortDirection`](../type-aliases/SortDirection.md)
|
|
32
32
|
|
|
@@ -6,43 +6,43 @@ The types of comparisons.
|
|
|
6
6
|
|
|
7
7
|
## Type Declaration
|
|
8
8
|
|
|
9
|
-
### Equals
|
|
9
|
+
### Equals {#equals}
|
|
10
10
|
|
|
11
11
|
> `readonly` **Equals**: `"equals"` = `"equals"`
|
|
12
12
|
|
|
13
13
|
Equals.
|
|
14
14
|
|
|
15
|
-
### NotEquals
|
|
15
|
+
### NotEquals {#notequals}
|
|
16
16
|
|
|
17
17
|
> `readonly` **NotEquals**: `"not-equals"` = `"not-equals"`
|
|
18
18
|
|
|
19
19
|
Not Equals.
|
|
20
20
|
|
|
21
|
-
### GreaterThan
|
|
21
|
+
### GreaterThan {#greaterthan}
|
|
22
22
|
|
|
23
23
|
> `readonly` **GreaterThan**: `"greater-than"` = `"greater-than"`
|
|
24
24
|
|
|
25
25
|
Greater Than.
|
|
26
26
|
|
|
27
|
-
### GreaterThanOrEqual
|
|
27
|
+
### GreaterThanOrEqual {#greaterthanorequal}
|
|
28
28
|
|
|
29
29
|
> `readonly` **GreaterThanOrEqual**: `"greater-than-or-equal"` = `"greater-than-or-equal"`
|
|
30
30
|
|
|
31
31
|
Greater Than Or Equal.
|
|
32
32
|
|
|
33
|
-
### LessThan
|
|
33
|
+
### LessThan {#lessthan}
|
|
34
34
|
|
|
35
35
|
> `readonly` **LessThan**: `"less-than"` = `"less-than"`
|
|
36
36
|
|
|
37
37
|
Less Than.
|
|
38
38
|
|
|
39
|
-
### LessThanOrEqual
|
|
39
|
+
### LessThanOrEqual {#lessthanorequal}
|
|
40
40
|
|
|
41
41
|
> `readonly` **LessThanOrEqual**: `"less-than-or-equal"` = `"less-than-or-equal"`
|
|
42
42
|
|
|
43
43
|
Less Than Or Equal.
|
|
44
44
|
|
|
45
|
-
### Includes
|
|
45
|
+
### Includes {#includes}
|
|
46
46
|
|
|
47
47
|
> `readonly` **Includes**: `"includes"` = `"includes"`
|
|
48
48
|
|
|
@@ -51,7 +51,7 @@ A string in a substring.
|
|
|
51
51
|
A set contains an element.
|
|
52
52
|
A list contains an element.
|
|
53
53
|
|
|
54
|
-
### NotIncludes
|
|
54
|
+
### NotIncludes {#notincludes}
|
|
55
55
|
|
|
56
56
|
> `readonly` **NotIncludes**: `"not-includes"` = `"not-includes"`
|
|
57
57
|
|
|
@@ -60,7 +60,7 @@ A string not in a substring.
|
|
|
60
60
|
A set does not contain an element.
|
|
61
61
|
A list does not contain an element.
|
|
62
62
|
|
|
63
|
-
### In
|
|
63
|
+
### In {#in}
|
|
64
64
|
|
|
65
65
|
> `readonly` **In**: `"in"` = `"in"`
|
|
66
66
|
|
|
@@ -6,103 +6,103 @@ Definition of the entity property format.
|
|
|
6
6
|
|
|
7
7
|
## Type Declaration
|
|
8
8
|
|
|
9
|
-
### Uuid
|
|
9
|
+
### Uuid {#uuid}
|
|
10
10
|
|
|
11
11
|
> `readonly` **Uuid**: `"uuid"` = `"uuid"`
|
|
12
12
|
|
|
13
13
|
UUID.
|
|
14
14
|
|
|
15
|
-
### Uri
|
|
15
|
+
### Uri {#uri}
|
|
16
16
|
|
|
17
17
|
> `readonly` **Uri**: `"uri"` = `"uri"`
|
|
18
18
|
|
|
19
19
|
URI.
|
|
20
20
|
|
|
21
|
-
### Email
|
|
21
|
+
### Email {#email}
|
|
22
22
|
|
|
23
23
|
> `readonly` **Email**: `"email"` = `"email"`
|
|
24
24
|
|
|
25
25
|
email.
|
|
26
26
|
|
|
27
|
-
### Int8
|
|
27
|
+
### Int8 {#int8}
|
|
28
28
|
|
|
29
29
|
> `readonly` **Int8**: `"int8"` = `"int8"`
|
|
30
30
|
|
|
31
31
|
int8.
|
|
32
32
|
|
|
33
|
-
### Uint8
|
|
33
|
+
### Uint8 {#uint8}
|
|
34
34
|
|
|
35
35
|
> `readonly` **Uint8**: `"uint8"` = `"uint8"`
|
|
36
36
|
|
|
37
37
|
uint8.
|
|
38
38
|
|
|
39
|
-
### Int16
|
|
39
|
+
### Int16 {#int16}
|
|
40
40
|
|
|
41
41
|
> `readonly` **Int16**: `"int16"` = `"int16"`
|
|
42
42
|
|
|
43
43
|
int16.
|
|
44
44
|
|
|
45
|
-
### Uint16
|
|
45
|
+
### Uint16 {#uint16}
|
|
46
46
|
|
|
47
47
|
> `readonly` **Uint16**: `"uint16"` = `"uint16"`
|
|
48
48
|
|
|
49
49
|
uint16.
|
|
50
50
|
|
|
51
|
-
### Int32
|
|
51
|
+
### Int32 {#int32}
|
|
52
52
|
|
|
53
53
|
> `readonly` **Int32**: `"int32"` = `"int32"`
|
|
54
54
|
|
|
55
55
|
int32.
|
|
56
56
|
|
|
57
|
-
### Uint32
|
|
57
|
+
### Uint32 {#uint32}
|
|
58
58
|
|
|
59
59
|
> `readonly` **Uint32**: `"uint32"` = `"uint32"`
|
|
60
60
|
|
|
61
61
|
uint32.
|
|
62
62
|
|
|
63
|
-
### Float
|
|
63
|
+
### Float {#float}
|
|
64
64
|
|
|
65
65
|
> `readonly` **Float**: `"float"` = `"float"`
|
|
66
66
|
|
|
67
67
|
float.
|
|
68
68
|
|
|
69
|
-
### Double
|
|
69
|
+
### Double {#double}
|
|
70
70
|
|
|
71
71
|
> `readonly` **Double**: `"double"` = `"double"`
|
|
72
72
|
|
|
73
73
|
double.
|
|
74
74
|
|
|
75
|
-
### Int64
|
|
75
|
+
### Int64 {#int64}
|
|
76
76
|
|
|
77
77
|
> `readonly` **Int64**: `"int64"` = `"int64"`
|
|
78
78
|
|
|
79
79
|
int64.
|
|
80
80
|
|
|
81
|
-
### Uint64
|
|
81
|
+
### Uint64 {#uint64}
|
|
82
82
|
|
|
83
83
|
> `readonly` **Uint64**: `"uint64"` = `"uint64"`
|
|
84
84
|
|
|
85
85
|
uint64.
|
|
86
86
|
|
|
87
|
-
### Date
|
|
87
|
+
### Date {#date}
|
|
88
88
|
|
|
89
89
|
> `readonly` **Date**: `"date"` = `"date"`
|
|
90
90
|
|
|
91
91
|
date.
|
|
92
92
|
|
|
93
|
-
### Time
|
|
93
|
+
### Time {#time}
|
|
94
94
|
|
|
95
95
|
> `readonly` **Time**: `"time"` = `"time"`
|
|
96
96
|
|
|
97
97
|
time.
|
|
98
98
|
|
|
99
|
-
### DateTime
|
|
99
|
+
### DateTime {#datetime}
|
|
100
100
|
|
|
101
101
|
> `readonly` **DateTime**: `"date-time"` = `"date-time"`
|
|
102
102
|
|
|
103
103
|
date-time.
|
|
104
104
|
|
|
105
|
-
### Json
|
|
105
|
+
### Json {#json}
|
|
106
106
|
|
|
107
107
|
> `readonly` **Json**: `"json"` = `"json"`
|
|
108
108
|
|
|
@@ -6,37 +6,37 @@ Definition of the entity property types.
|
|
|
6
6
|
|
|
7
7
|
## Type Declaration
|
|
8
8
|
|
|
9
|
-
### String
|
|
9
|
+
### String {#string}
|
|
10
10
|
|
|
11
11
|
> `readonly` **String**: `"string"` = `"string"`
|
|
12
12
|
|
|
13
13
|
String.
|
|
14
14
|
|
|
15
|
-
### Number
|
|
15
|
+
### Number {#number}
|
|
16
16
|
|
|
17
17
|
> `readonly` **Number**: `"number"` = `"number"`
|
|
18
18
|
|
|
19
19
|
Number.
|
|
20
20
|
|
|
21
|
-
### Integer
|
|
21
|
+
### Integer {#integer}
|
|
22
22
|
|
|
23
23
|
> `readonly` **Integer**: `"integer"` = `"integer"`
|
|
24
24
|
|
|
25
25
|
Integer.
|
|
26
26
|
|
|
27
|
-
### Boolean
|
|
27
|
+
### Boolean {#boolean}
|
|
28
28
|
|
|
29
29
|
> `readonly` **Boolean**: `"boolean"` = `"boolean"`
|
|
30
30
|
|
|
31
31
|
Boolean.
|
|
32
32
|
|
|
33
|
-
### Array
|
|
33
|
+
### Array {#array}
|
|
34
34
|
|
|
35
35
|
> `readonly` **Array**: `"array"` = `"array"`
|
|
36
36
|
|
|
37
37
|
Array.
|
|
38
38
|
|
|
39
|
-
### Object
|
|
39
|
+
### Object {#object}
|
|
40
40
|
|
|
41
41
|
> `readonly` **Object**: `"object"` = `"object"`
|
|
42
42
|
|
|
@@ -6,13 +6,13 @@ The logical operators for condition combining.
|
|
|
6
6
|
|
|
7
7
|
## Type Declaration
|
|
8
8
|
|
|
9
|
-
### And
|
|
9
|
+
### And {#and}
|
|
10
10
|
|
|
11
11
|
> `readonly` **And**: `"and"` = `"and"`
|
|
12
12
|
|
|
13
13
|
Logical operator AND.
|
|
14
14
|
|
|
15
|
-
### Or
|
|
15
|
+
### Or {#or}
|
|
16
16
|
|
|
17
17
|
> `readonly` **Or**: `"or"` = `"or"`
|
|
18
18
|
|
|
@@ -6,13 +6,13 @@ The sort directions.
|
|
|
6
6
|
|
|
7
7
|
## Type Declaration
|
|
8
8
|
|
|
9
|
-
### Ascending
|
|
9
|
+
### Ascending {#ascending}
|
|
10
10
|
|
|
11
11
|
> `readonly` **Ascending**: `"asc"` = `"asc"`
|
|
12
12
|
|
|
13
13
|
Ascending.
|
|
14
14
|
|
|
15
|
-
### Descending
|
|
15
|
+
### Descending {#descending}
|
|
16
16
|
|
|
17
17
|
> `readonly` **Descending**: `"desc"` = `"desc"`
|
|
18
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/entity",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.30",
|
|
4
4
|
"description": "Helpers for defining and working with entities",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,9 +14,10 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/core": "0.0.3-next.
|
|
18
|
-
"@twin.org/nameof": "0.0.3-next.
|
|
19
|
-
"reflect-metadata": "0.2.2"
|
|
17
|
+
"@twin.org/core": "0.0.3-next.30",
|
|
18
|
+
"@twin.org/nameof": "0.0.3-next.30",
|
|
19
|
+
"reflect-metadata": "0.2.2",
|
|
20
|
+
"tslib": "2.8.1"
|
|
20
21
|
},
|
|
21
22
|
"main": "./dist/es/index.js",
|
|
22
23
|
"types": "./dist/types/index.d.ts",
|