@settlemint/dalp-sdk 2.1.7-main.25910179888 → 2.1.7-main.25911308714
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 +8 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24372,13 +24372,18 @@ var HISTORY_DAYS_MAX = 30;
|
|
|
24372
24372
|
var PlatformStatusV2HistoryInputSchema = z342.object({
|
|
24373
24373
|
days: z342.coerce.number().int().min(1).max(HISTORY_DAYS_MAX).default(HISTORY_DAYS_MAX)
|
|
24374
24374
|
}).strict();
|
|
24375
|
-
var
|
|
24375
|
+
var PlatformStatusV2HistoryRowKindSchema = z342.enum([
|
|
24376
|
+
"dataFreshness",
|
|
24377
|
+
"transactions",
|
|
24378
|
+
"platformApi",
|
|
24379
|
+
"workflows"
|
|
24380
|
+
]);
|
|
24376
24381
|
var HistoryCellSchema = z342.object({
|
|
24377
24382
|
date: z342.iso.date(),
|
|
24378
24383
|
severity: PlatformStatusVerdictSchema
|
|
24379
24384
|
});
|
|
24380
24385
|
var HistoryRowSchema = z342.object({
|
|
24381
|
-
kind:
|
|
24386
|
+
kind: PlatformStatusV2HistoryRowKindSchema,
|
|
24382
24387
|
serviceLabel: z342.string(),
|
|
24383
24388
|
days: z342.array(HistoryCellSchema).max(HISTORY_DAYS_MAX)
|
|
24384
24389
|
});
|
|
@@ -31075,7 +31080,7 @@ function normalizeDalpBaseUrl(url) {
|
|
|
31075
31080
|
// package.json
|
|
31076
31081
|
var package_default = {
|
|
31077
31082
|
name: "@settlemint/dalp-sdk",
|
|
31078
|
-
version: "2.1.7-main.
|
|
31083
|
+
version: "2.1.7-main.25911308714",
|
|
31079
31084
|
private: false,
|
|
31080
31085
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
31081
31086
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED