@crawlee/memory-storage 3.0.0-alpha.34

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.
Files changed (69) hide show
  1. package/LICENSE.md +201 -0
  2. package/README.md +214 -0
  3. package/body-parser.d.ts +13 -0
  4. package/body-parser.d.ts.map +1 -0
  5. package/body-parser.js +65 -0
  6. package/body-parser.js.map +1 -0
  7. package/consts.d.ts +17 -0
  8. package/consts.d.ts.map +1 -0
  9. package/consts.js +22 -0
  10. package/consts.js.map +1 -0
  11. package/index.d.ts +2 -0
  12. package/index.d.ts.map +1 -0
  13. package/index.js +5 -0
  14. package/index.js.map +1 -0
  15. package/index.mjs +4 -0
  16. package/memory-storage.d.ts +29 -0
  17. package/memory-storage.d.ts.map +1 -0
  18. package/memory-storage.js +102 -0
  19. package/memory-storage.js.map +1 -0
  20. package/package.json +60 -0
  21. package/resource-clients/common/base-client.d.ts +8 -0
  22. package/resource-clients/common/base-client.d.ts.map +1 -0
  23. package/resource-clients/common/base-client.js +22 -0
  24. package/resource-clients/common/base-client.js.map +1 -0
  25. package/resource-clients/dataset-collection.d.ts +14 -0
  26. package/resource-clients/dataset-collection.d.ts.map +1 -0
  27. package/resource-clients/dataset-collection.js +60 -0
  28. package/resource-clients/dataset-collection.js.map +1 -0
  29. package/resource-clients/dataset.d.ts +42 -0
  30. package/resource-clients/dataset.d.ts.map +1 -0
  31. package/resource-clients/dataset.js +235 -0
  32. package/resource-clients/dataset.js.map +1 -0
  33. package/resource-clients/key-value-store-collection.d.ts +14 -0
  34. package/resource-clients/key-value-store-collection.d.ts.map +1 -0
  35. package/resource-clients/key-value-store-collection.js +60 -0
  36. package/resource-clients/key-value-store-collection.js.map +1 -0
  37. package/resource-clients/key-value-store.d.ts +36 -0
  38. package/resource-clients/key-value-store.d.ts.map +1 -0
  39. package/resource-clients/key-value-store.js +300 -0
  40. package/resource-clients/key-value-store.js.map +1 -0
  41. package/resource-clients/request-queue-collection.d.ts +14 -0
  42. package/resource-clients/request-queue-collection.d.ts.map +1 -0
  43. package/resource-clients/request-queue-collection.js +60 -0
  44. package/resource-clients/request-queue-collection.js.map +1 -0
  45. package/resource-clients/request-queue.d.ts +48 -0
  46. package/resource-clients/request-queue.d.ts.map +1 -0
  47. package/resource-clients/request-queue.js +353 -0
  48. package/resource-clients/request-queue.js.map +1 -0
  49. package/tsconfig.build.tsbuildinfo +1 -0
  50. package/utils.d.ts +44 -0
  51. package/utils.d.ts.map +1 -0
  52. package/utils.js +59 -0
  53. package/utils.js.map +1 -0
  54. package/workers/file-storage-worker-emulator.d.ts +5 -0
  55. package/workers/file-storage-worker-emulator.d.ts.map +1 -0
  56. package/workers/file-storage-worker-emulator.js +12 -0
  57. package/workers/file-storage-worker-emulator.js.map +1 -0
  58. package/workers/file-storage-worker.d.ts +2 -0
  59. package/workers/file-storage-worker.d.ts.map +1 -0
  60. package/workers/file-storage-worker.js +15 -0
  61. package/workers/file-storage-worker.js.map +1 -0
  62. package/workers/instance.d.ts +4 -0
  63. package/workers/instance.d.ts.map +1 -0
  64. package/workers/instance.js +35 -0
  65. package/workers/instance.js.map +1 -0
  66. package/workers/worker-utils.d.ts +9 -0
  67. package/workers/worker-utils.d.ts.map +1 -0
  68. package/workers/worker-utils.js +79 -0
  69. package/workers/worker-utils.js.map +1 -0
