@settlemint/dalp-cli 3.0.7-main.28606164993 → 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 +14 -3
- 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([
|
|
@@ -143343,7 +143354,7 @@ function normalizeDalpBaseUrl(url2) {
|
|
|
143343
143354
|
}
|
|
143344
143355
|
var package_default = {
|
|
143345
143356
|
name: "@settlemint/dalp-sdk",
|
|
143346
|
-
version: "3.0.7-main.
|
|
143357
|
+
version: "3.0.7-main.28619722466",
|
|
143347
143358
|
private: false,
|
|
143348
143359
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
143349
143360
|
homepage: "https://settlemint.com",
|
|
@@ -144594,7 +144605,7 @@ var failedStateSet = new Set(FAILED_TRANSACTION_STATES);
|
|
|
144594
144605
|
// package.json
|
|
144595
144606
|
var package_default2 = {
|
|
144596
144607
|
name: "@settlemint/dalp-cli",
|
|
144597
|
-
version: "3.0.7-main.
|
|
144608
|
+
version: "3.0.7-main.28619722466",
|
|
144598
144609
|
private: false,
|
|
144599
144610
|
description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
144600
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",
|