@settlemint/dalp-sdk 2.1.7-main.26737004302 → 2.1.7-main.26737237574
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 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -25307,7 +25307,13 @@ var deploymentNodeTypes = [
|
|
|
25307
25307
|
"other"
|
|
25308
25308
|
];
|
|
25309
25309
|
var DeploymentNodeTypeSchema = z338.enum(deploymentNodeTypes);
|
|
25310
|
-
var DeploymentNodeStatusSchema = z338.enum([
|
|
25310
|
+
var DeploymentNodeStatusSchema = z338.enum([
|
|
25311
|
+
"pending",
|
|
25312
|
+
"in-progress",
|
|
25313
|
+
"awaiting-approval",
|
|
25314
|
+
"completed",
|
|
25315
|
+
"failed"
|
|
25316
|
+
]);
|
|
25311
25317
|
var DeploymentLeafNodeSchema = z338.object({
|
|
25312
25318
|
id: z338.string(),
|
|
25313
25319
|
label: z338.string(),
|
|
@@ -34790,7 +34796,7 @@ function normalizeDalpBaseUrl(url) {
|
|
|
34790
34796
|
// package.json
|
|
34791
34797
|
var package_default = {
|
|
34792
34798
|
name: "@settlemint/dalp-sdk",
|
|
34793
|
-
version: "2.1.7-main.
|
|
34799
|
+
version: "2.1.7-main.26737237574",
|
|
34794
34800
|
private: false,
|
|
34795
34801
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
34796
34802
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED