anymal-protocol 1.0.98 → 1.0.99

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 CHANGED
@@ -274,6 +274,7 @@ interface ActionRecord {
274
274
  claimedAt?: string | null;
275
275
  claimQuantity?: number | null;
276
276
  failure_reason?: string | null;
277
+ campaignStatus: string | null;
277
278
  }
278
279
  interface ActionDefinition {
279
280
  id: string;
package/dist/index.d.ts CHANGED
@@ -274,6 +274,7 @@ interface ActionRecord {
274
274
  claimedAt?: string | null;
275
275
  claimQuantity?: number | null;
276
276
  failure_reason?: string | null;
277
+ campaignStatus: string | null;
277
278
  }
278
279
  interface ActionDefinition {
279
280
  id: string;
package/dist/index.js CHANGED
@@ -2222,7 +2222,8 @@ var convertToActionRecord = (fr) => {
2222
2222
  claimIndex: fr.claimIndex ?? null,
2223
2223
  claimedAt: fr.claimedAt ?? null,
2224
2224
  claimQuantity: fr.claimQuantity ?? null,
2225
- failure_reason: fr.failure_reason ?? null
2225
+ failure_reason: fr.failure_reason ?? null,
2226
+ campaignStatus: fr.campaignStatus ?? null
2226
2227
  };
2227
2228
  };
2228
2229
  var convertToActionDefinition = (fr) => {
package/dist/index.mjs CHANGED
@@ -2079,7 +2079,8 @@ var convertToActionRecord = (fr) => {
2079
2079
  claimIndex: fr.claimIndex ?? null,
2080
2080
  claimedAt: fr.claimedAt ?? null,
2081
2081
  claimQuantity: fr.claimQuantity ?? null,
2082
- failure_reason: fr.failure_reason ?? null
2082
+ failure_reason: fr.failure_reason ?? null,
2083
+ campaignStatus: fr.campaignStatus ?? null
2083
2084
  };
2084
2085
  };
2085
2086
  var convertToActionDefinition = (fr) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anymal-protocol",
3
- "version": "1.0.98",
3
+ "version": "1.0.99",
4
4
  "description": "A React/TypeScript-based utility library for reusable functions and hooks inside of the Anymal Ecosystem.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {