@twin.org/logging-service 0.0.1 → 0.0.2-next.1

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.
@@ -155,10 +155,6 @@ async function loggingList(httpRequestContext, componentName, request) {
155
155
  * Service for performing logging operations to a connector.
156
156
  */
157
157
  class LoggingService {
158
- /**
159
- * The namespace for the logging component.
160
- */
161
- static NAMESPACE = "logging";
162
158
  /**
163
159
  * Runtime name for the class.
164
160
  */
@@ -153,10 +153,6 @@ async function loggingList(httpRequestContext, componentName, request) {
153
153
  * Service for performing logging operations to a connector.
154
154
  */
155
155
  class LoggingService {
156
- /**
157
- * The namespace for the logging component.
158
- */
159
- static NAMESPACE = "logging";
160
156
  /**
161
157
  * Runtime name for the class.
162
158
  */
@@ -4,10 +4,6 @@ import type { ILoggingServiceConstructorOptions } from "./models/ILoggingService
4
4
  * Service for performing logging operations to a connector.
5
5
  */
6
6
  export declare class LoggingService implements ILoggingComponent {
7
- /**
8
- * The namespace for the logging component.
9
- */
10
- static readonly NAMESPACE: string;
11
7
  /**
12
8
  * Runtime name for the class.
13
9
  */
package/docs/changelog.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @twin.org/logging-service - Changelog
2
2
 
3
+ ## [0.0.2-next.1](https://github.com/twinfoundation/logging/compare/logging-service-v0.0.2-next.0...logging-service-v0.0.2-next.1) (2025-08-19)
4
+
5
+
6
+ ### Features
7
+
8
+ * add production release automation ([5dbcad8](https://github.com/twinfoundation/logging/commit/5dbcad8b105d749947c4fda19c814373cee2a172))
9
+ * remove unused namespace ([7eb6575](https://github.com/twinfoundation/logging/commit/7eb65758fbdc9a42f68d149702ba03c000556325))
10
+ * update dependencies ([976fc06](https://github.com/twinfoundation/logging/commit/976fc06976c4899769486b7cb2e827c407d7fc89))
11
+ * update framework core ([aac823c](https://github.com/twinfoundation/logging/commit/aac823c2ead88843618b8a82b308d5a793411764))
12
+ * use shared store mechanism ([#20](https://github.com/twinfoundation/logging/issues/20)) ([bbacd31](https://github.com/twinfoundation/logging/commit/bbacd31af991d82d84294ad432a40830692880ca))
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * query params force coercion ([71c5329](https://github.com/twinfoundation/logging/commit/71c53292d300acae0369bd7937c5ca3ab5430689))
18
+
19
+
20
+ ### Dependencies
21
+
22
+ * The following workspace dependencies were updated
23
+ * dependencies
24
+ * @twin.org/logging-models bumped from 0.0.2-next.0 to 0.0.2-next.1
25
+
3
26
  ## 0.0.1 (2025-07-03)
4
27
 
5
28
 
@@ -1,5 +1,5 @@
1
1
  {
2
- "openapi": "3.1.0",
2
+ "openapi": "3.1.1",
3
3
  "info": {
4
4
  "title": "TWIN - Test Endpoints",
5
5
  "description": "REST API for TWIN - Test Endpoints.",
@@ -322,7 +322,7 @@
322
322
  "type": "string",
323
323
  "description": "The stack trace for the error."
324
324
  },
325
- "inner": {
325
+ "cause": {
326
326
  "$ref": "#/components/schemas/Error"
327
327
  }
328
328
  },
@@ -384,6 +384,7 @@
384
384
  "properties": {
385
385
  "entities": {
386
386
  "type": "array",
387
+ "items": false,
387
388
  "description": "The entities, which can be partial if a limited keys list was provided.",
388
389
  "prefixItems": [
389
390
  {
@@ -28,14 +28,6 @@ The options for the connector.
28
28
 
29
29
  ## Properties
30
30
 
31
- ### NAMESPACE
32
-
33
- > `readonly` `static` **NAMESPACE**: `string` = `"logging"`
34
-
35
- The namespace for the logging component.
36
-
37
- ***
38
-
39
31
  ### CLASS\_NAME
40
32
 
41
33
  > `readonly` **CLASS\_NAME**: `string`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/logging-service",
3
- "version": "0.0.1",
3
+ "version": "0.0.2-next.1",
4
4
  "description": "Logging contract implementation and REST endpoint definitions",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,12 +14,12 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/api-models": "^0.0.1",
18
- "@twin.org/core": "^0.0.1",
19
- "@twin.org/entity": "^0.0.1",
20
- "@twin.org/logging-models": "^0.0.1",
21
- "@twin.org/nameof": "^0.0.1",
22
- "@twin.org/web": "^0.0.1"
17
+ "@twin.org/api-models": "next",
18
+ "@twin.org/core": "next",
19
+ "@twin.org/entity": "next",
20
+ "@twin.org/logging-models": "0.0.2-next.1",
21
+ "@twin.org/nameof": "next",
22
+ "@twin.org/web": "next"
23
23
  },
24
24
  "main": "./dist/cjs/index.cjs",
25
25
  "module": "./dist/esm/index.mjs",