@settlemint/dalp-cli 2.1.7-main.25723988730 → 2.1.7-main.25725394464
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 +26 -26
- package/package.json +1 -1
package/dist/dalp.js
CHANGED
|
@@ -88891,28 +88891,28 @@ var collectAumFee = v2Contract.route({
|
|
|
88891
88891
|
description: "Collect accrued AUM fees from a token feature.",
|
|
88892
88892
|
successDescription: "AUM fee collected successfully.",
|
|
88893
88893
|
tags: [V2_TAG.token]
|
|
88894
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenCollectAumFeeInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88894
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenCollectAumFeeInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88895
88895
|
var freezeAumFeeRate = v2Contract.route({
|
|
88896
88896
|
method: "POST",
|
|
88897
88897
|
path: "/tokens/{tokenAddress}/aum-fee/rate-freezes",
|
|
88898
88898
|
description: "Permanently freeze the AUM fee rate for a token feature.",
|
|
88899
88899
|
successDescription: "AUM fee rate frozen successfully.",
|
|
88900
88900
|
tags: [V2_TAG.token]
|
|
88901
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenFreezeAumFeeRateInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88901
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenFreezeAumFeeRateInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88902
88902
|
var claimYield = v2Contract.route({
|
|
88903
88903
|
method: "POST",
|
|
88904
88904
|
path: "/tokens/{tokenAddress}/fixed-treasury-yield/claims",
|
|
88905
88905
|
description: "Claim accrued yield from a fixed treasury yield feature.",
|
|
88906
88906
|
successDescription: "Yield claimed successfully.",
|
|
88907
88907
|
tags: [V2_TAG.token]
|
|
88908
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenClaimYieldInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88908
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenClaimYieldInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88909
88909
|
var setYieldTreasury = v2Contract.route({
|
|
88910
88910
|
method: "PATCH",
|
|
88911
88911
|
path: "/tokens/{tokenAddress}/fixed-treasury-yield/treasury",
|
|
88912
88912
|
description: "Update the treasury address for a yield feature.",
|
|
88913
88913
|
successDescription: "Yield treasury updated successfully.",
|
|
88914
88914
|
tags: [V2_TAG.token]
|
|
88915
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetYieldTreasuryInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88915
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetYieldTreasuryInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88916
88916
|
var featureMature = v2Contract.route({
|
|
88917
88917
|
method: "POST",
|
|
88918
88918
|
path: "/tokens/{tokenAddress}/maturity-redemption/maturations",
|
|
@@ -88926,14 +88926,14 @@ var matureEarly = v2Contract.route({
|
|
|
88926
88926
|
description: "Trigger early maturity for a bond token.",
|
|
88927
88927
|
successDescription: "Bond matured early successfully.",
|
|
88928
88928
|
tags: [V2_TAG.token]
|
|
88929
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenMatureEarlyInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88929
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenMatureEarlyInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88930
88930
|
var setMaturityTreasury = v2Contract.route({
|
|
88931
88931
|
method: "PATCH",
|
|
88932
88932
|
path: "/tokens/{tokenAddress}/maturity-redemption/treasury",
|
|
88933
88933
|
description: "Update the treasury address for maturity redemption.",
|
|
88934
88934
|
successDescription: "Maturity treasury updated successfully.",
|
|
88935
88935
|
tags: [V2_TAG.token]
|
|
88936
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetMaturityTreasuryInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88936
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetMaturityTreasuryInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88937
88937
|
var topUpMaturityTreasury = v2Contract.route({
|
|
88938
88938
|
method: "POST",
|
|
88939
88939
|
path: "/tokens/{tokenAddress}/maturity-redemption/top-ups",
|
|
@@ -88989,7 +88989,7 @@ var setTransactionFeeRecipient = v2Contract.route({
|
|
|
88989
88989
|
description: "Update the transaction fee recipient address.",
|
|
88990
88990
|
successDescription: "Transaction fee recipient updated successfully.",
|
|
88991
88991
|
tags: [V2_TAG.token]
|
|
88992
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetTransactionFeeRecipientInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88992
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetTransactionFeeRecipientInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
88993
88993
|
var freezeTransactionFeeRates = v2Contract.route({
|
|
88994
88994
|
method: "POST",
|
|
88995
88995
|
path: "/tokens/{tokenAddress}/transaction-fee/rate-freezes",
|
|
@@ -89003,14 +89003,14 @@ var setExternalTransactionFees = v2Contract.route({
|
|
|
89003
89003
|
description: "Update external transaction fee amounts (mint, burn, transfer).",
|
|
89004
89004
|
successDescription: "External transaction fees updated successfully.",
|
|
89005
89005
|
tags: [V2_TAG.token]
|
|
89006
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetExternalTransactionFeesInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89006
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetExternalTransactionFeesInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89007
89007
|
var setExternalTransactionFeeRecipient = v2Contract.route({
|
|
89008
89008
|
method: "PATCH",
|
|
89009
89009
|
path: "/tokens/{tokenAddress}/external-transaction-fee/recipient",
|
|
89010
89010
|
description: "Update the external transaction fee recipient address.",
|
|
89011
89011
|
successDescription: "External transaction fee recipient updated successfully.",
|
|
89012
89012
|
tags: [V2_TAG.token]
|
|
89013
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetExternalTransactionFeeRecipientInputSchema.omit({
|
|
89013
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetExternalTransactionFeeRecipientInputSchema.omit({
|
|
89014
89014
|
tokenAddress: true
|
|
89015
89015
|
}))).output(mutationOutput);
|
|
89016
89016
|
var setExternalTransactionFeeToken = v2Contract.route({
|
|
@@ -89019,7 +89019,7 @@ var setExternalTransactionFeeToken = v2Contract.route({
|
|
|
89019
89019
|
description: "Update the token used for external transaction fee payments.",
|
|
89020
89020
|
successDescription: "External transaction fee token updated successfully.",
|
|
89021
89021
|
tags: [V2_TAG.token]
|
|
89022
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetExternalTransactionFeeTokenInputSchema.omit({
|
|
89022
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetExternalTransactionFeeTokenInputSchema.omit({
|
|
89023
89023
|
tokenAddress: true
|
|
89024
89024
|
}))).output(mutationOutput);
|
|
89025
89025
|
var freezeExternalTransactionFees = v2Contract.route({
|
|
@@ -89028,7 +89028,7 @@ var freezeExternalTransactionFees = v2Contract.route({
|
|
|
89028
89028
|
description: "Permanently freeze external transaction fees.",
|
|
89029
89029
|
successDescription: "External transaction fees frozen successfully.",
|
|
89030
89030
|
tags: [V2_TAG.token]
|
|
89031
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenFreezeExternalTransactionFeesInputSchema.omit({
|
|
89031
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenFreezeExternalTransactionFeesInputSchema.omit({
|
|
89032
89032
|
tokenAddress: true
|
|
89033
89033
|
}))).output(mutationOutput);
|
|
89034
89034
|
var setTransactionFeeAccountingRates = v2Contract.route({
|
|
@@ -89037,7 +89037,7 @@ var setTransactionFeeAccountingRates = v2Contract.route({
|
|
|
89037
89037
|
description: "Update transaction fee accounting rates (mint, burn, transfer).",
|
|
89038
89038
|
successDescription: "Transaction fee accounting rates updated successfully.",
|
|
89039
89039
|
tags: [V2_TAG.token]
|
|
89040
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetTransactionFeeAccountingRatesInputSchema.omit({
|
|
89040
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetTransactionFeeAccountingRatesInputSchema.omit({
|
|
89041
89041
|
tokenAddress: true
|
|
89042
89042
|
}))).output(mutationOutput);
|
|
89043
89043
|
var setTransactionFeeAccountingRecipient = v2Contract.route({
|
|
@@ -89046,7 +89046,7 @@ var setTransactionFeeAccountingRecipient = v2Contract.route({
|
|
|
89046
89046
|
description: "Update the transaction fee accounting recipient address.",
|
|
89047
89047
|
successDescription: "Transaction fee accounting recipient updated successfully.",
|
|
89048
89048
|
tags: [V2_TAG.token]
|
|
89049
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetTransactionFeeAccountingRecipientInputSchema.omit({
|
|
89049
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetTransactionFeeAccountingRecipientInputSchema.omit({
|
|
89050
89050
|
tokenAddress: true
|
|
89051
89051
|
}))).output(mutationOutput);
|
|
89052
89052
|
var freezeTransactionFeeAccountingRates = v2Contract.route({
|
|
@@ -89055,7 +89055,7 @@ var freezeTransactionFeeAccountingRates = v2Contract.route({
|
|
|
89055
89055
|
description: "Permanently freeze transaction fee accounting rates.",
|
|
89056
89056
|
successDescription: "Transaction fee accounting rates frozen successfully.",
|
|
89057
89057
|
tags: [V2_TAG.token]
|
|
89058
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenFreezeTransactionFeeAccountingRatesInputSchema.omit({
|
|
89058
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenFreezeTransactionFeeAccountingRatesInputSchema.omit({
|
|
89059
89059
|
tokenAddress: true
|
|
89060
89060
|
}))).output(mutationOutput);
|
|
89061
89061
|
var reconcileFees = v2Contract.route({
|
|
@@ -89064,63 +89064,63 @@ var reconcileFees = v2Contract.route({
|
|
|
89064
89064
|
description: "Reconcile accrued transaction fees and transfer to recipient.",
|
|
89065
89065
|
successDescription: "Fees reconciled successfully.",
|
|
89066
89066
|
tags: [V2_TAG.token]
|
|
89067
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenReconcileFeesInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89067
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenReconcileFeesInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89068
89068
|
var setFeeExemption = v2Contract.route({
|
|
89069
89069
|
method: "PUT",
|
|
89070
89070
|
path: "/tokens/{tokenAddress}/transaction-fee-accounting/exemptions",
|
|
89071
89071
|
description: "Set or remove fee exemption for an account.",
|
|
89072
89072
|
successDescription: "Fee exemption updated successfully.",
|
|
89073
89073
|
tags: [V2_TAG.token]
|
|
89074
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetFeeExemptionInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89074
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetFeeExemptionInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89075
89075
|
var delegate = v2Contract.route({
|
|
89076
89076
|
method: "POST",
|
|
89077
89077
|
path: "/tokens/{tokenAddress}/voting-power/delegations",
|
|
89078
89078
|
description: "Delegate voting power to another address.",
|
|
89079
89079
|
successDescription: "Voting power delegated successfully.",
|
|
89080
89080
|
tags: [V2_TAG.token]
|
|
89081
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenDelegateInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89081
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenDelegateInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89082
89082
|
var publishTrigger = v2Contract.route({
|
|
89083
89083
|
method: "POST",
|
|
89084
89084
|
path: "/tokens/{tokenAddress}/conversion/triggers",
|
|
89085
89085
|
description: "Publish a conversion trigger with pricing and expiration.",
|
|
89086
89086
|
successDescription: "Conversion trigger published successfully.",
|
|
89087
89087
|
tags: [V2_TAG.token]
|
|
89088
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenPublishTriggerInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89088
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenPublishTriggerInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89089
89089
|
var disableTrigger = v2Contract.route({
|
|
89090
89090
|
method: "POST",
|
|
89091
89091
|
path: "/tokens/{tokenAddress}/conversion/trigger-disablements",
|
|
89092
89092
|
description: "Disable an active conversion trigger.",
|
|
89093
89093
|
successDescription: "Conversion trigger disabled successfully.",
|
|
89094
89094
|
tags: [V2_TAG.token]
|
|
89095
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenDisableTriggerInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89095
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenDisableTriggerInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89096
89096
|
var setConversionWindow = v2Contract.route({
|
|
89097
89097
|
method: "PATCH",
|
|
89098
89098
|
path: "/tokens/{tokenAddress}/conversion/window",
|
|
89099
89099
|
description: "Set the conversion window start and end timestamps.",
|
|
89100
89100
|
successDescription: "Conversion window updated successfully.",
|
|
89101
89101
|
tags: [V2_TAG.token]
|
|
89102
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetConversionWindowInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89102
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenSetConversionWindowInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89103
89103
|
var convert = v2Contract.route({
|
|
89104
89104
|
method: "POST",
|
|
89105
89105
|
path: "/tokens/{tokenAddress}/conversion/conversions",
|
|
89106
89106
|
description: "Convert tokens using an active trigger.",
|
|
89107
89107
|
successDescription: "Tokens converted successfully.",
|
|
89108
89108
|
tags: [V2_TAG.token]
|
|
89109
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenConvertInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89109
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenConvertInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89110
89110
|
var forceConvert = v2Contract.route({
|
|
89111
89111
|
method: "POST",
|
|
89112
89112
|
path: "/tokens/{tokenAddress}/conversion/forced-conversions",
|
|
89113
89113
|
description: "Force convert tokens for a specific holder.",
|
|
89114
89114
|
successDescription: "Tokens force converted successfully.",
|
|
89115
89115
|
tags: [V2_TAG.token]
|
|
89116
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenForceConvertInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89116
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenForceConvertInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89117
89117
|
var addAuthorizedConverter = v2Contract.route({
|
|
89118
89118
|
method: "POST",
|
|
89119
89119
|
path: "/tokens/{tokenAddress}/conversion/authorized-converters",
|
|
89120
89120
|
description: "Add an address as an authorized converter.",
|
|
89121
89121
|
successDescription: "Authorized converter added successfully.",
|
|
89122
89122
|
tags: [V2_TAG.token]
|
|
89123
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenAddAuthorizedConverterInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89123
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenAddAuthorizedConverterInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89124
89124
|
var setPrice = v2Contract.route({
|
|
89125
89125
|
method: "POST",
|
|
89126
89126
|
path: "/tokens/{tokenAddress}/price",
|
|
@@ -89136,7 +89136,7 @@ var removeAuthorizedConverter = v2Contract.route({
|
|
|
89136
89136
|
description: "Remove an address from authorized converters.",
|
|
89137
89137
|
successDescription: "Authorized converter removed successfully.",
|
|
89138
89138
|
tags: [V2_TAG.token]
|
|
89139
|
-
}).input(v2Input.paramsBody(TokenReadInputSchema, TokenRemoveAuthorizedConverterInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89139
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenReadInputSchema, TokenRemoveAuthorizedConverterInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89140
89140
|
var tokenV2MutationsContract = {
|
|
89141
89141
|
create: create20,
|
|
89142
89142
|
mint,
|
|
@@ -91641,7 +91641,7 @@ function normalizeDalpBaseUrl(url3) {
|
|
|
91641
91641
|
}
|
|
91642
91642
|
var package_default = {
|
|
91643
91643
|
name: "@settlemint/dalp-sdk",
|
|
91644
|
-
version: "2.1.7-main.
|
|
91644
|
+
version: "2.1.7-main.25725394464",
|
|
91645
91645
|
private: false,
|
|
91646
91646
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
91647
91647
|
homepage: "https://settlemint.com",
|
|
@@ -92211,7 +92211,7 @@ function toStandardWebhookSecret(secret) {
|
|
|
92211
92211
|
// package.json
|
|
92212
92212
|
var package_default2 = {
|
|
92213
92213
|
name: "@settlemint/dalp-cli",
|
|
92214
|
-
version: "2.1.7-main.
|
|
92214
|
+
version: "2.1.7-main.25725394464",
|
|
92215
92215
|
private: false,
|
|
92216
92216
|
description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
92217
92217
|
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.25725394464",
|
|
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",
|