@settlemint/dalp-cli 3.0.7-main.28509487448 → 3.0.7-main.28513519711
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 +16 -2
- package/package.json +1 -1
package/dist/dalp.js
CHANGED
|
@@ -135402,6 +135402,19 @@ var ParticipantActivityParamsSchema = exports_external.object({
|
|
|
135402
135402
|
examples: ["par_01HXYZ"]
|
|
135403
135403
|
})
|
|
135404
135404
|
});
|
|
135405
|
+
var ActAvailabilityReasonSchema = exports_external.enum(["ok", "noSmartWallet", "noEoa"]).meta({
|
|
135406
|
+
description: "Why the participant is or is not actable. `ok` — actable. `noSmartWallet` — account abstraction is enabled for the org on this chain but the participant has no smart wallet to execute from. `noEoa` — account abstraction is off and the participant has no EOA to execute from.",
|
|
135407
|
+
examples: ["ok"]
|
|
135408
|
+
});
|
|
135409
|
+
var ActAvailabilitySchema = exports_external.object({
|
|
135410
|
+
actable: exports_external.boolean().meta({
|
|
135411
|
+
description: "Whether the session can currently execute transactions as this participant.",
|
|
135412
|
+
examples: [true]
|
|
135413
|
+
}),
|
|
135414
|
+
reason: ActAvailabilityReasonSchema
|
|
135415
|
+
}).meta({
|
|
135416
|
+
description: "Execution readiness of this participant for the acting-as affordance. When `actable` is false the UI disables the option and shows the reason."
|
|
135417
|
+
});
|
|
135405
135418
|
var AssumableParticipantGatingRoleSchema = exports_external.enum(["organisationIdentityManager", "admin"]);
|
|
135406
135419
|
var AssumableParticipantKindSchema = exports_external.enum(["person", "organisation"]);
|
|
135407
135420
|
var AssumableParticipantIdentityStatusSchema = exports_external.enum(["verified", "pending", "none"]);
|
|
@@ -135410,6 +135423,7 @@ var AssumableParticipantSchema = exports_external.object({
|
|
|
135410
135423
|
kind: AssumableParticipantKindSchema,
|
|
135411
135424
|
displayName: exports_external.string().nullable(),
|
|
135412
135425
|
gatingRole: AssumableParticipantGatingRoleSchema.nullable(),
|
|
135426
|
+
actAvailability: ActAvailabilitySchema,
|
|
135413
135427
|
identityStatus: AssumableParticipantIdentityStatusSchema,
|
|
135414
135428
|
accountCount: exports_external.number().int().nonnegative()
|
|
135415
135429
|
});
|
|
@@ -144869,7 +144883,7 @@ function normalizeDalpBaseUrl(url2) {
|
|
|
144869
144883
|
}
|
|
144870
144884
|
var package_default = {
|
|
144871
144885
|
name: "@settlemint/dalp-sdk",
|
|
144872
|
-
version: "3.0.7-main.
|
|
144886
|
+
version: "3.0.7-main.28513519711",
|
|
144873
144887
|
private: false,
|
|
144874
144888
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
144875
144889
|
homepage: "https://settlemint.com",
|
|
@@ -146119,7 +146133,7 @@ var failedStateSet = new Set(FAILED_TRANSACTION_STATES);
|
|
|
146119
146133
|
// package.json
|
|
146120
146134
|
var package_default2 = {
|
|
146121
146135
|
name: "@settlemint/dalp-cli",
|
|
146122
|
-
version: "3.0.7-main.
|
|
146136
|
+
version: "3.0.7-main.28513519711",
|
|
146123
146137
|
private: false,
|
|
146124
146138
|
description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
146125
146139
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@settlemint/dalp-cli",
|
|
3
|
-
"version": "3.0.7-main.
|
|
3
|
+
"version": "3.0.7-main.28513519711",
|
|
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",
|