@settlemint/dalp-cli 3.0.7-main.28598972490 → 3.0.7-main.28619722466
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 +28 -4
- package/package.json +1 -1
package/dist/dalp.js
CHANGED
|
@@ -133875,6 +133875,7 @@ var AssumableParticipantSchema = exports_external.object({
|
|
|
133875
133875
|
accountCount: exports_external.number().int().nonnegative()
|
|
133876
133876
|
});
|
|
133877
133877
|
var ASSUMABLE_PARTICIPANTS_COLLECTION_FIELDS = {
|
|
133878
|
+
id: textField({ sortable: false, defaultOperator: "eq" }),
|
|
133878
133879
|
kind: enumField(AssumableParticipantKindSchema.options, {
|
|
133879
133880
|
defaultOperator: "eq",
|
|
133880
133881
|
facetable: false
|
|
@@ -133882,7 +133883,17 @@ var ASSUMABLE_PARTICIPANTS_COLLECTION_FIELDS = {
|
|
|
133882
133883
|
displayName: textField()
|
|
133883
133884
|
};
|
|
133884
133885
|
var AssumableParticipantsCollectionInputSchema = createCollectionInputSchema(ASSUMABLE_PARTICIPANTS_COLLECTION_FIELDS, { defaultSort: "displayName" });
|
|
133885
|
-
var AssumableParticipantsV2ListInputSchema = AssumableParticipantsCollectionInputSchema
|
|
133886
|
+
var AssumableParticipantsV2ListInputSchema = AssumableParticipantsCollectionInputSchema.superRefine((value22, ctx) => {
|
|
133887
|
+
for (const filter of value22.filters) {
|
|
133888
|
+
if (filter.id === "id" && filter.operator !== "eq") {
|
|
133889
|
+
ctx.addIssue({
|
|
133890
|
+
code: exports_external.ZodIssueCode.custom,
|
|
133891
|
+
message: "The `id` filter supports exact match (eq) only.",
|
|
133892
|
+
path: ["filter", "id"]
|
|
133893
|
+
});
|
|
133894
|
+
}
|
|
133895
|
+
}
|
|
133896
|
+
});
|
|
133886
133897
|
var AssumableParticipantsV2ListOutputSchema = createPaginatedResponse(AssumableParticipantSchema);
|
|
133887
133898
|
var ParticipantAddressPurposeSchema = exports_external.enum(["transfer", "identity", "participant"]);
|
|
133888
133899
|
var ParticipantKindSchema = exports_external.enum([
|
|
@@ -133929,7 +133940,20 @@ var SmartWalletReadDataSchema = exports_external.object({
|
|
|
133929
133940
|
deployed: exports_external.boolean(),
|
|
133930
133941
|
signingAddress: ethereumAddress
|
|
133931
133942
|
});
|
|
133932
|
-
var
|
|
133943
|
+
var SmartAccountViewSchema = exports_external.object({
|
|
133944
|
+
address: ethereumAddress,
|
|
133945
|
+
deployed: exports_external.boolean()
|
|
133946
|
+
});
|
|
133947
|
+
var KeyBasedAccountViewSchema = exports_external.object({
|
|
133948
|
+
address: ethereumAddress
|
|
133949
|
+
});
|
|
133950
|
+
var SmartWalletAccountsSchema = exports_external.object({
|
|
133951
|
+
smartAccount: exports_external.union([exports_external.null(), SmartAccountViewSchema]),
|
|
133952
|
+
account: exports_external.union([exports_external.null(), KeyBasedAccountViewSchema])
|
|
133953
|
+
});
|
|
133954
|
+
var SmartWalletReadOutputSchema = createSingleResponse(exports_external.union([exports_external.null(), SmartWalletReadDataSchema])).extend({
|
|
133955
|
+
accounts: exports_external.union([exports_external.null(), SmartWalletAccountsSchema])
|
|
133956
|
+
});
|
|
133933
133957
|
var list24 = v2Contract.route({
|
|
133934
133958
|
method: "GET",
|
|
133935
133959
|
path: "/participants",
|
|
@@ -143330,7 +143354,7 @@ function normalizeDalpBaseUrl(url2) {
|
|
|
143330
143354
|
}
|
|
143331
143355
|
var package_default = {
|
|
143332
143356
|
name: "@settlemint/dalp-sdk",
|
|
143333
|
-
version: "3.0.7-main.
|
|
143357
|
+
version: "3.0.7-main.28619722466",
|
|
143334
143358
|
private: false,
|
|
143335
143359
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
143336
143360
|
homepage: "https://settlemint.com",
|
|
@@ -144581,7 +144605,7 @@ var failedStateSet = new Set(FAILED_TRANSACTION_STATES);
|
|
|
144581
144605
|
// package.json
|
|
144582
144606
|
var package_default2 = {
|
|
144583
144607
|
name: "@settlemint/dalp-cli",
|
|
144584
|
-
version: "3.0.7-main.
|
|
144608
|
+
version: "3.0.7-main.28619722466",
|
|
144585
144609
|
private: false,
|
|
144586
144610
|
description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
144587
144611
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@settlemint/dalp-cli",
|
|
3
|
-
"version": "3.0.7-main.
|
|
3
|
+
"version": "3.0.7-main.28619722466",
|
|
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",
|