anymal-protocol 1.0.75 → 1.0.77
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.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -250,12 +250,14 @@ interface ActionRecord {
|
|
|
250
250
|
reward_amount?: number;
|
|
251
251
|
status: ActionStatus;
|
|
252
252
|
createdAt: string;
|
|
253
|
+
updatedAt: string;
|
|
253
254
|
validatedAt?: string | null;
|
|
254
255
|
claimIndex?: number | null;
|
|
255
256
|
claimedAt?: string | null;
|
|
256
257
|
claimQuantity?: number | null;
|
|
257
258
|
}
|
|
258
259
|
interface ActionDefinition {
|
|
260
|
+
id: string;
|
|
259
261
|
key: string;
|
|
260
262
|
actionId: string;
|
|
261
263
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -250,12 +250,14 @@ interface ActionRecord {
|
|
|
250
250
|
reward_amount?: number;
|
|
251
251
|
status: ActionStatus;
|
|
252
252
|
createdAt: string;
|
|
253
|
+
updatedAt: string;
|
|
253
254
|
validatedAt?: string | null;
|
|
254
255
|
claimIndex?: number | null;
|
|
255
256
|
claimedAt?: string | null;
|
|
256
257
|
claimQuantity?: number | null;
|
|
257
258
|
}
|
|
258
259
|
interface ActionDefinition {
|
|
260
|
+
id: string;
|
|
259
261
|
key: string;
|
|
260
262
|
actionId: string;
|
|
261
263
|
name: string;
|
package/package.json
CHANGED