@settlemint/dalp-cli 3.0.6-main.28364026263 → 3.0.6-main.28364766854
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 +15 -5
- package/package.json +1 -1
package/dist/dalp.js
CHANGED
|
@@ -135325,9 +135325,19 @@ var HistoryRowSchema = exports_external.object({
|
|
|
135325
135325
|
serviceLabel: exports_external.string(),
|
|
135326
135326
|
days: exports_external.array(HistoryCellSchema).max(HISTORY_DAYS_MAX)
|
|
135327
135327
|
});
|
|
135328
|
+
var HistoryNetworkRowSchema = exports_external.object({
|
|
135329
|
+
kind: PlatformStatusV2HistoryRowKindSchema,
|
|
135330
|
+
days: exports_external.array(HistoryCellSchema).max(HISTORY_DAYS_MAX)
|
|
135331
|
+
});
|
|
135332
|
+
var HistoryNetworkSchema = exports_external.object({
|
|
135333
|
+
chainId: exports_external.number().int(),
|
|
135334
|
+
networkName: exports_external.string(),
|
|
135335
|
+
rows: exports_external.array(HistoryNetworkRowSchema)
|
|
135336
|
+
});
|
|
135328
135337
|
var PlatformStatusV2HistoryOutputSchema = exports_external.object({
|
|
135329
135338
|
generatedAt: timestamp(),
|
|
135330
|
-
rows: exports_external.array(HistoryRowSchema)
|
|
135339
|
+
rows: exports_external.array(HistoryRowSchema),
|
|
135340
|
+
networks: exports_external.array(HistoryNetworkSchema).optional()
|
|
135331
135341
|
});
|
|
135332
135342
|
var PlatformStatusV2DataFreshnessInputSchema = exports_external.object({}).strict();
|
|
135333
135343
|
var PlatformStatusV2DataFreshnessOutputSchema = PanelSchema.extend({
|
|
@@ -135448,8 +135458,8 @@ var PlatformStatusV2WorkflowsListInputSchema = exports_external.object({
|
|
|
135448
135458
|
}).strict();
|
|
135449
135459
|
var WorkflowInvocationRowSchema = exports_external.object({
|
|
135450
135460
|
id: exports_external.string().meta({
|
|
135451
|
-
description: "Restate invocation id",
|
|
135452
|
-
examples: ["inv_1a2b3c4d5e6f7g8h9i0j"]
|
|
135461
|
+
description: "Stable unique identifier for the row: the Restate invocation id for live invocations, or the durable completion-event id for rows sourced from the persisted completion log (which carries no Restate invocation id).",
|
|
135462
|
+
examples: ["inv_1a2b3c4d5e6f7g8h9i0j", "0195a3f2-7c4d-7e8a-9b1c-2d3e4f5a6b7c"]
|
|
135453
135463
|
}),
|
|
135454
135464
|
workflowType: exports_external.string().meta({
|
|
135455
135465
|
description: "Workflow / virtual-object service name (Restate target_service_name)",
|
|
@@ -144562,7 +144572,7 @@ function normalizeDalpBaseUrl(url2) {
|
|
|
144562
144572
|
}
|
|
144563
144573
|
var package_default = {
|
|
144564
144574
|
name: "@settlemint/dalp-sdk",
|
|
144565
|
-
version: "3.0.6-main.
|
|
144575
|
+
version: "3.0.6-main.28364766854",
|
|
144566
144576
|
private: false,
|
|
144567
144577
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
144568
144578
|
homepage: "https://settlemint.com",
|
|
@@ -145807,7 +145817,7 @@ var failedStateSet = new Set(FAILED_TRANSACTION_STATES);
|
|
|
145807
145817
|
// package.json
|
|
145808
145818
|
var package_default2 = {
|
|
145809
145819
|
name: "@settlemint/dalp-cli",
|
|
145810
|
-
version: "3.0.6-main.
|
|
145820
|
+
version: "3.0.6-main.28364766854",
|
|
145811
145821
|
private: false,
|
|
145812
145822
|
description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
145813
145823
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@settlemint/dalp-cli",
|
|
3
|
-
"version": "3.0.6-main.
|
|
3
|
+
"version": "3.0.6-main.28364766854",
|
|
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",
|