@twin.org/api-processors 0.0.2-next.10 → 0.0.2-next.11

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.
@@ -13,7 +13,7 @@ export declare class NodeIdentityProcessor implements IBaseRouteProcessor {
13
13
  * @param nodeLoggingComponentType The node logging component type.
14
14
  * @returns Nothing.
15
15
  */
16
- start(nodeIdentity: string, nodeLoggingComponentType?: string): Promise<void>;
16
+ start(nodeIdentity?: string, nodeLoggingComponentType?: string): Promise<void>;
17
17
  /**
18
18
  * Pre process the REST request for the specified route.
19
19
  * @param request The incoming request.
package/docs/changelog.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @twin.org/api-processors - Changelog
2
2
 
3
+ ## [0.0.2-next.11](https://github.com/twinfoundation/api/compare/api-processors-v0.0.2-next.10...api-processors-v0.0.2-next.11) (2025-09-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/api-models bumped from 0.0.2-next.10 to 0.0.2-next.11
16
+
3
17
  ## [0.0.2-next.10](https://github.com/twinfoundation/api/compare/api-processors-v0.0.2-next.9...api-processors-v0.0.2-next.10) (2025-09-23)
4
18
 
5
19
 
@@ -32,13 +32,13 @@ Runtime name for the class.
32
32
 
33
33
  ### start()
34
34
 
35
- > **start**(`nodeIdentity`, `nodeLoggingComponentType?`): `Promise`\<`void`\>
35
+ > **start**(`nodeIdentity?`, `nodeLoggingComponentType?`): `Promise`\<`void`\>
36
36
 
37
37
  The service needs to be started when the application is initialized.
38
38
 
39
39
  #### Parameters
40
40
 
41
- ##### nodeIdentity
41
+ ##### nodeIdentity?
42
42
 
43
43
  `string`
44
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/api-processors",
3
- "version": "0.0.2-next.10",
3
+ "version": "0.0.2-next.11",
4
4
  "description": "Route processors for use with API servers",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,7 +14,7 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/api-models": "0.0.2-next.10",
17
+ "@twin.org/api-models": "0.0.2-next.11",
18
18
  "@twin.org/core": "next",
19
19
  "@twin.org/logging-models": "next",
20
20
  "@twin.org/nameof": "next",