@settlemint/dalp-cli 3.1.4-main.32624104738 → 3.1.4-main.32625254353

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.4-main.32624104738",
46204
+ version: "3.1.4-main.32625254353",
46205
46205
  private: false,
46206
46206
  description: "Fully typed SDK for the DALP tokenization platform API",
46207
46207
  homepage: "https://settlemint.com",
@@ -46732,6 +46732,7 @@ __export(exports_operations, {
46732
46732
  v2ReportingObligationsUpdate: () => v2ReportingObligationsUpdate,
46733
46733
  v2ReportingSubmissionsAcknowledge: () => v2ReportingSubmissionsAcknowledge,
46734
46734
  v2ReportingSubmissionsApprove: () => v2ReportingSubmissionsApprove,
46735
+ v2ReportingSubmissionsPublish: () => v2ReportingSubmissionsPublish,
46735
46736
  v2ReportingSubmissionsSubmitForReview: () => v2ReportingSubmissionsSubmitForReview,
46736
46737
  v2ReportingTrailEntry: () => v2ReportingTrailEntry,
46737
46738
  v2ReportingTrailForResource: () => v2ReportingTrailForResource,
@@ -46952,6 +46953,7 @@ __export(exports_operations, {
46952
46953
  v2TokenDelegate: () => v2TokenDelegate,
46953
46954
  v2TokenDelegateBySig: () => v2TokenDelegateBySig,
46954
46955
  v2TokenDisableTrigger: () => v2TokenDisableTrigger,
46956
+ v2TokenDividendDenominationEligibility: () => v2TokenDividendDenominationEligibility,
46955
46957
  v2TokenDividendHolderPosition: () => v2TokenDividendHolderPosition,
46956
46958
  v2TokenDividendIssuerStats: () => v2TokenDividendIssuerStats,
46957
46959
  v2TokenDividendProofMe: () => v2TokenDividendProofMe,
@@ -48304,6 +48306,7 @@ var zGovernanceProposalListItem = strictObject({
48304
48306
  deadlineAt: zTimestampEncoded.nullable(),
48305
48307
  etaAt: zTimestampEncoded.nullable(),
48306
48308
  quorumBps: int().nullable(),
48309
+ approvalThresholdBps: int().nullable(),
48307
48310
  votingPeriodSeconds: int().nullable(),
48308
48311
  executionDelaySeconds: int().nullable(),
48309
48312
  forVotes: string2().regex(/^\d+$/),
@@ -48347,6 +48350,7 @@ var zGovernanceProposalRead = strictObject({
48347
48350
  deadlineAt: zTimestampEncoded.nullable(),
48348
48351
  etaAt: zTimestampEncoded.nullable(),
48349
48352
  quorumBps: int().nullable(),
48353
+ approvalThresholdBps: int().nullable(),
48350
48354
  votingPeriodSeconds: int().nullable(),
48351
48355
  executionDelaySeconds: int().nullable(),
48352
48356
  forVotes: string2().regex(/^\d+$/),
@@ -48366,7 +48370,8 @@ var zGovernanceProposalRead = strictObject({
48366
48370
  options: array(string2()).nullable(),
48367
48371
  supersedesProposalId: string2().regex(/^\d+$/).nullable(),
48368
48372
  snapshotTotalVotingUnits: string2().regex(/^\d+$/).nullable(),
48369
- quorumVotes: string2().regex(/^\d+$/).nullable()
48373
+ quorumVotes: string2().regex(/^\d+$/).nullable(),
48374
+ approvalVotes: string2().regex(/^\d+$/).nullable()
48370
48375
  });
48371
48376
  var zGovernanceProposalReadResponse = strictObject({
48372
48377
  data: zGovernanceProposalRead,
@@ -49549,6 +49554,7 @@ var zComplianceTypeId = _enum2([
49549
49554
  "capital-raise-limit",
49550
49555
  "capped",
49551
49556
  "capped-v2",
49557
+ "claim-expiry",
49552
49558
  "collateral",
49553
49559
  "collateral-v2",
49554
49560
  "country-allow-list",
@@ -49564,6 +49570,7 @@ var zComplianceTypeId = _enum2([
49564
49570
  "investor-count",
49565
49571
  "investor-count-v2",
49566
49572
  "issuance-volume-limit",
49573
+ "minimum-holding",
49567
49574
  "time-lock",
49568
49575
  "time-lock-v2",
49569
49576
  "token-supply-limit",
@@ -54633,6 +54640,23 @@ var zFeatureConfigEntryValue = zFeatureConfigEntryNonNull.nullable();
54633
54640
  var zFeatureConfigEntry = record(string2(), zFeatureConfigEntryValue);
54634
54641
  var zFeatureConfig = record(string2(), zFeatureConfigEntry);
54635
54642
  var zUint256String = string2().max(78).regex(/^(?:0|[1-9]\d*)$/);
54643
+ var zAssetTypeTemplateStructureRole = _enum2(["controlling", "economic"]);
54644
+ var zAssetTypeTemplateStructureMember = strictObject({
54645
+ templateId: string2().min(1),
54646
+ role: zAssetTypeTemplateStructureRole,
54647
+ name: string2().min(1),
54648
+ slug: string2().min(1)
54649
+ });
54650
+ var zAssetTypeTemplateStructure = strictObject({
54651
+ id: string2().min(1),
54652
+ slug: string2().min(1),
54653
+ name: string2().min(1),
54654
+ description: string2().nullable(),
54655
+ isSystem: boolean2(),
54656
+ role: zAssetTypeTemplateStructureRole,
54657
+ members: array(zAssetTypeTemplateStructureMember)
54658
+ });
54659
+ var zNullableAssetTypeTemplateStructure = zAssetTypeTemplateStructure.nullable();
54636
54660
  var zAssetTypeTemplate = strictObject({
54637
54661
  id: string2().min(1),
54638
54662
  name: string2().min(1).max(255),
@@ -54653,6 +54677,7 @@ var zAssetTypeTemplate = strictObject({
54653
54677
  feedMaxStalenessSeconds: zUint256String.nullish(),
54654
54678
  assetClassId: string2().nullish(),
54655
54679
  complianceTemplateId: string2().nullish(),
54680
+ structure: zNullableAssetTypeTemplateStructure.optional(),
54656
54681
  createdBy: string2().nullable(),
54657
54682
  createdAt: zTimestampEncoded,
54658
54683
  updatedAt: zTimestampEncoded
@@ -54754,6 +54779,7 @@ var zAssetTypeTemplate1 = strictObject({
54754
54779
  feedMaxStalenessSeconds: zUint256String.nullish(),
54755
54780
  assetClassId: string2().nullish(),
54756
54781
  complianceTemplateId: string2().nullish(),
54782
+ structure: zNullableAssetTypeTemplateStructure.optional(),
54757
54783
  createdBy: string2().nullable(),
54758
54784
  createdAt: zTimestampEncoded,
54759
54785
  updatedAt: zTimestampEncoded
@@ -54899,6 +54925,7 @@ var zComplianceTypeId1 = _enum2([
54899
54925
  "capital-raise-limit",
54900
54926
  "capped",
54901
54927
  "capped-v2",
54928
+ "claim-expiry",
54902
54929
  "collateral",
54903
54930
  "collateral-v2",
54904
54931
  "country-allow-list",
@@ -54914,6 +54941,7 @@ var zComplianceTypeId1 = _enum2([
54914
54941
  "investor-count",
54915
54942
  "investor-count-v2",
54916
54943
  "issuance-volume-limit",
54944
+ "minimum-holding",
54917
54945
  "time-lock",
54918
54946
  "time-lock-v2",
54919
54947
  "token-supply-limit",
@@ -55202,6 +55230,7 @@ var zComplianceTypeId2 = _enum2([
55202
55230
  "capital-raise-limit",
55203
55231
  "capped",
55204
55232
  "capped-v2",
55233
+ "claim-expiry",
55205
55234
  "collateral",
55206
55235
  "collateral-v2",
55207
55236
  "country-allow-list",
@@ -55217,6 +55246,7 @@ var zComplianceTypeId2 = _enum2([
55217
55246
  "investor-count",
55218
55247
  "investor-count-v2",
55219
55248
  "issuance-volume-limit",
55249
+ "minimum-holding",
55220
55250
  "time-lock",
55221
55251
  "time-lock-v2",
55222
55252
  "token-supply-limit",
@@ -57190,7 +57220,8 @@ var zClaimsHistoryV2ItemCollectionResponse = strictObject({
57190
57220
  links: zCollectionPaginationLinks
57191
57221
  });
57192
57222
  var zInvestorClaimPayload = strictObject({
57193
- claim: string2()
57223
+ claim: string2(),
57224
+ validUntil: zBlocktimeEncoded.optional()
57194
57225
  });
57195
57226
  var zInvestorClaimData = strictObject({
57196
57227
  topic: _enum2([
@@ -57481,6 +57512,8 @@ var zClaimTopic1 = _enum2([
57481
57512
  "assetCoordinates",
57482
57513
  "assetPhysicalDetails",
57483
57514
  "documentHash",
57515
+ "sanctionsScreening",
57516
+ "issuerEventDetermination",
57484
57517
  "contractIdentity",
57485
57518
  "custom"
57486
57519
  ]);
@@ -58059,6 +58092,8 @@ var zClaimTopic2 = _enum2([
58059
58092
  "assetCoordinates",
58060
58093
  "assetPhysicalDetails",
58061
58094
  "documentHash",
58095
+ "sanctionsScreening",
58096
+ "issuerEventDetermination",
58062
58097
  "contractIdentity",
58063
58098
  "custom"
58064
58099
  ]);
@@ -58110,6 +58145,8 @@ var zClaimTopic3 = _enum2([
58110
58145
  "assetCoordinates",
58111
58146
  "assetPhysicalDetails",
58112
58147
  "documentHash",
58148
+ "sanctionsScreening",
58149
+ "issuerEventDetermination",
58113
58150
  "contractIdentity",
58114
58151
  "custom"
58115
58152
  ]);
@@ -58158,6 +58195,8 @@ var zClaimTopic4 = _enum2([
58158
58195
  "assetCoordinates",
58159
58196
  "assetPhysicalDetails",
58160
58197
  "documentHash",
58198
+ "sanctionsScreening",
58199
+ "issuerEventDetermination",
58161
58200
  "contractIdentity",
58162
58201
  "custom"
58163
58202
  ]);
@@ -58240,6 +58279,15 @@ var zComplianceModuleParametersEncoded = strictObject({
58240
58279
  periodLength: int().gte(1).lte(36500),
58241
58280
  rolling: boolean2()
58242
58281
  }).optional(),
58282
+ minimumHolding: strictObject({
58283
+ minimumHolding: zApiBigIntEncoded,
58284
+ exemptWallets: array(zEvmAddress7)
58285
+ }).optional(),
58286
+ claimExpiry: strictObject({
58287
+ topics: array(zApiBigIntEncoded),
58288
+ gracePeriod: int(),
58289
+ requireExpiry: boolean2()
58290
+ }).optional(),
58243
58291
  investorCount: strictObject({
58244
58292
  maxInvestors: int(),
58245
58293
  global: boolean2(),
@@ -60004,6 +60052,9 @@ var zTokenComplianceExpressionResponse = strictObject({
60004
60052
  links: zSingleResourceLinks
60005
60053
  });
60006
60054
  var zOptionalUserVerification2 = zUserVerification3.nullable();
60055
+ var zUnnarrowedContractBranchAcknowledgement = strictObject({
60056
+ rationale: string2()
60057
+ });
60007
60058
  var zTokenComplianceExpressionV2UpdateOutput = strictObject({
60008
60059
  txHash: string2().optional()
60009
60060
  });
@@ -63595,6 +63646,15 @@ var zTokenComplianceParameters = strictObject({
63595
63646
  priceResolver: zEvmAddress7,
63596
63647
  priceTopicId: zApiBigIntEncoded
63597
63648
  }).nullable(),
63649
+ minimumHolding: strictObject({
63650
+ minimumHolding: zApiBigIntEncoded,
63651
+ exemptWallets: array(zEvmAddress7)
63652
+ }).nullable(),
63653
+ claimExpiry: strictObject({
63654
+ topics: array(zApiBigIntEncoded),
63655
+ gracePeriod: int(),
63656
+ requireExpiry: boolean2()
63657
+ }).nullable(),
63598
63658
  investorCount: strictObject({
63599
63659
  maxInvestors: int()
63600
63660
  }).nullable(),
@@ -65258,6 +65318,24 @@ var zTokenTopUpBondDenominationBody = strictObject({
65258
65318
  amount: zAssetAmount17
65259
65319
  });
65260
65320
  var zAssetAmount18 = string2().regex(/^[0-9]+$/);
65321
+ var zInvestorClaimPayload1 = strictObject({
65322
+ claim: string2(),
65323
+ validUntil: zBlocktimeEncoded.optional()
65324
+ });
65325
+ var zInvestorClaimData1 = strictObject({
65326
+ topic: _enum2([
65327
+ "knowYourCustomer",
65328
+ "antiMoneyLaundering",
65329
+ "knowYourTransaction",
65330
+ "knowYourBusiness",
65331
+ "qualifiedInstitutionalInvestor",
65332
+ "professionalInvestor",
65333
+ "accreditedInvestor",
65334
+ "accreditedInvestorVerified",
65335
+ "regulationS"
65336
+ ]),
65337
+ data: zInvestorClaimPayload1
65338
+ });
65261
65339
  var zAssetClassificationClaimData1 = strictObject({
65262
65340
  topic: _enum2(["assetClassification"]),
65263
65341
  data: strictObject({
@@ -65325,7 +65403,7 @@ var zIssuerReportingCompliantClaimData1 = strictObject({
65325
65403
  })
65326
65404
  });
65327
65405
  var zClaimData1 = union([
65328
- zInvestorClaimData,
65406
+ zInvestorClaimData1,
65329
65407
  zAssetClassificationClaimData1,
65330
65408
  zAssetIssuerClaimData1,
65331
65409
  zBasePriceClaimData1,
@@ -65823,6 +65901,7 @@ var zComplianceTypeId3 = _enum2([
65823
65901
  "capital-raise-limit",
65824
65902
  "capped",
65825
65903
  "capped-v2",
65904
+ "claim-expiry",
65826
65905
  "collateral",
65827
65906
  "collateral-v2",
65828
65907
  "country-allow-list",
@@ -65838,6 +65917,7 @@ var zComplianceTypeId3 = _enum2([
65838
65917
  "investor-count",
65839
65918
  "investor-count-v2",
65840
65919
  "issuance-volume-limit",
65920
+ "minimum-holding",
65841
65921
  "time-lock",
65842
65922
  "time-lock-v2",
65843
65923
  "token-supply-limit",
@@ -67365,6 +67445,45 @@ var zTokenDividendIssuerStatsRowResponse = strictObject({
67365
67445
  data: zTokenDividendIssuerStatsRow,
67366
67446
  links: zSingleResourceLinks
67367
67447
  });
67448
+ var zEvmAddress424 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67449
+ var zEvmAddress425 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67450
+ var zEvmAddress426 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67451
+ var zEvmAddress427 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67452
+ var zTokenDenominationEligibilityParty = strictObject({
67453
+ address: zEvmAddress427,
67454
+ role: _enum2([
67455
+ "holder",
67456
+ "treasury",
67457
+ "venue-fee-account"
67458
+ ]),
67459
+ status: _enum2([
67460
+ "eligible",
67461
+ "ineligible",
67462
+ "indeterminate"
67463
+ ]),
67464
+ reason: string2()
67465
+ });
67466
+ var zTokenDividendDenominationEligibilityRow = strictObject({
67467
+ tokenAddress: zEvmAddress424,
67468
+ featureAddress: zEvmAddress425,
67469
+ denominationAsset: zEvmAddress426,
67470
+ complianceContract: zEvmAddress7.nullable(),
67471
+ status: _enum2([
67472
+ "clear",
67473
+ "ineligible",
67474
+ "indeterminate"
67475
+ ]),
67476
+ retryable: boolean2(),
67477
+ checkedCount: int().gte(0),
67478
+ ineligibleCount: int().gte(0),
67479
+ indeterminateCount: int().gte(0),
67480
+ holdersTruncated: boolean2(),
67481
+ parties: array(zTokenDenominationEligibilityParty)
67482
+ });
67483
+ var zTokenDividendDenominationEligibilityRowResponse = strictObject({
67484
+ data: zTokenDividendDenominationEligibilityRow,
67485
+ links: zSingleResourceLinks
67486
+ });
67368
67487
  var zSetInterestScheduleBody = strictObject({
67369
67488
  walletVerification: zOptionalUserVerification.optional(),
67370
67489
  annualRateBps: union([
@@ -67410,12 +67529,12 @@ var zCollectionFilterNewRateBpsUpdatedAt = record(string2(), unknown()).and(obje
67410
67529
  zCollectionNumberFilterOperators
67411
67530
  ]).optional()
67412
67531
  }));
67413
- var zEvmAddress424 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67414
- var zEvmAddress425 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67532
+ var zEvmAddress428 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67533
+ var zEvmAddress429 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67415
67534
  var zTokenInterestDaycountConvention = _enum2(["continuous", "unknown"]);
67416
67535
  var zTokenInterestRateHistoryRow = strictObject({
67417
- tokenAddress: zEvmAddress424,
67418
- scheduleAddress: zEvmAddress425,
67536
+ tokenAddress: zEvmAddress428,
67537
+ scheduleAddress: zEvmAddress429,
67419
67538
  oldRateBps: int(),
67420
67539
  newRateBps: int(),
67421
67540
  globalIndexExact: zApiBigIntEncoded,
@@ -67431,15 +67550,15 @@ var zTokenInterestRateHistoryRowCollectionResponse = strictObject({
67431
67550
  meta: zCollectionResponseMeta,
67432
67551
  links: zCollectionPaginationLinks
67433
67552
  });
67434
- var zEvmAddress426 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67435
- var zEvmAddress427 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67436
- var zEvmAddress428 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67437
- var zEvmAddress429 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67553
+ var zEvmAddress430 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67554
+ var zEvmAddress431 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67555
+ var zEvmAddress432 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67556
+ var zEvmAddress433 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67438
67557
  var zTokenInterestHolderPositionRow = strictObject({
67439
- tokenAddress: zEvmAddress426,
67440
- featureAddress: zEvmAddress427,
67441
- scheduleAddress: zEvmAddress428,
67442
- holder: zEvmAddress429,
67558
+ tokenAddress: zEvmAddress430,
67559
+ featureAddress: zEvmAddress431,
67560
+ scheduleAddress: zEvmAddress432,
67561
+ holder: zEvmAddress433,
67443
67562
  accruedExact: zApiBigIntEncoded,
67444
67563
  userIndexExact: zApiBigIntEncoded,
67445
67564
  totalClaimedExact: zApiBigIntEncoded,
@@ -67450,11 +67569,11 @@ var zTokenInterestHolderPositionRowResponse = strictObject({
67450
67569
  data: zTokenInterestHolderPositionRow,
67451
67570
  links: zSingleResourceLinks
67452
67571
  });
67453
- var zEvmAddress430 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67454
- var zEvmAddress431 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67572
+ var zEvmAddress434 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67573
+ var zEvmAddress435 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67455
67574
  var zTokenInterestIssuerStatsRow = strictObject({
67456
- tokenAddress: zEvmAddress430,
67457
- featureAddress: zEvmAddress431,
67575
+ tokenAddress: zEvmAddress434,
67576
+ featureAddress: zEvmAddress435,
67458
67577
  pendingExact: zApiBigIntEncoded,
67459
67578
  asOf: zTimestampEncoded,
67460
67579
  paused: boolean2()
@@ -67507,7 +67626,7 @@ var zCollectionFilterCreatedAtStatusType = record(string2(), unknown()).and(obje
67507
67626
  ]).optional()
67508
67627
  }));
67509
67628
  var zCorporateActionId = string2().min(1);
67510
- var zEvmAddress432 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67629
+ var zEvmAddress436 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67511
67630
  var zCorporateActionType = _enum2([
67512
67631
  "cashDividend",
67513
67632
  "bondCoupon",
@@ -67570,10 +67689,10 @@ var zRightsIssueCreateTerms = strictObject({
67570
67689
  raiseCap: zOptionalCorporateActionRaiseCap.optional(),
67571
67690
  lowerCap: zOptionalCorporateActionLowerCap.optional()
67572
67691
  });
67573
- var zEvmAddress433 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67692
+ var zEvmAddress437 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67574
67693
  var zAssetAmount55 = string2().regex(/^[0-9]+$/);
67575
67694
  var zCorporateActionHolderAmount = strictObject({
67576
- holder: zEvmAddress433,
67695
+ holder: zEvmAddress437,
67577
67696
  amount: zAssetAmount55
67578
67697
  });
67579
67698
  var zCapitalDecreaseCreateTerms = strictObject({
@@ -67593,10 +67712,10 @@ var zStockSplitCreateTerms = strictObject({
67593
67712
  raiseCap: zOptionalCorporateActionRaiseCap.optional(),
67594
67713
  lowerCap: zOptionalCorporateActionLowerCap.optional()
67595
67714
  });
67596
- var zEvmAddress434 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67715
+ var zEvmAddress438 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67597
67716
  var zSpinOffCreateTerms = strictObject({
67598
67717
  type: _enum2(["spinOff"]),
67599
- childTokenAddress: zEvmAddress434,
67718
+ childTokenAddress: zEvmAddress438,
67600
67719
  numerator: int().gt(0),
67601
67720
  denominator: int().gt(0),
67602
67721
  recordDate: zOptionalCorporateActionRecordDate.optional()
@@ -67655,7 +67774,7 @@ var zCorporateActionSnapshot = strictObject({
67655
67774
  denominationShortfall: zAssetAmount58
67656
67775
  });
67657
67776
  var zNullableCorporateActionSnapshot = zCorporateActionSnapshot.nullable();
67658
- var zEvmAddress435 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67777
+ var zEvmAddress439 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67659
67778
  var zAssetAmount59 = string2().regex(/^[0-9]+$/);
67660
67779
  var zCorporateActionHolderState = _enum2([
67661
67780
  "applied",
@@ -67665,7 +67784,7 @@ var zCorporateActionHolderState = _enum2([
67665
67784
  ]);
67666
67785
  var zOptionalCorporateActionHolderTransactionHash = zEthereumHashEncoded.nullable();
67667
67786
  var zCorporateActionHolder = strictObject({
67668
- holder: zEvmAddress435,
67787
+ holder: zEvmAddress439,
67669
67788
  amount: zAssetAmount59,
67670
67789
  state: zCorporateActionHolderState,
67671
67790
  transactionHash: zOptionalCorporateActionHolderTransactionHash.optional()
@@ -67678,7 +67797,7 @@ var zNullableCorporateActionTransactionRequestId = string2().nullable();
67678
67797
  var zCorporateActionTransactionHashList = array(zEthereumHashEncoded);
67679
67798
  var zCorporateActionRecord = strictObject({
67680
67799
  id: zCorporateActionId,
67681
- tokenAddress: zEvmAddress432,
67800
+ tokenAddress: zEvmAddress436,
67682
67801
  type: zCorporateActionType,
67683
67802
  status: zCorporateActionStatus,
67684
67803
  terms: zCorporateActionTerms,
@@ -67699,7 +67818,7 @@ var zCorporateActionRecordCollectionResponse = strictObject({
67699
67818
  links: zCollectionPaginationLinks
67700
67819
  });
67701
67820
  var zCorporateActionId1 = string2().min(1);
67702
- var zEvmAddress436 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67821
+ var zEvmAddress440 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67703
67822
  var zAssetAmount60 = string2().regex(/^[0-9]+$/);
67704
67823
  var zOptionalCorporateActionClaimDeadline1 = zTimestampEncoded.nullable();
67705
67824
  var zCashDividendCreateTerms1 = strictObject({
@@ -67734,10 +67853,10 @@ var zRightsIssueCreateTerms1 = strictObject({
67734
67853
  raiseCap: zOptionalCorporateActionRaiseCap1.optional(),
67735
67854
  lowerCap: zOptionalCorporateActionLowerCap1.optional()
67736
67855
  });
67737
- var zEvmAddress437 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67856
+ var zEvmAddress441 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67738
67857
  var zAssetAmount63 = string2().regex(/^[0-9]+$/);
67739
67858
  var zCorporateActionHolderAmount1 = strictObject({
67740
- holder: zEvmAddress437,
67859
+ holder: zEvmAddress441,
67741
67860
  amount: zAssetAmount63
67742
67861
  });
67743
67862
  var zCapitalDecreaseCreateTerms1 = strictObject({
@@ -67756,10 +67875,10 @@ var zStockSplitCreateTerms1 = strictObject({
67756
67875
  raiseCap: zOptionalCorporateActionRaiseCap1.optional(),
67757
67876
  lowerCap: zOptionalCorporateActionLowerCap1.optional()
67758
67877
  });
67759
- var zEvmAddress438 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67878
+ var zEvmAddress442 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67760
67879
  var zSpinOffCreateTerms1 = strictObject({
67761
67880
  type: _enum2(["spinOff"]),
67762
- childTokenAddress: zEvmAddress438,
67881
+ childTokenAddress: zEvmAddress442,
67763
67882
  numerator: int().gt(0),
67764
67883
  denominator: int().gt(0),
67765
67884
  recordDate: zOptionalCorporateActionRecordDate1.optional()
@@ -67812,11 +67931,11 @@ var zCorporateActionSnapshot1 = strictObject({
67812
67931
  denominationShortfall: zAssetAmount66
67813
67932
  });
67814
67933
  var zNullableCorporateActionSnapshot1 = zCorporateActionSnapshot1.nullable();
67815
- var zEvmAddress439 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67934
+ var zEvmAddress443 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
67816
67935
  var zAssetAmount67 = string2().regex(/^[0-9]+$/);
67817
67936
  var zOptionalCorporateActionHolderTransactionHash1 = zEthereumHashEncoded.nullable();
67818
67937
  var zCorporateActionHolder1 = strictObject({
67819
- holder: zEvmAddress439,
67938
+ holder: zEvmAddress443,
67820
67939
  amount: zAssetAmount67,
67821
67940
  state: zCorporateActionHolderState,
67822
67941
  transactionHash: zOptionalCorporateActionHolderTransactionHash1.optional()
@@ -67826,7 +67945,7 @@ var zNullableCorporateActionChildTokenAddress1 = zEvmAddress7.nullable();
67826
67945
  var zCorporateActionTransactionHashList1 = array(zEthereumHashEncoded);
67827
67946
  var zCorporateActionRecord1 = strictObject({
67828
67947
  id: zCorporateActionId,
67829
- tokenAddress: zEvmAddress436,
67948
+ tokenAddress: zEvmAddress440,
67830
67949
  type: zCorporateActionType,
67831
67950
  status: zCorporateActionStatus,
67832
67951
  terms: zCorporateActionTerms1,
@@ -67961,7 +68080,7 @@ var zPreviewCorporateActionBody = strictObject({
67961
68080
  });
67962
68081
  var zCorporateActionRecord2 = strictObject({
67963
68082
  id: zCorporateActionId,
67964
- tokenAddress: zEvmAddress436,
68083
+ tokenAddress: zEvmAddress440,
67965
68084
  type: zCorporateActionType,
67966
68085
  status: zCorporateActionStatus,
67967
68086
  terms: zCorporateActionTerms1,
@@ -68042,7 +68161,7 @@ var zTimeInterval2 = _enum2([
68042
68161
  "SEMI_ANNUAL",
68043
68162
  "YEARLY"
68044
68163
  ]);
68045
- var zEvmAddress440 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
68164
+ var zEvmAddress444 = string2().length(42).regex(/^0x[a-fA-F0-9]{40}$/);
68046
68165
  var zFixedYieldScheduleOutputMutationResponse = strictObject({
68047
68166
  data: zFixedYieldScheduleOutput,
68048
68167
  meta: zBlockchainMutationMeta,
@@ -68229,6 +68348,7 @@ var zReportingOutputFormat = _enum2([
68229
68348
  "json",
68230
68349
  "xml"
68231
68350
  ]);
68351
+ var zReportingFulfilmentMode = _enum2(["authority_acknowledgement", "publication"]);
68232
68352
  var zReportingAckSlaHours = int().gt(0);
68233
68353
  var zReportingRetentionClass = _enum2([
68234
68354
  "five-years",
@@ -68250,6 +68370,7 @@ var zReportingObligationConfig = strictObject({
68250
68370
  filerCalendar: string2().min(1),
68251
68371
  authorityCalendar: string2().min(1),
68252
68372
  outputFormat: zReportingOutputFormat,
68373
+ fulfilmentMode: zReportingFulfilmentMode,
68253
68374
  ackSlaHours: zReportingAckSlaHours.nullish(),
68254
68375
  requiresMakerChecker: boolean2(),
68255
68376
  operatorApprovalAllowed: boolean2(),
@@ -68314,6 +68435,7 @@ var zReportingObligationConfig1 = strictObject({
68314
68435
  filerCalendar: string2().min(1),
68315
68436
  authorityCalendar: string2().min(1),
68316
68437
  outputFormat: zReportingOutputFormat,
68438
+ fulfilmentMode: zReportingFulfilmentMode,
68317
68439
  ackSlaHours: zReportingAckSlaHours.nullish(),
68318
68440
  requiresMakerChecker: boolean2(),
68319
68441
  operatorApprovalAllowed: boolean2(),
@@ -68361,6 +68483,7 @@ var zReportingSubmission = strictObject({
68361
68483
  "submitted",
68362
68484
  "acknowledged",
68363
68485
  "unacknowledged",
68486
+ "published",
68364
68487
  "rejected",
68365
68488
  "superseded"
68366
68489
  ]),
@@ -68380,7 +68503,9 @@ var zReportingSubmission = strictObject({
68380
68503
  approvedAt: zTimestampEncoded.nullable(),
68381
68504
  submittedAt: zTimestampEncoded.nullable(),
68382
68505
  ackReceiptReference: string2().nullable(),
68383
- ackAuthorityTimestamp: zTimestampEncoded.nullable()
68506
+ ackAuthorityTimestamp: zTimestampEncoded.nullable(),
68507
+ publishedAt: zTimestampEncoded.nullable(),
68508
+ publicationReference: string2().nullable()
68384
68509
  });
68385
68510
  var zReportingSubmissionResponse = strictObject({
68386
68511
  data: zReportingSubmission,
@@ -68403,6 +68528,15 @@ var zReportingSubmissionResponse2 = strictObject({
68403
68528
  data: zReportingSubmission,
68404
68529
  links: zSingleResourceLinks
68405
68530
  });
68531
+ var zReportingSubmissionPublishInput = strictObject({
68532
+ publicationReference: string2().min(1),
68533
+ approvedDigest: string2().min(1),
68534
+ expectedRowVersion: int()
68535
+ });
68536
+ var zReportingSubmissionResponse3 = strictObject({
68537
+ data: zReportingSubmission,
68538
+ links: zSingleResourceLinks
68539
+ });
68406
68540
  var zReportingTrailTarget = string2().min(1);
68407
68541
  var zReportingTrailEntry = strictObject({
68408
68542
  id: string2().min(1),
@@ -70162,6 +70296,10 @@ var zV2GovernanceProposalsCreateBody = strictObject({
70162
70296
  number2(),
70163
70297
  string2()
70164
70298
  ]),
70299
+ approvalThresholdBps: union([
70300
+ number2(),
70301
+ string2()
70302
+ ]).nullish(),
70165
70303
  executionDelaySeconds: union([
70166
70304
  number2(),
70167
70305
  string2()
@@ -70170,6 +70308,10 @@ var zV2GovernanceProposalsCreateBody = strictObject({
70170
70308
  number2(),
70171
70309
  string2()
70172
70310
  ]).nullish(),
70311
+ approvalThresholdFloorBps: union([
70312
+ number2(),
70313
+ string2()
70314
+ ]).nullish(),
70173
70315
  supersedesProposalId: string2().regex(/^\d+$/).optional()
70174
70316
  });
70175
70317
  var zV2GovernanceProposalsCreateHeaders = object({
@@ -78751,7 +78893,8 @@ var zV2TokenComplianceExpressionUpdateBody = strictObject({
78751
78893
  expression: array(strictObject({
78752
78894
  nodeType: zExpressionType,
78753
78895
  value: zApiIntegerBigIntEncoded1
78754
- }))
78896
+ })),
78897
+ unnarrowedContractBranch: zUnnarrowedContractBranchAcknowledgement.optional()
78755
78898
  });
78756
78899
  var zV2TokenComplianceExpressionUpdateHeaders = object({
78757
78900
  "Idempotency-Key": string2().optional(),
@@ -85722,6 +85865,10 @@ var zV2TokenDividendIssuerStatsPath = object({
85722
85865
  tokenAddress: zEvmAddress1
85723
85866
  });
85724
85867
  var zV2TokenDividendIssuerStatsResponse = zTokenDividendIssuerStatsRowResponse;
85868
+ var zV2TokenDividendDenominationEligibilityPath = object({
85869
+ tokenAddress: zEvmAddress1
85870
+ });
85871
+ var zV2TokenDividendDenominationEligibilityResponse = zTokenDividendDenominationEligibilityRowResponse;
85725
85872
  var zV2TokenSetInterestScheduleBody = zSetInterestScheduleBody;
85726
85873
  var zV2TokenSetInterestScheduleHeaders = object({
85727
85874
  "Idempotency-Key": string2().optional(),
@@ -86002,7 +86149,7 @@ var zV2AddonsFixedYieldCreateBody = strictObject({
86002
86149
  ]),
86003
86150
  startTime: zBlocktimeEncoded.optional(),
86004
86151
  endTime: zBlocktimeEncoded.optional(),
86005
- token: zEvmAddress440,
86152
+ token: zEvmAddress444,
86006
86153
  countryCode: zIsoCountryCodeNumericEncoded
86007
86154
  });
86008
86155
  var zV2AddonsFixedYieldCreateHeaders = object({
@@ -86136,6 +86283,15 @@ var zV2ReportingSubmissionsAcknowledgePath = object({
86136
86283
  submissionId: string2().min(1)
86137
86284
  });
86138
86285
  var zV2ReportingSubmissionsAcknowledgeResponse = zReportingSubmissionResponse2;
86286
+ var zV2ReportingSubmissionsPublishBody = zReportingSubmissionPublishInput;
86287
+ var zV2ReportingSubmissionsPublishHeaders = object({
86288
+ "Idempotency-Key": string2().optional(),
86289
+ Prefer: string2().optional()
86290
+ });
86291
+ var zV2ReportingSubmissionsPublishPath = object({
86292
+ submissionId: string2().min(1)
86293
+ });
86294
+ var zV2ReportingSubmissionsPublishResponse = zReportingSubmissionResponse3;
86139
86295
  var zV2ReportingTrailListQuery = object({
86140
86296
  from: union([
86141
86297
  string2(),
@@ -95503,6 +95659,16 @@ var v2TokenDividendIssuerStats = (options) => (options.client ?? client).get({
95503
95659
  url: "/api/v2/tokens/{tokenAddress}/features/dividend-yield/issuer-stats",
95504
95660
  ...options
95505
95661
  });
95662
+ var v2TokenDividendDenominationEligibility = (options) => (options.client ?? client).get({
95663
+ requestValidator: async (data) => await object({
95664
+ body: never().optional(),
95665
+ path: zV2TokenDividendDenominationEligibilityPath,
95666
+ query: never().optional()
95667
+ }).parseAsync(data),
95668
+ responseTransformer: async (data) => await zV2TokenDividendDenominationEligibilityResponse.parseAsync(data),
95669
+ url: "/api/v2/tokens/{tokenAddress}/features/dividend-yield/denomination-eligibility",
95670
+ ...options
95671
+ });
95506
95672
  var v2TokenSetInterestSchedule = (options) => (options.client ?? client).put({
95507
95673
  requestValidator: async (data) => await object({
95508
95674
  body: zV2TokenSetInterestScheduleBody,
@@ -95876,6 +96042,21 @@ var v2ReportingSubmissionsAcknowledge = (options) => (options.client ?? client).
95876
96042
  ...options.headers
95877
96043
  }
95878
96044
  });
96045
+ var v2ReportingSubmissionsPublish = (options) => (options.client ?? client).post({
96046
+ requestValidator: async (data) => await object({
96047
+ body: zV2ReportingSubmissionsPublishBody,
96048
+ headers: zV2ReportingSubmissionsPublishHeaders.optional(),
96049
+ path: zV2ReportingSubmissionsPublishPath,
96050
+ query: never().optional()
96051
+ }).parseAsync(data),
96052
+ responseTransformer: async (data) => await zV2ReportingSubmissionsPublishResponse.parseAsync(data),
96053
+ url: "/api/v2/reporting/submissions/{submissionId}/publish",
96054
+ ...options,
96055
+ headers: {
96056
+ "Content-Type": "application/json",
96057
+ ...options.headers
96058
+ }
96059
+ });
95879
96060
  var v2ReportingTrailList = (options) => (options.client ?? client).get({
95880
96061
  requestValidator: async (data) => await object({
95881
96062
  body: never().optional(),
@@ -97629,6 +97810,9 @@ __export(exports_schemas3, {
97629
97810
  zAssetTypeTemplateResponse2: () => zAssetTypeTemplateResponse2,
97630
97811
  zAssetTypeTemplateResponse3: () => zAssetTypeTemplateResponse3,
97631
97812
  zAssetTypeTemplateSlug: () => zAssetTypeTemplateSlug,
97813
+ zAssetTypeTemplateStructure: () => zAssetTypeTemplateStructure,
97814
+ zAssetTypeTemplateStructureMember: () => zAssetTypeTemplateStructureMember,
97815
+ zAssetTypeTemplateStructureRole: () => zAssetTypeTemplateStructureRole,
97632
97816
  zAssumableParticipant: () => zAssumableParticipant,
97633
97817
  zAssumableParticipantCollectionData: () => zAssumableParticipantCollectionData,
97634
97818
  zAssumableParticipantCollectionResponse: () => zAssumableParticipantCollectionResponse,
@@ -98970,6 +99154,10 @@ __export(exports_schemas3, {
98970
99154
  zEvmAddress439: () => zEvmAddress439,
98971
99155
  zEvmAddress44: () => zEvmAddress44,
98972
99156
  zEvmAddress440: () => zEvmAddress440,
99157
+ zEvmAddress441: () => zEvmAddress441,
99158
+ zEvmAddress442: () => zEvmAddress442,
99159
+ zEvmAddress443: () => zEvmAddress443,
99160
+ zEvmAddress444: () => zEvmAddress444,
98973
99161
  zEvmAddress45: () => zEvmAddress45,
98974
99162
  zEvmAddress46: () => zEvmAddress46,
98975
99163
  zEvmAddress47: () => zEvmAddress47,
@@ -99319,7 +99507,9 @@ __export(exports_schemas3, {
99319
99507
  zInitialTokenPermissionsEncoded: () => zInitialTokenPermissionsEncoded,
99320
99508
  zInstanceImplementationStatus: () => zInstanceImplementationStatus,
99321
99509
  zInvestorClaimData: () => zInvestorClaimData,
99510
+ zInvestorClaimData1: () => zInvestorClaimData1,
99322
99511
  zInvestorClaimPayload: () => zInvestorClaimPayload,
99512
+ zInvestorClaimPayload1: () => zInvestorClaimPayload1,
99323
99513
  zInvitation: () => zInvitation,
99324
99514
  zInvitationV2AcceptInput: () => zInvitationV2AcceptInput,
99325
99515
  zInvitationV2AcceptOutput: () => zInvitationV2AcceptOutput,
@@ -99545,6 +99735,7 @@ __export(exports_schemas3, {
99545
99735
  zNoRemediation: () => zNoRemediation,
99546
99736
  zNullableAirdropToken: () => zNullableAirdropToken,
99547
99737
  zNullableAirdropToken1: () => zNullableAirdropToken1,
99738
+ zNullableAssetTypeTemplateStructure: () => zNullableAssetTypeTemplateStructure,
99548
99739
  zNullableCorporateActionChildTokenAddress: () => zNullableCorporateActionChildTokenAddress,
99549
99740
  zNullableCorporateActionChildTokenAddress1: () => zNullableCorporateActionChildTokenAddress1,
99550
99741
  zNullableCorporateActionChildTokenAddress1Writable: () => zNullableCorporateActionChildTokenAddress1Writable,
@@ -99811,6 +100002,7 @@ __export(exports_schemas3, {
99811
100002
  zReportingDescription: () => zReportingDescription,
99812
100003
  zReportingEffectiveTo: () => zReportingEffectiveTo,
99813
100004
  zReportingEntityLeiEncoded: () => zReportingEntityLeiEncoded,
100005
+ zReportingFulfilmentMode: () => zReportingFulfilmentMode,
99814
100006
  zReportingObligation: () => zReportingObligation,
99815
100007
  zReportingObligationConfig: () => zReportingObligationConfig,
99816
100008
  zReportingObligationConfig1: () => zReportingObligationConfig1,
@@ -99840,9 +100032,11 @@ __export(exports_schemas3, {
99840
100032
  zReportingSubmission: () => zReportingSubmission,
99841
100033
  zReportingSubmissionAcknowledgeInput: () => zReportingSubmissionAcknowledgeInput,
99842
100034
  zReportingSubmissionApproveInput: () => zReportingSubmissionApproveInput,
100035
+ zReportingSubmissionPublishInput: () => zReportingSubmissionPublishInput,
99843
100036
  zReportingSubmissionResponse: () => zReportingSubmissionResponse,
99844
100037
  zReportingSubmissionResponse1: () => zReportingSubmissionResponse1,
99845
100038
  zReportingSubmissionResponse2: () => zReportingSubmissionResponse2,
100039
+ zReportingSubmissionResponse3: () => zReportingSubmissionResponse3,
99846
100040
  zReportingTrailEntry: () => zReportingTrailEntry,
99847
100041
  zReportingTrailEntryList: () => zReportingTrailEntryList,
99848
100042
  zReportingTrailEntryResponse: () => zReportingTrailEntryResponse,
@@ -100230,7 +100424,10 @@ __export(exports_schemas3, {
100230
100424
  zTokenConvertBody: () => zTokenConvertBody,
100231
100425
  zTokenDelegateBody: () => zTokenDelegateBody,
100232
100426
  zTokenDelegateBySigBody: () => zTokenDelegateBySigBody,
100427
+ zTokenDenominationEligibilityParty: () => zTokenDenominationEligibilityParty,
100233
100428
  zTokenDisableTriggerBody: () => zTokenDisableTriggerBody,
100429
+ zTokenDividendDenominationEligibilityRow: () => zTokenDividendDenominationEligibilityRow,
100430
+ zTokenDividendDenominationEligibilityRowResponse: () => zTokenDividendDenominationEligibilityRowResponse,
100234
100431
  zTokenDividendHolderPositionRow: () => zTokenDividendHolderPositionRow,
100235
100432
  zTokenDividendHolderPositionRowResponse: () => zTokenDividendHolderPositionRowResponse,
100236
100433
  zTokenDividendIssuerStatsRow: () => zTokenDividendIssuerStatsRow,
@@ -100754,6 +100951,7 @@ __export(exports_schemas3, {
100754
100951
  zUnbanUserBody: () => zUnbanUserBody,
100755
100952
  zUnbanUserResponse: () => zUnbanUserResponse,
100756
100953
  zUniqueIdentifierClaimData: () => zUniqueIdentifierClaimData,
100954
+ zUnnarrowedContractBranchAcknowledgement: () => zUnnarrowedContractBranchAcknowledgement,
100757
100955
  zUpdateAssetClassBody: () => zUpdateAssetClassBody,
100758
100956
  zUpdateBody: () => zUpdateBody,
100759
100957
  zUpdateInterestRateBody: () => zUpdateInterestRateBody,
@@ -101524,6 +101722,10 @@ __export(exports_schemas3, {
101524
101722
  zV2ReportingSubmissionsApproveHeaders: () => zV2ReportingSubmissionsApproveHeaders,
101525
101723
  zV2ReportingSubmissionsApprovePath: () => zV2ReportingSubmissionsApprovePath,
101526
101724
  zV2ReportingSubmissionsApproveResponse: () => zV2ReportingSubmissionsApproveResponse,
101725
+ zV2ReportingSubmissionsPublishBody: () => zV2ReportingSubmissionsPublishBody,
101726
+ zV2ReportingSubmissionsPublishHeaders: () => zV2ReportingSubmissionsPublishHeaders,
101727
+ zV2ReportingSubmissionsPublishPath: () => zV2ReportingSubmissionsPublishPath,
101728
+ zV2ReportingSubmissionsPublishResponse: () => zV2ReportingSubmissionsPublishResponse,
101527
101729
  zV2ReportingSubmissionsSubmitForReviewHeaders: () => zV2ReportingSubmissionsSubmitForReviewHeaders,
101528
101730
  zV2ReportingSubmissionsSubmitForReviewPath: () => zV2ReportingSubmissionsSubmitForReviewPath,
101529
101731
  zV2ReportingSubmissionsSubmitForReviewResponse: () => zV2ReportingSubmissionsSubmitForReviewResponse,
@@ -102112,6 +102314,8 @@ __export(exports_schemas3, {
102112
102314
  zV2TokenDisableTriggerHeaders: () => zV2TokenDisableTriggerHeaders,
102113
102315
  zV2TokenDisableTriggerPath: () => zV2TokenDisableTriggerPath,
102114
102316
  zV2TokenDisableTriggerResponse: () => zV2TokenDisableTriggerResponse,
102317
+ zV2TokenDividendDenominationEligibilityPath: () => zV2TokenDividendDenominationEligibilityPath,
102318
+ zV2TokenDividendDenominationEligibilityResponse: () => zV2TokenDividendDenominationEligibilityResponse,
102115
102319
  zV2TokenDividendHolderPositionPath: () => zV2TokenDividendHolderPositionPath,
102116
102320
  zV2TokenDividendHolderPositionResponse: () => zV2TokenDividendHolderPositionResponse,
102117
102321
  zV2TokenDividendIssuerStatsPath: () => zV2TokenDividendIssuerStatsPath,
@@ -158926,6 +159130,46 @@ var openapi_surface_default = {
158926
159130
  }
158927
159131
  ]
158928
159132
  },
159133
+ v2TokenDividendDenominationEligibility: {
159134
+ name: "v2TokenDividendDenominationEligibility",
159135
+ method: "GET",
159136
+ url: "/api/v2/tokens/{tokenAddress}/features/dividend-yield/denomination-eligibility",
159137
+ summary: "Preflight denomination-asset payout eligibility",
159138
+ description: "Evaluates the denomination asset's own compliance against the instrument's holders, the paying treasury, and any venue fee account, and names every party that could not receive the payout. Read this before you declare a dividend: a declared dividend cannot be cancelled, and without the preflight an ineligible party only surfaces at claim time. The caller must hold the role that may declare a payout, because the response carries per-holder regulatory status. The verdict is advisory. The denomination asset's compliance modules remain the authorization layer, and a party whose chain answer could not be read is reported as indeterminate with retryable true rather than blocking the declaration.",
159139
+ help: "Evaluates the denomination asset's own compliance against the instrument's holders, the paying treasury, and any venue fee account, and names every party that could not receive the payout. Read this before you declare a dividend: a declared dividend cannot be cancelled, and without the preflight an ineligible party only surfaces at claim time. The caller must hold the role that may declare a payout, because the response carries per-holder regulatory status. The verdict is advisory. The denomination asset's compliance modules remain the authorization layer, and a party whose chain answer could not be read is reported as indeterminate with retryable true rather than blocking the declaration.",
159140
+ tags: [
159141
+ "Yield and distributions"
159142
+ ],
159143
+ pathParams: [
159144
+ {
159145
+ name: "tokenAddress",
159146
+ in: "path",
159147
+ required: true,
159148
+ description: "A valid Ethereum address (42 characters, starting with 0x)",
159149
+ type: "string",
159150
+ enum: null,
159151
+ pattern: "^0x[a-fA-F0-9]{40}$",
159152
+ examples: [
159153
+ "0x71C7656EC7ab88b098defB751B7401B5f6d8976F"
159154
+ ],
159155
+ fields: []
159156
+ }
159157
+ ],
159158
+ queryParams: [],
159159
+ headerParams: [],
159160
+ requestBodyDescription: null,
159161
+ hasRequestBody: false,
159162
+ bodyIsComplex: false,
159163
+ bodyFields: [],
159164
+ examples: [
159165
+ {
159166
+ description: "Evaluates the denomination asset's own compliance against the instrument's holders, the paying treasury, and any venue fee account, and names every party that could not receive the payout. Read this before you declare a dividend: a declared dividend cannot be cancelled, and without the preflight an ineligible party only surfaces at claim time. The caller must hold the role that may declare a payout, because the response carries per-holder regulatory status. The verdict is advisory. The denomination asset's compliance modules remain the authorization layer, and a party whose chain answer could not be read is reported as indeterminate with retryable true rather than blocking the declaration.",
159167
+ path: {
159168
+ tokenAddress: "0x71C7656EC7ab88b098defB751B7401B5f6d8976F"
159169
+ }
159170
+ }
159171
+ ]
159172
+ },
158929
159173
  v2TokenSetInterestSchedule: {
158930
159174
  name: "v2TokenSetInterestSchedule",
158931
159175
  method: "PUT",
@@ -160773,8 +161017,8 @@ var openapi_surface_default = {
160773
161017
  method: "POST",
160774
161018
  url: "/api/v2/reporting/submissions/{submissionId}/acknowledge",
160775
161019
  summary: "Enter an acknowledgement",
160776
- description: "Records the authority's acknowledgement, which discharges the filing period's duty and stops its overdue clock. Its own permission, and its own separation of duties: the entering user must differ from the approver. The claimed authority timestamp is recorded beside the server's receipt time, and one preceding submission or reaching far past entry is refused. Entering the same receipt reference twice changes nothing.",
160777
- help: "Records the authority's acknowledgement, which discharges the filing period's duty and stops its overdue clock. Its own permission, and its own separation of duties: the entering user must differ from the approver. The claimed authority timestamp is recorded beside the server's receipt time, and one preceding submission or reaching far past entry is refused. Entering the same receipt reference twice changes nothing.",
161020
+ description: "Records the authority's acknowledgement, which discharges the filing period's duty and stops its overdue clock. Its own permission, and its own separation of duties: the entering user must differ from the approver. The claimed authority timestamp is recorded beside the server's receipt time, and one preceding submission or reaching far past entry is refused. Entering the same receipt reference twice changes nothing. An obligation discharged by publication has no authority to acknowledge, and this route refuses it.",
161021
+ help: "Records the authority's acknowledgement, which discharges the filing period's duty and stops its overdue clock. Its own permission, and its own separation of duties: the entering user must differ from the approver. The claimed authority timestamp is recorded beside the server's receipt time, and one preceding submission or reaching far past entry is refused. Entering the same receipt reference twice changes nothing. An obligation discharged by publication has no authority to acknowledge, and this route refuses it.",
160778
161022
  tags: [
160779
161023
  "Regulatory reporting"
160780
161024
  ],
@@ -160834,6 +161078,94 @@ var openapi_surface_default = {
160834
161078
  ],
160835
161079
  examples: []
160836
161080
  },
161081
+ v2ReportingSubmissionsPublish: {
161082
+ name: "v2ReportingSubmissionsPublish",
161083
+ method: "POST",
161084
+ url: "/api/v2/reporting/submissions/{submissionId}/publish",
161085
+ summary: "Publish a submission",
161086
+ description: "Publishes an approved artifact to the holders it is owed to, which is what discharges an investor-facing reporting duty and stops the filing period's overdue clock. Only an obligation configured for publication accepts this; one filed with an authority is discharged by acknowledgement instead. The submission must carry a standing approval and still match the digest that approval named, and an operator acting as another user may not publish. Publishing after the deadline is accepted and is recorded as late; there is no operation that returns a period to open.",
161087
+ help: "Publishes an approved artifact to the holders it is owed to, which is what discharges an investor-facing reporting duty and stops the filing period's overdue clock. Only an obligation configured for publication accepts this; one filed with an authority is discharged by acknowledgement instead. The submission must carry a standing approval and still match the digest that approval named, and an operator acting as another user may not publish. Publishing after the deadline is accepted and is recorded as late; there is no operation that returns a period to open.",
161088
+ tags: [
161089
+ "Regulatory reporting"
161090
+ ],
161091
+ pathParams: [
161092
+ {
161093
+ name: "submissionId",
161094
+ in: "path",
161095
+ required: true,
161096
+ description: "Identifier of the submission, from the filing period's attempts.",
161097
+ type: "string",
161098
+ enum: null,
161099
+ pattern: null,
161100
+ examples: [],
161101
+ fields: []
161102
+ }
161103
+ ],
161104
+ queryParams: [],
161105
+ headerParams: [
161106
+ {
161107
+ name: "Idempotency-Key",
161108
+ in: "header",
161109
+ required: false,
161110
+ description: "Client-generated retry key for one mutation. Reuse it only for the same method, path, and body. If you omit it, the platform generates a UUIDv7 key you cannot replay after a lost response.",
161111
+ type: "string",
161112
+ enum: null,
161113
+ pattern: null,
161114
+ examples: [],
161115
+ fields: []
161116
+ },
161117
+ {
161118
+ name: "Prefer",
161119
+ in: "header",
161120
+ required: false,
161121
+ description: "RFC 7240 response-timing preference. Absent or `respond-async` returns 202 immediately. `wait=N` waits up to N seconds, clamped to 5 through 99. `respond-async, wait=N` waits and then degrades to 202. Poll `Location` after 202 instead of resubmitting.",
161122
+ type: "string",
161123
+ enum: null,
161124
+ pattern: null,
161125
+ examples: [],
161126
+ fields: []
161127
+ }
161128
+ ],
161129
+ requestBodyDescription: null,
161130
+ hasRequestBody: true,
161131
+ bodyIsComplex: false,
161132
+ bodyFields: [
161133
+ {
161134
+ name: "publicationReference",
161135
+ in: "query",
161136
+ required: true,
161137
+ description: "Where holders can read the published artifact. Recorded as evidence of the publication; the artifact itself is never copied here.",
161138
+ type: "string",
161139
+ enum: null,
161140
+ pattern: null,
161141
+ examples: [],
161142
+ fields: []
161143
+ },
161144
+ {
161145
+ name: "approvedDigest",
161146
+ in: "query",
161147
+ required: true,
161148
+ description: "The artifact digest the approval named. If the artifact has been regenerated since, publication is refused rather than applied to different bytes.",
161149
+ type: "string",
161150
+ enum: null,
161151
+ pattern: null,
161152
+ examples: [],
161153
+ fields: []
161154
+ },
161155
+ {
161156
+ name: "expectedRowVersion",
161157
+ in: "query",
161158
+ required: true,
161159
+ description: "The `rowVersion` read with the submission. A second concurrent publisher receives a conflict.",
161160
+ type: "integer",
161161
+ enum: null,
161162
+ pattern: null,
161163
+ examples: [],
161164
+ fields: []
161165
+ }
161166
+ ],
161167
+ examples: []
161168
+ },
160837
161169
  v2ReportingTrailList: {
160838
161170
  name: "v2ReportingTrailList",
160839
161171
  method: "GET",
@@ -165909,7 +166241,7 @@ async function runCommand(context, operation, errorContext = UNKNOWN_COMMAND_ERR
165909
166241
  // package.json
165910
166242
  var package_default2 = {
165911
166243
  name: "@settlemint/dalp-cli",
165912
- version: "3.1.4-main.32624104738",
166244
+ version: "3.1.4-main.32625254353",
165913
166245
  private: false,
165914
166246
  description: "CLI for the Digital Asset Lifecycle Platform \u2014 manage tokens, identities, compliance, and more from the command line.",
165915
166247
  homepage: "https://settlemint.com",
@@ -167640,4 +167972,4 @@ if (false) {}
167640
167972
  // src/bin.ts
167641
167973
  await cli.serve();
167642
167974
 
167643
- //# debugId=590D8A5C6A153C8F64756E2164756E21
167975
+ //# debugId=86CB307447040E4D64756E2164756E21