@twin.org/api-service 0.0.2-next.2 → 0.0.2-next.3

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.
@@ -217,10 +217,6 @@ async function serverSpec(httpRequestContext, componentName, request) {
217
217
  * The information service for the server.
218
218
  */
219
219
  class InformationService {
220
- /**
221
- * The namespace supported by the information service.
222
- */
223
- static NAMESPACE = "information";
224
220
  /**
225
221
  * Runtime name for the class.
226
222
  */
@@ -215,10 +215,6 @@ async function serverSpec(httpRequestContext, componentName, request) {
215
215
  * The information service for the server.
216
216
  */
217
217
  class InformationService {
218
- /**
219
- * The namespace supported by the information service.
220
- */
221
- static NAMESPACE = "information";
222
218
  /**
223
219
  * Runtime name for the class.
224
220
  */
@@ -4,10 +4,6 @@ import type { IInformationServiceConstructorOptions } from "./models/IInformatio
4
4
  * The information service for the server.
5
5
  */
6
6
  export declare class InformationService implements IInformationComponent {
7
- /**
8
- * The namespace supported by the information service.
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,19 @@
1
1
  # @twin.org/api-service - Changelog
2
2
 
3
+ ## [0.0.2-next.3](https://github.com/twinfoundation/api/compare/api-service-v0.0.2-next.2...api-service-v0.0.2-next.3) (2025-07-24)
4
+
5
+
6
+ ### Features
7
+
8
+ * remove unused namespace ([08478f2](https://github.com/twinfoundation/api/commit/08478f27efda9beb0271fdb22f6972e918361965))
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.2 to 0.0.2-next.3
16
+
3
17
  ## [0.0.2-next.2](https://github.com/twinfoundation/api/compare/api-service-v0.0.2-next.1...api-service-v0.0.2-next.2) (2025-07-17)
4
18
 
5
19
 
@@ -28,14 +28,6 @@ The options to create the service.
28
28
 
29
29
  ## Properties
30
30
 
31
- ### NAMESPACE
32
-
33
- > `readonly` `static` **NAMESPACE**: `string` = `"information"`
34
-
35
- The namespace supported by the information service.
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/api-service",
3
- "version": "0.0.2-next.2",
3
+ "version": "0.0.2-next.3",
4
4
  "description": "Information contract implementation and REST endpoint definitions",
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.2",
17
+ "@twin.org/api-models": "0.0.2-next.3",
18
18
  "@twin.org/core": "next",
19
19
  "@twin.org/nameof": "next",
20
20
  "@twin.org/web": "next"