anymal-protocol 1.0.79 → 1.0.81
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 +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -235,7 +235,8 @@ declare enum ActionStatus {
|
|
|
235
235
|
PENDING = "PENDING",
|
|
236
236
|
VALIDATED = "VALIDATED_ONCHAIN",
|
|
237
237
|
CLAIMING = "CLAIMING",
|
|
238
|
-
CLAIMED = "CLAIMED"
|
|
238
|
+
CLAIMED = "CLAIMED",
|
|
239
|
+
REJECTED = "REJECTED"
|
|
239
240
|
}
|
|
240
241
|
/**
|
|
241
242
|
* Represents a single action record returned by the backend.
|
|
@@ -264,7 +265,7 @@ interface ActionDefinition {
|
|
|
264
265
|
name: string;
|
|
265
266
|
namespace: string;
|
|
266
267
|
description: string;
|
|
267
|
-
rewardAmount:
|
|
268
|
+
rewardAmount: number;
|
|
268
269
|
maxClaims: number;
|
|
269
270
|
ruleType: string;
|
|
270
271
|
requiresReview: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -235,7 +235,8 @@ declare enum ActionStatus {
|
|
|
235
235
|
PENDING = "PENDING",
|
|
236
236
|
VALIDATED = "VALIDATED_ONCHAIN",
|
|
237
237
|
CLAIMING = "CLAIMING",
|
|
238
|
-
CLAIMED = "CLAIMED"
|
|
238
|
+
CLAIMED = "CLAIMED",
|
|
239
|
+
REJECTED = "REJECTED"
|
|
239
240
|
}
|
|
240
241
|
/**
|
|
241
242
|
* Represents a single action record returned by the backend.
|
|
@@ -264,7 +265,7 @@ interface ActionDefinition {
|
|
|
264
265
|
name: string;
|
|
265
266
|
namespace: string;
|
|
266
267
|
description: string;
|
|
267
|
-
rewardAmount:
|
|
268
|
+
rewardAmount: number;
|
|
268
269
|
maxClaims: number;
|
|
269
270
|
ruleType: string;
|
|
270
271
|
requiresReview: boolean;
|
package/dist/index.js
CHANGED
|
@@ -2208,6 +2208,7 @@ var ActionStatus = /* @__PURE__ */ ((ActionStatus2) => {
|
|
|
2208
2208
|
ActionStatus2["VALIDATED"] = "VALIDATED_ONCHAIN";
|
|
2209
2209
|
ActionStatus2["CLAIMING"] = "CLAIMING";
|
|
2210
2210
|
ActionStatus2["CLAIMED"] = "CLAIMED";
|
|
2211
|
+
ActionStatus2["REJECTED"] = "REJECTED";
|
|
2211
2212
|
return ActionStatus2;
|
|
2212
2213
|
})(ActionStatus || {});
|
|
2213
2214
|
|
package/dist/index.mjs
CHANGED
|
@@ -2071,6 +2071,7 @@ var ActionStatus = /* @__PURE__ */ ((ActionStatus2) => {
|
|
|
2071
2071
|
ActionStatus2["VALIDATED"] = "VALIDATED_ONCHAIN";
|
|
2072
2072
|
ActionStatus2["CLAIMING"] = "CLAIMING";
|
|
2073
2073
|
ActionStatus2["CLAIMED"] = "CLAIMED";
|
|
2074
|
+
ActionStatus2["REJECTED"] = "REJECTED";
|
|
2074
2075
|
return ActionStatus2;
|
|
2075
2076
|
})(ActionStatus || {});
|
|
2076
2077
|
|
package/package.json
CHANGED