@twin.org/nameof-transformer 0.0.3-next.9 → 0.0.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.
package/README.md CHANGED
@@ -1,22 +1,20 @@
1
1
  # TWIN Nameof TypeScript Transformer
2
2
 
3
- This transformer is used to convert class/type/property names to embedded strings, so that they are available to the code at runtime.
4
-
5
- It is used during your TypeScript compilation as part of the build pipeline.
6
-
7
- It is necessary that your code is built with a compiler that supports transformers such as `ts-patch` / `ttypescript` / `ttsc`.
8
-
9
- You will also need to include the `@twin.org/nameof` to be able to reference the methods in your code.
3
+ This package is part of the framework workspace and provides typed transformer which converts types and properties to their actual name for use at runtime to support consistent development workflows across the ecosystem.
10
4
 
11
5
  ## Installation
12
6
 
13
7
  ```shell
14
- npm install @twin.org/nameof-transformer -D
8
+ npm install -D @twin.org/nameof-transformer
15
9
  ```
16
10
 
17
11
  ## Configuration
18
12
 
19
- Configuration of the package is shown in [docs/configuration.md](docs/configuration.md)
13
+ Configuration options are documented in [docs/configuration.md](docs/configuration.md)
14
+
15
+ ## Examples
16
+
17
+ Usage of the APIs is shown in the examples [docs/examples.md](docs/examples.md)
20
18
 
21
19
  ## Reference
22
20
 
package/dist/es/index.js CHANGED
@@ -3,12 +3,14 @@ import { transformerFactory } from "./transformer.js";
3
3
  * Exports the factory.
4
4
  * @returns The factory.
5
5
  */
6
- export const factory = () => transformerFactory;
6
+ export function factory() {
7
+ return transformerFactory;
8
+ }
7
9
  /**
8
10
  * Exports the factory version.
9
11
  * @returns The factory.
10
12
  */
11
- export const version = "0.0.3-next.9"; // x-release-please-version
13
+ export const version = "0.0.3"; // x-release-please-version
12
14
  /**
13
15
  * Exports the factory name.
14
16
  * @returns The factory.
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAEtD;;;GAGG;AACH,MAAM,CAAC,MAAM,OAAO,GAAG,GAAmC,EAAE,CAAC,kBAAkB,CAAC;AAEhF;;;GAGG;AACH,MAAM,CAAC,MAAM,OAAO,GAAG,cAAc,CAAC,CAAC,2BAA2B;AAElE;;;GAGG;AACH,MAAM,CAAC,MAAM,IAAI,GAAG,8BAA8B,CAAC;AAEnD,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAE5B,eAAe,OAAO,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type * as ts from \"typescript\";\nimport { transformerFactory } from \"./transformer.js\";\n\n/**\n * Exports the factory.\n * @returns The factory.\n */\nexport const factory = (): ts.TransformerFactory<ts.Node> => transformerFactory;\n\n/**\n * Exports the factory version.\n * @returns The factory.\n */\nexport const version = \"0.0.3-next.9\"; // x-release-please-version\n\n/**\n * Exports the factory name.\n * @returns The factory.\n */\nexport const name = \"@twin.org/nameof-transformer\";\n\nexport * from \"./manual.js\";\nexport * from \"./svelte.js\";\n\nexport default factory;\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAEtD;;;GAGG;AACH,MAAM,UAAU,OAAO;IACtB,OAAO,kBAAkB,CAAC;AAC3B,CAAC;AAED;;;GAGG;AACH,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC,CAAC,2BAA2B;AAE3D;;;GAGG;AACH,MAAM,CAAC,MAAM,IAAI,GAAG,8BAA8B,CAAC;AAEnD,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAE5B,eAAe,OAAO,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type * as ts from \"typescript\";\nimport { transformerFactory } from \"./transformer.js\";\n\n/**\n * Exports the factory.\n * @returns The factory.\n */\nexport function factory(): ts.TransformerFactory<ts.Node> {\n\treturn transformerFactory;\n}\n\n/**\n * Exports the factory version.\n * @returns The factory.\n */\nexport const version = \"0.0.3\"; // x-release-please-version\n\n/**\n * Exports the factory name.\n * @returns The factory.\n */\nexport const name = \"@twin.org/nameof-transformer\";\n\nexport * from \"./manual.js\";\nexport * from \"./svelte.js\";\n\nexport default factory;\n"]}
package/dist/es/manual.js CHANGED
@@ -18,21 +18,21 @@ export function manual(content) {
18
18
  // e.g. nameofCamelCase<IMyObject>() => "myObject"
19
19
  // and nameofCamelCase<IMyObject<IType2>>() => "myObject"
20
20
  const nameRegExCamelCase = /nameofCamelCase<(.*?)(?:<.*?>)?>\(\)/g;
21
- content = content.replace(nameRegExCamelCase, (_match, typeName) => `"${camelCase(typeName)}"`);
21
+ content = content.replace(nameRegExCamelCase, (match, typeName) => `"${camelCase(typeName)}"`);
22
22
  // Replace the nameofKebabCase<IMyObject>() with the kebabCase version of the type name
23
23
  // e.g. nameofKebabCase<IMyObject>() => "my-object"
24
24
  // and nameofKebabCase<IMyObject<IType2>>() => "my-object"
25
25
  const nameRegExKebabCase = /nameofKebabCase<(.*?)(?:<.*?>)?>\(\)/g;
26
- content = content.replace(nameRegExKebabCase, (_match, typeName) => `"${kebabCase(typeName)}"`);
26
+ content = content.replace(nameRegExKebabCase, (match, typeName) => `"${kebabCase(typeName)}"`);
27
27
  // Replace the nameof(object?.prop) with "object.prop"
28
28
  const propRegEx = /nameof\((.*?)\)/g;
29
29
  content = content.replace(propRegEx, '"$1"');
30
30
  // Replace the nameofCamelCase(object?.prop) with "object.prop"
31
31
  const propRegExCamelCase = /nameofCamelCase\((.*?)\)/g;
32
- content = content.replace(propRegExCamelCase, (_match, typeName) => `"${camelCase(typeName)}"`);
32
+ content = content.replace(propRegExCamelCase, (match, typeName) => `"${camelCase(typeName)}"`);
33
33
  // Replace the nameofKebabCase(object?.prop) with "object.prop"
34
34
  const propRegExKebabCase = /nameofKebabCase\((.*?)\)/g;
35
- content = content.replace(propRegExKebabCase, (_match, typeName) => `"${kebabCase(typeName)}"`);
35
+ content = content.replace(propRegExKebabCase, (match, typeName) => `"${kebabCase(typeName)}"`);
36
36
  }
37
37
  return content;
38
38
  }
