anymal-protocol 1.0.82 → 1.0.83
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
|
@@ -221,7 +221,9 @@ declare function generateAppSignature(privateKeyHex: string, clientId: string, r
|
|
|
221
221
|
declare enum ActionType {
|
|
222
222
|
GRAPHQL = "GRAPHQL",
|
|
223
223
|
CONTRACT = "CONTRACT",
|
|
224
|
-
EXTERNAL = "EXTERNAL"
|
|
224
|
+
EXTERNAL = "EXTERNAL",
|
|
225
|
+
PURCHASE = "PURCHASE",
|
|
226
|
+
WISHLIST_PURCHASE = "WISHLIST_PURCHASE"
|
|
225
227
|
}
|
|
226
228
|
/**
|
|
227
229
|
* The source type
|
package/dist/index.d.ts
CHANGED
|
@@ -221,7 +221,9 @@ declare function generateAppSignature(privateKeyHex: string, clientId: string, r
|
|
|
221
221
|
declare enum ActionType {
|
|
222
222
|
GRAPHQL = "GRAPHQL",
|
|
223
223
|
CONTRACT = "CONTRACT",
|
|
224
|
-
EXTERNAL = "EXTERNAL"
|
|
224
|
+
EXTERNAL = "EXTERNAL",
|
|
225
|
+
PURCHASE = "PURCHASE",
|
|
226
|
+
WISHLIST_PURCHASE = "WISHLIST_PURCHASE"
|
|
225
227
|
}
|
|
226
228
|
/**
|
|
227
229
|
* The source type
|
package/dist/index.js
CHANGED
|
@@ -2196,6 +2196,8 @@ var ActionType = /* @__PURE__ */ ((ActionType2) => {
|
|
|
2196
2196
|
ActionType2["GRAPHQL"] = "GRAPHQL";
|
|
2197
2197
|
ActionType2["CONTRACT"] = "CONTRACT";
|
|
2198
2198
|
ActionType2["EXTERNAL"] = "EXTERNAL";
|
|
2199
|
+
ActionType2["PURCHASE"] = "PURCHASE";
|
|
2200
|
+
ActionType2["WISHLIST_PURCHASE"] = "WISHLIST_PURCHASE";
|
|
2199
2201
|
return ActionType2;
|
|
2200
2202
|
})(ActionType || {});
|
|
2201
2203
|
var ActionSourceType = /* @__PURE__ */ ((ActionSourceType2) => {
|
package/dist/index.mjs
CHANGED
|
@@ -2058,6 +2058,8 @@ var ActionType = /* @__PURE__ */ ((ActionType2) => {
|
|
|
2058
2058
|
ActionType2["GRAPHQL"] = "GRAPHQL";
|
|
2059
2059
|
ActionType2["CONTRACT"] = "CONTRACT";
|
|
2060
2060
|
ActionType2["EXTERNAL"] = "EXTERNAL";
|
|
2061
|
+
ActionType2["PURCHASE"] = "PURCHASE";
|
|
2062
|
+
ActionType2["WISHLIST_PURCHASE"] = "WISHLIST_PURCHASE";
|
|
2061
2063
|
return ActionType2;
|
|
2062
2064
|
})(ActionType || {});
|
|
2063
2065
|
var ActionSourceType = /* @__PURE__ */ ((ActionSourceType2) => {
|
package/package.json
CHANGED