@injectivelabs/sdk-ts 1.14.12-beta.5 → 1.14.12-beta.6

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.
@@ -0,0 +1,7 @@
1
+ import { Network } from '@injectivelabs/networks';
2
+ export declare class TokenPrice {
3
+ private restClient;
4
+ constructor(network: Network);
5
+ fetchUsdTokensPriceMap(): Promise<Record<string, number>>;
6
+ }
7
+ //# sourceMappingURL=TokenPrice.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TokenPrice.d.ts","sourceRoot":"","sources":["../../../src/service/TokenPrice.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAuB,MAAM,yBAAyB,CAAA;AAmCtE,qBAAa,UAAU;IACrB,OAAO,CAAC,UAAU,CAAgB;gBAEtB,OAAO,EAAE,OAAO;IAItB,sBAAsB;CAgB7B"}
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.TokenPrice = void 0;
13
+ const utils_1 = require("@injectivelabs/utils");
14
+ const networks_1 = require("@injectivelabs/networks");
15
+ const ASSET_PRICE_SERVICE_URL = 'https://k8s.mainnet.asset.injective.network/asset-price/v1';
16
+ const TESTNET_ASSET_PRICE_SERVICE_URL = 'https://k8s.testnet.asset.injective.network/asset-price/v1';
17
+ const DEVNET_ASSET_PRICE_SERVICE_URL = 'https://devnet.asset.injective.dev/asset-price/v1';
18
+ const getAssetMicroserviceEndpoint = (network = networks_1.Network.Mainnet) => {
19
+ if ((0, networks_1.isTestnet)(network)) {
20
+ return TESTNET_ASSET_PRICE_SERVICE_URL;
21
+ }
22
+ if ((0, networks_1.isDevnet)(network)) {
23
+ return DEVNET_ASSET_PRICE_SERVICE_URL;
24
+ }
25
+ return ASSET_PRICE_SERVICE_URL;
26
+ };
27
+ class TokenPrice {
28
+ constructor(network) {
29
+ this.restClient = new utils_1.HttpRestClient(getAssetMicroserviceEndpoint(network));
30
+ }
31
+ fetchUsdTokensPriceMap() {
32
+ return __awaiter(this, void 0, void 0, function* () {
33
+ const { data } = (yield this.restClient.get('denoms?withPrice=true'));
34
+ const tokenPriceMap = Object.values(data).reduce((prices, tokenWithPrice) => {
35
+ const id = tokenWithPrice.coingecko_id || tokenWithPrice.denom;
36
+ return Object.assign(Object.assign({}, prices), { [id.toLowerCase()]: tokenWithPrice.price.price });
37
+ }, {});
38
+ return tokenPriceMap;
39
+ });
40
+ }
41
+ }
42
+ exports.TokenPrice = TokenPrice;
43
+ //# sourceMappingURL=TokenPrice.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TokenPrice.js","sourceRoot":"","sources":["../../../src/service/TokenPrice.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,gDAAqD;AACrD,sDAAsE;AAgBtE,MAAM,uBAAuB,GAC3B,4DAA4D,CAAA;AAC9D,MAAM,+BAA+B,GACnC,4DAA4D,CAAA;AAC9D,MAAM,8BAA8B,GAClC,mDAAmD,CAAA;AAErD,MAAM,4BAA4B,GAAG,CAAC,UAAmB,kBAAO,CAAC,OAAO,EAAE,EAAE;IAC1E,IAAI,IAAA,oBAAS,EAAC,OAAO,CAAC,EAAE,CAAC;QACvB,OAAO,+BAA+B,CAAA;IACxC,CAAC;IAED,IAAI,IAAA,mBAAQ,EAAC,OAAO,CAAC,EAAE,CAAC;QACtB,OAAO,8BAA8B,CAAA;IACvC,CAAC;IAED,OAAO,uBAAuB,CAAA;AAChC,CAAC,CAAA;AAED,MAAa,UAAU;IAGrB,YAAY,OAAgB;QAC1B,IAAI,CAAC,UAAU,GAAG,IAAI,sBAAc,CAAC,4BAA4B,CAAC,OAAO,CAAC,CAAC,CAAA;IAC7E,CAAC;IAEK,sBAAsB;;YAC1B,MAAM,EAAE,IAAI,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAEnE,CAAA;YAED,MAAM,aAAa,GAA2B,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM,CACtE,CAAC,MAAM,EAAE,cAAc,EAAE,EAAE;gBACzB,MAAM,EAAE,GAAG,cAAc,CAAC,YAAY,IAAI,cAAc,CAAC,KAAK,CAAA;gBAE9D,uCAAY,MAAM,KAAE,CAAC,EAAE,CAAC,WAAW,EAAE,CAAC,EAAE,cAAc,CAAC,KAAK,CAAC,KAAK,IAAE;YACtE,CAAC,EACD,EAAE,CACH,CAAA;YAED,OAAO,aAAa,CAAA;QACtB,CAAC;KAAA;CACF;AAvBD,gCAuBC"}
@@ -1,2 +1,3 @@
1
+ export * from './TokenPrice';
1
2
  export * from './TokenFactoryStatic';
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/service/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/service/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,sBAAsB,CAAA"}
@@ -14,5 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./TokenPrice"), exports);
17
18
  __exportStar(require("./TokenFactoryStatic"), exports);
