anymal-protocol 1.0.94 → 1.0.95
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 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -240,10 +240,12 @@ declare enum ActionSourceType {
|
|
|
240
240
|
}
|
|
241
241
|
declare enum ActionStatus {
|
|
242
242
|
PENDING = "PENDING",
|
|
243
|
+
PROCESSING = "PROCESSING",
|
|
243
244
|
VALIDATED = "VALIDATED_ONCHAIN",
|
|
244
245
|
CLAIMING = "CLAIMING",
|
|
245
246
|
CLAIMED = "CLAIMED",
|
|
246
|
-
REJECTED = "REJECTED"
|
|
247
|
+
REJECTED = "REJECTED",
|
|
248
|
+
ERROR = "ERROR"
|
|
247
249
|
}
|
|
248
250
|
/**
|
|
249
251
|
* How the marketplace item can be verified, stripe transaction, anymal transaction, etc
|
package/dist/index.d.ts
CHANGED
|
@@ -240,10 +240,12 @@ declare enum ActionSourceType {
|
|
|
240
240
|
}
|
|
241
241
|
declare enum ActionStatus {
|
|
242
242
|
PENDING = "PENDING",
|
|
243
|
+
PROCESSING = "PROCESSING",
|
|
243
244
|
VALIDATED = "VALIDATED_ONCHAIN",
|
|
244
245
|
CLAIMING = "CLAIMING",
|
|
245
246
|
CLAIMED = "CLAIMED",
|
|
246
|
-
REJECTED = "REJECTED"
|
|
247
|
+
REJECTED = "REJECTED",
|
|
248
|
+
ERROR = "ERROR"
|
|
247
249
|
}
|
|
248
250
|
/**
|
|
249
251
|
* How the marketplace item can be verified, stripe transaction, anymal transaction, etc
|
package/dist/index.js
CHANGED
|
@@ -2196,10 +2196,12 @@ var ActionSourceType = /* @__PURE__ */ ((ActionSourceType3) => {
|
|
|
2196
2196
|
})(ActionSourceType || {});
|
|
2197
2197
|
var ActionStatus = /* @__PURE__ */ ((ActionStatus2) => {
|
|
2198
2198
|
ActionStatus2["PENDING"] = "PENDING";
|
|
2199
|
+
ActionStatus2["PROCESSING"] = "PROCESSING";
|
|
2199
2200
|
ActionStatus2["VALIDATED"] = "VALIDATED_ONCHAIN";
|
|
2200
2201
|
ActionStatus2["CLAIMING"] = "CLAIMING";
|
|
2201
2202
|
ActionStatus2["CLAIMED"] = "CLAIMED";
|
|
2202
2203
|
ActionStatus2["REJECTED"] = "REJECTED";
|
|
2204
|
+
ActionStatus2["ERROR"] = "ERROR";
|
|
2203
2205
|
return ActionStatus2;
|
|
2204
2206
|
})(ActionStatus || {});
|
|
2205
2207
|
var MarketplacePaymentType = /* @__PURE__ */ ((MarketplacePaymentType2) => {
|
package/dist/index.mjs
CHANGED
|
@@ -2053,10 +2053,12 @@ var ActionSourceType = /* @__PURE__ */ ((ActionSourceType3) => {
|
|
|
2053
2053
|
})(ActionSourceType || {});
|
|
2054
2054
|
var ActionStatus = /* @__PURE__ */ ((ActionStatus2) => {
|
|
2055
2055
|
ActionStatus2["PENDING"] = "PENDING";
|
|
2056
|
+
ActionStatus2["PROCESSING"] = "PROCESSING";
|
|
2056
2057
|
ActionStatus2["VALIDATED"] = "VALIDATED_ONCHAIN";
|
|
2057
2058
|
ActionStatus2["CLAIMING"] = "CLAIMING";
|
|
2058
2059
|
ActionStatus2["CLAIMED"] = "CLAIMED";
|
|
2059
2060
|
ActionStatus2["REJECTED"] = "REJECTED";
|
|
2061
|
+
ActionStatus2["ERROR"] = "ERROR";
|
|
2060
2062
|
return ActionStatus2;
|
|
2061
2063
|
})(ActionStatus || {});
|
|
2062
2064
|
var MarketplacePaymentType = /* @__PURE__ */ ((MarketplacePaymentType2) => {
|
package/package.json
CHANGED