@firestone-hs/reference-data 2.0.31 → 2.0.32

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.
@@ -1,4 +1,4 @@
1
- import { AllCardsService } from '../public-api';
1
+ import { AllCardsService } from './all-cards.service';
2
2
  export declare class AllCardsLocalService extends AllCardsService {
3
3
  private readonly cardsStr;
4
4
  constructor(cardsStr: string);
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AllCardsLocalService = void 0;
4
- const public_api_1 = require("../public-api");
5
- class AllCardsLocalService extends public_api_1.AllCardsService {
4
+ const all_cards_service_1 = require("./all-cards.service");
5
+ class AllCardsLocalService extends all_cards_service_1.AllCardsService {
6
6
  constructor(cardsStr) {
7
7
  super();
8
8
  this.cardsStr = cardsStr;
@@ -1 +1 @@
1
- {"version":3,"file":"all-cards-local.service.js","sourceRoot":"","sources":["../../src/services/all-cards-local.service.ts"],"names":[],"mappings":";;;AAAA,8CAAgD;AAEhD,MAAa,oBAAqB,SAAQ,4BAAe;IACxD,YAA6B,QAAgB;QAC5C,KAAK,EAAE,CAAC;QADoB,aAAQ,GAAR,QAAQ,CAAQ;IAE7C,CAAC;IAES,WAAW,CAAC,GAAW;QAChC,OAAO,IAAI,OAAO,CAAS,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YAC9C,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QACxB,CAAC,CAAC,CAAC;IACJ,CAAC;CACD;AAVD,oDAUC","sourcesContent":["import { AllCardsService } from '../public-api';\r\n\r\nexport class AllCardsLocalService extends AllCardsService {\r\n\tconstructor(private readonly cardsStr: string) {\r\n\t\tsuper();\r\n\t}\r\n\r\n\tprotected getCardsStr(url: string): Promise<string> {\r\n\t\treturn new Promise<string>((resolve, reject) => {\r\n\t\t\tresolve(this.cardsStr);\r\n\t\t});\r\n\t}\r\n}\r\n"]}
1
+ {"version":3,"file":"all-cards-local.service.js","sourceRoot":"","sources":["../../src/services/all-cards-local.service.ts"],"names":[],"mappings":";;;AAAA,2DAAsD;AAEtD,MAAa,oBAAqB,SAAQ,mCAAe;IACxD,YAA6B,QAAgB;QAC5C,KAAK,EAAE,CAAC;QADoB,aAAQ,GAAR,QAAQ,CAAQ;IAE7C,CAAC;IAES,WAAW,CAAC,GAAW;QAChC,OAAO,IAAI,OAAO,CAAS,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YAC9C,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QACxB,CAAC,CAAC,CAAC;IACJ,CAAC;CACD;AAVD,oDAUC","sourcesContent":["import { AllCardsService } from './all-cards.service';\r\n\r\nexport class AllCardsLocalService extends AllCardsService {\r\n\tconstructor(private readonly cardsStr: string) {\r\n\t\tsuper();\r\n\t}\r\n\r\n\tprotected getCardsStr(url: string): Promise<string> {\r\n\t\treturn new Promise<string>((resolve, reject) => {\r\n\t\t\tresolve(this.cardsStr);\r\n\t\t});\r\n\t}\r\n}\r\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestone-hs/reference-data",
3
- "version": "2.0.31",
3
+ "version": "2.0.32",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rm -rf dist && tsc",