@@ -1 +1 @@
1
- {"version":3,"file":"manual.js","sourceRoot":"","sources":["../../src/manual.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAEzD;;;;GAIG;AACH,MAAM,UAAU,MAAM,CAAC,OAAe;IACrC,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC/D,oBAAoB;QACpB,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,qCAAqC,EAAE,EAAE,CAAC,CAAC;QAErE,mDAAmD;QACnD,sDAAsD;QACtD,MAAM,SAAS,GAAG,6BAA6B,CAAC;QAChD,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;QAE7C,uFAAuF;QACvF,kDAAkD;QAClD,yDAAyD;QACzD,MAAM,kBAAkB,GAAG,uCAAuC,CAAC;QACnE,OAAO,GAAG,OAAO,CAAC,OAAO,CACxB,kBAAkB,EAClB,CAAC,MAAM,EAAE,QAAgB,EAAE,EAAE,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,GAAG,CACxD,CAAC;QAEF,uFAAuF;QACvF,mDAAmD;QACnD,0DAA0D;QAC1D,MAAM,kBAAkB,GAAG,uCAAuC,CAAC;QACnE,OAAO,GAAG,OAAO,CAAC,OAAO,CACxB,kBAAkB,EAClB,CAAC,MAAM,EAAE,QAAgB,EAAE,EAAE,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,GAAG,CACxD,CAAC;QAEF,sDAAsD;QACtD,MAAM,SAAS,GAAG,kBAAkB,CAAC;QACrC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;QAE7C,+DAA+D;QAC/D,MAAM,kBAAkB,GAAG,2BAA2B,CAAC;QACvD,OAAO,GAAG,OAAO,CAAC,OAAO,CACxB,kBAAkB,EAClB,CAAC,MAAM,EAAE,QAAgB,EAAE,EAAE,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,GAAG,CACxD,CAAC;QAEF,+DAA+D;QAC/D,MAAM,kBAAkB,GAAG,2BAA2B,CAAC;QACvD,OAAO,GAAG,OAAO,CAAC,OAAO,CACxB,kBAAkB,EAClB,CAAC,MAAM,EAAE,QAAgB,EAAE,EAAE,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,GAAG,CACxD,CAAC;IACH,CAAC;IACD,OAAO,OAAO,CAAC;AAChB,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport { camelCase, kebabCase } from \"./stringHelper.js\";\n\n/**\n * Replace the transformers manually.\n * @param content The content to replace the transformers in.\n * @returns The content with the transformers replace.\n */\nexport function manual(content: string): string {\n\tif (typeof content === \"string\" && content.includes(\"nameof\")) {\n\t\t// Remove the import\n\t\tcontent = content.replace(/import.*from \"@twin\\.org\\/nameof\";/g, \"\");\n\n\t\t// Replace the nameof<IMyObject>() with \"IMyObject\"\n\t\t// or the nameof<IMyObject<IType2>>() with \"IMyObject\"\n\t\tconst nameRegEx = /nameof<(.*?)(?:<.*>)?>\\(\\)/g;\n\t\tcontent = content.replace(nameRegEx, '\"$1\"');\n\n\t\t// Replace the nameofCamelCase<IMyObject>() with the camelCase version of the type name\n\t\t// e.g. nameofCamelCase<IMyObject>() => \"myObject\"\n\t\t// and nameofCamelCase<IMyObject<IType2>>() => \"myObject\"\n\t\tconst nameRegExCamelCase = /nameofCamelCase<(.*?)(?:<.*?>)?>\\(\\)/g;\n\t\tcontent = content.replace(\n\t\t\tnameRegExCamelCase,\n\t\t\t(_match, typeName: string) => `\"${camelCase(typeName)}\"`\n\t\t);\n\n\t\t// Replace the nameofKebabCase<IMyObject>() with the kebabCase version of the type name\n\t\t// e.g. nameofKebabCase<IMyObject>() => \"my-object\"\n\t\t// and nameofKebabCase<IMyObject<IType2>>() => \"my-object\"\n\t\tconst nameRegExKebabCase = /nameofKebabCase<(.*?)(?:<.*?>)?>\\(\\)/g;\n\t\tcontent = content.replace(\n\t\t\tnameRegExKebabCase,\n\t\t\t(_match, typeName: string) => `\"${kebabCase(typeName)}\"`\n\t\t);\n\n\t\t// Replace the nameof(object?.prop) with \"object.prop\"\n\t\tconst propRegEx = /nameof\\((.*?)\\)/g;\n\t\tcontent = content.replace(propRegEx, '\"$1\"');\n\n\t\t// Replace the nameofCamelCase(object?.prop) with \"object.prop\"\n\t\tconst propRegExCamelCase = /nameofCamelCase\\((.*?)\\)/g;\n\t\tcontent = content.replace(\n\t\t\tpropRegExCamelCase,\n\t\t\t(_match, typeName: string) => `\"${camelCase(typeName)}\"`\n\t\t);\n\n\t\t// Replace the nameofKebabCase(object?.prop) with \"object.prop\"\n\t\tconst propRegExKebabCase = /nameofKebabCase\\((.*?)\\)/g;\n\t\tcontent = content.replace(\n\t\t\tpropRegExKebabCase,\n\t\t\t(_match, typeName: string) => `\"${kebabCase(typeName)}\"`\n\t\t);\n\t}\n\treturn content;\n}\n"]}
1
+ {"version":3,"file":"manual.js","sourceRoot":"","sources":["../../src/manual.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAEzD;;;;GAIG;AACH,MAAM,UAAU,MAAM,CAAC,OAAe;IACrC,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC/D,oBAAoB;QACpB,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,qCAAqC,EAAE,EAAE,CAAC,CAAC;QAErE,mDAAmD;QACnD,sDAAsD;QACtD,MAAM,SAAS,GAAG,6BAA6B,CAAC;QAChD,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;QAE7C,uFAAuF;QACvF,kDAAkD;QAClD,yDAAyD;QACzD,MAAM,kBAAkB,GAAG,uCAAuC,CAAC;QACnE,OAAO,GAAG,OAAO,CAAC,OAAO,CACxB,kBAAkB,EAClB,CAAC,KAAK,EAAE,QAAgB,EAAE,EAAE,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,GAAG,CACvD,CAAC;QAEF,uFAAuF;QACvF,mDAAmD;QACnD,0DAA0D;QAC1D,MAAM,kBAAkB,GAAG,uCAAuC,CAAC;QACnE,OAAO,GAAG,OAAO,CAAC,OAAO,CACxB,kBAAkB,EAClB,CAAC,KAAK,EAAE,QAAgB,EAAE,EAAE,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,GAAG,CACvD,CAAC;QAEF,sDAAsD;QACtD,MAAM,SAAS,GAAG,kBAAkB,CAAC;QACrC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;QAE7C,+DAA+D;QAC/D,MAAM,kBAAkB,GAAG,2BAA2B,CAAC;QACvD,OAAO,GAAG,OAAO,CAAC,OAAO,CACxB,kBAAkB,EAClB,CAAC,KAAK,EAAE,QAAgB,EAAE,EAAE,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,GAAG,CACvD,CAAC;QAEF,+DAA+D;QAC/D,MAAM,kBAAkB,GAAG,2BAA2B,CAAC;QACvD,OAAO,GAAG,OAAO,CAAC,OAAO,CACxB,kBAAkB,EAClB,CAAC,KAAK,EAAE,QAAgB,EAAE,EAAE,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,GAAG,CACvD,CAAC;IACH,CAAC;IACD,OAAO,OAAO,CAAC;AAChB,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport { camelCase, kebabCase } from \"./stringHelper.js\";\n\n/**\n * Replace the transformers manually.\n * @param content The content to replace the transformers in.\n * @returns The content with the transformers replace.\n */\nexport function manual(content: string): string {\n\tif (typeof content === \"string\" && content.includes(\"nameof\")) {\n\t\t// Remove the import\n\t\tcontent = content.replace(/import.*from \"@twin\\.org\\/nameof\";/g, \"\");\n\n\t\t// Replace the nameof<IMyObject>() with \"IMyObject\"\n\t\t// or the nameof<IMyObject<IType2>>() with \"IMyObject\"\n\t\tconst nameRegEx = /nameof<(.*?)(?:<.*>)?>\\(\\)/g;\n\t\tcontent = content.replace(nameRegEx, '\"$1\"');\n\n\t\t// Replace the nameofCamelCase<IMyObject>() with the camelCase version of the type name\n\t\t// e.g. nameofCamelCase<IMyObject>() => \"myObject\"\n\t\t// and nameofCamelCase<IMyObject<IType2>>() => \"myObject\"\n\t\tconst nameRegExCamelCase = /nameofCamelCase<(.*?)(?:<.*?>)?>\\(\\)/g;\n\t\tcontent = content.replace(\n\t\t\tnameRegExCamelCase,\n\t\t\t(match, typeName: string) => `\"${camelCase(typeName)}\"`\n\t\t);\n\n\t\t// Replace the nameofKebabCase<IMyObject>() with the kebabCase version of the type name\n\t\t// e.g. nameofKebabCase<IMyObject>() => \"my-object\"\n\t\t// and nameofKebabCase<IMyObject<IType2>>() => \"my-object\"\n\t\tconst nameRegExKebabCase = /nameofKebabCase<(.*?)(?:<.*?>)?>\\(\\)/g;\n\t\tcontent = content.replace(\n\t\t\tnameRegExKebabCase,\n\t\t\t(match, typeName: string) => `\"${kebabCase(typeName)}\"`\n\t\t);\n\n\t\t// Replace the nameof(object?.prop) with \"object.prop\"\n\t\tconst propRegEx = /nameof\\((.*?)\\)/g;\n\t\tcontent = content.replace(propRegEx, '\"$1\"');\n\n\t\t// Replace the nameofCamelCase(object?.prop) with \"object.prop\"\n\t\tconst propRegExCamelCase = /nameofCamelCase\\((.*?)\\)/g;\n\t\tcontent = content.replace(\n\t\t\tpropRegExCamelCase,\n\t\t\t(match, typeName: string) => `\"${camelCase(typeName)}\"`\n\t\t);\n\n\t\t// Replace the nameofKebabCase(object?.prop) with \"object.prop\"\n\t\tconst propRegExKebabCase = /nameofKebabCase\\((.*?)\\)/g;\n\t\tcontent = content.replace(\n\t\t\tpropRegExKebabCase,\n\t\t\t(match, typeName: string) => `\"${kebabCase(typeName)}\"`\n\t\t);\n\t}\n\treturn content;\n}\n"]}
@@ -3,12 +3,12 @@ import type * as ts from "typescript";
3
3
  * Exports the factory.
