emblem-vault-sdk 1.4.3 → 1.4.4

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/dist/bundle.js CHANGED
@@ -684212,7 +684212,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
684212
684212
  };
684213
684213
  Object.defineProperty(exports, "__esModule", { value: true });
684214
684214
  const utils_1 = require("./utils");
684215
- const SDK_VERSION = '1.4.2';
684215
+ const SDK_VERSION = '1.4.4';
684216
684216
  class EmblemVaultSDK {
684217
684217
  constructor(apiKey, baseUrl) {
684218
684218
  this.apiKey = apiKey;
@@ -684243,7 +684243,7 @@ class EmblemVaultSDK {
684243
684243
  }
684244
684244
  // ** Curated **
684245
684245
  //
684246
- fetchCuratedContractsz(hideUnMintable = false, overrideFunc = false) {
684246
+ fetchCuratedContracts(hideUnMintable = false, overrideFunc = false) {
684247
684247
  return __awaiter(this, void 0, void 0, function* () {
684248
684248
  let url = `${this.baseUrl}/curated`;
684249
684249
  // Fetch using URL or override function
package/dist/index.js CHANGED
@@ -33,7 +33,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
33
33
  };
34
34
  Object.defineProperty(exports, "__esModule", { value: true });
35
35
  const utils_1 = require("./utils");
36
- const SDK_VERSION = '1.4.2';
36
+ const SDK_VERSION = '1.4.4';
37
37
  class EmblemVaultSDK {
38
38
  constructor(apiKey, baseUrl) {
39
39
  this.apiKey = apiKey;
@@ -64,7 +64,7 @@ class EmblemVaultSDK {
64
64
  }
65
65
  // ** Curated **
66
66
  //
67
- fetchCuratedContractsz(hideUnMintable = false, overrideFunc = false) {
67
+ fetchCuratedContracts(hideUnMintable = false, overrideFunc = false) {
68
68
  return __awaiter(this, void 0, void 0, function* () {
69
69
  let url = `${this.baseUrl}/curated`;
70
70
  // Fetch using URL or override function
package/docs/bundle.js CHANGED
@@ -684212,7 +684212,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
684212
684212
  };
684213
684213
  Object.defineProperty(exports, "__esModule", { value: true });
684214
684214
  const utils_1 = require("./utils");
684215
- const SDK_VERSION = '1.4.2';
684215
+ const SDK_VERSION = '1.4.4';
684216
684216
  class EmblemVaultSDK {
684217
684217
  constructor(apiKey, baseUrl) {
684218
684218
  this.apiKey = apiKey;
@@ -684243,7 +684243,7 @@ class EmblemVaultSDK {
684243
684243
  }
684244
684244
  // ** Curated **
684245
684245
  //
684246
- fetchCuratedContractsz(hideUnMintable = false, overrideFunc = false) {
684246
+ fetchCuratedContracts(hideUnMintable = false, overrideFunc = false) {
684247
684247
  return __awaiter(this, void 0, void 0, function* () {
684248
684248
  let url = `${this.baseUrl}/curated`;
684249
684249
  // Fetch using URL or override function
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "emblem-vault-sdk",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -37,7 +37,7 @@ class EmblemVaultSDK {
37
37
 
38
38
  // ** Curated **
39
39
  //
40
- async fetchCuratedContractsz(hideUnMintable: boolean = false, overrideFunc: Function | boolean = false): Promise<CuratedCollectionsResponse> {
40
+ async fetchCuratedContracts(hideUnMintable: boolean = false, overrideFunc: Function | boolean = false): Promise<CuratedCollectionsResponse> {
41
41
  let url = `${this.baseUrl}/curated`;
42
42
  // Fetch using URL or override function
43
43
  let data = typeof overrideFunc === 'function' ? await overrideFunc() : await fetchData(url, this.apiKey);