@settlemint/dalp-cli 2.1.7-main.26045377316 → 2.1.7-main.26046459919
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 +25 -6
- package/package.json +1 -1
package/dist/dalp.js
CHANGED
|
@@ -61627,13 +61627,20 @@ var UserSearchResultSchema = exports_external.object({
|
|
|
61627
61627
|
role: userRoles().meta({ description: "User's role for access control", examples: ["admin", "owner", "member"] })
|
|
61628
61628
|
});
|
|
61629
61629
|
var UserSearchOutputSchema = UserSearchResultSchema.array();
|
|
61630
|
-
var LIMIT_BOUNDARY = exports_external.number().int().positive().max(50).meta({
|
|
61630
|
+
var LIMIT_BOUNDARY = exports_external.number().int().positive().max(50).meta({
|
|
61631
|
+
description: "Maximum number of items to return for the section",
|
|
61632
|
+
examples: [10, 25, 50]
|
|
61633
|
+
});
|
|
61631
61634
|
var GlobalSearchInputSchema = exports_external.object({
|
|
61632
|
-
query: exports_external.string().trim().min(2).max(120).meta({
|
|
61635
|
+
query: exports_external.string().trim().min(2).max(120).meta({
|
|
61636
|
+
description: "Search term applied across eligible resources",
|
|
61637
|
+
examples: ["bond", "token", "0x71C7"]
|
|
61638
|
+
}),
|
|
61633
61639
|
limits: exports_external.object({
|
|
61634
61640
|
contacts: LIMIT_BOUNDARY.optional(),
|
|
61635
61641
|
tokens: LIMIT_BOUNDARY.optional(),
|
|
61636
|
-
users: LIMIT_BOUNDARY.optional()
|
|
61642
|
+
users: LIMIT_BOUNDARY.optional(),
|
|
61643
|
+
systemContracts: LIMIT_BOUNDARY.optional()
|
|
61637
61644
|
}).optional().meta({ description: "Optional per-section result limits", examples: [] })
|
|
61638
61645
|
});
|
|
61639
61646
|
var GlobalSearchContactsSectionSchema = exports_external.object({
|
|
@@ -61648,10 +61655,22 @@ var GlobalSearchUsersSectionSchema = exports_external.object({
|
|
|
61648
61655
|
type: exports_external.literal("users"),
|
|
61649
61656
|
items: UserSearchOutputSchema
|
|
61650
61657
|
});
|
|
61658
|
+
var SystemContractSearchResultSchema = exports_external.object({
|
|
61659
|
+
id: ethereumAddress.meta({
|
|
61660
|
+
description: "Lowercased contract address"
|
|
61661
|
+
}),
|
|
61662
|
+
name: exports_external.string(),
|
|
61663
|
+
contractType: exports_external.string()
|
|
61664
|
+
});
|
|
61665
|
+
var GlobalSearchSystemContractsSectionSchema = exports_external.object({
|
|
61666
|
+
type: exports_external.literal("systemContracts"),
|
|
61667
|
+
items: SystemContractSearchResultSchema.array()
|
|
61668
|
+
});
|
|
61651
61669
|
var GlobalSearchSectionSchema = exports_external.discriminatedUnion("type", [
|
|
61652
61670
|
GlobalSearchContactsSectionSchema,
|
|
61653
61671
|
GlobalSearchTokensSectionSchema,
|
|
61654
|
-
GlobalSearchUsersSectionSchema
|
|
61672
|
+
GlobalSearchUsersSectionSchema,
|
|
61673
|
+
GlobalSearchSystemContractsSectionSchema
|
|
61655
61674
|
]);
|
|
61656
61675
|
var GlobalSearchOutputSchema = exports_external.object({
|
|
61657
61676
|
sections: exports_external.array(GlobalSearchSectionSchema)
|
|
@@ -78496,7 +78515,7 @@ function normalizeDalpBaseUrl(url2) {
|
|
|
78496
78515
|
}
|
|
78497
78516
|
var package_default = {
|
|
78498
78517
|
name: "@settlemint/dalp-sdk",
|
|
78499
|
-
version: "2.1.7-main.
|
|
78518
|
+
version: "2.1.7-main.26046459919",
|
|
78500
78519
|
private: false,
|
|
78501
78520
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
78502
78521
|
homepage: "https://settlemint.com",
|
|
@@ -79068,7 +79087,7 @@ function toStandardWebhookSecret(secret) {
|
|
|
79068
79087
|
// package.json
|
|
79069
79088
|
var package_default2 = {
|
|
79070
79089
|
name: "@settlemint/dalp-cli",
|
|
79071
|
-
version: "2.1.7-main.
|
|
79090
|
+
version: "2.1.7-main.26046459919",
|
|
79072
79091
|
private: false,
|
|
79073
79092
|
description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
79074
79093
|
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.26046459919",
|
|
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",
|