@twin.org/node 0.9.4-next.3 → 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 +111 -13
- package/docs/changelog.md +30 -0
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -438,6 +438,9 @@
|
|
|
438
438
|
"invalidUrl": "The JSON-LD processing failed to retrieve from the following url \"{url}\"",
|
|
439
439
|
"jsonLdError": "The JSON-LD processing failed due to the following error: \"{code}\""
|
|
440
440
|
},
|
|
441
|
+
"jsonSchemaHelper": {
|
|
442
|
+
"schemaLoadFailed": "Failed to load the referenced schema \"{uri}\""
|
|
443
|
+
},
|
|
441
444
|
"accountHelper": {
|
|
442
445
|
"addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
|
|
443
446
|
"missingPublicKey": "The public key is missing for vault key \"{keyName}\""
|
|
@@ -555,13 +558,6 @@
|
|
|
555
558
|
"destroyFailed": "The destruction of the attestation failed",
|
|
556
559
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the attestation service \"{namespace}\""
|
|
557
560
|
},
|
|
558
|
-
"spanHelper": {
|
|
559
|
-
"traceFlagsOutOfRange": "The trace flags value \"{traceFlags}\" is outside the valid range 0 to 255"
|
|
560
|
-
},
|
|
561
|
-
"tracingHelper": {
|
|
562
|
-
"startSpanFailed": "The span \"{name}\" could not be started, so the operation was not traced",
|
|
563
|
-
"endSpanFailed": "The span \"{name}\" could not be ended"
|
|
564
|
-
},
|
|
565
561
|
"auditableItemGraphService": {
|
|
566
562
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Graph service \"{namespace}\"",
|
|
567
563
|
"createFailed": "Creating the Auditable Item Graph vertex failed",
|
|
@@ -621,7 +617,8 @@
|
|
|
621
617
|
"stateChangeCallbackFailed": "The state change callback failed for task \"{id}\" with type \"{type}\" and status \"{status}\"",
|
|
622
618
|
"taskFinishedProcessingFailed": "Failed to finalise background task processing for task \"{id}\" with method \"{type}\"",
|
|
623
619
|
"executionTimeout": "Task \"{id}\" with type \"{type}\" exceeded its execution timeout of {timeout} ms and has been marked as failed",
|
|
624
|
-
"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"
|
|
625
622
|
},
|
|
626
623
|
"s3BlobStorageConnector": {
|
|
627
624
|
"bucketCreateFailed": "Creating bucket \"{bucket}\" failed",
|
|
@@ -1179,12 +1176,35 @@
|
|
|
1179
1176
|
"openTelemetryLoggingConnector": {
|
|
1180
1177
|
"unknownExporterType": "The exporter type \"{type}\" is not supported, valid values are: otlp"
|
|
1181
1178
|
},
|
|
1179
|
+
"gmailEmailConnector": {
|
|
1180
|
+
"pollFailed": "Poll failed",
|
|
1181
|
+
"authCodeExchangeFailed": "The authorization code could not be exchanged for tokens",
|
|
1182
|
+
"noRefreshTokenIssued": "The consent flow did not issue a refresh token",
|
|
1183
|
+
"authFlowNotStarted": "The connector has no authentication flow in progress to complete",
|
|
1184
|
+
"consentAccountMismatch": "The consent was given by an account other than {emailAddress}",
|
|
1185
|
+
"missingOAuthCredentials": "The clientId and clientSecret are required when no serviceAccountKey is supplied",
|
|
1186
|
+
"invalidServiceAccountKey": "The serviceAccountKey is not a valid service account JSON key"
|
|
1187
|
+
},
|
|
1182
1188
|
"imapEmailConnector": {
|
|
1183
1189
|
"pollFailed": "Poll failed"
|
|
1184
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
|
+
},
|
|
1185
1202
|
"pop3EmailConnector": {
|
|
1186
1203
|
"pollFailed": "Poll failed"
|
|
1187
1204
|
},
|
|
1205
|
+
"mailboxRestClient": {
|
|
1206
|
+
"notSupported": "Method \"{methodName}\" is not supported over REST."
|
|
1207
|
+
},
|
|
1188
1208
|
"mailStorageRestClient": {
|
|
1189
1209
|
"notSupported": "Method \"{methodName}\" is not supported over REST."
|
|
1190
1210
|
},
|
|
@@ -1193,7 +1213,11 @@
|
|
|
1193
1213
|
"schemaNotFound": "No schema is registered for connector type {notFoundId}.",
|
|
1194
1214
|
"unknownConnectorType": "No connector is registered for connector type {connectorType}.",
|
|
1195
1215
|
"connectorTypeCannotChange": "The connector type of a mailbox cannot be changed.",
|
|
1196
|
-
"retrievalCallbackFailed": "The retrieval callback for mailbox {mailboxId} failed"
|
|
1216
|
+
"retrievalCallbackFailed": "The retrieval callback for mailbox {mailboxId} failed",
|
|
1217
|
+
"authNotSupported": "Connector type {connectorType} does not support an authentication flow.",
|
|
1218
|
+
"authNotPending": "Mailbox {mailboxId} is not awaiting authentication.",
|
|
1219
|
+
"authStateMismatch": "The authentication callback for mailbox {mailboxId} did not carry the state its flow was started with.",
|
|
1220
|
+
"connectorConfigInvalid": "The configuration was rejected by connector type {connectorType}."
|
|
1197
1221
|
},
|
|
1198
1222
|
"mailStorageService": {
|
|
1199
1223
|
"emailNotFound": "Email {notFoundId} was not found.",
|
|
@@ -1449,6 +1473,13 @@
|
|
|
1449
1473
|
"metricRecordFailed": "Failed to record the collected metric values",
|
|
1450
1474
|
"collectionCycleFailed": "Failed to run the metrics collection cycle"
|
|
1451
1475
|
},
|
|
1476
|
+
"spanHelper": {
|
|
1477
|
+
"traceFlagsOutOfRange": "The trace flags value \"{traceFlags}\" is outside the valid range 0 to 255"
|
|
1478
|
+
},
|
|
1479
|
+
"tracingHelper": {
|
|
1480
|
+
"startSpanFailed": "The span \"{name}\" could not be started, so the operation was not traced",
|
|
1481
|
+
"endSpanFailed": "The span \"{name}\" could not be ended"
|
|
1482
|
+
},
|
|
1452
1483
|
"entityStorageTracingConnector": {
|
|
1453
1484
|
"spanNotFound": "The span could not be found \"{notFoundId}\"",
|
|
1454
1485
|
"retentionFailed": "The span retention cleanup failed",
|
|
@@ -1565,7 +1596,8 @@
|
|
|
1565
1596
|
"taskStalled": "Task with id \"{id}\" is stalled, last run at \"{lastRunTime}\" and exceeded timeout \"{stalledTaskTimeoutMs}\" ms"
|
|
1566
1597
|
},
|
|
1567
1598
|
"backgroundTaskService": {
|
|
1568
|
-
"maxSystemWorkerCountReached": "The maximum system worker count of {maxSystemWorkerCount} has been reached, can not create any more worker for task type \"{type}\""
|
|
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"
|
|
1569
1601
|
},
|
|
1570
1602
|
"dataspaceControlPlaneService": {
|
|
1571
1603
|
"catalogDatasetHasNoOffers": "Dataset has no Offers (odrl:hasPolicy) in Federated Catalogue",
|
|
@@ -1626,6 +1658,15 @@
|
|
|
1626
1658
|
"immutableProofTask": {
|
|
1627
1659
|
"taskEngineStopFailed": "Stopping the task engine for proof \"{proofId}\" failed, the task result is unaffected"
|
|
1628
1660
|
},
|
|
1661
|
+
"gmailEmailConnector": {
|
|
1662
|
+
"consentRequired": "Mailbox requires OAuth consent before it can be polled",
|
|
1663
|
+
"historyExpired": "Mailbox history expired, restarting the mailbox sync"
|
|
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
|
+
},
|
|
1629
1670
|
"mailboxService": {
|
|
1630
1671
|
"consumerNotificationFailed": "Failed to notify consumer {consumerName}.",
|
|
1631
1672
|
"startConnectorFailed": "Failed to start connector for mailbox {mailboxId}."
|
|
@@ -1638,7 +1679,13 @@
|
|
|
1638
1679
|
"entityStorageTelemetryConnector": {
|
|
1639
1680
|
"flushTimeout": "The background thread did not confirm the flush within \"{timeoutMs}\" ms for task \"{taskId}\", with \"{taskCount}\" tasks outstanding",
|
|
1640
1681
|
"metricValueThreadRestarted": "The stalled metric value background thread was replaced, and the tasks it was given will be processed by the new one",
|
|
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",
|
|
1641
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"
|
|
1642
1689
|
}
|
|
1643
1690
|
},
|
|
1644
1691
|
"node": {
|
|
@@ -2706,12 +2753,21 @@
|
|
|
2706
2753
|
"connectorStarted": "The connector was started with \"{exporterCount}\" exporter(s)",
|
|
2707
2754
|
"connectorStopped": "The connector was stopped"
|
|
2708
2755
|
},
|
|
2756
|
+
"gmailEmailConnector": {
|
|
2757
|
+
"emailReceived": "Email received \"{subject}\""
|
|
2758
|
+
},
|
|
2709
2759
|
"imapEmailConnector": {
|
|
2710
2760
|
"emailReceived": "Email received \"{subject}\""
|
|
2711
2761
|
},
|
|
2762
|
+
"outlookEmailConnector": {
|
|
2763
|
+
"emailReceived": "Email received \"{subject}\""
|
|
2764
|
+
},
|
|
2712
2765
|
"pop3EmailConnector": {
|
|
2713
2766
|
"emailReceived": "Email received \"{subject}\""
|
|
2714
2767
|
},
|
|
2768
|
+
"mailboxService": {
|
|
2769
|
+
"migratedLegacySecret": "Moved the vaulted {propertyKey} of mailbox {mailboxId} to its current key."
|
|
2770
|
+
},
|
|
2715
2771
|
"awsMessagingSmsConnector": {
|
|
2716
2772
|
"smsSending": "Sending SMS of type"
|
|
2717
2773
|
},
|
|
@@ -3076,9 +3132,6 @@
|
|
|
3076
3132
|
"taskEngineStarted": "The proof task engine started for proof \"{proofId}\" in {elapsedMs}ms",
|
|
3077
3133
|
"taskVerifiableCredentialCreated": "The verifiable credential for proof \"{proofId}\" was created in {elapsedMs}ms",
|
|
3078
3134
|
"taskNotarizationComplete": "The notarization for proof \"{proofId}\" completed in {elapsedMs}ms, total task time {totalElapsedMs}ms"
|
|
3079
|
-
},
|
|
3080
|
-
"metricsRouteProcessor": {
|
|
3081
|
-
"metricRecordFailed": "Failed to record the request metric for route {route}"
|
|
3082
3135
|
}
|
|
3083
3136
|
},
|
|
3084
3137
|
"codeLists": {
|
|
@@ -17650,6 +17703,23 @@
|
|
|
17650
17703
|
"unece:specifiedParameter_label": "Specified Parameter"
|
|
17651
17704
|
}
|
|
17652
17705
|
},
|
|
17706
|
+
"gmailEmailConnectorConfigSchema": {
|
|
17707
|
+
"emailAddress": "Email Address",
|
|
17708
|
+
"clientId": "OAuth Client ID",
|
|
17709
|
+
"clientSecret": "OAuth Client Secret",
|
|
17710
|
+
"serviceAccountKey": "Service Account Key",
|
|
17711
|
+
"labelIds": "Label IDs",
|
|
17712
|
+
"maxMessagesPerPoll": "Maximum Messages Per Poll",
|
|
17713
|
+
"pollingIntervalMinutes": "Polling Interval (Minutes)"
|
|
17714
|
+
},
|
|
17715
|
+
"gmailEmailConnectorStateSchema": {
|
|
17716
|
+
"refreshToken": "OAuth Refresh Token",
|
|
17717
|
+
"historyId": "Mailbox History ID",
|
|
17718
|
+
"syncPageTokens": "Sync Page Tokens",
|
|
17719
|
+
"syncCompletedLabelIds": "Synced Label IDs",
|
|
17720
|
+
"initialSyncComplete": "Initial Sync Complete",
|
|
17721
|
+
"deliveredMessageIds": "Delivered Message IDs"
|
|
17722
|
+
},
|
|
17653
17723
|
"imapEmailConnectorConfigSchema": {
|
|
17654
17724
|
"host": "Host",
|
|
17655
17725
|
"port": "Port",
|
|
@@ -17659,6 +17729,31 @@
|
|
|
17659
17729
|
"folders": "Folders",
|
|
17660
17730
|
"pollingIntervalMinutes": "Polling Interval (Minutes)"
|
|
17661
17731
|
},
|
|
17732
|
+
"imapEmailConnectorStateSchema": {
|
|
17733
|
+
"folders": "Folder State"
|
|
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
|
+
},
|
|
17662
17757
|
"pop3EmailConnectorConfigSchema": {
|
|
17663
17758
|
"host": "Host",
|
|
17664
17759
|
"port": "Port",
|
|
@@ -17667,5 +17762,8 @@
|
|
|
17667
17762
|
"password": "Password",
|
|
17668
17763
|
"pollingIntervalMinutes": "Polling Interval (Minutes)",
|
|
17669
17764
|
"retainMessages": "Retain Messages"
|
|
17765
|
+
},
|
|
17766
|
+
"pop3EmailConnectorStateSchema": {
|
|
17767
|
+
"seenUidls": "Seen UIDLs"
|
|
17670
17768
|
}
|
|
17671
17769
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
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
|
+
|
|
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)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* custom plugin timeout ([#395](https://github.com/iotaledger/twin-node/issues/395)) ([d4a33ba](https://github.com/iotaledger/twin-node/commit/d4a33ba10a54c6dfab0b845b386201ac326df88a))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Dependencies
|
|
28
|
+
|
|
29
|
+
* The following workspace dependencies were updated
|
|
30
|
+
* dependencies
|
|
31
|
+
* @twin.org/node-core bumped from 0.9.4-next.3 to 0.9.4-next.4
|
|
32
|
+
|
|
3
33
|
## [0.9.4-next.3](https://github.com/iotaledger/twin-node/compare/node-v0.9.4-next.2...node-v0.9.4-next.3) (2026-09-09)
|
|
4
34
|
|
|
5
35
|
|
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"
|