anymal-protocol 1.0.77 → 1.0.79
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 +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -234,6 +234,7 @@ declare enum ActionSourceType {
|
|
|
234
234
|
declare enum ActionStatus {
|
|
235
235
|
PENDING = "PENDING",
|
|
236
236
|
VALIDATED = "VALIDATED_ONCHAIN",
|
|
237
|
+
CLAIMING = "CLAIMING",
|
|
237
238
|
CLAIMED = "CLAIMED"
|
|
238
239
|
}
|
|
239
240
|
/**
|
|
@@ -263,11 +264,14 @@ interface ActionDefinition {
|
|
|
263
264
|
name: string;
|
|
264
265
|
namespace: string;
|
|
265
266
|
description: string;
|
|
266
|
-
rewardAmount:
|
|
267
|
+
rewardAmount: bigint;
|
|
267
268
|
maxClaims: number;
|
|
268
269
|
ruleType: string;
|
|
269
270
|
requiresReview: boolean;
|
|
270
271
|
isActive: boolean;
|
|
272
|
+
createdAt: string;
|
|
273
|
+
updatedAt: string | null;
|
|
274
|
+
ruleConfig: Record<string, any>;
|
|
271
275
|
}
|
|
272
276
|
/**
|
|
273
277
|
* API response for fetching action records.
|
package/dist/index.d.ts
CHANGED
|
@@ -234,6 +234,7 @@ declare enum ActionSourceType {
|
|
|
234
234
|
declare enum ActionStatus {
|
|
235
235
|
PENDING = "PENDING",
|
|
236
236
|
VALIDATED = "VALIDATED_ONCHAIN",
|
|
237
|
+
CLAIMING = "CLAIMING",
|
|
237
238
|
CLAIMED = "CLAIMED"
|
|
238
239
|
}
|
|
239
240
|
/**
|
|
@@ -263,11 +264,14 @@ interface ActionDefinition {
|
|
|
263
264
|
name: string;
|
|
264
265
|
namespace: string;
|
|
265
266
|
description: string;
|
|
266
|
-
rewardAmount:
|
|
267
|
+
rewardAmount: bigint;
|
|
267
268
|
maxClaims: number;
|
|
268
269
|
ruleType: string;
|
|
269
270
|
requiresReview: boolean;
|
|
270
271
|
isActive: boolean;
|
|
272
|
+
createdAt: string;
|
|
273
|
+
updatedAt: string | null;
|
|
274
|
+
ruleConfig: Record<string, any>;
|
|
271
275
|
}
|
|
272
276
|
/**
|
|
273
277
|
* API response for fetching action records.
|
package/dist/index.js
CHANGED
|
@@ -2206,6 +2206,7 @@ var ActionSourceType = /* @__PURE__ */ ((ActionSourceType2) => {
|
|
|
2206
2206
|
var ActionStatus = /* @__PURE__ */ ((ActionStatus2) => {
|
|
2207
2207
|
ActionStatus2["PENDING"] = "PENDING";
|
|
2208
2208
|
ActionStatus2["VALIDATED"] = "VALIDATED_ONCHAIN";
|
|
2209
|
+
ActionStatus2["CLAIMING"] = "CLAIMING";
|
|
2209
2210
|
ActionStatus2["CLAIMED"] = "CLAIMED";
|
|
2210
2211
|
return ActionStatus2;
|
|
2211
2212
|
})(ActionStatus || {});
|
package/dist/index.mjs
CHANGED
|
@@ -2069,6 +2069,7 @@ var ActionSourceType = /* @__PURE__ */ ((ActionSourceType2) => {
|
|
|
2069
2069
|
var ActionStatus = /* @__PURE__ */ ((ActionStatus2) => {
|
|
2070
2070
|
ActionStatus2["PENDING"] = "PENDING";
|
|
2071
2071
|
ActionStatus2["VALIDATED"] = "VALIDATED_ONCHAIN";
|
|
2072
|
+
ActionStatus2["CLAIMING"] = "CLAIMING";
|
|
2072
2073
|
ActionStatus2["CLAIMED"] = "CLAIMED";
|
|
2073
2074
|
return ActionStatus2;
|
|
2074
2075
|
})(ActionStatus || {});
|
package/package.json
CHANGED