@twin.org/node 0.9.4-next.4 → 0.9.4-next.5
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/dist/locales/en.json +50 -5
- package/docs/changelog.md +16 -0
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -617,7 +617,8 @@
|
|
|
617
617
|
"stateChangeCallbackFailed": "The state change callback failed for task \"{id}\" with type \"{type}\" and status \"{status}\"",
|
|
618
618
|
"taskFinishedProcessingFailed": "Failed to finalise background task processing for task \"{id}\" with method \"{type}\"",
|
|
619
619
|
"executionTimeout": "Task \"{id}\" with type \"{type}\" exceeded its execution timeout of {timeout} ms and has been marked as failed",
|
|
620
|
-
"healthCheckTimeout": "Health check task exceeded its timeout of {timeout} ms and has been marked as failed"
|
|
620
|
+
"healthCheckTimeout": "Health check task exceeded its timeout of {timeout} ms and has been marked as failed",
|
|
621
|
+
"taskInterrupted": "Task \"{id}\" with type \"{type}\" was interrupted on each of its {dispatchCount} dispatches and has been marked as failed"
|
|
621
622
|
},
|
|
622
623
|
"s3BlobStorageConnector": {
|
|
623
624
|
"bucketCreateFailed": "Creating bucket \"{bucket}\" failed",
|
|
@@ -1187,6 +1188,17 @@
|
|
|
1187
1188
|
"imapEmailConnector": {
|
|
1188
1189
|
"pollFailed": "Poll failed"
|
|
1189
1190
|
},
|
|
1191
|
+
"outlookEmailConnector": {
|
|
1192
|
+
"pollFailed": "Poll failed",
|
|
1193
|
+
"authCodeExchangeFailed": "The authorization code could not be exchanged for tokens",
|
|
1194
|
+
"noRefreshTokenIssued": "The consent flow did not issue a refresh token",
|
|
1195
|
+
"noAccessTokenIssued": "No access token was issued for the mailbox",
|
|
1196
|
+
"authFlowNotStarted": "The connector has no authentication flow in progress to complete",
|
|
1197
|
+
"consentAccountMismatch": "The consent was given by an account other than {emailAddress}",
|
|
1198
|
+
"mailboxNotConsented": "The stored credentials hold no consented account for {emailAddress}",
|
|
1199
|
+
"missingClientCredential": "The clientSecret or clientCertificate is required",
|
|
1200
|
+
"invalidClientCertificate": "The clientCertificate is not a valid JSON certificate credential"
|
|
1201
|
+
},
|
|
1190
1202
|
"pop3EmailConnector": {
|
|
1191
1203
|
"pollFailed": "Poll failed"
|
|
1192
1204
|
},
|
|
@@ -1584,7 +1596,8 @@
|
|
|
1584
1596
|
"taskStalled": "Task with id \"{id}\" is stalled, last run at \"{lastRunTime}\" and exceeded timeout \"{stalledTaskTimeoutMs}\" ms"
|
|
1585
1597
|
},
|
|
1586
1598
|
"backgroundTaskService": {
|
|
1587
|
-
"maxSystemWorkerCountReached": "The maximum system worker count of {maxSystemWorkerCount} has been reached, can not create any more worker for task type \"{type}\" (consecutive blocks: {count})"
|
|
1599
|
+
"maxSystemWorkerCountReached": "The maximum system worker count of {maxSystemWorkerCount} has been reached, can not create any more worker for task type \"{type}\" (consecutive blocks: {count})",
|
|
1600
|
+
"taskClaimRetained": "Task \"{id}\" with type \"{type}\" ran but could not be finalised, it is held until restart so it is not processed twice"
|
|
1588
1601
|
},
|
|
1589
1602
|
"dataspaceControlPlaneService": {
|
|
1590
1603
|
"catalogDatasetHasNoOffers": "Dataset has no Offers (odrl:hasPolicy) in Federated Catalogue",
|
|
@@ -1649,6 +1662,11 @@
|
|
|
1649
1662
|
"consentRequired": "Mailbox requires OAuth consent before it can be polled",
|
|
1650
1663
|
"historyExpired": "Mailbox history expired, restarting the mailbox sync"
|
|
1651
1664
|
},
|
|
1665
|
+
"outlookEmailConnector": {
|
|
1666
|
+
"consentRequired": "Mailbox requires OAuth consent before it can be polled",
|
|
1667
|
+
"consentUrlFailed": "The consent URL could not be produced",
|
|
1668
|
+
"deltaExpired": "Delta cursor expired for folder \"{folderId}\", restarting the folder sync"
|
|
1669
|
+
},
|
|
1652
1670
|
"mailboxService": {
|
|
1653
1671
|
"consumerNotificationFailed": "Failed to notify consumer {consumerName}.",
|
|
1654
1672
|
"startConnectorFailed": "Failed to start connector for mailbox {mailboxId}."
|
|
@@ -1663,6 +1681,11 @@
|
|
|
1663
1681
|
"metricValueThreadRestarted": "The stalled metric value background thread was replaced, and the tasks it was given will be processed by the new one",
|
|
1664
1682
|
"metricValueTaskNotScheduled": "The metric value background task \"{taskId}\" has waited \"{stalledForMs}\" ms to be scheduled, with \"{taskCount}\" tasks outstanding, so the background thread is left in place as it has not been given the task",
|
|
1665
1683
|
"metricValueTaskStateMissed": "The completion of the metric value background task \"{taskId}\" was never reported, its state is now \"{status}\", so the background thread is treated as working rather than replaced"
|
|
1684
|
+
},
|
|
1685
|
+
"metricsRouteProcessor": {
|
|
1686
|
+
"metricRecordsFailed": "Failed to record \"{count}\" request metrics",
|
|
1687
|
+
"metricDrainFailed": "Failed to hand the queued request metrics to the telemetry component",
|
|
1688
|
+
"metricRecordsDropped": "Dropped \"{count}\" request metrics because the recording queue was full"
|
|
1666
1689
|
}
|
|
1667
1690
|
},
|
|
1668
1691
|
"node": {
|
|
@@ -2736,6 +2759,9 @@
|
|
|
2736
2759
|
"imapEmailConnector": {
|
|
2737
2760
|
"emailReceived": "Email received \"{subject}\""
|
|
2738
2761
|
},
|
|
2762
|
+
"outlookEmailConnector": {
|
|
2763
|
+
"emailReceived": "Email received \"{subject}\""
|
|
2764
|
+
},
|
|
2739
2765
|
"pop3EmailConnector": {
|
|
2740
2766
|
"emailReceived": "Email received \"{subject}\""
|
|
2741
2767
|
},
|
|
@@ -3106,9 +3132,6 @@
|
|
|
3106
3132
|
"taskEngineStarted": "The proof task engine started for proof \"{proofId}\" in {elapsedMs}ms",
|
|
3107
3133
|
"taskVerifiableCredentialCreated": "The verifiable credential for proof \"{proofId}\" was created in {elapsedMs}ms",
|
|
3108
3134
|
"taskNotarizationComplete": "The notarization for proof \"{proofId}\" completed in {elapsedMs}ms, total task time {totalElapsedMs}ms"
|
|
3109
|
-
},
|
|
3110
|
-
"metricsRouteProcessor": {
|
|
3111
|
-
"metricRecordFailed": "Failed to record the request metric for route {route}"
|
|
3112
3135
|
}
|
|
3113
3136
|
},
|
|
3114
3137
|
"codeLists": {
|
|
@@ -17709,6 +17732,28 @@
|
|
|
17709
17732
|
"imapEmailConnectorStateSchema": {
|
|
17710
17733
|
"folders": "Folder State"
|
|
17711
17734
|
},
|
|
17735
|
+
"outlookEmailConnectorConfigSchema": {
|
|
17736
|
+
"emailAddress": "Email Address",
|
|
17737
|
+
"tenantId": "Directory (Tenant) ID",
|
|
17738
|
+
"clientId": "Application (Client) ID",
|
|
17739
|
+
"clientSecret": "Client Secret",
|
|
17740
|
+
"clientCertificate": "Client Certificate",
|
|
17741
|
+
"appOnlyAccess": "Application Only Access",
|
|
17742
|
+
"folderIds": "Folder IDs",
|
|
17743
|
+
"maxMessagesPerPoll": "Maximum Messages Per Poll",
|
|
17744
|
+
"pollingIntervalMinutes": "Polling Interval (Minutes)"
|
|
17745
|
+
},
|
|
17746
|
+
"outlookEmailConnectorStateSchema": {
|
|
17747
|
+
"tokenCache": "OAuth Token Cache",
|
|
17748
|
+
"accountId": "Consented Account ID",
|
|
17749
|
+
"deltaLinks": "Delta Cursors",
|
|
17750
|
+
"syncNextLinks": "Sync Page Links",
|
|
17751
|
+
"syncCompletedFolderIds": "Synced Folder IDs",
|
|
17752
|
+
"syncFromDateTime": "Sync From Date",
|
|
17753
|
+
"initialSyncComplete": "Initial Sync Complete",
|
|
17754
|
+
"lastReceivedDateTime": "Last Received Date",
|
|
17755
|
+
"deliveredMessageIds": "Delivered Message IDs"
|
|
17756
|
+
},
|
|
17712
17757
|
"pop3EmailConnectorConfigSchema": {
|
|
17713
17758
|
"host": "Host",
|
|
17714
17759
|
"port": "Port",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.4-next.5](https://github.com/iotaledger/twin-node/compare/node-v0.9.4-next.4...node-v0.9.4-next.5) (2026-09-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add background task max dispatch count ([f0965a0](https://github.com/iotaledger/twin-node/commit/f0965a004dc0e0a856fc0fe1e58330f84e09aa3b))
|
|
9
|
+
* add outlook connector ([cf7ee0b](https://github.com/iotaledger/twin-node/commit/cf7ee0b73042cb33e693f3677386ca94567bb6e4))
|
|
10
|
+
* remove mutex timeout from logger ([e5a5407](https://github.com/iotaledger/twin-node/commit/e5a540725fa97b523f88589f582501f41b982d5b))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Dependencies
|
|
14
|
+
|
|
15
|
+
* The following workspace dependencies were updated
|
|
16
|
+
* dependencies
|
|
17
|
+
* @twin.org/node-core bumped from 0.9.4-next.4 to 0.9.4-next.5
|
|
18
|
+
|
|
3
19
|
## [0.9.4-next.4](https://github.com/iotaledger/twin-node/compare/node-v0.9.4-next.3...node-v0.9.4-next.4) (2026-09-10)
|
|
4
20
|
|
|
5
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.9.4-next.
|
|
3
|
+
"version": "0.9.4-next.5",
|
|
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": ">=24.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/node-core": "0.9.4-next.
|
|
17
|
+
"@twin.org/node-core": "0.9.4-next.5"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|