@twin.org/core 0.0.3-next.3 → 0.0.3-next.31

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.
Files changed (92) hide show
  1. package/README.md +1 -9
  2. package/dist/es/encoding/base32.js +1 -1
  3. package/dist/es/encoding/base32.js.map +1 -1
  4. package/dist/es/factories/factory.js +41 -0
  5. package/dist/es/factories/factory.js.map +1 -1
  6. package/dist/es/helpers/arrayHelper.js.map +1 -1
  7. package/dist/es/helpers/randomHelper.js +50 -2
  8. package/dist/es/helpers/randomHelper.js.map +1 -1
  9. package/dist/es/index.js +2 -1
  10. package/dist/es/index.js.map +1 -1
  11. package/dist/es/types/objectOrArray.js.map +1 -0
  12. package/dist/es/types/singleOccurrenceArray.js +2 -0
  13. package/dist/es/types/singleOccurrenceArray.js.map +1 -0
  14. package/dist/es/types/urn.js +1 -2
  15. package/dist/es/types/urn.js.map +1 -1
  16. package/dist/es/utils/asyncCache.js +102 -75
  17. package/dist/es/utils/asyncCache.js.map +1 -1
  18. package/dist/es/utils/guards.js +16 -0
  19. package/dist/es/utils/guards.js.map +1 -1
  20. package/dist/es/utils/is.js +16 -0
  21. package/dist/es/utils/is.js.map +1 -1
  22. package/dist/types/encoding/base32.d.ts +1 -1
  23. package/dist/types/factories/factory.d.ts +23 -1
  24. package/dist/types/helpers/arrayHelper.d.ts +1 -1
  25. package/dist/types/helpers/randomHelper.d.ts +16 -0
  26. package/dist/types/index.d.ts +2 -1
  27. package/dist/types/types/singleOccurrenceArray.d.ts +9 -0
  28. package/dist/types/utils/asyncCache.d.ts +7 -0
  29. package/dist/types/utils/guards.d.ts +10 -1
  30. package/dist/types/utils/is.d.ts +7 -0
  31. package/docs/changelog.md +541 -1
  32. package/docs/examples.md +308 -1
  33. package/docs/reference/classes/AlreadyExistsError.md +35 -35
  34. package/docs/reference/classes/ArrayHelper.md +2 -2
  35. package/docs/reference/classes/AsyncCache.md +8 -8
  36. package/docs/reference/classes/Base32.md +4 -4
  37. package/docs/reference/classes/Base58.md +3 -3
  38. package/docs/reference/classes/Base64.md +4 -4
  39. package/docs/reference/classes/Base64Url.md +3 -3
  40. package/docs/reference/classes/BaseError.md +34 -34
  41. package/docs/reference/classes/BitString.md +6 -6
  42. package/docs/reference/classes/Coerce.md +11 -11
  43. package/docs/reference/classes/Compression.md +3 -3
  44. package/docs/reference/classes/ConflictError.md +35 -35
  45. package/docs/reference/classes/Converter.md +18 -18
  46. package/docs/reference/classes/EnvHelper.md +1 -1
  47. package/docs/reference/classes/ErrorHelper.md +3 -3
  48. package/docs/reference/classes/Factory.md +112 -18
  49. package/docs/reference/classes/FilenameHelper.md +1 -1
  50. package/docs/reference/classes/GeneralError.md +35 -35
  51. package/docs/reference/classes/GuardError.md +35 -35
  52. package/docs/reference/classes/Guards.md +72 -30
  53. package/docs/reference/classes/HexHelper.md +6 -6
  54. package/docs/reference/classes/I18n.md +14 -14
  55. package/docs/reference/classes/Is.md +67 -39
  56. package/docs/reference/classes/JsonHelper.md +10 -10
  57. package/docs/reference/classes/NotFoundError.md +35 -35
  58. package/docs/reference/classes/NotImplementedError.md +35 -35
  59. package/docs/reference/classes/NotSupportedError.md +35 -35
  60. package/docs/reference/classes/NumberHelper.md +2 -2
  61. package/docs/reference/classes/ObjectHelper.md +32 -32
  62. package/docs/reference/classes/RandomHelper.md +53 -1
  63. package/docs/reference/classes/SharedStore.md +3 -3
  64. package/docs/reference/classes/StringHelper.md +23 -23
  65. package/docs/reference/classes/Uint8ArrayHelper.md +1 -1
  66. package/docs/reference/classes/UnauthorizedError.md +35 -35
  67. package/docs/reference/classes/UnprocessableError.md +35 -35
  68. package/docs/reference/classes/Url.md +8 -8
  69. package/docs/reference/classes/Urn.md +24 -24
  70. package/docs/reference/classes/Validation.md +25 -25
  71. package/docs/reference/classes/ValidationError.md +35 -35
  72. package/docs/reference/index.md +2 -0
  73. package/docs/reference/interfaces/IComponent.md +4 -4
  74. package/docs/reference/interfaces/IError.md +10 -10
  75. package/docs/reference/interfaces/II18nShared.md +4 -4
  76. package/docs/reference/interfaces/IKeyValue.md +2 -2
  77. package/docs/reference/interfaces/ILabelledValue.md +2 -2
  78. package/docs/reference/interfaces/ILocale.md +2 -2
  79. package/docs/reference/interfaces/ILocaleDictionary.md +1 -1
  80. package/docs/reference/interfaces/ILocalesIndex.md +1 -1
  81. package/docs/reference/interfaces/IPatchOperation.md +6 -6
  82. package/docs/reference/interfaces/IUrlParts.md +9 -9
  83. package/docs/reference/interfaces/IValidationFailure.md +4 -4
  84. package/docs/reference/type-aliases/SingleOccurrenceArray.md +15 -0
  85. package/docs/reference/type-aliases/SingleOccurrenceArrayDepthHelper.md +19 -0
  86. package/docs/reference/variables/CoerceType.md +10 -10
  87. package/docs/reference/variables/CompressionType.md +2 -2
  88. package/locales/en.json +5 -2
  89. package/package.json +4 -4
  90. package/dist/es/models/objectOrArray.js.map +0 -1
  91. /package/dist/es/{models → types}/objectOrArray.js +0 -0
  92. /package/dist/types/{models → types}/objectOrArray.d.ts +0 -0
