@eluvio/elv-client-js 4.0.31 → 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
|
@@ -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
|
|
package/typeSpecs/Default.js
CHANGED
|
@@ -74,6 +74,12 @@ const defaultSpec = {
|
|
|
74
74
|
defaultable: false,
|
|
75
75
|
orderable: true
|
|
76
76
|
}
|
|
77
|
+
],
|
|
78
|
+
searchable_links: [
|
|
79
|
+
{target: "/public/asset_metadata", link_key: "asset_metadata"},
|
|
80
|
+
{target: "/public/assets", link_key: "assets"},
|
|
81
|
+
{target: "/offerings", link_key: "offerings"},
|
|
82
|
+
{target: "/video_tags", link_key: "video_tags"}
|
|
77
83
|
]
|
|
78
84
|
};
|
|
79
85
|
|