@settlemint/dalp-sdk 2.1.7-main.23401987074 → 2.1.7-main.23402944471
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 +12 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7677,12 +7677,21 @@ var ClaimHistoryEventValueSchema = z129.object({
|
|
|
7677
7677
|
name: z129.string().meta({ description: "Parameter name from the event", examples: ["topic", "claimId", "issuer"] }),
|
|
7678
7678
|
value: z129.string().meta({ description: "String representation of the parameter value", examples: ["1", "0x1234...", "true"] })
|
|
7679
7679
|
});
|
|
7680
|
-
var ClaimHistoryEventNameSchema = z129.enum([
|
|
7680
|
+
var ClaimHistoryEventNameSchema = z129.enum([
|
|
7681
|
+
"Approved",
|
|
7682
|
+
"ClaimAdded",
|
|
7683
|
+
"ClaimChanged",
|
|
7684
|
+
"ClaimRemoved",
|
|
7685
|
+
"ClaimRevoked",
|
|
7686
|
+
"Executed",
|
|
7687
|
+
"ExecutionFailed",
|
|
7688
|
+
"ExecutionRequested"
|
|
7689
|
+
]);
|
|
7681
7690
|
var ClaimHistoryEventSchema = z129.object({
|
|
7682
7691
|
id: z129.string().meta({ description: "Unique identifier for the event", examples: ["evt-001", "evt-002"] }),
|
|
7683
7692
|
eventName: ClaimHistoryEventNameSchema.meta({
|
|
7684
7693
|
description: "Event name emitted by the identity contract",
|
|
7685
|
-
examples: ["ClaimAdded", "
|
|
7694
|
+
examples: ["ClaimAdded", "ExecutionRequested"]
|
|
7686
7695
|
}),
|
|
7687
7696
|
txIndex: z129.string().meta({ description: "Transaction index within the block", examples: ["0", "1", "42"] }),
|
|
7688
7697
|
blockNumber: z129.string().meta({ description: "Block number for the event", examples: ["12345678", "98765432"] }),
|
|
@@ -23258,7 +23267,7 @@ var dalpSerializers = [
|
|
|
23258
23267
|
// package.json
|
|
23259
23268
|
var package_default = {
|
|
23260
23269
|
name: "@settlemint/dalp-sdk",
|
|
23261
|
-
version: "2.1.7-main.
|
|
23270
|
+
version: "2.1.7-main.23402944471",
|
|
23262
23271
|
private: false,
|
|
23263
23272
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
23264
23273
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED