@settlemint/dalp-sdk 2.1.7-main.23501616988 → 2.1.7-main.23509105634
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/index.js +11 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8407,7 +8407,8 @@ var StatsAssetsOutputSchema = z145.object({
|
|
|
8407
8407
|
valueBreakdownByClass: z145.record(z145.string(), bigDecimal()),
|
|
8408
8408
|
tokensCreatedCount: z145.number().int(),
|
|
8409
8409
|
tokensLaunchedCount: z145.number().int(),
|
|
8410
|
-
pendingLaunchesCount: z145.number().int()
|
|
8410
|
+
pendingLaunchesCount: z145.number().int(),
|
|
8411
|
+
conversionReliable: z145.boolean()
|
|
8411
8412
|
});
|
|
8412
8413
|
|
|
8413
8414
|
// ../../packages/dalp/api-contract/src/routes/system/stats/routes/claims-stats.schema.ts
|
|
@@ -8465,7 +8466,8 @@ var StatsPortfolioOutputSchema = z151.object({
|
|
|
8465
8466
|
data: z151.array(z151.object({
|
|
8466
8467
|
timestamp: timestamp(),
|
|
8467
8468
|
totalValueInBaseCurrency: z151.number()
|
|
8468
|
-
}))
|
|
8469
|
+
})),
|
|
8470
|
+
conversionReliable: z151.boolean()
|
|
8469
8471
|
});
|
|
8470
8472
|
|
|
8471
8473
|
// ../../packages/dalp/api-contract/src/routes/system/stats/routes/portfolio-details.schema.ts
|
|
@@ -8503,7 +8505,8 @@ var StatsPortfolioDetailsOutputSchema = z152.object({
|
|
|
8503
8505
|
holdingsBreakdownByClass: z152.record(z152.string(), z152.number().int().min(0)).meta({
|
|
8504
8506
|
description: "Holdings count per asset class. Keys match valueBreakdownByClass.",
|
|
8505
8507
|
examples: [{ fixedIncome: 5, cashEquivalent: 2 }]
|
|
8506
|
-
})
|
|
8508
|
+
}),
|
|
8509
|
+
conversionReliable: z152.boolean()
|
|
8507
8510
|
});
|
|
8508
8511
|
|
|
8509
8512
|
// ../../packages/dalp/api-contract/src/routes/system/stats/routes/system-value-history.schema.ts
|
|
@@ -8513,7 +8516,8 @@ var StatsSystemValueHistoryOutputSchema = z153.object({
|
|
|
8513
8516
|
data: z153.array(z153.object({
|
|
8514
8517
|
timestamp: timestamp(),
|
|
8515
8518
|
totalValueInBaseCurrency: z153.number()
|
|
8516
|
-
}))
|
|
8519
|
+
})),
|
|
8520
|
+
conversionReliable: z153.boolean()
|
|
8517
8521
|
});
|
|
8518
8522
|
|
|
8519
8523
|
// ../../packages/dalp/api-contract/src/routes/system/stats/routes/topic-scheme-claims-coverage.schema.ts
|
|
@@ -8593,7 +8597,8 @@ var StatsTrustedIssuerStatsStateOutputSchema = z160.object({
|
|
|
8593
8597
|
import { z as z161 } from "zod";
|
|
8594
8598
|
var StatsValueInputSchema = z161.object({}).strict();
|
|
8595
8599
|
var StatsValueOutputSchema = z161.object({
|
|
8596
|
-
totalValue: bigDecimal()
|
|
8600
|
+
totalValue: bigDecimal(),
|
|
8601
|
+
conversionReliable: z161.boolean()
|
|
8597
8602
|
});
|
|
8598
8603
|
|
|
8599
8604
|
// ../../packages/dalp/api-contract/src/routes/system/stats/stats.contract.ts
|
|
@@ -23549,7 +23554,7 @@ var dalpSerializers = [
|
|
|
23549
23554
|
// package.json
|
|
23550
23555
|
var package_default = {
|
|
23551
23556
|
name: "@settlemint/dalp-sdk",
|
|
23552
|
-
version: "2.1.7-main.
|
|
23557
|
+
version: "2.1.7-main.23509105634",
|
|
23553
23558
|
private: false,
|
|
23554
23559
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
23555
23560
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED