store-scrapper-js-common 1.0.91 → 1.0.95
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/classes/index.d.ts +2 -1
- package/dist/classes/index.js +3 -1
- package/dist/classes/index.js.map +1 -1
- package/dist/dto/telegram-queue-command.dto.d.ts +1 -4
- package/dist/dto/telegram-queue-command.dto.js.map +1 -1
- package/dist/enums/index.d.ts +3 -1
- package/dist/enums/index.js +3 -1
- package/dist/enums/index.js.map +1 -1
- package/dist/enums/telegram-message-type.d.ts +4 -0
- package/dist/enums/telegram-message-type.js +3 -0
- package/dist/enums/telegram-message-type.js.map +1 -0
- package/dist/utils/index.d.ts +4 -1
- package/dist/utils/index.js +12 -1
- package/dist/utils/index.js.map +1 -1
- package/package.json +1 -1
- package/src/classes/index.ts +2 -1
- package/src/dto/telegram-queue-command.dto.ts +1 -5
- package/src/enums/index.ts +5 -1
- package/src/enums/telegram-message-type.ts +4 -0
- package/src/utils/index.ts +5 -1
package/dist/classes/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Command, getCommandsStep, createCommand, getNextSQSUrl, SQSCommandNames, SQSPersistenceName, SQSCommandName } from './command';
|
|
2
|
+
import { HttpRequest } from './http-request';
|
|
2
3
|
import { ObjectLiteral } from './object-literal';
|
|
3
4
|
import { Response, getResultFromResponse, ResponseInterface } from './response';
|
|
4
|
-
export { Command, getCommandsStep, createCommand, getNextSQSUrl, SQSCommandNames, SQSPersistenceName, SQSCommandName, ObjectLiteral, Response, getResultFromResponse, ResponseInterface, };
|
|
5
|
+
export { Command, getCommandsStep, createCommand, getNextSQSUrl, SQSCommandNames, SQSPersistenceName, SQSCommandName, ObjectLiteral, Response, getResultFromResponse, ResponseInterface, HttpRequest, };
|
package/dist/classes/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getResultFromResponse = exports.Response = exports.SQSCommandName = exports.SQSPersistenceName = exports.SQSCommandNames = exports.getNextSQSUrl = exports.createCommand = exports.getCommandsStep = exports.Command = void 0;
|
|
3
|
+
exports.HttpRequest = exports.getResultFromResponse = exports.Response = exports.SQSCommandName = exports.SQSPersistenceName = exports.SQSCommandNames = exports.getNextSQSUrl = exports.createCommand = exports.getCommandsStep = exports.Command = void 0;
|
|
4
4
|
const command_1 = require("./command");
|
|
5
5
|
Object.defineProperty(exports, "Command", { enumerable: true, get: function () { return command_1.Command; } });
|
|
6
6
|
Object.defineProperty(exports, "getCommandsStep", { enumerable: true, get: function () { return command_1.getCommandsStep; } });
|
|
@@ -9,6 +9,8 @@ Object.defineProperty(exports, "getNextSQSUrl", { enumerable: true, get: functio
|
|
|
9
9
|
Object.defineProperty(exports, "SQSCommandNames", { enumerable: true, get: function () { return command_1.SQSCommandNames; } });
|
|
10
10
|
Object.defineProperty(exports, "SQSPersistenceName", { enumerable: true, get: function () { return command_1.SQSPersistenceName; } });
|
|
11
11
|
Object.defineProperty(exports, "SQSCommandName", { enumerable: true, get: function () { return command_1.SQSCommandName; } });
|
|
12
|
+
const http_request_1 = require("./http-request");
|
|
13
|
+
Object.defineProperty(exports, "HttpRequest", { enumerable: true, get: function () { return http_request_1.HttpRequest; } });
|
|
12
14
|
const response_1 = require("./response");
|
|
13
15
|
Object.defineProperty(exports, "Response", { enumerable: true, get: function () { return response_1.Response; } });
|
|
14
16
|
Object.defineProperty(exports, "getResultFromResponse", { enumerable: true, get: function () { return response_1.getResultFromResponse; } });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"/","sources":["classes/index.ts"],"names":[],"mappings":";;;AAAA,uCAEmB;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"/","sources":["classes/index.ts"],"names":[],"mappings":";;;AAAA,uCAEmB;AAMjB,wFAPA,iBAAO,OAOA;AAAE,gGAPA,yBAAe,OAOA;AAAE,8FAPA,uBAAa,OAOA;AAAE,8FAPA,uBAAa,OAOA;AAAE,gGAPA,yBAAe,OAOA;AAAE,mGAPA,4BAAkB,OAOA;AAAE,+FAPA,wBAAc,OAOA;AAL7G,iDAA6C;AAOS,4FAP7C,0BAAW,OAO6C;AALjE,yCAAgF;AAK9E,yFALO,mBAAQ,OAKP;AAAE,sGALO,gCAAqB,OAKP","sourcesContent":["import {\n Command, getCommandsStep, createCommand, getNextSQSUrl, SQSCommandNames, SQSPersistenceName, SQSCommandName,\n} from './command';\nimport { HttpRequest } from './http-request';\nimport { ObjectLiteral } from './object-literal';\nimport { Response, getResultFromResponse, ResponseInterface } from './response';\n\nexport {\n Command, getCommandsStep, createCommand, getNextSQSUrl, SQSCommandNames, SQSPersistenceName, SQSCommandName,\n ObjectLiteral,\n Response, getResultFromResponse, ResponseInterface, HttpRequest,\n};\n"]}
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { ObjectLiteral } from '../classes';
|
|
2
2
|
import { TelegramQueueCommandEnum } from '../enums/telegram-queue-command.enum';
|
|
3
|
-
|
|
4
|
-
MESSAGE = "message",
|
|
5
|
-
IMAGE = "image"
|
|
6
|
-
}
|
|
3
|
+
import { TelegramMessageType } from '../enums/telegram-message-type';
|
|
7
4
|
export declare class TelegramQueueCommandDto {
|
|
8
5
|
message: string;
|
|
9
6
|
telegramChatId: string | number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"telegram-queue-command.dto.js","sourceRoot":"/","sources":["dto/telegram-queue-command.dto.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"telegram-queue-command.dto.js","sourceRoot":"/","sources":["dto/telegram-queue-command.dto.ts"],"names":[],"mappings":";;;AAIA,MAAa,uBAAuB;CAcnC;AAdD,0DAcC","sourcesContent":["import { ObjectLiteral } from '../classes';\nimport { TelegramQueueCommandEnum } from '../enums/telegram-queue-command.enum';\nimport { TelegramMessageType } from '../enums/telegram-message-type';\n\nexport class TelegramQueueCommandDto {\n message: string;\n\n telegramChatId: string | number;\n\n options?: { [key: string]: any };\n\n namedJob?: TelegramQueueCommandEnum;\n\n telegramClientId: string;\n\n type?: TelegramMessageType;\n\n imageOpts?: ObjectLiteral;\n}\n"]}
|
package/dist/enums/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { RequestTypeEnum } from './request-type.enum';
|
|
2
2
|
import { TelegramClientEnum } from './telegram-client.enum';
|
|
3
|
+
import { TelegramMessageType } from './telegram-message-type';
|
|
4
|
+
import { TelegramQueueCommandEnum } from './telegram-queue-command.enum';
|
|
3
5
|
import { TelegramQueueEnum } from './telegram-queue.enum';
|
|
4
|
-
export { RequestTypeEnum, TelegramClientEnum, TelegramQueueEnum };
|
|
6
|
+
export { RequestTypeEnum, TelegramClientEnum, TelegramQueueEnum, TelegramQueueCommandEnum, TelegramMessageType, };
|
package/dist/enums/index.js
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TelegramQueueEnum = exports.TelegramClientEnum = exports.RequestTypeEnum = void 0;
|
|
3
|
+
exports.TelegramQueueCommandEnum = exports.TelegramQueueEnum = exports.TelegramClientEnum = exports.RequestTypeEnum = void 0;
|
|
4
4
|
const request_type_enum_1 = require("./request-type.enum");
|
|
5
5
|
Object.defineProperty(exports, "RequestTypeEnum", { enumerable: true, get: function () { return request_type_enum_1.RequestTypeEnum; } });
|
|
6
6
|
const telegram_client_enum_1 = require("./telegram-client.enum");
|
|
7
7
|
Object.defineProperty(exports, "TelegramClientEnum", { enumerable: true, get: function () { return telegram_client_enum_1.TelegramClientEnum; } });
|
|
8
|
+
const telegram_queue_command_enum_1 = require("./telegram-queue-command.enum");
|
|
9
|
+
Object.defineProperty(exports, "TelegramQueueCommandEnum", { enumerable: true, get: function () { return telegram_queue_command_enum_1.TelegramQueueCommandEnum; } });
|
|
8
10
|
const telegram_queue_enum_1 = require("./telegram-queue.enum");
|
|
9
11
|
Object.defineProperty(exports, "TelegramQueueEnum", { enumerable: true, get: function () { return telegram_queue_enum_1.TelegramQueueEnum; } });
|
|
10
12
|
//# sourceMappingURL=index.js.map
|
package/dist/enums/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"/","sources":["enums/index.ts"],"names":[],"mappings":";;;AAAA,2DAAsD;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"/","sources":["enums/index.ts"],"names":[],"mappings":";;;AAAA,2DAAsD;AAOpD,gGAPO,mCAAe,OAOP;AANjB,iEAA4D;AAMzC,mGANV,yCAAkB,OAMU;AAJrC,+EAAyE;AAIf,yGAJjD,sDAAwB,OAIiD;AAHlF,+DAA0D;AAGnB,kGAH9B,uCAAiB,OAG8B","sourcesContent":["import { RequestTypeEnum } from './request-type.enum';\nimport { TelegramClientEnum } from './telegram-client.enum';\nimport { TelegramMessageType } from './telegram-message-type';\nimport { TelegramQueueCommandEnum } from './telegram-queue-command.enum';\nimport { TelegramQueueEnum } from './telegram-queue.enum';\n\nexport {\n RequestTypeEnum, TelegramClientEnum, TelegramQueueEnum, TelegramQueueCommandEnum, TelegramMessageType,\n};\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"telegram-message-type.js","sourceRoot":"/","sources":["enums/telegram-message-type.ts"],"names":[],"mappings":"","sourcesContent":["export const enum TelegramMessageType {\n MESSAGE = 'message',\n IMAGE = 'image',\n}\n"]}
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -3,4 +3,7 @@ import { findLastQuery } from './entity-queries-utils';
|
|
|
3
3
|
import { reverseString, removeNewLines, includesStringArray, getLastAfter, replaceMultipleSpacesByOne, removeIfEndsWith } from './string-utils';
|
|
4
4
|
import { isUrl, getHostname, getParam, getPathname } from './url-utils';
|
|
5
5
|
import { calculateAverage, roundNumber } from './number-utils';
|
|
6
|
-
|
|
6
|
+
import { hasElementInArray, isArrayEmpty, stringToArray } from './array-utils';
|
|
7
|
+
import { hasUpdateReason, getStoreName } from './product.utils';
|
|
8
|
+
import { formatDate, formatMoney, formatPct } from './string-formatter';
|
|
9
|
+
export { checkIfSamePrices, findLastQuery, replaceMultipleSpacesByOne, hasMeasurementUnitMultiplier, getPriceByMeasurementUnitMultiplier, removeIfEndsWith, getLastAfter, includesStringArray, removeNewLines, reverseString, getParam, getPathname, getHostname, isUrl, isValidPrice, getMinPrice, isCheaper, getMaxPrice, getPriceOperation, getAvgPrice, calculateAverage, roundNumber, removeZeroPrices, isArrayEmpty, hasElementInArray, stringToArray, hasUpdateReason, getStoreName, formatPct, formatDate, formatMoney, };
|
package/dist/utils/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.removeZeroPrices = exports.roundNumber = exports.calculateAverage = exports.getAvgPrice = exports.getPriceOperation = exports.getMaxPrice = exports.isCheaper = exports.getMinPrice = exports.isValidPrice = exports.isUrl = exports.getHostname = exports.getPathname = exports.getParam = exports.reverseString = exports.removeNewLines = exports.includesStringArray = exports.getLastAfter = exports.removeIfEndsWith = exports.getPriceByMeasurementUnitMultiplier = exports.hasMeasurementUnitMultiplier = exports.replaceMultipleSpacesByOne = exports.findLastQuery = exports.checkIfSamePrices = void 0;
|
|
3
|
+
exports.formatMoney = exports.formatDate = exports.formatPct = exports.getStoreName = exports.hasUpdateReason = exports.stringToArray = exports.hasElementInArray = exports.isArrayEmpty = exports.removeZeroPrices = exports.roundNumber = exports.calculateAverage = exports.getAvgPrice = exports.getPriceOperation = exports.getMaxPrice = exports.isCheaper = exports.getMinPrice = exports.isValidPrice = exports.isUrl = exports.getHostname = exports.getPathname = exports.getParam = exports.reverseString = exports.removeNewLines = exports.includesStringArray = exports.getLastAfter = exports.removeIfEndsWith = exports.getPriceByMeasurementUnitMultiplier = exports.hasMeasurementUnitMultiplier = exports.replaceMultipleSpacesByOne = exports.findLastQuery = exports.checkIfSamePrices = void 0;
|
|
4
4
|
const price_utils_1 = require("./price-utils");
|
|
5
5
|
Object.defineProperty(exports, "checkIfSamePrices", { enumerable: true, get: function () { return price_utils_1.checkIfSamePrices; } });
|
|
6
6
|
Object.defineProperty(exports, "isCheaper", { enumerable: true, get: function () { return price_utils_1.isCheaper; } });
|
|
@@ -29,4 +29,15 @@ Object.defineProperty(exports, "getPathname", { enumerable: true, get: function
|
|
|
29
29
|
const number_utils_1 = require("./number-utils");
|
|
30
30
|
Object.defineProperty(exports, "calculateAverage", { enumerable: true, get: function () { return number_utils_1.calculateAverage; } });
|
|
31
31
|
Object.defineProperty(exports, "roundNumber", { enumerable: true, get: function () { return number_utils_1.roundNumber; } });
|
|
32
|
+
const array_utils_1 = require("./array-utils");
|
|
33
|
+
Object.defineProperty(exports, "hasElementInArray", { enumerable: true, get: function () { return array_utils_1.hasElementInArray; } });
|
|
34
|
+
Object.defineProperty(exports, "isArrayEmpty", { enumerable: true, get: function () { return array_utils_1.isArrayEmpty; } });
|
|
35
|
+
Object.defineProperty(exports, "stringToArray", { enumerable: true, get: function () { return array_utils_1.stringToArray; } });
|
|
36
|
+
const product_utils_1 = require("./product.utils");
|
|
37
|
+
Object.defineProperty(exports, "hasUpdateReason", { enumerable: true, get: function () { return product_utils_1.hasUpdateReason; } });
|
|
38
|
+
Object.defineProperty(exports, "getStoreName", { enumerable: true, get: function () { return product_utils_1.getStoreName; } });
|
|
39
|
+
const string_formatter_1 = require("./string-formatter");
|
|
40
|
+
Object.defineProperty(exports, "formatDate", { enumerable: true, get: function () { return string_formatter_1.formatDate; } });
|
|
41
|
+
Object.defineProperty(exports, "formatMoney", { enumerable: true, get: function () { return string_formatter_1.formatMoney; } });
|
|
42
|
+
Object.defineProperty(exports, "formatPct", { enumerable: true, get: function () { return string_formatter_1.formatPct; } });
|
|
32
43
|
//# sourceMappingURL=index.js.map
|
package/dist/utils/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"/","sources":["utils/index.ts"],"names":[],"mappings":";;;AAAA,+CAGuB;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"/","sources":["utils/index.ts"],"names":[],"mappings":";;;AAAA,+CAGuB;AAiBrB,kGAnBA,+BAAiB,OAmBA;AAE8B,0FArB5B,uBAAS,OAqB4B;AAAtB,4FArBJ,yBAAW,OAqBI;AAAzB,6FArBuB,0BAAY,OAqBvB;AAA0D,4FArBjC,yBAAW,OAqBiC;AAA3C,4FArBY,yBAAW,OAqBZ;AAAE,kGArBY,+BAAiB,OAqBZ;AAC3E,iGAtByF,8BAAgB,OAsBzF;AAHiC,6GAlB9D,0CAA4B,OAkB8D;AAAE,oHAlB9D,iDAAmC,OAkB8D;AAhBjI,iEAAuD;AAgBlC,8FAhBZ,oCAAa,OAgBY;AAflC,iDAGwB;AAa+C,8FAfrE,4BAAa,OAeqE;AAA7B,+FAftC,6BAAc,OAesC;AAAnC,oGAfD,kCAAmB,OAeC;AAAjC,6FAfkC,2BAAY,OAelC;AADI,2GAdgC,yCAA0B,OAchC;AAC5D,iGAf8F,+BAAgB,OAe9F;AAZlB,2CAEqB;AAWN,sFAZb,iBAAK,OAYa;AAAlB,4FAZO,uBAAW,OAYP;AADyE,yFAXhE,oBAAQ,OAWgE;AAAE,4FAXhE,uBAAW,OAWgE;AAT3G,iDAEwB;AAQiF,iGATvG,+BAAgB,OASuG;AACvH,4FAVkB,0BAAW,OAUlB;AARb,+CAA+E;AAQhC,kGARtC,+BAAiB,OAQsC;AAA/B,6FARL,0BAAY,OAQK;AAAqB,8FARxB,2BAAa,OAQwB;AAP/E,mDAAgE;AAOiB,gGAPxE,+BAAe,OAOwE;AAAE,6FAPxE,4BAAY,OAOwE;AAN9G,yDAAwE;AAO3D,2FAPJ,6BAAU,OAOI;AAAE,4FAPJ,8BAAW,OAOI;AAAlC,0FAPgC,4BAAS,OAOhC","sourcesContent":["import {\n checkIfSamePrices, isCheaper, getMinPrice, isValidPrice, getAvgPrice, getMaxPrice, getPriceOperation, removeZeroPrices,\n hasMeasurementUnitMultiplier, getPriceByMeasurementUnitMultiplier,\n} from './price-utils';\nimport { findLastQuery } from './entity-queries-utils';\nimport {\n reverseString, removeNewLines, includesStringArray, getLastAfter, replaceMultipleSpacesByOne, removeIfEndsWith,\n}\n from './string-utils';\nimport {\n isUrl, getHostname, getParam, getPathname,\n} from './url-utils';\nimport {\n calculateAverage, roundNumber,\n} from './number-utils';\nimport { hasElementInArray, isArrayEmpty, stringToArray } from './array-utils';\nimport { hasUpdateReason, getStoreName } from './product.utils';\nimport { formatDate, formatMoney, formatPct } from './string-formatter';\n\nexport {\n checkIfSamePrices, findLastQuery, replaceMultipleSpacesByOne, hasMeasurementUnitMultiplier, getPriceByMeasurementUnitMultiplier,\n removeIfEndsWith, getLastAfter, includesStringArray, removeNewLines, reverseString, getParam, getPathname,\n getHostname, isUrl, isValidPrice, getMinPrice, isCheaper, getMaxPrice, getPriceOperation, getAvgPrice, calculateAverage,\n roundNumber, removeZeroPrices, isArrayEmpty, hasElementInArray, stringToArray, hasUpdateReason, getStoreName,\n formatPct, formatDate, formatMoney,\n};\n"]}
|
package/package.json
CHANGED
package/src/classes/index.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Command, getCommandsStep, createCommand, getNextSQSUrl, SQSCommandNames, SQSPersistenceName, SQSCommandName,
|
|
3
3
|
} from './command';
|
|
4
|
+
import { HttpRequest } from './http-request';
|
|
4
5
|
import { ObjectLiteral } from './object-literal';
|
|
5
6
|
import { Response, getResultFromResponse, ResponseInterface } from './response';
|
|
6
7
|
|
|
7
8
|
export {
|
|
8
9
|
Command, getCommandsStep, createCommand, getNextSQSUrl, SQSCommandNames, SQSPersistenceName, SQSCommandName,
|
|
9
10
|
ObjectLiteral,
|
|
10
|
-
Response, getResultFromResponse, ResponseInterface,
|
|
11
|
+
Response, getResultFromResponse, ResponseInterface, HttpRequest,
|
|
11
12
|
};
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
import { ObjectLiteral } from '../classes';
|
|
2
2
|
import { TelegramQueueCommandEnum } from '../enums/telegram-queue-command.enum';
|
|
3
|
-
|
|
4
|
-
export const enum TelegramMessageType {
|
|
5
|
-
MESSAGE = 'message',
|
|
6
|
-
IMAGE = 'image',
|
|
7
|
-
}
|
|
3
|
+
import { TelegramMessageType } from '../enums/telegram-message-type';
|
|
8
4
|
|
|
9
5
|
export class TelegramQueueCommandDto {
|
|
10
6
|
message: string;
|
package/src/enums/index.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { RequestTypeEnum } from './request-type.enum';
|
|
2
2
|
import { TelegramClientEnum } from './telegram-client.enum';
|
|
3
|
+
import { TelegramMessageType } from './telegram-message-type';
|
|
4
|
+
import { TelegramQueueCommandEnum } from './telegram-queue-command.enum';
|
|
3
5
|
import { TelegramQueueEnum } from './telegram-queue.enum';
|
|
4
6
|
|
|
5
|
-
export {
|
|
7
|
+
export {
|
|
8
|
+
RequestTypeEnum, TelegramClientEnum, TelegramQueueEnum, TelegramQueueCommandEnum, TelegramMessageType,
|
|
9
|
+
};
|
package/src/utils/index.ts
CHANGED
|
@@ -13,10 +13,14 @@ import {
|
|
|
13
13
|
import {
|
|
14
14
|
calculateAverage, roundNumber,
|
|
15
15
|
} from './number-utils';
|
|
16
|
+
import { hasElementInArray, isArrayEmpty, stringToArray } from './array-utils';
|
|
17
|
+
import { hasUpdateReason, getStoreName } from './product.utils';
|
|
18
|
+
import { formatDate, formatMoney, formatPct } from './string-formatter';
|
|
16
19
|
|
|
17
20
|
export {
|
|
18
21
|
checkIfSamePrices, findLastQuery, replaceMultipleSpacesByOne, hasMeasurementUnitMultiplier, getPriceByMeasurementUnitMultiplier,
|
|
19
22
|
removeIfEndsWith, getLastAfter, includesStringArray, removeNewLines, reverseString, getParam, getPathname,
|
|
20
23
|
getHostname, isUrl, isValidPrice, getMinPrice, isCheaper, getMaxPrice, getPriceOperation, getAvgPrice, calculateAverage,
|
|
21
|
-
roundNumber, removeZeroPrices,
|
|
24
|
+
roundNumber, removeZeroPrices, isArrayEmpty, hasElementInArray, stringToArray, hasUpdateReason, getStoreName,
|
|
25
|
+
formatPct, formatDate, formatMoney,
|
|
22
26
|
};
|