@eluvio/elv-client-js 4.0.103 → 4.0.104
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
|
@@ -1911,6 +1911,7 @@ exports.MakeFileServiceRequest = async function({
|
|
|
1911
1911
|
body,
|
|
1912
1912
|
bodyType="JSON",
|
|
1913
1913
|
format="json",
|
|
1914
|
+
encryption,
|
|
1914
1915
|
headers={},
|
|
1915
1916
|
authorizationToken
|
|
1916
1917
|
}) {
|
|
@@ -1930,7 +1931,7 @@ exports.MakeFileServiceRequest = async function({
|
|
|
1930
1931
|
|
|
1931
1932
|
let authorization = [
|
|
1932
1933
|
authorizationToken,
|
|
1933
|
-
await this.authClient.AuthorizationToken({objectId})
|
|
1934
|
+
await this.authClient.AuthorizationToken({libraryId, objectId, versionHash, encryption, makeAccessRequest: encryption === "cgck"})
|
|
1934
1935
|
]
|
|
1935
1936
|
.flat()
|
|
1936
1937
|
.filter(token => token);
|
|
@@ -763,17 +763,13 @@ class ElvWalletClient {
|
|
|
763
763
|
select: [
|
|
764
764
|
"info/marketplace_order",
|
|
765
765
|
"tenants/*/.",
|
|
766
|
-
"tenants/*/info/branding",
|
|
766
|
+
"tenants/*/info/branding/show",
|
|
767
|
+
"tenants/*/info/branding/name",
|
|
767
768
|
"tenants/*/marketplaces/*/.",
|
|
768
769
|
"tenants/*/marketplaces/*/info/tenant_id",
|
|
769
770
|
"tenants/*/marketplaces/*/info/tenant_name",
|
|
770
|
-
"tenants/*/marketplaces/*/info/branding",
|
|
771
|
-
"tenants/*/marketplaces/*/info/
|
|
772
|
-
"tenants/*/marketplaces/*/info/storefront/background_mobile"
|
|
773
|
-
],
|
|
774
|
-
remove: [
|
|
775
|
-
"tenants/*/info/branding/wallet_css",
|
|
776
|
-
"tenants/*/marketplaces/*/info/branding/custom_css"
|
|
771
|
+
"tenants/*/marketplaces/*/info/branding/show",
|
|
772
|
+
"tenants/*/marketplaces/*/info/branding/name"
|
|
777
773
|
]
|
|
778
774
|
});
|
|
779
775
|
|