@settlemint/dalp-cli 2.1.7-main.23558051606 → 2.1.7-main.23564712844
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 +13 -3
- package/package.json +1 -1
package/dist/dalp.js
CHANGED
|
@@ -73686,6 +73686,15 @@ var price = v2Contract.route({
|
|
|
73686
73686
|
successDescription: "Token price resolved successfully.",
|
|
73687
73687
|
tags: ["v2-token"]
|
|
73688
73688
|
}).input(v2Input.paramsQuery(TokenPriceInputParamsSchema, TokenPriceInputQuerySchema)).output(createSingleResponse(TokenPriceResponseSchema));
|
|
73689
|
+
var search4 = v2Contract.route({
|
|
73690
|
+
method: "GET",
|
|
73691
|
+
path: "/tokens/search",
|
|
73692
|
+
description: "Search for tokens by name, symbol, or address.",
|
|
73693
|
+
successDescription: "List of tokens matching the search criteria.",
|
|
73694
|
+
tags: ["v2-token"]
|
|
73695
|
+
}).input(v2Input.query(TokenSearchInputSchema)).output(createSingleResponse(exports_external.object({
|
|
73696
|
+
results: exports_external.array(TokenSearchResultSchema)
|
|
73697
|
+
})));
|
|
73689
73698
|
var tokenV2ReadsContract = {
|
|
73690
73699
|
read: read26,
|
|
73691
73700
|
allowance,
|
|
@@ -73698,7 +73707,8 @@ var tokenV2ReadsContract = {
|
|
|
73698
73707
|
features,
|
|
73699
73708
|
metadata: tokenMetadata,
|
|
73700
73709
|
transferApprovals,
|
|
73701
|
-
price
|
|
73710
|
+
price,
|
|
73711
|
+
search: search4
|
|
73702
73712
|
};
|
|
73703
73713
|
var statsBondStatus = v2Contract.route({
|
|
73704
73714
|
method: "GET",
|
|
@@ -79589,7 +79599,7 @@ var timestampSerializer = {
|
|
|
79589
79599
|
};
|
|
79590
79600
|
var package_default = {
|
|
79591
79601
|
name: "@settlemint/dalp-sdk",
|
|
79592
|
-
version: "2.1.7-main.
|
|
79602
|
+
version: "2.1.7-main.23564712844",
|
|
79593
79603
|
private: false,
|
|
79594
79604
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
79595
79605
|
homepage: "https://settlemint.com",
|
|
@@ -79732,7 +79742,7 @@ function createDalpClient(config3) {
|
|
|
79732
79742
|
// package.json
|
|
79733
79743
|
var package_default2 = {
|
|
79734
79744
|
name: "@settlemint/dalp-cli",
|
|
79735
|
-
version: "2.1.7-main.
|
|
79745
|
+
version: "2.1.7-main.23564712844",
|
|
79736
79746
|
private: false,
|
|
79737
79747
|
description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
79738
79748
|
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.23564712844",
|
|
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",
|