@settlemint/dalp-cli 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.
Files changed (2) hide show
  1. package/dist/dalp.js +16 -3
  2. package/package.json +1 -1
package/dist/dalp.js CHANGED
@@ -133929,7 +133929,20 @@ var SmartWalletReadDataSchema = exports_external.object({
133929
133929
  deployed: exports_external.boolean(),
133930
133930
  signingAddress: ethereumAddress
133931
133931
  });
133932
- var SmartWalletReadOutputSchema = createSingleResponse(exports_external.union([exports_external.null(), SmartWalletReadDataSchema]));
133932
+ var SmartAccountViewSchema = exports_external.object({
133933
+ address: ethereumAddress,
133934
+ deployed: exports_external.boolean()
133935
+ });
133936
+ var KeyBasedAccountViewSchema = exports_external.object({
133937
+ address: ethereumAddress
133938
+ });
133939
+ var SmartWalletAccountsSchema = exports_external.object({
133940
+ smartAccount: exports_external.union([exports_external.null(), SmartAccountViewSchema]),
133941
+ account: exports_external.union([exports_external.null(), KeyBasedAccountViewSchema])
133942
+ });
133943
+ var SmartWalletReadOutputSchema = createSingleResponse(exports_external.union([exports_external.null(), SmartWalletReadDataSchema])).extend({
133944
+ accounts: exports_external.union([exports_external.null(), SmartWalletAccountsSchema])
133945
+ });
133933
133946
  var list24 = v2Contract.route({
133934
133947
  method: "GET",
133935
133948
  path: "/participants",
@@ -143330,7 +143343,7 @@ function normalizeDalpBaseUrl(url2) {
143330
143343
  }
143331
143344
  var package_default = {
143332
143345
  name: "@settlemint/dalp-sdk",
143333
- version: "3.0.7-main.28597955438",
143346
+ version: "3.0.7-main.28606164993",
143334
143347
  private: false,
143335
143348
  description: "Fully typed SDK for the DALP tokenization platform API",
143336
143349
  homepage: "https://settlemint.com",
@@ -144581,7 +144594,7 @@ var failedStateSet = new Set(FAILED_TRANSACTION_STATES);
144581
144594
  // package.json
144582
144595
  var package_default2 = {
144583
144596
  name: "@settlemint/dalp-cli",
144584
- version: "3.0.7-main.28597955438",
144597
+ version: "3.0.7-main.28606164993",
144585
144598
  private: false,
144586
144599
  description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
144587
144600
  homepage: "https://settlemint.com",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@settlemint/dalp-cli",
3
- "version": "3.0.7-main.28597955438",
3
+ "version": "3.0.7-main.28606164993",
4
4
  "private": false,
5
5
  "description": "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
6
6
  "homepage": "https://settlemint.com",