@settlemint/dalp-sdk 3.0.7-main.28597955438 → 3.0.7-main.28606164993
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 +15 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -86261,7 +86261,20 @@ var SmartWalletReadDataSchema = z388.object({
|
|
|
86261
86261
|
deployed: z388.boolean(),
|
|
86262
86262
|
signingAddress: ethereumAddress
|
|
86263
86263
|
});
|
|
86264
|
-
var
|
|
86264
|
+
var SmartAccountViewSchema = z388.object({
|
|
86265
|
+
address: ethereumAddress,
|
|
86266
|
+
deployed: z388.boolean()
|
|
86267
|
+
});
|
|
86268
|
+
var KeyBasedAccountViewSchema = z388.object({
|
|
86269
|
+
address: ethereumAddress
|
|
86270
|
+
});
|
|
86271
|
+
var SmartWalletAccountsSchema = z388.object({
|
|
86272
|
+
smartAccount: z388.union([z388.null(), SmartAccountViewSchema]),
|
|
86273
|
+
account: z388.union([z388.null(), KeyBasedAccountViewSchema])
|
|
86274
|
+
});
|
|
86275
|
+
var SmartWalletReadOutputSchema = createSingleResponse(z388.union([z388.null(), SmartWalletReadDataSchema])).extend({
|
|
86276
|
+
accounts: z388.union([z388.null(), SmartWalletAccountsSchema])
|
|
86277
|
+
});
|
|
86265
86278
|
|
|
86266
86279
|
// ../../packages/dalp/api-contract/src/routes/v2/participants/participants.v2.contract.ts
|
|
86267
86280
|
var list24 = v2Contract.route({
|
|
@@ -96437,7 +96450,7 @@ function normalizeDalpBaseUrl(url) {
|
|
|
96437
96450
|
// package.json
|
|
96438
96451
|
var package_default = {
|
|
96439
96452
|
name: "@settlemint/dalp-sdk",
|
|
96440
|
-
version: "3.0.7-main.
|
|
96453
|
+
version: "3.0.7-main.28606164993",
|
|
96441
96454
|
private: false,
|
|
96442
96455
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
96443
96456
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED