@settlemint/dalp-cli 2.1.7-main.25810901551 → 2.1.7-main.25814575030

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 +23 -2
  2. package/package.json +1 -1
package/dist/dalp.js CHANGED
@@ -89847,6 +89847,19 @@ var TokenFeaturesResponseSchema = exports_external2.object({
89847
89847
  examples: [null]
89848
89848
  })
89849
89849
  });
89850
+ var TokenConversionFeatureProbeInputParamsSchema = TokenReadInputSchema;
89851
+ var TokenConversionFeatureProbeInputQuerySchema = exports_external2.object({
89852
+ converterAddress: ethereumAddress.meta({
89853
+ description: "Address to validate as a conversion feature contract",
89854
+ examples: ["0x71C7656EC7ab88b098defB751B7401B5f6d8976F"]
89855
+ })
89856
+ });
89857
+ var TokenConversionFeatureProbeResponseSchema = exports_external2.object({
89858
+ isConversionFeature: exports_external2.boolean().meta({
89859
+ description: "Whether the address exposes the conversion feature type identifier",
89860
+ examples: [true]
89861
+ })
89862
+ });
89850
89863
  var TokenAumFeeAccruedEstimateInputSchema = TokenReadInputSchema;
89851
89864
  var TokenAumFeeAccruedEstimateResponseSchema = exports_external2.object({
89852
89865
  accruedEstimate: bigDecimal().meta({
@@ -90449,6 +90462,13 @@ var features = v2Contract.route({
90449
90462
  successDescription: "Token features retrieved successfully.",
90450
90463
  tags: [V2_TAG.token]
90451
90464
  }).input(v2Input.params(TokenFeaturesInputSchema)).output(createSingleResponse(TokenFeaturesResponseSchema));
90465
+ var conversionFeatureProbe = v2Contract.route({
90466
+ method: "GET",
90467
+ path: "/tokens/{tokenAddress}/conversion-feature-probe",
90468
+ description: "Validate that an address is a conversion feature contract without exposing RPC configuration.",
90469
+ successDescription: "Conversion feature probe completed.",
90470
+ tags: [V2_TAG.token]
90471
+ }).input(v2Input.paramsQuery(TokenConversionFeatureProbeInputParamsSchema, TokenConversionFeatureProbeInputQuerySchema)).output(createSingleResponse(TokenConversionFeatureProbeResponseSchema));
90452
90472
  var aumFeeAccruedEstimate = v2Contract.route({
90453
90473
  method: "GET",
90454
90474
  path: "/tokens/{tokenAddress}/aum-fee/accrued-estimate",
@@ -90529,6 +90549,7 @@ var tokenV2ReadsContract = {
90529
90549
  denominationAssets,
90530
90550
  compliance,
90531
90551
  features,
90552
+ conversionFeatureProbe,
90532
90553
  aumFeeAccruedEstimate,
90533
90554
  metadata: tokenMetadata,
90534
90555
  transferApprovals,
@@ -92066,7 +92087,7 @@ function normalizeDalpBaseUrl(url3) {
92066
92087
  }
92067
92088
  var package_default = {
92068
92089
  name: "@settlemint/dalp-sdk",
92069
- version: "2.1.7-main.25810901551",
92090
+ version: "2.1.7-main.25814575030",
92070
92091
  private: false,
92071
92092
  description: "Fully typed SDK for the DALP tokenization platform API",
92072
92093
  homepage: "https://settlemint.com",
@@ -92645,7 +92666,7 @@ function toStandardWebhookSecret(secret) {
92645
92666
  // package.json
92646
92667
  var package_default2 = {
92647
92668
  name: "@settlemint/dalp-cli",
92648
- version: "2.1.7-main.25810901551",
92669
+ version: "2.1.7-main.25814575030",
92649
92670
  private: false,
92650
92671
  description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
92651
92672
  homepage: "https://settlemint.com",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@settlemint/dalp-cli",
3
- "version": "2.1.7-main.25810901551",
3
+ "version": "2.1.7-main.25814575030",
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",