@settlemint/dalp-sdk 2.1.7-main.26777506752 → 2.1.7-main.26777922886
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 +6 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -21556,6 +21556,9 @@ var UserListInputSchema = PaginatedListSchema.extend({
|
|
|
21556
21556
|
var UserListItemSchema = UserSchema.extend({
|
|
21557
21557
|
participantId: z257.string(),
|
|
21558
21558
|
roles: accessControlRoles,
|
|
21559
|
+
rolesPending: z257.boolean().optional().meta({
|
|
21560
|
+
description: "Role grants are not resolved yet because the transaction wallet is counterfactual."
|
|
21561
|
+
}),
|
|
21559
21562
|
isAdmin: z257.boolean().optional().nullable()
|
|
21560
21563
|
});
|
|
21561
21564
|
var UserListOutputSchema = z257.object({
|
|
@@ -33745,6 +33748,8 @@ var USERS_COLLECTION_FIELDS = {
|
|
|
33745
33748
|
name: textField(),
|
|
33746
33749
|
email: textField(),
|
|
33747
33750
|
wallet: addressField(),
|
|
33751
|
+
transactionWallet: addressField(),
|
|
33752
|
+
signingWallet: addressField(),
|
|
33748
33753
|
nationalId: textField({ sortable: false, defaultOperator: "eq" }),
|
|
33749
33754
|
country: textField(),
|
|
33750
33755
|
dob: dateField({ sortable: false }),
|
|
@@ -34856,7 +34861,7 @@ function normalizeDalpBaseUrl(url) {
|
|
|
34856
34861
|
// package.json
|
|
34857
34862
|
var package_default = {
|
|
34858
34863
|
name: "@settlemint/dalp-sdk",
|
|
34859
|
-
version: "2.1.7-main.
|
|
34864
|
+
version: "2.1.7-main.26777922886",
|
|
34860
34865
|
private: false,
|
|
34861
34866
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
34862
34867
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED