@settlemint/dalp-cli 3.1.4-main.32577446370 → 3.1.4-main.32579654288

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/dalp.js CHANGED
@@ -46079,7 +46079,7 @@ var API_ERROR_CATEGORIES = new Set([
46079
46079
  // ../sdk/package.json
46080
46080
  var package_default = {
46081
46081
  name: "@settlemint/dalp-sdk",
46082
- version: "3.1.4-main.32577446370",
46082
+ version: "3.1.4-main.32579654288",
46083
46083
  private: false,
46084
46084
  description: "Fully typed SDK for the DALP tokenization platform API",
46085
46085
  homepage: "https://settlemint.com",
@@ -52467,6 +52467,8 @@ var zAdminNetworkRpc = strictObject({
52467
52467
  })).optional(),
52468
52468
  limits: strictObject({
52469
52469
  maxAddressesPerCall: int().gte(1).lte(500).optional(),
52470
+ maxIndexerAddressesPerCall: int().gte(1).lte(2000).optional(),
52471
+ minAddressesForBloomPreflight: int().gte(1).lte(2000).optional(),
52470
52472
  maxBlockRangePerCall: int().gte(1).lte(50000).optional(),
52471
52473
  minBlockRangePerCall: int().gte(1).lte(50000).optional(),
52472
52474
  adaptiveBlockRange: boolean2().optional(),
@@ -58187,6 +58189,7 @@ var zParticipantWalletType = _enum2([
58187
58189
  "single_sig",
58188
58190
  "multisig"
58189
58191
  ]);
58192
+ var zParticipantId = string2().min(1);
58190
58193
  var zEvmAddress188 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
58191
58194
  var zEvmAddress189 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
58192
58195
  var zCreateParticipantOutput = strictObject({
@@ -58735,6 +58738,7 @@ var zMultisigDraft3 = strictObject({
58735
58738
  updatedAt: zTimestampEncoded,
58736
58739
  finalizedAt: zTimestampEncoded.nullable()
58737
58740
  });
58741
+ var zParticipantId1 = string2().min(1);
58738
58742
  var zMultisigDraft4 = strictObject({
58739
58743
  id: string2().min(1),
58740
58744
  kind: _enum2(["multisig"]),
@@ -58798,7 +58802,7 @@ var zCollectionFilterDisplayNameParticipantIdWalletType = object({
58798
58802
  zCollectionTextFilterOperators
58799
58803
  ]).optional(),
58800
58804
  walletType: union([
58801
- _enum2(["eoa", "single_sig"]),
58805
+ string2().max(1000),
58802
58806
  zCollectionEnumFilterOperators
58803
58807
  ]).optional()
58804
58808
  });
@@ -58806,7 +58810,7 @@ var zMultisigInviteEligibleKey = strictObject({
58806
58810
  participantId: string2(),
58807
58811
  displayName: string2().nullable(),
58808
58812
  address: zEvmAddress205,
58809
- walletType: _enum2(["eoa", "single_sig"])
58813
+ walletType: _enum2(["eoa"])
58810
58814
  });
58811
58815
  var zMultisigInviteEligibleKeyCollectionData = array(zMultisigInviteEligibleKey);
58812
58816
  var zMultisigInviteEligibleKeyCollectionResponse = strictObject({
@@ -58814,8 +58818,9 @@ var zMultisigInviteEligibleKeyCollectionResponse = strictObject({
58814
58818
  meta: zCollectionResponseMeta,
58815
58819
  links: zCollectionPaginationLinks
58816
58820
  });
58821
+ var zParticipantId2 = string2().min(1);
58817
58822
  var zMultisigInviteAcceptInput = strictObject({
58818
- participantId: string2().min(1)
58823
+ participantId: zParticipantId2
58819
58824
  });
58820
58825
  var zMultisigInviteAcceptOutput = strictObject({
58821
58826
  joined: boolean2(),
@@ -76302,7 +76307,7 @@ var zV2ParticipantsCreateBody = strictObject({
76302
76307
  walletType: zParticipantWalletType,
76303
76308
  multisigConfig: strictObject({
76304
76309
  signers: array(strictObject({
76305
- participantId: string2().min(1).optional(),
76310
+ participantId: zParticipantId.optional(),
76306
76311
  address: zEvmAddress1.optional(),
76307
76312
  weight: int().gt(0)
76308
76313
  })),
@@ -76775,7 +76780,7 @@ var zV2ParticipantsMultisigDraftsUpdatePath = object({
76775
76780
  });
76776
76781
  var zV2ParticipantsMultisigDraftsUpdateResponse = zMultisigDraft3;
76777
76782
  var zV2ParticipantsMultisigDraftsAddOwnSeatBody = strictObject({
76778
- participantId: string2().min(1),
76783
+ participantId: zParticipantId1,
76779
76784
  weight: int().gt(0)
76780
76785
  });
76781
76786
  var zV2ParticipantsMultisigDraftsAddOwnSeatHeaders = object({
@@ -76896,7 +76901,7 @@ var zV2ParticipantsMultisigInvitesEligibleKeysQuery = object({
76896
76901
  })
76897
76902
  ]).optional(),
76898
76903
  walletType: union([
76899
- _enum2(["eoa", "single_sig"]),
76904
+ string2().max(1000),
76900
76905
  object({
76901
76906
  eq: string2().max(1000).optional(),
76902
76907
  ne: string2().max(1000).optional(),
@@ -76976,7 +76981,7 @@ var zV2ParticipantsMultisigInvitesByIdEligibleKeysQuery = object({
76976
76981
  })
76977
76982
  ]).optional(),
76978
76983
  walletType: union([
76979
- _enum2(["eoa", "single_sig"]),
76984
+ string2().max(1000),
76980
76985
  object({
76981
76986
  eq: string2().max(1000).optional(),
76982
76987
  ne: string2().max(1000).optional(),
@@ -97895,6 +97900,9 @@ __export(exports_schemas3, {
97895
97900
  zParticipantHoldingV2ItemCollectionData: () => zParticipantHoldingV2ItemCollectionData,
97896
97901
  zParticipantHoldingV2ItemCollectionMeta: () => zParticipantHoldingV2ItemCollectionMeta,
97897
97902
  zParticipantHoldingV2ItemCollectionResponse: () => zParticipantHoldingV2ItemCollectionResponse,
97903
+ zParticipantId: () => zParticipantId,
97904
+ zParticipantId1: () => zParticipantId1,
97905
+ zParticipantId2: () => zParticipantId2,
97898
97906
  zParticipantOrganizationRegistration: () => zParticipantOrganizationRegistration,
97899
97907
  zParticipantWalletType: () => zParticipantWalletType,
97900
97908
  zPasskey: () => zPasskey,
@@ -130797,19 +130805,8 @@ var openapi_surface_default = {
130797
130805
  ],
130798
130806
  requestBodyDescription: "Participant the caller controls and the weight that participant contributes toward the threshold.",
130799
130807
  hasRequestBody: true,
130800
- bodyIsComplex: false,
130808
+ bodyIsComplex: true,
130801
130809
  bodyFields: [
130802
- {
130803
- name: "participantId",
130804
- in: "query",
130805
- required: true,
130806
- description: null,
130807
- type: "string",
130808
- enum: null,
130809
- pattern: null,
130810
- examples: [],
130811
- fields: []
130812
- },
130813
130810
  {
130814
130811
  name: "weight",
130815
130812
  in: "query",
@@ -131287,7 +131284,7 @@ var openapi_surface_default = {
131287
131284
  name: "walletType",
131288
131285
  in: "query",
131289
131286
  required: false,
131290
- description: "Shorthand: value (eq). Values: eoa, single_sig Explicit: { eq, ne, inArray, notInArray, isEmpty, isNotEmpty }",
131287
+ description: "Shorthand: value (eq). Values: eoa Explicit: { eq, ne, inArray, notInArray, isEmpty, isNotEmpty }",
131291
131288
  type: "object",
131292
131289
  enum: null,
131293
131290
  pattern: null,
@@ -131427,20 +131424,8 @@ var openapi_surface_default = {
131427
131424
  ],
131428
131425
  requestBodyDescription: "Key the caller uses to join the draft named by the invite.",
131429
131426
  hasRequestBody: true,
131430
- bodyIsComplex: false,
131431
- bodyFields: [
131432
- {
131433
- name: "participantId",
131434
- in: "query",
131435
- required: true,
131436
- description: null,
131437
- type: "string",
131438
- enum: null,
131439
- pattern: null,
131440
- examples: [],
131441
- fields: []
131442
- }
131443
- ],
131427
+ bodyIsComplex: true,
131428
+ bodyFields: [],
131444
131429
  examples: []
131445
131430
  },
131446
131431
  v2ParticipantsMultisigInvitesByIdRead: {
@@ -131579,7 +131564,7 @@ var openapi_surface_default = {
131579
131564
  name: "walletType",
131580
131565
  in: "query",
131581
131566
  required: false,
131582
- description: "Shorthand: value (eq). Values: eoa, single_sig Explicit: { eq, ne, inArray, notInArray, isEmpty, isNotEmpty }",
131567
+ description: "Shorthand: value (eq). Values: eoa Explicit: { eq, ne, inArray, notInArray, isEmpty, isNotEmpty }",
131583
131568
  type: "object",
131584
131569
  enum: null,
131585
131570
  pattern: null,
@@ -131719,20 +131704,8 @@ var openapi_surface_default = {
131719
131704
  ],
131720
131705
  requestBodyDescription: "Key the caller uses to join the draft named by the invite.",
131721
131706
  hasRequestBody: true,
131722
- bodyIsComplex: false,
131723
- bodyFields: [
131724
- {
131725
- name: "participantId",
131726
- in: "query",
131727
- required: true,
131728
- description: null,
131729
- type: "string",
131730
- enum: null,
131731
- pattern: null,
131732
- examples: [],
131733
- fields: []
131734
- }
131735
- ],
131707
+ bodyIsComplex: true,
131708
+ bodyFields: [],
131736
131709
  examples: []
131737
131710
  },
131738
131711
  v2SystemIdentityDelete: {
@@ -160465,7 +160438,7 @@ async function runCommand(context, operation, errorContext = UNKNOWN_COMMAND_ERR
160465
160438
  // package.json
160466
160439
  var package_default2 = {
160467
160440
  name: "@settlemint/dalp-cli",
160468
- version: "3.1.4-main.32577446370",
160441
+ version: "3.1.4-main.32579654288",
160469
160442
  private: false,
160470
160443
  description: "CLI for the Digital Asset Lifecycle Platform \u2014 manage tokens, identities, compliance, and more from the command line.",
160471
160444
  homepage: "https://settlemint.com",
@@ -162194,4 +162167,4 @@ if (false) {}
162194
162167
  // src/bin.ts
162195
162168
  await cli.serve();
162196
162169
 
162197
- //# debugId=DB4F50EC2ED6A08264756E2164756E21
162170
+ //# debugId=15C3EF58E27A0FB264756E2164756E21