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 +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
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