@eluvio/elv-client-js 3.2.32 → 3.2.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": "3.2.32",
3
+ "version": "3.2.33",
4
4
  "description": "Javascript client for the Eluvio Content Fabric",
5
5
  "main": "src/index.js",
6
6
  "author": "Kevin Talmadge",
@@ -97,9 +97,8 @@ exports.SetProfileMetadata = async function({type="app", mode="public", appId, k
97
97
  * @param {string=} mode="public" - Specify `public` or `private` metadata.
98
98
  * @param {string=} appId - Namespace to use for the metadata, if retrieving app metadata.. Uses the app ID specified on client initialization by default.
99
99
  * @param {string} key - The metadata key to set
100
- * @param {string} value - The metadata value to set
101
100
  */
102
- exports.RemoveProfileMetadata = async function({type="app", mode="public", appId, key, value}) {
101
+ exports.RemoveProfileMetadata = async function({type="app", mode="public", appId, key}) {
103
102
  await this.stateStoreClient.Request({
104
103
  method: "DELETE",
105
104
  path: UserProfilePath({
@@ -110,7 +109,6 @@ exports.RemoveProfileMetadata = async function({type="app", mode="public", appId
110
109
  mode,
111
110
  key
112
111
  }),
113
- body: value,
114
112
  headers: {
115
113
  Authorization: `Bearer ${this.AuthToken()}`
116
114
  }
@@ -606,7 +606,9 @@ class ElvWalletClient {
606
606
  "*/marketplaces/*/.",
607
607
  "*/marketplaces/*/info/tenant_id",
608
608
  "*/marketplaces/*/info/tenant_name",
609
- "*/marketplaces/*/info/branding"
609
+ "*/marketplaces/*/info/branding",
610
+ "*/marketplaces/*/info/storefront/background",
611
+ "*/marketplaces/*/info/storefront/background_mobile"
610
612
  ],
611
613
  remove: [
612
614
  "*/marketplaces/*/info/branding/custom_css"