anymal-protocol 1.0.78 → 1.0.80
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -264,11 +264,14 @@ interface ActionDefinition {
|
|
|
264
264
|
name: string;
|
|
265
265
|
namespace: string;
|
|
266
266
|
description: string;
|
|
267
|
-
rewardAmount:
|
|
267
|
+
rewardAmount: number;
|
|
268
268
|
maxClaims: number;
|
|
269
269
|
ruleType: string;
|
|
270
270
|
requiresReview: boolean;
|
|
271
271
|
isActive: boolean;
|
|
272
|
+
createdAt: string;
|
|
273
|
+
updatedAt: string | null;
|
|
274
|
+
ruleConfig: Record<string, any>;
|
|
272
275
|
}
|
|
273
276
|
/**
|
|
274
277
|
* API response for fetching action records.
|
package/dist/index.d.ts
CHANGED
|
@@ -264,11 +264,14 @@ interface ActionDefinition {
|
|
|
264
264
|
name: string;
|
|
265
265
|
namespace: string;
|
|
266
266
|
description: string;
|
|
267
|
-
rewardAmount:
|
|
267
|
+
rewardAmount: number;
|
|
268
268
|
maxClaims: number;
|
|
269
269
|
ruleType: string;
|
|
270
270
|
requiresReview: boolean;
|
|
271
271
|
isActive: boolean;
|
|
272
|
+
createdAt: string;
|
|
273
|
+
updatedAt: string | null;
|
|
274
|
+
ruleConfig: Record<string, any>;
|
|
272
275
|
}
|
|
273
276
|
/**
|
|
274
277
|
* API response for fetching action records.
|
package/package.json
CHANGED