@twin.org/logging-models 0.0.1-next.14 → 0.0.1-next.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/docs/changelog.md +7 -0
- package/docs/reference/classes/MultiLoggingConnector.md +2 -2
- package/docs/reference/classes/SilentLoggingConnector.md +2 -2
- package/docs/reference/interfaces/ILoggingComponent.md +2 -2
- package/docs/reference/interfaces/ILoggingConnector.md +2 -2
- package/package.json +1 -1
package/docs/changelog.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# @twin.org/logging-models - Changelog
|
2
2
|
|
3
|
+
## [0.0.1-next.15](https://github.com/twinfoundation/logging/compare/logging-models-v0.0.1-next.14...logging-models-v0.0.1-next.15) (2025-06-12)
|
4
|
+
|
5
|
+
|
6
|
+
### Features
|
7
|
+
|
8
|
+
* update dependencies ([976fc06](https://github.com/twinfoundation/logging/commit/976fc06976c4899769486b7cb2e827c407d7fc89))
|
9
|
+
|
3
10
|
## [0.0.1-next.14](https://github.com/twinfoundation/logging/compare/logging-models-v0.0.1-next.13...logging-models-v0.0.1-next.14) (2025-04-17)
|
4
11
|
|
5
12
|
|
@@ -76,7 +76,7 @@ Nothing.
|
|
76
76
|
|
77
77
|
### query()
|
78
78
|
|
79
|
-
> **query**(`conditions?`, `sortProperties?`, `properties?`, `cursor?`, `pageSize?`): `Promise`\<\{ `entities`: `Partial`\<[`ILogEntry`](../interfaces/ILogEntry.md)\>[]; `cursor
|
79
|
+
> **query**(`conditions?`, `sortProperties?`, `properties?`, `cursor?`, `pageSize?`): `Promise`\<\{ `entities`: `Partial`\<[`ILogEntry`](../interfaces/ILogEntry.md)\>[]; `cursor?`: `string`; \}\>
|
80
80
|
|
81
81
|
Query the log entries.
|
82
82
|
|
@@ -114,7 +114,7 @@ The maximum number of entities in a page.
|
|
114
114
|
|
115
115
|
#### Returns
|
116
116
|
|
117
|
-
`Promise`\<\{ `entities`: `Partial`\<[`ILogEntry`](../interfaces/ILogEntry.md)\>[]; `cursor
|
117
|
+
`Promise`\<\{ `entities`: `Partial`\<[`ILogEntry`](../interfaces/ILogEntry.md)\>[]; `cursor?`: `string`; \}\>
|
118
118
|
|
119
119
|
All the entities for the storage matching the conditions,
|
120
120
|
and a cursor which can be used to request more entities.
|
@@ -66,7 +66,7 @@ Nothing.
|
|
66
66
|
|
67
67
|
### query()
|
68
68
|
|
69
|
-
> **query**(`conditions?`, `sortProperties?`, `properties?`, `cursor?`, `pageSize?`): `Promise`\<\{ `entities`: `Partial`\<[`ILogEntry`](../interfaces/ILogEntry.md)\>[]; `cursor
|
69
|
+
> **query**(`conditions?`, `sortProperties?`, `properties?`, `cursor?`, `pageSize?`): `Promise`\<\{ `entities`: `Partial`\<[`ILogEntry`](../interfaces/ILogEntry.md)\>[]; `cursor?`: `string`; \}\>
|
70
70
|
|
71
71
|
Query the log entries.
|
72
72
|
|
@@ -104,7 +104,7 @@ The maximum number of entities in a page.
|
|
104
104
|
|
105
105
|
#### Returns
|
106
106
|
|
107
|
-
`Promise`\<\{ `entities`: `Partial`\<[`ILogEntry`](../interfaces/ILogEntry.md)\>[]; `cursor
|
107
|
+
`Promise`\<\{ `entities`: `Partial`\<[`ILogEntry`](../interfaces/ILogEntry.md)\>[]; `cursor?`: `string`; \}\>
|
108
108
|
|
109
109
|
All the entities for the storage matching the conditions,
|
110
110
|
and a cursor which can be used to request more entities.
|
@@ -32,7 +32,7 @@ Nothing.
|
|
32
32
|
|
33
33
|
### query()
|
34
34
|
|
35
|
-
> **query**(`level?`, `source?`, `timeStart?`, `timeEnd?`, `cursor?`, `pageSize?`): `Promise`\<\{ `entities`: [`ILogEntry`](ILogEntry.md)[]; `cursor
|
35
|
+
> **query**(`level?`, `source?`, `timeStart?`, `timeEnd?`, `cursor?`, `pageSize?`): `Promise`\<\{ `entities`: [`ILogEntry`](ILogEntry.md)[]; `cursor?`: `string`; \}\>
|
36
36
|
|
37
37
|
Query the log entries.
|
38
38
|
|
@@ -76,7 +76,7 @@ The maximum number of entities in a page.
|
|
76
76
|
|
77
77
|
#### Returns
|
78
78
|
|
79
|
-
`Promise`\<\{ `entities`: [`ILogEntry`](ILogEntry.md)[]; `cursor
|
79
|
+
`Promise`\<\{ `entities`: [`ILogEntry`](ILogEntry.md)[]; `cursor?`: `string`; \}\>
|
80
80
|
|
81
81
|
All the entities for the storage matching the conditions,
|
82
82
|
and a cursor which can be used to request more entities.
|
@@ -32,7 +32,7 @@ Nothing.
|
|
32
32
|
|
33
33
|
### query()?
|
34
34
|
|
35
|
-
> `optional` **query**(`conditions?`, `sortProperties?`, `properties?`, `cursor?`, `pageSize?`): `Promise`\<\{ `entities`: `Partial`\<[`ILogEntry`](ILogEntry.md)\>[]; `cursor
|
35
|
+
> `optional` **query**(`conditions?`, `sortProperties?`, `properties?`, `cursor?`, `pageSize?`): `Promise`\<\{ `entities`: `Partial`\<[`ILogEntry`](ILogEntry.md)\>[]; `cursor?`: `string`; \}\>
|
36
36
|
|
37
37
|
Query the log entries.
|
38
38
|
|
@@ -70,7 +70,7 @@ The maximum number of entities in a page.
|
|
70
70
|
|
71
71
|
#### Returns
|
72
72
|
|
73
|
-
`Promise`\<\{ `entities`: `Partial`\<[`ILogEntry`](ILogEntry.md)\>[]; `cursor
|
73
|
+
`Promise`\<\{ `entities`: `Partial`\<[`ILogEntry`](ILogEntry.md)\>[]; `cursor?`: `string`; \}\>
|
74
74
|
|
75
75
|
All the entities for the storage matching the conditions,
|
76
76
|
and a cursor which can be used to request more entities.
|