@settlemint/dalp-sdk 3.0.0-main.27346921594 → 3.0.0-main.27347776339
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/index.js +5 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -79962,7 +79962,10 @@ import { z as z318 } from "zod";
|
|
|
79962
79962
|
var TokenRecipientActionSchema = z318.enum(["mint", "transfer", "burn"]);
|
|
79963
79963
|
var EligibleForTokenFilterSchema = z318.object({
|
|
79964
79964
|
tokenAddress: ethereumAddress,
|
|
79965
|
-
action: TokenRecipientActionSchema.default("transfer")
|
|
79965
|
+
action: TokenRecipientActionSchema.default("transfer"),
|
|
79966
|
+
reveal: z318.union([z318.boolean(), z318.stringbool()]).optional().meta({
|
|
79967
|
+
description: "Keep registered-wallet address resolution active but skip hiding ineligible rows (the picker's show-all-recipients mode)"
|
|
79968
|
+
})
|
|
79966
79969
|
});
|
|
79967
79970
|
var ListEligibilityMetaSchema = {
|
|
79968
79971
|
eligibilityHiddenCount: z318.number().int().nonnegative().optional().meta({ description: "Participants hidden by token eligibility when the filter is active" })
|
|
@@ -91225,7 +91228,7 @@ function normalizeDalpBaseUrl(url) {
|
|
|
91225
91228
|
// package.json
|
|
91226
91229
|
var package_default = {
|
|
91227
91230
|
name: "@settlemint/dalp-sdk",
|
|
91228
|
-
version: "3.0.0-main.
|
|
91231
|
+
version: "3.0.0-main.27347776339",
|
|
91229
91232
|
private: false,
|
|
91230
91233
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
91231
91234
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED