@twin.org/context 0.0.3-next.35 → 0.0.3-next.37

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 CHANGED
@@ -1,6 +1,44 @@
1
1
  # Changelog
2
2
 
3
- ## [0.0.3-next.35](https://github.com/twinfoundation/twin-framework/compare/context-v0.0.3-next.34...context-v0.0.3-next.35) (2026-05-06)
3
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-framework/compare/context-v0.0.3-next.36...context-v0.0.3-next.37) (2026-05-07)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **context:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/core bumped from 0.0.3-next.36 to 0.0.3-next.37
16
+ * @twin.org/nameof bumped from 0.0.3-next.36 to 0.0.3-next.37
17
+ * devDependencies
18
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.36 to 0.0.3-next.37
19
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.36 to 0.0.3-next.37
20
+ * @twin.org/validate-locales bumped from 0.0.3-next.36 to 0.0.3-next.37
21
+
22
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-framework/compare/context-v0.0.3-next.35...context-v0.0.3-next.36) (2026-05-07)
23
+
24
+
25
+ ### Miscellaneous Chores
26
+
27
+ * **context:** Synchronize repo versions
28
+
29
+
30
+ ### Dependencies
31
+
32
+ * The following workspace dependencies were updated
33
+ * dependencies
34
+ * @twin.org/core bumped from 0.0.3-next.35 to 0.0.3-next.36
35
+ * @twin.org/nameof bumped from 0.0.3-next.35 to 0.0.3-next.36
36
+ * devDependencies
37
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.35 to 0.0.3-next.36
38
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.35 to 0.0.3-next.36
39
+ * @twin.org/validate-locales bumped from 0.0.3-next.35 to 0.0.3-next.36
40
+
41
+ ## [0.0.3-next.35](https://github.com/iotaledger/twin-framework/compare/context-v0.0.3-next.34...context-v0.0.3-next.35) (2026-05-06)
4
42
 
5
43
 
6
44
  ### Miscellaneous Chores
@@ -19,7 +57,7 @@
19
57
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.34 to 0.0.3-next.35
20
58
  * @twin.org/validate-locales bumped from 0.0.3-next.34 to 0.0.3-next.35
21
59
 
22
- ## [0.0.3-next.34](https://github.com/twinfoundation/twin-framework/compare/context-v0.0.3-next.33...context-v0.0.3-next.34) (2026-05-06)
60
+ ## [0.0.3-next.34](https://github.com/iotaledger/twin-framework/compare/context-v0.0.3-next.33...context-v0.0.3-next.34) (2026-05-06)
23
61
 
24
62
 
25
63
  ### Miscellaneous Chores
@@ -38,7 +76,7 @@
38
76
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.33 to 0.0.3-next.34
39
77
  * @twin.org/validate-locales bumped from 0.0.3-next.33 to 0.0.3-next.34
40
78
 
41
- ## [0.0.3-next.33](https://github.com/twinfoundation/twin-framework/compare/context-v0.0.3-next.32...context-v0.0.3-next.33) (2026-05-05)
79
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-framework/compare/context-v0.0.3-next.32...context-v0.0.3-next.33) (2026-05-05)
42
80
 
43
81
 
44
82
  ### Miscellaneous Chores
@@ -57,7 +95,7 @@
57
95
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.32 to 0.0.3-next.33
58
96
  * @twin.org/validate-locales bumped from 0.0.3-next.32 to 0.0.3-next.33
59
97
 
60
- ## [0.0.3-next.32](https://github.com/twinfoundation/twin-framework/compare/context-v0.0.3-next.31...context-v0.0.3-next.32) (2026-04-30)
98
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-framework/compare/context-v0.0.3-next.31...context-v0.0.3-next.32) (2026-04-30)
61
99
 
62
100
 
63
101
  ### Miscellaneous Chores
@@ -98,6 +98,32 @@ True if the bootstrapping process was successful.
98
98
 
99
99
  ***
100
100
 
101
+ ### teardown()? {#teardown}
102
+
103
+ > `optional` **teardown**(`nodeLoggingComponentType?`): `Promise`\<`boolean`\>
104
+
105
+ Teardown the component by releasing any resources it holds.
106
+
107
+ #### Parameters
108
+
109
+ ##### nodeLoggingComponentType?
110
+
111
+ `string`
112
+
113
+ The node logging component type.
114
+
115
+ #### Returns
116
+
117
+ `Promise`\<`boolean`\>
118
+
119
+ True if the teardown process was successful.
120
+
121
+ #### Inherited from
122
+
123
+ `IComponent.teardown`
124
+
125
+ ***
126
+
101
127
  ### start()? {#start}
102
128
 
103
129
  > `optional` **start**(`nodeLoggingComponentType?`): `Promise`\<`void`\>
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@twin.org/context",
3
- "version": "0.0.3-next.35",
3
+ "version": "0.0.3-next.37",
4
4
  "description": "Helper methods/classes for context handling",
5
5
  "repository": {
6
6
  "type": "git",
7
- "url": "git+https://github.com/twinfoundation/framework.git",
7
+ "url": "git+https://github.com/iotaledger/framework.git",
8
8
  "directory": "packages/context"
9
9
  },
10
10
  "author": "martyn.janes@iota.org",
@@ -14,8 +14,8 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/core": "0.0.3-next.35",
18
- "@twin.org/nameof": "0.0.3-next.35"
17
+ "@twin.org/core": "0.0.3-next.37",
18
+ "@twin.org/nameof": "0.0.3-next.37"
19
19
  },
20
20
  "main": "./dist/es/index.js",
21
21
  "types": "./dist/types/index.d.ts",
@@ -44,7 +44,7 @@
44
44
  "utilities"
45
45
  ],
46
46
  "bugs": {
47
- "url": "git+https://github.com/twinfoundation/framework/issues"
47
+ "url": "git+https://github.com/iotaledger/framework/issues"
48
48
  },
49
49
  "homepage": "https://twindev.org"
50
50
  }