@@ -0,0 +1,353 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RequestQueueClient = void 0;
4
+ const shapeshift_1 = require("@sapphire/shapeshift");
5
+ const node_crypto_1 = require("node:crypto");
6
+ const node_path_1 = require("node:path");
7
+ const promises_1 = require("node:fs/promises");
8
+ const fs_extra_1 = require("fs-extra");
9
+ const consts_1 = require("../consts");
10
+ const utils_1 = require("../utils");
11
+ const base_client_1 = require("./common/base-client");
12
+ const instance_1 = require("../workers/instance");
13
+ const requestShape = shapeshift_1.s.object({
14
+ id: shapeshift_1.s.string,
15
+ url: shapeshift_1.s.string.url({ allowedProtocols: ['http:', 'https:'] }),
16
+ uniqueKey: shapeshift_1.s.string,
17
+ method: shapeshift_1.s.string.optional,
18
+ retryCount: shapeshift_1.s.number.int.optional,
19
+ handledAt: shapeshift_1.s.union(shapeshift_1.s.string, shapeshift_1.s.date.valid).optional,
20
+ }).passthrough;
21
+ const requestShapeWithoutId = requestShape.extend({
22
+ id: shapeshift_1.s.undefined,
23
+ });
24
+ const batchRequestShapeWithoutId = requestShapeWithoutId.array;
25
+ const requestOptionsShape = shapeshift_1.s.object({
26
+ forefront: shapeshift_1.s.boolean.optional,
27
+ });
28
+ class RequestQueueClient extends base_client_1.BaseClient {
29
+ constructor(options) {
30
+ super(options.id ?? (0, node_crypto_1.randomUUID)());
31
+ Object.defineProperty(this, "name", {
32
+ enumerable: true,
33
+ configurable: true,
34
+ writable: true,
35
+ value: void 0
36
+ });
37
+ Object.defineProperty(this, "createdAt", {
38
+ enumerable: true,
39
+ configurable: true,
40
+ writable: true,
41
+ value: new Date()
42
+ });
43
+ Object.defineProperty(this, "accessedAt", {
44
+ enumerable: true,
45
+ configurable: true,
46
+ writable: true,
47
+ value: new Date()
48
+ });
49
+ Object.defineProperty(this, "modifiedAt", {
50
+ enumerable: true,
51
+ configurable: true,
52
+ writable: true,
53
+ value: new Date()
54
+ });
55
+ Object.defineProperty(this, "handledRequestCount", {
56
+ enumerable: true,
57
+ configurable: true,
58
+ writable: true,
59
+ value: 0
60
+ });
61
+ Object.defineProperty(this, "pendingRequestCount", {
62
+ enumerable: true,
63
+ configurable: true,
64
+ writable: true,
65
+ value: 0
66
+ });
67
+ Object.defineProperty(this, "requestQueueDirectory", {
68
+ enumerable: true,
69
+ configurable: true,
70
+ writable: true,
71
+ value: void 0
72
+ });
73
+ Object.defineProperty(this, "requests", {
74
+ enumerable: true,
75
+ configurable: true,
76
+ writable: true,
77
+ value: new Map()
78
+ });
79
+ Object.defineProperty(this, "client", {
80
+ enumerable: true,
81
+ configurable: true,
82
+ writable: true,
83
+ value: void 0
84
+ });
85
+ this.name = options.name;
86
+ this.requestQueueDirectory = (0, node_path_1.resolve)(options.baseStorageDirectory, this.name ?? this.id);
87
+ this.client = options.client;
88
+ }
89
+ async get() {
90
+ const found = this.client.requestQueuesHandled.find((queue) => queue.id === this.id);
91
+ if (found) {
92
+ found.updateTimestamps(false);
93
+ return found.toRequestQueueInfo();
94
+ }
95
+ return undefined;
96
+ }
97
+ async update(newFields) {
98
+ // The validation is intentionally loose to prevent issues
99
+ // when swapping to a remote queue in production.
100
+ const parsed = shapeshift_1.s.object({
101
+ name: shapeshift_1.s.string.lengthGreaterThan(0).optional,
102
+ }).passthrough.parse(newFields);
103
+ const existingQueueById = this.client.requestQueuesHandled.find((queue) => queue.id === this.id);
104
+ if (!existingQueueById) {
105
+ this.throwOnNonExisting(consts_1.StorageTypes.RequestQueue);
106
+ }
107
+ // Skip if no changes
108
+ if (!parsed.name) {
109
+ return existingQueueById.toRequestQueueInfo();
110
+ }
111
+ // Check that name is not in use already
112
+ const existingQueueByName = this.client.requestQueuesHandled.find((queue) => queue.name?.toLowerCase() === parsed.name.toLowerCase());
113
+ if (existingQueueByName) {
114
+ this.throwOnDuplicateEntry(consts_1.StorageTypes.RequestQueue, 'name', parsed.name);
115
+ }
116
+ existingQueueById.name = parsed.name;
117
+ const previousDir = existingQueueById.requestQueueDirectory;
118
+ existingQueueById.requestQueueDirectory = (0, node_path_1.resolve)(this.client.requestQueuesDirectory, parsed.name ?? existingQueueById.name ?? existingQueueById.id);
119
+ await (0, fs_extra_1.move)(previousDir, existingQueueById.requestQueueDirectory, { overwrite: true });
120
+ // Update timestamps
121
+ existingQueueById.updateTimestamps(true);
122
+ return existingQueueById.toRequestQueueInfo();
123
+ }
124
+ async delete() {
125
+ const storeIndex = this.client.requestQueuesHandled.findIndex((queue) => queue.id === this.id);
126
+ if (storeIndex !== -1) {
127
+ const [oldClient] = this.client.requestQueuesHandled.splice(storeIndex, 1);
128
+ oldClient.pendingRequestCount = 0;
129
+ oldClient.requests.clear();
130
+ await (0, promises_1.rm)(oldClient.requestQueueDirectory, { recursive: true });
131
+ }
132
+ }
133
+ async listHead(options = {}) {
134
+ const { limit } = shapeshift_1.s.object({
135
+ limit: shapeshift_1.s.number.optional.default(100),
136
+ }).parse(options);
137
+ const existingQueueById = this.client.requestQueuesHandled.find((queue) => queue.id === this.id);
138
+ if (!existingQueueById) {
139
+ this.throwOnNonExisting(consts_1.StorageTypes.RequestQueue);
140
+ }
141
+ existingQueueById.updateTimestamps(false);
142
+ const items = [];
143
+ for (const request of existingQueueById.requests.values()) {
144
+ if (items.length === limit) {
145
+ break;
146
+ }
147
+ if (request.orderNo) {
148
+ items.push(request);
149
+ }
150
+ }
151
+ return {
152
+ limit,
153
+ hadMultipleClients: false,
154
+ queueModifiedAt: this.modifiedAt,
155
+ items: items.map(({ json }) => this._jsonToRequest(json)),
156
+ };
157
+ }
158
+ async addRequest(request, options = {}) {
159
+ requestShapeWithoutId.parse(request);
160
+ requestOptionsShape.parse(options);
161
+ const existingQueueById = this.client.requestQueuesHandled.find((queue) => queue.id === this.id);
162
+ if (!existingQueueById) {
163
+ this.throwOnNonExisting(consts_1.StorageTypes.RequestQueue);
164
+ }
165
+ const requestModel = this._createInternalRequest(request, options.forefront);
166
+ const existingRequestWithId = existingQueueById.requests.get(requestModel.id);
167
+ // We already have the request present, so we return information about it
168
+ if (existingRequestWithId) {
169
+ existingQueueById.updateTimestamps(false);
170
+ return {
171
+ requestId: existingRequestWithId.id,
172
+ wasAlreadyHandled: existingRequestWithId.orderNo === null,
173
+ wasAlreadyPresent: true,
174
+ };
175
+ }
176
+ existingQueueById.requests.set(requestModel.id, requestModel);
177
+ existingQueueById.pendingRequestCount += requestModel.orderNo === null ? 1 : 0;
178
+ existingQueueById.updateTimestamps(true);
179
+ existingQueueById.updateItems();
180
+ return {
181
+ requestId: requestModel.id,
182
+ // We return wasAlreadyHandled: false even though the request may
183
+ // have been added as handled, because that's how API behaves.
184
+ wasAlreadyHandled: false,
185
+ wasAlreadyPresent: false,
186
+ };
187
+ }
188
+ async batchAddRequests(requests, options = {}) {
189
+ batchRequestShapeWithoutId.parse(requests);
190
+ requestOptionsShape.parse(options);
191
+ const existingQueueById = this.client.requestQueuesHandled.find((queue) => queue.id === this.id);
192
+ if (!existingQueueById) {
193
+ this.throwOnNonExisting(consts_1.StorageTypes.RequestQueue);
194
+ }
195
+ const result = {
196
+ processedRequests: [],
197
+ unprocessedRequests: [],
198
+ };
199
+ for (const model of requests) {
200
+ const requestModel = this._createInternalRequest(model, options.forefront);
201
+ const existingRequestWithId = existingQueueById.requests.get(requestModel.id);
202
+ if (existingRequestWithId) {
203
+ result.processedRequests.push({
204
+ requestId: existingRequestWithId.id,
205
+ uniqueKey: existingRequestWithId.uniqueKey,
206
+ wasAlreadyHandled: existingRequestWithId.orderNo === null,
207
+ wasAlreadyPresent: true,
208
+ });
209
+ continue;
210
+ }
211
+ existingQueueById.requests.set(requestModel.id, requestModel);
212
+ existingQueueById.pendingRequestCount += requestModel.orderNo === null ? 1 : 0;
213
+ result.processedRequests.push({
214
+ requestId: requestModel.id,
215
+ uniqueKey: requestModel.uniqueKey,
216
+ // We return wasAlreadyHandled: false even though the request may
217
+ // have been added as handled, because that's how API behaves.
218
+ wasAlreadyHandled: false,
219
+ wasAlreadyPresent: false,
220
+ });
221
+ }
222
+ existingQueueById.updateTimestamps(true);
223
+ existingQueueById.updateItems();
224
+ return result;
225
+ }
226
+ async getRequest(id) {
227
+ shapeshift_1.s.string.parse(id);
228
+ const existingQueueById = this.client.requestQueuesHandled.find((queue) => queue.id === this.id);
229
+ if (!existingQueueById) {
230
+ this.throwOnNonExisting(consts_1.StorageTypes.RequestQueue);
231
+ }
232
+ existingQueueById.updateTimestamps(false);
233
+ const json = existingQueueById.requests.get(id)?.json;
234
+ return this._jsonToRequest(json);
235
+ }
236
+ async updateRequest(request, options = {}) {
237
+ requestShape.parse(request);
238
+ requestOptionsShape.parse(options);
239
+ const existingQueueById = this.client.requestQueuesHandled.find((queue) => queue.id === this.id);
240
+ if (!existingQueueById) {
241
+ this.throwOnNonExisting(consts_1.StorageTypes.RequestQueue);
242
+ }
243
+ const requestModel = this._createInternalRequest(request, options.forefront);
244
+ // First we need to check the existing request to be
245
+ // able to return information about its handled state.
246
+ const existingRequest = existingQueueById.requests.get(requestModel.id);
247
+ // Undefined means that the request is not present in the queue.
248
+ // We need to insert it, to behave the same as API.
249
+ if (!existingRequest) {
250
+ return this.addRequest(request, options);
251
+ }
252
+ // When updating the request, we need to make sure that
253
+ // the handled counts are updated correctly in all cases.
254
+ existingQueueById.requests.set(requestModel.id, requestModel);
255
+ let handledCountAdjustment = 0;
256
+ const isRequestHandledStateChanging = typeof existingRequest.orderNo !== typeof requestModel.orderNo;
257
+ const requestWasHandledBeforeUpdate = existingRequest.orderNo === null;
258
+ if (isRequestHandledStateChanging)
259
+ handledCountAdjustment += 1;
260
+ if (requestWasHandledBeforeUpdate)
261
+ handledCountAdjustment = -handledCountAdjustment;
262
+ existingQueueById.pendingRequestCount += handledCountAdjustment;
263
+ existingQueueById.updateTimestamps(true);
264
+ existingQueueById.updateItems();
265
+ return {
266
+ requestId: requestModel.id,
267
+ wasAlreadyHandled: requestWasHandledBeforeUpdate,
268
+ wasAlreadyPresent: true,
269
+ };
270
+ }
271
+ async deleteRequest(id) {
272
+ const existingQueueById = this.client.requestQueuesHandled.find((queue) => queue.id === this.id);
273
+ if (!existingQueueById) {
274
+ this.throwOnNonExisting(consts_1.StorageTypes.RequestQueue);
275
+ }
276
+ const request = existingQueueById.requests.get(id);
277
+ if (request) {
278
+ existingQueueById.requests.delete(id);
279
+ existingQueueById.pendingRequestCount -= request.orderNo ? 1 : 0;
280
+ existingQueueById.updateTimestamps(true);
281
+ existingQueueById.updateItems();
282
+ }
283
+ }
284
+ toRequestQueueInfo() {
285
+ return {
286
+ accessedAt: this.accessedAt,
287
+ createdAt: this.createdAt,
288
+ hadMultipleClients: false,
289
+ handledRequestCount: this.handledRequestCount,
290
+ id: this.id,
291
+ modifiedAt: this.modifiedAt,
292
+ name: this.name,
293
+ pendingRequestCount: this.pendingRequestCount,
294
+ stats: {},
295
+ totalRequestCount: this.requests.size,
296
+ userId: '1',
297
+ };
298
+ }
299
+ updateTimestamps(hasBeenModified) {
300
+ this.accessedAt = new Date();
301
+ if (hasBeenModified) {
302
+ this.modifiedAt = new Date();
303
+ }
304
+ const data = this.toRequestQueueInfo();
305
+ (0, instance_1.sendWorkerMessage)({
306
+ action: 'update-metadata',
307
+ data,
308
+ entityType: 'requestQueues',
309
+ entityDirectory: this.requestQueueDirectory,
310
+ id: this.name ?? this.id,
311
+ });
312
+ }
313
+ updateItems() {
314
+ (0, instance_1.sendWorkerMessage)({
315
+ action: 'update-entries',
316
+ data: [...this.requests.values()],
317
+ entityType: 'requestQueues',
318
+ entityDirectory: this.requestQueueDirectory,
319
+ id: this.name ?? this.id,
320
+ });
321
+ }
322
+ _jsonToRequest(requestJson) {
323
+ if (!requestJson)
324
+ return undefined;
325
+ const request = JSON.parse(requestJson);
326
+ return (0, utils_1.purgeNullsFromObject)(request);
327
+ }
328
+ _createInternalRequest(request, forefront) {
329
+ const orderNo = this._calculateOrderNo(request, forefront);
330
+ const id = (0, utils_1.uniqueKeyToRequestId)(request.uniqueKey);
331
+ if (request.id && request.id !== id) {
332
+ throw new Error('Request ID does not match its uniqueKey.');
333
+ }
334
+ const json = JSON.stringify({ ...request, id });
335
+ return {
336
+ id,
337
+ json,
338
+ method: request.method,
339
+ orderNo,
340
+ retryCount: request.retryCount ?? 0,
341
+ uniqueKey: request.uniqueKey,
342
+ url: request.url,
343
+ };
344
+ }
345
+ _calculateOrderNo(request, forefront) {
346
+ if (request.handledAt)
347
+ return null;
348
+ const timestamp = Date.now();
349
+ return forefront ? -timestamp : timestamp;
350
+ }
351
+ }
352
+ exports.RequestQueueClient = RequestQueueClient;
353
+ //# sourceMappingURL=request-queue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"request-queue.js","sourceRoot":"","sources":["../../src/resource-clients/request-queue.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@types/content-type/index.d.ts","../src/body-parser.ts","../src/consts.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../types/dist/utility-types.d.ts","../../types/dist/storages.d.ts","../../types/dist/index.d.ts","../../../node_modules/cheerio/node_modules/domelementtype/lib/index.d.ts","../../../node_modules/cheerio/node_modules/domhandler/lib/node.d.ts","../../../node_modules/cheerio/node_modules/domhandler/lib/index.d.ts","../../../node_modules/cheerio/node_modules/htmlparser2/lib/Tokenizer.d.ts","../../../node_modules/cheerio/node_modules/htmlparser2/lib/Parser.d.ts","../../../node_modules/cheerio/node_modules/htmlparser2/lib/FeedHandler.d.ts","../../../node_modules/domutils/node_modules/domhandler/lib/index.d.ts","../../../node_modules/dom-serializer/node_modules/domhandler/lib/index.d.ts","../../../node_modules/dom-serializer/lib/index.d.ts","../../../node_modules/domutils/lib/stringify.d.ts","../../../node_modules/domutils/lib/traversal.d.ts","../../../node_modules/domutils/lib/manipulation.d.ts","../../../node_modules/domutils/lib/querying.d.ts","../../../node_modules/domutils/node_modules/domelementtype/lib/index.d.ts","../../../node_modules/domutils/lib/legacy.d.ts","../../../node_modules/domutils/lib/helpers.d.ts","../../../node_modules/domutils/lib/feeds.d.ts","../../../node_modules/domutils/lib/index.d.ts","../../../node_modules/cheerio/node_modules/htmlparser2/lib/index.d.ts","../../../node_modules/cheerio/lib/options.d.ts","../../../node_modules/cheerio/lib/types.d.ts","../../../node_modules/cheerio/lib/api/attributes.d.ts","../../../node_modules/cheerio/lib/api/traversing.d.ts","../../../node_modules/cheerio/lib/api/manipulation.d.ts","../../../node_modules/cheerio/lib/api/css.d.ts","../../../node_modules/cheerio/lib/api/forms.d.ts","../../../node_modules/cheerio/lib/cheerio.d.ts","../../../node_modules/cheerio/lib/static.d.ts","../../../node_modules/cheerio/lib/load.d.ts","../../../node_modules/cheerio/lib/index.d.ts","../../utils/dist/internals/cheerio.d.ts","../../utils/dist/internals/extract-urls.d.ts","../../utils/dist/internals/general.d.ts","../../utils/dist/internals/memory-info.d.ts","../../utils/dist/internals/social.d.ts","../../utils/dist/internals/typedefs.d.ts","../../utils/dist/index.d.ts","../../../node_modules/@sapphire/shapeshift/dist/index.d.ts","../../../node_modules/@types/fs-extra/index.d.ts","../src/resource-clients/common/base-client.ts","../../../node_modules/@apify/log/log_consts.d.ts","../../../node_modules/@apify/log/logger_text.d.ts","../../../node_modules/@apify/log/logger.d.ts","../../../node_modules/@apify/log/log.d.ts","../../../node_modules/@apify/log/log_helpers.d.ts","../../../node_modules/@apify/log/logger_json.d.ts","../../../node_modules/@apify/log/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../src/resource-clients/key-value-store.ts","../src/resource-clients/request-queue.ts","../src/utils.ts","../src/workers/worker-utils.ts","../src/workers/file-storage-worker-emulator.ts","../src/workers/instance.ts","../src/resource-clients/dataset.ts","../src/resource-clients/dataset-collection.ts","../src/resource-clients/key-value-store-collection.ts","../src/resource-clients/request-queue-collection.ts","../src/memory-storage.ts","../src/index.ts","../src/workers/file-storage-worker.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/deep-equal/index.d.ts","../../../node_modules/@types/domhandler/index.d.ts","../../../node_modules/@types/domutils/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/htmlparser2/index.d.ts","../../../node_modules/@types/integer/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/diffLines.d.ts","../../../node_modules/jest-diff/build/printDiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash.merge/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/ps-tree/index.d.ts","../../../node_modules/@types/rimraf/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/stream-chain/index.d.ts","../../../node_modules/@types/stream-json/utils/Utf8Stream.d.ts","../../../node_modules/@types/stream-json/Parser.d.ts","../../../node_modules/@types/stream-json/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","2f93dda35dafec68ec217c9ce67f0f4fbbbb030c055ac312641565ad60dd7e26","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","f9748c9f1a914930d23a90ca4d1c34ce06c417e9bd36da5d1270485a8b8ff72a","a114775f0c32f9512a6c0cef92de083297296f22cfc7808a8c0bc1666426b905","8057c7533b42711488a3b7de155a03de59654cdc0427fea5292cbce5ea2f557c","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","e3b886bacdd1fbf1f72e654596c80a55c7bc1d10bdf464aaf52f45ecd243862f","c665d5c50c2573aefd98f0ffb12c5583e333ed94294ce6f144a4163a8c84f09b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"839e0b959028f5385ca8de7b9d9c00d71a5955d52d2c98cb3e488a626f7b90b3","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","945a841f9a591197154c85386bc5a1467d42d325104bb36db51bc566bbb240be","10c39ce1df102994b47d4bc0c71aa9a6aea76f4651a5ec51914431f50bc883a1",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","3fa48484c65913004d5abb5c0f917b61ea4684f32d05bb28c1ecfa5f05a9ed12","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a7971f9fb2a32ec7788ec6cda9d7a33c02023dfe9a62db2030ad1359649d8050","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"dd9ea469d1bfaf589c6a196275d35cb1aa14014707c2c46d920c7b921e8f5bca","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1503a452a67127e5c2da794d1c7c44344d5038373aae16c9b03ac964db159edd","46134eee247bfd238390e17cf6462b4cd5e8e7fb60fda4d0f993652406d31d7e","b10c381cab1be37759efa8552e24ee754709ceb6d883567db7419b86c47ef66f","1e8eedbb8b7edb7a1bc2927d052c4a9524829c355347469a05e5c4211701137a","cbe4c1c3102db917851a77fe8fce9f00365da63876e4f0822f4bb4bd954f5ef8","89c619a18be02d927a1e20ec41f19720dea7dbd701af152ae34223ee15ac9ecf","b6a6edd9ab7e96c06a66c5724a009ef8651a1a3a87bcada2517eeecd6d053309","b675b873d6f067aec865aefb806b20447936fb8e332fa84bb89647c2a3ea9155","d341d39f8b1f377b8a8e15a1fb71ddba23a3b44c761a79a7cc3439bf1c4e81cb","d97b371df0bb35cf998992854ce00b020d3cdb31fd935496fe1e87dccf202565","b6a6edd9ab7e96c06a66c5724a009ef8651a1a3a87bcada2517eeecd6d053309","b6a6edd9ab7e96c06a66c5724a009ef8651a1a3a87bcada2517eeecd6d053309","cd42b85de491c6f45316412509944303b0ce9a4838afda2fc334ef3dea19d946","133cfc5edfa490dd463782a1203094fa25361cbdb3880f8f42947d94ee5fb392","367803d09b357be61538d62e0a9f661d62a7e351df4e464de08c71841f4d8645","3742d984090f0e11aec15575beb7cf6dab0f138417d22f97ed5fd01d3be18c9e","c709d254b0331bbddfc49875d1e108efeb692642999ec3c700411b4c0f350657","cbe4c1c3102db917851a77fe8fce9f00365da63876e4f0822f4bb4bd954f5ef8","a0489458d155fe10da028f69927bca274e91ca25905c6b6ee0d3fc42cc655adb","a3d7e4a8270d1d3f98910e5b13eb2461730bd8b20301e3d03e51273582a68fb4","9ae6c86748316a4bf2c3bd4d03d73ec384bd60a4664a2194b9888e6d19ea387e","253f07c42090b6b2b06c978e2582aecb58abf0a5b02b75e2f03b65c9abb8ddd4","893f33b1a9a62f3c07cf80541f669edc7c25352e96ebd1401254472d088814ba","8c29e94e0392d876fd7370f964c3c5bac02ada82ec64d52aa75a496384e06bc2","2f918830600287eb40d3cac0590f2269f135af5268e0dda627e67a4d49b2b505","4385df868f0f65182d71809a0c043bcb33fa6efe3197e34c33f6ebfc994ee73a","026b4c7fbe0142530022ac03b5003c2f70f3dcbd36f08bdc9e9087abe84057b5","53ab01f003ff47dbe014e61a3a763467c8fe7f36ecb0845ed8e9d74a4675f444","5c55c42a3fa01f81bb3da26f1e5f23fe1f07650c6fb5d0a9bfaa6dae735f9c61","ae96e6cbe3bae4431ce7eb382b181e095fe79c79d56ee7ad088d70f96f36a862","15288d54988a4b0434b6eb58c6c42231afa7d015d19aa9da462264b7b5e30d22","5b4764e62abf7c9e42a4546087ef5d3402d01ad5bf41e11baee33f365e0d1579","95bd712328732811f3143259446e2c5e09dba93002b2a28910deefb60224898d","97079b6e56898eedc388a177d3b34c412e750a7ccbd4d677661258854ce10850","277c9cc531504bff8fbca69cbe0bb77195cca37ef3f6f3aa65e130873d74831d","862d0726089af66ebaa31b84cab8b8d564be852937dad58c619dc5d9cd2e0c35","d5485567e9d927f9e3ba32d7c2189fdb105b31e857a88f18ed7e936b2d408dd9","747961c7382576b629042d9f884b1893d40d85b52fb835a23240de8f072f6485","0d4cbd6dd5d065b5eb36f3df90b5cb7f0398e1a211888e194d512c865dfd1ca0","8919af7043f1f64fc064d8caf2935d1075cab0885e78652ca78aff2de745e846","a7b0a83f4975534ee44603218056e2ee3355580e7738aecb3d5cd8b95b3b98d8","205c71fc8f6117742e5308a60ff6c3203ab223ebf9208ff08e75c7cf1e9d9085","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","5d3444282081c4acb0d074bd494a052b963f0cbcabb4977a1285b5f8e7404ba1","4d3f39261556a865d92b0f8934aa83479e9599a5ffd78e645879a21eb3b3cb90","47911db0e858b929eda7ffedad7b28c26920725116d5dd278caef5a13008c448","e1de720b0fc1abf2446060388f379ab57b2c9f2ea8520e420ea1ecadb5591355","01f19d4d625d88ede956230742b8d59155c01dea1cdb485d5bc4450f2805f9a7","f80fec403c433edab34a5091264b1a63a2c3dc706a798f7904e3ae39747b4f73","2f66bae49036bc3349b817774c19c1392c7d2442ad612d4eb88441d2531afbab","55621c3e40dbd6637e7a551d2175424949d4245209339e076501ee355d521f0e","c757372a092924f5c16eaf11a1475b80b95bb4dae49fe3242d2ad908f97d5abe","2e79215736d4516f7c25820615537cdebbb400cc2a728a98e62b0c460aa5c784","a3e40a838ea1ca49e082b1d8db6a2d04201cad3833c4765ef8e6e78973e6e6fa","5e23e4e82b30ce73f1c2b252f4caa97e2e5c289cbd85420e137f2e08e9eec883","50a89c6b6f6cbbd4fe1684bb3ceee83801d302ecf71cf213ed9d0ae5d393594f","23a9fa0c1781182c3e0ab8d6b0f8922591cef4d80b45b6bc5602bef91e6adf24","211dd529d24de3bcef1a8a152bbe3f6fb1ad3ebc3c966b6230e194039f3ce866","71f6b1f257b345e2b9cc2e9913ade2ffda1126270cc083fe560d908e9023fddb","59d8ba32c658cd1862a3c35fce219edb490ceaf833f98ade4ce04a16d55226fd","72aae529e0b6e54cb753919ba79f883d3b861fc211ed7415c9025856ee680225","9bdc778a921be9455c2004e9ce4a2f116042865022b4b823173067757b5d386a","588b4b5bacbad4acf1b3a0acd1e11260672529baa6a53175a9b0ad404f373dc7","31c45e5734ac5dc72c36ab52ff4bb2681d841eb52a00f726a90728ac3149cbde","9a393f4aff43fd8daac78734b8be275e6af9f524b975457c0bb074835674fe00","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","2e345cb6511f4c4c60c274df6626c94f3182939034f06cdf414bfbccc584f822","1cffe8786c01eb10c7e098161bb46bb1e89f52b6b8019f67559de73d3a3a79e4","4930f33653f17265b6742cba4076f86919da3f1adb5dc90fa08108597af941a9","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","ccee5709337fb9eaa95a12ea0eb8565026fede38167069b005bc56db769c82ff","8b719b4b55a623ae36e2dc2c35e93cf0193e9fa8677329d92d121db50d01cef2","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"3fe15a491a792852283caeece8142bc7427a29c183d9fec8691d95a49c8932a1","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"a25713e4a4769ba11d2a1bc317250334968b0a892d3342d285a0e238c537af09","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","4ec9d340a4b31d571bafaf4e09e747793ad99fe57117cca8ecbac2abc1dcd3cb","f4cf5f0ad1cfb0ceebbe4fbe8aaf0aa728e899c99cc36ec6c0c4b8f6e8a84c83","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","fbf991f1f32c55c54a19c972fbd3e3fd0eab390c6b54fdc137136ab33d98eba9","d187d9f6f961a0af8c2e1e0f248a7273b44b2ffc6577da008f369e3e395b9abf","6cf46b4e0e07cf8352f8afad00f97eb3b40abc4b6df4b9681ad1fa303e74882f","289347c5d771f8c8646d9ea5b4e007a60b1947955bb54d2c905fb472c02e5e71","660fa40695c7ca19a59fd09d31d495d952eee946e445a2c455ec63f255ec3050","77a5c173bcffb453051d4b36454ff7928a091e4a0d1388346bd77c332b7cda09","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","b2d70a269840a9528db473ac7565442434333a05c1f66801a7a672e82beb903e"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"importsNotUsedAsValues":0,"module":1,"newLine":1,"noEmitHelpers":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","preserveConstEnums":true,"removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":true,"target":7,"useDefineForClassFields":true},"fileIdsList":[[98,149,150,151,152,153,154],[98,149,151],[98],[70,98,105,149,150],[98,149,150,151],[98,170],[98,105],[98,170,171,172,173,174],[98,170,172],[73,98,105,176],[70,73,97,98,105,178,179,180],[73,98,105],[98,183],[70,73,98,105,185,186],[98,177,186,187,189],[71,98,105],[70,71,98,105,191],[87,98,105,126,183,184],[98,196],[98,197],[98,202,207],[70,98,105],[98,223],[98,211,213,214,215,216,217,218,219,220,221,222,223],[98,211,212,214,215,216,217,218,219,220,221,222,223],[98,212,213,214,215,216,217,218,219,220,221,222,223],[98,211,212,213,215,216,217,218,219,220,221,222,223],[98,211,212,213,214,216,217,218,219,220,221,222,223],[98,211,212,213,214,215,217,218,219,220,221,222,223],[98,211,212,213,214,215,216,218,219,220,221,222,223],[98,211,212,213,214,215,216,217,219,220,221,222,223],[98,211,212,213,214,215,216,217,218,220,221,222,223],[98,211,212,213,214,215,216,217,218,219,221,222,223],[98,211,212,213,214,215,216,217,218,219,220,222,223],[98,211,212,213,214,215,216,217,218,219,220,221,223],[98,211,212,213,214,215,216,217,218,219,220,221,222],[55,98],[58,98],[59,64,98],[60,70,71,78,87,97,98],[60,61,70,78,98],[62,98],[63,64,71,79,98],[64,87,94,98],[65,67,70,78,98],[66,98],[67,68,98],[69,70,98],[70,98],[70,71,72,87,97,98],[70,71,72,87,98],[73,78,87,97,98],[70,71,73,74,78,87,94,97,98],[73,75,87,94,97,98],[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104],[70,76,98],[77,97,98],[67,70,78,87,98],[79,98],[80,98],[58,81,98],[82,96,98,102],[83,98],[84,98],[70,85,98],[85,86,98,100],[70,87,88,89,98],[87,89,98],[87,88,98],[90,98],[91,98],[70,92,93,98],[92,93,98],[64,78,94,98],[95,98],[78,96,98],[59,73,84,97,98],[64,98],[87,98,99],[98,100],[98,101],[59,64,70,72,81,87,97,98,100,102],[87,98,103],[73,87,98,105],[71,98,105,192],[98,231,270],[98,231,255,270],[98,270],[98,231],[98,231,256,270],[98,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269],[98,256,270],[73,98,105,188],[87,98,105],[87,98,273],[98,105,274],[87,98],[70,73,75,87,94,97,98,103,105],[98,278],[70,87,98,105],[98,111,135],[98,111,129,135],[98,111,128,129,130,131,132,133,134],[98,111,128,129,135,136,137],[98,105,111,128,129,135,136,137],[98,111,127],[98,111,128,138],[98,110],[98,109],[98,111,113],[98,112],[98,109,111,112,113,114,126],[98,111],[98,111,118,119,120,121,123,124,125],[98,109,111],[98,111,117],[98,200,203],[98,200,203,204,205],[98,202],[98,199,206],[98,201],[51,52,98],[51,98],[51,98,167],[51,80,98,108,145,146,157,158,162,163,164,165,166],[51,54,98],[51,80,98,108,146,162,163,168],[51,54,64,72,80,98,108,145,146,147,148,162,168],[51,80,98,108,146,157,162,168],[51,53,54,64,72,80,87,98,108,146,147,148,156,159,162,168],[51,80,98,108,146,158,162,168],[51,54,64,72,80,98,108,146,147,148,159,162,168],[51,54,64,98,108,146,155,157,158],[51,98,160],[51,98,102,159,160],[51,71,80,98,102,159,161],[51,72,80,98,147,155,159],[98,106,107],[98,105,106],[98,139,140,141,142,143,144],[98,138]],"referencedMap":[[155,1],[152,2],[149,3],[153,3],[151,4],[154,5],[150,2],[172,6],[170,3],[146,7],[175,8],[171,6],[173,9],[174,6],[177,10],[181,11],[176,12],[52,3],[182,3],[183,3],[184,13],[187,14],[190,15],[147,16],[192,17],[193,16],[194,18],[179,3],[195,3],[196,3],[197,19],[198,20],[208,21],[209,3],[210,3],[178,22],[224,23],[212,24],[213,25],[211,26],[214,27],[215,28],[216,29],[217,30],[218,31],[219,32],[220,33],[221,34],[222,35],[223,36],[156,3],[188,3],[191,3],[225,3],[55,37],[56,37],[58,38],[59,39],[60,40],[61,41],[62,42],[63,43],[64,44],[65,45],[66,46],[67,47],[68,47],[69,48],[70,49],[71,50],[72,51],[57,3],[104,3],[73,52],[74,53],[75,54],[105,55],[76,56],[77,57],[78,58],[79,59],[80,60],[81,61],[82,62],[83,63],[84,64],[85,65],[86,66],[87,67],[89,68],[88,69],[90,70],[91,71],[92,72],[93,73],[94,74],[95,75],[96,76],[97,77],[98,78],[99,79],[100,80],[101,81],[102,82],[103,83],[226,3],[227,3],[228,3],[229,3],[186,3],[185,3],[180,84],[230,85],[255,86],[256,87],[231,88],[234,88],[253,86],[254,86],[244,89],[243,89],[241,86],[236,86],[249,86],[247,86],[251,86],[235,86],[248,86],[252,86],[237,86],[238,86],[250,86],[232,86],[239,86],[240,86],[242,86],[246,86],[257,90],[245,86],[233,86],[270,91],[269,3],[264,90],[266,92],[265,90],[258,90],[259,90],[261,90],[263,90],[267,92],[268,92],[260,92],[262,92],[189,93],[271,3],[272,94],[274,95],[275,96],[273,97],[276,3],[277,98],[278,3],[279,99],[280,100],[199,3],[130,101],[133,101],[134,101],[132,102],[131,102],[135,103],[138,104],[137,105],[128,106],[136,107],[129,101],[109,3],[111,108],[110,109],[114,110],[113,111],[112,3],[127,112],[117,113],[116,108],[125,113],[124,113],[126,114],[123,115],[120,113],[121,113],[118,116],[119,113],[122,3],[115,108],[200,3],[204,117],[206,118],[205,117],[203,119],[207,120],[202,121],[201,3],[51,3],[11,3],[13,3],[12,3],[2,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[21,3],[3,3],[4,3],[25,3],[22,3],[23,3],[24,3],[26,3],[27,3],[28,3],[5,3],[29,3],[30,3],[31,3],[32,3],[6,3],[33,3],[34,3],[35,3],[36,3],[7,3],[41,3],[37,3],[38,3],[39,3],[40,3],[8,3],[45,3],[42,3],[43,3],[44,3],[46,3],[9,3],[47,3],[48,3],[49,3],[1,3],[10,3],[50,3],[53,122],[54,123],[168,124],[167,125],[148,126],[164,127],[163,128],[165,129],[157,130],[166,131],[158,132],[159,133],[161,134],[169,135],[162,136],[160,137],[108,138],[107,139],[106,3],[145,140],[139,141],[140,7],[141,12],[142,3],[143,3],[144,3]],"exportedModulesMap":[[155,1],[152,2],[149,3],[153,3],[151,4],[154,5],[150,2],[172,6],[170,3],[146,7],[175,8],[171,6],[173,9],[174,6],[177,10],[181,11],[176,12],[52,3],[182,3],[183,3],[184,13],[187,14],[190,15],[147,16],[192,17],[193,16],[194,18],[179,3],[195,3],[196,3],[197,19],[198,20],[208,21],[209,3],[210,3],[178,22],[224,23],[212,24],[213,25],[211,26],[214,27],[215,28],[216,29],[217,30],[218,31],[219,32],[220,33],[221,34],[222,35],[223,36],[156,3],[188,3],[191,3],[225,3],[55,37],[56,37],[58,38],[59,39],[60,40],[61,41],[62,42],[63,43],[64,44],[65,45],[66,46],[67,47],[68,47],[69,48],[70,49],[71,50],[72,51],[57,3],[104,3],[73,52],[74,53],[75,54],[105,55],[76,56],[77,57],[78,58],[79,59],[80,60],[81,61],[82,62],[83,63],[84,64],[85,65],[86,66],[87,67],[89,68],[88,69],[90,70],[91,71],[92,72],[93,73],[94,74],[95,75],[96,76],[97,77],[98,78],[99,79],[100,80],[101,81],[102,82],[103,83],[226,3],[227,3],[228,3],[229,3],[186,3],[185,3],[180,84],[230,85],[255,86],[256,87],[231,88],[234,88],[253,86],[254,86],[244,89],[243,89],[241,86],[236,86],[249,86],[247,86],[251,86],[235,86],[248,86],[252,86],[237,86],[238,86],[250,86],[232,86],[239,86],[240,86],[242,86],[246,86],[257,90],[245,86],[233,86],[270,91],[269,3],[264,90],[266,92],[265,90],[258,90],[259,90],[261,90],[263,90],[267,92],[268,92],[260,92],[262,92],[189,93],[271,3],[272,94],[274,95],[275,96],[273,97],[276,3],[277,98],[278,3],[279,99],[280,100],[199,3],[130,101],[133,101],[134,101],[132,102],[131,102],[135,103],[138,104],[137,105],[128,106],[136,107],[129,101],[109,3],[111,108],[110,109],[114,110],[113,111],[112,3],[127,112],[117,113],[116,108],[125,113],[124,113],[126,114],[123,115],[120,113],[121,113],[118,116],[119,113],[122,3],[115,108],[200,3],[204,117],[206,118],[205,117],[203,119],[207,120],[202,121],[201,3],[51,3],[11,3],[13,3],[12,3],[2,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[21,3],[3,3],[4,3],[25,3],[22,3],[23,3],[24,3],[26,3],[27,3],[28,3],[5,3],[29,3],[30,3],[31,3],[32,3],[6,3],[33,3],[34,3],[35,3],[36,3],[7,3],[41,3],[37,3],[38,3],[39,3],[40,3],[8,3],[45,3],[42,3],[43,3],[44,3],[46,3],[9,3],[47,3],[48,3],[49,3],[1,3],[10,3],[50,3],[53,122],[54,123],[168,124],[167,125],[148,126],[164,127],[163,128],[165,129],[157,130],[166,131],[158,132],[159,133],[161,134],[169,135],[162,136],[160,137],[108,138],[107,139],[106,3],[145,140],[139,141],[140,7],[141,12],[142,3],[143,3],[144,3]],"semanticDiagnosticsPerFile":[155,152,149,153,151,154,150,172,170,146,175,171,173,174,177,181,176,52,182,183,184,187,190,147,192,193,194,179,195,196,197,198,208,209,210,178,224,212,213,211,214,215,216,217,218,219,220,221,222,223,156,188,191,225,55,56,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,57,104,73,74,75,105,76,77,78,79,80,81,82,83,84,85,86,87,89,88,90,91,92,93,94,95,96,97,98,99,100,101,102,103,226,227,228,229,186,185,180,230,255,256,231,234,253,254,244,243,241,236,249,247,251,235,248,252,237,238,250,232,239,240,242,246,257,245,233,270,269,264,266,265,258,259,261,263,267,268,260,262,189,271,272,274,275,273,276,277,278,279,280,199,130,133,134,132,131,135,138,137,128,136,129,109,111,110,114,113,112,127,117,116,125,124,126,123,120,121,118,119,122,115,200,204,206,205,203,207,202,201,51,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,8,45,42,43,44,46,9,47,48,49,1,10,50,53,54,168,167,148,164,163,165,157,166,158,159,161,169,162,160,108,107,106,145,139,140,141,142,143,144]},"version":"4.6.4"}
package/utils.d.ts ADDED
@@ -0,0 +1,44 @@
1
+ import type * as storage from '@crawlee/types';
2
+ import { InternalKeyRecord } from './resource-clients/key-value-store';
3
+ import { InternalRequest } from './resource-clients/request-queue';
4
+ /**
5
+ * Removes all properties with a null value
6
+ * from the provided object.
7
+ */
8
+ export declare function purgeNullsFromObject<T>(object: T): T;
9
+ /**
10
+ * Creates a standard request ID (same as Platform).
11
+ */
12
+ export declare function uniqueKeyToRequestId(uniqueKey: string): string;
13
+ export declare function isBuffer(value: unknown): boolean;
14
+ export declare function isStream(value: unknown): boolean;
15
+ export declare const memoryStorageLog: import("@apify/log").Log;
16
+ export interface WorkerData {
17
+ datasetsDirectory: string;
18
+ keyValueStoresDirectory: string;
19
+ requestQueuesDirectory: string;
20
+ }
21
+ export declare type WorkerReceivedMessage = WorkerUpdateMetadataMessage | WorkerUpdateEntriesMessage;
22
+ export declare type WorkerUpdateMetadataMessage = MetadataUpdate<'datasets', storage.DatasetInfo> | MetadataUpdate<'keyValueStores', storage.KeyValueStoreInfo> | MetadataUpdate<'requestQueues', storage.RequestQueueInfo>;
23
+ export declare type WorkerUpdateEntriesMessage = EntriesUpdate<'datasets', [string, storage.Dictionary][]> | EntriesUpdate<'keyValueStores', KeyValueStoreItemData> | EntriesUpdate<'requestQueues', InternalRequest[]>;
24
+ declare type EntityType = 'datasets' | 'keyValueStores' | 'requestQueues';
25
+ interface MetadataUpdate<Type extends EntityType, DataType> {
26
+ entityType: Type;
27
+ id: string;
28
+ action: 'update-metadata';
29
+ entityDirectory: string;
30
+ data: DataType;
31
+ }
32
+ interface EntriesUpdate<Type extends EntityType, DataType> {
33
+ entityType: Type;
34
+ id: string;
35
+ action: 'update-entries';
36
+ entityDirectory: string;
37
+ data: DataType;
38
+ }
39
+ interface KeyValueStoreItemData {
40
+ action: 'set' | 'delete';
41
+ record: InternalKeyRecord;
42
+ }
43
+ export {};
44
+ //# sourceMappingURL=utils.d.ts.map
package/utils.d.ts.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAI/C,OAAO,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAC;AACvE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AAEnE;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,GAAG,CAAC,CAQpD;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAO9D;AAED,wBAAgB,QAAQ,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAYhD;AAED,wBAAgB,QAAQ,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAWhD;AAED,eAAO,MAAM,gBAAgB,0BAAgD,CAAC;AAE9E,MAAM,WAAW,UAAU;IACvB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,uBAAuB,EAAE,MAAM,CAAC;IAChC,sBAAsB,EAAE,MAAM,CAAC;CAClC;AAED,oBAAY,qBAAqB,GAAG,2BAA2B,GAAG,0BAA0B,CAAC;AAE7F,oBAAY,2BAA2B,GACjC,cAAc,CAAC,UAAU,EAAE,OAAO,CAAC,WAAW,CAAC,GAC/C,cAAc,CAAC,gBAAgB,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAC3D,cAAc,CAAC,eAAe,EAAE,OAAO,CAAC,gBAAgB,CAAC,CAAC;AAEhE,oBAAY,0BAA0B,GAChC,aAAa,CAAC,UAAU,EAAE,CAAC,MAAM,EAAE,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC,GACzD,aAAa,CAAC,gBAAgB,EAAE,qBAAqB,CAAC,GACtD,aAAa,CAAC,eAAe,EAAE,eAAe,EAAE,CAAC,CAAC;AAExD,aAAK,UAAU,GAAG,UAAU,GAAG,gBAAgB,GAAG,eAAe,CAAC;AAElE,UAAU,cAAc,CAAC,IAAI,SAAS,UAAU,EAAE,QAAQ;IACtD,UAAU,EAAE,IAAI,CAAC;IACjB,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,iBAAiB,CAAC;IAC1B,eAAe,EAAE,MAAM,CAAC;IACxB,IAAI,EAAE,QAAQ,CAAC;CAClB;AAED,UAAU,aAAa,CAAC,IAAI,SAAS,UAAU,EAAE,QAAQ;IACrD,UAAU,EAAE,IAAI,CAAC;IACjB,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,gBAAgB,CAAC;IACzB,eAAe,EAAE,MAAM,CAAC;IACxB,IAAI,EAAE,QAAQ,CAAC;CAClB;AAED,UAAU,qBAAqB;IAC3B,MAAM,EAAE,KAAK,GAAG,QAAQ,CAAC;IACzB,MAAM,EAAE,iBAAiB,CAAC;CAC7B"}
package/utils.js ADDED
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.memoryStorageLog = exports.isStream = exports.isBuffer = exports.uniqueKeyToRequestId = exports.purgeNullsFromObject = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const log_1 = tslib_1.__importDefault(require("@apify/log"));
6
+ const shapeshift_1 = require("@sapphire/shapeshift");
7
+ const node_crypto_1 = require("node:crypto");
8
+ const consts_1 = require("./consts");
9
+ /**
10
+ * Removes all properties with a null value
11
+ * from the provided object.
12
+ */
13
+ function purgeNullsFromObject(object) {
14
+ if (object && typeof object === 'object' && !Array.isArray(object)) {
15
+ for (const [key, value] of Object.entries(object)) {
16
+ if (value === null)
17
+ Reflect.deleteProperty(object, key);
18
+ }
19
+ }
20
+ return object;
21
+ }
22
+ exports.purgeNullsFromObject = purgeNullsFromObject;
23
+ /**
24
+ * Creates a standard request ID (same as Platform).
25
+ */
26
+ function uniqueKeyToRequestId(uniqueKey) {
27
+ const str = (0, node_crypto_1.createHash)('sha256')
28
+ .update(uniqueKey)
29
+ .digest('base64')
30
+ .replace(/(\+|\/|=)/g, '');
31
+ return str.length > consts_1.REQUEST_ID_LENGTH ? str.slice(0, consts_1.REQUEST_ID_LENGTH) : str;
32
+ }
33
+ exports.uniqueKeyToRequestId = uniqueKeyToRequestId;
34
+ ;
35
+ function isBuffer(value) {
36
+ try {
37
+ shapeshift_1.s.union(shapeshift_1.s.typedArray(), shapeshift_1.s.instance(ArrayBuffer), shapeshift_1.s.instance(Buffer)).parse(value);
38
+ return true;
39
+ }
40
+ catch {
41
+ return false;
42
+ }
43
+ }
44
+ exports.isBuffer = isBuffer;
45
+ function isStream(value) {
46
+ try {
47
+ shapeshift_1.s.object({
48
+ on: shapeshift_1.s.any,
49
+ pipe: shapeshift_1.s.any,
50
+ }).passthrough.parse(value);
51
+ return true;
52
+ }
53
+ catch {
54
+ return false;
55
+ }
56
+ }
57
+ exports.isStream = isStream;
58
+ exports.memoryStorageLog = log_1.default.child({ prefix: 'MemoryStorage' });
59
+ //# sourceMappingURL=utils.js.map
package/utils.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":";;;;AAAA,6DAAoC;AAEpC,qDAAyC;AACzC,6CAAyC;AACzC,qCAA6C;AAI7C;;;GAGG;AACH,SAAgB,oBAAoB,CAAI,MAAS;IAC7C,IAAI,MAAM,IAAI,OAAO,MAAM,KAAK,QAAQ,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;QAChE,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;YAC/C,IAAI,KAAK,KAAK,IAAI;gBAAE,OAAO,CAAC,cAAc,CAAC,MAAiC,EAAE,GAAG,CAAC,CAAC;SACtF;KACJ;IAED,OAAO,MAAM,CAAC;AAClB,CAAC;AARD,oDAQC;AAED;;GAEG;AACH,SAAgB,oBAAoB,CAAC,SAAiB;IAClD,MAAM,GAAG,GAAG,IAAA,wBAAU,EAAC,QAAQ,CAAC;SAC3B,MAAM,CAAC,SAAS,CAAC;SACjB,MAAM,CAAC,QAAQ,CAAC;SAChB,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;IAE/B,OAAO,GAAG,CAAC,MAAM,GAAG,0BAAiB,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE,0BAAiB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC;AAClF,CAAC;AAPD,oDAOC;AAAA,CAAC;AAEF,SAAgB,QAAQ,CAAC,KAAc;IACnC,IAAI;QACA,cAAC,CAAC,KAAK,CACH,cAAC,CAAC,UAAU,EAAE,EACd,cAAC,CAAC,QAAQ,CAAC,WAAW,CAAC,EACvB,cAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,CACrB,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;QAEf,OAAO,IAAI,CAAC;KACf;IAAC,MAAM;QACJ,OAAO,KAAK,CAAC;KAChB;AACL,CAAC;AAZD,4BAYC;AAED,SAAgB,QAAQ,CAAC,KAAc;IACnC,IAAI;QACA,cAAC,CAAC,MAAM,CAAC;YACL,EAAE,EAAE,cAAC,CAAC,GAAG;YACT,IAAI,EAAE,cAAC,CAAC,GAAG;SACd,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;QAE5B,OAAO,IAAI,CAAC;KACf;IAAC,MAAM;QACJ,OAAO,KAAK,CAAC;KAChB;AACL,CAAC;AAXD,4BAWC;AAEY,QAAA,gBAAgB,GAAG,aAAU,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,eAAe,EAAE,CAAC,CAAC"}
@@ -0,0 +1,5 @@
1
+ export declare class FileStorageWorkerEmulator {
2
+ postMessage(value: any): void;
3
+ terminate(): void;
4
+ }
5
+ //# sourceMappingURL=file-storage-worker-emulator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"file-storage-worker-emulator.d.ts","sourceRoot":"","sources":["../../src/workers/file-storage-worker-emulator.ts"],"names":[],"mappings":"AAEA,qBAAa,yBAAyB;IAClC,WAAW,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAI7B,SAAS,IAAI,IAAI;CACpB"}