@@ -39,8 +39,9 @@ export * from "./models/ILocalesIndex.js";
39
39
  export * from "./models/IPatchOperation.js";
40
40
  export * from "./models/IUrlParts.js";
41
41
  export * from "./models/IValidationFailure.js";
42
- export * from "./models/objectOrArray.js";
43
42
  export * from "./types/bitString.js";
43
+ export * from "./types/objectOrArray.js";
44
+ export * from "./types/singleOccurrenceArray.js";
44
45
  export * from "./types/url.js";
45
46
  export * from "./types/urn.js";
46
47
  export * from "./utils/asyncCache.js";
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Helper with bounded recursion depth to keep type instantiation tractable.
3
+ */
4
+ export type SingleOccurrenceArrayDepthHelper<T, U, Depth extends 0[]> = Depth["length"] extends 16 ? [U, ...T[]] : [U, ...T[]] | [T, ...SingleOccurrenceArrayDepthHelper<T, U, [0, ...Depth]>];
5
+ /**
6
+ * Utility type to create a non-empty array with values of type T and exactly one value of type U.
7
+ */
8
+ export type SingleOccurrenceArray<T = unknown, U = never> = SingleOccurrenceArrayDepthHelper<T, U, [
9
+ ]>;
@@ -39,4 +39,11 @@ export declare class AsyncCache {
39
39
  * Perform a cleanup of the expired entries in the cache.
40
40
  */
41
41
  static cleanupExpired(): void;
42
+ /**
43
+ * Resolve a waiter by re-running its request method safely.
44
+ * @param requestMethod The method to execute.
45
+ * @param resolve The resolver for the waiter.
46
+ * @param reject The rejector for the waiter.
47
+ */
48
+ private static resolveWaiter;
42
49
  }
@@ -1,4 +1,4 @@
1
- import type { ObjectOrArray } from "../models/objectOrArray.js";
1
+ import type { ObjectOrArray } from "../types/objectOrArray.js";
2
2
  /**
3
3
  * Class to handle guard operations for parameters.
4
4
  */
