@eluvio/elv-client-js 4.0.62 → 4.0.64

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.
@@ -1178,12 +1178,18 @@ class ElvWalletClient {
1178
1178
  }
1179
1179
 
1180
1180
 
1181
+ let headers;
1181
1182
  let path;
1182
1183
  switch(mode) {
1183
1184
  case "owned":
1184
1185
  path = UrlJoin("as", "wlt", userAddress || this.UserAddress());
1185
1186
  break;
1186
1187
 
1188
+ case "owned-full-meta":
1189
+ path = UrlJoin("as", "apigw", "nfts");
1190
+ headers = { Authorization: `Bearer ${this.AuthToken()}` };
1191
+ break;
1192
+
1187
1193
  case "listings":
1188
1194
  path = UrlJoin("as", "mkt", "f");
1189
1195
  break;
@@ -1223,7 +1229,8 @@ class ElvWalletClient {
1223
1229
  this.client.authClient.MakeAuthServiceRequest({
1224
1230
  path,
1225
1231
  method: "GET",
1226
- queryParams: params
1232
+ queryParams: params,
1233
+ headers: headers
1227
1234
  })
1228
1235
  );
1229
1236
  }
@@ -1232,7 +1239,8 @@ class ElvWalletClient {
1232
1239
  await this.client.authClient.MakeAuthServiceRequest({
1233
1240
  path,
1234
1241
  method: "GET",
1235
- queryParams: params
1242
+ queryParams: params,
1243
+ headers: headers
1236
1244
  })
1237
1245
  ) || [];
1238
1246