store-scrapper-js-common 1.0.93 → 1.0.94
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
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"]}
|
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
|
};
|