@settlemint/dalp-sdk 2.1.7-main.25551599725 → 2.1.7-main.25552090983
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 +9 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -18630,6 +18630,14 @@ var UserMeSchema = z250.object({
|
|
|
18630
18630
|
baseCurrency: fiatCurrency().nullable().meta({
|
|
18631
18631
|
description: "The organization's configured base currency, or null if not configured yet",
|
|
18632
18632
|
examples: ["USD", "EUR", null]
|
|
18633
|
+
}),
|
|
18634
|
+
onboardingCompletedAt: timestamp().nullable().optional().meta({
|
|
18635
|
+
description: "Timestamp of the active organization's terminal deploy success; null if not yet completed or no active org",
|
|
18636
|
+
examples: ["2026-05-01T12:00:00Z", null]
|
|
18637
|
+
}),
|
|
18638
|
+
organizationName: z250.string().nullable().optional().meta({
|
|
18639
|
+
description: "The active organization's display name, or null if no org exists yet",
|
|
18640
|
+
examples: ["Acme", null]
|
|
18633
18641
|
})
|
|
18634
18642
|
});
|
|
18635
18643
|
|
|
@@ -27829,7 +27837,7 @@ function normalizeDalpBaseUrl(url) {
|
|
|
27829
27837
|
// package.json
|
|
27830
27838
|
var package_default = {
|
|
27831
27839
|
name: "@settlemint/dalp-sdk",
|
|
27832
|
-
version: "2.1.7-main.
|
|
27840
|
+
version: "2.1.7-main.25552090983",
|
|
27833
27841
|
private: false,
|
|
27834
27842
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
27835
27843
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED