@settlemint/dalp-cli 3.1.7-main.32957697839 → 3.1.7-main.32959917611

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
@@ -46201,7 +46201,7 @@ var API_ERROR_CATEGORIES = new Set([
46201
46201
  // ../sdk/package.json
46202
46202
  var package_default = {
46203
46203
  name: "@settlemint/dalp-sdk",
46204
- version: "3.1.7-main.32957697839",
46204
+ version: "3.1.7-main.32959917611",
46205
46205
  private: false,
46206
46206
  description: "Fully typed SDK for the DALP tokenization platform API",
46207
46207
  homepage: "https://settlemint.com",
@@ -52296,7 +52296,9 @@ var zPlatformStatusV2StatCardsOutput = strictObject({
52296
52296
  completionTimeP95MsPrevious24h: number2().gte(0).nullable(),
52297
52297
  dataDelayBlocks: int().gte(0).nullable(),
52298
52298
  dataDelayBlocksPrevious24h: int().gte(0).nullable(),
52299
+ queryableDelayBlocks: int().gte(0).nullable(),
52299
52300
  dataDelayBlocksAsOf: zTimestampEncoded.nullable(),
52301
+ queryableDelayBlocksAsOf: zTimestampEncoded.nullable(),
52300
52302
  blocksIndexedTotal: int().gte(0).nullable(),
52301
52303
  generatedAt: zTimestampEncoded,
52302
52304
  totalChains: int().gte(0).nullable()
@@ -52370,7 +52372,9 @@ var zPlatformStatusV2SnapshotOutput = strictObject({
52370
52372
  completionTimeP95MsPrevious24h: number2().gte(0).nullable(),
52371
52373
  dataDelayBlocks: int().gte(0).nullable(),
52372
52374
  dataDelayBlocksPrevious24h: int().gte(0).nullable(),
52375
+ queryableDelayBlocks: int().gte(0).nullable(),
52373
52376
  dataDelayBlocksAsOf: zTimestampEncoded.nullable(),
52377
+ queryableDelayBlocksAsOf: zTimestampEncoded.nullable(),
52374
52378
  blocksIndexedTotal: int().gte(0).nullable()
52375
52379
  })
52376
52380
  });
@@ -52857,6 +52861,11 @@ var zAdminNetworkRejection = strictObject({
52857
52861
  chainId: int().optional(),
52858
52862
  conflictingNetworkName: string2().optional()
52859
52863
  });
52864
+ var zAdminNetworkSync = strictObject({
52865
+ historyComplete: boolean2(),
52866
+ indexingContracts: int(),
52867
+ trackedContracts: int()
52868
+ });
52860
52869
  var zAdminNetwork = strictObject({
52861
52870
  chainId: int(),
52862
52871
  networkName: string2(),
@@ -52867,7 +52876,8 @@ var zAdminNetwork = strictObject({
52867
52876
  hasOverride: boolean2().optional(),
52868
52877
  rejection: zAdminNetworkRejection.optional(),
52869
52878
  hasBaseline: boolean2(),
52870
- enabled: boolean2()
52879
+ enabled: boolean2(),
52880
+ sync: zAdminNetworkSync.optional()
52871
52881
  });
52872
52882
  var zAdminNetworkCollectionData = array(zAdminNetwork);
52873
52883
  var zAdminNetworkCollectionResponse = strictObject({
@@ -74629,6 +74639,10 @@ var zV2InvitationDeployStreamResponse = union([
74629
74639
  finalShortfallWei: string2(),
74630
74640
  recoveryGuidance: string2().min(1)
74631
74641
  }),
74642
+ strictObject({
74643
+ type: _enum2(["indexer-catch-up"]),
74644
+ contracts: string2().min(1).nullable()
74645
+ }),
74632
74646
  strictObject({
74633
74647
  type: _enum2(["complete"]),
74634
74648
  success: boolean2(),
@@ -74844,6 +74858,10 @@ var zV2OrganizationDeployStreamResponse = union([
74844
74858
  finalShortfallWei: string2(),
74845
74859
  recoveryGuidance: string2().min(1)
74846
74860
  }),
74861
+ strictObject({
74862
+ type: _enum2(["indexer-catch-up"]),
74863
+ contracts: string2().min(1).nullable()
74864
+ }),
74847
74865
  strictObject({
74848
74866
  type: _enum2(["complete"]),
74849
74867
  success: boolean2(),
@@ -76813,6 +76831,10 @@ var zV2SystemMigrationStreamResponse = union([
76813
76831
  finalShortfallWei: string2(),
76814
76832
  recoveryGuidance: string2().min(1)
76815
76833
  }),
76834
+ strictObject({
76835
+ type: _enum2(["indexer-catch-up"]),
76836
+ contracts: string2().min(1).nullable()
76837
+ }),
76816
76838
  strictObject({
76817
76839
  type: _enum2(["complete"]),
76818
76840
  success: boolean2(),
@@ -98556,6 +98578,7 @@ __export(exports_schemas3, {
98556
98578
  zAdminNetworkRpc: () => zAdminNetworkRpc,
98557
98579
  zAdminNetworkStoredDefinition: () => zAdminNetworkStoredDefinition,
98558
98580
  zAdminNetworkStoredDefinitionResponse: () => zAdminNetworkStoredDefinitionResponse,
98581
+ zAdminNetworkSync: () => zAdminNetworkSync,
98559
98582
  zAdminNetworkUpsertInput: () => zAdminNetworkUpsertInput,
98560
98583
  zAdminUpdateUserBody: () => zAdminUpdateUserBody,
98561
98584
  zAdminUpdateUserResponse: () => zAdminUpdateUserResponse,
@@ -168848,7 +168871,7 @@ async function runCommand(context, operation, errorContext = UNKNOWN_COMMAND_ERR
168848
168871
  // package.json
168849
168872
  var package_default2 = {
168850
168873
  name: "@settlemint/dalp-cli",
168851
- version: "3.1.7-main.32957697839",
168874
+ version: "3.1.7-main.32959917611",
168852
168875
  private: false,
168853
168876
  description: "CLI for the Digital Asset Lifecycle Platform \u2014 manage tokens, identities, compliance, and more from the command line.",
168854
168877
  homepage: "https://settlemint.com",
@@ -170579,4 +170602,4 @@ if (false) {}
170579
170602
  // src/bin.ts
170580
170603
  await cli.serve();
170581
170604
 
170582
- //# debugId=50DDB9C19EEB8B0E64756E2164756E21
170605
+ //# debugId=B44E5E1BDF895E0D64756E2164756E21