@settlemint/dalp-cli 2.1.7-main.25383770828 → 2.1.7-main.25385454968
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/dalp.js +39 -7
- package/package.json +1 -1
package/dist/dalp.js
CHANGED
|
@@ -59893,7 +59893,7 @@ var CUSTOM_ERRORS = {
|
|
|
59893
59893
|
},
|
|
59894
59894
|
ADMIN_ACCESS_REQUIRED: {
|
|
59895
59895
|
status: 403,
|
|
59896
|
-
message: "
|
|
59896
|
+
message: "Insufficient role for this operation"
|
|
59897
59897
|
},
|
|
59898
59898
|
DATABASE_CONTEXT_REQUIRED: {
|
|
59899
59899
|
status: 500,
|
|
@@ -61874,14 +61874,43 @@ var RecoveryStatusInputSchema = exports_external.object({
|
|
|
61874
61874
|
});
|
|
61875
61875
|
var RecoveryPhaseSchema = exports_external.enum([
|
|
61876
61876
|
"creating-wallet",
|
|
61877
|
+
"creating-identity",
|
|
61877
61878
|
"creating-smart-wallet",
|
|
61878
61879
|
"recovering-smart-wallet",
|
|
61879
61880
|
"recovering-identity",
|
|
61881
|
+
"adding-management-key",
|
|
61882
|
+
"disabling-old-wallets",
|
|
61883
|
+
"registering-new-wallets",
|
|
61880
61884
|
"revoking-sessions",
|
|
61881
61885
|
"recovering-tokens",
|
|
61882
61886
|
"completed",
|
|
61887
|
+
"completed-with-token-failures",
|
|
61883
61888
|
"failed"
|
|
61884
61889
|
]);
|
|
61890
|
+
var TokenRecoveryFailureReasonSchema = exports_external.enum([
|
|
61891
|
+
"TOKEN_PAUSED",
|
|
61892
|
+
"MISSING_CUSTODIAN_ROLE",
|
|
61893
|
+
"NO_TOKENS",
|
|
61894
|
+
"RPC_ERROR",
|
|
61895
|
+
"UNKNOWN"
|
|
61896
|
+
]);
|
|
61897
|
+
var TokenRecoveryFailureSchema = exports_external.object({
|
|
61898
|
+
tokenAddress: ethereumAddress.meta({
|
|
61899
|
+
description: "Token contract whose forcedRecover call failed"
|
|
61900
|
+
}),
|
|
61901
|
+
holderAddress: ethereumAddress.meta({
|
|
61902
|
+
description: "Lost wallet that held the unrecovered balance"
|
|
61903
|
+
}),
|
|
61904
|
+
reason: TokenRecoveryFailureReasonSchema.meta({
|
|
61905
|
+
description: "Classified failure reason driving the operator's retry decision"
|
|
61906
|
+
}),
|
|
61907
|
+
message: exports_external.string().meta({
|
|
61908
|
+
description: "Operator-friendly explanation classified from the raw revert"
|
|
61909
|
+
}),
|
|
61910
|
+
rawError: exports_external.string().meta({
|
|
61911
|
+
description: "Verbatim error message from the contract call for debugging"
|
|
61912
|
+
})
|
|
61913
|
+
});
|
|
61885
61914
|
var RecoveryStatusOutputSchema = exports_external.object({
|
|
61886
61915
|
phase: RecoveryPhaseSchema.meta({
|
|
61887
61916
|
description: "The current phase of the recovery workflow"
|
|
@@ -61900,6 +61929,9 @@ var RecoveryStatusOutputSchema = exports_external.object({
|
|
|
61900
61929
|
}),
|
|
61901
61930
|
newIdentity: ethereumAddress.nullable().meta({
|
|
61902
61931
|
description: "New OnchainID address (populated when completed)"
|
|
61932
|
+
}),
|
|
61933
|
+
tokenRecoveryFailures: exports_external.array(TokenRecoveryFailureSchema).meta({
|
|
61934
|
+
description: "Per-token failure manifest. Empty when phase is 'completed'. " + "Populated when phase is 'completed-with-token-failures' — the on-chain " + "recovery link persists, so any listed token can be reclaimed later via retry."
|
|
61903
61935
|
})
|
|
61904
61936
|
});
|
|
61905
61937
|
var TAGS2 = [V1_TAG.identityRecovery];
|
|
@@ -72144,7 +72176,7 @@ var snapshots = v2Contract.route({
|
|
|
72144
72176
|
var reindex = v2Contract.route({
|
|
72145
72177
|
method: "POST",
|
|
72146
72178
|
path: "/blockchain-monitoring/reindex",
|
|
72147
|
-
description: "Trigger a full reindex of blockchain data for a chain",
|
|
72179
|
+
description: "Trigger a full reindex of blockchain data for a chain; restricted to global administrators",
|
|
72148
72180
|
successDescription: "Reindex request accepted",
|
|
72149
72181
|
tags: [V2_TAG.blockchainMonitoring]
|
|
72150
72182
|
}).input(v2Input.body(BlockchainMonitoringV2ReindexInputSchema)).output(BlockchainMonitoringV2ReindexOutputSchema);
|
|
@@ -73231,9 +73263,7 @@ var MultisigConfigSchema = exports_external.object({
|
|
|
73231
73263
|
var SmartWalletCreateInputSchema = exports_external.object({
|
|
73232
73264
|
description: exports_external.string().optional(),
|
|
73233
73265
|
isDefaultWallet: exports_external.boolean().optional(),
|
|
73234
|
-
|
|
73235
|
-
multisig: MultisigConfigSchema.optional(),
|
|
73236
|
-
identitySubjectType: exports_external.enum(["personal", "shared", "organisational"]).optional()
|
|
73266
|
+
multisig: MultisigConfigSchema.optional()
|
|
73237
73267
|
});
|
|
73238
73268
|
var SmartWalletUpdateInputSchema = exports_external.object({
|
|
73239
73269
|
description: exports_external.string().optional(),
|
|
@@ -76982,6 +77012,8 @@ var transactionSubStatuses = [
|
|
|
76982
77012
|
"WORKFLOW_CREATING",
|
|
76983
77013
|
"WORKFLOW_GRANTING_PERMISSIONS",
|
|
76984
77014
|
"WORKFLOW_ISSUING_CLAIMS",
|
|
77015
|
+
"WORKFLOW_ADDING_MANAGEMENT_KEY",
|
|
77016
|
+
"WORKFLOW_REGISTERING_IDENTITY",
|
|
76985
77017
|
"WORKFLOW_UNPAUSING",
|
|
76986
77018
|
"WORKFLOW_PERSISTING_METADATA",
|
|
76987
77019
|
"WORKFLOW_FAILED",
|
|
@@ -77922,7 +77954,7 @@ function normalizeDalpBaseUrl(url3) {
|
|
|
77922
77954
|
}
|
|
77923
77955
|
var package_default = {
|
|
77924
77956
|
name: "@settlemint/dalp-sdk",
|
|
77925
|
-
version: "2.1.7-main.
|
|
77957
|
+
version: "2.1.7-main.25385454968",
|
|
77926
77958
|
private: false,
|
|
77927
77959
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
77928
77960
|
homepage: "https://settlemint.com",
|
|
@@ -78473,7 +78505,7 @@ function trimConfigValue(name, value3) {
|
|
|
78473
78505
|
// package.json
|
|
78474
78506
|
var package_default2 = {
|
|
78475
78507
|
name: "@settlemint/dalp-cli",
|
|
78476
|
-
version: "2.1.7-main.
|
|
78508
|
+
version: "2.1.7-main.25385454968",
|
|
78477
78509
|
private: false,
|
|
78478
78510
|
description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
78479
78511
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@settlemint/dalp-cli",
|
|
3
|
-
"version": "2.1.7-main.
|
|
3
|
+
"version": "2.1.7-main.25385454968",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
6
6
|
"homepage": "https://settlemint.com",
|