@twin.org/node 0.0.3-next.45 → 0.0.3-next.46

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.
@@ -34,6 +34,11 @@
34
34
  "tenantCreate": {
35
35
  "tenantAdminComponentNotRegistered": "Multi-tenant support must be enabled to use this command."
36
36
  },
37
+ "tenantToken": {
38
+ "tenantIdOrApiKeyRequired": "Either a tenant ID or an API key must be provided.",
39
+ "urlTransformerComponentNotRegistered": "The URL transformer component is not registered, ensure the node is configured correctly.",
40
+ "tenantAdminComponentNotRegistered": "Multi-tenant support must be enabled to use this command."
41
+ },
37
42
  "tenantImport": {
38
43
  "tenantAdminComponentNotRegistered": "Multi-tenant support must be enabled to use this command."
39
44
  },
@@ -619,7 +624,7 @@
619
624
  "dataPlaneNotRegistered": "Push-mode transfer requires the data plane component to be registered (factory key: \"dataspace-data-plane\"). This deployment was configured without a data plane — register one to enable push, or use pull-mode transfers only.",
620
625
  "datasetPublishFailed": "Failed to publish dataset {datasetRecordId} for app {appId} (tenant: {tenantId})",
621
626
  "datasetNodeContextRequired": "A node context is required to register a dataset.",
622
- "datasetAlreadyExists": "A dataset with id \"{id}\" already exists.",
627
+ "datasetAlreadyExists": "A dataset with id \"{existingId}\" already exists.",
623
628
  "datasetNotFound": "Dataset not found",
624
629
  "datasetWrongTenant": "The calling tenant does not own this dataset.",
625
630
  "transferWrongTenant": "The calling tenant does not own this transfer.",
@@ -1740,6 +1745,27 @@
1740
1745
  "updated": "Updated tenant"
1741
1746
  }
1742
1747
  },
1748
+ "tenant-token": {
1749
+ "description": "Generate the x-enc-tenant-id token value for a tenant",
1750
+ "example": "tenant-token --tenant-id=\"0011..aabb\"",
1751
+ "params": {
1752
+ "tenant-id": {
1753
+ "description": "The tenant ID to generate the token for."
1754
+ },
1755
+ "api-key": {
1756
+ "description": "The API key to look up the tenant ID from."
1757
+ },
1758
+ "output-json": {
1759
+ "description": "Path to a .json file to store the command output."
1760
+ }
1761
+ },
1762
+ "labels": {
1763
+ "lookingUp": "Looking up tenant",
1764
+ "generating": "Generating tenant token",
1765
+ "tenantId": "Tenant ID",
1766
+ "token": "Token"
1767
+ }
1768
+ },
1743
1769
  "node-set-tenant": {
1744
1770
  "description": "Set the node tenant",
1745
1771
  "example": "node-set-tenant --tenant-id=\"0011..aabb\"",
package/docs/changelog.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.46](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.45...node-v0.0.3-next.46) (2026-06-03)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **node:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/node-core bumped from 0.0.3-next.45 to 0.0.3-next.46
16
+
3
17
  ## [0.0.3-next.45](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.44...node-v0.0.3-next.45) (2026-06-02)
4
18
 
5
19
 
@@ -16768,7 +16768,7 @@
16768
16768
  "content": {
16769
16769
  "application/json": {
16770
16770
  "schema": {
16771
- "$ref": "#/components/schemas/ActivityLogEntryWithError"
16771
+ "$ref": "#/components/schemas/ActivityLogEntry"
16772
16772
  }
16773
16773
  }
16774
16774
  }
@@ -20796,20 +20796,6 @@
20796
20796
  }
20797
20797
  ]
20798
20798
  },
20799
- "ActivityLogEntryWithError": {
20800
- "description": "Activity log entry extended with a top-level RFC 9457 error field.\nReturned as the response body for 422/500 inline-processing failures.",
20801
- "type": "object",
20802
- "properties": {
20803
- "error": {
20804
- "$ref": "#/components/schemas/Error"
20805
- }
20806
- },
20807
- "allOf": [
20808
- {
20809
- "$ref": "#/components/schemas/ActivityLogEntry"
20810
- }
20811
- ]
20812
- },
20813
20799
  "ActivityProcessingStatus": {
20814
20800
  "description": "The type exported.",
20815
20801
  "anyOf": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/node",
3
- "version": "0.0.3-next.45",
3
+ "version": "0.0.3-next.46",
4
4
  "description": "TWIN Node serving APIs using the specified configuration",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,7 +14,7 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/node-core": "0.0.3-next.45"
17
+ "@twin.org/node-core": "0.0.3-next.46"
18
18
  },
19
19
  "bugs": {
20
20
  "url": "git+https://github.com/iotaledger/twin-node/issues"