@@ -221,4 +221,13 @@ export declare class Guards {
221
221
  * @throws GuardError If the value does not match the assertion.
222
222
  */
223
223
  static email(source: string, property: string, value: unknown): asserts value is string;
224
+ /**
225
+ * Is the property a string containing uuidV7.
226
+ * @param source The source of the error.
227
+ * @param property The name of the property.
228
+ * @param value The value to test.
229
+ * @param format The format of the uuidV7, either standard or compact.
230
+ * @throws GuardError If the value does not match the assertion.
231
+ */
232
+ static uuidV7(source: string, property: string, value: unknown, format?: "standard" | "compact"): asserts value is string;
224
233
  }
@@ -220,4 +220,11 @@ export declare class Is {
220
220
  * @returns True if the object is a class, false otherwise.
221
221
  */
222
222
  static class<T = unknown>(obj: unknown): obj is new (...args: any[]) => T;
223
+ /**
224
+ * Is the value a uuidV7 string.
225
+ * @param value The value to test.
226
+ * @param format The format of the UUIDv7 string.
227
+ * @returns True if the value is a uuidV7 string.
228
+ */
229
+ static uuidV7(value: unknown, format?: "standard" | "compact"): value is string;
223
230
  }
package/docs/changelog.md CHANGED
@@ -1,4 +1,544 @@
1
- # @twin.org/core - Changelog
1
+ # Changelog
2
+
3
+ ## [0.0.3-next.31](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.30...core-v0.0.3-next.31) (2026-04-14)
4
+
5
+
6
+ ### Features
7
+
8
+ * improve async cache edge cases ([4e57a6e](https://github.com/twinfoundation/framework/commit/4e57a6ec4113533b0ea903eae7d469200fa1348c))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/nameof bumped from 0.0.3-next.30 to 0.0.3-next.31
16
+ * devDependencies
17
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.30 to 0.0.3-next.31
18
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.30 to 0.0.3-next.31
19
+
20
+ ## [0.0.3-next.30](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.29...core-v0.0.3-next.30) (2026-04-14)
21
+
22
+
23
+ ### Miscellaneous Chores
24
+
25
+ * **core:** Synchronize repo versions
26
+
27
+
28
+ ### Dependencies
29
+
30
+ * The following workspace dependencies were updated
31
+ * dependencies
32
+ * @twin.org/nameof bumped from 0.0.3-next.29 to 0.0.3-next.30
33
+ * devDependencies
34
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.29 to 0.0.3-next.30
35
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.29 to 0.0.3-next.30
36
+
37
+ ## [0.0.3-next.29](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.28...core-v0.0.3-next.29) (2026-04-14)
38
+
39
+
40
+ ### Miscellaneous Chores
41
+
42
+ * **core:** Synchronize repo versions
43
+
44
+
45
+ ### Dependencies
46
+
47
+ * The following workspace dependencies were updated
48
+ * dependencies
49
+ * @twin.org/nameof bumped from 0.0.3-next.28 to 0.0.3-next.29
50
+ * devDependencies
51
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.28 to 0.0.3-next.29
52
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.28 to 0.0.3-next.29
53
+
54
+ ## [0.0.3-next.28](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.27...core-v0.0.3-next.28) (2026-03-27)
55
+
56
+
57
+ ### Miscellaneous Chores
58
+
59
+ * **core:** Synchronize repo versions
60
+
61
+
62
+ ### Dependencies
63
+
64
+ * The following workspace dependencies were updated
65
+ * dependencies
66
+ * @twin.org/nameof bumped from 0.0.3-next.27 to 0.0.3-next.28
67
+ * devDependencies
68
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.27 to 0.0.3-next.28
69
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.27 to 0.0.3-next.28
70
+
71
+ ## [0.0.3-next.27](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.26...core-v0.0.3-next.27) (2026-03-27)
72
+
73
+
74
+ ### Miscellaneous Chores
75
+
76
+ * **core:** Synchronize repo versions
77
+
78
+
79
+ ### Dependencies
80
+
81
+ * The following workspace dependencies were updated
82
+ * dependencies
83
+ * @twin.org/nameof bumped from 0.0.3-next.26 to 0.0.3-next.27
84
+ * devDependencies
85
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.26 to 0.0.3-next.27
86
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.26 to 0.0.3-next.27
87
+
88
+ ## [0.0.3-next.26](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.25...core-v0.0.3-next.26) (2026-03-24)
89
+
90
+
91
+ ### Miscellaneous Chores
92
+
93
+ * **core:** Synchronize repo versions
94
+
95
+
96
+ ### Dependencies
97
+
98
+ * The following workspace dependencies were updated
99
+ * dependencies
100
+ * @twin.org/nameof bumped from 0.0.3-next.25 to 0.0.3-next.26
101
+ * devDependencies
102
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.25 to 0.0.3-next.26
103
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.25 to 0.0.3-next.26
104
+
105
+ ## [0.0.3-next.25](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.24...core-v0.0.3-next.25) (2026-03-23)
106
+
107
+
108
+ ### Bug Fixes
109
+
110
+ * improve exception handling in asyncCache ([c81b29b](https://github.com/twinfoundation/framework/commit/c81b29b660b152d2f0757d323430287e6491bf59))
111
+
112
+
113
+ ### Dependencies
114
+
115
+ * The following workspace dependencies were updated
116
+ * dependencies
117
+ * @twin.org/nameof bumped from 0.0.3-next.24 to 0.0.3-next.25
118
+ * devDependencies
119
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.24 to 0.0.3-next.25
120
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.24 to 0.0.3-next.25
121
+
122
+ ## [0.0.3-next.24](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.23...core-v0.0.3-next.24) (2026-03-19)
123
+
124
+
125
+ ### Bug Fixes
126
+
127
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/twinfoundation/framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
128
+
129
+
130
+ ### Dependencies
131
+
132
+ * The following workspace dependencies were updated
133
+ * dependencies
134
+ * @twin.org/nameof bumped from 0.0.3-next.23 to 0.0.3-next.24
135
+ * devDependencies
136
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.23 to 0.0.3-next.24
137
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.23 to 0.0.3-next.24
138
+
139
+ ## [0.0.3-next.23](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.22...core-v0.0.3-next.23) (2026-03-17)
140
+
141
+
142
+ ### Features
143
+
144
+ * add single occurrence array type ([e890e43](https://github.com/twinfoundation/framework/commit/e890e4399e75ae5097f3ad8b1007321cbb1ed4ac))
145
+ * add single occurrence array type ([#245](https://github.com/twinfoundation/framework/issues/245)) ([771dc78](https://github.com/twinfoundation/framework/commit/771dc78025b5546c9c9681be9494a76ab71171c6))
146
+
147
+
148
+ ### Dependencies
149
+
150
+ * The following workspace dependencies were updated
151
+ * dependencies
152
+ * @twin.org/nameof bumped from 0.0.3-next.22 to 0.0.3-next.23
153
+ * devDependencies
154
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.22 to 0.0.3-next.23
155
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.22 to 0.0.3-next.23
156
+
157
+ ## [0.0.3-next.22](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.21...core-v0.0.3-next.22) (2026-02-26)
158
+
159
+
160
+ ### Features
161
+
162
+ * simplify factory options ([7f85a85](https://github.com/twinfoundation/framework/commit/7f85a8553dd3008364e8e1104f2e6f6b6595d77e))
163
+
164
+
165
+ ### Dependencies
166
+
167
+ * The following workspace dependencies were updated
168
+ * dependencies
169
+ * @twin.org/nameof bumped from 0.0.3-next.21 to 0.0.3-next.22
170
+ * devDependencies
171
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.21 to 0.0.3-next.22
172
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.21 to 0.0.3-next.22
173
+
174
+ ## [0.0.3-next.21](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.20...core-v0.0.3-next.21) (2026-02-26)
175
+
176
+
177
+ ### Features
178
+
179
+ * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
180
+ * add factory.createIfExists ([aad5a53](https://github.com/twinfoundation/framework/commit/aad5a53cef1b1c2e04344ea46244d41e371dff9b))
181
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
182
+ * add Is.class method ([4988205](https://github.com/twinfoundation/framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
183
+ * add isDefault option to factory registration ([a8a700b](https://github.com/twinfoundation/framework/commit/a8a700bb8ddaf7dd5097869a358b8fc5f7c40ce7))
184
+ * add objectHelper.split ([386830a](https://github.com/twinfoundation/framework/commit/386830a77f8e842a5b119be0983708e042c3b14b))
185
+ * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/twinfoundation/framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
186
+ * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
187
+ * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
188
+ * add typeName method to factory ([699fcbd](https://github.com/twinfoundation/framework/commit/699fcbd1168228401ddb81fdacb959b8cdc4206a))
189
+ * add uuidv7 support ([#219](https://github.com/twinfoundation/framework/issues/219)) ([916c657](https://github.com/twinfoundation/framework/commit/916c657d270ce99fafe554233739fdd9ca28635b))
190
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
191
+ * adding link header helper ([#225](https://github.com/twinfoundation/framework/issues/225)) ([703c072](https://github.com/twinfoundation/framework/commit/703c0725aceac6b6ec0c4fa729ef832d12fb3fd7))
192
+ * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
193
+ * additional RSA methods and async ([1fceee2](https://github.com/twinfoundation/framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
194
+ * async cache don't cache failures unless requested ([658ec4b](https://github.com/twinfoundation/framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
195
+ * bump version ([c5354fa](https://github.com/twinfoundation/framework/commit/c5354fa906f4493c70f2642a9175a66780a10636))
196
+ * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
197
+ * expand error params to accept properties ([032e9fd](https://github.com/twinfoundation/framework/commit/032e9fd1388e457cde32ca1005dfe014a5a9c077))
198
+ * factory create and integrity ([#235](https://github.com/twinfoundation/framework/issues/235)) ([9f98b99](https://github.com/twinfoundation/framework/commit/9f98b99daf46eb365346fae49cc4ffba63e74cb3))
199
+ * improve base error data extraction ([dccc933](https://github.com/twinfoundation/framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
200
+ * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
201
+ * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/twinfoundation/framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
202
+ * improve Is.function definition to retain types ([f20b6b0](https://github.com/twinfoundation/framework/commit/f20b6b0dd16e74b75dc359be72b05989305c6410))
203
+ * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
204
+ * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/twinfoundation/framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
205
+ * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/twinfoundation/framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
206
+ * propagate includeStackTrace on error conversion ([818337d](https://github.com/twinfoundation/framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
207
+ * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
208
+ * simplify async set ([#121](https://github.com/twinfoundation/framework/issues/121)) ([2693c32](https://github.com/twinfoundation/framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
209
+ * simplify StringHelper signature ([0390403](https://github.com/twinfoundation/framework/commit/039040344952f91ee3c671249bc0e1c8f3b38e17))
210
+ * support indexed properties set in objects ([b9c001d](https://github.com/twinfoundation/framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
211
+ * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
212
+ * urn random switched to using uuidv7 ([606c9a2](https://github.com/twinfoundation/framework/commit/606c9a2ed68a10fc7fc2bc5f93388c1b71033154))
213
+ * urn random switched to using uuidv7 ([6a29f8b](https://github.com/twinfoundation/framework/commit/6a29f8bd573d06992b7eaa027b1daf4c2a2e1e85))
214
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
215
+ * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
216
+
217
+
218
+ ### Dependencies
219
+
220
+ * The following workspace dependencies were updated
221
+ * dependencies
222
+ * @twin.org/nameof bumped from 0.0.3-next.20 to 0.0.3-next.21
223
+ * devDependencies
224
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.20 to 0.0.3-next.21
225
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.20 to 0.0.3-next.21
226
+
227
+ ## [0.0.3-next.20](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.19...core-v0.0.3-next.20) (2026-02-26)
228
+
229
+
230
+ ### Features
231
+
232
+ * add typeName method to factory ([699fcbd](https://github.com/twinfoundation/framework/commit/699fcbd1168228401ddb81fdacb959b8cdc4206a))
233
+
234
+
235
+ ### Dependencies
236
+
237
+ * The following workspace dependencies were updated
238
+ * dependencies
239
+ * @twin.org/nameof bumped from 0.0.3-next.19 to 0.0.3-next.20
240
+ * devDependencies
241
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.19 to 0.0.3-next.20
242
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.19 to 0.0.3-next.20
243
+
244
+ ## [0.0.3-next.19](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.18...core-v0.0.3-next.19) (2026-02-26)
245
+
246
+
247
+ ### Features
248
+
249
+ * add isDefault option to factory registration ([a8a700b](https://github.com/twinfoundation/framework/commit/a8a700bb8ddaf7dd5097869a358b8fc5f7c40ce7))
250
+
251
+
252
+ ### Dependencies
253
+
254
+ * The following workspace dependencies were updated
255
+ * dependencies
256
+ * @twin.org/nameof bumped from 0.0.3-next.18 to 0.0.3-next.19
257
+ * devDependencies
258
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.18 to 0.0.3-next.19
259
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.18 to 0.0.3-next.19
260
+
261
+ ## [0.0.3-next.18](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.17...core-v0.0.3-next.18) (2026-02-23)
262
+
263
+
264
+ ### Features
265
+
266
+ * add factory.createIfExists ([aad5a53](https://github.com/twinfoundation/framework/commit/aad5a53cef1b1c2e04344ea46244d41e371dff9b))
267
+
268
+
269
+ ### Dependencies
270
+
271
+ * The following workspace dependencies were updated
272
+ * dependencies
273
+ * @twin.org/nameof bumped from 0.0.3-next.17 to 0.0.3-next.18
274
+ * devDependencies
275
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.17 to 0.0.3-next.18
276
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.17 to 0.0.3-next.18
277
+
278
+ ## [0.0.3-next.17](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.16...core-v0.0.3-next.17) (2026-02-09)
279
+
280
+
281
+ ### Features
282
+
283
+ * factory create and integrity ([#235](https://github.com/twinfoundation/framework/issues/235)) ([9f98b99](https://github.com/twinfoundation/framework/commit/9f98b99daf46eb365346fae49cc4ffba63e74cb3))
284
+
285
+
286
+ ### Dependencies
287
+
288
+ * The following workspace dependencies were updated
289
+ * dependencies
290
+ * @twin.org/nameof bumped from 0.0.3-next.16 to 0.0.3-next.17
291
+ * devDependencies
292
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.16 to 0.0.3-next.17
293
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.16 to 0.0.3-next.17
294
+
295
+ ## [0.0.3-next.16](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.15...core-v0.0.3-next.16) (2026-02-06)
296
+
297
+
298
+ ### Features
299
+
300
+ * urn random switched to using uuidv7 ([606c9a2](https://github.com/twinfoundation/framework/commit/606c9a2ed68a10fc7fc2bc5f93388c1b71033154))
301
+
302
+
303
+ ### Dependencies
304
+
305
+ * The following workspace dependencies were updated
306
+ * dependencies
307
+ * @twin.org/nameof bumped from 0.0.3-next.15 to 0.0.3-next.16
308
+ * devDependencies
309
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.15 to 0.0.3-next.16
310
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.15 to 0.0.3-next.16
311
+
312
+ ## [0.0.3-next.15](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.14...core-v0.0.3-next.15) (2026-01-29)
313
+
314
+
315
+ ### Features
316
+
317
+ * urn random switched to using uuidv7 ([6a29f8b](https://github.com/twinfoundation/framework/commit/6a29f8bd573d06992b7eaa027b1daf4c2a2e1e85))
318
+
319
+
320
+ ### Dependencies
321
+
322
+ * The following workspace dependencies were updated
323
+ * dependencies
324
+ * @twin.org/nameof bumped from 0.0.3-next.14 to 0.0.3-next.15
325
+ * devDependencies
326
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.14 to 0.0.3-next.15
327
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.14 to 0.0.3-next.15
328
+
329
+ ## [0.0.3-next.14](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.13...core-v0.0.3-next.14) (2026-01-22)
330
+
331
+
332
+ ### Miscellaneous Chores
333
+
334
+ * **core:** Synchronize repo versions
335
+
336
+
337
+ ### Dependencies
338
+
339
+ * The following workspace dependencies were updated
340
+ * dependencies
341
+ * @twin.org/nameof bumped from 0.0.3-next.13 to 0.0.3-next.14
342
+ * devDependencies
343
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.13 to 0.0.3-next.14
344
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.13 to 0.0.3-next.14
345
+
346
+ ## [0.0.3-next.13](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.12...core-v0.0.3-next.13) (2026-01-08)
347
+
348
+
349
+ ### Miscellaneous Chores
350
+
351
+ * **core:** Synchronize repo versions
352
+
353
+
354
+ ### Dependencies
355
+
356
+ * The following workspace dependencies were updated
357
+ * dependencies
358
+ * @twin.org/nameof bumped from 0.0.3-next.12 to 0.0.3-next.13
359
+ * devDependencies
360
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.12 to 0.0.3-next.13
361
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.12 to 0.0.3-next.13
362
+
363
+ ## [0.0.3-next.12](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.11...core-v0.0.3-next.12) (2026-01-08)
364
+
365
+
366
+ ### Features
367
+
368
+ * adding link header helper ([#225](https://github.com/twinfoundation/framework/issues/225)) ([703c072](https://github.com/twinfoundation/framework/commit/703c0725aceac6b6ec0c4fa729ef832d12fb3fd7))
369
+
370
+
371
+ ### Dependencies
372
+
373
+ * The following workspace dependencies were updated
374
+ * dependencies
375
+ * @twin.org/nameof bumped from 0.0.3-next.11 to 0.0.3-next.12
376
+ * devDependencies
377
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.11 to 0.0.3-next.12
378
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.11 to 0.0.3-next.12
379
+
380
+ ## [0.0.3-next.11](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.10...core-v0.0.3-next.11) (2026-01-07)
381
+
382
+
383
+ ### Miscellaneous Chores
384
+
385
+ * **core:** Synchronize repo versions
386
+
387
+
388
+ ### Dependencies
389
+
390
+ * The following workspace dependencies were updated
391
+ * dependencies
392
+ * @twin.org/nameof bumped from 0.0.3-next.10 to 0.0.3-next.11
393
+ * devDependencies
394
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.10 to 0.0.3-next.11
395
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.10 to 0.0.3-next.11
396
+
397
+ ## [0.0.3-next.10](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.9...core-v0.0.3-next.10) (2026-01-07)
398
+
399
+
400
+ ### Miscellaneous Chores
401
+
402
+ * **core:** Synchronize repo versions
403
+
404
+
405
+ ### Dependencies
406
+
407
+ * The following workspace dependencies were updated
408
+ * dependencies
409
+ * @twin.org/nameof bumped from 0.0.3-next.9 to 0.0.3-next.10
410
+ * devDependencies
411
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.9 to 0.0.3-next.10
412
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.9 to 0.0.3-next.10
413
+
414
+ ## [0.0.3-next.9](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.8...core-v0.0.3-next.9) (2026-01-05)
415
+
416
+
417
+ ### Features
418
+
419
+ * add uuidv7 support ([#219](https://github.com/twinfoundation/framework/issues/219)) ([916c657](https://github.com/twinfoundation/framework/commit/916c657d270ce99fafe554233739fdd9ca28635b))
420
+
421
+
422
+ ### Dependencies
423
+
424
+ * The following workspace dependencies were updated
425
+ * dependencies
426
+ * @twin.org/nameof bumped from 0.0.3-next.8 to 0.0.3-next.9
427
+ * devDependencies
428
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.8 to 0.0.3-next.9
429
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.8 to 0.0.3-next.9
430
+
431
+ ## [0.0.3-next.8](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.7...core-v0.0.3-next.8) (2025-11-26)
432
+
433
+
434
+ ### Miscellaneous Chores
435
+
436
+ * **core:** Synchronize repo versions
437
+
438
+
439
+ ### Dependencies
440
+
441
+ * The following workspace dependencies were updated
442
+ * dependencies
443
+ * @twin.org/nameof bumped from 0.0.3-next.7 to 0.0.3-next.8
444
+ * devDependencies
445
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.7 to 0.0.3-next.8
446
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
447
+
448
+ ## [0.0.3-next.7](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.6...core-v0.0.3-next.7) (2025-11-25)
449
+
450
+
451
+ ### Features
452
+
453
+ * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
454
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
455
+ * add Is.class method ([4988205](https://github.com/twinfoundation/framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
456
+ * add objectHelper.split ([386830a](https://github.com/twinfoundation/framework/commit/386830a77f8e842a5b119be0983708e042c3b14b))
457
+ * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/twinfoundation/framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
458
+ * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
459
+ * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
460
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
461
+ * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
462
+ * additional RSA methods and async ([1fceee2](https://github.com/twinfoundation/framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
463
+ * async cache don't cache failures unless requested ([658ec4b](https://github.com/twinfoundation/framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
464
+ * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
465
+ * expand error params to accept properties ([032e9fd](https://github.com/twinfoundation/framework/commit/032e9fd1388e457cde32ca1005dfe014a5a9c077))
466
+ * improve base error data extraction ([dccc933](https://github.com/twinfoundation/framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
467
+ * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
468
+ * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/twinfoundation/framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
469
+ * improve Is.function definition to retain types ([f20b6b0](https://github.com/twinfoundation/framework/commit/f20b6b0dd16e74b75dc359be72b05989305c6410))
470
+ * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
471
+ * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/twinfoundation/framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
472
+ * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/twinfoundation/framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
473
+ * propagate includeStackTrace on error conversion ([818337d](https://github.com/twinfoundation/framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
474
+ * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
475
+ * simplify async set ([#121](https://github.com/twinfoundation/framework/issues/121)) ([2693c32](https://github.com/twinfoundation/framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
476
+ * simplify StringHelper signature ([0390403](https://github.com/twinfoundation/framework/commit/039040344952f91ee3c671249bc0e1c8f3b38e17))
477
+ * support indexed properties set in objects ([b9c001d](https://github.com/twinfoundation/framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
478
+ * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
479
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
480
+ * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
481
+
482
+
483
+ ### Dependencies
484
+
485
+ * The following workspace dependencies were updated
486
+ * dependencies
487
+ * @twin.org/nameof bumped from 0.0.3-next.6 to 0.0.3-next.7
488
+ * devDependencies
489
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.6 to 0.0.3-next.7
490
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
491
+
492
+ ## [0.0.3-next.6](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.5...core-v0.0.3-next.6) (2025-11-25)
493
+
494
+
495
+ ### Miscellaneous Chores
496
+
497
+ * **core:** Synchronize repo versions
498
+
499
+
500
+ ### Dependencies
501
+
502
+ * The following workspace dependencies were updated
503
+ * dependencies
504
+ * @twin.org/nameof bumped from 0.0.3-next.5 to 0.0.3-next.6
505
+ * devDependencies
506
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.5 to 0.0.3-next.6
507
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
508
+
509
+ ## [0.0.3-next.5](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.4...core-v0.0.3-next.5) (2025-11-20)
510
+
511
+
512
+ ### Miscellaneous Chores
513
+
514
+ * **core:** Synchronize repo versions
515
+
516
+
517
+ ### Dependencies
518
+
519
+ * The following workspace dependencies were updated
520
+ * dependencies
521
+ * @twin.org/nameof bumped from 0.0.3-next.4 to 0.0.3-next.5
522
+ * devDependencies
523
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.4 to 0.0.3-next.5
524
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.4 to 0.0.3-next.5
525
+
526
+ ## [0.0.3-next.4](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.3...core-v0.0.3-next.4) (2025-11-13)
527
+
528
+
529
+ ### Miscellaneous Chores
530
+
531
+ * **core:** Synchronize repo versions
532
+
533
+
534
+ ### Dependencies
535
+
536
+ * The following workspace dependencies were updated
537
+ * dependencies
538
+ * @twin.org/nameof bumped from 0.0.3-next.3 to 0.0.3-next.4
539
+ * devDependencies
540
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.3 to 0.0.3-next.4
541
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.3 to 0.0.3-next.4
2
542
 
3
543
  ## [0.0.3-next.3](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.2...core-v0.0.3-next.3) (2025-11-12)
4
544