@settlemint/dalp-sdk 2.1.7-main.26559689945 → 2.1.7-main.26560482809
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
|
@@ -20962,6 +20962,14 @@ var UserMeSchema = z249.object({
|
|
|
20962
20962
|
}),
|
|
20963
20963
|
verificationTypes: z249.array(verificationType),
|
|
20964
20964
|
onboardingState: onboardingStateSchema,
|
|
20965
|
+
signingAddressIdentitySetup: z249.boolean().meta({
|
|
20966
|
+
description: "Whether the user's EOA signing address has an indexed ONCHAINID identity",
|
|
20967
|
+
examples: [true, false]
|
|
20968
|
+
}),
|
|
20969
|
+
remainingRecoveryCodes: z249.number().int().nonnegative().optional().meta({
|
|
20970
|
+
description: "Number of unused wallet recovery codes remaining; absent when none are configured",
|
|
20971
|
+
examples: [16, 3, 0]
|
|
20972
|
+
}),
|
|
20965
20973
|
hasRelevantAddons: z249.boolean().meta({
|
|
20966
20974
|
description: "Whether system addons are available for configuration",
|
|
20967
20975
|
examples: [true, false]
|
|
@@ -34118,7 +34126,7 @@ function normalizeDalpBaseUrl(url) {
|
|
|
34118
34126
|
// package.json
|
|
34119
34127
|
var package_default = {
|
|
34120
34128
|
name: "@settlemint/dalp-sdk",
|
|
34121
|
-
version: "2.1.7-main.
|
|
34129
|
+
version: "2.1.7-main.26560482809",
|
|
34122
34130
|
private: false,
|
|
34123
34131
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
34124
34132
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED