@settlemint/dalp-sdk 3.0.7-main.28643090779 → 3.0.7-main.28799463854
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 +11 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -71583,7 +71583,7 @@ var IdentitySchema = z69.object({
|
|
|
71583
71583
|
hasIdentity: z69.boolean(),
|
|
71584
71584
|
registered: z69.object({
|
|
71585
71585
|
isRegistered: z69.literal(true),
|
|
71586
|
-
country: isoCountryCode
|
|
71586
|
+
country: v1FrozenRequired(isoCountryCode.nullable(), { nonNullable: true })
|
|
71587
71587
|
}).or(z69.literal(false)).optional(),
|
|
71588
71588
|
claims: z69.array(identityClaim).default([])
|
|
71589
71589
|
});
|
|
@@ -74093,7 +74093,7 @@ var SystemSchema = z107.object({
|
|
|
74093
74093
|
}),
|
|
74094
74094
|
registered: z107.object({
|
|
74095
74095
|
isRegistered: z107.literal(true),
|
|
74096
|
-
country: isoCountryCode
|
|
74096
|
+
country: isoCountryCode.nullable()
|
|
74097
74097
|
}).optional()
|
|
74098
74098
|
}).optional().meta({
|
|
74099
74099
|
description: "The user's identity information within this system. `address` = identity contract exists; `registered` = ACTIVE in registry.",
|
|
@@ -86271,6 +86271,10 @@ var HoldingAssetClassSchema = z388.object({
|
|
|
86271
86271
|
slug: z388.string().meta({ description: "Asset class slug used for grouping.", examples: ["equity", "cash"] }),
|
|
86272
86272
|
name: z388.string().meta({ description: "Human-readable asset class name.", examples: ["Equity", "Cash"] })
|
|
86273
86273
|
}).meta({ description: "Asset class the token belongs to." });
|
|
86274
|
+
var HoldingOrganizationSchema = z388.object({
|
|
86275
|
+
id: z388.string().meta({ description: "Issuing organisation id.", examples: ["org_acme"] }),
|
|
86276
|
+
name: z388.string().meta({ description: "Issuing organisation display name.", examples: ["Acme Corp"] })
|
|
86277
|
+
}).meta({ description: "The organisation whose system issued the token." });
|
|
86274
86278
|
var HoldingTokenSchema = z388.object({
|
|
86275
86279
|
id: ethereumAddress.meta({
|
|
86276
86280
|
description: "The token contract address.",
|
|
@@ -86298,6 +86302,10 @@ var ParticipantHoldingV2ItemSchema = z388.object({
|
|
|
86298
86302
|
description: "The token's asset class. Null for external tokens (no template) — rendered under External tokens.",
|
|
86299
86303
|
examples: [null]
|
|
86300
86304
|
}),
|
|
86305
|
+
organization: HoldingOrganizationSchema.nullable().meta({
|
|
86306
|
+
description: "The organisation that issued the token, resolved from the token's system. Null when no issuing organisation resolves (e.g. an external token) — the UI shows a fallback label (R3).",
|
|
86307
|
+
examples: [null]
|
|
86308
|
+
}),
|
|
86301
86309
|
walletAddress: ethereumAddress.meta({
|
|
86302
86310
|
description: "The participant wallet address that holds this balance.",
|
|
86303
86311
|
examples: ["0x71C7656EC7ab88b098defB751B7401B5f6d8976F"]
|
|
@@ -96597,7 +96605,7 @@ function normalizeDalpBaseUrl(url) {
|
|
|
96597
96605
|
// package.json
|
|
96598
96606
|
var package_default = {
|
|
96599
96607
|
name: "@settlemint/dalp-sdk",
|
|
96600
|
-
version: "3.0.7-main.
|
|
96608
|
+
version: "3.0.7-main.28799463854",
|
|
96601
96609
|
private: false,
|
|
96602
96610
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
96603
96611
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED