@eluvio/elv-client-js 4.0.32 → 4.0.33

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eluvio/elv-client-js",
3
- "version": "4.0.32",
3
+ "version": "4.0.33",
4
4
  "description": "Javascript client for the Eluvio Content Fabric",
5
5
  "main": "src/index.js",
6
6
  "author": "Kevin Talmadge",
@@ -1257,6 +1257,18 @@ exports.RedeemableOfferStatus = async function({tenantId, marketplaceParams, con
1257
1257
  }
1258
1258
  };
1259
1259
 
1260
+ exports.RedeemableCustomFulfillmentInfo = async function({redeemableTransactionId}) {
1261
+ return await Utils.ResponseToJson(
1262
+ this.stateStoreClient.Request({
1263
+ method: "GET",
1264
+ path: UrlJoin("code-fulfillment", this.network === "main" ? "main" : "demov3", "fulfill", redeemableTransactionId),
1265
+ headers: {
1266
+ Authorization: `Bearer ${this.AuthToken()}`
1267
+ }
1268
+ })
1269
+ );
1270
+ };
1271
+
1260
1272
 
1261
1273
  /* EVENTS */
1262
1274