@settlemint/dalp-cli 2.1.7-main.25805835198 → 2.1.7-main.25806626057
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 +16 -6
- package/package.json +1 -1
package/dist/dalp.js
CHANGED
|
@@ -88551,6 +88551,16 @@ var TokenSetScopedComplianceParamsInputSchema = TokenMutationInputSchema.extend(
|
|
|
88551
88551
|
});
|
|
88552
88552
|
var TokenCollectAumFeeInputSchema = TokenMutationInputSchema.extend({});
|
|
88553
88553
|
var TokenFreezeAumFeeRateInputSchema = TokenMutationInputSchema.extend({});
|
|
88554
|
+
var conversionMinterTargetTokenAddress = ethereumAddress.meta({
|
|
88555
|
+
description: "Must be the target token's address (where the conversion-minter feature lives).",
|
|
88556
|
+
examples: ["0x71C7656EC7ab88b098defB751B7401B5f6d8976F"]
|
|
88557
|
+
});
|
|
88558
|
+
var TokenConversionMinterTargetInputSchema = exports_external2.object({
|
|
88559
|
+
tokenAddress: conversionMinterTargetTokenAddress
|
|
88560
|
+
});
|
|
88561
|
+
var TokenConversionMinterMutationInputSchema = TokenMutationInputSchema.extend({
|
|
88562
|
+
tokenAddress: conversionMinterTargetTokenAddress
|
|
88563
|
+
});
|
|
88554
88564
|
var TokenPublishTriggerInputSchema = TokenMutationInputSchema.extend({
|
|
88555
88565
|
triggerId: ethereumHash.meta({
|
|
88556
88566
|
description: "Unique trigger identifier as bytes32 hex",
|
|
@@ -88613,13 +88623,13 @@ var TokenForceConvertInputSchema = TokenMutationInputSchema.extend({
|
|
|
88613
88623
|
examples: ["0x0000000000000000000000000000000000000000000000000000000000000001"]
|
|
88614
88624
|
})
|
|
88615
88625
|
});
|
|
88616
|
-
var TokenAddAuthorizedConverterInputSchema =
|
|
88626
|
+
var TokenAddAuthorizedConverterInputSchema = TokenConversionMinterMutationInputSchema.extend({
|
|
88617
88627
|
converter: ethereumAddress.meta({
|
|
88618
88628
|
description: "The converter address to authorize",
|
|
88619
88629
|
examples: ["0x71C7656EC7ab88b098defB751B7401B5f6d8976F"]
|
|
88620
88630
|
})
|
|
88621
88631
|
});
|
|
88622
|
-
var TokenRemoveAuthorizedConverterInputSchema =
|
|
88632
|
+
var TokenRemoveAuthorizedConverterInputSchema = TokenConversionMinterMutationInputSchema.extend({
|
|
88623
88633
|
converter: ethereumAddress.meta({
|
|
88624
88634
|
description: "The converter address to remove authorization from",
|
|
88625
88635
|
examples: ["0x71C7656EC7ab88b098defB751B7401B5f6d8976F"]
|
|
@@ -89435,7 +89445,7 @@ var addAuthorizedConverter = v2Contract.route({
|
|
|
89435
89445
|
description: "Add an address as an authorized converter.",
|
|
89436
89446
|
successDescription: "Authorized converter added successfully.",
|
|
89437
89447
|
tags: [V2_TAG.token]
|
|
89438
|
-
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(
|
|
89448
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenConversionMinterTargetInputSchema, TokenAddAuthorizedConverterInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89439
89449
|
var setPrice = v2Contract.route({
|
|
89440
89450
|
method: "POST",
|
|
89441
89451
|
path: "/tokens/{tokenAddress}/price",
|
|
@@ -89451,7 +89461,7 @@ var removeAuthorizedConverter = v2Contract.route({
|
|
|
89451
89461
|
description: "Remove an address from authorized converters.",
|
|
89452
89462
|
successDescription: "Authorized converter removed successfully.",
|
|
89453
89463
|
tags: [V2_TAG.token]
|
|
89454
|
-
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(
|
|
89464
|
+
}).meta({ contractErrors: [...COMMON_CONTRACT_ERRORS] }).input(v2Input.paramsBody(TokenConversionMinterTargetInputSchema, TokenRemoveAuthorizedConverterInputSchema.omit({ tokenAddress: true }))).output(mutationOutput);
|
|
89455
89465
|
var tokenV2MutationsContract = {
|
|
89456
89466
|
create: create20,
|
|
89457
89467
|
mint,
|
|
@@ -92056,7 +92066,7 @@ function normalizeDalpBaseUrl(url3) {
|
|
|
92056
92066
|
}
|
|
92057
92067
|
var package_default = {
|
|
92058
92068
|
name: "@settlemint/dalp-sdk",
|
|
92059
|
-
version: "2.1.7-main.
|
|
92069
|
+
version: "2.1.7-main.25806626057",
|
|
92060
92070
|
private: false,
|
|
92061
92071
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
92062
92072
|
homepage: "https://settlemint.com",
|
|
@@ -92635,7 +92645,7 @@ function toStandardWebhookSecret(secret) {
|
|
|
92635
92645
|
// package.json
|
|
92636
92646
|
var package_default2 = {
|
|
92637
92647
|
name: "@settlemint/dalp-cli",
|
|
92638
|
-
version: "2.1.7-main.
|
|
92648
|
+
version: "2.1.7-main.25806626057",
|
|
92639
92649
|
private: false,
|
|
92640
92650
|
description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
92641
92651
|
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.25806626057",
|
|
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",
|