4
4
  * @returns The factory.
5
5
  */
6
- export declare const factory: () => ts.TransformerFactory<ts.Node>;
6
+ export declare function factory(): ts.TransformerFactory<ts.Node>;
7
7
  /**
8
8
  * Exports the factory version.
9
9
  * @returns The factory.
10
10
  */
11
- export declare const version = "0.0.3-next.9";
11
+ export declare const version = "0.0.3";
12
12
  /**
13
13
  * Exports the factory name.
14
14
  * @returns The factory.
package/docs/changelog.md CHANGED
@@ -1,392 +1,706 @@
1
- # @twin.org/nameof-transformer - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.9](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.3-next.8...nameof-transformer-v0.0.3-next.9) (2026-01-05)
3
+ ## [0.0.3](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3...nameof-transformer-v0.0.3) (2026-05-27)
4
4
 
5
5
 
6
6
  ### Features
7
7
 
8
- * add cookie helper method to web package ([#217](https://github.com/twinfoundation/framework/issues/217)) ([043c632](https://github.com/twinfoundation/framework/commit/043c63298bff96f70bdefed56b82afef42ec3f44))
8
+ * release to production ([b24cba1](https://github.com/iotaledger/twin-framework/commit/b24cba1b6a969278d638e632590602ec881e49fb))
9
+ * release to production ([787287d](https://github.com/iotaledger/twin-framework/commit/787287d06ea8319657401589d61fff369310c422))
10
+ * release to production ([53f4843](https://github.com/iotaledger/twin-framework/commit/53f484326b2851d7a506d2620db24c4a65cee7b3))
11
+ * release to production ([56cda4d](https://github.com/iotaledger/twin-framework/commit/56cda4da93e978c5be19ec7cfd421ae2a7fe4147))
12
+ * release to production ([f7c6586](https://github.com/iotaledger/twin-framework/commit/f7c6586f6976b903b647b4c5ac5ad9421e0c9051))
13
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
14
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
15
+ * release to production ([#330](https://github.com/iotaledger/twin-framework/issues/330)) ([d73f565](https://github.com/iotaledger/twin-framework/commit/d73f565588d156d23ef49b2a5718973756f7a696))
9
16
 
10
- ## [0.0.3-next.8](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.3-next.7...nameof-transformer-v0.0.3-next.8) (2025-11-26)
17
+
18
+ ### Miscellaneous Chores
19
+
20
+ * release to production ([63cae24](https://github.com/iotaledger/twin-framework/commit/63cae2401f6c11f93b2a01260b665064e8bd28e0))
21
+
22
+ ## [0.0.3-next.47](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.46...nameof-transformer-v0.0.3-next.47) (2026-05-25)
23
+
24
+
25
+ ### Miscellaneous Chores
26
+
27
+ * **nameof-transformer:** Synchronize repo versions
28
+
29
+ ## [0.0.3-next.46](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.45...nameof-transformer-v0.0.3-next.46) (2026-05-22)
30
+
31
+
32
+ ### Miscellaneous Chores
33
+
34
+ * **nameof-transformer:** Synchronize repo versions
35
+
36
+ ## [0.0.3-next.45](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.44...nameof-transformer-v0.0.3-next.45) (2026-05-21)
37
+
38
+
39
+ ### Miscellaneous Chores
40
+
41
+ * **nameof-transformer:** Synchronize repo versions
42
+
43
+ ## [0.0.3-next.44](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.43...nameof-transformer-v0.0.3-next.44) (2026-05-19)
44
+
45
+
46
+ ### Features
47
+
48
+ * update dependencies ([4da77ab](https://github.com/iotaledger/twin-framework/commit/4da77ab30f499e52825ac5a76f51436ceb59c26e))
49
+
50
+ ## [0.0.3-next.43](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.42...nameof-transformer-v0.0.3-next.43) (2026-05-18)
51
+
52
+
53
+ ### Miscellaneous Chores
54
+
55
+ * **nameof-transformer:** Synchronize repo versions
56
+
57
+ ## [0.0.3-next.42](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.41...nameof-transformer-v0.0.3-next.42) (2026-05-15)
58
+
59
+
60
+ ### Miscellaneous Chores
61
+
62
+ * **nameof-transformer:** Synchronize repo versions
63
+
64
+ ## [0.0.3-next.41](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.40...nameof-transformer-v0.0.3-next.41) (2026-05-13)
65
+
66
+
67
+ ### Miscellaneous Chores
68
+
69
+ * **nameof-transformer:** Synchronize repo versions
70
+
71
+ ## [0.0.3-next.40](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.39...nameof-transformer-v0.0.3-next.40) (2026-05-13)
72
+
73
+
74
+ ### Miscellaneous Chores
75
+
76
+ * **nameof-transformer:** Synchronize repo versions
77
+
78
+ ## [0.0.3-next.39](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.38...nameof-transformer-v0.0.3-next.39) (2026-05-13)
79
+
80
+
81
+ ### Miscellaneous Chores
82
+
83
+ * **nameof-transformer:** Synchronize repo versions
84
+
85
+ ## [0.0.3-next.38](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.37...nameof-transformer-v0.0.3-next.38) (2026-05-11)
86
+
87
+
88
+ ### Features
89
+
90
+ * typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
91
+
92
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.36...nameof-transformer-v0.0.3-next.37) (2026-05-07)
93
+
94
+
95
+ ### Miscellaneous Chores
96
+
97
+ * **nameof-transformer:** Synchronize repo versions
98
+
99
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.35...nameof-transformer-v0.0.3-next.36) (2026-05-07)
100
+
101
+
102
+ ### Miscellaneous Chores
103
+
104
+ * **nameof-transformer:** Synchronize repo versions
105
+
106
+ ## [0.0.3-next.35](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.34...nameof-transformer-v0.0.3-next.35) (2026-05-06)
107
+
108
+
109
+ ### Miscellaneous Chores
110
+
111
+ * **nameof-transformer:** Synchronize repo versions
112
+
113
+ ## [0.0.3-next.34](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.33...nameof-transformer-v0.0.3-next.34) (2026-05-06)
114
+
115
+
116
+ ### Miscellaneous Chores
117
+
118
+ * **nameof-transformer:** Synchronize repo versions
119
+
120
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.32...nameof-transformer-v0.0.3-next.33) (2026-05-05)
121
+
122
+
123
+ ### Miscellaneous Chores
124
+
125
+ * **nameof-transformer:** Synchronize repo versions
126
+
127
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.31...nameof-transformer-v0.0.3-next.32) (2026-04-30)
128
+
129
+
130
+ ### Miscellaneous Chores
131
+
132
+ * **nameof-transformer:** Synchronize repo versions
133
+
134
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.30...nameof-transformer-v0.0.3-next.31) (2026-04-14)
135
+
136
+
137
+ ### Miscellaneous Chores
138
+
139
+ * **nameof-transformer:** Synchronize repo versions
140
+
141
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.29...nameof-transformer-v0.0.3-next.30) (2026-04-14)
142
+
143
+
144
+ ### Miscellaneous Chores
145
+
146
+ * **nameof-transformer:** Synchronize repo versions
147
+
148
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.28...nameof-transformer-v0.0.3-next.29) (2026-04-14)
149
+
150
+
151
+ ### Miscellaneous Chores
152
+
153
+ * **nameof-transformer:** Synchronize repo versions
154
+
155
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.27...nameof-transformer-v0.0.3-next.28) (2026-03-27)
156
+
157
+
158
+ ### Miscellaneous Chores
159
+
160
+ * **nameof-transformer:** Synchronize repo versions
161
+
162
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.26...nameof-transformer-v0.0.3-next.27) (2026-03-27)
163
+
164
+
165
+ ### Miscellaneous Chores
166
+
167
+ * **nameof-transformer:** Synchronize repo versions
168
+
169
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.25...nameof-transformer-v0.0.3-next.26) (2026-03-24)
170
+
171
+
172
+ ### Miscellaneous Chores
173
+
174
+ * **nameof-transformer:** Synchronize repo versions
175
+
176
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.24...nameof-transformer-v0.0.3-next.25) (2026-03-23)
177
+
178
+
179
+ ### Miscellaneous Chores
180
+
181
+ * **nameof-transformer:** Synchronize repo versions
182
+
183
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.23...nameof-transformer-v0.0.3-next.24) (2026-03-19)
184
+
185
+
186
+ ### Bug Fixes
187
+
188
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
189
+
190
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.22...nameof-transformer-v0.0.3-next.23) (2026-03-17)
191
+
192
+
193
+ ### Miscellaneous Chores
194
+
195
+ * **nameof-transformer:** Synchronize repo versions
196
+
197
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.21...nameof-transformer-v0.0.3-next.22) (2026-02-26)
198
+
199
+
200
+ ### Features
201
+
202
+ * simplify factory options ([7f85a85](https://github.com/iotaledger/twin-framework/commit/7f85a8553dd3008364e8e1104f2e6f6b6595d77e))
203
+
204
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.20...nameof-transformer-v0.0.3-next.21) (2026-02-26)
205
+
206
+
207
+ ### Features
208
+
209
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
210
+ * add cookie helper method to web package ([#217](https://github.com/iotaledger/twin-framework/issues/217)) ([043c632](https://github.com/iotaledger/twin-framework/commit/043c63298bff96f70bdefed56b82afef42ec3f44))
211
+ * add factory.createIfExists ([aad5a53](https://github.com/iotaledger/twin-framework/commit/aad5a53cef1b1c2e04344ea46244d41e371dff9b))
212
+ * add header helper for common bearer support ([0c940b2](https://github.com/iotaledger/twin-framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
213
+ * add Is.class method ([4988205](https://github.com/iotaledger/twin-framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
214
+ * add jwk enc property overrides ([18b6309](https://github.com/iotaledger/twin-framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
215
+ * add Link header array support ([aff32a3](https://github.com/iotaledger/twin-framework/commit/aff32a3ff8ad3d076cade7c889444220706bfb1e))
216
+ * add mnemonic validation ([4b43491](https://github.com/iotaledger/twin-framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
217
+ * add RSA support for public key components ([7126259](https://github.com/iotaledger/twin-framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
218
+ * add/update http and mime types ([#229](https://github.com/iotaledger/twin-framework/issues/229)) ([d50154a](https://github.com/iotaledger/twin-framework/commit/d50154a484711b67feb42ea20a94e4415e53d392))
219
+ * adding link header helper ([#225](https://github.com/iotaledger/twin-framework/issues/225)) ([703c072](https://github.com/iotaledger/twin-framework/commit/703c0725aceac6b6ec0c4fa729ef832d12fb3fd7))
220
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
221
+ * additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
222
+ * context id handler derives from component ([c868ec2](https://github.com/iotaledger/twin-framework/commit/c868ec21d3a576d4faa222bf130270a21936e50e))
223
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
224
+ * factory create and integrity ([#235](https://github.com/iotaledger/twin-framework/issues/235)) ([9f98b99](https://github.com/iotaledger/twin-framework/commit/9f98b99daf46eb365346fae49cc4ffba63e74cb3))
225
+ * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/iotaledger/twin-framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
226
+ * improved password generation and validation ([#232](https://github.com/iotaledger/twin-framework/issues/232)) ([ca4e18f](https://github.com/iotaledger/twin-framework/commit/ca4e18f388b1882cdfb774fc0d0921b8530fac33))
227
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
228
+ * module helper can now handle long running threads with messaging ([4ecbb9a](https://github.com/iotaledger/twin-framework/commit/4ecbb9a526927d462d4fb3f95ba2a44889202753))
229
+ * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/iotaledger/twin-framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
230
+ * provide module helper override ([e998a64](https://github.com/iotaledger/twin-framework/commit/e998a64842cfd18693a14444be33b084fef2bb90))
231
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
232
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
233
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
234
+
235
+
236
+ ### Bug Fixes
237
+
238
+ * repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
239
+
240
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.19...nameof-transformer-v0.0.3-next.20) (2026-02-26)
241
+
242
+
243
+ ### Miscellaneous Chores
244
+
245
+ * **nameof-transformer:** Synchronize repo versions
246
+
247
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.18...nameof-transformer-v0.0.3-next.19) (2026-02-26)
248
+
249
+
250
+ ### Miscellaneous Chores
251
+
252
+ * **nameof-transformer:** Synchronize repo versions
253
+
254
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.17...nameof-transformer-v0.0.3-next.18) (2026-02-23)
255
+
256
+
257
+ ### Features
258
+
259
+ * add factory.createIfExists ([aad5a53](https://github.com/iotaledger/twin-framework/commit/aad5a53cef1b1c2e04344ea46244d41e371dff9b))
260
+
261
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.16...nameof-transformer-v0.0.3-next.17) (2026-02-09)
262
+
263
+
264
+ ### Features
265
+
266
+ * factory create and integrity ([#235](https://github.com/iotaledger/twin-framework/issues/235)) ([9f98b99](https://github.com/iotaledger/twin-framework/commit/9f98b99daf46eb365346fae49cc4ffba63e74cb3))
267
+
268
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.15...nameof-transformer-v0.0.3-next.16) (2026-02-06)
269
+
270
+
271
+ ### Features
272
+
273
+ * improved password generation and validation ([#232](https://github.com/iotaledger/twin-framework/issues/232)) ([ca4e18f](https://github.com/iotaledger/twin-framework/commit/ca4e18f388b1882cdfb774fc0d0921b8530fac33))
274
+
275
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.14...nameof-transformer-v0.0.3-next.15) (2026-01-29)
276
+
277
+
278
+ ### Miscellaneous Chores
279
+
280
+ * **nameof-transformer:** Synchronize repo versions
281
+
282
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.13...nameof-transformer-v0.0.3-next.14) (2026-01-22)
283
+
284
+
285
+ ### Features
286
+
287
+ * add/update http and mime types ([#229](https://github.com/iotaledger/twin-framework/issues/229)) ([d50154a](https://github.com/iotaledger/twin-framework/commit/d50154a484711b67feb42ea20a94e4415e53d392))
288
+
289
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.12...nameof-transformer-v0.0.3-next.13) (2026-01-08)
290
+
291
+
292
+ ### Features
293
+
294
+ * add Link header array support ([aff32a3](https://github.com/iotaledger/twin-framework/commit/aff32a3ff8ad3d076cade7c889444220706bfb1e))
295
+
296
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.11...nameof-transformer-v0.0.3-next.12) (2026-01-08)
297
+
298
+
299
+ ### Features
300
+
301
+ * adding link header helper ([#225](https://github.com/iotaledger/twin-framework/issues/225)) ([703c072](https://github.com/iotaledger/twin-framework/commit/703c0725aceac6b6ec0c4fa729ef832d12fb3fd7))
302
+
303
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.10...nameof-transformer-v0.0.3-next.11) (2026-01-07)
304
+
305
+
306
+ ### Miscellaneous Chores
307
+
308
+ * **nameof-transformer:** Synchronize repo versions
309
+
310
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.9...nameof-transformer-v0.0.3-next.10) (2026-01-07)
311
+
312
+
313
+ ### Miscellaneous Chores
314
+
315
+ * **nameof-transformer:** Synchronize repo versions
316
+
317
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.8...nameof-transformer-v0.0.3-next.9) (2026-01-05)
318
+
319
+
320
+ ### Features
321
+
322
+ * add cookie helper method to web package ([#217](https://github.com/iotaledger/twin-framework/issues/217)) ([043c632](https://github.com/iotaledger/twin-framework/commit/043c63298bff96f70bdefed56b82afef42ec3f44))
323
+
324
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.7...nameof-transformer-v0.0.3-next.8) (2025-11-26)
11
325
 
12
326
 
13
327
  ### Miscellaneous Chores
14
328
 
15
329
  * **nameof-transformer:** Synchronize repo versions
16
330
 
17
- ## [0.0.3-next.7](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.3-next.6...nameof-transformer-v0.0.3-next.7) (2025-11-25)
331
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.6...nameof-transformer-v0.0.3-next.7) (2025-11-25)
18
332
 
19
333
 
20
334
  ### Features
21
335
 
22
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
23
- * add header helper for common bearer support ([0c940b2](https://github.com/twinfoundation/framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
24
- * add Is.class method ([4988205](https://github.com/twinfoundation/framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
25
- * add jwk enc property overrides ([18b6309](https://github.com/twinfoundation/framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
26
- * add mnemonic validation ([4b43491](https://github.com/twinfoundation/framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
27
- * add RSA support for public key components ([7126259](https://github.com/twinfoundation/framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
28
- * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
29
- * additional RSA methods and async ([1fceee2](https://github.com/twinfoundation/framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
30
- * context id handler derives from component ([c868ec2](https://github.com/twinfoundation/framework/commit/c868ec21d3a576d4faa222bf130270a21936e50e))
31
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
32
- * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/twinfoundation/framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
33
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
34
- * module helper can now handle long running threads with messaging ([4ecbb9a](https://github.com/twinfoundation/framework/commit/4ecbb9a526927d462d4fb3f95ba2a44889202753))
35
- * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/twinfoundation/framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
36
- * provide module helper override ([e998a64](https://github.com/twinfoundation/framework/commit/e998a64842cfd18693a14444be33b084fef2bb90))
37
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
38
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
39
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
336
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
337
+ * add header helper for common bearer support ([0c940b2](https://github.com/iotaledger/twin-framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
338
+ * add Is.class method ([4988205](https://github.com/iotaledger/twin-framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
339
+ * add jwk enc property overrides ([18b6309](https://github.com/iotaledger/twin-framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
340
+ * add mnemonic validation ([4b43491](https://github.com/iotaledger/twin-framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
341
+ * add RSA support for public key components ([7126259](https://github.com/iotaledger/twin-framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
342
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
343
+ * additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
344
+ * context id handler derives from component ([c868ec2](https://github.com/iotaledger/twin-framework/commit/c868ec21d3a576d4faa222bf130270a21936e50e))
345
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
346
+ * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/iotaledger/twin-framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
347
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
348
+ * module helper can now handle long running threads with messaging ([4ecbb9a](https://github.com/iotaledger/twin-framework/commit/4ecbb9a526927d462d4fb3f95ba2a44889202753))
349
+ * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/iotaledger/twin-framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
350
+ * provide module helper override ([e998a64](https://github.com/iotaledger/twin-framework/commit/e998a64842cfd18693a14444be33b084fef2bb90))
351
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
352
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
353
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
40
354
 
41
355
 
42
356
  ### Bug Fixes
43
357
 
44
- * repo urls in package.json for moved packages ([31ae463](https://github.com/twinfoundation/framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
358
+ * repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
45
359
 
46
- ## [0.0.3-next.6](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.3-next.5...nameof-transformer-v0.0.3-next.6) (2025-11-25)
360
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.5...nameof-transformer-v0.0.3-next.6) (2025-11-25)
47
361
 
48
362
 
49
363
  ### Features
50
364
 
51
- * module helper can now handle long running threads with messaging ([4ecbb9a](https://github.com/twinfoundation/framework/commit/4ecbb9a526927d462d4fb3f95ba2a44889202753))
365
+ * module helper can now handle long running threads with messaging ([4ecbb9a](https://github.com/iotaledger/twin-framework/commit/4ecbb9a526927d462d4fb3f95ba2a44889202753))
52
366
 
53
- ## [0.0.3-next.5](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.3-next.4...nameof-transformer-v0.0.3-next.5) (2025-11-20)
367
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.4...nameof-transformer-v0.0.3-next.5) (2025-11-20)
54
368
 
55
369
 
56
370
  ### Features
57
371
 
58
- * context id handler derives from component ([c868ec2](https://github.com/twinfoundation/framework/commit/c868ec21d3a576d4faa222bf130270a21936e50e))
372
+ * context id handler derives from component ([c868ec2](https://github.com/iotaledger/twin-framework/commit/c868ec21d3a576d4faa222bf130270a21936e50e))
59
373
 
60
- ## [0.0.3-next.4](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.3-next.3...nameof-transformer-v0.0.3-next.4) (2025-11-13)
374
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.3...nameof-transformer-v0.0.3-next.4) (2025-11-13)
61
375
 
62
376
 
63
377
  ### Miscellaneous Chores
64
378
 
65
379
  * **nameof-transformer:** Synchronize repo versions
66
380
 
67
- ## [0.0.3-next.3](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.3-next.2...nameof-transformer-v0.0.3-next.3) (2025-11-12)
381
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.2...nameof-transformer-v0.0.3-next.3) (2025-11-12)
68
382
 
69
383
 
70
384
  ### Miscellaneous Chores
71
385
 
72
386
  * **nameof-transformer:** Synchronize repo versions
73
387
 
74
- ## [0.0.3-next.2](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.3-next.1...nameof-transformer-v0.0.3-next.2) (2025-11-12)
388
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.1...nameof-transformer-v0.0.3-next.2) (2025-11-12)
75
389
 
76
390
 
77
391
  ### Miscellaneous Chores
78
392
 
79
393
  * **nameof-transformer:** Synchronize repo versions
80
394
 
81
- ## [0.0.3-next.1](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.3-next.0...nameof-transformer-v0.0.3-next.1) (2025-11-10)
395
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.3-next.0...nameof-transformer-v0.0.3-next.1) (2025-11-10)
82
396
 
83
397
 
84
398
  ### Features
85
399
 
86
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
87
- * add header helper for common bearer support ([0c940b2](https://github.com/twinfoundation/framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
88
- * add Is.class method ([4988205](https://github.com/twinfoundation/framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
89
- * add jwk enc property overrides ([18b6309](https://github.com/twinfoundation/framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
90
- * add mnemonic validation ([4b43491](https://github.com/twinfoundation/framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
91
- * add RSA support for public key components ([7126259](https://github.com/twinfoundation/framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
92
- * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
93
- * additional RSA methods and async ([1fceee2](https://github.com/twinfoundation/framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
94
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
95
- * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/twinfoundation/framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
96
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
97
- * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/twinfoundation/framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
98
- * provide module helper override ([e998a64](https://github.com/twinfoundation/framework/commit/e998a64842cfd18693a14444be33b084fef2bb90))
99
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
100
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
101
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
400
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
401
+ * add header helper for common bearer support ([0c940b2](https://github.com/iotaledger/twin-framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
402
+ * add Is.class method ([4988205](https://github.com/iotaledger/twin-framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
403
+ * add jwk enc property overrides ([18b6309](https://github.com/iotaledger/twin-framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
404
+ * add mnemonic validation ([4b43491](https://github.com/iotaledger/twin-framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
405
+ * add RSA support for public key components ([7126259](https://github.com/iotaledger/twin-framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
406
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
407
+ * additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
408
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
409
+ * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/iotaledger/twin-framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
410
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
411
+ * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/iotaledger/twin-framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
412
+ * provide module helper override ([e998a64](https://github.com/iotaledger/twin-framework/commit/e998a64842cfd18693a14444be33b084fef2bb90))
413
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
414
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
415
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
102
416
 
103
417
 
104
418
  ### Bug Fixes
105
419
 
106
- * repo urls in package.json for moved packages ([31ae463](https://github.com/twinfoundation/framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
420
+ * repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
107
421
 
108
- ## [0.0.2-next.22](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.21...nameof-transformer-v0.0.2-next.22) (2025-10-10)
422
+ ## [0.0.2-next.22](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.21...nameof-transformer-v0.0.2-next.22) (2025-10-10)
109
423
 
110
424
 
111
425
  ### Miscellaneous Chores
112
426
 
113
427
  * **nameof-transformer:** Synchronize repo versions
114
428
 
115
- ## [0.0.2-next.21](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.20...nameof-transformer-v0.0.2-next.21) (2025-10-09)
429
+ ## [0.0.2-next.21](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.20...nameof-transformer-v0.0.2-next.21) (2025-10-09)
116
430
 
117
431
 
118
432
  ### Features
119
433
 
120
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
434
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
121
435
 
122
- ## [0.0.2-next.20](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.19...nameof-transformer-v0.0.2-next.20) (2025-10-02)
436
+ ## [0.0.2-next.20](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.19...nameof-transformer-v0.0.2-next.20) (2025-10-02)
123
437
 
124
438
 
125
439
  ### Features
126
440
 
127
- * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/twinfoundation/framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
441
+ * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/iotaledger/twin-framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
128
442
 
129
- ## [0.0.2-next.19](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.18...nameof-transformer-v0.0.2-next.19) (2025-09-30)
443
+ ## [0.0.2-next.19](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.18...nameof-transformer-v0.0.2-next.19) (2025-09-30)
130
444
 
131
445
 
132
446
  ### Miscellaneous Chores
133
447
 
134
448
  * **nameof-transformer:** Synchronize repo versions
135
449
 
136
- ## [0.0.2-next.18](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.17...nameof-transformer-v0.0.2-next.18) (2025-09-29)
450
+ ## [0.0.2-next.18](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.17...nameof-transformer-v0.0.2-next.18) (2025-09-29)
137
451
 
138
452
 
139
453
  ### Miscellaneous Chores
140
454
 
141
455
  * **nameof-transformer:** Synchronize repo versions
142
456
 
143
- ## [0.0.2-next.17](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.16...nameof-transformer-v0.0.2-next.17) (2025-09-29)
457
+ ## [0.0.2-next.17](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.16...nameof-transformer-v0.0.2-next.17) (2025-09-29)
144
458
 
145
459
 
146
460
  ### Features
147
461
 
148
- * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
462
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
149
463
 
150
- ## [0.0.2-next.16](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.15...nameof-transformer-v0.0.2-next.16) (2025-09-28)
464
+ ## [0.0.2-next.16](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.15...nameof-transformer-v0.0.2-next.16) (2025-09-28)
151
465
 
152
466
 
153
467
  ### Features
154
468
 
155
- * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/twinfoundation/framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
469
+ * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/iotaledger/twin-framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
156
470
 
157
- ## [0.0.2-next.15](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.14...nameof-transformer-v0.0.2-next.15) (2025-09-22)
471
+ ## [0.0.2-next.15](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.14...nameof-transformer-v0.0.2-next.15) (2025-09-22)
158
472
 
159
473
 
160
474
  ### Miscellaneous Chores
161
475
 
162
476
  * **nameof-transformer:** Synchronize repo versions
163
477
 
164
- ## [0.0.2-next.14](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.13...nameof-transformer-v0.0.2-next.14) (2025-09-22)
478
+ ## [0.0.2-next.14](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.13...nameof-transformer-v0.0.2-next.14) (2025-09-22)
165
479
 
166
480
 
167
481
  ### Features
168
482
 
169
- * add header helper for common bearer support ([0c940b2](https://github.com/twinfoundation/framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
483
+ * add header helper for common bearer support ([0c940b2](https://github.com/iotaledger/twin-framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
170
484
 
171
- ## [0.0.2-next.13](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.12...nameof-transformer-v0.0.2-next.13) (2025-09-22)
485
+ ## [0.0.2-next.13](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.12...nameof-transformer-v0.0.2-next.13) (2025-09-22)
172
486
 
173
487
 
174
488
  ### Miscellaneous Chores
175
489
 
176
490
  * **nameof-transformer:** Synchronize repo versions
177
491
 
178
- ## [0.0.2-next.12](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.11...nameof-transformer-v0.0.2-next.12) (2025-09-15)
492
+ ## [0.0.2-next.12](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.11...nameof-transformer-v0.0.2-next.12) (2025-09-15)
179
493
 
180
494
 
181
495
  ### Features
182
496
 
183
- * add jwk enc property overrides ([18b6309](https://github.com/twinfoundation/framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
497
+ * add jwk enc property overrides ([18b6309](https://github.com/iotaledger/twin-framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
184
498
 
185
- ## [0.0.2-next.11](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.10...nameof-transformer-v0.0.2-next.11) (2025-09-15)
499
+ ## [0.0.2-next.11](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.10...nameof-transformer-v0.0.2-next.11) (2025-09-15)
186
500
 
187
501
 
188
502
  ### Miscellaneous Chores
189
503
 
190
504
  * **nameof-transformer:** Synchronize repo versions
191
505
 
192
- ## [0.0.2-next.10](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.9...nameof-transformer-v0.0.2-next.10) (2025-09-11)
506
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.9...nameof-transformer-v0.0.2-next.10) (2025-09-11)
193
507
 
194
508
 
195
509
  ### Miscellaneous Chores
196
510
 
197
511
  * **nameof-transformer:** Synchronize repo versions
198
512
 
199
- ## [0.0.2-next.9](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.8...nameof-transformer-v0.0.2-next.9) (2025-09-08)
513
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.8...nameof-transformer-v0.0.2-next.9) (2025-09-08)
200
514
 
201
515
 
202
516
  ### Features
203
517
 
204
- * add mnemonic validation ([4b43491](https://github.com/twinfoundation/framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
518
+ * add mnemonic validation ([4b43491](https://github.com/iotaledger/twin-framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
205
519
 
206
- ## [0.0.2-next.8](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.7...nameof-transformer-v0.0.2-next.8) (2025-09-05)
520
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.7...nameof-transformer-v0.0.2-next.8) (2025-09-05)
207
521
 
208
522
 
209
523
  ### Features
210
524
 
211
- * add Is.class method ([4988205](https://github.com/twinfoundation/framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
525
+ * add Is.class method ([4988205](https://github.com/iotaledger/twin-framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
212
526
 
213
- ## [0.0.2-next.7](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.6...nameof-transformer-v0.0.2-next.7) (2025-08-29)
527
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.6...nameof-transformer-v0.0.2-next.7) (2025-08-29)
214
528
 
215
529
 
216
530
  ### Features
217
531
 
218
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
532
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
219
533
 
220
- ## [0.0.2-next.6](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.5...nameof-transformer-v0.0.2-next.6) (2025-08-27)
534
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.5...nameof-transformer-v0.0.2-next.6) (2025-08-27)
221
535
 
222
536
 
223
537
  ### Features
224
538
 
225
- * provide module helper override ([e998a64](https://github.com/twinfoundation/framework/commit/e998a64842cfd18693a14444be33b084fef2bb90))
539
+ * provide module helper override ([e998a64](https://github.com/iotaledger/twin-framework/commit/e998a64842cfd18693a14444be33b084fef2bb90))
226
540
 
227
- ## [0.0.2-next.5](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.4...nameof-transformer-v0.0.2-next.5) (2025-08-19)
541
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.4...nameof-transformer-v0.0.2-next.5) (2025-08-19)
228
542
 
229
543
 
230
544
  ### Features
231
545
 
232
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
546
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
233
547
 
234
- ## [0.0.2-next.4](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.3...nameof-transformer-v0.0.2-next.4) (2025-08-15)
548
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.3...nameof-transformer-v0.0.2-next.4) (2025-08-15)
235
549
 
236
550
 
237
551
  ### Features
238
552
 
239
- * additional RSA methods and async ([1fceee2](https://github.com/twinfoundation/framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
553
+ * additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
240
554
 
241
- ## [0.0.2-next.3](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.2...nameof-transformer-v0.0.2-next.3) (2025-08-06)
555
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.2...nameof-transformer-v0.0.2-next.3) (2025-08-06)
242
556
 
243
557
 
244
558
  ### Features
245
559
 
246
- * add RSA support for public key components ([7126259](https://github.com/twinfoundation/framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
247
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
248
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
560
+ * add RSA support for public key components ([7126259](https://github.com/iotaledger/twin-framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
561
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
562
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
249
563
 
250
564
 
251
565
  ### Bug Fixes
252
566
 
253
- * repo urls in package.json for moved packages ([31ae463](https://github.com/twinfoundation/framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
567
+ * repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
254
568
 
255
- ## [0.0.2-next.2](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.1...nameof-transformer-v0.0.2-next.2) (2025-08-06)
569
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.1...nameof-transformer-v0.0.2-next.2) (2025-08-06)
256
570
 
257
571
 
258
572
  ### Features
259
573
 
260
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
261
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
574
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
575
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
262
576
 
263
577
 
264
578
  ### Bug Fixes
265
579
 
266
- * repo urls in package.json for moved packages ([31ae463](https://github.com/twinfoundation/framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
580
+ * repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
267
581
 
268
- ## [0.0.2-next.1](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.0...nameof-transformer-v0.0.2-next.1) (2025-08-06)
582
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.2-next.0...nameof-transformer-v0.0.2-next.1) (2025-08-06)
269
583
 
270
584
 
271
585
  ### Features
272
586
 
273
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
274
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
587
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
588
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
275
589
 
276
590
 
277
591
  ### Bug Fixes
278
592
 
279
- * repo urls in package.json for moved packages ([31ae463](https://github.com/twinfoundation/framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
593
+ * repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
280
594
 
281
595
  ## 0.0.1 (2025-07-03)
282
596
 
283
597
 
284
598
  ### Features
285
599
 
286
- * release to production ([829d53d](https://github.com/twinfoundation/framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
287
- * release to production ([5cf3a76](https://github.com/twinfoundation/framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
600
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
601
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
288
602
 
289
- ## [0.0.1-next.70](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.1-next.69...nameof-transformer-v0.0.1-next.70) (2025-07-02)
603
+ ## [0.0.1-next.70](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.1-next.69...nameof-transformer-v0.0.1-next.70) (2025-07-02)
290
604
 
291
605
 
292
606
  ### Features
293
607
 
294
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
608
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
295
609
 
296
610
 
297
611
  ### Bug Fixes
298
612
 
299
- * repo urls in package.json for moved packages ([31ae463](https://github.com/twinfoundation/framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
613
+ * repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
300
614
 
301
- ## [0.0.1-next.69](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.1-next.68...nameof-transformer-v0.0.1-next.69) (2025-07-02)
615
+ ## [0.0.1-next.69](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.1-next.68...nameof-transformer-v0.0.1-next.69) (2025-07-02)
302
616
 
303
617
 
304
618
  ### Features
305
619
 
306
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
620
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
307
621
 
308
622
 
309
623
  ### Bug Fixes
310
624
 
311
- * repo urls in package.json for moved packages ([31ae463](https://github.com/twinfoundation/framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
625
+ * repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
312
626
 
313
- ## [0.0.1-next.68](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.1-next.67...nameof-transformer-v0.0.1-next.68) (2025-07-02)
627
+ ## [0.0.1-next.68](https://github.com/iotaledger/twin-framework/compare/nameof-transformer-v0.0.1-next.67...nameof-transformer-v0.0.1-next.68) (2025-07-02)
314
628
 
315
629
 
316
630
  ### Features
317
631
 
318
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
632
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
319
633
 
320
- ## [0.0.1-next.28](https://github.com/twinfoundation/tools/compare/nameof-transformer-v0.0.1-next.27...nameof-transformer-v0.0.1-next.28) (2025-06-18)
634
+ ## [0.0.1-next.28](https://github.com/iotaledger/twin-tools/compare/nameof-transformer-v0.0.1-next.27...nameof-transformer-v0.0.1-next.28) (2025-06-18)
321
635
 
322
636
 
323
637
  ### Miscellaneous Chores
324
638
 
325
639
  * **nameof-transformer:** Synchronize repo versions
326
640
 
327
- ## [0.0.1-next.27](https://github.com/twinfoundation/tools/compare/nameof-transformer-v0.0.1-next.26...nameof-transformer-v0.0.1-next.27) (2025-06-17)
641
+ ## [0.0.1-next.27](https://github.com/iotaledger/twin-tools/compare/nameof-transformer-v0.0.1-next.26...nameof-transformer-v0.0.1-next.27) (2025-06-17)
328
642
 
329
643
 
330
644
  ### Features
331
645
 
332
- * add latest json schema features ([494293f](https://github.com/twinfoundation/tools/commit/494293f4252b9c7d4a20790ec157fc9d8c96c3d2))
646
+ * add latest json schema features ([494293f](https://github.com/iotaledger/twin-tools/commit/494293f4252b9c7d4a20790ec157fc9d8c96c3d2))
333
647
 
334
- ## [0.0.1-next.26](https://github.com/twinfoundation/tools/compare/nameof-transformer-v0.0.1-next.25...nameof-transformer-v0.0.1-next.26) (2025-06-11)
648
+ ## [0.0.1-next.26](https://github.com/iotaledger/twin-tools/compare/nameof-transformer-v0.0.1-next.25...nameof-transformer-v0.0.1-next.26) (2025-06-11)
335
649
 
336
650
 
337
651
  ### Features
338
652
 
339
- * use most recent JSON schema specs ([4598cbf](https://github.com/twinfoundation/tools/commit/4598cbf29f7b82dba4a9f3b19f81dfe66f5a6060))
653
+ * use most recent JSON schema specs ([4598cbf](https://github.com/iotaledger/twin-tools/commit/4598cbf29f7b82dba4a9f3b19f81dfe66f5a6060))
340
654
 
341
- ## [0.0.1-next.25](https://github.com/twinfoundation/tools/compare/nameof-transformer-v0.0.1-next.24...nameof-transformer-v0.0.1-next.25) (2025-06-10)
655
+ ## [0.0.1-next.25](https://github.com/iotaledger/twin-tools/compare/nameof-transformer-v0.0.1-next.24...nameof-transformer-v0.0.1-next.25) (2025-06-10)
342
656
 
343
657
 
344
658
  ### Features
345
659
 
346
- * add ts-to-schema overrides ([3c54504](https://github.com/twinfoundation/tools/commit/3c5450468eb998204a75576b7791a7ca4027da62))
660
+ * add ts-to-schema overrides ([3c54504](https://github.com/iotaledger/twin-tools/commit/3c5450468eb998204a75576b7791a7ca4027da62))
347
661
 
348
- ## [0.0.1-next.24](https://github.com/twinfoundation/tools/compare/nameof-transformer-v0.0.1-next.23...nameof-transformer-v0.0.1-next.24) (2025-06-05)
662
+ ## [0.0.1-next.24](https://github.com/iotaledger/twin-tools/compare/nameof-transformer-v0.0.1-next.23...nameof-transformer-v0.0.1-next.24) (2025-06-05)
349
663
 
350
664
 
351
665
  ### Miscellaneous Chores
352
666
 
353
667
  * **nameof-transformer:** Synchronize repo versions
354
668
 
355
- ## [0.0.1-next.23](https://github.com/twinfoundation/tools/compare/nameof-transformer-v0.0.1-next.22...nameof-transformer-v0.0.1-next.23) (2025-06-03)
669
+ ## [0.0.1-next.23](https://github.com/iotaledger/twin-tools/compare/nameof-transformer-v0.0.1-next.22...nameof-transformer-v0.0.1-next.23) (2025-06-03)
356
670
 
357
671
 
358
672
  ### Miscellaneous Chores
359
673
 
360
674
  * **nameof-transformer:** Synchronize repo versions
361
675
 
362
- ## [0.0.1-next.22](https://github.com/twinfoundation/tools/compare/nameof-transformer-v0.0.1-next.21...nameof-transformer-v0.0.1-next.22) (2025-06-03)
676
+ ## [0.0.1-next.22](https://github.com/iotaledger/twin-tools/compare/nameof-transformer-v0.0.1-next.21...nameof-transformer-v0.0.1-next.22) (2025-06-03)
363
677
 
364
678
 
365
679
  ### Miscellaneous Chores
366
680
 
367
681
  * **nameof-transformer:** Synchronize repo versions
368
682
 
369
- ## [0.0.1-next.21](https://github.com/twinfoundation/tools/compare/nameof-transformer-v0.0.1-next.20...nameof-transformer-v0.0.1-next.21) (2025-04-17)
683
+ ## [0.0.1-next.21](https://github.com/iotaledger/twin-tools/compare/nameof-transformer-v0.0.1-next.20...nameof-transformer-v0.0.1-next.21) (2025-04-17)
370
684
 
371
685
 
372
686
  ### Features
373
687
 
374
- * use shared store mechanism ([#31](https://github.com/twinfoundation/tools/issues/31)) ([d9fe68b](https://github.com/twinfoundation/tools/commit/d9fe68b903d1268c7cb3c64772df5cb78fd63667))
688
+ * use shared store mechanism ([#31](https://github.com/iotaledger/twin-tools/issues/31)) ([d9fe68b](https://github.com/iotaledger/twin-tools/commit/d9fe68b903d1268c7cb3c64772df5cb78fd63667))
375
689
 
376
- ## [0.0.1-next.20](https://github.com/twinfoundation/tools/compare/nameof-transformer-v0.0.1-next.19...nameof-transformer-v0.0.1-next.20) (2025-03-28)
690
+ ## [0.0.1-next.20](https://github.com/iotaledger/twin-tools/compare/nameof-transformer-v0.0.1-next.19...nameof-transformer-v0.0.1-next.20) (2025-03-28)
377
691
 
378
692
 
379
693
  ### Features
380
694
 
381
- * add version type ([#27](https://github.com/twinfoundation/tools/issues/27)) ([058d4b0](https://github.com/twinfoundation/tools/commit/058d4b0ba9201ea2803e59f25e741788ceb1063f))
382
- * automation workflows ([#29](https://github.com/twinfoundation/tools/issues/29)) ([02fa98f](https://github.com/twinfoundation/tools/commit/02fa98f534d6e5fcfe59eefc2ff0e20bffd9c0f7))
695
+ * add version type ([#27](https://github.com/iotaledger/twin-tools/issues/27)) ([058d4b0](https://github.com/iotaledger/twin-tools/commit/058d4b0ba9201ea2803e59f25e741788ceb1063f))
696
+ * automation workflows ([#29](https://github.com/iotaledger/twin-tools/issues/29)) ([02fa98f](https://github.com/iotaledger/twin-tools/commit/02fa98f534d6e5fcfe59eefc2ff0e20bffd9c0f7))
383
697
 
384
- ## [0.0.1-next.19](https://github.com/twinfoundation/tools/compare/nameof-transformer-v0.0.1-next.18...nameof-transformer-v0.0.1-next.19) (2025-03-26)
698
+ ## [0.0.1-next.19](https://github.com/iotaledger/twin-tools/compare/nameof-transformer-v0.0.1-next.18...nameof-transformer-v0.0.1-next.19) (2025-03-26)
385
699
 
386
700
 
387
701
  ### Features
388
702
 
389
- * add version type ([#27](https://github.com/twinfoundation/tools/issues/27)) ([058d4b0](https://github.com/twinfoundation/tools/commit/058d4b0ba9201ea2803e59f25e741788ceb1063f))
703
+ * add version type ([#27](https://github.com/iotaledger/twin-tools/issues/27)) ([058d4b0](https://github.com/iotaledger/twin-tools/commit/058d4b0ba9201ea2803e59f25e741788ceb1063f))
390
704
 
391
705
  ## v0.0.1-next.18
392
706
 
@@ -1,4 +1,4 @@
1
- # @twin.org/nameof-transformer - Configuration
1
+ # Configuration
2
2
 
3
3
  The TypeScript compilation process reads the code from the .ts files and generates JavaScript .js from them.
4
4
 
@@ -0,0 +1,70 @@
1
+ # Nameof Transformer Examples
2
+
3
+ Use these snippets to apply source transforms before compile and test steps so typed name expressions become static strings.
4
+
5
+ ## factory
6
+
7
+ ```typescript
8
+ import { factory, name, version } from '@twin.org/nameof-transformer';
9
+ import ts from 'typescript';
10
+
11
+ const source = `
12
+ import { nameof } from '@twin.org/nameof';
13
+ class Demo {}
14
+ const value = nameof<Demo>();
15
+ `;
16
+
17
+ const result = ts.transpileModule(source, {
18
+ transformers: {
19
+ before: [factory()]
20
+ },
21
+ compilerOptions: {
22
+ module: ts.ModuleKind.ESNext,
23
+ target: ts.ScriptTarget.ES2022
24
+ }
25
+ });
26
+
27
+ name; // '@twin.org/nameof-transformer'
28
+ version; // current package version
29
+ result.outputText.includes("'Demo'"); // true
30
+ ```
31
+
32
+ ## manual
33
+
34
+ ```typescript
35
+ import { manual } from '@twin.org/nameof-transformer';
36
+
37
+ const source = `
38
+ import { nameof } from '@twin.org/nameof';
39
+
40
+ interface Customer {
41
+ profile?: {
42
+ displayName: string;
43
+ };
44
+ }
45
+
46
+ const className = nameof<Customer>();
47
+ const propName = nameof(({ profile }: Customer) => profile?.displayName);
48
+ `;
49
+
50
+ const transformed = manual(source);
51
+
52
+ transformed.includes("'Customer'"); // true
53
+ transformed.includes("'profile.displayName'"); // true
54
+ ```
55
+
56
+ ## svelte
57
+
58
+ ```typescript
59
+ import { svelte } from '@twin.org/nameof-transformer';
60
+
61
+ const transformed = svelte(`
62
+ <script lang=\"ts\">
63
+ import { nameof } from '@twin.org/nameof';
64
+ class Widget {}
65
+ const value = nameof<Widget>();
66
+ </script>
67
+ `);
68
+
69
+ transformed.includes("'Widget'"); // true
70
+ ```
@@ -13,6 +13,6 @@
13
13
 
14
14
  ## References
15
15
 
16
- ### default
16
+ ### default {#default}
17
17
 
18
18
  Renames and re-exports [factory](functions/factory.md)
@@ -1,6 +1,6 @@
1
1
  # Variable: version
2
2
 
3
- > `const` **version**: `"0.0.3-next.9"` = `"0.0.3-next.9"`
3
+ > `const` **version**: `"0.0.3-next.47"` = `"0.0.3-next.47"`
4
4
 
5
5
  Exports the factory version.
6
6
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@twin.org/nameof-transformer",
3
- "version": "0.0.3-next.9",
4
- "description": "A TypeScript transformer which converts types and properties to their actual name for use at runtime",
3
+ "version": "0.0.3",
4
+ "description": "Typed transformer which converts types and properties to their actual name for use at runtime",
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/nameof-transformer"
9
9
  },
10
10
  "author": "martyn.janes@iota.org",
@@ -14,7 +14,7 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "typescript": "5.9.3"
17
+ "typescript": "6.0.3"
18
18
  },
19
19
  "main": "./dist/es/index.js",
20
20
  "types": "./dist/types/index.d.ts",
@@ -39,7 +39,7 @@
39
39
  "blockchain"
40
40
  ],
41
41
  "bugs": {
42
- "url": "git+https://github.com/twinfoundation/framework/issues"
42
+ "url": "git+https://github.com/iotaledger/framework/issues"
43
43
  },
44
44
  "homepage": "https://twindev.org"
45
45
  }