@twin.org/identity-cli 0.0.1-next.22 → 0.0.1-next.24
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/cjs/index.cjs +3 -3
- package/dist/esm/index.mjs +3 -3
- package/dist/locales/en.json +3 -1
- package/docs/changelog.md +1 -1
- package/package.json +4 -4
package/dist/cjs/index.cjs
CHANGED
|
@@ -586,7 +586,7 @@ async function actionCommandServiceRemove(opts) {
|
|
|
586
586
|
cliCore.CLIDisplay.spinnerStart();
|
|
587
587
|
await identityConnector.removeService(localIdentity, id);
|
|
588
588
|
cliCore.CLIDisplay.spinnerStop();
|
|
589
|
-
cliCore.CLIDisplay.value(core.I18n.formatMessage("commands.common.labels.explore"), `${core.StringHelper.trimTrailingSlashes(explorerEndpoint)}/addr/${identityConnectorIota.IotaIdentityUtils.didToAddress(identityModels.DocumentHelper.
|
|
589
|
+
cliCore.CLIDisplay.value(core.I18n.formatMessage("commands.common.labels.explore"), `${core.StringHelper.trimTrailingSlashes(explorerEndpoint)}/addr/${identityConnectorIota.IotaIdentityUtils.didToAddress(identityModels.DocumentHelper.parseId(id).id)}?tab=DID`);
|
|
590
590
|
cliCore.CLIDisplay.break();
|
|
591
591
|
cliCore.CLIDisplay.done();
|
|
592
592
|
}
|
|
@@ -1067,7 +1067,7 @@ async function actionCommandVerificationMethodRemove(opts) {
|
|
|
1067
1067
|
cliCore.CLIDisplay.spinnerStart();
|
|
1068
1068
|
await identityConnector.removeVerificationMethod(localIdentity, id);
|
|
1069
1069
|
cliCore.CLIDisplay.spinnerStop();
|
|
1070
|
-
cliCore.CLIDisplay.value(core.I18n.formatMessage("commands.common.labels.explore"), `${core.StringHelper.trimTrailingSlashes(explorerEndpoint)}/addr/${identityConnectorIota.IotaIdentityUtils.didToAddress(identityModels.DocumentHelper.
|
|
1070
|
+
cliCore.CLIDisplay.value(core.I18n.formatMessage("commands.common.labels.explore"), `${core.StringHelper.trimTrailingSlashes(explorerEndpoint)}/addr/${identityConnectorIota.IotaIdentityUtils.didToAddress(identityModels.DocumentHelper.parseId(id).id)}?tab=DID`);
|
|
1071
1071
|
cliCore.CLIDisplay.break();
|
|
1072
1072
|
cliCore.CLIDisplay.done();
|
|
1073
1073
|
}
|
|
@@ -1090,7 +1090,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
1090
1090
|
return this.execute({
|
|
1091
1091
|
title: "TWIN Identity",
|
|
1092
1092
|
appName: "twin-identity",
|
|
1093
|
-
version: "0.0.1-next.
|
|
1093
|
+
version: "0.0.1-next.24",
|
|
1094
1094
|
icon: "🌍",
|
|
1095
1095
|
supportsEnvFiles: true,
|
|
1096
1096
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -583,7 +583,7 @@ async function actionCommandServiceRemove(opts) {
|
|
|
583
583
|
CLIDisplay.spinnerStart();
|
|
584
584
|
await identityConnector.removeService(localIdentity, id);
|
|
585
585
|
CLIDisplay.spinnerStop();
|
|
586
|
-
CLIDisplay.value(I18n.formatMessage("commands.common.labels.explore"), `${StringHelper.trimTrailingSlashes(explorerEndpoint)}/addr/${IotaIdentityUtils.didToAddress(DocumentHelper.
|
|
586
|
+
CLIDisplay.value(I18n.formatMessage("commands.common.labels.explore"), `${StringHelper.trimTrailingSlashes(explorerEndpoint)}/addr/${IotaIdentityUtils.didToAddress(DocumentHelper.parseId(id).id)}?tab=DID`);
|
|
587
587
|
CLIDisplay.break();
|
|
588
588
|
CLIDisplay.done();
|
|
589
589
|
}
|
|
@@ -1064,7 +1064,7 @@ async function actionCommandVerificationMethodRemove(opts) {
|
|
|
1064
1064
|
CLIDisplay.spinnerStart();
|
|
1065
1065
|
await identityConnector.removeVerificationMethod(localIdentity, id);
|
|
1066
1066
|
CLIDisplay.spinnerStop();
|
|
1067
|
-
CLIDisplay.value(I18n.formatMessage("commands.common.labels.explore"), `${StringHelper.trimTrailingSlashes(explorerEndpoint)}/addr/${IotaIdentityUtils.didToAddress(DocumentHelper.
|
|
1067
|
+
CLIDisplay.value(I18n.formatMessage("commands.common.labels.explore"), `${StringHelper.trimTrailingSlashes(explorerEndpoint)}/addr/${IotaIdentityUtils.didToAddress(DocumentHelper.parseId(id).id)}?tab=DID`);
|
|
1068
1068
|
CLIDisplay.break();
|
|
1069
1069
|
CLIDisplay.done();
|
|
1070
1070
|
}
|
|
@@ -1087,7 +1087,7 @@ class CLI extends CLIBase {
|
|
|
1087
1087
|
return this.execute({
|
|
1088
1088
|
title: "TWIN Identity",
|
|
1089
1089
|
appName: "twin-identity",
|
|
1090
|
-
version: "0.0.1-next.
|
|
1090
|
+
version: "0.0.1-next.24",
|
|
1091
1091
|
icon: "🌍",
|
|
1092
1092
|
supportsEnvFiles: true,
|
|
1093
1093
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/locales/en.json
CHANGED
|
@@ -274,7 +274,9 @@
|
|
|
274
274
|
"iotaRebased": {
|
|
275
275
|
"insufficientFunds": "There were insufficient funds to complete the operation",
|
|
276
276
|
"packageNotFoundOnNetwork": "The package \"{packageId}\" was not found on the network",
|
|
277
|
-
"packageObjectError": "Failed to fetch the package object \"{packageId}\""
|
|
277
|
+
"packageObjectError": "Failed to fetch the package object \"{packageId}\"",
|
|
278
|
+
"nftTransactionFailed": "The NFT transaction failed",
|
|
279
|
+
"addressNotFound": "The address is missing could not be found from the seed \"{address}\""
|
|
278
280
|
},
|
|
279
281
|
"entityStorageVaultConnector": {
|
|
280
282
|
"keyAlreadyExists": "The key \"{existingId}\" already exists in the vault",
|
package/docs/changelog.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/identity-cli",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.24",
|
|
4
4
|
"description": "A command line interface for interacting with the identity connectors",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"@twin.org/data-json-ld": "next",
|
|
23
23
|
"@twin.org/entity": "next",
|
|
24
24
|
"@twin.org/entity-storage-connector-memory": "next",
|
|
25
|
-
"@twin.org/identity-connector-iota": "0.0.1-next.
|
|
26
|
-
"@twin.org/identity-connector-iota-rebased": "0.0.1-next.
|
|
27
|
-
"@twin.org/identity-models": "0.0.1-next.
|
|
25
|
+
"@twin.org/identity-connector-iota": "0.0.1-next.24",
|
|
26
|
+
"@twin.org/identity-connector-iota-rebased": "0.0.1-next.24",
|
|
27
|
+
"@twin.org/identity-models": "0.0.1-next.24",
|
|
28
28
|
"@twin.org/nameof": "next",
|
|
29
29
|
"@twin.org/standards-w3c-did": "next",
|
|
30
30
|
"@twin.org/vault-connector-entity-storage": "next",
|