@settlemint/dalp-cli 3.1.19-release.34456469550 → 3.1.19
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 +11 -24
- package/package.json +1 -1
package/dist/dalp.js
CHANGED
|
@@ -118918,22 +118918,14 @@ var XvpExecuteInputSchema = XvpSettlementMutationInputSchema;
|
|
|
118918
118918
|
var XvpExecuteOutputSchema = exports_external.object({
|
|
118919
118919
|
transactionHash: exports_external.string()
|
|
118920
118920
|
});
|
|
118921
|
-
var
|
|
118922
|
-
var DOT_ATOM = `[${ATEXT}]+(?:\\.[${ATEXT}]+)*`;
|
|
118923
|
-
var QUOTED_STRING = `"(?!${DOT_ATOM}")(?:[\\x20\\x21\\x23-\\x5B\\x5D-\\x7E]|\\\\[\\x22\\x5C])*"`;
|
|
118924
|
-
var DOMAIN = String.raw`(?:[A-Za-z0-9][A-Za-z0-9-]*\.)+[A-Za-z]{2,}`;
|
|
118925
|
-
var EMAIL_PATTERN = new RegExp(`^(?:${DOT_ATOM}|${QUOTED_STRING})@${DOMAIN}$`);
|
|
118926
|
-
function emailAddress(message = "Invalid email address") {
|
|
118927
|
-
return exports_external.email({ pattern: EMAIL_PATTERN, error: message });
|
|
118928
|
-
}
|
|
118929
|
-
var EmailRecipientsSchema = exports_external.array(emailAddress()).max(10, "Maximum 10 email recipients allowed").optional().default([]);
|
|
118921
|
+
var EmailRecipientsSchema = exports_external.array(exports_external.email("Invalid email address")).max(10, "Maximum 10 email recipients allowed").optional().default([]);
|
|
118930
118922
|
var XvpRevealSecretInputSchema = XvpSettlementMutationInputSchema.extend({
|
|
118931
118923
|
secret: RawSecretSchema,
|
|
118932
118924
|
emailRecipients: EmailRecipientsSchema,
|
|
118933
118925
|
settlementName: exports_external.string().optional()
|
|
118934
118926
|
});
|
|
118935
118927
|
var EmailSendResultSchema = exports_external.object({
|
|
118936
|
-
recipient:
|
|
118928
|
+
recipient: exports_external.email(),
|
|
118937
118929
|
success: exports_external.boolean(),
|
|
118938
118930
|
error: exports_external.string().optional()
|
|
118939
118931
|
});
|
|
@@ -119247,7 +119239,7 @@ var OrganizationListItemSchema = exports_external.object({
|
|
|
119247
119239
|
description: "Number of owners in the organization",
|
|
119248
119240
|
examples: [2]
|
|
119249
119241
|
}),
|
|
119250
|
-
ownerEmails: exports_external.array(
|
|
119242
|
+
ownerEmails: exports_external.array(exports_external.string().email()).meta({
|
|
119251
119243
|
description: "Email addresses for all organization owners",
|
|
119252
119244
|
examples: [["owner@company.com", "owner2@company.com"]]
|
|
119253
119245
|
}),
|
|
@@ -121974,7 +121966,7 @@ var PublicConfigGetOutputSchema = exports_external.object({
|
|
|
121974
121966
|
enabled: exports_external.boolean()
|
|
121975
121967
|
}),
|
|
121976
121968
|
support: exports_external.object({
|
|
121977
|
-
email:
|
|
121969
|
+
email: exports_external.email(),
|
|
121978
121970
|
consentTitle: exports_external.string(),
|
|
121979
121971
|
consentDescription: exports_external.string()
|
|
121980
121972
|
}),
|
|
@@ -128385,7 +128377,7 @@ var onboardingStateSchema = exports_external.object({
|
|
|
128385
128377
|
var UserSchema = exports_external.object({
|
|
128386
128378
|
id: exports_external.string(),
|
|
128387
128379
|
name: exports_external.string(),
|
|
128388
|
-
email:
|
|
128380
|
+
email: exports_external.email().optional(),
|
|
128389
128381
|
role: userRoles().default("member"),
|
|
128390
128382
|
wallet: ethereumAddress.nullable().meta({
|
|
128391
128383
|
description: "User's Ethereum wallet address",
|
|
@@ -128461,7 +128453,7 @@ var CreateUserInputSchema = exports_external.object({
|
|
|
128461
128453
|
description: "Display name (person or company)",
|
|
128462
128454
|
examples: ["John Doe", "Acme Corporation"]
|
|
128463
128455
|
}),
|
|
128464
|
-
email:
|
|
128456
|
+
email: exports_external.string().email("Invalid email address").meta({
|
|
128465
128457
|
description: "Email address for the account",
|
|
128466
128458
|
examples: ["john@example.com", "admin@company.org"]
|
|
128467
128459
|
}),
|
|
@@ -128476,7 +128468,7 @@ var CreateUserOutputSchema = exports_external.object({
|
|
|
128476
128468
|
description: "Display name",
|
|
128477
128469
|
examples: ["John Doe", "Acme Corporation"]
|
|
128478
128470
|
}),
|
|
128479
|
-
email:
|
|
128471
|
+
email: exports_external.string().meta({
|
|
128480
128472
|
description: "Email address",
|
|
128481
128473
|
examples: ["john@example.com", "admin@company.org"]
|
|
128482
128474
|
}),
|
|
@@ -130421,16 +130413,11 @@ var OrganizationArchiveStateSchema = exports_external.object({
|
|
|
130421
130413
|
})
|
|
130422
130414
|
});
|
|
130423
130415
|
var OrganizationV2ArchiveOutputSchema = createSingleResponse(OrganizationArchiveStateSchema);
|
|
130424
|
-
var ORGANIZATION_STATUS_VALUES = ["active", "archived"];
|
|
130425
130416
|
var ORGANIZATIONS_COLLECTION_FIELDS = {
|
|
130426
130417
|
name: textField(),
|
|
130427
130418
|
slug: textField(),
|
|
130428
130419
|
createdAt: dateField(),
|
|
130429
|
-
archivedAt: dateField()
|
|
130430
|
-
status: enumField(ORGANIZATION_STATUS_VALUES, {
|
|
130431
|
-
sortable: false,
|
|
130432
|
-
facetable: false
|
|
130433
|
-
})
|
|
130420
|
+
archivedAt: dateField()
|
|
130434
130421
|
};
|
|
130435
130422
|
var OrganizationV2ListInputSchema = createCollectionInputSchema(ORGANIZATIONS_COLLECTION_FIELDS, {
|
|
130436
130423
|
defaultSort: "createdAt",
|
|
@@ -132728,7 +132715,7 @@ var InvitationV2RetryOutputSchema = exports_external.object({
|
|
|
132728
132715
|
});
|
|
132729
132716
|
var InviteWithRolesPlatformRoleSchema = exports_external.enum(["owner", "member"]);
|
|
132730
132717
|
var InvitationV2InviteWithRolesInputSchema = exports_external.object({
|
|
132731
|
-
email:
|
|
132718
|
+
email: exports_external.string().email("A valid email address is required"),
|
|
132732
132719
|
role: InviteWithRolesPlatformRoleSchema.default("member"),
|
|
132733
132720
|
onChainRoles: exports_external.array(systemAccessControlRole).min(1, "Select at least one on-chain role"),
|
|
132734
132721
|
walletVerification: UserVerificationSchema.optional()
|
|
@@ -142045,7 +142032,7 @@ function normalizeDalpBaseUrl(url2) {
|
|
|
142045
142032
|
}
|
|
142046
142033
|
var package_default = {
|
|
142047
142034
|
name: "@settlemint/dalp-sdk",
|
|
142048
|
-
version: "3.1.19
|
|
142035
|
+
version: "3.1.19",
|
|
142049
142036
|
private: false,
|
|
142050
142037
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
142051
142038
|
homepage: "https://settlemint.com",
|
|
@@ -143271,7 +143258,7 @@ var failedStateSet = new Set(FAILED_TRANSACTION_STATES);
|
|
|
143271
143258
|
// package.json
|
|
143272
143259
|
var package_default2 = {
|
|
143273
143260
|
name: "@settlemint/dalp-cli",
|
|
143274
|
-
version: "3.1.19
|
|
143261
|
+
version: "3.1.19",
|
|
143275
143262
|
private: false,
|
|
143276
143263
|
description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
143277
143264
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@settlemint/dalp-cli",
|
|
3
|
-
"version": "3.1.19
|
|
3
|
+
"version": "3.1.19",
|
|
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",
|