@settlemint/dalp-sdk 3.0.0-main.27810958967 → 3.0.0-main.27811408093
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 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -89984,6 +89984,10 @@ var TokenFeatureConversionSchema = z491.object({
|
|
|
89984
89984
|
partialAllowed: z491.boolean().meta({
|
|
89985
89985
|
description: "Whether partial conversions are allowed",
|
|
89986
89986
|
examples: [true]
|
|
89987
|
+
}),
|
|
89988
|
+
debtMethod: z491.enum(["burn", "lock", "mark-converted"]).optional().meta({
|
|
89989
|
+
description: "How converted principal is settled on-chain: burn or lock the source tokens, or mark the position converted (no token movement). Under mark-converted the source balance never decreases, so already-converted principal reduces the convertible balance.",
|
|
89990
|
+
examples: ["burn"]
|
|
89987
89991
|
})
|
|
89988
89992
|
}).nullable();
|
|
89989
89993
|
var TokenFeatureConversionMinterSchema = z491.object({
|
|
@@ -91970,7 +91974,7 @@ function normalizeDalpBaseUrl(url) {
|
|
|
91970
91974
|
// package.json
|
|
91971
91975
|
var package_default = {
|
|
91972
91976
|
name: "@settlemint/dalp-sdk",
|
|
91973
|
-
version: "3.0.0-main.
|
|
91977
|
+
version: "3.0.0-main.27811408093",
|
|
91974
91978
|
private: false,
|
|
91975
91979
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
91976
91980
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED