store-scrapper-js-common 1.0.144 → 1.0.145

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,6 @@
1
1
  import { ProcessProductCategoryDto } from './process-product-category.dto';
2
+ import { ProxyConfigDto } from './proxy-config.dto';
3
+ import { QueueConfigDto } from './queue-config.dto';
2
4
  import { StoreConfig } from './store-config.dto';
3
5
  import { TelegramQueueCommandDto } from './telegram-queue-command.dto';
4
- export { ProcessProductCategoryDto, TelegramQueueCommandDto, StoreConfig };
6
+ export { ProcessProductCategoryDto, TelegramQueueCommandDto, StoreConfig, QueueConfigDto, ProxyConfigDto, };
package/dist/dto/index.js CHANGED
@@ -1,8 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StoreConfig = exports.TelegramQueueCommandDto = exports.ProcessProductCategoryDto = void 0;
3
+ exports.ProxyConfigDto = exports.QueueConfigDto = exports.StoreConfig = exports.TelegramQueueCommandDto = exports.ProcessProductCategoryDto = void 0;
4
4
  const process_product_category_dto_1 = require("./process-product-category.dto");
5
5
  Object.defineProperty(exports, "ProcessProductCategoryDto", { enumerable: true, get: function () { return process_product_category_dto_1.ProcessProductCategoryDto; } });
6
+ const proxy_config_dto_1 = require("./proxy-config.dto");
7
+ Object.defineProperty(exports, "ProxyConfigDto", { enumerable: true, get: function () { return proxy_config_dto_1.ProxyConfigDto; } });
8
+ const queue_config_dto_1 = require("./queue-config.dto");
9
+ Object.defineProperty(exports, "QueueConfigDto", { enumerable: true, get: function () { return queue_config_dto_1.QueueConfigDto; } });
6
10
  const store_config_dto_1 = require("./store-config.dto");
7
11
  Object.defineProperty(exports, "StoreConfig", { enumerable: true, get: function () { return store_config_dto_1.StoreConfig; } });
8
12
  const telegram_queue_command_dto_1 = require("./telegram-queue-command.dto");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"/","sources":["dto/index.ts"],"names":[],"mappings":";;;AAAA,iFAA2E;AAIlE,0GAJA,wDAAyB,OAIA;AAHlC,yDAAiD;AAGY,4FAHpD,8BAAW,OAGoD;AAFxE,6EAAuE;AAEnC,wGAF3B,oDAAuB,OAE2B","sourcesContent":["import { ProcessProductCategoryDto } from './process-product-category.dto';\nimport { StoreConfig } from './store-config.dto';\nimport { TelegramQueueCommandDto } from './telegram-queue-command.dto';\n\nexport { ProcessProductCategoryDto, TelegramQueueCommandDto, StoreConfig };\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"/","sources":["dto/index.ts"],"names":[],"mappings":";;;AAAA,iFAA2E;AAOzE,0GAPO,wDAAyB,OAOP;AAN3B,yDAAoD;AAM+B,+FAN1E,iCAAc,OAM0E;AALjG,yDAAoD;AAKe,+FAL1D,iCAAc,OAK0D;AAJjF,yDAAiD;AAIK,4FAJ7C,8BAAW,OAI6C;AAHjE,6EAAuE;AAG1C,wGAHpB,oDAAuB,OAGoB","sourcesContent":["import { ProcessProductCategoryDto } from './process-product-category.dto';\nimport { ProxyConfigDto } from './proxy-config.dto';\nimport { QueueConfigDto } from './queue-config.dto';\nimport { StoreConfig } from './store-config.dto';\nimport { TelegramQueueCommandDto } from './telegram-queue-command.dto';\n\nexport {\n ProcessProductCategoryDto, TelegramQueueCommandDto, StoreConfig, QueueConfigDto, ProxyConfigDto,\n};\n"]}
@@ -1,4 +1,4 @@
1
- import { Keyword } from '../entities';
1
+ import { Keyword } from '../entities/keyword';
2
2
  export declare class ProcessProductCategoryDto {
3
3
  _id: string;
4
4
  name: string;
@@ -1 +1 @@
1
- {"version":3,"file":"process-product-category.dto.js","sourceRoot":"/","sources":["dto/process-product-category.dto.ts"],"names":[],"mappings":";;;AAEA,MAAa,yBAAyB;CAcrC;AAdD,8DAcC","sourcesContent":["import { Keyword } from '../entities';\n\nexport class ProcessProductCategoryDto {\n _id: string;\n\n name: string;\n\n category: string;\n\n categoryPath: string;\n\n sku: string;\n\n storeRef: string;\n\n categoryKeywords?: Keyword[];\n}\n"]}
1
+ {"version":3,"file":"process-product-category.dto.js","sourceRoot":"/","sources":["dto/process-product-category.dto.ts"],"names":[],"mappings":";;;AAEA,MAAa,yBAAyB;CAcrC;AAdD,8DAcC","sourcesContent":["import { Keyword } from '../entities/keyword';\n\nexport class ProcessProductCategoryDto {\n _id: string;\n\n name: string;\n\n category: string;\n\n categoryPath: string;\n\n sku: string;\n\n storeRef: string;\n\n categoryKeywords?: Keyword[];\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "store-scrapper-js-common",
3
- "version": "1.0.144",
3
+ "version": "1.0.145",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/dto/index.ts CHANGED
@@ -1,5 +1,9 @@
1
1
  import { ProcessProductCategoryDto } from './process-product-category.dto';
2
+ import { ProxyConfigDto } from './proxy-config.dto';
3
+ import { QueueConfigDto } from './queue-config.dto';
2
4
  import { StoreConfig } from './store-config.dto';
3
5
  import { TelegramQueueCommandDto } from './telegram-queue-command.dto';
4
6
 
5
- export { ProcessProductCategoryDto, TelegramQueueCommandDto, StoreConfig };
7
+ export {
8
+ ProcessProductCategoryDto, TelegramQueueCommandDto, StoreConfig, QueueConfigDto, ProxyConfigDto,
9
+ };
@@ -1,4 +1,4 @@
1
- import { Keyword } from '../entities';
1
+ import { Keyword } from '../entities/keyword';
2
2
 
3
3
  export class ProcessProductCategoryDto {
4
4
  _id: string;