18
19
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/service/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAoC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/service/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA4B;AAC5B,uDAAoC"}
@@ -1,14 +1,14 @@
1
- export * from './constants';
2
- export * from './helpers';
3
- export * from './numbers';
4
- export * from './markets';
5
- export * from './pagination';
6
- export * from './address';
7
1
  export * from './utf8';
8
- export * from './crypto';
9
2
  export * from './buff';
10
3
  export * from './time';
11
4
  export * from './msgs';
12
- export * from './transaction';
13
5
  export * from './grpc';
6
+ export * from './crypto';
7
+ export * from './helpers';
8
+ export * from './numbers';
9
+ export * from './markets';
10
+ export * from './address';
11
+ export * from './constants';
12
+ export * from './pagination';
13
+ export * from './transaction';
14
14
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,cAAc,CAAA;AAC5B,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,eAAe,CAAA;AAC7B,cAAc,QAAQ,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA"}
@@ -14,17 +14,17 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./constants"), exports);
18
- __exportStar(require("./helpers"), exports);
19
- __exportStar(require("./numbers"), exports);
20
- __exportStar(require("./markets"), exports);
21
- __exportStar(require("./pagination"), exports);
22
- __exportStar(require("./address"), exports);
23
17
  __exportStar(require("./utf8"), exports);
24
- __exportStar(require("./crypto"), exports);
25
18
  __exportStar(require("./buff"), exports);
26
19
  __exportStar(require("./time"), exports);
27
20
  __exportStar(require("./msgs"), exports);
28
- __exportStar(require("./transaction"), exports);
29
21
  __exportStar(require("./grpc"), exports);
22
+ __exportStar(require("./crypto"), exports);
23
+ __exportStar(require("./helpers"), exports);
24
+ __exportStar(require("./numbers"), exports);
25
+ __exportStar(require("./markets"), exports);
26
+ __exportStar(require("./address"), exports);
27
+ __exportStar(require("./constants"), exports);
28
+ __exportStar(require("./pagination"), exports);
29
+ __exportStar(require("./transaction"), exports);
30
30
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA2B;AAC3B,4CAAyB;AACzB,4CAAyB;AACzB,4CAAyB;AACzB,+CAA4B;AAC5B,4CAAyB;AACzB,yCAAsB;AACtB,2CAAwB;AACxB,yCAAsB;AACtB,yCAAsB;AACtB,yCAAsB;AACtB,gDAA6B;AAC7B,yCAAsB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAsB;AACtB,yCAAsB;AACtB,yCAAsB;AACtB,yCAAsB;AACtB,yCAAsB;AACtB,2CAAwB;AACxB,4CAAyB;AACzB,4CAAyB;AACzB,4CAAyB;AACzB,4CAAyB;AACzB,8CAA2B;AAC3B,+CAA4B;AAC5B,gDAA6B"}
@@ -0,0 +1,7 @@
1
+ import { Network } from '@injectivelabs/networks';
2
+ export declare class TokenPrice {
3
+ private restClient;
4
+ constructor(network: Network);
5
+ fetchUsdTokensPriceMap(): Promise<Record<string, number>>;
6
+ }
7
+ //# sourceMappingURL=TokenPrice.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TokenPrice.d.ts","sourceRoot":"","sources":["../../../src/service/TokenPrice.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAuB,MAAM,yBAAyB,CAAA;AAmCtE,qBAAa,UAAU;IACrB,OAAO,CAAC,UAAU,CAAgB;gBAEtB,OAAO,EAAE,OAAO;IAItB,sBAAsB;CAgB7B"}
@@ -0,0 +1,29 @@
1
+ import { HttpRestClient } from '@injectivelabs/utils';
2
+ import { Network, isDevnet, isTestnet } from '@injectivelabs/networks';
3
+ const ASSET_PRICE_SERVICE_URL = 'https://k8s.mainnet.asset.injective.network/asset-price/v1';
4
+ const TESTNET_ASSET_PRICE_SERVICE_URL = 'https://k8s.testnet.asset.injective.network/asset-price/v1';
5
+ const DEVNET_ASSET_PRICE_SERVICE_URL = 'https://devnet.asset.injective.dev/asset-price/v1';
6
+ const getAssetMicroserviceEndpoint = (network = Network.Mainnet) => {
7
+ if (isTestnet(network)) {
8
+ return TESTNET_ASSET_PRICE_SERVICE_URL;
9
+ }
10
+ if (isDevnet(network)) {
11
+ return DEVNET_ASSET_PRICE_SERVICE_URL;
12
+ }
13
+ return ASSET_PRICE_SERVICE_URL;
14
+ };
15
+ export class TokenPrice {
16
+ restClient;
17
+ constructor(network) {
18
+ this.restClient = new HttpRestClient(getAssetMicroserviceEndpoint(network));
19
+ }
20
+ async fetchUsdTokensPriceMap() {
21
+ const { data } = (await this.restClient.get('denoms?withPrice=true'));
22
+ const tokenPriceMap = Object.values(data).reduce((prices, tokenWithPrice) => {
23
+ const id = tokenWithPrice.coingecko_id || tokenWithPrice.denom;
24
+ return { ...prices, [id.toLowerCase()]: tokenWithPrice.price.price };
25
+ }, {});
26
+ return tokenPriceMap;
27
+ }
28
+ }
29
+ //# sourceMappingURL=TokenPrice.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TokenPrice.js","sourceRoot":"","sources":["../../../src/service/TokenPrice.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAA;AAgBtE,MAAM,uBAAuB,GAC3B,4DAA4D,CAAA;AAC9D,MAAM,+BAA+B,GACnC,4DAA4D,CAAA;AAC9D,MAAM,8BAA8B,GAClC,mDAAmD,CAAA;AAErD,MAAM,4BAA4B,GAAG,CAAC,UAAmB,OAAO,CAAC,OAAO,EAAE,EAAE;IAC1E,IAAI,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC;QACvB,OAAO,+BAA+B,CAAA;IACxC,CAAC;IAED,IAAI,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC;QACtB,OAAO,8BAA8B,CAAA;IACvC,CAAC;IAED,OAAO,uBAAuB,CAAA;AAChC,CAAC,CAAA;AAED,MAAM,OAAO,UAAU;IACb,UAAU,CAAgB;IAElC,YAAY,OAAgB;QAC1B,IAAI,CAAC,UAAU,GAAG,IAAI,cAAc,CAAC,4BAA4B,CAAC,OAAO,CAAC,CAAC,CAAA;IAC7E,CAAC;IAED,KAAK,CAAC,sBAAsB;QAC1B,MAAM,EAAE,IAAI,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAEnE,CAAA;QAED,MAAM,aAAa,GAA2B,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM,CACtE,CAAC,MAAM,EAAE,cAAc,EAAE,EAAE;YACzB,MAAM,EAAE,GAAG,cAAc,CAAC,YAAY,IAAI,cAAc,CAAC,KAAK,CAAA;YAE9D,OAAO,EAAE,GAAG,MAAM,EAAE,CAAC,EAAE,CAAC,WAAW,EAAE,CAAC,EAAE,cAAc,CAAC,KAAK,CAAC,KAAK,EAAE,CAAA;QACtE,CAAC,EACD,EAAE,CACH,CAAA;QAED,OAAO,aAAa,CAAA;IACtB,CAAC;CACF"}
@@ -1,2 +1,3 @@
1
+ export * from './TokenPrice';
1
2
  export * from './TokenFactoryStatic';
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/service/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/service/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,sBAAsB,CAAA"}
@@ -1,2 +1,3 @@
1
+ export * from './TokenPrice';
1
2
  export * from './TokenFactoryStatic';
2
3
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/service/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/service/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,sBAAsB,CAAA"}
@@ -1,14 +1,14 @@
1
- export * from './constants';
2
- export * from './helpers';
3
- export * from './numbers';
4
- export * from './markets';
5
- export * from './pagination';
6
- export * from './address';
7
1
  export * from './utf8';
8
- export * from './crypto';
9
2
  export * from './buff';
10
3
  export * from './time';
11
4
  export * from './msgs';
12
- export * from './transaction';
13
5
  export * from './grpc';
6
+ export * from './crypto';
7
+ export * from './helpers';
8
+ export * from './numbers';
9
+ export * from './markets';
10
+ export * from './address';
11
+ export * from './constants';
12
+ export * from './pagination';
13
+ export * from './transaction';
14
14
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,cAAc,CAAA;AAC5B,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,eAAe,CAAA;AAC7B,cAAc,QAAQ,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA"}
@@ -1,14 +1,14 @@
1
- export * from './constants';
2
- export * from './helpers';
3
- export * from './numbers';
4
- export * from './markets';
5
- export * from './pagination';
6
- export * from './address';
7
1
  export * from './utf8';
8
- export * from './crypto';
9
2
  export * from './buff';
10
3
  export * from './time';
11
4
  export * from './msgs';
12
- export * from './transaction';
13
5
  export * from './grpc';
6
+ export * from './crypto';
7
+ export * from './helpers';
8
+ export * from './numbers';
9
+ export * from './markets';
10
+ export * from './address';
11
+ export * from './constants';
12
+ export * from './pagination';
13
+ export * from './transaction';
14
14
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,cAAc,CAAA;AAC5B,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,eAAe,CAAA;AAC7B,cAAc,QAAQ,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@injectivelabs/sdk-ts",
3
3
  "description": "SDK in TypeScript for building Injective applications in a browser, node, and react native environment.",
4
- "version": "1.14.12-beta.5",
4
+ "version": "1.14.12-beta.6",
5
5
  "sideEffects": false,
6
6
  "license": "Apache-2.0",
7
7
  "author": {
@@ -68,7 +68,7 @@
68
68
  "shx": "^0.3.2",
69
69
  "snakecase-keys": "^5.4.1"
70
70
  },
71
- "gitHead": "0a72c80e9df9592c8da8103c15cad8c4ea365cbe",
71
+ "gitHead": "6d60083d70fc18f1fc8e12bdb0af6ab96c4bec4a",
72
72
  "typedoc": {
73
73
  "entryPoint": "./src/index.ts",
74
74
  "readmeFile": "./README.md",