From 75d748038314af3dc080e768cd8c163814097cba Mon Sep 17 00:00:00 2001 From: Josef Prochazka Date: Fri, 21 Nov 2025 13:39:27 +0100 Subject: [PATCH 1/2] Add `StatusMessageWatcher` --- .github/workflows/check.yaml | 6 +- .github/workflows/docs.yaml | 2 +- .github/workflows/pre_release.yaml | 2 +- .github/workflows/publish_to_npm.yaml | 2 +- .github/workflows/release.yaml | 4 +- CHANGELOG.md | 12 +- package-lock.json | 27 +- package.json | 7 +- rsbuild.config.ts | 2 + src/http_client.ts | 44 +- src/resource_clients/actor.ts | 20 +- src/resource_clients/log.ts | 57 + src/resource_clients/run.ts | 49 +- test/actors.test.js | 91 +- test/mock_server/test_utils.js | 8 +- test/runs.test.js | 78 +- .../version-2/api-packages.json | 2 +- .../versioned_docs/version-2/api-typedoc.json | 19824 +++++++++++----- 18 files changed, 14596 insertions(+), 5641 deletions(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 0a6f80ba..305c0832 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -33,7 +33,7 @@ jobs: access_token: ${{ github.token }} - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v6 @@ -53,7 +53,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Use Node.js 22 uses: actions/setup-node@v6 with: @@ -72,7 +72,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Source code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Use Node.js 22 uses: actions/setup-node@v6 diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index de68b0f0..1d68678d 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }} diff --git a/.github/workflows/pre_release.yaml b/.github/workflows/pre_release.yaml index e41bc6a5..cc28d5cc 100644 --- a/.github/workflows/pre_release.yaml +++ b/.github/workflows/pre_release.yaml @@ -48,7 +48,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }} diff --git a/.github/workflows/publish_to_npm.yaml b/.github/workflows/publish_to_npm.yaml index 141c11a2..f94dccd2 100644 --- a/.github/workflows/publish_to_npm.yaml +++ b/.github/workflows/publish_to_npm.yaml @@ -25,7 +25,7 @@ jobs: name: Publish to NPM runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ inputs.ref }} - name: Use Node.js 22 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 41cfef2e..4d2fba80 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -55,7 +55,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }} @@ -114,7 +114,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.repository.default_branch }} token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index a7399608..740e2c0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,11 +3,20 @@ All notable changes to this project will be documented in this file. -## 2.19.1 - **not yet released** +## 2.20.1 - **not yet released** + + + +## [2.20.0](https://github.com/apify/apify-client-js/releases/tag/v2.20.0) (2025-11-20) ### 🚀 Features - Add redirected actor logs ([#769](https://github.com/apify/apify-client-js/pull/769)) ([a7f4233](https://github.com/apify/apify-client-js/commit/a7f42333796b294266dd7950a2ecf47fa504373c)) by [@Pijukatel](https://github.com/Pijukatel) +- Replace `agentkeepalive` with native Node.js HTTP agents for proxy support ([#788](https://github.com/apify/apify-client-js/pull/788)) ([7d2be0f](https://github.com/apify/apify-client-js/commit/7d2be0f832a9cba2f7ada14fa80f66e6ea50b944)) by [@tducret](https://github.com/tducret) + +### 🐛 Bug Fixes + +- Actor start and run options and doc ([#785](https://github.com/apify/apify-client-js/pull/785)) ([61f91e5](https://github.com/apify/apify-client-js/commit/61f91e5d2bad1c622a40a11d0d321443e68c4540)) by [@michael-apify](https://github.com/michael-apify) ### ⚡ Performance @@ -15,7 +24,6 @@ All notable changes to this project will be documented in this file. - Don't bundle `node:crypto` in the browser bundle ([#782](https://github.com/apify/apify-client-js/pull/782)) ([72a1d3c](https://github.com/apify/apify-client-js/commit/72a1d3c154b1db1e3b6f89b69a0593e44bc5e062)) by [@barjin](https://github.com/barjin) - ## [2.19.0](https://github.com/apify/apify-client-js/releases/tag/v2.19.0) (2025-10-20) ### 🚀 Features diff --git a/package-lock.json b/package-lock.json index 321a39dc..3a19a416 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,19 +1,18 @@ { "name": "apify-client", - "version": "2.19.1", + "version": "2.20.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "apify-client", - "version": "2.19.1", + "version": "2.20.1", "license": "Apache-2.0", "dependencies": { "@apify/consts": "^2.42.0", "@apify/log": "^2.2.6", "@apify/utilities": "^2.23.2", "@crawlee/types": "^3.3.0", - "agentkeepalive": "^4.2.1", "ansi-colors": "^4.1.1", "async-retry": "^1.3.3", "axios": "^1.6.7", @@ -4472,18 +4471,6 @@ "node": ">= 14" } }, - "node_modules/agentkeepalive": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.6.0.tgz", - "integrity": "sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==", - "license": "MIT", - "dependencies": { - "humanize-ms": "^1.2.1" - }, - "engines": { - "node": ">= 8.0.0" - } - }, "node_modules/ajv": { "version": "8.17.1", "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", @@ -8856,15 +8843,6 @@ "node": ">=10.17.0" } }, - "node_modules/humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", - "license": "MIT", - "dependencies": { - "ms": "^2.0.0" - } - }, "node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", @@ -10940,6 +10918,7 @@ "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, "license": "MIT" }, "node_modules/nanoid": { diff --git a/package.json b/package.json index b737c3f1..18d55e45 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "apify-client", - "version": "2.19.1", + "version": "2.20.1", "description": "Apify API client for JavaScript", "main": "dist/index.js", "module": "dist/index.mjs", @@ -43,10 +43,6 @@ "url": "https://github.com/apify/apify-client-js/issues" }, "homepage": "https://docs.apify.com/api/client/js/", - "files": [ - "dist", - "!dist/*.tsbuildinfo" - ], "scripts": { "build": "npm run clean && npm run build:node && npm run build:browser", "postbuild": "gen-esm-wrapper dist/index.js dist/index.mjs", @@ -66,7 +62,6 @@ "@apify/log": "^2.2.6", "@apify/utilities": "^2.23.2", "@crawlee/types": "^3.3.0", - "agentkeepalive": "^4.2.1", "ansi-colors": "^4.1.1", "async-retry": "^1.3.3", "axios": "^1.6.7", diff --git a/rsbuild.config.ts b/rsbuild.config.ts index b83bd377..e3b7a5b5 100644 --- a/rsbuild.config.ts +++ b/rsbuild.config.ts @@ -31,6 +31,8 @@ export default defineConfig({ externals: { 'node:util': 'node:util', 'node:zlib': 'node:zlib', + 'node:http': 'node:http', + 'node:https': 'node:https', crypto: 'node:crypto', }, }, diff --git a/src/http_client.ts b/src/http_client.ts index d8dbb9ba..539cd499 100644 --- a/src/http_client.ts +++ b/src/http_client.ts @@ -1,6 +1,7 @@ +import http from 'node:http'; +import https from 'node:https'; import os from 'node:os'; -import KeepAliveAgent from 'agentkeepalive'; import type { RetryFunction } from 'async-retry'; import retry from 'async-retry'; import type { AxiosError, AxiosInstance, AxiosRequestConfig, AxiosResponse, InternalAxiosRequestConfig } from 'axios'; @@ -32,9 +33,9 @@ export class HttpClient { timeoutMillis: number; - httpAgent?: KeepAliveAgent; + httpAgent?: http.Agent; - httpsAgent?: KeepAliveAgent.HttpsAgent; + httpsAgent?: https.Agent; axios: AxiosInstance; @@ -53,16 +54,37 @@ export class HttpClient { if (isNode()) { // We want to keep sockets alive for better performance. - // It's important to set the user's timeout also here and not only - // on the axios instance, because even though this timeout - // is for inactive sockets, sometimes the platform would take - // long to process requests and the socket would time-out - // while waiting for the response. - const agentOpts = { + // Enhanced agent configuration based on agentkeepalive best practices: + // - Nagle's algorithm disabled for lower latency + // - Free socket timeout to prevent socket leaks + // - LIFO scheduling to reuse recent sockets + // - Socket TTL for connection freshness + const agentOptions: http.AgentOptions & { scheduling?: 'lifo' | 'fifo' } = { + keepAlive: true, + // Timeout for inactive sockets + // Prevents socket leaks from idle connections timeout: this.timeoutMillis, + // Keep alive timeout for free sockets (15 seconds) + // Node.js will close unused sockets after this period + keepAliveMsecs: 15_000, + // Maximum number of sockets per host + maxSockets: 256, + maxFreeSockets: 256, + // LIFO scheduling - reuse most recently used sockets for better performance + scheduling: 'lifo', }; - this.httpAgent = new KeepAliveAgent(agentOpts); - this.httpsAgent = new KeepAliveAgent.HttpsAgent(agentOpts); + + this.httpAgent = new http.Agent(agentOptions); + this.httpsAgent = new https.Agent(agentOptions); + + // Disable Nagle's algorithm for lower latency + // This sends data immediately instead of buffering small packets + const setNoDelay = (socket: any) => { + socket.setNoDelay(true); + }; + + this.httpAgent.on('socket', setNoDelay); + this.httpsAgent.on('socket', setNoDelay); } this.axios = axios.create({ diff --git a/src/resource_clients/actor.ts b/src/resource_clients/actor.ts index 9650ae4e..14c52cec 100644 --- a/src/resource_clients/actor.ts +++ b/src/resource_clients/actor.ts @@ -155,12 +155,15 @@ export class ActorClient extends ResourceClient { const newRunClient = this.apifyClient.run(id); const streamedLog = await newRunClient.getStreamedLog({ toLog: options?.log }); + const statusMessageWatcher = await newRunClient.getStatusMessageWatcher({ toLog: options?.log }); streamedLog?.start(); + statusMessageWatcher?.start(); return this.apifyClient .run(id) .waitForFinish({ waitSecs }) .finally(async () => { await streamedLog?.stop(); + await statusMessageWatcher?.stop(); }); } @@ -415,12 +418,22 @@ export interface ActorStartOptions { webhooks?: readonly WebhookUpdateData[]; /** - * Specifies maximum number of items that the actor run should return. - * This is used by pay per result actors to limit the maximum number of results that will be charged to customer. - * Value can be accessed in actor run using `ACTOR_MAX_PAID_DATASET_ITEMS` environment variable. + * Specifies the maximum number of dataset items that will be charged for pay-per-result Actors. + * This does NOT guarantee that the Actor will return only this many items. + * It only ensures you won't be charged for more than this number of items. + * Only works for pay-per-result Actors. + * Value can be accessed in the Actor run using `ACTOR_MAX_PAID_DATASET_ITEMS` environment variable. */ maxItems?: number; + /** + * Specifies the maximum cost of the Actor run. This parameter is + * used only for pay-per-event Actors. It allows you to limit the amount + * charged to your subscription. You can access the maximum cost in your + * Actor by using the `ACTOR_MAX_TOTAL_CHARGE_USD` environment variable. + */ + maxTotalChargeUsd?: number; + /** * Determines whether the run will be restarted if it fails. */ @@ -524,6 +537,7 @@ export interface ActorRunOptions { timeoutSecs: number; memoryMbytes: number; diskMbytes: number; + maxItems?: number; maxTotalChargeUsd?: number; restartOnError?: boolean; } diff --git a/src/resource_clients/log.ts b/src/resource_clients/log.ts index c77b43bb..c62b3f00 100644 --- a/src/resource_clients/log.ts +++ b/src/resource_clients/log.ts @@ -11,6 +11,7 @@ import type { ApiClientSubResourceOptions } from '../base/api_client'; import { ResourceClient } from '../base/resource_client'; import type { ApifyRequestConfig } from '../http_client'; import { cast, catchNotFoundOrThrow } from '../utils'; +import type { RunClient } from './run'; export class LogClient extends ResourceClient { /** @@ -237,3 +238,59 @@ export interface StreamedLogOptions { /** Whether to redirect all logs from Actor run start (even logs from the past). */ fromStart?: boolean; } + +export class StatusMessageWatcher { + private static finalSleepTimeMs = 6000; + private static defaultCheckPeriodMs = 5000; + + protected toLog: Log; + protected checkPeriod: number; + protected lastStatusMessage = ''; + private runClient: RunClient; + private loggingTask: Promise | null = null; + private stopLogging = false; + + constructor(toLog: Log, runClient: RunClient, checkPeriod: number = StatusMessageWatcher.defaultCheckPeriodMs) { + this.runClient = runClient; + this.toLog = toLog; + this.checkPeriod = checkPeriod; + } + + start() { + if (this.loggingTask) { + throw new Error('Logging task already active'); + } + this.stopLogging = false; + this.loggingTask = this._logChangedStatusMessage(); + } + + async stop(): Promise { + if (!this.loggingTask) { + throw new Error('Logging task is not active'); + } + await new Promise((resolve) => { + setTimeout(resolve, StatusMessageWatcher.finalSleepTimeMs); + }); + this.stopLogging = true; + await this.loggingTask; + this.loggingTask = null; + } + + async _logChangedStatusMessage(): Promise { + while (!this.stopLogging) { + const runData = await this.runClient.get(); + if (runData !== undefined) { + const status = runData.status ?? 'Unknown status'; + const statusMessage = runData.statusMessage ?? ''; + const newStatusMessage = `Status: ${status}, Message: ${statusMessage}`; + if (newStatusMessage !== this.lastStatusMessage) { + this.lastStatusMessage = newStatusMessage; + this.toLog.info(newStatusMessage); + } + await new Promise((resolve) => { + setTimeout(resolve, this.checkPeriod); + }); + } + } + } +} diff --git a/src/resource_clients/run.ts b/src/resource_clients/run.ts index 8883e176..58374ac2 100644 --- a/src/resource_clients/run.ts +++ b/src/resource_clients/run.ts @@ -11,7 +11,7 @@ import { cast, isNode, parseDateFields, pluckData } from '../utils'; import type { ActorRun } from './actor'; import { DatasetClient } from './dataset'; import { KeyValueStoreClient } from './key_value_store'; -import { LogClient, LoggerActorRedirect, StreamedLog } from './log'; +import { LogClient, LoggerActorRedirect, StatusMessageWatcher, StreamedLog } from './log'; import { RequestQueueClient } from './request_queue'; const RUN_CHARGE_IDEMPOTENCY_HEADER = 'idempotency-key'; @@ -279,24 +279,49 @@ export class RunClient extends ResourceClient { return undefined; } if (toLog === undefined || toLog === 'default') { - // Create default StreamedLog - // Get actor name and run id - const runData = await this.get(); - const runId = runData?.id ?? ''; - - const actorId = runData?.actId ?? ''; - const actorData = (await this.apifyClient.actor(actorId).get()) || { name: '' }; + toLog = await this.getActorRedirectLog(); + } - const actorName = actorData?.name ?? ''; - const name = [actorName, `runId:${runId}`].filter(Boolean).join(' '); + return new StreamedLog({ logClient: this.log(), toLog, fromStart }); + } - toLog = new Log({ level: LEVELS.DEBUG, prefix: `${name} -> `, logger: new LoggerActorRedirect() }); + /** + * Get StatusMessageWatcher for convenient streaming of the Actor run status message and its redirection. + */ + async getStatusMessageWatcher( + options: getStatusMessageWatcherOptions = {}, + ): Promise { + let { toLog } = options; + if (toLog === null || !isNode()) { + // Explicitly no logging or not in Node.js + return undefined; } + if (toLog === undefined || toLog === 'default') { + toLog = await this.getActorRedirectLog(); + } + return new StatusMessageWatcher(toLog, this, options.checkPeriod); + } - return new StreamedLog({ logClient: this.log(), toLog, fromStart }); + private async getActorRedirectLog(): Promise { + // Get actor name and run id + const runData = await this.get(); + const runId = runData ? `${runData.id ?? ''}` : ''; + + const actorId = runData?.actId ?? ''; + const actorData = (await this.apifyClient.actor(actorId).get()) || { name: '' }; + + const actorName = runData ? (actorData.name ?? '') : ''; + const name = [actorName, `runId:${runId}`].filter(Boolean).join(' '); + + return new Log({ level: LEVELS.DEBUG, prefix: `${name} -> `, logger: new LoggerActorRedirect() }); } } +export interface getStatusMessageWatcherOptions { + toLog?: Log | null | 'default'; + checkPeriod?: number; +} + export interface GetStreamedLogOptions { toLog?: Log | null | 'default'; fromStart?: boolean; diff --git a/test/actors.test.js b/test/actors.test.js index ada2468b..d2fc1684 100644 --- a/test/actors.test.js +++ b/test/actors.test.js @@ -1,9 +1,9 @@ const { Browser, validateRequest, DEFAULT_OPTIONS } = require('./_helper'); -const { ActorListSortBy, ApifyClient, LoggerActorRedirect } = require('apify-client'); +const { ActorListSortBy, ApifyClient, LoggerActorRedirect, RunClient, StatusMessageWatcher } = require('apify-client'); const { stringifyWebhooksToBase64 } = require('../src/utils'); const { mockServer, createDefaultApp } = require('./mock_server/server'); const c = require('ansi-colors'); -const { MOCKED_ACTOR_LOGS_PROCESSED, StatusGenerator } = require('./mock_server/test_utils'); +const { MOCKED_ACTOR_LOGS_PROCESSED, StatusGenerator, MOCKED_ACTOR_STATUSES } = require('./mock_server/test_utils'); const { Log, LEVELS } = require('@apify/log'); const express = require('express'); const { setTimeout } = require('node:timers/promises'); @@ -727,12 +727,16 @@ describe('Run actor with redirected logs', () => { describe('actor.call - redirected logs', () => { test.each(testCases)('logOptions:$logOptions', async ({ expectedPrefix, logOptions }) => { + const mockedGetStatusMessageWatcher = jest + .spyOn(RunClient.prototype, 'getStatusMessageWatcher') + .mockImplementation(() => {}); const logSpy = jest.spyOn(console, 'log').mockImplementation(() => {}); await client.actor('redirect-actor-id').call(undefined, logOptions); expect(logSpy.mock.calls).toEqual(MOCKED_ACTOR_LOGS_PROCESSED.map((item) => [expectedPrefix + item])); logSpy.mockRestore(); + mockedGetStatusMessageWatcher.mockRestore(); }); test('logOptions:{ "log": null }', async () => { @@ -745,3 +749,86 @@ describe('Run actor with redirected logs', () => { }); }); }); + +describe('Run actor with status message watcher', () => { + let baseUrl; + let client; + const originalCheckPeriodMs = StatusMessageWatcher.defaultCheckPeriodMs; + const originalFinalSleepTimeMs = StatusMessageWatcher.finalSleepTimeMs; + const statusGenerator = new StatusGenerator(); + + beforeAll(async () => { + // Use custom router for the tests + const router = express.Router(); + // Set up a status generator to simulate run status changes. It will be reset for each test. + router.get('/actor-runs/redirect-run-id', async (req, res) => { + // Delay the response to give the actor time to run and produce expected logs + await setTimeout(10); + let [status, statusMessage] = ['', '']; + [status, statusMessage] = statusGenerator.next().value; + res.json({ data: { id: 'redirect-run-id', actId: 'redirect-actor-id', status, statusMessage } }); + }); + const app = createDefaultApp(router); + const server = await mockServer.start(undefined, app); + baseUrl = `http://localhost:${server.address().port}`; + + StatusMessageWatcher.defaultCheckPeriodMs = 1; // speed up tests + StatusMessageWatcher.finalSleepTimeMs = 1; // speed up tests + }); + + afterAll(async () => { + await Promise.all([mockServer.close()]); + StatusMessageWatcher.defaultCheckPeriodMs = originalCheckPeriodMs; + StatusMessageWatcher.finalSleepTimeMs = originalFinalSleepTimeMs; + }); + + beforeEach(async () => { + client = new ApifyClient({ + baseUrl, + maxRetries: 0, + ...DEFAULT_OPTIONS, + }); + }); + afterEach(async () => { + // Reset the generator to so that the next test starts fresh + statusGenerator.reset(); + client = null; + }); + + const testCases = [ + { expectedPrefix: c.cyan('redirect-actor-name runId:redirect-run-id -> '), logOptions: {} }, + { expectedPrefix: c.cyan('redirect-actor-name runId:redirect-run-id -> '), logOptions: { log: 'default' } }, + { + expectedPrefix: c.cyan('custom prefix...'), + logOptions: { + log: new Log({ level: LEVELS.DEBUG, prefix: 'custom prefix...', logger: new LoggerActorRedirect() }), + }, + }, + ]; + + describe('actor.call - status watcher', () => { + test.each(testCases)('logOptions:$logOptions', async ({ expectedPrefix, logOptions }) => { + const logSpy = jest.spyOn(console, 'log').mockImplementation(() => {}); + // Ignore StreamedLog to not clutter the status message watcher test + const mockedGetStreamedLog = jest.spyOn(RunClient.prototype, 'getStreamedLog').mockImplementation(() => {}); + + await client.actor('redirect-actor-id').call(undefined, logOptions); + + const uniqueStatuses = Array.from(new Set(MOCKED_ACTOR_STATUSES.map(JSON.stringify))).map(JSON.parse); + expect(logSpy.mock.calls).toEqual( + uniqueStatuses.map((item) => [`${expectedPrefix}Status: ${item[0]}, Message: ${item[1]}`]), + ); + logSpy.mockRestore(); + mockedGetStreamedLog.mockRestore(); + }); + + test('no log', async () => { + const logSpy = jest.spyOn(console, 'log').mockImplementation(() => {}); + + await client.actor('redirect-actor-id').call(undefined, { log: null }); + + expect(logSpy.mock.calls).toEqual([]); + logSpy.mockRestore(); + }); + }); +}); diff --git a/test/mock_server/test_utils.js b/test/mock_server/test_utils.js index 6296059e..32b88de0 100644 --- a/test/mock_server/test_utils.js +++ b/test/mock_server/test_utils.js @@ -34,15 +34,13 @@ const MOCKED_ACTOR_LOGS_PROCESSED = [ ]; const MOCKED_ACTOR_STATUSES = [ + ['RUNNING', 'Actor Started'], ['RUNNING', 'Actor Started'], ['RUNNING', 'Doing some stuff'], ['RUNNING', 'Doing some stuff'], ['RUNNING', 'Doing some stuff'], - ['RUNNING', 'Doing some stuff'], - ['RUNNING', 'Doing some stuff'], - ['RUNNING', 'Doing some stuff'], - ['RUNNING', 'Doing some stuff'], - ['RUNNING', 'Doing some stuff'], + ['SUCCEEDED', 'Actor Finished'], + ['SUCCEEDED', 'Actor Finished'], ['SUCCEEDED', 'Actor Finished'], ]; diff --git a/test/runs.test.js b/test/runs.test.js index c8a05032..c0809980 100644 --- a/test/runs.test.js +++ b/test/runs.test.js @@ -1,9 +1,10 @@ const { Browser, validateRequest, DEFAULT_OPTIONS } = require('./_helper'); -const { ApifyClient } = require('apify-client'); -const { mockServer } = require('./mock_server/server'); +const { ApifyClient, StatusMessageWatcher } = require('apify-client'); +const { mockServer, createDefaultApp } = require('./mock_server/server'); const c = require('ansi-colors'); -const { MOCKED_ACTOR_LOGS_PROCESSED } = require('./mock_server/test_utils'); +const { MOCKED_ACTOR_LOGS_PROCESSED, MOCKED_ACTOR_STATUSES, StatusGenerator } = require('./mock_server/test_utils'); const { setTimeout: setTimeoutNode } = require('node:timers/promises'); +const express = require('express'); describe('Run methods', () => { let baseUrl; @@ -432,3 +433,74 @@ describe('Redirect run logs', () => { }); }); }); + +describe('Redirect run status message', () => { + let baseUrl; + let client; + const statusGenerator = new StatusGenerator(); + const originalCheckPeriodMs = StatusMessageWatcher.defaultCheckPeriodMs; + const originalFinalSleepTimeMs = StatusMessageWatcher.finalSleepTimeMs; + + beforeAll(async () => { + // Use custom router for the tests + const router = express.Router(); + // Set up a status generator to simulate run status changes. It will be reset for each test. + router.get('/actor-runs/redirect-run-id', async (req, res) => { + // Delay the response to give the actor time to run and produce expected logs + await new Promise((resolve) => { + setTimeout(resolve, 10); + }); + const [status, statusMessage] = statusGenerator.next().value; + res.json({ data: { id: 'redirect-run-id', actId: 'redirect-actor-id', status, statusMessage } }); + }); + const app = createDefaultApp(router); + const server = await mockServer.start(undefined, app); + baseUrl = `http://localhost:${server.address().port}`; + + StatusMessageWatcher.defaultCheckPeriodMs = 1; // speed up tests + StatusMessageWatcher.finalSleepTimeMs = 1; // speed up tests + }); + + afterAll(async () => { + await Promise.all([mockServer.close()]); + StatusMessageWatcher.defaultCheckPeriodMs = originalCheckPeriodMs; + StatusMessageWatcher.finalSleepTimeMs = originalFinalSleepTimeMs; + }); + + beforeEach(async () => { + client = new ApifyClient({ + baseUrl, + maxRetries: 0, + ...DEFAULT_OPTIONS, + }); + }); + afterEach(async () => { + // Reset the generator to so that the next test starts fresh + statusGenerator.reset(); + client = null; + }); + + describe('run.getStatusMessageWatcher', () => { + test('Log same repeated statuses just once', async () => { + const logSpy = jest.spyOn(console, 'log').mockImplementation(() => {}); + + const statusMessageWatcher = await client + .run('redirect-run-id') + .getStatusMessageWatcher({ checkPeriod: 1 }); + + statusMessageWatcher.start(); + // Wait some time to accumulate statuses + await new Promise((resolve) => { + setTimeout(resolve, 100); + }); + await statusMessageWatcher.stop(); + + const loggerPrefix = c.cyan('redirect-actor-name runId:redirect-run-id -> '); + const uniqueStatuses = Array.from(new Set(MOCKED_ACTOR_STATUSES.map(JSON.stringify))).map(JSON.parse); + expect(logSpy.mock.calls).toEqual( + uniqueStatuses.map((item) => [`${loggerPrefix}Status: ${item[0]}, Message: ${item[1]}`]), + ); + logSpy.mockRestore(); + }); + }); +}); diff --git a/website/versioned_docs/version-2/api-packages.json b/website/versioned_docs/version-2/api-packages.json index 68676f7f..38a0df51 100644 --- a/website/versioned_docs/version-2/api-packages.json +++ b/website/versioned_docs/version-2/api-packages.json @@ -5,6 +5,6 @@ "packagePath": ".", "packageSlug": ".", "packageName": "apify-client", - "packageVersion": "2.19.0" + "packageVersion": "2.20.0" } ] diff --git a/website/versioned_docs/version-2/api-typedoc.json b/website/versioned_docs/version-2/api-typedoc.json index e858e6d7..78f26e13 100644 --- a/website/versioned_docs/version-2/api-typedoc.json +++ b/website/versioned_docs/version-2/api-typedoc.json @@ -6,14 +6,14 @@ "flags": {}, "children": [ { - "id": 491, + "id": 495, "name": "ActorListSortBy", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 492, + "id": 496, "name": "CREATED_AT", "variant": "declaration", "kind": 16, @@ -23,7 +23,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 49, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L49" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L49", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32,7 +33,7 @@ } }, { - "id": 493, + "id": 497, "name": "LAST_RUN_STARTED_AT", "variant": "declaration", "kind": 16, @@ -42,7 +43,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 50, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L50" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L50", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -54,7 +56,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [492, 493] + "children": [496, 497] } ], "sources": [ @@ -62,19 +64,20 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 48, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L48" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L48", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 740, + "id": 744, "name": "ActorSourceType", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 744, + "id": 748, "name": "GitHubGist", "variant": "declaration", "kind": 16, @@ -84,7 +87,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 97, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L97" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L97", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -93,7 +97,7 @@ } }, { - "id": 742, + "id": 746, "name": "GitRepo", "variant": "declaration", "kind": 16, @@ -103,7 +107,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 95, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L95" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L95", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -112,7 +117,7 @@ } }, { - "id": 741, + "id": 745, "name": "SourceFiles", "variant": "declaration", "kind": 16, @@ -122,7 +127,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 94, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L94" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L94", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -131,7 +137,7 @@ } }, { - "id": 743, + "id": 747, "name": "Tarball", "variant": "declaration", "kind": 16, @@ -141,7 +147,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 96, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L96" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L96", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -153,7 +160,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [744, 742, 741, 743] + "children": [748, 746, 745, 747] } ], "sources": [ @@ -161,19 +168,20 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 93, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L93" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L93", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1119, + "id": 1123, "name": "DownloadItemsFormat", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 1124, + "id": 1128, "name": "CSV", "variant": "declaration", "kind": 16, @@ -183,7 +191,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 289, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L289" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L289", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -192,7 +201,7 @@ } }, { - "id": 1123, + "id": 1127, "name": "HTML", "variant": "declaration", "kind": 16, @@ -202,7 +211,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 288, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L288" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L288", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -211,7 +221,7 @@ } }, { - "id": 1120, + "id": 1124, "name": "JSON", "variant": "declaration", "kind": 16, @@ -221,7 +231,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 285, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L285" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L285", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -230,7 +241,7 @@ } }, { - "id": 1121, + "id": 1125, "name": "JSONL", "variant": "declaration", "kind": 16, @@ -240,7 +251,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 286, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L286" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L286", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -249,7 +261,7 @@ } }, { - "id": 1126, + "id": 1130, "name": "RSS", "variant": "declaration", "kind": 16, @@ -259,7 +271,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 291, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L291" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L291", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -268,7 +281,7 @@ } }, { - "id": 1125, + "id": 1129, "name": "XLSX", "variant": "declaration", "kind": 16, @@ -278,7 +291,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 290, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L290" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L290", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -287,7 +301,7 @@ } }, { - "id": 1122, + "id": 1126, "name": "XML", "variant": "declaration", "kind": 16, @@ -297,7 +311,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 287, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L287" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L287", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -309,7 +324,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [1124, 1123, 1120, 1121, 1126, 1125, 1122] + "children": [1128, 1127, 1124, 1125, 1130, 1129, 1126] } ], "sources": [ @@ -317,19 +332,20 @@ "fileName": "src/resource_clients/dataset.ts", "line": 284, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L284" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L284", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2440, + "id": 2642, "name": "PlatformFeature", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 2441, + "id": 2643, "name": "Actors", "variant": "declaration", "kind": 16, @@ -339,7 +355,8 @@ "fileName": "src/resource_clients/user.ts", "line": 146, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L146" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L146", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -348,7 +365,7 @@ } }, { - "id": 2446, + "id": 2648, "name": "Proxy", "variant": "declaration", "kind": 16, @@ -358,7 +375,8 @@ "fileName": "src/resource_clients/user.ts", "line": 151, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L151" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L151", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -367,7 +385,7 @@ } }, { - "id": 2447, + "id": 2649, "name": "ProxyExternalAccess", "variant": "declaration", "kind": 16, @@ -377,7 +395,8 @@ "fileName": "src/resource_clients/user.ts", "line": 152, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L152" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L152", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -386,7 +405,7 @@ } }, { - "id": 2443, + "id": 2645, "name": "ProxySERPS", "variant": "declaration", "kind": 16, @@ -396,7 +415,8 @@ "fileName": "src/resource_clients/user.ts", "line": 148, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L148" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L148", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -405,7 +425,7 @@ } }, { - "id": 2444, + "id": 2646, "name": "Scheduler", "variant": "declaration", "kind": 16, @@ -415,7 +435,8 @@ "fileName": "src/resource_clients/user.ts", "line": 149, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L149" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L149", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -424,7 +445,7 @@ } }, { - "id": 2442, + "id": 2644, "name": "Storage", "variant": "declaration", "kind": 16, @@ -434,7 +455,8 @@ "fileName": "src/resource_clients/user.ts", "line": 147, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L147" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L147", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -443,7 +465,7 @@ } }, { - "id": 2445, + "id": 2647, "name": "Webhooks", "variant": "declaration", "kind": 16, @@ -453,7 +475,8 @@ "fileName": "src/resource_clients/user.ts", "line": 150, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L150" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L150", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -465,7 +488,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [2441, 2446, 2447, 2443, 2444, 2442, 2445] + "children": [2643, 2648, 2649, 2645, 2646, 2644, 2647] } ], "sources": [ @@ -473,19 +496,20 @@ "fileName": "src/resource_clients/user.ts", "line": 145, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L145" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L145", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2008, + "id": 2209, "name": "ScheduleActions", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 2009, + "id": 2210, "name": "RunActor", "variant": "declaration", "kind": 16, @@ -495,7 +519,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 94, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L94" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L94", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -504,7 +529,7 @@ } }, { - "id": 2010, + "id": 2211, "name": "RunActorTask", "variant": "declaration", "kind": 16, @@ -514,7 +539,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 95, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L95" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L95", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -526,7 +552,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [2009, 2010] + "children": [2210, 2211] } ], "sources": [ @@ -534,19 +560,20 @@ "fileName": "src/resource_clients/schedule.ts", "line": 93, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L93" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L93", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2703, + "id": 2905, "name": "WebhookDispatchStatus", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 2704, + "id": 2906, "name": "Active", "variant": "declaration", "kind": 16, @@ -556,7 +583,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -565,7 +593,7 @@ } }, { - "id": 2706, + "id": 2908, "name": "Failed", "variant": "declaration", "kind": 16, @@ -575,7 +603,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -584,7 +613,7 @@ } }, { - "id": 2705, + "id": 2907, "name": "Succeeded", "variant": "declaration", "kind": 16, @@ -594,7 +623,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 38, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L38" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L38", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -606,7 +636,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [2704, 2706, 2705] + "children": [2906, 2908, 2907] } ], "sources": [ @@ -614,7 +644,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 36, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L36" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L36", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, @@ -638,7 +669,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -666,7 +698,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -692,7 +725,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -724,7 +758,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -751,7 +786,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -792,7 +828,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -818,7 +855,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -845,7 +883,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -871,7 +910,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -893,9 +933,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 160, + "line": 171, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L160" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L171", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -922,9 +963,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 160, + "line": 171, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L160" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L171", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -947,7 +989,7 @@ "flags": {}, "type": { "type": "reference", - "target": 369, + "target": 373, "name": "ActorBuildOptions", "package": "apify-client" }, @@ -963,7 +1005,7 @@ "typeArguments": [ { "type": "reference", - "target": 881, + "target": 885, "name": "Build", "package": "apify-client" } @@ -983,9 +1025,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 229, + "line": 240, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L229" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L240", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -1006,14 +1049,15 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 229, + "line": 240, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L229" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L240", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 932, + "target": 936, "name": "BuildCollectionClient", "package": "apify-client" } @@ -1029,9 +1073,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 128, + "line": 129, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L128" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L129", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -1060,9 +1105,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 128, + "line": 129, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L128" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L129", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -1087,7 +1133,7 @@ "flags": {}, "type": { "type": "reference", - "target": 278, + "target": 279, "name": "ActorCallOptions", "package": "apify-client" }, @@ -1103,7 +1149,7 @@ "typeArguments": [ { "type": "reference", - "target": 302, + "target": 305, "name": "ActorRun", "package": "apify-client" } @@ -1123,9 +1169,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 187, + "line": 198, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L187" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L198", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -1146,9 +1193,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 187, + "line": 198, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L187" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L198", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -1160,7 +1208,7 @@ "flags": {}, "type": { "type": "reference", - "target": 873, + "target": 877, "name": "BuildClientGetOptions", "package": "apify-client" }, @@ -1176,7 +1224,7 @@ "typeArguments": [ { "type": "reference", - "target": 808, + "target": 812, "name": "BuildClient", "package": "apify-client" } @@ -1196,9 +1244,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 51, + "line": 52, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L51" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L52", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -1219,9 +1268,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 51, + "line": 52, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L51" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L52", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -1251,9 +1301,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 35, + "line": 36, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L36", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -1274,9 +1325,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 35, + "line": 36, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L36", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -1317,9 +1369,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 208, + "line": 219, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L208" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L219", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -1340,9 +1393,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 208, + "line": 219, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L208" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L219", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -1354,7 +1408,7 @@ "flags": {}, "type": { "type": "reference", - "target": 374, + "target": 378, "name": "ActorLastRunOptions", "package": "apify-client" }, @@ -1363,7 +1417,7 @@ ], "type": { "type": "reference", - "target": 1759, + "target": 1954, "name": "RunClient", "package": "apify-client" } @@ -1379,9 +1433,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 240, + "line": 251, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L240" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L251", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -1402,14 +1457,15 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 240, + "line": 251, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L240" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L251", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1869, + "target": 2070, "name": "RunCollectionClient", "package": "apify-client" } @@ -1425,9 +1481,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 59, + "line": 60, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L59" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L60", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -1448,9 +1505,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 59, + "line": 60, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L59" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L60", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -1491,7 +1549,7 @@ "typeArguments": [ { "type": "reference", - "target": 302, + "target": 305, "name": "ActorRun", "package": "apify-client" } @@ -1511,9 +1569,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 42, + "line": 43, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L42" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L43", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -1534,9 +1593,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 42, + "line": 43, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L42" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L43", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -1658,9 +1718,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 251, + "line": 262, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L251" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L262", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -1681,9 +1742,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 251, + "line": 262, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L251" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L262", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -1701,7 +1763,7 @@ ], "type": { "type": "reference", - "target": 638, + "target": 642, "name": "ActorVersionClient", "package": "apify-client" } @@ -1717,9 +1779,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 264, + "line": 275, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L264" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L275", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -1746,14 +1809,15 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 264, + "line": 275, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L264" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L275", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 751, + "target": 755, "name": "ActorVersionCollectionClient", "package": "apify-client" } @@ -1769,9 +1833,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 272, + "line": 283, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L272" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L283", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -1798,14 +1863,15 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 272, + "line": 283, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L272" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L283", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2584, + "target": 2786, "name": "WebhookCollectionClient", "package": "apify-client" } @@ -1826,9 +1892,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 21, + "line": 22, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L21" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -1844,14 +1911,14 @@ ] }, { - "id": 439, + "id": 443, "name": "ActorCollectionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 471, + "id": 475, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -1863,7 +1930,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -1879,7 +1947,7 @@ } }, { - "id": 467, + "id": 471, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -1891,7 +1959,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -1905,7 +1974,7 @@ } }, { - "id": 472, + "id": 476, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -1917,7 +1986,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -1936,7 +2006,7 @@ } }, { - "id": 465, + "id": 469, "name": "id", "variant": "declaration", "kind": 1024, @@ -1949,7 +2019,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -1963,7 +2034,7 @@ } }, { - "id": 473, + "id": 477, "name": "params", "variant": "declaration", "kind": 1024, @@ -1976,7 +2047,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2005,7 +2077,7 @@ } }, { - "id": 468, + "id": 472, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -2017,7 +2089,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2031,7 +2104,7 @@ } }, { - "id": 469, + "id": 473, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -2043,7 +2116,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2057,7 +2131,7 @@ } }, { - "id": 466, + "id": 470, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -2070,7 +2144,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2084,7 +2159,7 @@ } }, { - "id": 470, + "id": 474, "name": "url", "variant": "declaration", "kind": 1024, @@ -2096,7 +2171,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2110,7 +2186,7 @@ } }, { - "id": 446, + "id": 450, "name": "create", "variant": "declaration", "kind": 2048, @@ -2120,12 +2196,13 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 41, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L41" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L41", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 447, + "id": 451, "name": "create", "variant": "signature", "kind": 4096, @@ -2143,19 +2220,20 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 41, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L41" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L41", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 448, + "id": 452, "name": "actor", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 507, + "target": 511, "name": "ActorCollectionCreateOptions", "package": "apify-client" } @@ -2182,7 +2260,7 @@ ] }, { - "id": 443, + "id": 447, "name": "list", "variant": "declaration", "kind": 2048, @@ -2192,12 +2270,13 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 23, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 444, + "id": 448, "name": "list", "variant": "signature", "kind": 4096, @@ -2215,19 +2294,20 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 23, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 445, + "id": 449, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 494, + "target": 498, "name": "ActorCollectionListOptions", "package": "apify-client" }, @@ -2243,7 +2323,7 @@ "typeArguments": [ { "type": "reference", - "target": 506, + "target": 510, "name": "ActorCollectionListResult", "package": "apify-client" } @@ -2258,11 +2338,11 @@ "groups": [ { "title": "Properties", - "children": [471, 467, 472, 465, 473, 468, 469, 466, 470] + "children": [475, 471, 476, 469, 477, 472, 473, 470, 474] }, { "title": "Methods", - "children": [446, 443] + "children": [450, 447] } ], "sources": [ @@ -2270,7 +2350,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 9, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L9" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L9", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -2286,14 +2367,14 @@ ] }, { - "id": 523, + "id": 527, "name": "ActorEnvVarClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 561, + "id": 565, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -2305,7 +2386,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2321,7 +2403,7 @@ } }, { - "id": 557, + "id": 561, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -2333,7 +2415,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2347,7 +2430,7 @@ } }, { - "id": 562, + "id": 566, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -2359,7 +2442,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2378,7 +2462,7 @@ } }, { - "id": 555, + "id": 559, "name": "id", "variant": "declaration", "kind": 1024, @@ -2391,7 +2475,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2405,7 +2490,7 @@ } }, { - "id": 563, + "id": 567, "name": "params", "variant": "declaration", "kind": 1024, @@ -2418,7 +2503,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2447,7 +2533,7 @@ } }, { - "id": 558, + "id": 562, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -2459,7 +2545,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2473,7 +2560,7 @@ } }, { - "id": 559, + "id": 563, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -2485,7 +2572,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2499,7 +2587,7 @@ } }, { - "id": 556, + "id": 560, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -2512,7 +2600,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2526,7 +2615,7 @@ } }, { - "id": 560, + "id": 564, "name": "url", "variant": "declaration", "kind": 1024, @@ -2538,7 +2627,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2552,7 +2642,7 @@ } }, { - "id": 532, + "id": 536, "name": "delete", "variant": "declaration", "kind": 2048, @@ -2562,12 +2652,13 @@ "fileName": "src/resource_clients/actor_env_var.ts", "line": 36, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var.ts#L36" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var.ts#L36", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 533, + "id": 537, "name": "delete", "variant": "signature", "kind": 4096, @@ -2585,7 +2676,8 @@ "fileName": "src/resource_clients/actor_env_var.ts", "line": 36, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var.ts#L36" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var.ts#L36", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2607,7 +2699,7 @@ ] }, { - "id": 527, + "id": 531, "name": "get", "variant": "declaration", "kind": 2048, @@ -2617,12 +2709,13 @@ "fileName": "src/resource_clients/actor_env_var.ts", "line": 21, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var.ts#L21" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var.ts#L21", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 528, + "id": 532, "name": "get", "variant": "signature", "kind": 4096, @@ -2640,7 +2733,8 @@ "fileName": "src/resource_clients/actor_env_var.ts", "line": 21, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var.ts#L21" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var.ts#L21", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2659,7 +2753,7 @@ }, { "type": "reference", - "target": 745, + "target": 749, "name": "ActorEnvironmentVariable", "package": "apify-client" } @@ -2673,7 +2767,7 @@ ] }, { - "id": 529, + "id": 533, "name": "update", "variant": "declaration", "kind": 2048, @@ -2683,12 +2777,13 @@ "fileName": "src/resource_clients/actor_env_var.ts", "line": 28, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var.ts#L28" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var.ts#L28", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 530, + "id": 534, "name": "update", "variant": "signature", "kind": 4096, @@ -2706,19 +2801,20 @@ "fileName": "src/resource_clients/actor_env_var.ts", "line": 28, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var.ts#L28" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var.ts#L28", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 531, + "id": 535, "name": "actorEnvVar", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 745, + "target": 749, "name": "ActorEnvironmentVariable", "package": "apify-client" } @@ -2733,7 +2829,7 @@ "typeArguments": [ { "type": "reference", - "target": 745, + "target": 749, "name": "ActorEnvironmentVariable", "package": "apify-client" } @@ -2748,11 +2844,11 @@ "groups": [ { "title": "Properties", - "children": [561, 557, 562, 555, 563, 558, 559, 556, 560] + "children": [565, 561, 566, 559, 567, 562, 563, 560, 564] }, { "title": "Methods", - "children": [532, 527, 529] + "children": [536, 531, 533] } ], "sources": [ @@ -2760,7 +2856,8 @@ "fileName": "src/resource_clients/actor_env_var.ts", "line": 7, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var.ts#L7" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var.ts#L7", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -2776,14 +2873,14 @@ ] }, { - "id": 581, + "id": 585, "name": "ActorEnvVarCollectionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 613, + "id": 617, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -2795,7 +2892,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2811,7 +2909,7 @@ } }, { - "id": 609, + "id": 613, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -2823,7 +2921,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2837,7 +2936,7 @@ } }, { - "id": 614, + "id": 618, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -2849,7 +2948,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2868,7 +2968,7 @@ } }, { - "id": 607, + "id": 611, "name": "id", "variant": "declaration", "kind": 1024, @@ -2881,7 +2981,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2895,7 +2996,7 @@ } }, { - "id": 615, + "id": 619, "name": "params", "variant": "declaration", "kind": 1024, @@ -2908,7 +3009,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2937,7 +3039,7 @@ } }, { - "id": 610, + "id": 614, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -2949,7 +3051,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2963,7 +3066,7 @@ } }, { - "id": 611, + "id": 615, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -2975,7 +3078,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -2989,7 +3093,7 @@ } }, { - "id": 608, + "id": 612, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -3002,7 +3106,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3016,7 +3121,7 @@ } }, { - "id": 612, + "id": 616, "name": "url", "variant": "declaration", "kind": 1024, @@ -3028,7 +3133,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3042,7 +3148,7 @@ } }, { - "id": 588, + "id": 592, "name": "create", "variant": "declaration", "kind": 2048, @@ -3052,12 +3158,13 @@ "fileName": "src/resource_clients/actor_env_var_collection.ts", "line": 37, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var_collection.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var_collection.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 589, + "id": 593, "name": "create", "variant": "signature", "kind": 4096, @@ -3075,19 +3182,20 @@ "fileName": "src/resource_clients/actor_env_var_collection.ts", "line": 37, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var_collection.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var_collection.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 590, + "id": 594, "name": "actorEnvVar", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 745, + "target": 749, "name": "ActorEnvironmentVariable", "package": "apify-client" } @@ -3102,7 +3210,7 @@ "typeArguments": [ { "type": "reference", - "target": 745, + "target": 749, "name": "ActorEnvironmentVariable", "package": "apify-client" } @@ -3114,7 +3222,7 @@ ] }, { - "id": 585, + "id": 589, "name": "list", "variant": "declaration", "kind": 2048, @@ -3124,12 +3232,13 @@ "fileName": "src/resource_clients/actor_env_var_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 586, + "id": 590, "name": "list", "variant": "signature", "kind": 4096, @@ -3147,19 +3256,20 @@ "fileName": "src/resource_clients/actor_env_var_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 587, + "id": 591, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 633, + "target": 637, "name": "ActorEnvVarCollectionListOptions", "package": "apify-client" }, @@ -3175,7 +3285,7 @@ "typeArguments": [ { "type": "reference", - "target": 637, + "target": 641, "name": "ActorEnvVarListResult", "package": "apify-client" } @@ -3190,11 +3300,11 @@ "groups": [ { "title": "Properties", - "children": [613, 609, 614, 607, 615, 610, 611, 608, 612] + "children": [617, 613, 618, 611, 619, 614, 615, 612, 616] }, { "title": "Methods", - "children": [588, 585] + "children": [592, 589] } ], "sources": [ @@ -3202,7 +3312,8 @@ "fileName": "src/resource_clients/actor_env_var_collection.ts", "line": 8, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var_collection.ts#L8" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var_collection.ts#L8", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -3218,14 +3329,14 @@ ] }, { - "id": 638, + "id": 642, "name": "ActorVersionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 681, + "id": 685, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -3237,7 +3348,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3253,7 +3365,7 @@ } }, { - "id": 677, + "id": 681, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -3265,7 +3377,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3279,7 +3392,7 @@ } }, { - "id": 682, + "id": 686, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -3291,7 +3404,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3310,7 +3424,7 @@ } }, { - "id": 675, + "id": 679, "name": "id", "variant": "declaration", "kind": 1024, @@ -3323,7 +3437,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3337,7 +3452,7 @@ } }, { - "id": 683, + "id": 687, "name": "params", "variant": "declaration", "kind": 1024, @@ -3350,7 +3465,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3379,7 +3495,7 @@ } }, { - "id": 678, + "id": 682, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -3391,7 +3507,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3405,7 +3522,7 @@ } }, { - "id": 679, + "id": 683, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -3417,7 +3534,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3431,7 +3549,7 @@ } }, { - "id": 676, + "id": 680, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -3444,7 +3562,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3458,7 +3577,7 @@ } }, { - "id": 680, + "id": 684, "name": "url", "variant": "declaration", "kind": 1024, @@ -3470,7 +3589,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3484,7 +3604,7 @@ } }, { - "id": 647, + "id": 651, "name": "delete", "variant": "declaration", "kind": 2048, @@ -3494,12 +3614,13 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 38, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L38" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L38", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 648, + "id": 652, "name": "delete", "variant": "signature", "kind": 4096, @@ -3517,7 +3638,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 38, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L38" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L38", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3539,7 +3661,7 @@ ] }, { - "id": 649, + "id": 653, "name": "envVar", "variant": "declaration", "kind": 2048, @@ -3549,12 +3671,13 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 45, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L45" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L45", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 650, + "id": 654, "name": "envVar", "variant": "signature", "kind": 4096, @@ -3572,12 +3695,13 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 45, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L45" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L45", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 651, + "id": 655, "name": "envVarName", "variant": "param", "kind": 32768, @@ -3590,7 +3714,7 @@ ], "type": { "type": "reference", - "target": 523, + "target": 527, "name": "ActorEnvVarClient", "package": "apify-client" } @@ -3598,7 +3722,7 @@ ] }, { - "id": 652, + "id": 656, "name": "envVars", "variant": "declaration", "kind": 2048, @@ -3608,12 +3732,13 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 58, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L58" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L58", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 653, + "id": 657, "name": "envVars", "variant": "signature", "kind": 4096, @@ -3637,12 +3762,13 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 58, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L58" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L58", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 581, + "target": 585, "name": "ActorEnvVarCollectionClient", "package": "apify-client" } @@ -3650,7 +3776,7 @@ ] }, { - "id": 642, + "id": 646, "name": "get", "variant": "declaration", "kind": 2048, @@ -3660,12 +3786,13 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 643, + "id": 647, "name": "get", "variant": "signature", "kind": 4096, @@ -3683,7 +3810,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3702,7 +3830,7 @@ }, { "type": "reference", - "target": 750, + "target": 754, "name": "FinalActorVersion", "package": "apify-client" } @@ -3716,7 +3844,7 @@ ] }, { - "id": 644, + "id": 648, "name": "update", "variant": "declaration", "kind": 2048, @@ -3726,12 +3854,13 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 29, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 645, + "id": 649, "name": "update", "variant": "signature", "kind": 4096, @@ -3749,19 +3878,20 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 29, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 646, + "id": 650, "name": "newFields", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 749, + "target": 753, "name": "ActorVersion", "package": "apify-client" } @@ -3776,7 +3906,7 @@ "typeArguments": [ { "type": "reference", - "target": 750, + "target": 754, "name": "FinalActorVersion", "package": "apify-client" } @@ -3791,11 +3921,11 @@ "groups": [ { "title": "Properties", - "children": [681, 677, 682, 675, 683, 678, 679, 676, 680] + "children": [685, 681, 686, 679, 687, 682, 683, 680, 684] }, { "title": "Methods", - "children": [647, 649, 652, 642, 644] + "children": [651, 653, 656, 646, 648] } ], "sources": [ @@ -3803,7 +3933,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 8, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L8" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L8", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -3819,14 +3950,14 @@ ] }, { - "id": 751, + "id": 755, "name": "ActorVersionCollectionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 783, + "id": 787, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -3838,7 +3969,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3854,7 +3986,7 @@ } }, { - "id": 779, + "id": 783, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -3866,7 +3998,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3880,7 +4013,7 @@ } }, { - "id": 784, + "id": 788, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -3892,7 +4025,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3911,7 +4045,7 @@ } }, { - "id": 777, + "id": 781, "name": "id", "variant": "declaration", "kind": 1024, @@ -3924,7 +4058,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3938,7 +4073,7 @@ } }, { - "id": 785, + "id": 789, "name": "params", "variant": "declaration", "kind": 1024, @@ -3951,7 +4086,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -3980,7 +4116,7 @@ } }, { - "id": 780, + "id": 784, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -3992,7 +4128,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4006,7 +4143,7 @@ } }, { - "id": 781, + "id": 785, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -4018,7 +4155,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4032,7 +4170,7 @@ } }, { - "id": 778, + "id": 782, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -4045,7 +4183,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4059,7 +4198,7 @@ } }, { - "id": 782, + "id": 786, "name": "url", "variant": "declaration", "kind": 1024, @@ -4071,7 +4210,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4085,7 +4225,7 @@ } }, { - "id": 758, + "id": 762, "name": "create", "variant": "declaration", "kind": 2048, @@ -4095,12 +4235,13 @@ "fileName": "src/resource_clients/actor_version_collection.ts", "line": 38, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version_collection.ts#L38" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version_collection.ts#L38", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 759, + "id": 763, "name": "create", "variant": "signature", "kind": 4096, @@ -4118,19 +4259,20 @@ "fileName": "src/resource_clients/actor_version_collection.ts", "line": 38, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version_collection.ts#L38" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version_collection.ts#L38", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 760, + "id": 764, "name": "actorVersion", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 749, + "target": 753, "name": "ActorVersion", "package": "apify-client" } @@ -4145,7 +4287,7 @@ "typeArguments": [ { "type": "reference", - "target": 750, + "target": 754, "name": "FinalActorVersion", "package": "apify-client" } @@ -4157,7 +4299,7 @@ ] }, { - "id": 755, + "id": 759, "name": "list", "variant": "declaration", "kind": 2048, @@ -4167,12 +4309,13 @@ "fileName": "src/resource_clients/actor_version_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 756, + "id": 760, "name": "list", "variant": "signature", "kind": 4096, @@ -4190,19 +4333,20 @@ "fileName": "src/resource_clients/actor_version_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 757, + "id": 761, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 803, + "target": 807, "name": "ActorVersionCollectionListOptions", "package": "apify-client" }, @@ -4218,7 +4362,7 @@ "typeArguments": [ { "type": "reference", - "target": 807, + "target": 811, "name": "ActorVersionListResult", "package": "apify-client" } @@ -4233,11 +4377,11 @@ "groups": [ { "title": "Properties", - "children": [783, 779, 784, 777, 785, 780, 781, 778, 782] + "children": [787, 783, 788, 781, 789, 784, 785, 782, 786] }, { "title": "Methods", - "children": [758, 755] + "children": [762, 759] } ], "sources": [ @@ -4245,7 +4389,8 @@ "fileName": "src/resource_clients/actor_version_collection.ts", "line": 8, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version_collection.ts#L8" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version_collection.ts#L8", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -4261,7 +4406,7 @@ ] }, { - "id": 2771, + "id": 2973, "name": "ApifyApiError", "variant": "declaration", "kind": 128, @@ -4284,7 +4429,7 @@ }, "children": [ { - "id": 2790, + "id": 2992, "name": "attempt", "variant": "declaration", "kind": 1024, @@ -4302,7 +4447,8 @@ "fileName": "src/apify_api_error.ts", "line": 46, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_api_error.ts#L46" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_api_error.ts#L46", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4311,7 +4457,7 @@ } }, { - "id": 2805, + "id": 3007, "name": "cause", "variant": "declaration", "kind": 1024, @@ -4324,7 +4470,8 @@ { "fileName": "website/node_modules/typescript/lib/lib.es2022.error.d.ts", "line": 24, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4338,7 +4485,7 @@ } }, { - "id": 2787, + "id": 2989, "name": "clientMethod", "variant": "declaration", "kind": 1024, @@ -4364,7 +4511,8 @@ "fileName": "src/apify_api_error.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_api_error.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_api_error.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4373,7 +4521,7 @@ } }, { - "id": 2794, + "id": 2996, "name": "data", "variant": "declaration", "kind": 1024, @@ -4393,7 +4541,8 @@ "fileName": "src/apify_api_error.ts", "line": 67, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_api_error.ts#L67" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_api_error.ts#L67", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4417,7 +4566,7 @@ } }, { - "id": 2791, + "id": 2993, "name": "httpMethod", "variant": "declaration", "kind": 1024, @@ -4437,7 +4586,8 @@ "fileName": "src/apify_api_error.ts", "line": 51, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_api_error.ts#L51" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_api_error.ts#L51", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4446,7 +4596,7 @@ } }, { - "id": 2803, + "id": 3005, "name": "message", "variant": "declaration", "kind": 1024, @@ -4458,7 +4608,8 @@ { "fileName": "website/node_modules/typescript/lib/lib.es5.d.ts", "line": 1077, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4472,7 +4623,7 @@ } }, { - "id": 2786, + "id": 2988, "name": "name", "variant": "declaration", "kind": 1024, @@ -4482,7 +4633,8 @@ "fileName": "src/apify_api_error.ts", "line": 25, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_api_error.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_api_error.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4496,7 +4648,7 @@ } }, { - "id": 2793, + "id": 2995, "name": "originalStack", "variant": "declaration", "kind": 1024, @@ -4514,7 +4666,8 @@ "fileName": "src/apify_api_error.ts", "line": 62, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_api_error.ts#L62" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_api_error.ts#L62", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4523,7 +4676,7 @@ } }, { - "id": 2792, + "id": 2994, "name": "path", "variant": "declaration", "kind": 1024, @@ -4543,7 +4696,8 @@ "fileName": "src/apify_api_error.ts", "line": 56, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_api_error.ts#L56" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_api_error.ts#L56", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4552,7 +4706,7 @@ } }, { - "id": 2804, + "id": 3006, "name": "stack", "variant": "declaration", "kind": 1024, @@ -4565,7 +4719,8 @@ { "fileName": "website/node_modules/typescript/lib/lib.es5.d.ts", "line": 1078, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4579,7 +4734,7 @@ } }, { - "id": 2788, + "id": 2990, "name": "statusCode", "variant": "declaration", "kind": 1024, @@ -4597,7 +4752,8 @@ "fileName": "src/apify_api_error.ts", "line": 36, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_api_error.ts#L36" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_api_error.ts#L36", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4606,7 +4762,7 @@ } }, { - "id": 2789, + "id": 2991, "name": "type", "variant": "declaration", "kind": 1024, @@ -4626,7 +4782,8 @@ "fileName": "src/apify_api_error.ts", "line": 41, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_api_error.ts#L41" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_api_error.ts#L41", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4635,7 +4792,7 @@ } }, { - "id": 2780, + "id": 2982, "name": "stackTraceLimit", "variant": "declaration", "kind": 1024, @@ -4688,7 +4845,8 @@ { "fileName": "node_modules/@types/node/globals.d.ts", "line": 68, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -4702,7 +4860,7 @@ } }, { - "id": 2772, + "id": 2974, "name": "captureStackTrace", "variant": "declaration", "kind": 2048, @@ -4715,12 +4873,13 @@ { "fileName": "node_modules/@types/node/globals.d.ts", "line": 52, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2773, + "id": 2975, "name": "captureStackTrace", "variant": "signature", "kind": 4096, @@ -4816,12 +4975,13 @@ { "fileName": "node_modules/@types/node/globals.d.ts", "line": 52, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2774, + "id": 2976, "name": "targetObject", "variant": "param", "kind": 32768, @@ -4834,7 +4994,7 @@ } }, { - "id": 2775, + "id": 2977, "name": "constructorOpt", "variant": "param", "kind": 32768, @@ -4871,7 +5031,7 @@ } }, { - "id": 2776, + "id": 2978, "name": "prepareStackTrace", "variant": "declaration", "kind": 2048, @@ -4884,12 +5044,13 @@ { "fileName": "node_modules/@types/node/globals.d.ts", "line": 56, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2777, + "id": 2979, "name": "prepareStackTrace", "variant": "signature", "kind": 4096, @@ -4915,12 +5076,13 @@ { "fileName": "node_modules/@types/node/globals.d.ts", "line": 56, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2778, + "id": 2980, "name": "err", "variant": "param", "kind": 32768, @@ -4938,7 +5100,7 @@ } }, { - "id": 2779, + "id": 2981, "name": "stackTraces", "variant": "param", "kind": 32768, @@ -4981,11 +5143,11 @@ "groups": [ { "title": "Properties", - "children": [2790, 2805, 2787, 2794, 2791, 2803, 2786, 2793, 2792, 2804, 2788, 2789, 2780] + "children": [2992, 3007, 2989, 2996, 2993, 3005, 2988, 2995, 2994, 3006, 2990, 2991, 2982] }, { "title": "Methods", - "children": [2772, 2776] + "children": [2974, 2978] } ], "sources": [ @@ -4993,7 +5155,8 @@ "fileName": "src/apify_api_error.ts", "line": 24, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_api_error.ts#L24" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_api_error.ts#L24", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -5034,7 +5197,8 @@ "fileName": "src/apify_client.ts", "line": 55, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L55" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L55", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5049,7 +5213,8 @@ "fileName": "src/apify_client.ts", "line": 55, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L55" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L55", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -5088,7 +5253,8 @@ "fileName": "src/apify_client.ts", "line": 43, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L43" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L43", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -5107,7 +5273,8 @@ "fileName": "src/apify_client.ts", "line": 53, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L53" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L53", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -5131,7 +5298,8 @@ "fileName": "src/apify_client.ts", "line": 51, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L51" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L51", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -5155,7 +5323,8 @@ "fileName": "src/apify_client.ts", "line": 45, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L45" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L45", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -5174,7 +5343,8 @@ "fileName": "src/apify_client.ts", "line": 49, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L49" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L49", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -5200,7 +5370,8 @@ "fileName": "src/apify_client.ts", "line": 47, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L47" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L47", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -5219,7 +5390,8 @@ "fileName": "src/apify_client.ts", "line": 120, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L120" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L120", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5242,7 +5414,8 @@ "fileName": "src/apify_client.ts", "line": 120, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L120" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L120", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -5278,7 +5451,8 @@ "fileName": "src/apify_client.ts", "line": 113, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L113" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L113", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5301,12 +5475,13 @@ "fileName": "src/apify_client.ts", "line": 113, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L113" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L113", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 439, + "target": 443, "name": "ActorCollectionClient", "package": "apify-client" } @@ -5324,7 +5499,8 @@ "fileName": "src/apify_client.ts", "line": 139, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L139" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L139", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5347,7 +5523,8 @@ "fileName": "src/apify_client.ts", "line": 139, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L139" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L139", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -5365,7 +5542,7 @@ ], "type": { "type": "reference", - "target": 808, + "target": 812, "name": "BuildClient", "package": "apify-client" } @@ -5383,7 +5560,8 @@ "fileName": "src/apify_client.ts", "line": 132, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L132" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L132", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5406,12 +5584,13 @@ "fileName": "src/apify_client.ts", "line": 132, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L132" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L132", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 932, + "target": 936, "name": "BuildCollectionClient", "package": "apify-client" } @@ -5429,7 +5608,8 @@ "fileName": "src/apify_client.ts", "line": 158, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L158" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L158", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5452,7 +5632,8 @@ "fileName": "src/apify_client.ts", "line": 158, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L158" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L158", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "typeParameters": [ @@ -5535,7 +5716,7 @@ ], "type": { "type": "reference", - "target": 987, + "target": 991, "typeArguments": [ { "type": "reference", @@ -5562,7 +5743,8 @@ "fileName": "src/apify_client.ts", "line": 151, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L151" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L151", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5585,12 +5767,13 @@ "fileName": "src/apify_client.ts", "line": 151, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L151" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L151", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1153, + "target": 1157, "name": "DatasetCollectionClient", "package": "apify-client" } @@ -5608,7 +5791,8 @@ "fileName": "src/apify_client.ts", "line": 179, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L179" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L179", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5631,7 +5815,8 @@ "fileName": "src/apify_client.ts", "line": 179, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L179" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L179", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -5649,7 +5834,7 @@ ], "type": { "type": "reference", - "target": 1214, + "target": 1218, "name": "KeyValueStoreClient", "package": "apify-client" } @@ -5667,7 +5852,8 @@ "fileName": "src/apify_client.ts", "line": 172, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L172" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L172", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5690,12 +5876,13 @@ "fileName": "src/apify_client.ts", "line": 172, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L172" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L172", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1360, + "target": 1364, "name": "KeyValueStoreCollectionClient", "package": "apify-client" } @@ -5713,7 +5900,8 @@ "fileName": "src/apify_client.ts", "line": 191, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L191" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L191", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5736,7 +5924,8 @@ "fileName": "src/apify_client.ts", "line": 191, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L191" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L191", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -5754,7 +5943,7 @@ ], "type": { "type": "reference", - "target": 1423, + "target": 1427, "name": "LogClient", "package": "apify-client" } @@ -5772,7 +5961,8 @@ "fileName": "src/apify_client.ts", "line": 210, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L210" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L210", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5795,7 +5985,8 @@ "fileName": "src/apify_client.ts", "line": 210, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L210" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L210", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -5818,7 +6009,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1590, + "target": 1785, "name": "RequestQueueUserOptions", "package": "apify-client" }, @@ -5827,7 +6018,7 @@ ], "type": { "type": "reference", - "target": 1478, + "target": 1673, "name": "RequestQueueClient", "package": "apify-client" } @@ -5845,7 +6036,8 @@ "fileName": "src/apify_client.ts", "line": 203, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L203" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L203", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5868,12 +6060,13 @@ "fileName": "src/apify_client.ts", "line": 203, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L203" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L203", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1697, + "target": 1892, "name": "RequestQueueCollectionClient", "package": "apify-client" } @@ -5891,7 +6084,8 @@ "fileName": "src/apify_client.ts", "line": 240, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L240" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L240", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5914,7 +6108,8 @@ "fileName": "src/apify_client.ts", "line": 240, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L240" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L240", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -5932,7 +6127,7 @@ ], "type": { "type": "reference", - "target": 1759, + "target": 1954, "name": "RunClient", "package": "apify-client" } @@ -5950,7 +6145,8 @@ "fileName": "src/apify_client.ts", "line": 230, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L230" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L230", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -5973,12 +6169,13 @@ "fileName": "src/apify_client.ts", "line": 230, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L230" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L230", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1869, + "target": 2070, "name": "RunCollectionClient", "package": "apify-client" } @@ -5996,7 +6193,8 @@ "fileName": "src/apify_client.ts", "line": 278, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L278" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L278", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -6019,7 +6217,8 @@ "fileName": "src/apify_client.ts", "line": 278, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L278" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L278", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -6037,7 +6236,7 @@ ], "type": { "type": "reference", - "target": 1925, + "target": 2126, "name": "ScheduleClient", "package": "apify-client" } @@ -6055,7 +6254,8 @@ "fileName": "src/apify_client.ts", "line": 271, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L271" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L271", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -6078,12 +6278,13 @@ "fileName": "src/apify_client.ts", "line": 271, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L271" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L271", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2031, + "target": 2232, "name": "ScheduleCollectionClient", "package": "apify-client" } @@ -6101,7 +6302,8 @@ "fileName": "src/apify_client.ts", "line": 344, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L344" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L344", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -6116,7 +6318,8 @@ "fileName": "src/apify_client.ts", "line": 344, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L344" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L344", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -6179,7 +6382,8 @@ "fileName": "src/apify_client.ts", "line": 340, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L340" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L340", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -6202,12 +6406,13 @@ "fileName": "src/apify_client.ts", "line": 340, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L340" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L340", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2089, + "target": 2290, "name": "StoreCollectionClient", "package": "apify-client" } @@ -6225,7 +6430,8 @@ "fileName": "src/apify_client.ts", "line": 259, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L259" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L259", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -6248,7 +6454,8 @@ "fileName": "src/apify_client.ts", "line": 259, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L259" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L259", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -6266,7 +6473,7 @@ ], "type": { "type": "reference", - "target": 2159, + "target": 2360, "name": "TaskClient", "package": "apify-client" } @@ -6284,7 +6491,8 @@ "fileName": "src/apify_client.ts", "line": 252, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L252" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L252", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -6307,12 +6515,13 @@ "fileName": "src/apify_client.ts", "line": 252, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L252" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L252", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2270, + "target": 2472, "name": "TaskCollectionClient", "package": "apify-client" } @@ -6330,7 +6539,8 @@ "fileName": "src/apify_client.ts", "line": 290, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L290" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L290", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -6353,7 +6563,8 @@ "fileName": "src/apify_client.ts", "line": 290, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L290" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L290", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -6372,7 +6583,7 @@ ], "type": { "type": "reference", - "target": 2335, + "target": 2537, "name": "UserClient", "package": "apify-client" } @@ -6390,7 +6601,8 @@ "fileName": "src/apify_client.ts", "line": 309, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L309" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L309", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -6413,7 +6625,8 @@ "fileName": "src/apify_client.ts", "line": 309, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L309" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L309", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -6431,7 +6644,7 @@ ], "type": { "type": "reference", - "target": 2491, + "target": 2693, "name": "WebhookClient", "package": "apify-client" } @@ -6449,7 +6662,8 @@ "fileName": "src/apify_client.ts", "line": 328, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L328" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L328", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -6472,7 +6686,8 @@ "fileName": "src/apify_client.ts", "line": 328, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L328" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L328", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -6490,7 +6705,7 @@ ], "type": { "type": "reference", - "target": 2640, + "target": 2842, "name": "WebhookDispatchClient", "package": "apify-client" } @@ -6508,7 +6723,8 @@ "fileName": "src/apify_client.ts", "line": 321, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L321" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L321", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -6531,12 +6747,13 @@ "fileName": "src/apify_client.ts", "line": 321, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L321" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L321", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2718, + "target": 2920, "name": "WebhookDispatchCollectionClient", "package": "apify-client" } @@ -6554,7 +6771,8 @@ "fileName": "src/apify_client.ts", "line": 302, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L302" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L302", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -6577,12 +6795,13 @@ "fileName": "src/apify_client.ts", "line": 302, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L302" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L302", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2584, + "target": 2786, "name": "WebhookCollectionClient", "package": "apify-client" } @@ -6612,19 +6831,20 @@ "fileName": "src/apify_client.ts", "line": 42, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L42" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L42", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 808, + "id": 812, "name": "BuildClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 853, + "id": 857, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -6636,7 +6856,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -6652,7 +6873,7 @@ } }, { - "id": 849, + "id": 853, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -6664,7 +6885,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -6678,7 +6900,7 @@ } }, { - "id": 854, + "id": 858, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -6690,7 +6912,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -6709,7 +6932,7 @@ } }, { - "id": 847, + "id": 851, "name": "id", "variant": "declaration", "kind": 1024, @@ -6722,7 +6945,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -6736,7 +6960,7 @@ } }, { - "id": 855, + "id": 859, "name": "params", "variant": "declaration", "kind": 1024, @@ -6749,7 +6973,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -6778,7 +7003,7 @@ } }, { - "id": 850, + "id": 854, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -6790,7 +7015,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -6804,7 +7030,7 @@ } }, { - "id": 851, + "id": 855, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -6816,7 +7042,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -6830,7 +7057,7 @@ } }, { - "id": 848, + "id": 852, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -6843,7 +7070,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -6857,7 +7085,7 @@ } }, { - "id": 852, + "id": 856, "name": "url", "variant": "declaration", "kind": 1024, @@ -6869,7 +7097,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -6883,7 +7112,7 @@ } }, { - "id": 815, + "id": 819, "name": "abort", "variant": "declaration", "kind": 2048, @@ -6893,12 +7122,13 @@ "fileName": "src/resource_clients/build.ts", "line": 39, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 816, + "id": 820, "name": "abort", "variant": "signature", "kind": 4096, @@ -6916,7 +7146,8 @@ "fileName": "src/resource_clients/build.ts", "line": 39, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -6928,7 +7159,7 @@ "typeArguments": [ { "type": "reference", - "target": 881, + "target": 885, "name": "Build", "package": "apify-client" } @@ -6940,7 +7171,7 @@ ] }, { - "id": 817, + "id": 821, "name": "delete", "variant": "declaration", "kind": 2048, @@ -6950,12 +7181,13 @@ "fileName": "src/resource_clients/build.ts", "line": 52, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L52" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L52", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 818, + "id": 822, "name": "delete", "variant": "signature", "kind": 4096, @@ -6973,7 +7205,8 @@ "fileName": "src/resource_clients/build.ts", "line": 52, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L52" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L52", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -6995,7 +7228,7 @@ ] }, { - "id": 812, + "id": 816, "name": "get", "variant": "declaration", "kind": 2048, @@ -7005,12 +7238,13 @@ "fileName": "src/resource_clients/build.ts", "line": 25, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 813, + "id": 817, "name": "get", "variant": "signature", "kind": 4096, @@ -7028,19 +7262,20 @@ "fileName": "src/resource_clients/build.ts", "line": 25, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 814, + "id": 818, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 873, + "target": 877, "name": "BuildClientGetOptions", "package": "apify-client" }, @@ -7063,7 +7298,7 @@ }, { "type": "reference", - "target": 881, + "target": 885, "name": "Build", "package": "apify-client" } @@ -7077,7 +7312,7 @@ ] }, { - "id": 819, + "id": 823, "name": "getOpenApiDefinition", "variant": "declaration", "kind": 2048, @@ -7087,12 +7322,13 @@ "fileName": "src/resource_clients/build.ts", "line": 59, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L59" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L59", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 820, + "id": 824, "name": "getOpenApiDefinition", "variant": "signature", "kind": 4096, @@ -7110,7 +7346,8 @@ "fileName": "src/resource_clients/build.ts", "line": 59, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L59" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L59", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7122,7 +7359,7 @@ "typeArguments": [ { "type": "reference", - "target": 909, + "target": 913, "name": "OpenApiDefinition", "package": "apify-client" } @@ -7134,7 +7371,7 @@ ] }, { - "id": 824, + "id": 828, "name": "log", "variant": "declaration", "kind": 2048, @@ -7144,12 +7381,13 @@ "fileName": "src/resource_clients/build.ts", "line": 94, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L94" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L94", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 825, + "id": 829, "name": "log", "variant": "signature", "kind": 4096, @@ -7167,12 +7405,13 @@ "fileName": "src/resource_clients/build.ts", "line": 94, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L94" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L94", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1423, + "target": 1427, "name": "LogClient", "package": "apify-client" } @@ -7180,7 +7419,7 @@ ] }, { - "id": 821, + "id": 825, "name": "waitForFinish", "variant": "declaration", "kind": 2048, @@ -7190,12 +7429,13 @@ "fileName": "src/resource_clients/build.ts", "line": 80, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L80" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L80", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 822, + "id": 826, "name": "waitForFinish", "variant": "signature", "kind": 4096, @@ -7253,19 +7493,20 @@ "fileName": "src/resource_clients/build.ts", "line": 80, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L80" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L80", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 823, + "id": 827, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 875, + "target": 879, "name": "BuildClientWaitForFinishOptions", "package": "apify-client" }, @@ -7281,7 +7522,7 @@ "typeArguments": [ { "type": "reference", - "target": 881, + "target": 885, "name": "Build", "package": "apify-client" } @@ -7296,11 +7537,11 @@ "groups": [ { "title": "Properties", - "children": [853, 849, 854, 847, 855, 850, 851, 848, 852] + "children": [857, 853, 858, 851, 859, 854, 855, 852, 856] }, { "title": "Methods", - "children": [815, 817, 812, 819, 824, 821] + "children": [819, 821, 816, 823, 828, 825] } ], "sources": [ @@ -7308,7 +7549,8 @@ "fileName": "src/resource_clients/build.ts", "line": 11, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L11" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L11", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -7324,14 +7566,14 @@ ] }, { - "id": 932, + "id": 936, "name": "BuildCollectionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 961, + "id": 965, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -7343,7 +7585,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7359,7 +7602,7 @@ } }, { - "id": 957, + "id": 961, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -7371,7 +7614,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7385,7 +7629,7 @@ } }, { - "id": 962, + "id": 966, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -7397,7 +7641,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7416,7 +7661,7 @@ } }, { - "id": 955, + "id": 959, "name": "id", "variant": "declaration", "kind": 1024, @@ -7429,7 +7674,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7443,7 +7689,7 @@ } }, { - "id": 963, + "id": 967, "name": "params", "variant": "declaration", "kind": 1024, @@ -7456,7 +7702,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7485,7 +7732,7 @@ } }, { - "id": 958, + "id": 962, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -7497,7 +7744,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7511,7 +7759,7 @@ } }, { - "id": 959, + "id": 963, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -7523,7 +7771,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7537,7 +7786,7 @@ } }, { - "id": 956, + "id": 960, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -7550,7 +7799,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7564,7 +7814,7 @@ } }, { - "id": 960, + "id": 964, "name": "url", "variant": "declaration", "kind": 1024, @@ -7576,7 +7826,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7590,7 +7841,7 @@ } }, { - "id": 936, + "id": 940, "name": "list", "variant": "declaration", "kind": 2048, @@ -7600,12 +7851,13 @@ "fileName": "src/resource_clients/build_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 937, + "id": 941, "name": "list", "variant": "signature", "kind": 4096, @@ -7623,19 +7875,20 @@ "fileName": "src/resource_clients/build_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 938, + "id": 942, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 981, + "target": 985, "name": "BuildCollectionClientListOptions", "package": "apify-client" }, @@ -7651,7 +7904,7 @@ "typeArguments": [ { "type": "reference", - "target": 986, + "target": 990, "name": "BuildCollectionClientListResult", "package": "apify-client" } @@ -7666,11 +7919,11 @@ "groups": [ { "title": "Properties", - "children": [961, 957, 962, 955, 963, 958, 959, 956, 960] + "children": [965, 961, 966, 959, 967, 962, 963, 960, 964] }, { "title": "Methods", - "children": [936] + "children": [940] } ], "sources": [ @@ -7678,7 +7931,8 @@ "fileName": "src/resource_clients/build_collection.ts", "line": 8, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build_collection.ts#L8" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build_collection.ts#L8", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -7694,14 +7948,14 @@ ] }, { - "id": 987, + "id": 991, "name": "DatasetClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1045, + "id": 1049, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -7713,7 +7967,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7729,7 +7984,7 @@ } }, { - "id": 1041, + "id": 1045, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -7741,7 +7996,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7755,7 +8011,7 @@ } }, { - "id": 1046, + "id": 1050, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -7767,7 +8023,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7786,7 +8043,7 @@ } }, { - "id": 1039, + "id": 1043, "name": "id", "variant": "declaration", "kind": 1024, @@ -7799,7 +8056,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7813,7 +8071,7 @@ } }, { - "id": 1047, + "id": 1051, "name": "params", "variant": "declaration", "kind": 1024, @@ -7826,7 +8084,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7855,7 +8114,7 @@ } }, { - "id": 1042, + "id": 1046, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -7867,7 +8126,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7881,7 +8141,7 @@ } }, { - "id": 1043, + "id": 1047, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -7893,7 +8153,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7907,7 +8168,7 @@ } }, { - "id": 1040, + "id": 1044, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -7920,7 +8181,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7934,7 +8196,7 @@ } }, { - "id": 1044, + "id": 1048, "name": "url", "variant": "declaration", "kind": 1024, @@ -7946,7 +8208,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -7960,7 +8223,7 @@ } }, { - "id": 1011, + "id": 1015, "name": "createItemsPublicUrl", "variant": "declaration", "kind": 2048, @@ -7970,12 +8233,13 @@ "fileName": "src/resource_clients/dataset.ts", "line": 181, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L181" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L181", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1012, + "id": 1016, "name": "createItemsPublicUrl", "variant": "signature", "kind": 4096, @@ -8017,19 +8281,20 @@ "fileName": "src/resource_clients/dataset.ts", "line": 181, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L181" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L181", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1013, + "id": 1017, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1105, + "target": 1109, "name": "DatasetClientCreateItemsUrlOptions", "package": "apify-client" }, @@ -8055,7 +8320,7 @@ ] }, { - "id": 997, + "id": 1001, "name": "delete", "variant": "declaration", "kind": 2048, @@ -8065,12 +8330,13 @@ "fileName": "src/resource_clients/dataset.ts", "line": 50, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L50" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L50", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 998, + "id": 1002, "name": "delete", "variant": "signature", "kind": 4096, @@ -8088,7 +8354,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 50, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L50" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L50", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -8110,7 +8377,7 @@ ] }, { - "id": 1002, + "id": 1006, "name": "downloadItems", "variant": "declaration", "kind": 2048, @@ -8120,12 +8387,13 @@ "fileName": "src/resource_clients/dataset.ts", "line": 91, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L91" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L91", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1003, + "id": 1007, "name": "downloadItems", "variant": "signature", "kind": 4096, @@ -8168,32 +8436,33 @@ "fileName": "src/resource_clients/dataset.ts", "line": 91, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L91" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L91", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1004, + "id": 1008, "name": "format", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1119, + "target": 1123, "name": "DownloadItemsFormat", "package": "apify-client" } }, { - "id": 1005, + "id": 1009, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1127, + "target": 1131, "name": "DatasetClientDownloadItemsOptions", "package": "apify-client" }, @@ -8225,7 +8494,7 @@ ] }, { - "id": 992, + "id": 996, "name": "get", "variant": "declaration", "kind": 2048, @@ -8235,12 +8504,13 @@ "fileName": "src/resource_clients/dataset.ts", "line": 34, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L34" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L34", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 993, + "id": 997, "name": "get", "variant": "signature", "kind": 4096, @@ -8258,7 +8528,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 34, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L34" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L34", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -8277,7 +8548,7 @@ }, { "type": "reference", - "target": 1066, + "target": 1070, "name": "Dataset", "package": "apify-client" } @@ -8291,7 +8562,7 @@ ] }, { - "id": 1009, + "id": 1013, "name": "getStatistics", "variant": "declaration", "kind": 2048, @@ -8301,12 +8572,13 @@ "fileName": "src/resource_clients/dataset.ts", "line": 153, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L153" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L153", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1010, + "id": 1014, "name": "getStatistics", "variant": "signature", "kind": 4096, @@ -8324,7 +8596,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 153, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L153" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L153", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -8343,7 +8616,7 @@ }, { "type": "reference", - "target": 1146, + "target": 1150, "name": "DatasetStatistics", "package": "apify-client" } @@ -8357,7 +8630,7 @@ ] }, { - "id": 999, + "id": 1003, "name": "listItems", "variant": "declaration", "kind": 2048, @@ -8367,12 +8640,13 @@ "fileName": "src/resource_clients/dataset.ts", "line": 57, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L57" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L57", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1000, + "id": 1004, "name": "listItems", "variant": "signature", "kind": 4096, @@ -8390,19 +8664,20 @@ "fileName": "src/resource_clients/dataset.ts", "line": 57, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L57" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L57", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1001, + "id": 1005, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1092, + "target": 1096, "name": "DatasetClientListItemOptions", "package": "apify-client" }, @@ -8422,7 +8697,7 @@ "typeArguments": [ { "type": "reference", - "target": 1065, + "target": 1069, "name": "Data", "package": "apify-client", "qualifiedName": "DatasetClient.Data", @@ -8440,7 +8715,7 @@ ] }, { - "id": 1006, + "id": 1010, "name": "pushItems", "variant": "declaration", "kind": 2048, @@ -8450,12 +8725,13 @@ "fileName": "src/resource_clients/dataset.ts", "line": 134, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L134" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L134", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1007, + "id": 1011, "name": "pushItems", "variant": "signature", "kind": 4096, @@ -8473,12 +8749,13 @@ "fileName": "src/resource_clients/dataset.ts", "line": 134, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L134" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L134", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1008, + "id": 1012, "name": "items", "variant": "param", "kind": 32768, @@ -8492,7 +8769,7 @@ }, { "type": "reference", - "target": 1065, + "target": 1069, "name": "Data", "package": "apify-client", "qualifiedName": "DatasetClient.Data", @@ -8509,7 +8786,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1065, + "target": 1069, "name": "Data", "package": "apify-client", "qualifiedName": "DatasetClient.Data", @@ -8539,7 +8816,7 @@ ] }, { - "id": 994, + "id": 998, "name": "update", "variant": "declaration", "kind": 2048, @@ -8549,12 +8826,13 @@ "fileName": "src/resource_clients/dataset.ts", "line": 41, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L41" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L41", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 995, + "id": 999, "name": "update", "variant": "signature", "kind": 4096, @@ -8572,19 +8850,20 @@ "fileName": "src/resource_clients/dataset.ts", "line": 41, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L41" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L41", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 996, + "id": 1000, "name": "newFields", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1088, + "target": 1092, "name": "DatasetClientUpdateOptions", "package": "apify-client" } @@ -8599,7 +8878,7 @@ "typeArguments": [ { "type": "reference", - "target": 1066, + "target": 1070, "name": "Dataset", "package": "apify-client" } @@ -8614,11 +8893,11 @@ "groups": [ { "title": "Properties", - "children": [1045, 1041, 1046, 1039, 1047, 1042, 1043, 1040, 1044] + "children": [1049, 1045, 1050, 1043, 1051, 1046, 1047, 1044, 1048] }, { "title": "Methods", - "children": [1011, 997, 1002, 992, 1009, 999, 1006, 994] + "children": [1015, 1001, 1006, 996, 1013, 1003, 1010, 998] } ], "sources": [ @@ -8626,12 +8905,13 @@ "fileName": "src/resource_clients/dataset.ts", "line": 18, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L18" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L18", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "typeParameters": [ { - "id": 1065, + "id": 1069, "name": "Data", "variant": "typeParam", "kind": 131072, @@ -8707,14 +8987,14 @@ ] }, { - "id": 1153, + "id": 1157, "name": "DatasetCollectionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1186, + "id": 1190, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -8726,7 +9006,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -8742,7 +9023,7 @@ } }, { - "id": 1182, + "id": 1186, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -8754,7 +9035,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -8768,7 +9050,7 @@ } }, { - "id": 1187, + "id": 1191, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -8780,7 +9062,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -8799,7 +9082,7 @@ } }, { - "id": 1180, + "id": 1184, "name": "id", "variant": "declaration", "kind": 1024, @@ -8812,7 +9095,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -8826,7 +9110,7 @@ } }, { - "id": 1188, + "id": 1192, "name": "params", "variant": "declaration", "kind": 1024, @@ -8839,7 +9123,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -8868,7 +9153,7 @@ } }, { - "id": 1183, + "id": 1187, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -8880,7 +9165,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -8894,7 +9180,7 @@ } }, { - "id": 1184, + "id": 1188, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -8906,7 +9192,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -8920,7 +9207,7 @@ } }, { - "id": 1181, + "id": 1185, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -8933,7 +9220,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -8947,7 +9235,7 @@ } }, { - "id": 1185, + "id": 1189, "name": "url", "variant": "declaration", "kind": 1024, @@ -8959,7 +9247,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -8973,7 +9262,7 @@ } }, { - "id": 1160, + "id": 1164, "name": "getOrCreate", "variant": "declaration", "kind": 2048, @@ -8983,12 +9272,13 @@ "fileName": "src/resource_clients/dataset_collection.ts", "line": 39, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset_collection.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset_collection.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1161, + "id": 1165, "name": "getOrCreate", "variant": "signature", "kind": 4096, @@ -9006,12 +9296,13 @@ "fileName": "src/resource_clients/dataset_collection.ts", "line": 39, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset_collection.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset_collection.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1162, + "id": 1166, "name": "name", "variant": "param", "kind": 32768, @@ -9024,7 +9315,7 @@ } }, { - "id": 1163, + "id": 1167, "name": "options", "variant": "param", "kind": 32768, @@ -9033,7 +9324,7 @@ }, "type": { "type": "reference", - "target": 1211, + "target": 1215, "name": "DatasetCollectionClientGetOrCreateOptions", "package": "apify-client" } @@ -9048,7 +9339,7 @@ "typeArguments": [ { "type": "reference", - "target": 1066, + "target": 1070, "name": "Dataset", "package": "apify-client" } @@ -9060,7 +9351,7 @@ ] }, { - "id": 1157, + "id": 1161, "name": "list", "variant": "declaration", "kind": 2048, @@ -9070,12 +9361,13 @@ "fileName": "src/resource_clients/dataset_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1158, + "id": 1162, "name": "list", "variant": "signature", "kind": 4096, @@ -9093,19 +9385,20 @@ "fileName": "src/resource_clients/dataset_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1159, + "id": 1163, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1206, + "target": 1210, "name": "DatasetCollectionClientListOptions", "package": "apify-client" }, @@ -9121,7 +9414,7 @@ "typeArguments": [ { "type": "reference", - "target": 1213, + "target": 1217, "name": "DatasetCollectionClientListResult", "package": "apify-client" } @@ -9136,11 +9429,11 @@ "groups": [ { "title": "Properties", - "children": [1186, 1182, 1187, 1180, 1188, 1183, 1184, 1181, 1185] + "children": [1190, 1186, 1191, 1184, 1192, 1187, 1188, 1185, 1189] }, { "title": "Methods", - "children": [1160, 1157] + "children": [1164, 1161] } ], "sources": [ @@ -9148,7 +9441,8 @@ "fileName": "src/resource_clients/dataset_collection.ts", "line": 8, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset_collection.ts#L8" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset_collection.ts#L8", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -9189,7 +9483,8 @@ "fileName": "src/interceptors.ts", "line": 24, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/interceptors.ts#L24" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/interceptors.ts#L24", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -9204,7 +9499,8 @@ "fileName": "src/interceptors.ts", "line": 24, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/interceptors.ts#L24" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/interceptors.ts#L24", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -9291,7 +9587,8 @@ "fileName": "src/interceptors.ts", "line": 22, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/interceptors.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/interceptors.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -9320,7 +9617,8 @@ "fileName": "src/interceptors.ts", "line": 18, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/interceptors.ts#L18" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/interceptors.ts#L18", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -9341,7 +9639,8 @@ { "fileName": "website/node_modules/typescript/lib/lib.es5.d.ts", "line": 1077, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -9367,7 +9666,8 @@ { "fileName": "website/node_modules/typescript/lib/lib.es5.d.ts", "line": 1076, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -9391,7 +9691,8 @@ "fileName": "src/interceptors.ts", "line": 20, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/interceptors.ts#L20" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/interceptors.ts#L20", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -9438,7 +9739,8 @@ { "fileName": "website/node_modules/typescript/lib/lib.es5.d.ts", "line": 1078, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -9505,7 +9807,8 @@ { "fileName": "node_modules/@types/node/globals.d.ts", "line": 68, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -9532,7 +9835,8 @@ { "fileName": "node_modules/@types/node/globals.d.ts", "line": 52, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -9633,7 +9937,8 @@ { "fileName": "node_modules/@types/node/globals.d.ts", "line": 52, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -9701,7 +10006,8 @@ { "fileName": "node_modules/@types/node/globals.d.ts", "line": 56, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -9732,7 +10038,8 @@ { "fileName": "node_modules/@types/node/globals.d.ts", "line": 56, - "character": 4 + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -9814,7 +10121,8 @@ "fileName": "src/interceptors.ts", "line": 17, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/interceptors.ts#L17" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/interceptors.ts#L17", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -9830,14 +10138,14 @@ ] }, { - "id": 1214, + "id": 1218, "name": "KeyValueStoreClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1278, + "id": 1282, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -9849,7 +10157,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -9865,7 +10174,7 @@ } }, { - "id": 1274, + "id": 1278, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -9877,7 +10186,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -9891,7 +10201,7 @@ } }, { - "id": 1279, + "id": 1283, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -9903,7 +10213,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -9922,7 +10233,7 @@ } }, { - "id": 1272, + "id": 1276, "name": "id", "variant": "declaration", "kind": 1024, @@ -9935,7 +10246,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -9949,7 +10261,7 @@ } }, { - "id": 1280, + "id": 1284, "name": "params", "variant": "declaration", "kind": 1024, @@ -9962,7 +10274,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -9991,7 +10304,7 @@ } }, { - "id": 1275, + "id": 1279, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -10003,7 +10316,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -10017,7 +10331,7 @@ } }, { - "id": 1276, + "id": 1280, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -10029,7 +10343,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -10043,7 +10358,7 @@ } }, { - "id": 1273, + "id": 1277, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -10056,7 +10371,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -10070,7 +10386,7 @@ } }, { - "id": 1277, + "id": 1281, "name": "url", "variant": "declaration", "kind": 1024, @@ -10082,7 +10398,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -10096,7 +10413,7 @@ } }, { - "id": 1231, + "id": 1235, "name": "createKeysPublicUrl", "variant": "declaration", "kind": 2048, @@ -10106,12 +10423,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 122, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L122" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L122", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1232, + "id": 1236, "name": "createKeysPublicUrl", "variant": "signature", "kind": 4096, @@ -10153,19 +10471,20 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 122, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L122" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L122", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1233, + "id": 1237, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1328, + "target": 1332, "name": "KeyValueClientCreateKeysUrlOptions", "package": "apify-client" }, @@ -10191,7 +10510,7 @@ ] }, { - "id": 1223, + "id": 1227, "name": "delete", "variant": "declaration", "kind": 2048, @@ -10201,12 +10520,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 60, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L60" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L60", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1224, + "id": 1228, "name": "delete", "variant": "signature", "kind": 4096, @@ -10224,7 +10544,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 60, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L60" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L60", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -10246,7 +10567,7 @@ ] }, { - "id": 1248, + "id": 1252, "name": "deleteRecord", "variant": "declaration", "kind": 2048, @@ -10256,12 +10577,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 314, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L314" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L314", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1249, + "id": 1253, "name": "deleteRecord", "variant": "signature", "kind": 4096, @@ -10279,12 +10601,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 314, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L314" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L314", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1250, + "id": 1254, "name": "key", "variant": "param", "kind": 32768, @@ -10314,7 +10637,7 @@ ] }, { - "id": 1218, + "id": 1222, "name": "get", "variant": "declaration", "kind": 2048, @@ -10324,12 +10647,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 44, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L44" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L44", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1219, + "id": 1223, "name": "get", "variant": "signature", "kind": 4096, @@ -10347,7 +10671,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 44, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L44" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L44", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -10366,7 +10691,7 @@ }, { "type": "reference", - "target": 1298, + "target": 1302, "name": "KeyValueStore", "package": "apify-client" } @@ -10380,7 +10705,7 @@ ] }, { - "id": 1237, + "id": 1241, "name": "getRecord", "variant": "declaration", "kind": 2048, @@ -10390,24 +10715,27 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 187, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L187" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L187", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" }, { "fileName": "src/resource_clients/key_value_store.ts", "line": 189, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L189" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L189", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" }, { "fileName": "src/resource_clients/key_value_store.ts", "line": 194, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L194" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L194", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1238, + "id": 1242, "name": "getRecord", "variant": "signature", "kind": 4096, @@ -10465,12 +10793,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 187, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L187" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L187", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1239, + "id": 1243, "name": "key", "variant": "param", "kind": 32768, @@ -10497,7 +10826,7 @@ }, { "type": "reference", - "target": 1350, + "target": 1354, "typeArguments": [ { "type": "reference", @@ -10520,7 +10849,7 @@ } }, { - "id": 1240, + "id": 1244, "name": "getRecord", "variant": "signature", "kind": 4096, @@ -10530,25 +10859,26 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 189, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L189" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L189", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "typeParameters": [ { - "id": 1241, + "id": 1245, "name": "Options", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1346, + "target": 1350, "name": "KeyValueClientGetRecordOptions", "package": "apify-client" }, "default": { "type": "reference", - "target": 1346, + "target": 1350, "name": "KeyValueClientGetRecordOptions", "package": "apify-client" } @@ -10556,7 +10886,7 @@ ], "parameters": [ { - "id": 1242, + "id": 1246, "name": "key", "variant": "param", "kind": 32768, @@ -10567,14 +10897,14 @@ } }, { - "id": 1243, + "id": 1247, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1241, + "target": 1245, "name": "Options", "package": "apify-client", "refersToTypeParameter": true @@ -10597,15 +10927,15 @@ }, { "type": "reference", - "target": 1350, + "target": 1354, "typeArguments": [ { "type": "reference", - "target": 1358, + "target": 1362, "typeArguments": [ { "type": "reference", - "target": 1241, + "target": 1245, "name": "Options", "package": "apify-client", "refersToTypeParameter": true @@ -10628,7 +10958,7 @@ ] }, { - "id": 1228, + "id": 1232, "name": "getRecordPublicUrl", "variant": "declaration", "kind": 2048, @@ -10638,12 +10968,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 95, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L95" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L95", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1229, + "id": 1233, "name": "getRecordPublicUrl", "variant": "signature", "kind": 4096, @@ -10661,12 +10992,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 95, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L95" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L95", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1230, + "id": 1234, "name": "key", "variant": "param", "kind": 32768, @@ -10696,7 +11028,7 @@ ] }, { - "id": 1225, + "id": 1229, "name": "listKeys", "variant": "declaration", "kind": 2048, @@ -10706,12 +11038,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 67, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L67" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L67", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1226, + "id": 1230, "name": "listKeys", "variant": "signature", "kind": 4096, @@ -10729,19 +11062,20 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 67, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L67" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L67", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1227, + "id": 1231, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1322, + "target": 1326, "name": "KeyValueClientListKeysOptions", "package": "apify-client" }, @@ -10757,7 +11091,7 @@ "typeArguments": [ { "type": "reference", - "target": 1335, + "target": 1339, "name": "KeyValueClientListKeysResult", "package": "apify-client" } @@ -10769,7 +11103,7 @@ ] }, { - "id": 1234, + "id": 1238, "name": "recordExists", "variant": "declaration", "kind": 2048, @@ -10779,12 +11113,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 161, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L161" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L161", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1235, + "id": 1239, "name": "recordExists", "variant": "signature", "kind": 4096, @@ -10825,12 +11160,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 161, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L161" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L161", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1236, + "id": 1240, "name": "key", "variant": "param", "kind": 32768, @@ -10868,7 +11204,7 @@ ] }, { - "id": 1244, + "id": 1248, "name": "setRecord", "variant": "declaration", "kind": 2048, @@ -10878,12 +11214,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 258, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L258" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L258", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1245, + "id": 1249, "name": "setRecord", "variant": "signature", "kind": 4096, @@ -10917,19 +11254,20 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 258, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L258" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L258", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1246, + "id": 1250, "name": "record", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1350, + "target": 1354, "typeArguments": [ { "type": "reference", @@ -10946,14 +11284,14 @@ } }, { - "id": 1247, + "id": 1251, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1355, + "target": 1359, "name": "KeyValueStoreRecordOptions", "package": "apify-client" }, @@ -10979,7 +11317,7 @@ ] }, { - "id": 1220, + "id": 1224, "name": "update", "variant": "declaration", "kind": 2048, @@ -10989,12 +11327,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 51, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L51" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L51", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1221, + "id": 1225, "name": "update", "variant": "signature", "kind": 4096, @@ -11012,19 +11351,20 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 51, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L51" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L51", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1222, + "id": 1226, "name": "newFields", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1318, + "target": 1322, "name": "KeyValueClientUpdateOptions", "package": "apify-client" } @@ -11039,7 +11379,7 @@ "typeArguments": [ { "type": "reference", - "target": 1298, + "target": 1302, "name": "KeyValueStore", "package": "apify-client" } @@ -11054,11 +11394,11 @@ "groups": [ { "title": "Properties", - "children": [1278, 1274, 1279, 1272, 1280, 1275, 1276, 1273, 1277] + "children": [1282, 1278, 1283, 1276, 1284, 1279, 1280, 1277, 1281] }, { "title": "Methods", - "children": [1231, 1223, 1248, 1218, 1237, 1228, 1225, 1234, 1244, 1220] + "children": [1235, 1227, 1252, 1222, 1241, 1232, 1229, 1238, 1248, 1224] } ], "sources": [ @@ -11066,7 +11406,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 30, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L30" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L30", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -11082,14 +11423,14 @@ ] }, { - "id": 1360, + "id": 1364, "name": "KeyValueStoreCollectionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1393, + "id": 1397, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -11101,7 +11442,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11117,7 +11459,7 @@ } }, { - "id": 1389, + "id": 1393, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -11129,7 +11471,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11143,7 +11486,7 @@ } }, { - "id": 1394, + "id": 1398, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -11155,7 +11498,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11174,7 +11518,7 @@ } }, { - "id": 1387, + "id": 1391, "name": "id", "variant": "declaration", "kind": 1024, @@ -11187,7 +11531,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11201,7 +11546,7 @@ } }, { - "id": 1395, + "id": 1399, "name": "params", "variant": "declaration", "kind": 1024, @@ -11214,7 +11559,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11243,7 +11589,7 @@ } }, { - "id": 1390, + "id": 1394, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -11255,7 +11601,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11269,7 +11616,7 @@ } }, { - "id": 1391, + "id": 1395, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -11281,7 +11628,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11295,7 +11643,7 @@ } }, { - "id": 1388, + "id": 1392, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -11308,7 +11656,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11322,7 +11671,7 @@ } }, { - "id": 1392, + "id": 1396, "name": "url", "variant": "declaration", "kind": 1024, @@ -11334,7 +11683,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11348,7 +11698,7 @@ } }, { - "id": 1367, + "id": 1371, "name": "getOrCreate", "variant": "declaration", "kind": 2048, @@ -11358,12 +11708,13 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 41, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L41" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L41", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1368, + "id": 1372, "name": "getOrCreate", "variant": "signature", "kind": 4096, @@ -11381,12 +11732,13 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 41, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L41" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L41", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1369, + "id": 1373, "name": "name", "variant": "param", "kind": 32768, @@ -11399,7 +11751,7 @@ } }, { - "id": 1370, + "id": 1374, "name": "options", "variant": "param", "kind": 32768, @@ -11408,7 +11760,7 @@ }, "type": { "type": "reference", - "target": 1418, + "target": 1422, "name": "KeyValueStoreCollectionClientGetOrCreateOptions", "package": "apify-client" } @@ -11423,7 +11775,7 @@ "typeArguments": [ { "type": "reference", - "target": 1298, + "target": 1302, "name": "KeyValueStore", "package": "apify-client" } @@ -11435,7 +11787,7 @@ ] }, { - "id": 1364, + "id": 1368, "name": "list", "variant": "declaration", "kind": 2048, @@ -11445,12 +11797,13 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1365, + "id": 1369, "name": "list", "variant": "signature", "kind": 4096, @@ -11468,19 +11821,20 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1366, + "id": 1370, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1413, + "target": 1417, "name": "KeyValueStoreCollectionClientListOptions", "package": "apify-client" }, @@ -11500,7 +11854,7 @@ "typeArguments": [ { "type": "reference", - "target": 1420, + "target": 1424, "name": "KeyValueStoreCollectionListResult", "package": "apify-client" } @@ -11519,11 +11873,11 @@ "groups": [ { "title": "Properties", - "children": [1393, 1389, 1394, 1387, 1395, 1390, 1391, 1388, 1392] + "children": [1397, 1393, 1398, 1391, 1399, 1394, 1395, 1392, 1396] }, { "title": "Methods", - "children": [1367, 1364] + "children": [1371, 1368] } ], "sources": [ @@ -11531,7 +11885,8 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 8, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L8" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L8", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -11547,14 +11902,14 @@ ] }, { - "id": 1423, + "id": 1427, "name": "LogClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1458, + "id": 1464, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -11566,7 +11921,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11582,7 +11938,7 @@ } }, { - "id": 1454, + "id": 1460, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -11594,7 +11950,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11608,7 +11965,7 @@ } }, { - "id": 1459, + "id": 1465, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -11620,7 +11977,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11639,7 +11997,7 @@ } }, { - "id": 1452, + "id": 1458, "name": "id", "variant": "declaration", "kind": 1024, @@ -11652,7 +12010,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11666,7 +12025,7 @@ } }, { - "id": 1460, + "id": 1466, "name": "params", "variant": "declaration", "kind": 1024, @@ -11679,7 +12038,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11708,7 +12068,7 @@ } }, { - "id": 1455, + "id": 1461, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -11720,7 +12080,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11734,7 +12095,7 @@ } }, { - "id": 1456, + "id": 1462, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -11746,7 +12107,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11760,7 +12122,7 @@ } }, { - "id": 1453, + "id": 1459, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -11773,7 +12135,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11787,7 +12150,7 @@ } }, { - "id": 1457, + "id": 1463, "name": "url", "variant": "declaration", "kind": 1024, @@ -11799,7 +12162,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -11813,7 +12177,7 @@ } }, { - "id": 1427, + "id": 1431, "name": "get", "variant": "declaration", "kind": 2048, @@ -11821,14 +12185,15 @@ "sources": [ { "fileName": "src/resource_clients/log.ts", - "line": 23, + "line": 29, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/log.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1428, + "id": 1432, "name": "get", "variant": "signature", "kind": 4096, @@ -11844,9 +12209,26 @@ "sources": [ { "fileName": "src/resource_clients/log.ts", - "line": 23, + "line": 29, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/log.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1433, + "name": "options", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 1484, + "name": "LogOptions", + "package": "apify-client" + }, + "defaultValue": "{}" } ], "type": { @@ -11877,7 +12259,7 @@ ] }, { - "id": 1429, + "id": 1434, "name": "stream", "variant": "declaration", "kind": 2048, @@ -11885,14 +12267,15 @@ "sources": [ { "fileName": "src/resource_clients/log.ts", - "line": 44, + "line": 50, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/log.ts#L44" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L50", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1430, + "id": 1435, "name": "stream", "variant": "signature", "kind": 4096, @@ -11901,16 +12284,5303 @@ "summary": [ { "kind": "text", - "text": "Gets the log in a Readable stream format. Only works in Node.js.\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log" + "text": "Gets the log in a Readable stream format. Only works in Node.js.\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log" + } + ] + }, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 50, + "character": 10, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L50", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1436, + "name": "options", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 1484, + "name": "LogOptions", + "package": "apify-client" + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/stream.d.ts", + "qualifiedName": "Stream.Readable" + }, + "name": "Readable", + "package": "@types/node", + "qualifiedName": "Stream.Readable" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + } + ], + "groups": [ + { + "title": "Properties", + "children": [1464, 1460, 1465, 1458, 1466, 1461, 1462, 1459, 1463] + }, + { + "title": "Methods", + "children": [1431, 1434] + } + ], + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 15, + "character": 13, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L15", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "../src/base/resource_client.ts", + "qualifiedName": "ResourceClient" + }, + "name": "ResourceClient", + "package": "apify-client" + } + ] + }, + { + "id": 1486, + "name": "LoggerActorRedirect", + "variant": "declaration", + "kind": 128, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Logger for redirected actor logs." + } + ] + }, + "children": [ + { + "id": 1531, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": {}, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 83, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L83", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1532, + "name": "new LoggerActorRedirect", + "variant": "signature", + "kind": 16384, + "flags": {}, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 83, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L83", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1533, + "name": "options", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1534, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 83, + "character": 26, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L83", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ] + } + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "reference", + "target": 1486, + "name": "LoggerActorRedirect", + "package": "apify-client" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "Logger.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "Logger.constructor" + } + }, + { + "id": 1529, + "name": "captureRejections", + "variant": "declaration", + "kind": 1024, + "flags": { + "isStatic": true, + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Value: [boolean](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type)\n\nChange the default " + }, + { + "kind": "code", + "text": "`captureRejections`" + }, + { + "kind": "text", + "text": " option on all new " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": " objects." + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v13.4.0, v12.16.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 425, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.captureRejections" + } + }, + { + "id": 1528, + "name": "captureRejectionSymbol", + "variant": "declaration", + "kind": 1024, + "flags": { + "isStatic": true, + "isExternal": true, + "isReadonly": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Value: " + }, + { + "kind": "code", + "text": "`Symbol.for('nodejs.rejection')`" + }, + { + "kind": "text", + "text": "\n\nSee how to write a custom " + }, + { + "kind": "code", + "text": "`rejection handler`" + }, + { + "kind": "text", + "text": "." + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v13.4.0, v12.16.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 418, + "character": 24, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "query", + "queryType": { + "type": "reference", + "target": 1528, + "name": "captureRejectionSymbol", + "package": "@types/node", + "qualifiedName": "EventEmitter.captureRejectionSymbol" + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.captureRejectionSymbol" + } + }, + { + "id": 1530, + "name": "defaultMaxListeners", + "variant": "declaration", + "kind": 1024, + "flags": { + "isStatic": true, + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "By default, a maximum of " + }, + { + "kind": "code", + "text": "`10`" + }, + { + "kind": "text", + "text": " listeners can be registered for any single\nevent. This limit can be changed for individual " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": " instances\nusing the " + }, + { + "kind": "code", + "text": "`emitter.setMaxListeners(n)`" + }, + { + "kind": "text", + "text": " method. To change the default\nfor _all_" + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": " instances, the " + }, + { + "kind": "code", + "text": "`events.defaultMaxListeners`" + }, + { + "kind": "text", + "text": " property\ncan be used. If this value is not a positive number, a " + }, + { + "kind": "code", + "text": "`RangeError`" + }, + { + "kind": "text", + "text": " is thrown.\n\nTake caution when setting the " + }, + { + "kind": "code", + "text": "`events.defaultMaxListeners`" + }, + { + "kind": "text", + "text": " because the\nchange affects _all_ " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": " instances, including those created before\nthe change is made. However, calling " + }, + { + "kind": "code", + "text": "`emitter.setMaxListeners(n)`" + }, + { + "kind": "text", + "text": " still has\nprecedence over " + }, + { + "kind": "code", + "text": "`events.defaultMaxListeners`" + }, + { + "kind": "text", + "text": ".\n\nThis is not a hard limit. The " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": " instance will allow\nmore listeners to be added but will output a trace warning to stderr indicating\nthat a \"possible EventEmitter memory leak\" has been detected. For any single\n" + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": ", the " + }, + { + "kind": "code", + "text": "`emitter.getMaxListeners()`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`emitter.setMaxListeners()`" + }, + { + "kind": "text", + "text": " methods can be used to\ntemporarily avoid this warning:\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { EventEmitter } from 'node:events';\nconst emitter = new EventEmitter();\nemitter.setMaxListeners(emitter.getMaxListeners() + 1);\nemitter.once('event', () => {\n // do stuff\n emitter.setMaxListeners(Math.max(emitter.getMaxListeners() - 1, 0));\n});\n```" + }, + { + "kind": "text", + "text": "\n\nThe " + }, + { + "kind": "code", + "text": "`--trace-warnings`" + }, + { + "kind": "text", + "text": " command-line flag can be used to display the\nstack trace for such warnings.\n\nThe emitted warning can be inspected with " + }, + { + "kind": "code", + "text": "`process.on('warning')`" + }, + { + "kind": "text", + "text": " and will\nhave the additional " + }, + { + "kind": "code", + "text": "`emitter`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`type`" + }, + { + "kind": "text", + "text": ", and " + }, + { + "kind": "code", + "text": "`count`" + }, + { + "kind": "text", + "text": " properties, referring to\nthe event emitter instance, the event's name and the number of attached\nlisteners, respectively.\nIts " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": " property is set to " + }, + { + "kind": "code", + "text": "`'MaxListenersExceededWarning'`" + }, + { + "kind": "text", + "text": "." + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v0.11.2" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 464, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.defaultMaxListeners" + } + }, + { + "id": 1527, + "name": "errorMonitor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isStatic": true, + "isExternal": true, + "isReadonly": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This symbol shall be used to install a listener for only monitoring " + }, + { + "kind": "code", + "text": "`'error'`" + }, + { + "kind": "text", + "text": " events. Listeners installed using this symbol are called before the regular " + }, + { + "kind": "code", + "text": "`'error'`" + }, + { + "kind": "text", + "text": " listeners are called.\n\nInstalling a listener using this symbol does not change the behavior once an " + }, + { + "kind": "code", + "text": "`'error'`" + }, + { + "kind": "text", + "text": " event is emitted. Therefore, the process will still crash if no\nregular " + }, + { + "kind": "code", + "text": "`'error'`" + }, + { + "kind": "text", + "text": " listener is installed." + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v13.6.0, v12.17.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 411, + "character": 24, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "query", + "queryType": { + "type": "reference", + "target": 1527, + "name": "errorMonitor", + "package": "@types/node", + "qualifiedName": "EventEmitter.errorMonitor" + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.errorMonitor" + } + }, + { + "id": 1535, + "name": "_log", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 87, + "character": 13, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L87", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1536, + "name": "_log", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 87, + "character": 13, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L87", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1537, + "name": "level", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "LogLevel" + }, + "name": "LogLevel", + "package": "@apify/log" + } + }, + { + "id": 1538, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1539, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 1540, + "name": "exception", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "unknown" + } + }, + { + "id": 1541, + "name": "opts", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record", + "package": "typescript" + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "Logger._log" + } + } + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "Logger._log" + } + }, + { + "id": 1548, + "name": "_outputWithConsole", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@apify/log/cjs/index.d.ts", + "line": 49, + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1549, + "name": "_outputWithConsole", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@apify/log/cjs/index.d.ts", + "line": 49, + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1550, + "name": "level", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "LogLevel" + }, + "name": "LogLevel", + "package": "@apify/log" + } + }, + { + "id": 1551, + "name": "line", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger._outputWithConsole" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger._outputWithConsole" + } + }, + { + "id": 1557, + "name": "[captureRejectionSymbol]", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isOptional": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 103, + "character": 8, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1558, + "name": "[captureRejectionSymbol]", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 103, + "character": 8, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "typeParameters": [ + { + "id": 1559, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": { + "isExternal": true + } + } + ], + "parameters": [ + { + "id": 1560, + "name": "error", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Error" + }, + "name": "Error", + "package": "typescript" + } + }, + { + "id": 1561, + "name": "event", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 1562, + "name": "args", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "AnyRest" + }, + "name": "AnyRest", + "package": "@types/node" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.[captureRejectionSymbol]" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.[captureRejectionSymbol]" + } + }, + { + "id": 1563, + "name": "addListener", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 642, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1564, + "name": "addListener", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Alias for " + }, + { + "kind": "code", + "text": "`emitter.on(eventName, listener)`" + }, + { + "kind": "text", + "text": "." + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v0.1.26" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 642, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "typeParameters": [ + { + "id": 1565, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": { + "isExternal": true + } + } + ], + "parameters": [ + { + "id": 1566, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 1567, + "name": "listener", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1568, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1569, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1570, + "name": "args", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.addListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.addListener" + } + }, + { + "id": 1619, + "name": "emit", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 904, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1620, + "name": "emit", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Synchronously calls each of the listeners registered for the event named " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": ", in the order they were registered, passing the supplied arguments\nto each.\n\nReturns " + }, + { + "kind": "code", + "text": "`true`" + }, + { + "kind": "text", + "text": " if the event had listeners, " + }, + { + "kind": "code", + "text": "`false`" + }, + { + "kind": "text", + "text": " otherwise.\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { EventEmitter } from 'node:events';\nconst myEmitter = new EventEmitter();\n\n// First listener\nmyEmitter.on('event', function firstListener() {\n console.log('Helloooo! first listener');\n});\n// Second listener\nmyEmitter.on('event', function secondListener(arg1, arg2) {\n console.log(`event with parameters ${arg1}, ${arg2} in second listener`);\n});\n// Third listener\nmyEmitter.on('event', function thirdListener(...args) {\n const parameters = args.join(', ');\n console.log(`event with parameters ${parameters} in third listener`);\n});\n\nconsole.log(myEmitter.listeners('event'));\n\nmyEmitter.emit('event', 1, 2, 3, 4, 5);\n\n// Prints:\n// [\n// [Function: firstListener],\n// [Function: secondListener],\n// [Function: thirdListener]\n// ]\n// Helloooo! first listener\n// event with parameters 1, 2 in second listener\n// event with parameters 1, 2, 3, 4, 5 in third listener\n```" + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v0.1.26" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 904, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "typeParameters": [ + { + "id": 1621, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": { + "isExternal": true + } + } + ], + "parameters": [ + { + "id": 1622, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 1623, + "name": "args", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "AnyRest" + }, + "name": "AnyRest", + "package": "@types/node" + } + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.emit" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.emit" + } + }, + { + "id": 1645, + "name": "eventNames", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 967, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1646, + "name": "eventNames", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Returns an array listing the events for which the emitter has registered\nlisteners. The values in the array are strings or " + }, + { + "kind": "code", + "text": "`Symbol`" + }, + { + "kind": "text", + "text": "s.\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { EventEmitter } from 'node:events';\n\nconst myEE = new EventEmitter();\nmyEE.on('foo', () => {});\nmyEE.on('bar', () => {});\n\nconst sym = Symbol('symbol');\nmyEE.on(sym, () => {});\n\nconsole.log(myEE.eventNames());\n// Prints: [ 'foo', 'bar', Symbol(symbol) ]\n```" + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v6.0.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 967, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.eventNames" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.eventNames" + } + }, + { + "id": 1609, + "name": "getMaxListeners", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 819, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1610, + "name": "getMaxListeners", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Returns the current max listener value for the " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": " which is either\nset by " + }, + { + "kind": "code", + "text": "`emitter.setMaxListeners(n)`" + }, + { + "kind": "text", + "text": " or defaults to " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "EventEmitter.defaultMaxListeners", + "target": 1530 + }, + { + "kind": "text", + "text": "." + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v1.0.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 819, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.getMaxListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.getMaxListeners" + } + }, + { + "id": 1546, + "name": "getOptions", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@apify/log/cjs/index.d.ts", + "line": 48, + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1547, + "name": "getOptions", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@apify/log/cjs/index.d.ts", + "line": 48, + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record", + "package": "typescript" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.getOptions" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.getOptions" + } + }, + { + "id": 1624, + "name": "listenerCount", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 913, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1625, + "name": "listenerCount", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Returns the number of listeners listening for the event named " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": ".\nIf " + }, + { + "kind": "code", + "text": "`listener`" + }, + { + "kind": "text", + "text": " is provided, it will return how many times the listener is found\nin the list of the listeners of the event." + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v3.2.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 913, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "typeParameters": [ + { + "id": 1626, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": { + "isExternal": true + } + } + ], + "parameters": [ + { + "id": 1627, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the event being listened for" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 1628, + "name": "listener", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The event handler function" + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Function" + }, + "name": "Function", + "package": "typescript" + } + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.listenerCount" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.listenerCount" + } + }, + { + "id": 1611, + "name": "listeners", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 832, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1612, + "name": "listeners", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Returns a copy of the array of listeners for the event named " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": ".\n\n" + }, + { + "kind": "code", + "text": "```js\nserver.on('connection', (stream) => {\n console.log('someone connected!');\n});\nconsole.log(util.inspect(server.listeners('connection')));\n// Prints: [ [Function] ]\n```" + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v0.1.26" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 832, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "typeParameters": [ + { + "id": 1613, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": { + "isExternal": true + } + } + ], + "parameters": [ + { + "id": 1614, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Function" + }, + "name": "Function", + "package": "typescript" + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.listeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.listeners" + } + }, + { + "id": 1552, + "name": "log", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@apify/log/cjs/index.d.ts", + "line": 51, + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1553, + "name": "log", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@apify/log/cjs/index.d.ts", + "line": 51, + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1554, + "name": "level", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "LogLevel" + }, + "name": "LogLevel", + "package": "@apify/log" + } + }, + { + "id": 1555, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1556, + "name": "args", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.log" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.log" + } + }, + { + "id": 1595, + "name": "off", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 792, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1596, + "name": "off", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Alias for " + }, + { + "kind": "code", + "text": "`emitter.removeListener()`" + }, + { + "kind": "text", + "text": "." + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v10.0.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 792, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "typeParameters": [ + { + "id": 1597, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": { + "isExternal": true + } + } + ], + "parameters": [ + { + "id": 1598, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 1599, + "name": "listener", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1600, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1601, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1602, + "name": "args", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.off" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.off" + } + }, + { + "id": 1571, + "name": "on", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 674, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1572, + "name": "on", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Adds the " + }, + { + "kind": "code", + "text": "`listener`" + }, + { + "kind": "text", + "text": " function to the end of the listeners array for the event\nnamed " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": ". No checks are made to see if the " + }, + { + "kind": "code", + "text": "`listener`" + }, + { + "kind": "text", + "text": " has already\nbeen added. Multiple calls passing the same combination of " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": " and\n" + }, + { + "kind": "code", + "text": "`listener`" + }, + { + "kind": "text", + "text": " will result in the " + }, + { + "kind": "code", + "text": "`listener`" + }, + { + "kind": "text", + "text": " being added, and called, multiple times.\n\n" + }, + { + "kind": "code", + "text": "```js\nserver.on('connection', (stream) => {\n console.log('someone connected!');\n});\n```" + }, + { + "kind": "text", + "text": "\n\nReturns a reference to the " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": ", so that calls can be chained.\n\nBy default, event listeners are invoked in the order they are added. The " + }, + { + "kind": "code", + "text": "`emitter.prependListener()`" + }, + { + "kind": "text", + "text": " method can be used as an alternative to add the\nevent listener to the beginning of the listeners array.\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { EventEmitter } from 'node:events';\nconst myEE = new EventEmitter();\nmyEE.on('foo', () => console.log('a'));\nmyEE.prependListener('foo', () => console.log('b'));\nmyEE.emit('foo');\n// Prints:\n// b\n// a\n```" + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v0.1.101" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 674, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "typeParameters": [ + { + "id": 1573, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": { + "isExternal": true + } + } + ], + "parameters": [ + { + "id": 1574, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the event." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 1575, + "name": "listener", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The callback function" + } + ] + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1576, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1577, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1578, + "name": "args", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.on" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.on" + } + }, + { + "id": 1579, + "name": "once", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 704, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1580, + "name": "once", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Adds a **one-time** " + }, + { + "kind": "code", + "text": "`listener`" + }, + { + "kind": "text", + "text": " function for the event named " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": ". The\nnext time " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": " is triggered, this listener is removed and then invoked.\n\n" + }, + { + "kind": "code", + "text": "```js\nserver.once('connection', (stream) => {\n console.log('Ah, we have our first user!');\n});\n```" + }, + { + "kind": "text", + "text": "\n\nReturns a reference to the " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": ", so that calls can be chained.\n\nBy default, event listeners are invoked in the order they are added. The " + }, + { + "kind": "code", + "text": "`emitter.prependOnceListener()`" + }, + { + "kind": "text", + "text": " method can be used as an alternative to add the\nevent listener to the beginning of the listeners array.\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { EventEmitter } from 'node:events';\nconst myEE = new EventEmitter();\nmyEE.once('foo', () => console.log('a'));\nmyEE.prependOnceListener('foo', () => console.log('b'));\nmyEE.emit('foo');\n// Prints:\n// b\n// a\n```" + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v0.3.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 704, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "typeParameters": [ + { + "id": 1581, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": { + "isExternal": true + } + } + ], + "parameters": [ + { + "id": 1582, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the event." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 1583, + "name": "listener", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The callback function" + } + ] + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1584, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1585, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1586, + "name": "args", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.once" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.once" + } + }, + { + "id": 1629, + "name": "prependListener", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 931, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1630, + "name": "prependListener", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Adds the " + }, + { + "kind": "code", + "text": "`listener`" + }, + { + "kind": "text", + "text": " function to the _beginning_ of the listeners array for the\nevent named " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": ". No checks are made to see if the " + }, + { + "kind": "code", + "text": "`listener`" + }, + { + "kind": "text", + "text": " has\nalready been added. Multiple calls passing the same combination of " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": "\nand " + }, + { + "kind": "code", + "text": "`listener`" + }, + { + "kind": "text", + "text": " will result in the " + }, + { + "kind": "code", + "text": "`listener`" + }, + { + "kind": "text", + "text": " being added, and called, multiple times.\n\n" + }, + { + "kind": "code", + "text": "```js\nserver.prependListener('connection', (stream) => {\n console.log('someone connected!');\n});\n```" + }, + { + "kind": "text", + "text": "\n\nReturns a reference to the " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": ", so that calls can be chained." + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v6.0.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 931, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "typeParameters": [ + { + "id": 1631, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": { + "isExternal": true + } + } + ], + "parameters": [ + { + "id": 1632, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the event." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 1633, + "name": "listener", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The callback function" + } + ] + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1634, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1635, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1636, + "name": "args", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.prependListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.prependListener" + } + }, + { + "id": 1637, + "name": "prependOnceListener", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 947, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1638, + "name": "prependOnceListener", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Adds a **one-time**" + }, + { + "kind": "code", + "text": "`listener`" + }, + { + "kind": "text", + "text": " function for the event named " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": " to the _beginning_ of the listeners array. The next time " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": " is triggered, this\nlistener is removed, and then invoked.\n\n" + }, + { + "kind": "code", + "text": "```js\nserver.prependOnceListener('connection', (stream) => {\n console.log('Ah, we have our first user!');\n});\n```" + }, + { + "kind": "text", + "text": "\n\nReturns a reference to the " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": ", so that calls can be chained." + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v6.0.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 947, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "typeParameters": [ + { + "id": 1639, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": { + "isExternal": true + } + } + ], + "parameters": [ + { + "id": 1640, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the event." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 1641, + "name": "listener", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The callback function" + } + ] + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1642, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1643, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1644, + "name": "args", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.prependOnceListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.prependOnceListener" + } + }, + { + "id": 1615, + "name": "rawListeners", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 863, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1616, + "name": "rawListeners", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Returns a copy of the array of listeners for the event named " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": ",\nincluding any wrappers (such as those created by " + }, + { + "kind": "code", + "text": "`.once()`" + }, + { + "kind": "text", + "text": ").\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { EventEmitter } from 'node:events';\nconst emitter = new EventEmitter();\nemitter.once('log', () => console.log('log once'));\n\n// Returns a new Array with a function `onceWrapper` which has a property\n// `listener` which contains the original listener bound above\nconst listeners = emitter.rawListeners('log');\nconst logFnWrapper = listeners[0];\n\n// Logs \"log once\" to the console and does not unbind the `once` event\nlogFnWrapper.listener();\n\n// Logs \"log once\" to the console and removes the listener\nlogFnWrapper();\n\nemitter.on('log', () => console.log('log persistently'));\n// Will return a new Array with a single function bound by `.on()` above\nconst newListeners = emitter.rawListeners('log');\n\n// Logs \"log persistently\" twice\nnewListeners[0]();\nemitter.emit('log');\n```" + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v9.4.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 863, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "typeParameters": [ + { + "id": 1617, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": { + "isExternal": true + } + } + ], + "parameters": [ + { + "id": 1618, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Function" + }, + "name": "Function", + "package": "typescript" + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.rawListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.rawListeners" + } + }, + { + "id": 1603, + "name": "removeAllListeners", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 803, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1604, + "name": "removeAllListeners", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Removes all listeners, or those of the specified " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": ".\n\nIt is bad practice to remove listeners added elsewhere in the code,\nparticularly when the " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": " instance was created by some other\ncomponent or module (e.g. sockets or file streams).\n\nReturns a reference to the " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": ", so that calls can be chained." + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v0.1.26" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 803, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1605, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.removeAllListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.removeAllListeners" + } + }, + { + "id": 1587, + "name": "removeListener", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 787, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1588, + "name": "removeListener", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Removes the specified " + }, + { + "kind": "code", + "text": "`listener`" + }, + { + "kind": "text", + "text": " from the listener array for the event named " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": ".\n\n" + }, + { + "kind": "code", + "text": "```js\nconst callback = (stream) => {\n console.log('someone connected!');\n};\nserver.on('connection', callback);\n// ...\nserver.removeListener('connection', callback);\n```" + }, + { + "kind": "text", + "text": "\n\n" + }, + { + "kind": "code", + "text": "`removeListener()`" + }, + { + "kind": "text", + "text": " will remove, at most, one instance of a listener from the\nlistener array. If any single listener has been added multiple times to the\nlistener array for the specified " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": ", then " + }, + { + "kind": "code", + "text": "`removeListener()`" + }, + { + "kind": "text", + "text": " must be\ncalled multiple times to remove each instance.\n\nOnce an event is emitted, all listeners attached to it at the\ntime of emitting are called in order. This implies that any " + }, + { + "kind": "code", + "text": "`removeListener()`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`removeAllListeners()`" + }, + { + "kind": "text", + "text": " calls _after_ emitting and _before_ the last listener finishes execution\nwill not remove them from" + }, + { + "kind": "code", + "text": "`emit()`" + }, + { + "kind": "text", + "text": " in progress. Subsequent events behave as expected.\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { EventEmitter } from 'node:events';\nclass MyEmitter extends EventEmitter {}\nconst myEmitter = new MyEmitter();\n\nconst callbackA = () => {\n console.log('A');\n myEmitter.removeListener('event', callbackB);\n};\n\nconst callbackB = () => {\n console.log('B');\n};\n\nmyEmitter.on('event', callbackA);\n\nmyEmitter.on('event', callbackB);\n\n// callbackA removes listener callbackB but it will still be called.\n// Internal listener array at time of emit [callbackA, callbackB]\nmyEmitter.emit('event');\n// Prints:\n// A\n// B\n\n// callbackB is now removed.\n// Internal listener array [callbackA]\nmyEmitter.emit('event');\n// Prints:\n// A\n```" + }, + { + "kind": "text", + "text": "\n\nBecause listeners are managed using an internal array, calling this will\nchange the position indices of any listener registered _after_ the listener\nbeing removed. This will not impact the order in which listeners are called,\nbut it means that any copies of the listener array as returned by\nthe " + }, + { + "kind": "code", + "text": "`emitter.listeners()`" + }, + { + "kind": "text", + "text": " method will need to be recreated.\n\nWhen a single function has been added as a handler multiple times for a single\nevent (as in the example below), " + }, + { + "kind": "code", + "text": "`removeListener()`" + }, + { + "kind": "text", + "text": " will remove the most\nrecently added instance. In the example the " + }, + { + "kind": "code", + "text": "`once('ping')`" + }, + { + "kind": "text", + "text": " listener is removed:\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { EventEmitter } from 'node:events';\nconst ee = new EventEmitter();\n\nfunction pong() {\n console.log('pong');\n}\n\nee.on('ping', pong);\nee.once('ping', pong);\nee.removeListener('ping', pong);\n\nee.emit('ping');\nee.emit('ping');\n```" + }, + { + "kind": "text", + "text": "\n\nReturns a reference to the " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": ", so that calls can be chained." + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v0.1.26" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 787, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "typeParameters": [ + { + "id": 1589, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": { + "isExternal": true + } + } + ], + "parameters": [ + { + "id": 1590, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 1591, + "name": "listener", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1592, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1593, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 84, + "character": 42, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1594, + "name": "args", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.removeListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.removeListener" + } + }, + { + "id": 1606, + "name": "setMaxListeners", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 813, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1607, + "name": "setMaxListeners", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "By default " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": "s will print a warning if more than " + }, + { + "kind": "code", + "text": "`10`" + }, + { + "kind": "text", + "text": " listeners are\nadded for a particular event. This is a useful default that helps finding\nmemory leaks. The " + }, + { + "kind": "code", + "text": "`emitter.setMaxListeners()`" + }, + { + "kind": "text", + "text": " method allows the limit to be\nmodified for this specific " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": " instance. The value can be set to " + }, + { + "kind": "code", + "text": "`Infinity`" + }, + { + "kind": "text", + "text": " (or " + }, + { + "kind": "code", + "text": "`0`" + }, + { + "kind": "text", + "text": ") to indicate an unlimited number of listeners.\n\nReturns a reference to the " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": ", so that calls can be chained." + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v0.3.5" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 813, + "character": 16, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1608, + "name": "n", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.setMaxListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.setMaxListeners" + } + }, + { + "id": 1543, + "name": "setOptions", + "variant": "declaration", + "kind": 2048, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@apify/log/cjs/index.d.ts", + "line": 47, + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1544, + "name": "setOptions", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@apify/log/cjs/index.d.ts", + "line": 47, + "character": 4, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1545, + "name": "options", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.setOptions" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.setOptions" + } + }, + { + "id": 1520, + "name": "addAbortListener", + "variant": "declaration", + "kind": 2048, + "flags": { + "isStatic": true, + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 403, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1521, + "name": "addAbortListener", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Listens once to the " + }, + { + "kind": "code", + "text": "`abort`" + }, + { + "kind": "text", + "text": " event on the provided " + }, + { + "kind": "code", + "text": "`signal`" + }, + { + "kind": "text", + "text": ".\n\nListening to the " + }, + { + "kind": "code", + "text": "`abort`" + }, + { + "kind": "text", + "text": " event on abort signals is unsafe and may\nlead to resource leaks since another third party with the signal can\ncall " + }, + { + "kind": "code", + "text": "`e.stopImmediatePropagation()`" + }, + { + "kind": "text", + "text": ". Unfortunately Node.js cannot change\nthis since it would violate the web standard. Additionally, the original\nAPI makes it easy to forget to remove listeners.\n\nThis API allows safely using " + }, + { + "kind": "code", + "text": "`AbortSignal`" + }, + { + "kind": "text", + "text": "s in Node.js APIs by solving these\ntwo issues by listening to the event such that " + }, + { + "kind": "code", + "text": "`stopImmediatePropagation`" + }, + { + "kind": "text", + "text": " does\nnot prevent the listener from running.\n\nReturns a disposable so that it may be unsubscribed from more easily.\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { addAbortListener } from 'node:events';\n\nfunction example(signal) {\n let disposable;\n try {\n signal.addEventListener('abort', (e) => e.stopImmediatePropagation());\n disposable = addAbortListener(signal, (e) => {\n // Do something when signal is aborted.\n });\n } finally {\n disposable?.[Symbol.dispose]();\n }\n}\n```" + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v20.5.0" + } + ] + }, + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Disposable that removes the " + }, + { + "kind": "code", + "text": "`abort`" + }, + { + "kind": "text", + "text": " listener." + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 403, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1522, + "name": "signal", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "AbortSignal" + }, + "name": "AbortSignal", + "package": "typescript" + } + }, + { + "id": 1523, + "name": "resource", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1524, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 403, + "character": 63, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1525, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 403, + "character": 63, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1526, + "name": "event", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "Event" + }, + "name": "Event", + "package": "typescript" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.esnext.disposable.d.ts", + "qualifiedName": "Disposable" + }, + "name": "Disposable", + "package": "typescript" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.addAbortListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.addAbortListener" + } + }, + { + "id": 1509, + "name": "getEventListeners", + "variant": "declaration", + "kind": 2048, + "flags": { + "isStatic": true, + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 325, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1510, + "name": "getEventListeners", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Returns a copy of the array of listeners for the event named " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": ".\n\nFor " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": "s this behaves exactly the same as calling " + }, + { + "kind": "code", + "text": "`.listeners`" + }, + { + "kind": "text", + "text": " on\nthe emitter.\n\nFor " + }, + { + "kind": "code", + "text": "`EventTarget`" + }, + { + "kind": "text", + "text": "s this is the only way to get the event listeners for the\nevent target. This is useful for debugging and diagnostic purposes.\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { getEventListeners, EventEmitter } from 'node:events';\n\n{\n const ee = new EventEmitter();\n const listener = () => console.log('Events are fun');\n ee.on('foo', listener);\n console.log(getEventListeners(ee, 'foo')); // [ [Function: listener] ]\n}\n{\n const et = new EventTarget();\n const listener = () => console.log('Events are fun');\n et.addEventListener('foo', listener);\n console.log(getEventListeners(et, 'foo')); // [ [Function: listener] ]\n}\n```" + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v15.2.0, v14.17.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 325, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1511, + "name": "emitter", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter" + }, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "DefaultEventMap" + }, + "name": "DefaultEventMap", + "package": "@types/node" + } + ], + "name": "EventEmitter", + "package": "@types/node", + "qualifiedName": "__global.NodeJS.EventEmitter" + }, + { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "EventTarget" + }, + "name": "EventTarget", + "package": "typescript" + } + ] + } + }, + { + "id": 1512, + "name": "name", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Function" + }, + "name": "Function", + "package": "typescript" + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.getEventListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.getEventListeners" + } + }, + { + "id": 1513, + "name": "getMaxListeners", + "variant": "declaration", + "kind": 2048, + "flags": { + "isStatic": true, + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 354, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1514, + "name": "getMaxListeners", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Returns the currently set max amount of listeners.\n\nFor " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": "s this behaves exactly the same as calling " + }, + { + "kind": "code", + "text": "`.getMaxListeners`" + }, + { + "kind": "text", + "text": " on\nthe emitter.\n\nFor " + }, + { + "kind": "code", + "text": "`EventTarget`" + }, + { + "kind": "text", + "text": "s this is the only way to get the max event listeners for the\nevent target. If the number of event handlers on a single EventTarget exceeds\nthe max set, the EventTarget will print a warning.\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { getMaxListeners, setMaxListeners, EventEmitter } from 'node:events';\n\n{\n const ee = new EventEmitter();\n console.log(getMaxListeners(ee)); // 10\n setMaxListeners(11, ee);\n console.log(getMaxListeners(ee)); // 11\n}\n{\n const et = new EventTarget();\n console.log(getMaxListeners(et)); // 10\n setMaxListeners(11, et);\n console.log(getMaxListeners(et)); // 11\n}\n```" + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v19.9.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 354, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1515, + "name": "emitter", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter" + }, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "DefaultEventMap" + }, + "name": "DefaultEventMap", + "package": "@types/node" + } + ], + "name": "EventEmitter", + "package": "@types/node", + "qualifiedName": "__global.NodeJS.EventEmitter" + }, + { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "EventTarget" + }, + "name": "EventTarget", + "package": "typescript" + } + ] + } + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.getMaxListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.getMaxListeners" + } + }, + { + "id": 1505, + "name": "listenerCount", + "variant": "declaration", + "kind": 2048, + "flags": { + "isStatic": true, + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 297, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1506, + "name": "listenerCount", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A class method that returns the number of listeners for the given " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": " registered on the given " + }, + { + "kind": "code", + "text": "`emitter`" + }, + { + "kind": "text", + "text": ".\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { EventEmitter, listenerCount } from 'node:events';\n\nconst myEmitter = new EventEmitter();\nmyEmitter.on('event', () => {});\nmyEmitter.on('event', () => {});\nconsole.log(listenerCount(myEmitter, 'event'));\n// Prints: 2\n```" + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v0.9.12" + } + ] + }, + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Since v3.2.0 - Use " + }, + { + "kind": "code", + "text": "`listenerCount`" + }, + { + "kind": "text", + "text": " instead." + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 297, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1507, + "name": "emitter", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The emitter to query" + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter" + }, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "DefaultEventMap" + }, + "name": "DefaultEventMap", + "package": "@types/node" + } + ], + "name": "EventEmitter", + "package": "@types/node", + "qualifiedName": "__global.NodeJS.EventEmitter" + } + }, + { + "id": 1508, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The event name" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.listenerCount" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.listenerCount" + } + }, + { + "id": 1496, + "name": "on", + "variant": "declaration", + "kind": 2048, + "flags": { + "isStatic": true, + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 270, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + }, + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 275, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1497, + "name": "on", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "code", + "text": "```js\nimport { on, EventEmitter } from 'node:events';\nimport process from 'node:process';\n\nconst ee = new EventEmitter();\n\n// Emit later on\nprocess.nextTick(() => {\n ee.emit('foo', 'bar');\n ee.emit('foo', 42);\n});\n\nfor await (const event of on(ee, 'foo')) {\n // The execution of this inner block is synchronous and it\n // processes one event at a time (even with await). Do not use\n // if concurrent execution is required.\n console.log(event); // prints ['bar'] [42]\n}\n// Unreachable here\n```" + }, + { + "kind": "text", + "text": "\n\nReturns an " + }, + { + "kind": "code", + "text": "`AsyncIterator`" + }, + { + "kind": "text", + "text": " that iterates " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": " events. It will throw\nif the " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": " emits " + }, + { + "kind": "code", + "text": "`'error'`" + }, + { + "kind": "text", + "text": ". It removes all listeners when\nexiting the loop. The " + }, + { + "kind": "code", + "text": "`value`" + }, + { + "kind": "text", + "text": " returned by each iteration is an array\ncomposed of the emitted event arguments.\n\nAn " + }, + { + "kind": "code", + "text": "`AbortSignal`" + }, + { + "kind": "text", + "text": " can be used to cancel waiting on events:\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { on, EventEmitter } from 'node:events';\nimport process from 'node:process';\n\nconst ac = new AbortController();\n\n(async () => {\n const ee = new EventEmitter();\n\n // Emit later on\n process.nextTick(() => {\n ee.emit('foo', 'bar');\n ee.emit('foo', 42);\n });\n\n for await (const event of on(ee, 'foo', { signal: ac.signal })) {\n // The execution of this inner block is synchronous and it\n // processes one event at a time (even with await). Do not use\n // if concurrent execution is required.\n console.log(event); // prints ['bar'] [42]\n }\n // Unreachable here\n})();\n\nprocess.nextTick(() => ac.abort());\n```" + }, + { + "kind": "text", + "text": "\n\nUse the " + }, + { + "kind": "code", + "text": "`close`" + }, + { + "kind": "text", + "text": " option to specify an array of event names that will end the iteration:\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { on, EventEmitter } from 'node:events';\nimport process from 'node:process';\n\nconst ee = new EventEmitter();\n\n// Emit later on\nprocess.nextTick(() => {\n ee.emit('foo', 'bar');\n ee.emit('foo', 42);\n ee.emit('close');\n});\n\nfor await (const event of on(ee, 'foo', { close: ['close'] })) {\n console.log(event); // prints ['bar'] [42]\n}\n// the loop will exit after 'close' is emitted\nconsole.log('done'); // prints 'done'\n```" + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v13.6.0, v12.16.0" + } + ] + }, + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "An " + }, + { + "kind": "code", + "text": "`AsyncIterator`" + }, + { + "kind": "text", + "text": " that iterates " + }, + { + "kind": "code", + "text": "`eventName`" + }, + { + "kind": "text", + "text": " events emitted by the " + }, + { + "kind": "code", + "text": "`emitter`" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 270, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1498, + "name": "emitter", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter" + }, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "DefaultEventMap" + }, + "name": "DefaultEventMap", + "package": "@types/node" + } + ], + "name": "EventEmitter", + "package": "@types/node", + "qualifiedName": "__global.NodeJS.EventEmitter" + } + }, + { + "id": 1499, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 1500, + "name": "options", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isOptional": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "StaticEventEmitterIteratorOptions" + }, + "name": "StaticEventEmitterIteratorOptions", + "package": "@types/node" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/compatibility/iterators.d.ts", + "qualifiedName": "NodeJS.AsyncIterator" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + }, + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "AsyncIterator", + "package": "@types/node", + "qualifiedName": "NodeJS.AsyncIterator" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.on" + } + }, + { + "id": 1501, + "name": "on", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 275, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1502, + "name": "emitter", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "EventTarget" + }, + "name": "EventTarget", + "package": "typescript" + } + }, + { + "id": 1503, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1504, + "name": "options", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isOptional": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "StaticEventEmitterIteratorOptions" + }, + "name": "StaticEventEmitterIteratorOptions", + "package": "@types/node" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/compatibility/iterators.d.ts", + "qualifiedName": "NodeJS.AsyncIterator" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + }, + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "AsyncIterator", + "package": "@types/node", + "qualifiedName": "NodeJS.AsyncIterator" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.on" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.on" + } + }, + { + "id": 1487, + "name": "once", + "variant": "declaration", + "kind": 2048, + "flags": { + "isStatic": true, + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 184, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + }, + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 189, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1488, + "name": "once", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Creates a " + }, + { + "kind": "code", + "text": "`Promise`" + }, + { + "kind": "text", + "text": " that is fulfilled when the " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": " emits the given\nevent or that is rejected if the " + }, + { + "kind": "code", + "text": "`EventEmitter`" + }, + { + "kind": "text", + "text": " emits " + }, + { + "kind": "code", + "text": "`'error'`" + }, + { + "kind": "text", + "text": " while waiting.\nThe " + }, + { + "kind": "code", + "text": "`Promise`" + }, + { + "kind": "text", + "text": " will resolve with an array of all the arguments emitted to the\ngiven event.\n\nThis method is intentionally generic and works with the web platform [EventTarget](https://dom.spec.whatwg.org/#interface-eventtarget) interface, which has no special" + }, + { + "kind": "code", + "text": "`'error'`" + }, + { + "kind": "text", + "text": " event\nsemantics and does not listen to the " + }, + { + "kind": "code", + "text": "`'error'`" + }, + { + "kind": "text", + "text": " event.\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { once, EventEmitter } from 'node:events';\nimport process from 'node:process';\n\nconst ee = new EventEmitter();\n\nprocess.nextTick(() => {\n ee.emit('myevent', 42);\n});\n\nconst [value] = await once(ee, 'myevent');\nconsole.log(value);\n\nconst err = new Error('kaboom');\nprocess.nextTick(() => {\n ee.emit('error', err);\n});\n\ntry {\n await once(ee, 'myevent');\n} catch (err) {\n console.error('error happened', err);\n}\n```" + }, + { + "kind": "text", + "text": "\n\nThe special handling of the " + }, + { + "kind": "code", + "text": "`'error'`" + }, + { + "kind": "text", + "text": " event is only used when " + }, + { + "kind": "code", + "text": "`events.once()`" + }, + { + "kind": "text", + "text": " is used to wait for another event. If " + }, + { + "kind": "code", + "text": "`events.once()`" + }, + { + "kind": "text", + "text": " is used to wait for the\n'" + }, + { + "kind": "code", + "text": "`error'`" + }, + { + "kind": "text", + "text": " event itself, then it is treated as any other kind of event without\nspecial handling:\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { EventEmitter, once } from 'node:events';\n\nconst ee = new EventEmitter();\n\nonce(ee, 'error')\n .then(([err]) => console.log('ok', err.message))\n .catch((err) => console.error('error', err.message));\n\nee.emit('error', new Error('boom'));\n\n// Prints: ok boom\n```" + }, + { + "kind": "text", + "text": "\n\nAn " + }, + { + "kind": "code", + "text": "`AbortSignal`" + }, + { + "kind": "text", + "text": " can be used to cancel waiting for the event:\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { EventEmitter, once } from 'node:events';\n\nconst ee = new EventEmitter();\nconst ac = new AbortController();\n\nasync function foo(emitter, event, signal) {\n try {\n await once(emitter, event, { signal });\n console.log('event emitted!');\n } catch (error) {\n if (error.name === 'AbortError') {\n console.error('Waiting for the event was canceled!');\n } else {\n console.error('There was an error', error.message);\n }\n }\n}\n\nfoo(ee, 'foo', ac.signal);\nac.abort(); // Abort waiting for the event\nee.emit('foo'); // Prints: Waiting for the event was canceled!\n```" + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ + { + "kind": "text", + "text": "v11.13.0, v10.16.0" + } + ] } ] }, "sources": [ { - "fileName": "src/resource_clients/log.ts", - "line": 44, - "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/log.ts#L44" + "fileName": "node_modules/@types/node/events.d.ts", + "line": 184, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1489, + "name": "emitter", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter" + }, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "DefaultEventMap" + }, + "name": "DefaultEventMap", + "package": "@types/node" + } + ], + "name": "EventEmitter", + "package": "@types/node", + "qualifiedName": "__global.NodeJS.EventEmitter" + } + }, + { + "id": 1490, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 1491, + "name": "options", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isOptional": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "StaticEventEmitterOptions" + }, + "name": "StaticEventEmitterOptions", + "package": "@types/node" + } } ], "type": { @@ -11921,71 +17591,338 @@ }, "typeArguments": [ { - "type": "union", - "types": [ + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + ], + "name": "Promise", + "package": "typescript" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.once" + } + }, + { + "id": 1492, + "name": "once", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 189, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1493, + "name": "emitter", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "EventTarget" + }, + "name": "EventTarget", + "package": "typescript" + } + }, + { + "id": 1494, + "name": "eventName", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1495, + "name": "options", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isOptional": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "StaticEventEmitterOptions" + }, + "name": "StaticEventEmitterOptions", + "package": "@types/node" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + ], + "name": "Promise", + "package": "typescript" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.once" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.once" + } + }, + { + "id": 1516, + "name": "setMaxListeners", + "variant": "declaration", + "kind": 2048, + "flags": { + "isStatic": true, + "isExternal": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 369, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1517, + "name": "setMaxListeners", + "variant": "signature", + "kind": 4096, + "flags": { + "isExternal": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "code", + "text": "```js\nimport { setMaxListeners, EventEmitter } from 'node:events';\n\nconst target = new EventTarget();\nconst emitter = new EventEmitter();\n\nsetMaxListeners(5, target, emitter);\n```" + } + ], + "blockTags": [ + { + "tag": "@since", + "content": [ { - "type": "intrinsic", - "name": "undefined" + "kind": "text", + "text": "v15.4.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 369, + "character": 15, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1518, + "name": "n", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A non-negative number. The maximum number of listeners per " }, { - "type": "reference", - "target": { - "sourceFileName": "../node_modules/@types/node/stream.d.ts", - "qualifiedName": "Stream.Readable" - }, - "name": "Readable", - "package": "@types/node", - "qualifiedName": "Stream.Readable" + "kind": "code", + "text": "`EventTarget`" + }, + { + "kind": "text", + "text": " event." } ] + }, + "type": { + "type": "intrinsic", + "name": "number" } - ], - "name": "Promise", - "package": "typescript" + }, + { + "id": 1519, + "name": "eventTargets", + "variant": "param", + "kind": 32768, + "flags": { + "isExternal": true, + "isRest": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Zero or more {EventTarget} or {EventEmitter} instances. If none are specified, " + }, + { + "kind": "code", + "text": "`n`" + }, + { + "kind": "text", + "text": " is set as the default max for all newly created {EventTarget} and {EventEmitter}\nobjects." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter" + }, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "DefaultEventMap" + }, + "name": "DefaultEventMap", + "package": "@types/node" + } + ], + "name": "EventEmitter", + "package": "@types/node", + "qualifiedName": "__global.NodeJS.EventEmitter" + }, + { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "EventTarget" + }, + "name": "EventTarget", + "package": "typescript" + } + ] + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.setMaxListeners" } } - ] + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Logger.setMaxListeners" + } } ], "groups": [ + { + "title": "Constructors", + "children": [1531] + }, { "title": "Properties", - "children": [1458, 1454, 1459, 1452, 1460, 1455, 1456, 1453, 1457] + "children": [1529, 1528, 1530, 1527] }, { "title": "Methods", - "children": [1427, 1429] + "children": [ + 1535, 1548, 1557, 1563, 1619, 1645, 1609, 1546, 1624, 1611, 1552, 1595, 1571, 1579, 1629, 1637, + 1615, 1603, 1587, 1606, 1543, 1520, 1509, 1513, 1505, 1496, 1487, 1516 + ] } ], "sources": [ { "fileName": "src/resource_clients/log.ts", - "line": 9, + "line": 82, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/log.ts#L9" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L82", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ { "type": "reference", "target": { - "sourceFileName": "../src/base/resource_client.ts", - "qualifiedName": "ResourceClient" + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "Logger" }, - "name": "ResourceClient", - "package": "apify-client" + "name": "Logger", + "package": "@apify/log" } ] }, { - "id": 1478, + "id": 1673, "name": "RequestQueueClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1570, + "id": 1765, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -11997,7 +17934,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -12013,7 +17951,7 @@ } }, { - "id": 1566, + "id": 1761, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -12025,7 +17963,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -12039,7 +17978,7 @@ } }, { - "id": 1571, + "id": 1766, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -12051,7 +17990,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -12070,7 +18010,7 @@ } }, { - "id": 1564, + "id": 1759, "name": "id", "variant": "declaration", "kind": 1024, @@ -12083,7 +18023,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -12097,7 +18038,7 @@ } }, { - "id": 1572, + "id": 1767, "name": "params", "variant": "declaration", "kind": 1024, @@ -12110,7 +18051,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -12139,7 +18081,7 @@ } }, { - "id": 1567, + "id": 1762, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -12151,7 +18093,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -12165,7 +18108,7 @@ } }, { - "id": 1568, + "id": 1763, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -12177,7 +18120,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -12191,7 +18135,7 @@ } }, { - "id": 1565, + "id": 1760, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -12204,7 +18148,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -12218,7 +18163,7 @@ } }, { - "id": 1569, + "id": 1764, "name": "url", "variant": "declaration", "kind": 1024, @@ -12230,7 +18175,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -12244,7 +18190,7 @@ } }, { - "id": 1498, + "id": 1693, "name": "addRequest", "variant": "declaration", "kind": 2048, @@ -12254,12 +18200,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 123, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L123" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L123", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1499, + "id": 1694, "name": "addRequest", "variant": "signature", "kind": 4096, @@ -12277,12 +18224,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 123, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L123" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L123", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1500, + "id": 1695, "name": "request", "variant": "param", "kind": 32768, @@ -12296,7 +18244,7 @@ "typeArguments": [ { "type": "reference", - "target": 1670, + "target": 1865, "name": "RequestQueueClientRequestSchema", "package": "apify-client" }, @@ -12310,14 +18258,14 @@ } }, { - "id": 1501, + "id": 1696, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1656, + "target": 1851, "name": "RequestQueueClientAddRequestOptions", "package": "apify-client" }, @@ -12333,7 +18281,7 @@ "typeArguments": [ { "type": "reference", - "target": 1683, + "target": 1878, "name": "RequestQueueClientAddRequestResult", "package": "apify-client" } @@ -12345,7 +18293,7 @@ ] }, { - "id": 1510, + "id": 1705, "name": "batchAddRequests", "variant": "declaration", "kind": 2048, @@ -12355,12 +18303,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 266, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L266" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L266", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1511, + "id": 1706, "name": "batchAddRequests", "variant": "signature", "kind": 4096, @@ -12378,12 +18327,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 266, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L266" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L266", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1512, + "id": 1707, "name": "requests", "variant": "param", "kind": 32768, @@ -12399,7 +18349,7 @@ "typeArguments": [ { "type": "reference", - "target": 1670, + "target": 1865, "name": "RequestQueueClientRequestSchema", "package": "apify-client" }, @@ -12414,14 +18364,14 @@ } }, { - "id": 1513, + "id": 1708, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1665, + "target": 1860, "name": "RequestQueueClientBatchAddRequestWithRetriesOptions", "package": "apify-client" }, @@ -12437,7 +18387,7 @@ "typeArguments": [ { "type": "reference", - "target": 1689, + "target": 1884, "name": "RequestQueueClientBatchRequestsOperationResult", "package": "apify-client" } @@ -12449,7 +18399,7 @@ ] }, { - "id": 1514, + "id": 1709, "name": "batchDeleteRequests", "variant": "declaration", "kind": 2048, @@ -12459,12 +18409,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 330, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L330" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L330", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1515, + "id": 1710, "name": "batchDeleteRequests", "variant": "signature", "kind": 4096, @@ -12482,12 +18433,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 330, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L330" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L330", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1516, + "id": 1711, "name": "requests", "variant": "param", "kind": 32768, @@ -12496,7 +18448,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1692, + "target": 1887, "name": "RequestQueueClientRequestToDelete", "package": "apify-client" } @@ -12512,7 +18464,7 @@ "typeArguments": [ { "type": "reference", - "target": 1689, + "target": 1884, "name": "RequestQueueClientBatchRequestsOperationResult", "package": "apify-client" } @@ -12524,7 +18476,7 @@ ] }, { - "id": 1490, + "id": 1685, "name": "delete", "variant": "declaration", "kind": 2048, @@ -12534,12 +18486,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 64, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L64" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L64", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1491, + "id": 1686, "name": "delete", "variant": "signature", "kind": 4096, @@ -12557,7 +18510,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 64, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L64" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L64", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -12579,7 +18533,7 @@ ] }, { - "id": 1524, + "id": 1719, "name": "deleteRequest", "variant": "declaration", "kind": 2048, @@ -12589,12 +18543,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 412, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L412" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L412", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1525, + "id": 1720, "name": "deleteRequest", "variant": "signature", "kind": 4096, @@ -12604,12 +18559,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 412, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L412" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L412", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1526, + "id": 1721, "name": "id", "variant": "param", "kind": 32768, @@ -12639,7 +18595,7 @@ ] }, { - "id": 1531, + "id": 1726, "name": "deleteRequestLock", "variant": "declaration", "kind": 2048, @@ -12649,12 +18605,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 458, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L458" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L458", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1532, + "id": 1727, "name": "deleteRequestLock", "variant": "signature", "kind": 4096, @@ -12672,12 +18629,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 458, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L458" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L458", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1533, + "id": 1728, "name": "id", "variant": "param", "kind": 32768, @@ -12688,14 +18646,14 @@ } }, { - "id": 1534, + "id": 1729, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1661, + "target": 1856, "name": "RequestQueueClientDeleteRequestLockOptions", "package": "apify-client" }, @@ -12721,7 +18679,7 @@ ] }, { - "id": 1485, + "id": 1680, "name": "get", "variant": "declaration", "kind": 2048, @@ -12731,12 +18689,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 48, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L48" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L48", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1486, + "id": 1681, "name": "get", "variant": "signature", "kind": 4096, @@ -12754,7 +18713,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 48, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L48" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L48", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -12773,7 +18733,7 @@ }, { "type": "reference", - "target": 1593, + "target": 1788, "name": "RequestQueue", "package": "apify-client" } @@ -12787,7 +18747,7 @@ ] }, { - "id": 1517, + "id": 1712, "name": "getRequest", "variant": "declaration", "kind": 2048, @@ -12797,12 +18757,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 359, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L359" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L359", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1518, + "id": 1713, "name": "getRequest", "variant": "signature", "kind": 4096, @@ -12820,12 +18781,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 359, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L359" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L359", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1519, + "id": 1714, "name": "id", "variant": "param", "kind": 32768, @@ -12852,7 +18814,7 @@ }, { "type": "reference", - "target": 1693, + "target": 1888, "name": "RequestQueueClientGetRequestResult", "package": "apify-client" } @@ -12866,7 +18828,7 @@ ] }, { - "id": 1495, + "id": 1690, "name": "listAndLockHead", "variant": "declaration", "kind": 2048, @@ -12876,12 +18838,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 95, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L95" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L95", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1496, + "id": 1691, "name": "listAndLockHead", "variant": "signature", "kind": 4096, @@ -12899,19 +18862,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 95, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L95" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L95", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1497, + "id": 1692, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1638, + "target": 1833, "name": "RequestQueueClientListAndLockHeadOptions", "package": "apify-client" } @@ -12926,7 +18890,7 @@ "typeArguments": [ { "type": "reference", - "target": 1641, + "target": 1836, "name": "RequestQueueClientListAndLockHeadResult", "package": "apify-client" } @@ -12938,7 +18902,7 @@ ] }, { - "id": 1492, + "id": 1687, "name": "listHead", "variant": "declaration", "kind": 2048, @@ -12948,12 +18912,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 71, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L71" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L71", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1493, + "id": 1688, "name": "listHead", "variant": "signature", "kind": 4096, @@ -12971,19 +18936,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 71, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L71" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L71", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1494, + "id": 1689, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1620, + "target": 1815, "name": "RequestQueueClientListHeadOptions", "package": "apify-client" }, @@ -12999,7 +18965,7 @@ "typeArguments": [ { "type": "reference", - "target": 1622, + "target": 1817, "name": "RequestQueueClientListHeadResult", "package": "apify-client" } @@ -13011,7 +18977,7 @@ ] }, { - "id": 1535, + "id": 1730, "name": "listRequests", "variant": "declaration", "kind": 2048, @@ -13021,12 +18987,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 481, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L481" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L481", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1536, + "id": 1731, "name": "listRequests", "variant": "signature", "kind": 4096, @@ -13044,19 +19011,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 481, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L481" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L481", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1537, + "id": 1732, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1627, + "target": 1822, "name": "RequestQueueClientListRequestsOptions", "package": "apify-client" }, @@ -13072,7 +19040,7 @@ "typeArguments": [ { "type": "reference", - "target": 1634, + "target": 1829, "name": "RequestQueueClientListRequestsResult", "package": "apify-client" } @@ -13084,7 +19052,7 @@ ] }, { - "id": 1540, + "id": 1735, "name": "paginateRequests", "variant": "declaration", "kind": 2048, @@ -13094,12 +19062,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 530, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L530" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L530", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1541, + "id": 1736, "name": "paginateRequests", "variant": "signature", "kind": 4096, @@ -13117,19 +19086,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 530, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L530" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L530", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1542, + "id": 1737, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1630, + "target": 1825, "name": "RequestQueueClientPaginateRequestsOptions", "package": "apify-client" }, @@ -13138,11 +19108,11 @@ ], "type": { "type": "reference", - "target": 1695, + "target": 1890, "typeArguments": [ { "type": "reference", - "target": 1634, + "target": 1829, "name": "RequestQueueClientListRequestsResult", "package": "apify-client" } @@ -13154,7 +19124,7 @@ ] }, { - "id": 1527, + "id": 1722, "name": "prolongRequestLock", "variant": "declaration", "kind": 2048, @@ -13164,12 +19134,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 428, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L428" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L428", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1528, + "id": 1723, "name": "prolongRequestLock", "variant": "signature", "kind": 4096, @@ -13187,12 +19158,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 428, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L428" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L428", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1529, + "id": 1724, "name": "id", "variant": "param", "kind": 32768, @@ -13203,14 +19175,14 @@ } }, { - "id": 1530, + "id": 1725, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1658, + "target": 1853, "name": "RequestQueueClientProlongRequestLockOptions", "package": "apify-client" } @@ -13225,7 +19197,7 @@ "typeArguments": [ { "type": "reference", - "target": 1663, + "target": 1858, "name": "RequestQueueClientProlongRequestLockResult", "package": "apify-client" } @@ -13237,7 +19209,7 @@ ] }, { - "id": 1538, + "id": 1733, "name": "unlockRequests", "variant": "declaration", "kind": 2048, @@ -13247,12 +19219,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 509, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L509" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L509", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1539, + "id": 1734, "name": "unlockRequests", "variant": "signature", "kind": 4096, @@ -13270,7 +19243,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 509, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L509" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L509", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -13282,7 +19256,7 @@ "typeArguments": [ { "type": "reference", - "target": 1687, + "target": 1882, "name": "RequestQueueClientUnlockRequestsResult", "package": "apify-client" } @@ -13294,7 +19268,7 @@ ] }, { - "id": 1487, + "id": 1682, "name": "update", "variant": "declaration", "kind": 2048, @@ -13304,12 +19278,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 55, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L55" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L55", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1488, + "id": 1683, "name": "update", "variant": "signature", "kind": 4096, @@ -13327,19 +19302,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 55, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L55" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L55", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1489, + "id": 1684, "name": "newFields", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1616, + "target": 1811, "name": "RequestQueueClientUpdateOptions", "package": "apify-client" } @@ -13354,7 +19330,7 @@ "typeArguments": [ { "type": "reference", - "target": 1593, + "target": 1788, "name": "RequestQueue", "package": "apify-client" } @@ -13366,7 +19342,7 @@ ] }, { - "id": 1520, + "id": 1715, "name": "updateRequest", "variant": "declaration", "kind": 2048, @@ -13376,12 +19352,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 380, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L380" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L380", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1521, + "id": 1716, "name": "updateRequest", "variant": "signature", "kind": 4096, @@ -13399,32 +19376,33 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 380, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L380" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L380", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1522, + "id": 1717, "name": "request", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1670, + "target": 1865, "name": "RequestQueueClientRequestSchema", "package": "apify-client" } }, { - "id": 1523, + "id": 1718, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1656, + "target": 1851, "name": "RequestQueueClientAddRequestOptions", "package": "apify-client" }, @@ -13440,7 +19418,7 @@ "typeArguments": [ { "type": "reference", - "target": 1683, + "target": 1878, "name": "RequestQueueClientAddRequestResult", "package": "apify-client" } @@ -13455,12 +19433,12 @@ "groups": [ { "title": "Properties", - "children": [1570, 1566, 1571, 1564, 1572, 1567, 1568, 1565, 1569] + "children": [1765, 1761, 1766, 1759, 1767, 1762, 1763, 1760, 1764] }, { "title": "Methods", "children": [ - 1498, 1510, 1514, 1490, 1524, 1531, 1485, 1517, 1495, 1492, 1535, 1540, 1527, 1538, 1487, 1520 + 1693, 1705, 1709, 1685, 1719, 1726, 1680, 1712, 1690, 1687, 1730, 1735, 1722, 1733, 1682, 1715 ] } ], @@ -13469,7 +19447,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 27, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -13485,14 +19464,14 @@ ] }, { - "id": 1697, + "id": 1892, "name": "RequestQueueCollectionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1729, + "id": 1924, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -13504,7 +19483,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -13520,7 +19500,7 @@ } }, { - "id": 1725, + "id": 1920, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -13532,7 +19512,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -13546,7 +19527,7 @@ } }, { - "id": 1730, + "id": 1925, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -13558,7 +19539,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -13577,7 +19559,7 @@ } }, { - "id": 1723, + "id": 1918, "name": "id", "variant": "declaration", "kind": 1024, @@ -13590,7 +19572,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -13604,7 +19587,7 @@ } }, { - "id": 1731, + "id": 1926, "name": "params", "variant": "declaration", "kind": 1024, @@ -13617,7 +19600,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -13646,7 +19630,7 @@ } }, { - "id": 1726, + "id": 1921, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -13658,7 +19642,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -13672,7 +19657,7 @@ } }, { - "id": 1727, + "id": 1922, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -13684,7 +19669,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -13698,7 +19684,7 @@ } }, { - "id": 1724, + "id": 1919, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -13711,7 +19697,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -13725,7 +19712,7 @@ } }, { - "id": 1728, + "id": 1923, "name": "url", "variant": "declaration", "kind": 1024, @@ -13737,7 +19724,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -13751,7 +19739,7 @@ } }, { - "id": 1704, + "id": 1899, "name": "getOrCreate", "variant": "declaration", "kind": 2048, @@ -13761,12 +19749,13 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 39, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1705, + "id": 1900, "name": "getOrCreate", "variant": "signature", "kind": 4096, @@ -13784,12 +19773,13 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 39, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1706, + "id": 1901, "name": "name", "variant": "param", "kind": 32768, @@ -13811,7 +19801,7 @@ "typeArguments": [ { "type": "reference", - "target": 1593, + "target": 1788, "name": "RequestQueue", "package": "apify-client" } @@ -13823,7 +19813,7 @@ ] }, { - "id": 1701, + "id": 1896, "name": "list", "variant": "declaration", "kind": 2048, @@ -13833,12 +19823,13 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1702, + "id": 1897, "name": "list", "variant": "signature", "kind": 4096, @@ -13856,19 +19847,20 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1703, + "id": 1898, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1749, + "target": 1944, "name": "RequestQueueCollectionListOptions", "package": "apify-client" }, @@ -13884,7 +19876,7 @@ "typeArguments": [ { "type": "reference", - "target": 1754, + "target": 1949, "name": "RequestQueueCollectionListResult", "package": "apify-client" } @@ -13899,11 +19891,11 @@ "groups": [ { "title": "Properties", - "children": [1729, 1725, 1730, 1723, 1731, 1726, 1727, 1724, 1728] + "children": [1924, 1920, 1925, 1918, 1926, 1921, 1922, 1919, 1923] }, { "title": "Methods", - "children": [1704, 1701] + "children": [1899, 1896] } ], "sources": [ @@ -13911,7 +19903,8 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 8, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L8" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L8", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -13927,14 +19920,14 @@ ] }, { - "id": 1759, + "id": 1954, "name": "RunClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1825, + "id": 2023, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -13946,7 +19939,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -13962,7 +19956,7 @@ } }, { - "id": 1821, + "id": 2019, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -13974,7 +19968,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -13988,7 +19983,7 @@ } }, { - "id": 1826, + "id": 2024, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -14000,7 +19995,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -14019,7 +20015,7 @@ } }, { - "id": 1819, + "id": 2017, "name": "id", "variant": "declaration", "kind": 1024, @@ -14032,7 +20028,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -14046,7 +20043,7 @@ } }, { - "id": 1827, + "id": 2025, "name": "params", "variant": "declaration", "kind": 1024, @@ -14059,7 +20056,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -14088,7 +20086,7 @@ } }, { - "id": 1822, + "id": 2020, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -14100,7 +20098,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -14114,7 +20113,7 @@ } }, { - "id": 1823, + "id": 2021, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -14126,7 +20125,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -14140,7 +20140,7 @@ } }, { - "id": 1820, + "id": 2018, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -14153,7 +20153,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -14167,7 +20168,7 @@ } }, { - "id": 1824, + "id": 2022, "name": "url", "variant": "declaration", "kind": 1024, @@ -14179,7 +20180,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -14193,7 +20195,7 @@ } }, { - "id": 1766, + "id": 1961, "name": "abort", "variant": "declaration", "kind": 2048, @@ -14201,14 +20203,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 46, + "line": 47, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L46" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L47", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1767, + "id": 1962, "name": "abort", "variant": "signature", "kind": 4096, @@ -14224,21 +20227,22 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 46, + "line": 47, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L46" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L47", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1768, + "id": 1963, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1847, + "target": 2048, "name": "RunAbortOptions", "package": "apify-client" }, @@ -14254,7 +20258,7 @@ "typeArguments": [ { "type": "reference", - "target": 302, + "target": 305, "name": "ActorRun", "package": "apify-client" } @@ -14266,7 +20270,7 @@ ] }, { - "id": 1784, + "id": 1979, "name": "charge", "variant": "declaration", "kind": 2048, @@ -14274,14 +20278,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 160, + "line": 161, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L160" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L161", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1785, + "id": 1980, "name": "charge", "variant": "signature", "kind": 4096, @@ -14297,21 +20302,22 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 160, + "line": 161, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L160" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L161", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1786, + "id": 1981, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1863, + "target": 2064, "name": "RunChargeOptions", "package": "apify-client" } @@ -14362,7 +20368,7 @@ ] }, { - "id": 1790, + "id": 1985, "name": "dataset", "variant": "declaration", "kind": 2048, @@ -14370,14 +20376,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 220, + "line": 221, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L220" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L221", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1791, + "id": 1986, "name": "dataset", "variant": "signature", "kind": 4096, @@ -14401,14 +20408,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 220, + "line": 221, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L220" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L221", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 987, + "target": 991, "typeArguments": [ { "type": "reference", @@ -14446,7 +20454,7 @@ ] }, { - "id": 1769, + "id": 1964, "name": "delete", "variant": "declaration", "kind": 2048, @@ -14454,14 +20462,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 66, + "line": 67, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L66" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L67", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1770, + "id": 1965, "name": "delete", "variant": "signature", "kind": 4096, @@ -14477,9 +20486,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 66, + "line": 67, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L66" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L67", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -14501,7 +20511,7 @@ ] }, { - "id": 1763, + "id": 1958, "name": "get", "variant": "declaration", "kind": 2048, @@ -14509,14 +20519,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 32, + "line": 33, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L32" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1764, + "id": 1959, "name": "get", "variant": "signature", "kind": 4096, @@ -14532,21 +20543,22 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 32, + "line": 33, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L32" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1765, + "id": 1960, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1845, + "target": 2046, "name": "RunGetOptions", "package": "apify-client" }, @@ -14569,7 +20581,7 @@ }, { "type": "reference", - "target": 302, + "target": 305, "name": "ActorRun", "package": "apify-client" } @@ -14583,7 +20595,91 @@ ] }, { - "id": 1792, + "id": 1993, + "name": "getStreamedLog", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "src/resource_clients/run.ts", + "line": 274, + "character": 10, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L274", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1994, + "name": "getStreamedLog", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get StreamedLog for convenient streaming of the run log and their redirection." + } + ] + }, + "sources": [ + { + "fileName": "src/resource_clients/run.ts", + "line": 274, + "character": 10, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L274", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1995, + "name": "options", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 2043, + "name": "GetStreamedLogOptions", + "package": "apify-client" + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "reference", + "target": 1647, + "name": "StreamedLog", + "package": "apify-client" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 1987, "name": "keyValueStore", "variant": "declaration", "kind": 2048, @@ -14591,14 +20687,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 234, + "line": 235, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L234" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L235", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1793, + "id": 1988, "name": "keyValueStore", "variant": "signature", "kind": 4096, @@ -14622,14 +20719,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 234, + "line": 235, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L234" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L235", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1214, + "target": 1218, "name": "KeyValueStoreClient", "package": "apify-client" } @@ -14637,7 +20735,7 @@ ] }, { - "id": 1796, + "id": 1991, "name": "log", "variant": "declaration", "kind": 2048, @@ -14645,14 +20743,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 262, + "line": 263, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L262" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L263", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1797, + "id": 1992, "name": "log", "variant": "signature", "kind": 4096, @@ -14676,14 +20775,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 262, + "line": 263, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L262" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L263", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1423, + "target": 1427, "name": "LogClient", "package": "apify-client" } @@ -14691,7 +20791,7 @@ ] }, { - "id": 1771, + "id": 1966, "name": "metamorph", "variant": "declaration", "kind": 2048, @@ -14699,14 +20799,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 73, + "line": 74, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L73" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L74", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1772, + "id": 1967, "name": "metamorph", "variant": "signature", "kind": 4096, @@ -14722,14 +20823,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 73, + "line": 74, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L73" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L74", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1773, + "id": 1968, "name": "targetActorId", "variant": "param", "kind": 32768, @@ -14740,7 +20842,7 @@ } }, { - "id": 1774, + "id": 1969, "name": "input", "variant": "param", "kind": 32768, @@ -14751,14 +20853,14 @@ } }, { - "id": 1775, + "id": 1970, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1849, + "target": 2050, "name": "RunMetamorphOptions", "package": "apify-client" }, @@ -14774,7 +20876,7 @@ "typeArguments": [ { "type": "reference", - "target": 302, + "target": 305, "name": "ActorRun", "package": "apify-client" } @@ -14786,7 +20888,7 @@ ] }, { - "id": 1776, + "id": 1971, "name": "reboot", "variant": "declaration", "kind": 2048, @@ -14794,14 +20896,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 116, + "line": 117, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L116" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L117", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1777, + "id": 1972, "name": "reboot", "variant": "signature", "kind": 4096, @@ -14817,9 +20920,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 116, + "line": 117, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L116" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L117", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -14831,7 +20935,7 @@ "typeArguments": [ { "type": "reference", - "target": 302, + "target": 305, "name": "ActorRun", "package": "apify-client" } @@ -14843,7 +20947,7 @@ ] }, { - "id": 1794, + "id": 1989, "name": "requestQueue", "variant": "declaration", "kind": 2048, @@ -14851,14 +20955,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 248, + "line": 249, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L248" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L249", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1795, + "id": 1990, "name": "requestQueue", "variant": "signature", "kind": 4096, @@ -14882,14 +20987,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 248, + "line": 249, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L248" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L249", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1478, + "target": 1673, "name": "RequestQueueClient", "package": "apify-client" } @@ -14897,7 +21003,7 @@ ] }, { - "id": 1781, + "id": 1976, "name": "resurrect", "variant": "declaration", "kind": 2048, @@ -14905,14 +21011,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 135, + "line": 136, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L135" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L136", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1782, + "id": 1977, "name": "resurrect", "variant": "signature", "kind": 4096, @@ -14928,21 +21035,22 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 135, + "line": 136, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L135" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L136", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1783, + "id": 1978, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1856, + "target": 2057, "name": "RunResurrectOptions", "package": "apify-client" }, @@ -14958,7 +21066,7 @@ "typeArguments": [ { "type": "reference", - "target": 302, + "target": 305, "name": "ActorRun", "package": "apify-client" } @@ -14970,7 +21078,7 @@ ] }, { - "id": 1778, + "id": 1973, "name": "update", "variant": "declaration", "kind": 2048, @@ -14978,14 +21086,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 126, + "line": 127, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L126" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L127", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1779, + "id": 1974, "name": "update", "variant": "signature", "kind": 4096, @@ -14993,21 +21102,22 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 126, + "line": 127, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L126" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L127", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1780, + "id": 1975, "name": "newFields", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1852, + "target": 2053, "name": "RunUpdateOptions", "package": "apify-client" } @@ -15022,7 +21132,7 @@ "typeArguments": [ { "type": "reference", - "target": 302, + "target": 305, "name": "ActorRun", "package": "apify-client" } @@ -15034,7 +21144,7 @@ ] }, { - "id": 1787, + "id": 1982, "name": "waitForFinish", "variant": "declaration", "kind": 2048, @@ -15042,14 +21152,15 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 203, + "line": 204, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L203" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L204", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1788, + "id": 1983, "name": "waitForFinish", "variant": "signature", "kind": 4096, @@ -15105,21 +21216,22 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 203, + "line": 204, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L203" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L204", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1789, + "id": 1984, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1867, + "target": 2068, "name": "RunWaitForFinishOptions", "package": "apify-client" }, @@ -15135,7 +21247,7 @@ "typeArguments": [ { "type": "reference", - "target": 302, + "target": 305, "name": "ActorRun", "package": "apify-client" } @@ -15150,19 +21262,20 @@ "groups": [ { "title": "Properties", - "children": [1825, 1821, 1826, 1819, 1827, 1822, 1823, 1820, 1824] + "children": [2023, 2019, 2024, 2017, 2025, 2020, 2021, 2018, 2022] }, { "title": "Methods", - "children": [1766, 1784, 1790, 1769, 1763, 1792, 1796, 1771, 1776, 1794, 1781, 1778, 1787] + "children": [1961, 1979, 1985, 1964, 1958, 1993, 1987, 1991, 1966, 1971, 1989, 1976, 1973, 1982] } ], "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 18, + "line": 19, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L18" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L19", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -15178,14 +21291,14 @@ ] }, { - "id": 1869, + "id": 2070, "name": "RunCollectionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1898, + "id": 2099, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -15197,7 +21310,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15213,7 +21327,7 @@ } }, { - "id": 1894, + "id": 2095, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -15225,7 +21339,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15239,7 +21354,7 @@ } }, { - "id": 1899, + "id": 2100, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -15251,7 +21366,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15270,7 +21386,7 @@ } }, { - "id": 1892, + "id": 2093, "name": "id", "variant": "declaration", "kind": 1024, @@ -15283,7 +21399,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15297,7 +21414,7 @@ } }, { - "id": 1900, + "id": 2101, "name": "params", "variant": "declaration", "kind": 1024, @@ -15310,7 +21427,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15339,7 +21457,7 @@ } }, { - "id": 1895, + "id": 2096, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -15351,7 +21469,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15365,7 +21484,7 @@ } }, { - "id": 1896, + "id": 2097, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -15377,7 +21496,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15391,7 +21511,7 @@ } }, { - "id": 1893, + "id": 2094, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -15404,7 +21524,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15418,7 +21539,7 @@ } }, { - "id": 1897, + "id": 2098, "name": "url", "variant": "declaration", "kind": 1024, @@ -15430,7 +21551,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15444,7 +21566,7 @@ } }, { - "id": 1873, + "id": 2074, "name": "list", "variant": "declaration", "kind": 2048, @@ -15454,12 +21576,13 @@ "fileName": "src/resource_clients/run_collection.ts", "line": 24, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run_collection.ts#L24" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run_collection.ts#L24", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1874, + "id": 2075, "name": "list", "variant": "signature", "kind": 4096, @@ -15477,19 +21600,20 @@ "fileName": "src/resource_clients/run_collection.ts", "line": 24, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run_collection.ts#L24" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run_collection.ts#L24", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1875, + "id": 2076, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1918, + "target": 2119, "name": "RunCollectionListOptions", "package": "apify-client" }, @@ -15509,7 +21633,7 @@ "typeArguments": [ { "type": "reference", - "target": 288, + "target": 291, "name": "ActorRunListItem", "package": "apify-client" } @@ -15528,11 +21652,11 @@ "groups": [ { "title": "Properties", - "children": [1898, 1894, 1899, 1892, 1900, 1895, 1896, 1893, 1897] + "children": [2099, 2095, 2100, 2093, 2101, 2096, 2097, 2094, 2098] }, { "title": "Methods", - "children": [1873] + "children": [2074] } ], "sources": [ @@ -15540,7 +21664,8 @@ "fileName": "src/resource_clients/run_collection.ts", "line": 10, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run_collection.ts#L10" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run_collection.ts#L10", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -15556,14 +21681,14 @@ ] }, { - "id": 1925, + "id": 2126, "name": "ScheduleClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1967, + "id": 2168, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -15575,7 +21700,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15591,7 +21717,7 @@ } }, { - "id": 1963, + "id": 2164, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -15603,7 +21729,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15617,7 +21744,7 @@ } }, { - "id": 1968, + "id": 2169, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -15629,7 +21756,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15648,7 +21776,7 @@ } }, { - "id": 1961, + "id": 2162, "name": "id", "variant": "declaration", "kind": 1024, @@ -15661,7 +21789,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15675,7 +21804,7 @@ } }, { - "id": 1969, + "id": 2170, "name": "params", "variant": "declaration", "kind": 1024, @@ -15688,7 +21817,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15717,7 +21847,7 @@ } }, { - "id": 1964, + "id": 2165, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -15729,7 +21859,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15743,7 +21874,7 @@ } }, { - "id": 1965, + "id": 2166, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -15755,7 +21886,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15769,7 +21901,7 @@ } }, { - "id": 1962, + "id": 2163, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -15782,7 +21914,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15796,7 +21929,7 @@ } }, { - "id": 1966, + "id": 2167, "name": "url", "variant": "declaration", "kind": 1024, @@ -15808,7 +21941,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15822,7 +21956,7 @@ } }, { - "id": 1936, + "id": 2137, "name": "delete", "variant": "declaration", "kind": 2048, @@ -15832,12 +21966,13 @@ "fileName": "src/resource_clients/schedule.ts", "line": 40, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L40" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L40", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1937, + "id": 2138, "name": "delete", "variant": "signature", "kind": 4096, @@ -15855,7 +21990,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 40, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L40" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L40", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15877,7 +22013,7 @@ ] }, { - "id": 1929, + "id": 2130, "name": "get", "variant": "declaration", "kind": 2048, @@ -15887,12 +22023,13 @@ "fileName": "src/resource_clients/schedule.ts", "line": 25, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1930, + "id": 2131, "name": "get", "variant": "signature", "kind": 4096, @@ -15910,7 +22047,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 25, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -15929,7 +22067,7 @@ }, { "type": "reference", - "target": 1987, + "target": 2188, "name": "Schedule", "package": "apify-client" } @@ -15943,7 +22081,7 @@ ] }, { - "id": 1938, + "id": 2139, "name": "getLog", "variant": "declaration", "kind": 2048, @@ -15953,12 +22091,13 @@ "fileName": "src/resource_clients/schedule.ts", "line": 47, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L47" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L47", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1939, + "id": 2140, "name": "getLog", "variant": "signature", "kind": 4096, @@ -15976,7 +22115,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 47, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L47" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L47", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16007,7 +22147,7 @@ ] }, { - "id": 1931, + "id": 2132, "name": "update", "variant": "declaration", "kind": 2048, @@ -16017,12 +22157,13 @@ "fileName": "src/resource_clients/schedule.ts", "line": 32, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L32" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L32", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 1932, + "id": 2133, "name": "update", "variant": "signature", "kind": 4096, @@ -16040,12 +22181,13 @@ "fileName": "src/resource_clients/schedule.ts", "line": 32, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L32" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L32", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 1933, + "id": 2134, "name": "newFields", "variant": "param", "kind": 32768, @@ -16069,7 +22211,7 @@ "typeArguments": [ { "type": "reference", - "target": 1987, + "target": 2188, "name": "Schedule", "package": "apify-client" }, @@ -16117,14 +22259,14 @@ { "type": "reflection", "declaration": { - "id": 1934, + "id": 2135, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1935, + "id": 2136, "name": "actions", "variant": "declaration", "kind": 1024, @@ -16134,7 +22276,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 89, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L89" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L89", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16148,7 +22291,7 @@ "typeArguments": [ { "type": "reference", - "target": 2011, + "target": 2212, "name": "ScheduleAction", "package": "apify-client" }, @@ -16166,7 +22309,7 @@ "groups": [ { "title": "Properties", - "children": [1935] + "children": [2136] } ], "sources": [ @@ -16174,7 +22317,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 88, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L88" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L88", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } @@ -16196,7 +22340,7 @@ "typeArguments": [ { "type": "reference", - "target": 1987, + "target": 2188, "name": "Schedule", "package": "apify-client" } @@ -16211,11 +22355,11 @@ "groups": [ { "title": "Properties", - "children": [1967, 1963, 1968, 1961, 1969, 1964, 1965, 1962, 1966] + "children": [2168, 2164, 2169, 2162, 2170, 2165, 2166, 2163, 2167] }, { "title": "Methods", - "children": [1936, 1929, 1938, 1931] + "children": [2137, 2130, 2139, 2132] } ], "sources": [ @@ -16223,7 +22367,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 11, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L11" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L11", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -16239,14 +22384,14 @@ ] }, { - "id": 2031, + "id": 2232, "name": "ScheduleCollectionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2065, + "id": 2266, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -16258,7 +22403,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16274,7 +22420,7 @@ } }, { - "id": 2061, + "id": 2262, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -16286,7 +22432,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16300,7 +22447,7 @@ } }, { - "id": 2066, + "id": 2267, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -16312,7 +22459,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16331,7 +22479,7 @@ } }, { - "id": 2059, + "id": 2260, "name": "id", "variant": "declaration", "kind": 1024, @@ -16344,7 +22492,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16358,7 +22507,7 @@ } }, { - "id": 2067, + "id": 2268, "name": "params", "variant": "declaration", "kind": 1024, @@ -16371,7 +22520,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16400,7 +22550,7 @@ } }, { - "id": 2062, + "id": 2263, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -16412,7 +22562,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16426,7 +22577,7 @@ } }, { - "id": 2063, + "id": 2264, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -16438,7 +22589,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16452,7 +22604,7 @@ } }, { - "id": 2060, + "id": 2261, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -16465,7 +22617,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16479,7 +22632,7 @@ } }, { - "id": 2064, + "id": 2265, "name": "url", "variant": "declaration", "kind": 1024, @@ -16491,7 +22644,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16505,7 +22659,7 @@ } }, { - "id": 2038, + "id": 2239, "name": "create", "variant": "declaration", "kind": 2048, @@ -16515,12 +22669,13 @@ "fileName": "src/resource_clients/schedule_collection.ts", "line": 38, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule_collection.ts#L38" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule_collection.ts#L38", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2039, + "id": 2240, "name": "create", "variant": "signature", "kind": 4096, @@ -16538,12 +22693,13 @@ "fileName": "src/resource_clients/schedule_collection.ts", "line": 38, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule_collection.ts#L38" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule_collection.ts#L38", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2040, + "id": 2241, "name": "schedule", "variant": "param", "kind": 32768, @@ -16569,7 +22725,7 @@ "typeArguments": [ { "type": "reference", - "target": 1987, + "target": 2188, "name": "Schedule", "package": "apify-client" }, @@ -16617,14 +22773,14 @@ { "type": "reflection", "declaration": { - "id": 2041, + "id": 2242, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2042, + "id": 2243, "name": "actions", "variant": "declaration", "kind": 1024, @@ -16634,7 +22790,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 89, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L89" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L89", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16648,7 +22805,7 @@ "typeArguments": [ { "type": "reference", - "target": 2011, + "target": 2212, "name": "ScheduleAction", "package": "apify-client" }, @@ -16666,7 +22823,7 @@ "groups": [ { "title": "Properties", - "children": [2042] + "children": [2243] } ], "sources": [ @@ -16674,7 +22831,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 88, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L88" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L88", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } @@ -16696,7 +22854,7 @@ "typeArguments": [ { "type": "reference", - "target": 1987, + "target": 2188, "name": "Schedule", "package": "apify-client" } @@ -16708,7 +22866,7 @@ ] }, { - "id": 2035, + "id": 2236, "name": "list", "variant": "declaration", "kind": 2048, @@ -16718,12 +22876,13 @@ "fileName": "src/resource_clients/schedule_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2036, + "id": 2237, "name": "list", "variant": "signature", "kind": 4096, @@ -16741,19 +22900,20 @@ "fileName": "src/resource_clients/schedule_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2037, + "id": 2238, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2085, + "target": 2286, "name": "ScheduleCollectionListOptions", "package": "apify-client" }, @@ -16773,7 +22933,7 @@ "typeArguments": [ { "type": "reference", - "target": 1987, + "target": 2188, "name": "Schedule", "package": "apify-client" } @@ -16792,11 +22952,11 @@ "groups": [ { "title": "Properties", - "children": [2065, 2061, 2066, 2059, 2067, 2062, 2063, 2060, 2064] + "children": [2266, 2262, 2267, 2260, 2268, 2263, 2264, 2261, 2265] }, { "title": "Methods", - "children": [2038, 2035] + "children": [2239, 2236] } ], "sources": [ @@ -16804,7 +22964,8 @@ "fileName": "src/resource_clients/schedule_collection.ts", "line": 8, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule_collection.ts#L8" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule_collection.ts#L8", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -16820,14 +22981,14 @@ ] }, { - "id": 2089, + "id": 2290, "name": "StoreCollectionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2118, + "id": 2319, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -16839,7 +23000,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16855,7 +23017,7 @@ } }, { - "id": 2114, + "id": 2315, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -16867,7 +23029,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16881,7 +23044,7 @@ } }, { - "id": 2119, + "id": 2320, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -16893,7 +23056,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16912,7 +23076,7 @@ } }, { - "id": 2112, + "id": 2313, "name": "id", "variant": "declaration", "kind": 1024, @@ -16925,7 +23089,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16939,7 +23104,7 @@ } }, { - "id": 2120, + "id": 2321, "name": "params", "variant": "declaration", "kind": 1024, @@ -16952,7 +23117,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -16981,7 +23147,7 @@ } }, { - "id": 2115, + "id": 2316, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -16993,7 +23159,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17007,7 +23174,7 @@ } }, { - "id": 2116, + "id": 2317, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -17019,7 +23186,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17033,7 +23201,7 @@ } }, { - "id": 2113, + "id": 2314, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -17046,7 +23214,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17060,7 +23229,7 @@ } }, { - "id": 2117, + "id": 2318, "name": "url", "variant": "declaration", "kind": 1024, @@ -17072,7 +23241,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17086,7 +23256,7 @@ } }, { - "id": 2093, + "id": 2294, "name": "list", "variant": "declaration", "kind": 2048, @@ -17096,12 +23266,13 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2094, + "id": 2295, "name": "list", "variant": "signature", "kind": 4096, @@ -17119,19 +23290,20 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2095, + "id": 2296, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2151, + "target": 2352, "name": "StoreCollectionListOptions", "package": "apify-client" }, @@ -17151,7 +23323,7 @@ "typeArguments": [ { "type": "reference", - "target": 2140, + "target": 2341, "name": "ActorStoreList", "package": "apify-client" } @@ -17170,11 +23342,11 @@ "groups": [ { "title": "Properties", - "children": [2118, 2114, 2119, 2112, 2120, 2115, 2116, 2113, 2117] + "children": [2319, 2315, 2320, 2313, 2321, 2316, 2317, 2314, 2318] }, { "title": "Methods", - "children": [2093] + "children": [2294] } ], "sources": [ @@ -17182,7 +23354,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 8, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L8" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L8", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -17198,14 +23371,212 @@ ] }, { - "id": 2159, + "id": 1647, + "name": "StreamedLog", + "variant": "declaration", + "kind": 128, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Helper class for redirecting streamed Actor logs to another log." + } + ] + }, + "children": [ + { + "id": 1648, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": {}, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 124, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L124", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1649, + "name": "new StreamedLog", + "variant": "signature", + "kind": 16384, + "flags": {}, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 124, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L124", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "parameters": [ + { + "id": 1650, + "name": "options", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 1669, + "name": "StreamedLogOptions", + "package": "apify-client" + } + } + ], + "type": { + "type": "reference", + "target": 1647, + "name": "StreamedLog", + "package": "apify-client" + } + } + ] + }, + { + "id": 1658, + "name": "start", + "variant": "declaration", + "kind": 2048, + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 134, + "character": 11, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L134", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1659, + "name": "start", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start log redirection." + } + ] + }, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 134, + "character": 11, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L134", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + }, + { + "id": 1660, + "name": "stop", + "variant": "declaration", + "kind": 2048, + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 145, + "character": 17, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L145", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "signatures": [ + { + "id": 1661, + "name": "stop", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Stop log redirection." + } + ] + }, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 145, + "character": 17, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L145", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "children": [1648] + }, + { + "title": "Methods", + "children": [1658, 1660] + } + ], + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 114, + "character": 13, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L114", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ] + }, + { + "id": 2360, "name": "TaskClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2217, + "id": 2418, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -17217,7 +23588,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17233,7 +23605,7 @@ } }, { - "id": 2213, + "id": 2414, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -17245,7 +23617,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17259,7 +23632,7 @@ } }, { - "id": 2218, + "id": 2419, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -17271,7 +23644,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17290,7 +23664,7 @@ } }, { - "id": 2211, + "id": 2412, "name": "id", "variant": "declaration", "kind": 1024, @@ -17303,7 +23677,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17317,7 +23692,7 @@ } }, { - "id": 2219, + "id": 2420, "name": "params", "variant": "declaration", "kind": 1024, @@ -17330,7 +23705,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17359,7 +23735,7 @@ } }, { - "id": 2214, + "id": 2415, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -17371,7 +23747,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17385,7 +23762,7 @@ } }, { - "id": 2215, + "id": 2416, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -17397,7 +23774,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17411,7 +23789,7 @@ } }, { - "id": 2212, + "id": 2413, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -17424,7 +23802,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17438,7 +23817,7 @@ } }, { - "id": 2216, + "id": 2417, "name": "url", "variant": "declaration", "kind": 1024, @@ -17450,7 +23829,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17464,7 +23844,7 @@ } }, { - "id": 2174, + "id": 2375, "name": "call", "variant": "declaration", "kind": 2048, @@ -17474,12 +23854,13 @@ "fileName": "src/resource_clients/task.ts", "line": 105, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L105" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L105", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2175, + "id": 2376, "name": "call", "variant": "signature", "kind": 4096, @@ -17505,12 +23886,13 @@ "fileName": "src/resource_clients/task.ts", "line": 105, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L105" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L105", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2176, + "id": 2377, "name": "input", "variant": "param", "kind": 32768, @@ -17525,14 +23907,14 @@ } }, { - "id": 2177, + "id": 2378, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2262, + "target": 2463, "name": "TaskCallOptions", "package": "apify-client" }, @@ -17548,7 +23930,7 @@ "typeArguments": [ { "type": "reference", - "target": 302, + "target": 305, "name": "ActorRun", "package": "apify-client" } @@ -17560,7 +23942,7 @@ ] }, { - "id": 2168, + "id": 2369, "name": "delete", "variant": "declaration", "kind": 2048, @@ -17570,12 +23952,13 @@ "fileName": "src/resource_clients/task.ts", "line": 46, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L46" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L46", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2169, + "id": 2370, "name": "delete", "variant": "signature", "kind": 4096, @@ -17593,7 +23976,8 @@ "fileName": "src/resource_clients/task.ts", "line": 46, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L46" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L46", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17615,7 +23999,7 @@ ] }, { - "id": 2163, + "id": 2364, "name": "get", "variant": "declaration", "kind": 2048, @@ -17625,12 +24009,13 @@ "fileName": "src/resource_clients/task.ts", "line": 30, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L30" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L30", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2164, + "id": 2365, "name": "get", "variant": "signature", "kind": 4096, @@ -17648,7 +24033,8 @@ "fileName": "src/resource_clients/task.ts", "line": 30, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L30" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L30", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17667,7 +24053,7 @@ }, { "type": "reference", - "target": 2237, + "target": 2438, "name": "Task", "package": "apify-client" } @@ -17681,7 +24067,7 @@ ] }, { - "id": 2178, + "id": 2379, "name": "getInput", "variant": "declaration", "kind": 2048, @@ -17691,12 +24077,13 @@ "fileName": "src/resource_clients/task.ts", "line": 134, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L134" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L134", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2179, + "id": 2380, "name": "getInput", "variant": "signature", "kind": 4096, @@ -17714,7 +24101,8 @@ "fileName": "src/resource_clients/task.ts", "line": 134, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L134" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L134", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -17756,7 +24144,7 @@ ] }, { - "id": 2183, + "id": 2384, "name": "lastRun", "variant": "declaration", "kind": 2048, @@ -17766,12 +24154,13 @@ "fileName": "src/resource_clients/task.ts", "line": 167, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L167" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L167", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2184, + "id": 2385, "name": "lastRun", "variant": "signature", "kind": 4096, @@ -17789,19 +24178,20 @@ "fileName": "src/resource_clients/task.ts", "line": 167, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L167" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L167", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2185, + "id": 2386, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2259, + "target": 2460, "name": "TaskLastRunOptions", "package": "apify-client" }, @@ -17810,7 +24200,7 @@ ], "type": { "type": "reference", - "target": 1759, + "target": 1954, "name": "RunClient", "package": "apify-client" } @@ -17818,7 +24208,7 @@ ] }, { - "id": 2186, + "id": 2387, "name": "runs", "variant": "declaration", "kind": 2048, @@ -17828,12 +24218,13 @@ "fileName": "src/resource_clients/task.ts", "line": 188, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L188" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L188", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2187, + "id": 2388, "name": "runs", "variant": "signature", "kind": 4096, @@ -17851,12 +24242,13 @@ "fileName": "src/resource_clients/task.ts", "line": 188, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L188" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L188", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1869, + "target": 2070, "name": "RunCollectionClient", "package": "apify-client" } @@ -17864,7 +24256,7 @@ ] }, { - "id": 2170, + "id": 2371, "name": "start", "variant": "declaration", "kind": 2048, @@ -17874,12 +24266,13 @@ "fileName": "src/resource_clients/task.ts", "line": 54, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L54" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L54", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2171, + "id": 2372, "name": "start", "variant": "signature", "kind": 4096, @@ -17897,12 +24290,13 @@ "fileName": "src/resource_clients/task.ts", "line": 54, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L54" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L54", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2172, + "id": 2373, "name": "input", "variant": "param", "kind": 32768, @@ -17917,14 +24311,14 @@ } }, { - "id": 2173, + "id": 2374, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2261, + "target": 2462, "name": "TaskStartOptions", "package": "apify-client" }, @@ -17940,7 +24334,7 @@ "typeArguments": [ { "type": "reference", - "target": 302, + "target": 305, "name": "ActorRun", "package": "apify-client" } @@ -17952,7 +24346,7 @@ ] }, { - "id": 2165, + "id": 2366, "name": "update", "variant": "declaration", "kind": 2048, @@ -17962,12 +24356,13 @@ "fileName": "src/resource_clients/task.ts", "line": 37, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2166, + "id": 2367, "name": "update", "variant": "signature", "kind": 4096, @@ -17985,12 +24380,13 @@ "fileName": "src/resource_clients/task.ts", "line": 37, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2167, + "id": 2368, "name": "newFields", "variant": "param", "kind": 32768, @@ -18011,7 +24407,7 @@ "typeArguments": [ { "type": "reference", - "target": 2237, + "target": 2438, "name": "Task", "package": "apify-client" }, @@ -18063,7 +24459,7 @@ "typeArguments": [ { "type": "reference", - "target": 2237, + "target": 2438, "name": "Task", "package": "apify-client" } @@ -18075,7 +24471,7 @@ ] }, { - "id": 2180, + "id": 2381, "name": "updateInput", "variant": "declaration", "kind": 2048, @@ -18085,12 +24481,13 @@ "fileName": "src/resource_clients/task.ts", "line": 153, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L153" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L153", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2181, + "id": 2382, "name": "updateInput", "variant": "signature", "kind": 4096, @@ -18108,12 +24505,13 @@ "fileName": "src/resource_clients/task.ts", "line": 153, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L153" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L153", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2182, + "id": 2383, "name": "newFields", "variant": "param", "kind": 32768, @@ -18175,7 +24573,7 @@ ] }, { - "id": 2188, + "id": 2389, "name": "webhooks", "variant": "declaration", "kind": 2048, @@ -18185,12 +24583,13 @@ "fileName": "src/resource_clients/task.ts", "line": 199, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L199" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L199", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2189, + "id": 2390, "name": "webhooks", "variant": "signature", "kind": 4096, @@ -18208,12 +24607,13 @@ "fileName": "src/resource_clients/task.ts", "line": 199, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L199" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L199", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2584, + "target": 2786, "name": "WebhookCollectionClient", "package": "apify-client" } @@ -18224,11 +24624,11 @@ "groups": [ { "title": "Properties", - "children": [2217, 2213, 2218, 2211, 2219, 2214, 2215, 2212, 2216] + "children": [2418, 2414, 2419, 2412, 2420, 2415, 2416, 2413, 2417] }, { "title": "Methods", - "children": [2174, 2168, 2163, 2178, 2183, 2186, 2170, 2165, 2180, 2188] + "children": [2375, 2369, 2364, 2379, 2384, 2387, 2371, 2366, 2381, 2389] } ], "sources": [ @@ -18236,7 +24636,8 @@ "fileName": "src/resource_clients/task.ts", "line": 16, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L16" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L16", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -18252,14 +24653,14 @@ ] }, { - "id": 2270, + "id": 2472, "name": "TaskCollectionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2302, + "id": 2504, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -18271,7 +24672,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18287,7 +24689,7 @@ } }, { - "id": 2298, + "id": 2500, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -18299,7 +24701,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18313,7 +24716,7 @@ } }, { - "id": 2303, + "id": 2505, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -18325,7 +24728,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18344,7 +24748,7 @@ } }, { - "id": 2296, + "id": 2498, "name": "id", "variant": "declaration", "kind": 1024, @@ -18357,7 +24761,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18371,7 +24776,7 @@ } }, { - "id": 2304, + "id": 2506, "name": "params", "variant": "declaration", "kind": 1024, @@ -18384,7 +24789,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18413,7 +24819,7 @@ } }, { - "id": 2299, + "id": 2501, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -18425,7 +24831,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18439,7 +24846,7 @@ } }, { - "id": 2300, + "id": 2502, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -18451,7 +24858,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18465,7 +24873,7 @@ } }, { - "id": 2297, + "id": 2499, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -18478,7 +24886,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18492,7 +24901,7 @@ } }, { - "id": 2301, + "id": 2503, "name": "url", "variant": "declaration", "kind": 1024, @@ -18504,7 +24913,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18518,7 +24928,7 @@ } }, { - "id": 2277, + "id": 2479, "name": "create", "variant": "declaration", "kind": 2048, @@ -18528,12 +24938,13 @@ "fileName": "src/resource_clients/task_collection.ts", "line": 43, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task_collection.ts#L43" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task_collection.ts#L43", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2278, + "id": 2480, "name": "create", "variant": "signature", "kind": 4096, @@ -18551,19 +24962,20 @@ "fileName": "src/resource_clients/task_collection.ts", "line": 43, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task_collection.ts#L43" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task_collection.ts#L43", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2279, + "id": 2481, "name": "task", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2327, + "target": 2529, "name": "TaskCreateData", "package": "apify-client" } @@ -18578,7 +24990,7 @@ "typeArguments": [ { "type": "reference", - "target": 2237, + "target": 2438, "name": "Task", "package": "apify-client" } @@ -18590,7 +25002,7 @@ ] }, { - "id": 2274, + "id": 2476, "name": "list", "variant": "declaration", "kind": 2048, @@ -18600,12 +25012,13 @@ "fileName": "src/resource_clients/task_collection.ts", "line": 27, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task_collection.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task_collection.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2275, + "id": 2477, "name": "list", "variant": "signature", "kind": 4096, @@ -18629,12 +25042,13 @@ "fileName": "src/resource_clients/task_collection.ts", "line": 27, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task_collection.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task_collection.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2276, + "id": 2478, "name": "options", "variant": "param", "kind": 32768, @@ -18643,7 +25057,7 @@ }, "type": { "type": "reference", - "target": 2322, + "target": 2524, "name": "TaskCollectionListOptions", "package": "apify-client" }, @@ -18663,7 +25077,7 @@ "typeArguments": [ { "type": "reference", - "target": 2326, + "target": 2528, "name": "TaskList", "package": "apify-client" } @@ -18682,11 +25096,11 @@ "groups": [ { "title": "Properties", - "children": [2302, 2298, 2303, 2296, 2304, 2299, 2300, 2297, 2301] + "children": [2504, 2500, 2505, 2498, 2506, 2501, 2502, 2499, 2503] }, { "title": "Methods", - "children": [2277, 2274] + "children": [2479, 2476] } ], "sources": [ @@ -18694,7 +25108,8 @@ "fileName": "src/resource_clients/task_collection.ts", "line": 8, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task_collection.ts#L8" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task_collection.ts#L8", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -18710,14 +25125,14 @@ ] }, { - "id": 2335, + "id": 2537, "name": "UserClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2375, + "id": 2577, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -18729,7 +25144,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18745,7 +25161,7 @@ } }, { - "id": 2371, + "id": 2573, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -18757,7 +25173,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18771,7 +25188,7 @@ } }, { - "id": 2376, + "id": 2578, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -18783,7 +25200,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18802,7 +25220,7 @@ } }, { - "id": 2369, + "id": 2571, "name": "id", "variant": "declaration", "kind": 1024, @@ -18815,7 +25233,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18829,7 +25248,7 @@ } }, { - "id": 2377, + "id": 2579, "name": "params", "variant": "declaration", "kind": 1024, @@ -18842,7 +25261,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18871,7 +25291,7 @@ } }, { - "id": 2372, + "id": 2574, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -18883,7 +25303,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18897,7 +25318,7 @@ } }, { - "id": 2373, + "id": 2575, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -18909,7 +25330,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18923,7 +25345,7 @@ } }, { - "id": 2370, + "id": 2572, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -18936,7 +25358,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18950,7 +25373,7 @@ } }, { - "id": 2374, + "id": 2576, "name": "url", "variant": "declaration", "kind": 1024, @@ -18962,7 +25385,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -18976,7 +25400,7 @@ } }, { - "id": 2339, + "id": 2541, "name": "get", "variant": "declaration", "kind": 2048, @@ -18986,12 +25410,13 @@ "fileName": "src/resource_clients/user.ts", "line": 23, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2340, + "id": 2542, "name": "get", "variant": "signature", "kind": 4096, @@ -19009,7 +25434,8 @@ "fileName": "src/resource_clients/user.ts", "line": 23, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19021,7 +25447,7 @@ "typeArguments": [ { "type": "reference", - "target": 2395, + "target": 2597, "name": "User", "package": "apify-client" } @@ -19033,7 +25459,7 @@ ] }, { - "id": 2343, + "id": 2545, "name": "limits", "variant": "declaration", "kind": 2048, @@ -19043,12 +25469,13 @@ "fileName": "src/resource_clients/user.ts", "line": 55, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L55" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L55", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2344, + "id": 2546, "name": "limits", "variant": "signature", "kind": 4096, @@ -19066,7 +25493,8 @@ "fileName": "src/resource_clients/user.ts", "line": 55, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L55" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L55", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19085,7 +25513,7 @@ }, { "type": "reference", - "target": 2460, + "target": 2662, "name": "AccountAndUsageLimits", "package": "apify-client" } @@ -19099,7 +25527,7 @@ ] }, { - "id": 2341, + "id": 2543, "name": "monthlyUsage", "variant": "declaration", "kind": 2048, @@ -19109,12 +25537,13 @@ "fileName": "src/resource_clients/user.ts", "line": 30, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L30" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L30", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2342, + "id": 2544, "name": "monthlyUsage", "variant": "signature", "kind": 4096, @@ -19132,7 +25561,8 @@ "fileName": "src/resource_clients/user.ts", "line": 30, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L30" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L30", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19151,7 +25581,7 @@ }, { "type": "reference", - "target": 2448, + "target": 2650, "name": "MonthlyUsage", "package": "apify-client" } @@ -19165,7 +25595,7 @@ ] }, { - "id": 2345, + "id": 2547, "name": "updateLimits", "variant": "declaration", "kind": 2048, @@ -19175,12 +25605,13 @@ "fileName": "src/resource_clients/user.ts", "line": 74, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L74" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L74", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2346, + "id": 2548, "name": "updateLimits", "variant": "signature", "kind": 4096, @@ -19198,19 +25629,20 @@ "fileName": "src/resource_clients/user.ts", "line": 74, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L74" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L74", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2347, + "id": 2549, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2479, + "target": 2681, "name": "LimitsUpdateOptions", "package": "apify-client" } @@ -19238,11 +25670,11 @@ "groups": [ { "title": "Properties", - "children": [2375, 2371, 2376, 2369, 2377, 2372, 2373, 2370, 2374] + "children": [2577, 2573, 2578, 2571, 2579, 2574, 2575, 2572, 2576] }, { "title": "Methods", - "children": [2339, 2343, 2341, 2345] + "children": [2541, 2545, 2543, 2547] } ], "sources": [ @@ -19250,7 +25682,8 @@ "fileName": "src/resource_clients/user.ts", "line": 7, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L7" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L7", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -19266,14 +25699,14 @@ ] }, { - "id": 2491, + "id": 2693, "name": "WebhookClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2533, + "id": 2735, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -19285,7 +25718,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19301,7 +25735,7 @@ } }, { - "id": 2529, + "id": 2731, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -19313,7 +25747,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19327,7 +25762,7 @@ } }, { - "id": 2534, + "id": 2736, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -19339,7 +25774,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19358,7 +25794,7 @@ } }, { - "id": 2527, + "id": 2729, "name": "id", "variant": "declaration", "kind": 1024, @@ -19371,7 +25807,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19385,7 +25822,7 @@ } }, { - "id": 2535, + "id": 2737, "name": "params", "variant": "declaration", "kind": 1024, @@ -19398,7 +25835,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19427,7 +25865,7 @@ } }, { - "id": 2530, + "id": 2732, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -19439,7 +25877,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19453,7 +25892,7 @@ } }, { - "id": 2531, + "id": 2733, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -19465,7 +25904,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19479,7 +25919,7 @@ } }, { - "id": 2528, + "id": 2730, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -19492,7 +25932,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19506,7 +25947,7 @@ } }, { - "id": 2532, + "id": 2734, "name": "url", "variant": "declaration", "kind": 1024, @@ -19518,7 +25959,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19532,7 +25974,7 @@ } }, { - "id": 2500, + "id": 2702, "name": "delete", "variant": "declaration", "kind": 2048, @@ -19542,12 +25984,13 @@ "fileName": "src/resource_clients/webhook.ts", "line": 43, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L43" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L43", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2501, + "id": 2703, "name": "delete", "variant": "signature", "kind": 4096, @@ -19565,7 +26008,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 43, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L43" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L43", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19587,7 +26031,7 @@ ] }, { - "id": 2504, + "id": 2706, "name": "dispatches", "variant": "declaration", "kind": 2048, @@ -19597,12 +26041,13 @@ "fileName": "src/resource_clients/webhook.ts", "line": 70, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L70" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L70", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2505, + "id": 2707, "name": "dispatches", "variant": "signature", "kind": 4096, @@ -19620,12 +26065,13 @@ "fileName": "src/resource_clients/webhook.ts", "line": 70, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L70" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L70", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2718, + "target": 2920, "name": "WebhookDispatchCollectionClient", "package": "apify-client" } @@ -19633,7 +26079,7 @@ ] }, { - "id": 2495, + "id": 2697, "name": "get", "variant": "declaration", "kind": 2048, @@ -19643,12 +26089,13 @@ "fileName": "src/resource_clients/webhook.ts", "line": 27, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2496, + "id": 2698, "name": "get", "variant": "signature", "kind": 4096, @@ -19666,7 +26113,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 27, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19685,7 +26133,7 @@ }, { "type": "reference", - "target": 2553, + "target": 2755, "name": "Webhook", "package": "apify-client" } @@ -19699,7 +26147,7 @@ ] }, { - "id": 2502, + "id": 2704, "name": "test", "variant": "declaration", "kind": 2048, @@ -19709,12 +26157,13 @@ "fileName": "src/resource_clients/webhook.ts", "line": 50, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L50" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L50", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2503, + "id": 2705, "name": "test", "variant": "signature", "kind": 4096, @@ -19732,7 +26181,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 50, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L50" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L50", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19751,7 +26201,7 @@ }, { "type": "reference", - "target": 2693, + "target": 2895, "name": "WebhookDispatch", "package": "apify-client" } @@ -19765,7 +26215,7 @@ ] }, { - "id": 2497, + "id": 2699, "name": "update", "variant": "declaration", "kind": 2048, @@ -19775,12 +26225,13 @@ "fileName": "src/resource_clients/webhook.ts", "line": 34, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L34" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L34", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2498, + "id": 2700, "name": "update", "variant": "signature", "kind": 4096, @@ -19798,19 +26249,20 @@ "fileName": "src/resource_clients/webhook.ts", "line": 34, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L34" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L34", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2499, + "id": 2701, "name": "newFields", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2573, + "target": 2775, "name": "WebhookUpdateData", "package": "apify-client" } @@ -19825,7 +26277,7 @@ "typeArguments": [ { "type": "reference", - "target": 2553, + "target": 2755, "name": "Webhook", "package": "apify-client" } @@ -19840,11 +26292,11 @@ "groups": [ { "title": "Properties", - "children": [2533, 2529, 2534, 2527, 2535, 2530, 2531, 2528, 2532] + "children": [2735, 2731, 2736, 2729, 2737, 2732, 2733, 2730, 2734] }, { "title": "Methods", - "children": [2500, 2504, 2495, 2502, 2497] + "children": [2702, 2706, 2697, 2704, 2699] } ], "sources": [ @@ -19852,7 +26304,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 13, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L13" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L13", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -19868,14 +26321,14 @@ ] }, { - "id": 2584, + "id": 2786, "name": "WebhookCollectionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2616, + "id": 2818, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -19887,7 +26340,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19903,7 +26357,7 @@ } }, { - "id": 2612, + "id": 2814, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -19915,7 +26369,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19929,7 +26384,7 @@ } }, { - "id": 2617, + "id": 2819, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -19941,7 +26396,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19960,7 +26416,7 @@ } }, { - "id": 2610, + "id": 2812, "name": "id", "variant": "declaration", "kind": 1024, @@ -19973,7 +26429,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -19987,7 +26444,7 @@ } }, { - "id": 2618, + "id": 2820, "name": "params", "variant": "declaration", "kind": 1024, @@ -20000,7 +26457,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20029,7 +26487,7 @@ } }, { - "id": 2613, + "id": 2815, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -20041,7 +26499,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20055,7 +26514,7 @@ } }, { - "id": 2614, + "id": 2816, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -20067,7 +26526,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20081,7 +26541,7 @@ } }, { - "id": 2611, + "id": 2813, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -20094,7 +26554,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20108,7 +26569,7 @@ } }, { - "id": 2615, + "id": 2817, "name": "url", "variant": "declaration", "kind": 1024, @@ -20120,7 +26581,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20134,7 +26596,7 @@ } }, { - "id": 2591, + "id": 2793, "name": "create", "variant": "declaration", "kind": 2048, @@ -20144,12 +26606,13 @@ "fileName": "src/resource_clients/webhook_collection.ts", "line": 40, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_collection.ts#L40" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_collection.ts#L40", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2592, + "id": 2794, "name": "create", "variant": "signature", "kind": 4096, @@ -20167,12 +26630,13 @@ "fileName": "src/resource_clients/webhook_collection.ts", "line": 40, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_collection.ts#L40" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_collection.ts#L40", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2593, + "id": 2795, "name": "webhook", "variant": "param", "kind": 32768, @@ -20181,7 +26645,7 @@ }, "type": { "type": "reference", - "target": 2573, + "target": 2775, "name": "WebhookUpdateData", "package": "apify-client" } @@ -20196,7 +26660,7 @@ "typeArguments": [ { "type": "reference", - "target": 2553, + "target": 2755, "name": "Webhook", "package": "apify-client" } @@ -20208,7 +26672,7 @@ ] }, { - "id": 2588, + "id": 2790, "name": "list", "variant": "declaration", "kind": 2048, @@ -20218,12 +26682,13 @@ "fileName": "src/resource_clients/webhook_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2589, + "id": 2791, "name": "list", "variant": "signature", "kind": 4096, @@ -20241,19 +26706,20 @@ "fileName": "src/resource_clients/webhook_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2590, + "id": 2792, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2636, + "target": 2838, "name": "WebhookCollectionListOptions", "package": "apify-client" }, @@ -20280,7 +26746,7 @@ "typeArguments": [ { "type": "reference", - "target": 2553, + "target": 2755, "name": "Webhook", "package": "apify-client" }, @@ -20316,11 +26782,11 @@ "groups": [ { "title": "Properties", - "children": [2616, 2612, 2617, 2610, 2618, 2613, 2614, 2611, 2615] + "children": [2818, 2814, 2819, 2812, 2820, 2815, 2816, 2813, 2817] }, { "title": "Methods", - "children": [2591, 2588] + "children": [2793, 2790] } ], "sources": [ @@ -20328,7 +26794,8 @@ "fileName": "src/resource_clients/webhook_collection.ts", "line": 8, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_collection.ts#L8" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_collection.ts#L8", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -20344,14 +26811,14 @@ ] }, { - "id": 2640, + "id": 2842, "name": "WebhookDispatchClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2673, + "id": 2875, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -20363,7 +26830,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20379,7 +26847,7 @@ } }, { - "id": 2669, + "id": 2871, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -20391,7 +26859,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20405,7 +26874,7 @@ } }, { - "id": 2674, + "id": 2876, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -20417,7 +26886,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20436,7 +26906,7 @@ } }, { - "id": 2667, + "id": 2869, "name": "id", "variant": "declaration", "kind": 1024, @@ -20449,7 +26919,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20463,7 +26934,7 @@ } }, { - "id": 2675, + "id": 2877, "name": "params", "variant": "declaration", "kind": 1024, @@ -20476,7 +26947,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20505,7 +26977,7 @@ } }, { - "id": 2670, + "id": 2872, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -20517,7 +26989,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20531,7 +27004,7 @@ } }, { - "id": 2671, + "id": 2873, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -20543,7 +27016,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20557,7 +27031,7 @@ } }, { - "id": 2668, + "id": 2870, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -20570,7 +27044,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20584,7 +27059,7 @@ } }, { - "id": 2672, + "id": 2874, "name": "url", "variant": "declaration", "kind": 1024, @@ -20596,7 +27071,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20610,7 +27086,7 @@ } }, { - "id": 2644, + "id": 2846, "name": "get", "variant": "declaration", "kind": 2048, @@ -20620,12 +27096,13 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 19, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L19" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L19", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2645, + "id": 2847, "name": "get", "variant": "signature", "kind": 4096, @@ -20643,7 +27120,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 19, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L19" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L19", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20662,7 +27140,7 @@ }, { "type": "reference", - "target": 2693, + "target": 2895, "name": "WebhookDispatch", "package": "apify-client" } @@ -20679,11 +27157,11 @@ "groups": [ { "title": "Properties", - "children": [2673, 2669, 2674, 2667, 2675, 2670, 2671, 2668, 2672] + "children": [2875, 2871, 2876, 2869, 2877, 2872, 2873, 2870, 2874] }, { "title": "Methods", - "children": [2644] + "children": [2846] } ], "sources": [ @@ -20691,7 +27169,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 5, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L5" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L5", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -20707,14 +27186,14 @@ ] }, { - "id": 2718, + "id": 2920, "name": "WebhookDispatchCollectionClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2747, + "id": 2949, "name": "apifyClient", "variant": "declaration", "kind": 1024, @@ -20726,7 +27205,8 @@ "fileName": "src/base/api_client.ts", "line": 35, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L35" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L35", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20742,7 +27222,7 @@ } }, { - "id": 2743, + "id": 2945, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -20754,7 +27234,8 @@ "fileName": "src/base/api_client.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20768,7 +27249,7 @@ } }, { - "id": 2748, + "id": 2950, "name": "httpClient", "variant": "declaration", "kind": 1024, @@ -20780,7 +27261,8 @@ "fileName": "src/base/api_client.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20799,7 +27281,7 @@ } }, { - "id": 2741, + "id": 2943, "name": "id", "variant": "declaration", "kind": 1024, @@ -20812,7 +27294,8 @@ "fileName": "src/base/api_client.ts", "line": 23, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L23" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L23", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20826,7 +27309,7 @@ } }, { - "id": 2749, + "id": 2951, "name": "params", "variant": "declaration", "kind": 1024, @@ -20839,7 +27322,8 @@ "fileName": "src/base/api_client.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20868,7 +27352,7 @@ } }, { - "id": 2744, + "id": 2946, "name": "publicBaseUrl", "variant": "declaration", "kind": 1024, @@ -20880,7 +27364,8 @@ "fileName": "src/base/api_client.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20894,7 +27379,7 @@ } }, { - "id": 2745, + "id": 2947, "name": "resourcePath", "variant": "declaration", "kind": 1024, @@ -20906,7 +27391,8 @@ "fileName": "src/base/api_client.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20920,7 +27406,7 @@ } }, { - "id": 2742, + "id": 2944, "name": "safeId", "variant": "declaration", "kind": 1024, @@ -20933,7 +27419,8 @@ "fileName": "src/base/api_client.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20947,7 +27434,7 @@ } }, { - "id": 2746, + "id": 2948, "name": "url", "variant": "declaration", "kind": 1024, @@ -20959,7 +27446,8 @@ "fileName": "src/base/api_client.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/base/api_client.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/base/api_client.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -20973,7 +27461,7 @@ } }, { - "id": 2722, + "id": 2924, "name": "list", "variant": "declaration", "kind": 2048, @@ -20983,12 +27471,13 @@ "fileName": "src/resource_clients/webhook_dispatch_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ { - "id": 2723, + "id": 2925, "name": "list", "variant": "signature", "kind": 4096, @@ -21006,19 +27495,20 @@ "fileName": "src/resource_clients/webhook_dispatch_collection.ts", "line": 22, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch_collection.ts#L22" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch_collection.ts#L22", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2724, + "id": 2926, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2767, + "target": 2969, "name": "WebhookDispatchCollectionListOptions", "package": "apify-client" }, @@ -21038,7 +27528,7 @@ "typeArguments": [ { "type": "reference", - "target": 2693, + "target": 2895, "name": "WebhookDispatch", "package": "apify-client" } @@ -21057,11 +27547,11 @@ "groups": [ { "title": "Properties", - "children": [2747, 2743, 2748, 2741, 2749, 2744, 2745, 2742, 2746] + "children": [2949, 2945, 2950, 2943, 2951, 2946, 2947, 2944, 2948] }, { "title": "Methods", - "children": [2722] + "children": [2924] } ], "sources": [ @@ -21069,7 +27559,8 @@ "fileName": "src/resource_clients/webhook_dispatch_collection.ts", "line": 8, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch_collection.ts#L8" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch_collection.ts#L8", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -21085,14 +27576,14 @@ ] }, { - "id": 2460, + "id": 2662, "name": "AccountAndUsageLimits", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2463, + "id": 2665, "name": "current", "variant": "declaration", "kind": 1024, @@ -21102,18 +27593,19 @@ "fileName": "src/resource_clients/user.ts", "line": 229, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L229" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L229", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2480, + "target": 2682, "name": "Current", "package": "apify-client" } }, { - "id": 2462, + "id": 2664, "name": "limits", "variant": "declaration", "kind": 1024, @@ -21123,18 +27615,19 @@ "fileName": "src/resource_clients/user.ts", "line": 228, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L228" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L228", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2467, + "target": 2669, "name": "Limits", "package": "apify-client" } }, { - "id": 2461, + "id": 2663, "name": "monthlyUsageCycle", "variant": "declaration", "kind": 1024, @@ -21144,12 +27637,13 @@ "fileName": "src/resource_clients/user.ts", "line": 227, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L227" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L227", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2464, + "target": 2666, "name": "MonthlyUsageCycle", "package": "apify-client" } @@ -21158,7 +27652,7 @@ "groups": [ { "title": "Properties", - "children": [2463, 2462, 2461] + "children": [2665, 2664, 2663] } ], "sources": [ @@ -21166,7 +27660,8 @@ "fileName": "src/resource_clients/user.ts", "line": 226, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L226" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L226", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, @@ -21188,9 +27683,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 301, + "line": 312, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L301" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L312", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21220,9 +27716,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 302, + "line": 313, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L302" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L313", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21240,9 +27737,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 301, + "line": 312, "character": 34, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L301" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L312", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } @@ -21261,9 +27759,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 300, + "line": 311, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L300" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L311", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21283,9 +27782,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 287, + "line": 298, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L287" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L298", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21307,9 +27807,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 292, + "line": 303, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L292" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L303", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21328,9 +27829,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 295, + "line": 306, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L295" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L306", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21349,9 +27851,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 282, + "line": 293, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L282" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L293", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21370,9 +27873,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 293, + "line": 304, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L293" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L304", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21391,9 +27895,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 278, + "line": 289, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L278" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L289", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21412,9 +27917,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 286, + "line": 297, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L286" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L297", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21433,9 +27939,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 294, + "line": 305, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L294" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L305", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21452,9 +27959,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 285, + "line": 296, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L285" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L296", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21471,9 +27979,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 288, + "line": 299, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L288" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L299", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21495,9 +28004,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 280, + "line": 291, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L280" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L291", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21516,16 +28026,17 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 291, + "line": 302, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L291" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L302", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 438, + "target": 442, "name": "ActorRunPricingInfo", "package": "apify-client" } @@ -21556,9 +28067,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 284, + "line": 295, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L284" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L295", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21577,9 +28089,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 299, + "line": 310, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L299" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L310", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21598,9 +28111,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 298, + "line": 309, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L298" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L309", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21617,9 +28131,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 289, + "line": 300, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L289" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L300", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21640,9 +28155,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 297, + "line": 308, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L297" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L308", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21663,9 +28179,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 296, + "line": 307, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L296" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L307", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21682,9 +28199,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 279, + "line": 290, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L279" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L290", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21701,9 +28219,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 281, + "line": 292, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L281" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L292", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21720,16 +28239,17 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 290, + "line": 301, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L290" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L301", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 749, + "target": 753, "name": "ActorVersion", "package": "apify-client" } @@ -21748,21 +28268,22 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 277, + "line": 288, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L277" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L288", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 369, + "id": 373, "name": "ActorBuildOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 370, + "id": 374, "name": "betaPackages", "variant": "declaration", "kind": 1024, @@ -21772,9 +28293,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 512, + "line": 543, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L512" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L543", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21783,7 +28305,7 @@ } }, { - "id": 371, + "id": 375, "name": "tag", "variant": "declaration", "kind": 1024, @@ -21793,9 +28315,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 513, + "line": 544, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L513" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L544", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21804,7 +28327,7 @@ } }, { - "id": 372, + "id": 376, "name": "useCache", "variant": "declaration", "kind": 1024, @@ -21814,9 +28337,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 514, + "line": 545, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L514" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L545", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21825,7 +28349,7 @@ } }, { - "id": 373, + "id": 377, "name": "waitForFinish", "variant": "declaration", "kind": 1024, @@ -21835,9 +28359,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 515, + "line": 546, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L515" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L546", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21849,27 +28374,28 @@ "groups": [ { "title": "Properties", - "children": [370, 371, 372, 373] + "children": [374, 375, 376, 377] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 511, + "line": 542, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L511" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L542", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 278, + "id": 279, "name": "ActorCallOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 281, + "id": 283, "name": "build", "variant": "declaration", "kind": 1024, @@ -21912,9 +28438,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 368, + "line": 379, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L368" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L379", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -21928,7 +28455,7 @@ } }, { - "id": 282, + "id": 284, "name": "contentType", "variant": "declaration", "kind": 1024, @@ -22003,9 +28530,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 376, + "line": 387, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L376" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L387", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22019,7 +28547,7 @@ } }, { - "id": 287, + "id": 290, "name": "forcePermissionLevel", "variant": "declaration", "kind": 1024, @@ -22038,9 +28566,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 424, + "line": 445, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L424" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L445", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22054,7 +28583,91 @@ } }, { - "id": 286, + "id": 281, + "name": "log", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "code", + "text": "`Log`" + }, + { + "kind": "text", + "text": " instance that should be used to redirect actor run logs to.\nIf " + }, + { + "kind": "code", + "text": "`undefined`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`'default'`" + }, + { + "kind": "text", + "text": " the pre-defined " + }, + { + "kind": "code", + "text": "`Log`" + }, + { + "kind": "text", + "text": " will be created and used.\nIf " + }, + { + "kind": "code", + "text": "`null`" + }, + { + "kind": "text", + "text": ", no log redirection will occur." + } + ] + }, + "sources": [ + { + "fileName": "src/resource_clients/actor.ts", + "line": 458, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L458", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "Log" + }, + "name": "Log", + "package": "@apify/log" + }, + { + "type": "literal", + "value": "default" + } + ] + } + }, + { + "id": 288, "name": "maxItems", "variant": "declaration", "kind": 1024, @@ -22066,7 +28679,7 @@ "summary": [ { "kind": "text", - "text": "Specifies maximum number of items that the actor run should return.\nThis is used by pay per result actors to limit the maximum number of results that will be charged to customer.\nValue can be accessed in actor run using " + "text": "Specifies the maximum number of dataset items that will be charged for pay-per-result Actors.\nThis does NOT guarantee that the Actor will return only this many items.\nIt only ensures you won't be charged for more than this number of items.\nOnly works for pay-per-result Actors.\nValue can be accessed in the Actor run using " }, { "kind": "code", @@ -22081,9 +28694,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 411, + "line": 424, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L411" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L424", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22097,7 +28711,51 @@ } }, { - "id": 283, + "id": 289, + "name": "maxTotalChargeUsd", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the maximum cost of the Actor run. This parameter is\nused only for pay-per-event Actors. It allows you to limit the amount\ncharged to your subscription. You can access the maximum cost in your\nActor by using the " + }, + { + "kind": "code", + "text": "`ACTOR_MAX_TOTAL_CHARGE_USD`" + }, + { + "kind": "text", + "text": " environment variable." + } + ] + }, + "sources": [ + { + "fileName": "src/resource_clients/actor.ts", + "line": 432, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L432", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.maxTotalChargeUsd" + } + }, + { + "id": 285, "name": "memory", "variant": "declaration", "kind": 1024, @@ -22116,9 +28774,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 382, + "line": 393, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L382" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L393", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22132,7 +28791,7 @@ } }, { - "id": 280, + "id": 282, "name": "restartOnError", "variant": "declaration", "kind": 1024, @@ -22151,9 +28810,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 416, + "line": 437, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L416" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L437", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22167,7 +28827,7 @@ } }, { - "id": 284, + "id": 286, "name": "timeout", "variant": "declaration", "kind": 1024, @@ -22186,9 +28846,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 387, + "line": 398, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L387" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L398", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22202,19 +28863,28 @@ } }, { - "id": 279, + "id": 280, "name": "waitSecs", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Wait time in seconds for the actor run to finish." + } + ] + }, "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 428, + "line": 452, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L428" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L452", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22223,7 +28893,7 @@ } }, { - "id": 285, + "id": 287, "name": "webhooks", "variant": "declaration", "kind": 1024, @@ -22242,9 +28912,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 404, + "line": 415, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L404" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L415", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22254,7 +28925,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2573, + "target": 2775, "name": "WebhookUpdateData", "package": "apify-client" } @@ -22270,15 +28941,16 @@ "groups": [ { "title": "Properties", - "children": [281, 282, 287, 286, 283, 280, 284, 279, 285] + "children": [283, 284, 290, 281, 288, 289, 285, 282, 286, 280, 287] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 427, + "line": 448, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L427" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L448", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -22306,14 +28978,14 @@ ] }, { - "id": 421, + "id": 425, "name": "ActorChargeEvent", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 424, + "id": 428, "name": "eventDescription", "variant": "declaration", "kind": 1024, @@ -22323,9 +28995,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 575, + "line": 606, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L575" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L606", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22334,7 +29007,7 @@ } }, { - "id": 422, + "id": 426, "name": "eventPriceUsd", "variant": "declaration", "kind": 1024, @@ -22342,9 +29015,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 573, + "line": 604, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L573" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L604", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22353,7 +29027,7 @@ } }, { - "id": 423, + "id": 427, "name": "eventTitle", "variant": "declaration", "kind": 1024, @@ -22361,9 +29035,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 574, + "line": 605, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L574" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L605", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22375,27 +29050,28 @@ "groups": [ { "title": "Properties", - "children": [424, 422, 423] + "children": [428, 426, 427] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 572, + "line": 603, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L572" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L603", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 507, + "id": 511, "name": "ActorCollectionCreateOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 520, + "id": 524, "name": "actorStandby", "variant": "declaration", "kind": 1024, @@ -22407,7 +29083,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 85, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L85" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L85", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22422,14 +29099,14 @@ { "type": "reflection", "declaration": { - "id": 521, + "id": 525, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 522, + "id": 526, "name": "isEnabled", "variant": "declaration", "kind": 1024, @@ -22439,7 +29116,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 86, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L86" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L86", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22451,7 +29129,7 @@ "groups": [ { "title": "Properties", - "children": [522] + "children": [526] } ], "sources": [ @@ -22459,7 +29137,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 85, "character": 34, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L85" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L85", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } @@ -22468,7 +29147,7 @@ } }, { - "id": 508, + "id": 512, "name": "categories", "variant": "declaration", "kind": 1024, @@ -22480,7 +29159,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 72, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L72" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L72", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22492,7 +29172,7 @@ } }, { - "id": 509, + "id": 513, "name": "defaultRunOptions", "variant": "declaration", "kind": 1024, @@ -22504,7 +29184,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 73, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L73" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L73", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22515,7 +29196,7 @@ } }, { - "id": 510, + "id": 514, "name": "description", "variant": "declaration", "kind": 1024, @@ -22527,7 +29208,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 74, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L74" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L74", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22536,7 +29218,7 @@ } }, { - "id": 511, + "id": 515, "name": "exampleRunInput", "variant": "declaration", "kind": 1024, @@ -22548,7 +29230,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 75, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L75" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L75", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22559,7 +29242,7 @@ } }, { - "id": 512, + "id": 516, "name": "isDeprecated", "variant": "declaration", "kind": 1024, @@ -22571,7 +29254,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 76, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L76" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L76", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22580,7 +29264,7 @@ } }, { - "id": 513, + "id": 517, "name": "isPublic", "variant": "declaration", "kind": 1024, @@ -22592,7 +29276,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 77, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L77" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L77", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22601,7 +29286,7 @@ } }, { - "id": 514, + "id": 518, "name": "name", "variant": "declaration", "kind": 1024, @@ -22613,7 +29298,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 78, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L78" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L78", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22622,7 +29308,7 @@ } }, { - "id": 515, + "id": 519, "name": "restartOnError", "variant": "declaration", "kind": 1024, @@ -22648,7 +29334,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 80, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L80" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L80", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22657,7 +29344,7 @@ } }, { - "id": 517, + "id": 521, "name": "seoDescription", "variant": "declaration", "kind": 1024, @@ -22669,7 +29356,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 82, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L82" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L82", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22678,7 +29366,7 @@ } }, { - "id": 516, + "id": 520, "name": "seoTitle", "variant": "declaration", "kind": 1024, @@ -22690,7 +29378,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 81, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L81" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L81", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22699,7 +29388,7 @@ } }, { - "id": 518, + "id": 522, "name": "title", "variant": "declaration", "kind": 1024, @@ -22711,7 +29400,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 83, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L83" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L83", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22720,7 +29410,7 @@ } }, { - "id": 519, + "id": 523, "name": "versions", "variant": "declaration", "kind": 1024, @@ -22732,14 +29422,15 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 84, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L84" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L84", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 749, + "target": 753, "name": "ActorVersion", "package": "apify-client" } @@ -22749,7 +29440,7 @@ "groups": [ { "title": "Properties", - "children": [520, 508, 509, 510, 511, 512, 513, 514, 515, 517, 516, 518, 519] + "children": [524, 512, 513, 514, 515, 516, 517, 518, 519, 521, 520, 522, 523] } ], "sources": [ @@ -22757,19 +29448,20 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 71, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L71" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L71", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 500, + "id": 504, "name": "ActorCollectionListItem", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 502, + "id": 506, "name": "createdAt", "variant": "declaration", "kind": 1024, @@ -22779,7 +29471,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 63, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L63" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L63", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22793,7 +29486,7 @@ } }, { - "id": 501, + "id": 505, "name": "id", "variant": "declaration", "kind": 1024, @@ -22803,7 +29496,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 62, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L62" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L62", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22812,7 +29506,7 @@ } }, { - "id": 503, + "id": 507, "name": "modifiedAt", "variant": "declaration", "kind": 1024, @@ -22822,7 +29516,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 64, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L64" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L64", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22836,7 +29531,7 @@ } }, { - "id": 504, + "id": 508, "name": "name", "variant": "declaration", "kind": 1024, @@ -22846,7 +29541,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 65, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L65" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L65", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22855,7 +29551,7 @@ } }, { - "id": 505, + "id": 509, "name": "username", "variant": "declaration", "kind": 1024, @@ -22865,7 +29561,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 66, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L66" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L66", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22877,7 +29574,7 @@ "groups": [ { "title": "Properties", - "children": [502, 501, 503, 504, 505] + "children": [506, 505, 507, 508, 509] } ], "sources": [ @@ -22885,19 +29582,20 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 61, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L61" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L61", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 494, + "id": 498, "name": "ActorCollectionListOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 498, + "id": 502, "name": "desc", "variant": "declaration", "kind": 1024, @@ -22909,7 +29607,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 57, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L57" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L57", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22918,7 +29617,7 @@ } }, { - "id": 496, + "id": 500, "name": "limit", "variant": "declaration", "kind": 1024, @@ -22930,7 +29629,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 55, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L55" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L55", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22939,7 +29639,7 @@ } }, { - "id": 495, + "id": 499, "name": "my", "variant": "declaration", "kind": 1024, @@ -22951,7 +29651,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 54, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L54" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L54", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22960,7 +29661,7 @@ } }, { - "id": 497, + "id": 501, "name": "offset", "variant": "declaration", "kind": 1024, @@ -22972,7 +29673,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 56, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L56" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L56", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -22981,7 +29683,7 @@ } }, { - "id": 499, + "id": 503, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -22993,12 +29695,13 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 58, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L58" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L58", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 491, + "target": 495, "name": "ActorListSortBy", "package": "apify-client" } @@ -23007,7 +29710,7 @@ "groups": [ { "title": "Properties", - "children": [498, 496, 495, 497, 499] + "children": [502, 500, 499, 501, 503] } ], "sources": [ @@ -23015,7 +29718,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 53, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L53" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L53", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, @@ -23035,9 +29739,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 318, + "line": 329, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L318" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L329", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23054,9 +29759,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 320, + "line": 331, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L320" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L331", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23075,9 +29781,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 321, + "line": 332, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L321" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L332", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23094,9 +29801,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 319, + "line": 330, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L319" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L330", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23114,21 +29822,22 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 317, + "line": 328, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L317" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L328", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 376, + "id": 380, "name": "ActorDefinition", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 377, + "id": 381, "name": "actorSpecification", "variant": "declaration", "kind": 1024, @@ -23136,9 +29845,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 523, + "line": 554, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L523" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L554", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23147,7 +29857,7 @@ } }, { - "id": 380, + "id": 384, "name": "buildTag", "variant": "declaration", "kind": 1024, @@ -23157,9 +29867,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 526, + "line": 557, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L526" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L557", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23168,7 +29879,7 @@ } }, { - "id": 386, + "id": 390, "name": "changelog", "variant": "declaration", "kind": 1024, @@ -23178,9 +29889,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 532, + "line": 563, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L532" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L563", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23198,7 +29910,7 @@ } }, { - "id": 383, + "id": 387, "name": "dockerContextDir", "variant": "declaration", "kind": 1024, @@ -23208,9 +29920,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 529, + "line": 560, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L529" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L560", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23219,7 +29932,7 @@ } }, { - "id": 382, + "id": 386, "name": "dockerfile", "variant": "declaration", "kind": 1024, @@ -23229,9 +29942,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 528, + "line": 559, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L528" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L559", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23240,7 +29954,7 @@ } }, { - "id": 381, + "id": 385, "name": "environmentVariables", "variant": "declaration", "kind": 1024, @@ -23250,9 +29964,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 527, + "line": 558, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L527" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L558", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23276,7 +29991,7 @@ } }, { - "id": 385, + "id": 389, "name": "input", "variant": "declaration", "kind": 1024, @@ -23286,9 +30001,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 531, + "line": 562, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L531" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L562", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23306,7 +30022,7 @@ } }, { - "id": 391, + "id": 395, "name": "maxMemoryMbytes", "variant": "declaration", "kind": 1024, @@ -23316,9 +30032,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 537, + "line": 568, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L537" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L568", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23327,7 +30044,7 @@ } }, { - "id": 390, + "id": 394, "name": "minMemoryMbytes", "variant": "declaration", "kind": 1024, @@ -23337,9 +30054,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 536, + "line": 567, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L536" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L567", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23348,7 +30066,7 @@ } }, { - "id": 378, + "id": 382, "name": "name", "variant": "declaration", "kind": 1024, @@ -23356,9 +30074,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 524, + "line": 555, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L524" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L555", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23367,7 +30086,7 @@ } }, { - "id": 384, + "id": 388, "name": "readme", "variant": "declaration", "kind": 1024, @@ -23377,9 +30096,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 530, + "line": 561, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L530" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L561", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23397,7 +30117,7 @@ } }, { - "id": 387, + "id": 391, "name": "storages", "variant": "declaration", "kind": 1024, @@ -23407,22 +30127,23 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 533, + "line": 564, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L533" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L564", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reflection", "declaration": { - "id": 388, + "id": 392, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 389, + "id": 393, "name": "dataset", "variant": "declaration", "kind": 1024, @@ -23432,9 +30153,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 534, + "line": 565, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L534" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L565", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23446,22 +30168,23 @@ "groups": [ { "title": "Properties", - "children": [389] + "children": [393] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 533, + "line": 564, "character": 15, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L533" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L564", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } } }, { - "id": 392, + "id": 396, "name": "usesStandbyMode", "variant": "declaration", "kind": 1024, @@ -23471,9 +30194,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 538, + "line": 569, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L538" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L569", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23482,7 +30206,7 @@ } }, { - "id": 379, + "id": 383, "name": "version", "variant": "declaration", "kind": 1024, @@ -23490,9 +30214,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 525, + "line": 556, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L525" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L556", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23504,27 +30229,28 @@ "groups": [ { "title": "Properties", - "children": [377, 380, 386, 383, 382, 381, 385, 391, 390, 378, 384, 387, 392, 379] + "children": [381, 384, 390, 387, 386, 385, 389, 395, 394, 382, 388, 391, 396, 383] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 522, + "line": 553, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L522" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L553", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 745, + "id": 749, "name": "ActorEnvironmentVariable", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 748, + "id": 752, "name": "isSecret", "variant": "declaration", "kind": 1024, @@ -23536,7 +30262,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 103, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L103" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L103", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23545,7 +30272,7 @@ } }, { - "id": 746, + "id": 750, "name": "name", "variant": "declaration", "kind": 1024, @@ -23557,7 +30284,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 101, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L101" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L101", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23566,7 +30294,7 @@ } }, { - "id": 747, + "id": 751, "name": "value", "variant": "declaration", "kind": 1024, @@ -23578,7 +30306,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 102, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L102" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L102", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23590,7 +30319,7 @@ "groups": [ { "title": "Properties", - "children": [748, 746, 747] + "children": [752, 750, 751] } ], "sources": [ @@ -23598,19 +30327,20 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 100, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L100" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L100", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 633, + "id": 637, "name": "ActorEnvVarCollectionListOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 636, + "id": 640, "name": "desc", "variant": "declaration", "kind": 1024, @@ -23622,7 +30352,8 @@ "fileName": "src/resource_clients/actor_env_var_collection.ts", "line": 46, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var_collection.ts#L46" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var_collection.ts#L46", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23631,7 +30362,7 @@ } }, { - "id": 634, + "id": 638, "name": "limit", "variant": "declaration", "kind": 1024, @@ -23643,7 +30374,8 @@ "fileName": "src/resource_clients/actor_env_var_collection.ts", "line": 44, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var_collection.ts#L44" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var_collection.ts#L44", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23652,7 +30384,7 @@ } }, { - "id": 635, + "id": 639, "name": "offset", "variant": "declaration", "kind": 1024, @@ -23664,7 +30396,8 @@ "fileName": "src/resource_clients/actor_env_var_collection.ts", "line": 45, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var_collection.ts#L45" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var_collection.ts#L45", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23676,7 +30409,7 @@ "groups": [ { "title": "Properties", - "children": [636, 634, 635] + "children": [640, 638, 639] } ], "sources": [ @@ -23684,7 +30417,8 @@ "fileName": "src/resource_clients/actor_env_var_collection.ts", "line": 43, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var_collection.ts#L43" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var_collection.ts#L43", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, @@ -23704,9 +30438,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 325, + "line": 336, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L325" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L336", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23723,9 +30458,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 326, + "line": 337, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L326" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L337", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23743,21 +30479,22 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 324, + "line": 335, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L324" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L335", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 374, + "id": 378, "name": "ActorLastRunOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 375, + "id": 379, "name": "status", "variant": "declaration", "kind": 1024, @@ -23767,9 +30504,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 519, + "line": 550, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L519" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L550", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23814,27 +30552,28 @@ "groups": [ { "title": "Properties", - "children": [375] + "children": [379] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 518, + "line": 549, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L518" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L549", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 302, + "id": 305, "name": "ActorRun", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 317, + "id": 320, "name": "actId", "variant": "declaration", "kind": 1024, @@ -23844,9 +30583,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 433, + "line": 463, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L433" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L463", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23855,12 +30595,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 290, + "target": 293, "name": "ActorRunListItem.actId" } }, { - "id": 318, + "id": 321, "name": "actorTaskId", "variant": "declaration", "kind": 1024, @@ -23871,9 +30611,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 434, + "line": 464, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L434" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L464", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23882,12 +30623,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 291, + "target": 294, "name": "ActorRunListItem.actorTaskId" } }, { - "id": 323, + "id": 326, "name": "buildId", "variant": "declaration", "kind": 1024, @@ -23897,9 +30638,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 439, + "line": 469, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L439" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L469", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23908,12 +30650,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 296, + "target": 299, "name": "ActorRunListItem.buildId" } }, { - "id": 324, + "id": 327, "name": "buildNumber", "variant": "declaration", "kind": 1024, @@ -23923,9 +30665,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 440, + "line": 470, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L440" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L470", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23934,12 +30677,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 297, + "target": 300, "name": "ActorRunListItem.buildNumber" } }, { - "id": 314, + "id": 317, "name": "chargedEventCounts", "variant": "declaration", "kind": 1024, @@ -23949,9 +30692,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 459, + "line": 489, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L459" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L489", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23975,7 +30719,7 @@ } }, { - "id": 308, + "id": 311, "name": "containerUrl", "variant": "declaration", "kind": 1024, @@ -23983,9 +30727,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 453, + "line": 483, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L453" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L483", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -23994,7 +30739,7 @@ } }, { - "id": 326, + "id": 329, "name": "defaultDatasetId", "variant": "declaration", "kind": 1024, @@ -24004,9 +30749,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 442, + "line": 472, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L442" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L472", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24015,12 +30761,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 299, + "target": 302, "name": "ActorRunListItem.defaultDatasetId" } }, { - "id": 325, + "id": 328, "name": "defaultKeyValueStoreId", "variant": "declaration", "kind": 1024, @@ -24030,9 +30776,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 441, + "line": 471, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L441" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L471", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24041,12 +30788,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 298, + "target": 301, "name": "ActorRunListItem.defaultKeyValueStoreId" } }, { - "id": 327, + "id": 330, "name": "defaultRequestQueueId", "variant": "declaration", "kind": 1024, @@ -24056,9 +30803,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 443, + "line": 473, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L443" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L473", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24067,12 +30815,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 300, + "target": 303, "name": "ActorRunListItem.defaultRequestQueueId" } }, { - "id": 307, + "id": 310, "name": "exitCode", "variant": "declaration", "kind": 1024, @@ -24082,9 +30830,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 452, + "line": 482, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L452" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L482", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24093,7 +30842,7 @@ } }, { - "id": 320, + "id": 323, "name": "finishedAt", "variant": "declaration", "kind": 1024, @@ -24103,9 +30852,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 436, + "line": 466, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L436" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L466", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24119,12 +30869,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 293, + "target": 296, "name": "ActorRunListItem.finishedAt" } }, { - "id": 315, + "id": 318, "name": "generalAccess", "variant": "declaration", "kind": 1024, @@ -24134,9 +30884,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 460, + "line": 490, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L460" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L490", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24159,7 +30910,7 @@ } }, { - "id": 310, + "id": 313, "name": "gitBranchName", "variant": "declaration", "kind": 1024, @@ -24169,9 +30920,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 455, + "line": 485, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L455" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L485", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24180,7 +30932,7 @@ } }, { - "id": 316, + "id": 319, "name": "id", "variant": "declaration", "kind": 1024, @@ -24190,9 +30942,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 432, + "line": 462, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L432" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L462", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24201,12 +30954,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 289, + "target": 292, "name": "ActorRunListItem.id" } }, { - "id": 309, + "id": 312, "name": "isContainerServerReady", "variant": "declaration", "kind": 1024, @@ -24216,9 +30969,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 454, + "line": 484, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L454" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L484", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24227,7 +30981,7 @@ } }, { - "id": 322, + "id": 325, "name": "meta", "variant": "declaration", "kind": 1024, @@ -24237,25 +30991,26 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 438, + "line": 468, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L438" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L468", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 342, + "target": 345, "name": "ActorRunMeta", "package": "apify-client" }, "inheritedFrom": { "type": "reference", - "target": 295, + "target": 298, "name": "ActorRunListItem.meta" } }, { - "id": 306, + "id": 309, "name": "options", "variant": "declaration", "kind": 1024, @@ -24263,20 +31018,21 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 451, + "line": 481, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L451" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L481", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 362, + "target": 365, "name": "ActorRunOptions", "package": "apify-client" } }, { - "id": 313, + "id": 316, "name": "pricingInfo", "variant": "declaration", "kind": 1024, @@ -24286,20 +31042,21 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 458, + "line": 488, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L458" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L488", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 438, + "target": 442, "name": "ActorRunPricingInfo", "package": "apify-client" } }, { - "id": 319, + "id": 322, "name": "startedAt", "variant": "declaration", "kind": 1024, @@ -24309,9 +31066,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 435, + "line": 465, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L435" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L465", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24325,12 +31083,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 292, + "target": 295, "name": "ActorRunListItem.startedAt" } }, { - "id": 305, + "id": 308, "name": "stats", "variant": "declaration", "kind": 1024, @@ -24338,20 +31096,21 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 450, + "line": 480, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L450" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L480", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 346, + "target": 349, "name": "ActorRunStats", "package": "apify-client" } }, { - "id": 321, + "id": 324, "name": "status", "variant": "declaration", "kind": 1024, @@ -24361,9 +31120,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 437, + "line": 467, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L437" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L467", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24405,12 +31165,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 294, + "target": 297, "name": "ActorRunListItem.status" } }, { - "id": 304, + "id": 307, "name": "statusMessage", "variant": "declaration", "kind": 1024, @@ -24420,9 +31180,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 449, + "line": 479, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L449" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L479", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24431,7 +31192,7 @@ } }, { - "id": 311, + "id": 314, "name": "usage", "variant": "declaration", "kind": 1024, @@ -24441,20 +31202,21 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 456, + "line": 486, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L456" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L486", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 329, + "target": 332, "name": "ActorRunUsage", "package": "apify-client" } }, { - "id": 328, + "id": 331, "name": "usageTotalUsd", "variant": "declaration", "kind": 1024, @@ -24465,9 +31227,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 444, + "line": 474, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L444" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L474", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24476,12 +31239,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 301, + "target": 304, "name": "ActorRunListItem.usageTotalUsd" } }, { - "id": 312, + "id": 315, "name": "usageUsd", "variant": "declaration", "kind": 1024, @@ -24491,20 +31254,21 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 457, + "line": 487, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L457" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L487", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 329, + "target": 332, "name": "ActorRunUsage", "package": "apify-client" } }, { - "id": 303, + "id": 306, "name": "userId", "variant": "declaration", "kind": 1024, @@ -24512,9 +31276,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 448, + "line": 478, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L448" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L478", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24527,37 +31292,38 @@ { "title": "Properties", "children": [ - 317, 318, 323, 324, 314, 308, 326, 325, 327, 307, 320, 315, 310, 316, 309, 322, 306, 313, 319, - 305, 321, 304, 311, 328, 312, 303 + 320, 321, 326, 327, 317, 311, 329, 328, 330, 310, 323, 318, 313, 319, 312, 325, 309, 316, 322, + 308, 324, 307, 314, 331, 315, 306 ] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 447, + "line": 477, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L447" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L477", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ { "type": "reference", - "target": 288, + "target": 291, "name": "ActorRunListItem", "package": "apify-client" } ] }, { - "id": 288, + "id": 291, "name": "ActorRunListItem", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 290, + "id": 293, "name": "actId", "variant": "declaration", "kind": 1024, @@ -24565,9 +31331,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 433, + "line": 463, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L433" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L463", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24576,7 +31343,7 @@ } }, { - "id": 291, + "id": 294, "name": "actorTaskId", "variant": "declaration", "kind": 1024, @@ -24586,9 +31353,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 434, + "line": 464, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L434" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L464", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24597,7 +31365,7 @@ } }, { - "id": 296, + "id": 299, "name": "buildId", "variant": "declaration", "kind": 1024, @@ -24605,9 +31373,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 439, + "line": 469, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L439" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L469", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24616,7 +31385,7 @@ } }, { - "id": 297, + "id": 300, "name": "buildNumber", "variant": "declaration", "kind": 1024, @@ -24624,9 +31393,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 440, + "line": 470, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L440" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L470", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24635,7 +31405,7 @@ } }, { - "id": 299, + "id": 302, "name": "defaultDatasetId", "variant": "declaration", "kind": 1024, @@ -24643,9 +31413,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 442, + "line": 472, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L442" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L472", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24654,7 +31425,7 @@ } }, { - "id": 298, + "id": 301, "name": "defaultKeyValueStoreId", "variant": "declaration", "kind": 1024, @@ -24662,9 +31433,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 441, + "line": 471, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L441" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L471", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24673,7 +31445,7 @@ } }, { - "id": 300, + "id": 303, "name": "defaultRequestQueueId", "variant": "declaration", "kind": 1024, @@ -24681,9 +31453,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 443, + "line": 473, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L443" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L473", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24692,7 +31465,7 @@ } }, { - "id": 293, + "id": 296, "name": "finishedAt", "variant": "declaration", "kind": 1024, @@ -24700,9 +31473,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 436, + "line": 466, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L436" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L466", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24716,7 +31490,7 @@ } }, { - "id": 289, + "id": 292, "name": "id", "variant": "declaration", "kind": 1024, @@ -24724,9 +31498,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 432, + "line": 462, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L432" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L462", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24735,7 +31510,7 @@ } }, { - "id": 295, + "id": 298, "name": "meta", "variant": "declaration", "kind": 1024, @@ -24743,20 +31518,21 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 438, + "line": 468, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L438" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L468", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 342, + "target": 345, "name": "ActorRunMeta", "package": "apify-client" } }, { - "id": 292, + "id": 295, "name": "startedAt", "variant": "declaration", "kind": 1024, @@ -24764,9 +31540,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 435, + "line": 465, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L435" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L465", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24780,7 +31557,7 @@ } }, { - "id": 294, + "id": 297, "name": "status", "variant": "declaration", "kind": 1024, @@ -24788,9 +31565,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 437, + "line": 467, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L437" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L467", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24832,7 +31610,7 @@ } }, { - "id": 301, + "id": 304, "name": "usageTotalUsd", "variant": "declaration", "kind": 1024, @@ -24842,9 +31620,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 444, + "line": 474, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L444" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L474", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24856,34 +31635,35 @@ "groups": [ { "title": "Properties", - "children": [290, 291, 296, 297, 299, 298, 300, 293, 289, 295, 292, 294, 301] + "children": [293, 294, 299, 300, 302, 301, 303, 296, 292, 298, 295, 297, 304] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 431, + "line": 461, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L431" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L461", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedBy": [ { "type": "reference", - "target": 302, + "target": 305, "name": "ActorRun" } ] }, { - "id": 342, + "id": 345, "name": "ActorRunMeta", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 344, + "id": 347, "name": "clientIp", "variant": "declaration", "kind": 1024, @@ -24893,9 +31673,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 480, + "line": 510, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L480" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L510", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24904,7 +31685,7 @@ } }, { - "id": 343, + "id": 346, "name": "origin", "variant": "declaration", "kind": 1024, @@ -24912,9 +31693,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 479, + "line": 509, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L479" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L509", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24923,7 +31705,7 @@ } }, { - "id": 345, + "id": 348, "name": "userAgent", "variant": "declaration", "kind": 1024, @@ -24931,9 +31713,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 481, + "line": 511, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L481" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L511", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24945,27 +31728,28 @@ "groups": [ { "title": "Properties", - "children": [344, 343, 345] + "children": [347, 346, 348] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 478, + "line": 508, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L478" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L508", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 362, + "id": 365, "name": "ActorRunOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 363, + "id": 366, "name": "build", "variant": "declaration", "kind": 1024, @@ -24973,9 +31757,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 503, + "line": 533, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L503" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L533", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -24984,7 +31769,7 @@ } }, { - "id": 366, + "id": 369, "name": "diskMbytes", "variant": "declaration", "kind": 1024, @@ -24992,9 +31777,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 506, + "line": 536, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L506" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L536", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25003,7 +31789,29 @@ } }, { - "id": 367, + "id": 370, + "name": "maxItems", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/resource_clients/actor.ts", + "line": 537, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L537", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 371, "name": "maxTotalChargeUsd", "variant": "declaration", "kind": 1024, @@ -25013,9 +31821,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 507, + "line": 538, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L507" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L538", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25024,7 +31833,7 @@ } }, { - "id": 365, + "id": 368, "name": "memoryMbytes", "variant": "declaration", "kind": 1024, @@ -25032,9 +31841,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 505, + "line": 535, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L505" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L535", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25043,7 +31853,7 @@ } }, { - "id": 368, + "id": 372, "name": "restartOnError", "variant": "declaration", "kind": 1024, @@ -25053,9 +31863,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 508, + "line": 539, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L508" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L539", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25064,7 +31875,7 @@ } }, { - "id": 364, + "id": 367, "name": "timeoutSecs", "variant": "declaration", "kind": 1024, @@ -25072,9 +31883,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 504, + "line": 534, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L504" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L534", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25086,27 +31898,28 @@ "groups": [ { "title": "Properties", - "children": [363, 366, 367, 365, 368, 364] + "children": [366, 369, 370, 371, 368, 372, 367] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 502, + "line": 532, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L502" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L532", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 346, + "id": 349, "name": "ActorRunStats", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 361, + "id": 364, "name": "computeUnits", "variant": "declaration", "kind": 1024, @@ -25114,9 +31927,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 499, + "line": 529, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L499" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L529", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25125,7 +31939,7 @@ } }, { - "id": 353, + "id": 356, "name": "cpuAvgUsage", "variant": "declaration", "kind": 1024, @@ -25133,9 +31947,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 491, + "line": 521, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L491" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L521", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25144,7 +31959,7 @@ } }, { - "id": 355, + "id": 358, "name": "cpuCurrentUsage", "variant": "declaration", "kind": 1024, @@ -25152,9 +31967,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 493, + "line": 523, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L493" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L523", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25163,7 +31979,7 @@ } }, { - "id": 354, + "id": 357, "name": "cpuMaxUsage", "variant": "declaration", "kind": 1024, @@ -25171,9 +31987,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 492, + "line": 522, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L492" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L522", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25182,7 +31999,7 @@ } }, { - "id": 358, + "id": 361, "name": "durationMillis", "variant": "declaration", "kind": 1024, @@ -25190,9 +32007,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 496, + "line": 526, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L496" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L526", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25201,7 +32019,7 @@ } }, { - "id": 347, + "id": 350, "name": "inputBodyLen", "variant": "declaration", "kind": 1024, @@ -25209,9 +32027,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 485, + "line": 515, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L485" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L515", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25220,7 +32039,7 @@ } }, { - "id": 350, + "id": 353, "name": "memAvgBytes", "variant": "declaration", "kind": 1024, @@ -25228,9 +32047,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 488, + "line": 518, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L488" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L518", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25239,7 +32059,7 @@ } }, { - "id": 352, + "id": 355, "name": "memCurrentBytes", "variant": "declaration", "kind": 1024, @@ -25247,9 +32067,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 490, + "line": 520, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L490" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L520", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25258,7 +32079,7 @@ } }, { - "id": 351, + "id": 354, "name": "memMaxBytes", "variant": "declaration", "kind": 1024, @@ -25266,9 +32087,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 489, + "line": 519, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L489" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L519", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25277,7 +32099,7 @@ } }, { - "id": 360, + "id": 363, "name": "metamorph", "variant": "declaration", "kind": 1024, @@ -25285,9 +32107,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 498, + "line": 528, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L498" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L528", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25296,7 +32119,7 @@ } }, { - "id": 356, + "id": 359, "name": "netRxBytes", "variant": "declaration", "kind": 1024, @@ -25304,9 +32127,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 494, + "line": 524, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L494" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L524", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25315,7 +32139,7 @@ } }, { - "id": 357, + "id": 360, "name": "netTxBytes", "variant": "declaration", "kind": 1024, @@ -25323,9 +32147,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 495, + "line": 525, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L495" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L525", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25334,7 +32159,7 @@ } }, { - "id": 348, + "id": 351, "name": "restartCount", "variant": "declaration", "kind": 1024, @@ -25342,9 +32167,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 486, + "line": 516, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L486" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L516", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25353,7 +32179,7 @@ } }, { - "id": 349, + "id": 352, "name": "resurrectCount", "variant": "declaration", "kind": 1024, @@ -25361,9 +32187,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 487, + "line": 517, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L487" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L517", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25372,7 +32199,7 @@ } }, { - "id": 359, + "id": 362, "name": "runTimeSecs", "variant": "declaration", "kind": 1024, @@ -25380,9 +32207,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 497, + "line": 527, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L497" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L527", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25394,27 +32222,28 @@ "groups": [ { "title": "Properties", - "children": [361, 353, 355, 354, 358, 347, 350, 352, 351, 360, 356, 357, 348, 349, 359] + "children": [364, 356, 358, 357, 361, 350, 353, 355, 354, 363, 359, 360, 351, 352, 362] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 484, + "line": 514, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L484" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L514", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 329, + "id": 332, "name": "ActorRunUsage", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 330, + "id": 333, "name": "ACTOR_COMPUTE_UNITS", "variant": "declaration", "kind": 1024, @@ -25424,9 +32253,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 464, + "line": 494, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L464" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L494", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25435,7 +32265,7 @@ } }, { - "id": 339, + "id": 342, "name": "DATA_TRANSFER_EXTERNAL_GBYTES", "variant": "declaration", "kind": 1024, @@ -25445,9 +32275,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 473, + "line": 503, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L473" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L503", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25456,7 +32287,7 @@ } }, { - "id": 338, + "id": 341, "name": "DATA_TRANSFER_INTERNAL_GBYTES", "variant": "declaration", "kind": 1024, @@ -25466,9 +32297,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 472, + "line": 502, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L472" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L502", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25477,7 +32309,7 @@ } }, { - "id": 331, + "id": 334, "name": "DATASET_READS", "variant": "declaration", "kind": 1024, @@ -25487,9 +32319,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 465, + "line": 495, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L465" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L495", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25498,7 +32331,7 @@ } }, { - "id": 332, + "id": 335, "name": "DATASET_WRITES", "variant": "declaration", "kind": 1024, @@ -25508,9 +32341,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 466, + "line": 496, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L466" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L496", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25519,7 +32353,7 @@ } }, { - "id": 335, + "id": 338, "name": "KEY_VALUE_STORE_LISTS", "variant": "declaration", "kind": 1024, @@ -25529,9 +32363,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 469, + "line": 499, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L469" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L499", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25540,7 +32375,7 @@ } }, { - "id": 333, + "id": 336, "name": "KEY_VALUE_STORE_READS", "variant": "declaration", "kind": 1024, @@ -25550,9 +32385,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 467, + "line": 497, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L467" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L497", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25561,7 +32397,7 @@ } }, { - "id": 334, + "id": 337, "name": "KEY_VALUE_STORE_WRITES", "variant": "declaration", "kind": 1024, @@ -25571,9 +32407,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 468, + "line": 498, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L468" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L498", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25582,7 +32419,7 @@ } }, { - "id": 340, + "id": 343, "name": "PROXY_RESIDENTIAL_TRANSFER_GBYTES", "variant": "declaration", "kind": 1024, @@ -25592,9 +32429,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 474, + "line": 504, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L474" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L504", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25603,7 +32441,7 @@ } }, { - "id": 341, + "id": 344, "name": "PROXY_SERPS", "variant": "declaration", "kind": 1024, @@ -25613,9 +32451,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 475, + "line": 505, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L475" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L505", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25624,7 +32463,7 @@ } }, { - "id": 336, + "id": 339, "name": "REQUEST_QUEUE_READS", "variant": "declaration", "kind": 1024, @@ -25634,9 +32473,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 470, + "line": 500, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L470" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L500", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25645,7 +32485,7 @@ } }, { - "id": 337, + "id": 340, "name": "REQUEST_QUEUE_WRITES", "variant": "declaration", "kind": 1024, @@ -25655,9 +32495,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 471, + "line": 501, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L471" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L501", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25669,15 +32510,16 @@ "groups": [ { "title": "Properties", - "children": [330, 339, 338, 331, 332, 335, 333, 334, 340, 341, 336, 337] + "children": [333, 342, 341, 334, 335, 338, 336, 337, 343, 344, 339, 340] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 463, + "line": 493, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L463" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L493", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, @@ -25697,9 +32539,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 359, + "line": 370, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L359" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L370", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25716,9 +32559,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 356, + "line": 367, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L356" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L367", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25735,9 +32579,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 358, + "line": 369, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L358" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L369", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25754,9 +32599,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 357, + "line": 368, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L357" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L368", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25773,9 +32619,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 360, + "line": 371, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L360" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L371", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25793,9 +32640,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 355, + "line": 366, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L355" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L366", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, @@ -25849,9 +32697,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 368, + "line": 379, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L368" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L379", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25934,9 +32783,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 376, + "line": 387, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L376" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L387", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25945,7 +32795,7 @@ } }, { - "id": 277, + "id": 278, "name": "forcePermissionLevel", "variant": "declaration", "kind": 1024, @@ -25963,9 +32813,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 424, + "line": 445, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L424" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L445", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -25985,7 +32836,7 @@ "summary": [ { "kind": "text", - "text": "Specifies maximum number of items that the actor run should return.\nThis is used by pay per result actors to limit the maximum number of results that will be charged to customer.\nValue can be accessed in actor run using " + "text": "Specifies the maximum number of dataset items that will be charged for pay-per-result Actors.\nThis does NOT guarantee that the Actor will return only this many items.\nIt only ensures you won't be charged for more than this number of items.\nOnly works for pay-per-result Actors.\nValue can be accessed in the Actor run using " }, { "kind": "code", @@ -26000,9 +32851,48 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 411, + "line": 424, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L411" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L424", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 276, + "name": "maxTotalChargeUsd", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the maximum cost of the Actor run. This parameter is\nused only for pay-per-event Actors. It allows you to limit the amount\ncharged to your subscription. You can access the maximum cost in your\nActor by using the " + }, + { + "kind": "code", + "text": "`ACTOR_MAX_TOTAL_CHARGE_USD`" + }, + { + "kind": "text", + "text": " environment variable." + } + ] + }, + "sources": [ + { + "fileName": "src/resource_clients/actor.ts", + "line": 432, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L432", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26029,9 +32919,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 382, + "line": 393, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L382" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L393", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26040,7 +32931,7 @@ } }, { - "id": 276, + "id": 277, "name": "restartOnError", "variant": "declaration", "kind": 1024, @@ -26058,9 +32949,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 416, + "line": 437, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L416" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L437", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26087,9 +32979,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 387, + "line": 398, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L387" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L398", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26164,9 +33057,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 397, + "line": 408, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L397" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L408", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26193,9 +33087,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 404, + "line": 415, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L404" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L415", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26205,7 +33100,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2573, + "target": 2775, "name": "WebhookUpdateData", "package": "apify-client" } @@ -26216,15 +33111,16 @@ "groups": [ { "title": "Properties", - "children": [269, 270, 277, 275, 271, 276, 272, 273, 274] + "children": [269, 270, 278, 275, 276, 271, 277, 272, 273, 274] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 363, + "line": 374, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L363" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L374", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, @@ -26244,9 +33140,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 314, + "line": 325, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L314" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L325", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26268,9 +33165,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 307, + "line": 318, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L307" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L318", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26287,9 +33185,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 313, + "line": 324, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L313" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L324", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26306,9 +33205,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 308, + "line": 319, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L308" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L319", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26325,9 +33225,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 309, + "line": 320, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L309" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L320", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26344,9 +33245,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 311, + "line": 322, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L311" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L322", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26363,9 +33265,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 310, + "line": 321, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L310" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L321", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26382,9 +33285,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 312, + "line": 323, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L312" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L323", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26402,21 +33306,22 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 306, + "line": 317, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L306" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L317", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2140, + "id": 2341, "name": "ActorStoreList", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2147, + "id": 2348, "name": "currentPricingInfo", "variant": "declaration", "kind": 1024, @@ -26426,18 +33331,19 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 51, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L51" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L51", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2138, + "target": 2339, "name": "PricingInfo", "package": "apify-client" } }, { - "id": 2145, + "id": 2346, "name": "description", "variant": "declaration", "kind": 1024, @@ -26449,7 +33355,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 49, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L49" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L49", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26458,7 +33365,7 @@ } }, { - "id": 2141, + "id": 2342, "name": "id", "variant": "declaration", "kind": 1024, @@ -26468,7 +33375,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 45, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L45" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L45", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26477,7 +33385,7 @@ } }, { - "id": 2142, + "id": 2343, "name": "name", "variant": "declaration", "kind": 1024, @@ -26487,7 +33395,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 46, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L46" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L46", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26496,7 +33405,7 @@ } }, { - "id": 2148, + "id": 2349, "name": "pictureUrl", "variant": "declaration", "kind": 1024, @@ -26508,7 +33417,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 52, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L52" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L52", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26517,7 +33427,7 @@ } }, { - "id": 2146, + "id": 2347, "name": "stats", "variant": "declaration", "kind": 1024, @@ -26527,7 +33437,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 50, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L50" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L50", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26538,7 +33449,7 @@ } }, { - "id": 2144, + "id": 2345, "name": "title", "variant": "declaration", "kind": 1024, @@ -26550,7 +33461,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 48, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L48" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L48", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26559,7 +33471,7 @@ } }, { - "id": 2150, + "id": 2351, "name": "url", "variant": "declaration", "kind": 1024, @@ -26569,7 +33481,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 54, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L54" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L54", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26578,7 +33491,7 @@ } }, { - "id": 2143, + "id": 2344, "name": "username", "variant": "declaration", "kind": 1024, @@ -26588,7 +33501,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 47, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L47" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L47", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26597,7 +33511,7 @@ } }, { - "id": 2149, + "id": 2350, "name": "userPictureUrl", "variant": "declaration", "kind": 1024, @@ -26609,7 +33523,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 53, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L53" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L53", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26621,7 +33536,7 @@ "groups": [ { "title": "Properties", - "children": [2147, 2145, 2141, 2142, 2148, 2146, 2144, 2150, 2143, 2149] + "children": [2348, 2346, 2342, 2343, 2349, 2347, 2345, 2351, 2344, 2350] } ], "sources": [ @@ -26629,7 +33544,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 44, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L44" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L44", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, @@ -26651,9 +33567,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 332, + "line": 343, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L332" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L343", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26672,9 +33589,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 333, + "line": 344, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L333" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L344", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26693,9 +33611,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 334, + "line": 345, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L334" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L345", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26718,21 +33637,22 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 331, + "line": 342, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L331" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L342", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 803, + "id": 807, "name": "ActorVersionCollectionListOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 806, + "id": 810, "name": "desc", "variant": "declaration", "kind": 1024, @@ -26744,7 +33664,8 @@ "fileName": "src/resource_clients/actor_version_collection.ts", "line": 48, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version_collection.ts#L48" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version_collection.ts#L48", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26753,7 +33674,7 @@ } }, { - "id": 804, + "id": 808, "name": "limit", "variant": "declaration", "kind": 1024, @@ -26765,7 +33686,8 @@ "fileName": "src/resource_clients/actor_version_collection.ts", "line": 46, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version_collection.ts#L46" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version_collection.ts#L46", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26774,7 +33696,7 @@ } }, { - "id": 805, + "id": 809, "name": "offset", "variant": "declaration", "kind": 1024, @@ -26786,7 +33708,8 @@ "fileName": "src/resource_clients/actor_version_collection.ts", "line": 47, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version_collection.ts#L47" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version_collection.ts#L47", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26798,7 +33721,7 @@ "groups": [ { "title": "Properties", - "children": [806, 804, 805] + "children": [810, 808, 809] } ], "sources": [ @@ -26806,19 +33729,20 @@ "fileName": "src/resource_clients/actor_version_collection.ts", "line": 45, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version_collection.ts#L45" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version_collection.ts#L45", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 733, + "id": 737, "name": "ActorVersionGitHubGist", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 738, + "id": 742, "name": "applyEnvVarsToBuild", "variant": "declaration", "kind": 1024, @@ -26831,7 +33755,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 67, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L67" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L67", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26840,12 +33765,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 705, + "target": 709, "name": "BaseActorVersion.applyEnvVarsToBuild" } }, { - "id": 739, + "id": 743, "name": "buildTag", "variant": "declaration", "kind": 1024, @@ -26858,7 +33783,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 68, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L68" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L68", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26867,12 +33793,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 706, + "target": 710, "name": "BaseActorVersion.buildTag" } }, { - "id": 737, + "id": 741, "name": "envVars", "variant": "declaration", "kind": 1024, @@ -26885,26 +33811,27 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 66, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L66" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L66", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 745, + "target": 749, "name": "ActorEnvironmentVariable", "package": "apify-client" } }, "inheritedFrom": { "type": "reference", - "target": 704, + "target": 708, "name": "BaseActorVersion.envVars" } }, { - "id": 734, + "id": 738, "name": "gitHubGistUrl", "variant": "declaration", "kind": 1024, @@ -26914,7 +33841,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 90, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L90" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L90", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26923,7 +33851,7 @@ } }, { - "id": 736, + "id": 740, "name": "sourceType", "variant": "declaration", "kind": 1024, @@ -26935,24 +33863,25 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 65, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L65" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L65", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 744, + "target": 748, "name": "GitHubGist", "package": "apify-client", "qualifiedName": "ActorSourceType.GitHubGist" }, "inheritedFrom": { "type": "reference", - "target": 703, + "target": 707, "name": "BaseActorVersion.sourceType" } }, { - "id": 735, + "id": 739, "name": "versionNumber", "variant": "declaration", "kind": 1024, @@ -26965,7 +33894,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 64, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L64" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L64", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -26974,7 +33904,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 702, + "target": 706, "name": "BaseActorVersion.versionNumber" } } @@ -26982,7 +33912,7 @@ "groups": [ { "title": "Properties", - "children": [738, 739, 737, 734, 736, 735] + "children": [742, 743, 741, 738, 740, 739] } ], "sources": [ @@ -26990,17 +33920,18 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 89, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L89" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L89", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ { "type": "reference", - "target": 701, + "target": 705, "typeArguments": [ { "type": "reference", - "target": 744, + "target": 748, "name": "ActorSourceType.GitHubGist", "package": "apify-client" } @@ -27011,14 +33942,14 @@ ] }, { - "id": 719, + "id": 723, "name": "ActorVersionGitRepo", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 724, + "id": 728, "name": "applyEnvVarsToBuild", "variant": "declaration", "kind": 1024, @@ -27031,7 +33962,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 67, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L67" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L67", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27040,12 +33972,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 705, + "target": 709, "name": "BaseActorVersion.applyEnvVarsToBuild" } }, { - "id": 725, + "id": 729, "name": "buildTag", "variant": "declaration", "kind": 1024, @@ -27058,7 +33990,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 68, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L68" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L68", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27067,12 +34000,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 706, + "target": 710, "name": "BaseActorVersion.buildTag" } }, { - "id": 723, + "id": 727, "name": "envVars", "variant": "declaration", "kind": 1024, @@ -27085,26 +34018,27 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 66, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L66" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L66", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 745, + "target": 749, "name": "ActorEnvironmentVariable", "package": "apify-client" } }, "inheritedFrom": { "type": "reference", - "target": 704, + "target": 708, "name": "BaseActorVersion.envVars" } }, { - "id": 720, + "id": 724, "name": "gitRepoUrl", "variant": "declaration", "kind": 1024, @@ -27114,7 +34048,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 82, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L82" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L82", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27123,7 +34058,7 @@ } }, { - "id": 722, + "id": 726, "name": "sourceType", "variant": "declaration", "kind": 1024, @@ -27135,24 +34070,25 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 65, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L65" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L65", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 742, + "target": 746, "name": "GitRepo", "package": "apify-client", "qualifiedName": "ActorSourceType.GitRepo" }, "inheritedFrom": { "type": "reference", - "target": 703, + "target": 707, "name": "BaseActorVersion.sourceType" } }, { - "id": 721, + "id": 725, "name": "versionNumber", "variant": "declaration", "kind": 1024, @@ -27165,7 +34101,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 64, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L64" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L64", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27174,7 +34111,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 702, + "target": 706, "name": "BaseActorVersion.versionNumber" } } @@ -27182,7 +34119,7 @@ "groups": [ { "title": "Properties", - "children": [724, 725, 723, 720, 722, 721] + "children": [728, 729, 727, 724, 726, 725] } ], "sources": [ @@ -27190,17 +34127,18 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 81, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L81" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L81", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ { "type": "reference", - "target": 701, + "target": 705, "typeArguments": [ { "type": "reference", - "target": 742, + "target": 746, "name": "ActorSourceType.GitRepo", "package": "apify-client" } @@ -27211,14 +34149,14 @@ ] }, { - "id": 715, + "id": 719, "name": "ActorVersionSourceFile", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 718, + "id": 722, "name": "content", "variant": "declaration", "kind": 1024, @@ -27228,7 +34166,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 78, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L78" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L78", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27237,7 +34176,7 @@ } }, { - "id": 717, + "id": 721, "name": "format", "variant": "declaration", "kind": 1024, @@ -27247,7 +34186,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 77, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L77" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L77", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27265,7 +34205,7 @@ } }, { - "id": 716, + "id": 720, "name": "name", "variant": "declaration", "kind": 1024, @@ -27275,7 +34215,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 76, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L76" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L76", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27287,7 +34228,7 @@ "groups": [ { "title": "Properties", - "children": [718, 717, 716] + "children": [722, 721, 720] } ], "sources": [ @@ -27295,19 +34236,20 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 75, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L75" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L75", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 708, + "id": 712, "name": "ActorVersionSourceFiles", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 713, + "id": 717, "name": "applyEnvVarsToBuild", "variant": "declaration", "kind": 1024, @@ -27320,7 +34262,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 67, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L67" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L67", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27329,12 +34272,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 705, + "target": 709, "name": "BaseActorVersion.applyEnvVarsToBuild" } }, { - "id": 714, + "id": 718, "name": "buildTag", "variant": "declaration", "kind": 1024, @@ -27347,7 +34290,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 68, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L68" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L68", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27356,12 +34300,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 706, + "target": 710, "name": "BaseActorVersion.buildTag" } }, { - "id": 712, + "id": 716, "name": "envVars", "variant": "declaration", "kind": 1024, @@ -27374,26 +34318,27 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 66, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L66" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L66", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 745, + "target": 749, "name": "ActorEnvironmentVariable", "package": "apify-client" } }, "inheritedFrom": { "type": "reference", - "target": 704, + "target": 708, "name": "BaseActorVersion.envVars" } }, { - "id": 709, + "id": 713, "name": "sourceFiles", "variant": "declaration", "kind": 1024, @@ -27403,21 +34348,22 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 72, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L72" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L72", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 715, + "target": 719, "name": "ActorVersionSourceFile", "package": "apify-client" } } }, { - "id": 711, + "id": 715, "name": "sourceType", "variant": "declaration", "kind": 1024, @@ -27429,24 +34375,25 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 65, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L65" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L65", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 741, + "target": 745, "name": "SourceFiles", "package": "apify-client", "qualifiedName": "ActorSourceType.SourceFiles" }, "inheritedFrom": { "type": "reference", - "target": 703, + "target": 707, "name": "BaseActorVersion.sourceType" } }, { - "id": 710, + "id": 714, "name": "versionNumber", "variant": "declaration", "kind": 1024, @@ -27459,7 +34406,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 64, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L64" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L64", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27468,7 +34416,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 702, + "target": 706, "name": "BaseActorVersion.versionNumber" } } @@ -27476,7 +34424,7 @@ "groups": [ { "title": "Properties", - "children": [713, 714, 712, 709, 711, 710] + "children": [717, 718, 716, 713, 715, 714] } ], "sources": [ @@ -27484,17 +34432,18 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 71, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L71" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L71", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ { "type": "reference", - "target": 701, + "target": 705, "typeArguments": [ { "type": "reference", - "target": 741, + "target": 745, "name": "ActorSourceType.SourceFiles", "package": "apify-client" } @@ -27505,14 +34454,14 @@ ] }, { - "id": 726, + "id": 730, "name": "ActorVersionTarball", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 731, + "id": 735, "name": "applyEnvVarsToBuild", "variant": "declaration", "kind": 1024, @@ -27525,7 +34474,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 67, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L67" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L67", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27534,12 +34484,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 705, + "target": 709, "name": "BaseActorVersion.applyEnvVarsToBuild" } }, { - "id": 732, + "id": 736, "name": "buildTag", "variant": "declaration", "kind": 1024, @@ -27552,7 +34502,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 68, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L68" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L68", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27561,12 +34512,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 706, + "target": 710, "name": "BaseActorVersion.buildTag" } }, { - "id": 730, + "id": 734, "name": "envVars", "variant": "declaration", "kind": 1024, @@ -27579,26 +34530,27 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 66, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L66" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L66", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 745, + "target": 749, "name": "ActorEnvironmentVariable", "package": "apify-client" } }, "inheritedFrom": { "type": "reference", - "target": 704, + "target": 708, "name": "BaseActorVersion.envVars" } }, { - "id": 729, + "id": 733, "name": "sourceType", "variant": "declaration", "kind": 1024, @@ -27610,24 +34562,25 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 65, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L65" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L65", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 743, + "target": 747, "name": "Tarball", "package": "apify-client", "qualifiedName": "ActorSourceType.Tarball" }, "inheritedFrom": { "type": "reference", - "target": 703, + "target": 707, "name": "BaseActorVersion.sourceType" } }, { - "id": 727, + "id": 731, "name": "tarballUrl", "variant": "declaration", "kind": 1024, @@ -27637,7 +34590,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 86, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L86" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L86", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27646,7 +34600,7 @@ } }, { - "id": 728, + "id": 732, "name": "versionNumber", "variant": "declaration", "kind": 1024, @@ -27659,7 +34613,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 64, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L64" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L64", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27668,7 +34623,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 702, + "target": 706, "name": "BaseActorVersion.versionNumber" } } @@ -27676,7 +34631,7 @@ "groups": [ { "title": "Properties", - "children": [731, 732, 730, 729, 727, 728] + "children": [735, 736, 734, 733, 731, 732] } ], "sources": [ @@ -27684,17 +34639,18 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 85, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L85" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L85", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ { "type": "reference", - "target": 701, + "target": 705, "typeArguments": [ { "type": "reference", - "target": 743, + "target": 747, "name": "ActorSourceType.Tarball", "package": "apify-client" } @@ -27738,7 +34694,8 @@ "fileName": "src/apify_client.ts", "line": 358, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L358" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L358", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27773,7 +34730,8 @@ "fileName": "src/apify_client.ts", "line": 362, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L362" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L362", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27808,7 +34766,8 @@ "fileName": "src/apify_client.ts", "line": 364, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L364" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L364", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27843,7 +34802,8 @@ "fileName": "src/apify_client.ts", "line": 360, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L360" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L360", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27878,7 +34838,8 @@ "fileName": "src/apify_client.ts", "line": 366, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L366" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L366", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -27905,8 +34866,9 @@ "sources": [ { "fileName": "node_modules/axios/index.d.ts", - "line": 491, - "character": 53 + "line": 495, + "character": 53, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "signatures": [ @@ -27919,8 +34881,9 @@ "sources": [ { "fileName": "node_modules/axios/index.d.ts", - "line": 491, - "character": 53 + "line": 495, + "character": 53, + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ @@ -28010,7 +34973,8 @@ "fileName": "src/apify_client.ts", "line": 368, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L368" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L368", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28031,7 +34995,8 @@ "fileName": "src/apify_client.ts", "line": 369, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L369" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L369", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28052,7 +35017,8 @@ "fileName": "src/apify_client.ts", "line": 370, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L370" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L370", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28084,19 +35050,20 @@ "fileName": "src/apify_client.ts", "line": 356, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/apify_client.ts#L356" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/apify_client.ts#L356", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 701, + "id": 705, "name": "BaseActorVersion", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 705, + "id": 709, "name": "applyEnvVarsToBuild", "variant": "declaration", "kind": 1024, @@ -28108,7 +35075,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 67, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L67" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L67", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28117,7 +35085,7 @@ } }, { - "id": 706, + "id": 710, "name": "buildTag", "variant": "declaration", "kind": 1024, @@ -28129,7 +35097,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 68, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L68" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L68", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28138,7 +35107,7 @@ } }, { - "id": 704, + "id": 708, "name": "envVars", "variant": "declaration", "kind": 1024, @@ -28150,21 +35119,22 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 66, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L66" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L66", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 745, + "target": 749, "name": "ActorEnvironmentVariable", "package": "apify-client" } } }, { - "id": 703, + "id": 707, "name": "sourceType", "variant": "declaration", "kind": 1024, @@ -28174,12 +35144,13 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 65, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L65" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L65", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 707, + "target": 711, "name": "SourceType", "package": "apify-client", "qualifiedName": "BaseActorVersion.SourceType", @@ -28187,7 +35158,7 @@ } }, { - "id": 702, + "id": 706, "name": "versionNumber", "variant": "declaration", "kind": 1024, @@ -28199,7 +35170,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 64, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L64" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L64", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28211,7 +35183,7 @@ "groups": [ { "title": "Properties", - "children": [705, 706, 704, 703, 702] + "children": [709, 710, 708, 707, 706] } ], "sources": [ @@ -28219,19 +35191,20 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 63, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L63" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L63", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "typeParameters": [ { - "id": 707, + "id": 711, "name": "SourceType", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 740, + "target": 744, "name": "ActorSourceType", "package": "apify-client" } @@ -28240,35 +35213,35 @@ "extendedBy": [ { "type": "reference", - "target": 708, + "target": 712, "name": "ActorVersionSourceFiles" }, { "type": "reference", - "target": 719, + "target": 723, "name": "ActorVersionGitRepo" }, { "type": "reference", - "target": 726, + "target": 730, "name": "ActorVersionTarball" }, { "type": "reference", - "target": 733, + "target": 737, "name": "ActorVersionGitHubGist" } ] }, { - "id": 881, + "id": 885, "name": "Build", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 883, + "id": 887, "name": "actId", "variant": "declaration", "kind": 1024, @@ -28278,7 +35251,8 @@ "fileName": "src/resource_clients/build.ts", "line": 124, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L124" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L124", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28287,7 +35261,7 @@ } }, { - "id": 897, + "id": 901, "name": "actorDefinition", "variant": "declaration", "kind": 1024, @@ -28299,18 +35273,19 @@ "fileName": "src/resource_clients/build.ts", "line": 144, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L144" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L144", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 376, + "target": 380, "name": "ActorDefinition", "package": "apify-client" } }, { - "id": 893, + "id": 897, "name": "buildNumber", "variant": "declaration", "kind": 1024, @@ -28320,7 +35295,8 @@ "fileName": "src/resource_clients/build.ts", "line": 140, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L140" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L140", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28329,7 +35305,7 @@ } }, { - "id": 886, + "id": 890, "name": "finishedAt", "variant": "declaration", "kind": 1024, @@ -28341,7 +35317,8 @@ "fileName": "src/resource_clients/build.ts", "line": 127, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L127" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L127", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28355,7 +35332,7 @@ } }, { - "id": 882, + "id": 886, "name": "id", "variant": "declaration", "kind": 1024, @@ -28365,7 +35342,8 @@ "fileName": "src/resource_clients/build.ts", "line": 123, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L123" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L123", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28374,7 +35352,7 @@ } }, { - "id": 891, + "id": 895, "name": "inputSchema", "variant": "declaration", "kind": 1024, @@ -28408,7 +35386,8 @@ "fileName": "src/resource_clients/build.ts", "line": 135, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L135" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L135", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28417,7 +35396,7 @@ } }, { - "id": 888, + "id": 892, "name": "meta", "variant": "declaration", "kind": 1024, @@ -28427,18 +35406,19 @@ "fileName": "src/resource_clients/build.ts", "line": 129, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L129" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L129", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 877, + "target": 881, "name": "BuildMeta", "package": "apify-client" } }, { - "id": 890, + "id": 894, "name": "options", "variant": "declaration", "kind": 1024, @@ -28450,18 +35430,19 @@ "fileName": "src/resource_clients/build.ts", "line": 131, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L131" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L131", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 904, + "target": 908, "name": "BuildOptions", "package": "apify-client" } }, { - "id": 892, + "id": 896, "name": "readme", "variant": "declaration", "kind": 1024, @@ -28495,7 +35476,8 @@ "fileName": "src/resource_clients/build.ts", "line": 139, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L139" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L139", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28504,7 +35486,7 @@ } }, { - "id": 885, + "id": 889, "name": "startedAt", "variant": "declaration", "kind": 1024, @@ -28514,7 +35496,8 @@ "fileName": "src/resource_clients/build.ts", "line": 126, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L126" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L126", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28528,7 +35511,7 @@ } }, { - "id": 889, + "id": 893, "name": "stats", "variant": "declaration", "kind": 1024, @@ -28540,18 +35523,19 @@ "fileName": "src/resource_clients/build.ts", "line": 130, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L130" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L130", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 900, + "target": 904, "name": "BuildStats", "package": "apify-client" } }, { - "id": 887, + "id": 891, "name": "status", "variant": "declaration", "kind": 1024, @@ -28561,7 +35545,8 @@ "fileName": "src/resource_clients/build.ts", "line": 128, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L128" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L128", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28587,7 +35572,7 @@ } }, { - "id": 894, + "id": 898, "name": "usage", "variant": "declaration", "kind": 1024, @@ -28599,18 +35584,19 @@ "fileName": "src/resource_clients/build.ts", "line": 141, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L141" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L141", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 898, + "target": 902, "name": "BuildUsage", "package": "apify-client" } }, { - "id": 895, + "id": 899, "name": "usageTotalUsd", "variant": "declaration", "kind": 1024, @@ -28622,7 +35608,8 @@ "fileName": "src/resource_clients/build.ts", "line": 142, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L142" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L142", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28631,7 +35618,7 @@ } }, { - "id": 896, + "id": 900, "name": "usageUsd", "variant": "declaration", "kind": 1024, @@ -28643,18 +35630,19 @@ "fileName": "src/resource_clients/build.ts", "line": 143, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L143" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L143", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 898, + "target": 902, "name": "BuildUsage", "package": "apify-client" } }, { - "id": 884, + "id": 888, "name": "userId", "variant": "declaration", "kind": 1024, @@ -28664,7 +35652,8 @@ "fileName": "src/resource_clients/build.ts", "line": 125, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L125" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L125", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28676,7 +35665,7 @@ "groups": [ { "title": "Properties", - "children": [883, 897, 893, 886, 882, 891, 888, 890, 892, 885, 889, 887, 894, 895, 896, 884] + "children": [887, 901, 897, 890, 886, 895, 892, 894, 896, 889, 893, 891, 898, 899, 900, 888] } ], "sources": [ @@ -28684,19 +35673,20 @@ "fileName": "src/resource_clients/build.ts", "line": 122, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L122" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L122", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 873, + "id": 877, "name": "BuildClientGetOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 874, + "id": 878, "name": "waitForFinish", "variant": "declaration", "kind": 1024, @@ -28708,7 +35698,8 @@ "fileName": "src/resource_clients/build.ts", "line": 104, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L104" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L104", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28720,7 +35711,7 @@ "groups": [ { "title": "Properties", - "children": [874] + "children": [878] } ], "sources": [ @@ -28728,19 +35719,20 @@ "fileName": "src/resource_clients/build.ts", "line": 103, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L103" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L103", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 875, + "id": 879, "name": "BuildClientWaitForFinishOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 876, + "id": 880, "name": "waitSecs", "variant": "declaration", "kind": 1024, @@ -28784,7 +35776,8 @@ "fileName": "src/resource_clients/build.ts", "line": 113, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L113" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L113", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28796,7 +35789,7 @@ "groups": [ { "title": "Properties", - "children": [876] + "children": [880] } ], "sources": [ @@ -28804,19 +35797,20 @@ "fileName": "src/resource_clients/build.ts", "line": 107, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L107" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L107", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 981, + "id": 985, "name": "BuildCollectionClientListOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 984, + "id": 988, "name": "desc", "variant": "declaration", "kind": 1024, @@ -28828,7 +35822,8 @@ "fileName": "src/resource_clients/build_collection.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build_collection.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build_collection.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28837,7 +35832,7 @@ } }, { - "id": 982, + "id": 986, "name": "limit", "variant": "declaration", "kind": 1024, @@ -28849,7 +35844,8 @@ "fileName": "src/resource_clients/build_collection.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build_collection.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build_collection.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28858,7 +35854,7 @@ } }, { - "id": 983, + "id": 987, "name": "offset", "variant": "declaration", "kind": 1024, @@ -28870,7 +35866,8 @@ "fileName": "src/resource_clients/build_collection.ts", "line": 38, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build_collection.ts#L38" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build_collection.ts#L38", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28882,7 +35879,7 @@ "groups": [ { "title": "Properties", - "children": [984, 982, 983] + "children": [988, 986, 987] } ], "sources": [ @@ -28890,19 +35887,20 @@ "fileName": "src/resource_clients/build_collection.ts", "line": 36, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build_collection.ts#L36" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build_collection.ts#L36", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 877, + "id": 881, "name": "BuildMeta", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 879, + "id": 883, "name": "clientIp", "variant": "declaration", "kind": 1024, @@ -28912,7 +35910,8 @@ "fileName": "src/resource_clients/build.ts", "line": 118, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L118" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L118", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28921,7 +35920,7 @@ } }, { - "id": 878, + "id": 882, "name": "origin", "variant": "declaration", "kind": 1024, @@ -28931,7 +35930,8 @@ "fileName": "src/resource_clients/build.ts", "line": 117, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L117" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L117", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28940,7 +35940,7 @@ } }, { - "id": 880, + "id": 884, "name": "userAgent", "variant": "declaration", "kind": 1024, @@ -28950,7 +35950,8 @@ "fileName": "src/resource_clients/build.ts", "line": 119, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L119" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L119", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -28962,7 +35963,7 @@ "groups": [ { "title": "Properties", - "children": [879, 878, 880] + "children": [883, 882, 884] } ], "sources": [ @@ -28970,19 +35971,20 @@ "fileName": "src/resource_clients/build.ts", "line": 116, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L116" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L116", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 904, + "id": 908, "name": "BuildOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 906, + "id": 910, "name": "betaPackages", "variant": "declaration", "kind": 1024, @@ -28994,7 +35996,8 @@ "fileName": "src/resource_clients/build.ts", "line": 159, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L159" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L159", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29003,7 +36006,7 @@ } }, { - "id": 908, + "id": 912, "name": "diskMbytes", "variant": "declaration", "kind": 1024, @@ -29015,7 +36018,8 @@ "fileName": "src/resource_clients/build.ts", "line": 161, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L161" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L161", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29024,7 +36028,7 @@ } }, { - "id": 907, + "id": 911, "name": "memoryMbytes", "variant": "declaration", "kind": 1024, @@ -29036,7 +36040,8 @@ "fileName": "src/resource_clients/build.ts", "line": 160, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L160" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L160", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29045,7 +36050,7 @@ } }, { - "id": 905, + "id": 909, "name": "useCache", "variant": "declaration", "kind": 1024, @@ -29057,7 +36062,8 @@ "fileName": "src/resource_clients/build.ts", "line": 158, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L158" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L158", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29069,7 +36075,7 @@ "groups": [ { "title": "Properties", - "children": [906, 908, 907, 905] + "children": [910, 912, 911, 909] } ], "sources": [ @@ -29077,19 +36083,20 @@ "fileName": "src/resource_clients/build.ts", "line": 157, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L157" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L157", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 900, + "id": 904, "name": "BuildStats", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 903, + "id": 907, "name": "computeUnits", "variant": "declaration", "kind": 1024, @@ -29099,7 +36106,8 @@ "fileName": "src/resource_clients/build.ts", "line": 154, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L154" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L154", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29108,7 +36116,7 @@ } }, { - "id": 901, + "id": 905, "name": "durationMillis", "variant": "declaration", "kind": 1024, @@ -29118,7 +36126,8 @@ "fileName": "src/resource_clients/build.ts", "line": 152, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L152" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L152", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29127,7 +36136,7 @@ } }, { - "id": 902, + "id": 906, "name": "runTimeSecs", "variant": "declaration", "kind": 1024, @@ -29137,7 +36146,8 @@ "fileName": "src/resource_clients/build.ts", "line": 153, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L153" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L153", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29149,7 +36159,7 @@ "groups": [ { "title": "Properties", - "children": [903, 901, 902] + "children": [907, 905, 906] } ], "sources": [ @@ -29157,19 +36167,20 @@ "fileName": "src/resource_clients/build.ts", "line": 151, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L151" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L151", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 898, + "id": 902, "name": "BuildUsage", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 899, + "id": 903, "name": "ACTOR_COMPUTE_UNITS", "variant": "declaration", "kind": 1024, @@ -29181,7 +36192,8 @@ "fileName": "src/resource_clients/build.ts", "line": 148, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L148" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L148", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29193,7 +36205,7 @@ "groups": [ { "title": "Properties", - "children": [899] + "children": [903] } ], "sources": [ @@ -29201,19 +36213,20 @@ "fileName": "src/resource_clients/build.ts", "line": 147, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L147" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L147", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2480, + "id": 2682, "name": "Current", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2489, + "id": 2691, "name": "activeActorJobCount", "variant": "declaration", "kind": 1024, @@ -29223,7 +36236,8 @@ "fileName": "src/resource_clients/user.ts", "line": 262, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L262" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L262", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29232,7 +36246,7 @@ } }, { - "id": 2487, + "id": 2689, "name": "actorCount", "variant": "declaration", "kind": 1024, @@ -29242,7 +36256,8 @@ "fileName": "src/resource_clients/user.ts", "line": 260, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L260" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L260", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29251,7 +36266,7 @@ } }, { - "id": 2486, + "id": 2688, "name": "actorMemoryGbytes", "variant": "declaration", "kind": 1024, @@ -29261,7 +36276,8 @@ "fileName": "src/resource_clients/user.ts", "line": 259, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L259" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L259", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29270,7 +36286,7 @@ } }, { - "id": 2488, + "id": 2690, "name": "actorTaskCount", "variant": "declaration", "kind": 1024, @@ -29280,7 +36296,8 @@ "fileName": "src/resource_clients/user.ts", "line": 261, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L261" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L261", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29289,7 +36306,7 @@ } }, { - "id": 2482, + "id": 2684, "name": "monthlyActorComputeUnits", "variant": "declaration", "kind": 1024, @@ -29299,7 +36316,8 @@ "fileName": "src/resource_clients/user.ts", "line": 255, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L255" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L255", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29308,7 +36326,7 @@ } }, { - "id": 2483, + "id": 2685, "name": "monthlyExternalDataTransferGbytes", "variant": "declaration", "kind": 1024, @@ -29318,7 +36336,8 @@ "fileName": "src/resource_clients/user.ts", "line": 256, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L256" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L256", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29327,7 +36346,7 @@ } }, { - "id": 2484, + "id": 2686, "name": "monthlyProxySerps", "variant": "declaration", "kind": 1024, @@ -29337,7 +36356,8 @@ "fileName": "src/resource_clients/user.ts", "line": 257, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L257" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L257", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29346,7 +36366,7 @@ } }, { - "id": 2485, + "id": 2687, "name": "monthlyResidentialProxyGbytes", "variant": "declaration", "kind": 1024, @@ -29356,7 +36376,8 @@ "fileName": "src/resource_clients/user.ts", "line": 258, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L258" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L258", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29365,7 +36386,7 @@ } }, { - "id": 2481, + "id": 2683, "name": "monthlyUsageUsd", "variant": "declaration", "kind": 1024, @@ -29375,7 +36396,8 @@ "fileName": "src/resource_clients/user.ts", "line": 254, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L254" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L254", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29384,7 +36406,7 @@ } }, { - "id": 2490, + "id": 2692, "name": "teamAccountSeatCount", "variant": "declaration", "kind": 1024, @@ -29394,7 +36416,8 @@ "fileName": "src/resource_clients/user.ts", "line": 263, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L263" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L263", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29406,7 +36429,7 @@ "groups": [ { "title": "Properties", - "children": [2489, 2487, 2486, 2488, 2482, 2483, 2484, 2485, 2481, 2490] + "children": [2691, 2689, 2688, 2690, 2684, 2685, 2686, 2687, 2683, 2692] } ], "sources": [ @@ -29414,19 +36437,20 @@ "fileName": "src/resource_clients/user.ts", "line": 253, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L253" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L253", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1066, + "id": 1070, "name": "Dataset", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1073, + "id": 1077, "name": "accessedAt", "variant": "declaration", "kind": 1024, @@ -29436,7 +36460,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 240, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L240" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L240", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29450,7 +36475,7 @@ } }, { - "id": 1076, + "id": 1080, "name": "actId", "variant": "declaration", "kind": 1024, @@ -29462,7 +36487,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 243, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L243" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L243", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29471,7 +36497,7 @@ } }, { - "id": 1077, + "id": 1081, "name": "actRunId", "variant": "declaration", "kind": 1024, @@ -29483,7 +36509,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 244, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L244" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L244", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29492,7 +36519,7 @@ } }, { - "id": 1075, + "id": 1079, "name": "cleanItemCount", "variant": "declaration", "kind": 1024, @@ -29502,7 +36529,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 242, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L242" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L242", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29511,7 +36539,7 @@ } }, { - "id": 1071, + "id": 1075, "name": "createdAt", "variant": "declaration", "kind": 1024, @@ -29521,7 +36549,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 238, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L238" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L238", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29535,7 +36564,7 @@ } }, { - "id": 1079, + "id": 1083, "name": "fields", "variant": "declaration", "kind": 1024, @@ -29545,7 +36574,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 246, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L246" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L246", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29557,7 +36587,7 @@ } }, { - "id": 1080, + "id": 1084, "name": "generalAccess", "variant": "declaration", "kind": 1024, @@ -29569,7 +36599,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 247, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L247" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L247", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29592,7 +36623,7 @@ } }, { - "id": 1067, + "id": 1071, "name": "id", "variant": "declaration", "kind": 1024, @@ -29602,7 +36633,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 234, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L234" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L234", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29611,7 +36643,7 @@ } }, { - "id": 1074, + "id": 1078, "name": "itemCount", "variant": "declaration", "kind": 1024, @@ -29621,7 +36653,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 241, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L241" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L241", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29630,7 +36663,7 @@ } }, { - "id": 1082, + "id": 1086, "name": "itemsPublicUrl", "variant": "declaration", "kind": 1024, @@ -29640,7 +36673,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 249, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L249" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L249", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29649,7 +36683,7 @@ } }, { - "id": 1072, + "id": 1076, "name": "modifiedAt", "variant": "declaration", "kind": 1024, @@ -29659,7 +36693,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 239, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L239" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L239", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29673,7 +36708,7 @@ } }, { - "id": 1068, + "id": 1072, "name": "name", "variant": "declaration", "kind": 1024, @@ -29685,7 +36720,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 235, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L235" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L235", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29694,7 +36730,7 @@ } }, { - "id": 1078, + "id": 1082, "name": "stats", "variant": "declaration", "kind": 1024, @@ -29704,18 +36740,19 @@ "fileName": "src/resource_clients/dataset.ts", "line": 245, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L245" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L245", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1083, + "target": 1087, "name": "DatasetStats", "package": "apify-client" } }, { - "id": 1069, + "id": 1073, "name": "title", "variant": "declaration", "kind": 1024, @@ -29727,7 +36764,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 236, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L236" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L236", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29736,7 +36774,7 @@ } }, { - "id": 1081, + "id": 1085, "name": "urlSigningSecretKey", "variant": "declaration", "kind": 1024, @@ -29748,7 +36786,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 248, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L248" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L248", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29766,7 +36805,7 @@ } }, { - "id": 1070, + "id": 1074, "name": "userId", "variant": "declaration", "kind": 1024, @@ -29776,7 +36815,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 237, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L237" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L237", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29789,7 +36829,7 @@ { "title": "Properties", "children": [ - 1073, 1076, 1077, 1075, 1071, 1079, 1080, 1067, 1074, 1082, 1072, 1068, 1078, 1069, 1081, 1070 + 1077, 1080, 1081, 1079, 1075, 1083, 1084, 1071, 1078, 1086, 1076, 1072, 1082, 1073, 1085, 1074 ] } ], @@ -29798,19 +36838,20 @@ "fileName": "src/resource_clients/dataset.ts", "line": 233, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L233" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L233", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1105, + "id": 1109, "name": "DatasetClientCreateItemsUrlOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1107, + "id": 1111, "name": "clean", "variant": "declaration", "kind": 1024, @@ -29823,7 +36864,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 266, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L266" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L266", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29832,12 +36874,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1093, + "target": 1097, "name": "DatasetClientListItemOptions.clean" } }, { - "id": 1108, + "id": 1112, "name": "desc", "variant": "declaration", "kind": 1024, @@ -29850,7 +36892,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 267, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L267" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L267", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29859,12 +36902,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1094, + "target": 1098, "name": "DatasetClientListItemOptions.desc" } }, { - "id": 1106, + "id": 1110, "name": "expiresInSecs", "variant": "declaration", "kind": 1024, @@ -29876,7 +36919,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 281, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L281" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L281", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29885,7 +36929,7 @@ } }, { - "id": 1110, + "id": 1114, "name": "fields", "variant": "declaration", "kind": 1024, @@ -29898,7 +36942,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 269, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L269" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L269", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29910,12 +36955,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1096, + "target": 1100, "name": "DatasetClientListItemOptions.fields" } }, { - "id": 1109, + "id": 1113, "name": "flatten", "variant": "declaration", "kind": 1024, @@ -29928,7 +36973,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 268, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L268" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L268", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29940,12 +36986,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1095, + "target": 1099, "name": "DatasetClientListItemOptions.flatten" } }, { - "id": 1112, + "id": 1116, "name": "limit", "variant": "declaration", "kind": 1024, @@ -29958,7 +37004,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 271, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L271" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L271", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29967,12 +37014,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1098, + "target": 1102, "name": "DatasetClientListItemOptions.limit" } }, { - "id": 1113, + "id": 1117, "name": "offset", "variant": "declaration", "kind": 1024, @@ -29985,7 +37032,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 272, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L272" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L272", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -29994,12 +37042,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1099, + "target": 1103, "name": "DatasetClientListItemOptions.offset" } }, { - "id": 1111, + "id": 1115, "name": "omit", "variant": "declaration", "kind": 1024, @@ -30012,7 +37060,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 270, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L270" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L270", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30024,12 +37073,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1097, + "target": 1101, "name": "DatasetClientListItemOptions.omit" } }, { - "id": 1118, + "id": 1122, "name": "signature", "variant": "declaration", "kind": 1024, @@ -30042,7 +37091,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 277, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L277" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L277", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30051,12 +37101,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1104, + "target": 1108, "name": "DatasetClientListItemOptions.signature" } }, { - "id": 1114, + "id": 1118, "name": "skipEmpty", "variant": "declaration", "kind": 1024, @@ -30069,7 +37119,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 273, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L273" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L273", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30078,12 +37129,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1100, + "target": 1104, "name": "DatasetClientListItemOptions.skipEmpty" } }, { - "id": 1115, + "id": 1119, "name": "skipHidden", "variant": "declaration", "kind": 1024, @@ -30096,7 +37147,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 274, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L274" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L274", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30105,12 +37157,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1101, + "target": 1105, "name": "DatasetClientListItemOptions.skipHidden" } }, { - "id": 1116, + "id": 1120, "name": "unwind", "variant": "declaration", "kind": 1024, @@ -30123,7 +37175,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 275, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L275" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L275", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30144,12 +37197,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1102, + "target": 1106, "name": "DatasetClientListItemOptions.unwind" } }, { - "id": 1117, + "id": 1121, "name": "view", "variant": "declaration", "kind": 1024, @@ -30162,7 +37215,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 276, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L276" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L276", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30171,7 +37225,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 1103, + "target": 1107, "name": "DatasetClientListItemOptions.view" } } @@ -30179,7 +37233,7 @@ "groups": [ { "title": "Properties", - "children": [1107, 1108, 1106, 1110, 1109, 1112, 1113, 1111, 1118, 1114, 1115, 1116, 1117] + "children": [1111, 1112, 1110, 1114, 1113, 1116, 1117, 1115, 1122, 1118, 1119, 1120, 1121] } ], "sources": [ @@ -30187,27 +37241,28 @@ "fileName": "src/resource_clients/dataset.ts", "line": 280, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L280" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L280", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ { "type": "reference", - "target": 1092, + "target": 1096, "name": "DatasetClientListItemOptions", "package": "apify-client" } ] }, { - "id": 1127, + "id": 1131, "name": "DatasetClientDownloadItemsOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1128, + "id": 1132, "name": "attachment", "variant": "declaration", "kind": 1024, @@ -30219,7 +37274,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 297, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L297" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L297", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30228,7 +37284,7 @@ } }, { - "id": 1129, + "id": 1133, "name": "bom", "variant": "declaration", "kind": 1024, @@ -30240,7 +37296,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 298, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L298" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L298", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30249,7 +37306,7 @@ } }, { - "id": 1134, + "id": 1138, "name": "clean", "variant": "declaration", "kind": 1024, @@ -30262,7 +37319,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 266, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L266" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L266", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30271,12 +37329,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1093, + "target": 1097, "name": "DatasetClientListItemOptions.clean" } }, { - "id": 1130, + "id": 1134, "name": "delimiter", "variant": "declaration", "kind": 1024, @@ -30288,7 +37346,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 299, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L299" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L299", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30297,7 +37356,7 @@ } }, { - "id": 1135, + "id": 1139, "name": "desc", "variant": "declaration", "kind": 1024, @@ -30310,7 +37369,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 267, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L267" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L267", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30319,12 +37379,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1094, + "target": 1098, "name": "DatasetClientListItemOptions.desc" } }, { - "id": 1137, + "id": 1141, "name": "fields", "variant": "declaration", "kind": 1024, @@ -30337,7 +37397,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 269, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L269" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L269", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30349,12 +37410,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1096, + "target": 1100, "name": "DatasetClientListItemOptions.fields" } }, { - "id": 1136, + "id": 1140, "name": "flatten", "variant": "declaration", "kind": 1024, @@ -30367,7 +37428,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 268, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L268" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L268", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30379,12 +37441,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1095, + "target": 1099, "name": "DatasetClientListItemOptions.flatten" } }, { - "id": 1139, + "id": 1143, "name": "limit", "variant": "declaration", "kind": 1024, @@ -30397,7 +37459,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 271, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L271" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L271", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30406,12 +37469,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1098, + "target": 1102, "name": "DatasetClientListItemOptions.limit" } }, { - "id": 1140, + "id": 1144, "name": "offset", "variant": "declaration", "kind": 1024, @@ -30424,7 +37487,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 272, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L272" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L272", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30433,12 +37497,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1099, + "target": 1103, "name": "DatasetClientListItemOptions.offset" } }, { - "id": 1138, + "id": 1142, "name": "omit", "variant": "declaration", "kind": 1024, @@ -30451,7 +37515,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 270, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L270" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L270", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30463,12 +37528,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1097, + "target": 1101, "name": "DatasetClientListItemOptions.omit" } }, { - "id": 1145, + "id": 1149, "name": "signature", "variant": "declaration", "kind": 1024, @@ -30481,7 +37546,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 277, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L277" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L277", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30490,12 +37556,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1104, + "target": 1108, "name": "DatasetClientListItemOptions.signature" } }, { - "id": 1141, + "id": 1145, "name": "skipEmpty", "variant": "declaration", "kind": 1024, @@ -30508,7 +37574,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 273, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L273" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L273", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30517,12 +37584,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1100, + "target": 1104, "name": "DatasetClientListItemOptions.skipEmpty" } }, { - "id": 1131, + "id": 1135, "name": "skipHeaderRow", "variant": "declaration", "kind": 1024, @@ -30534,7 +37601,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 300, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L300" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L300", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30543,7 +37611,7 @@ } }, { - "id": 1142, + "id": 1146, "name": "skipHidden", "variant": "declaration", "kind": 1024, @@ -30556,7 +37624,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 274, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L274" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L274", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30565,12 +37634,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1101, + "target": 1105, "name": "DatasetClientListItemOptions.skipHidden" } }, { - "id": 1143, + "id": 1147, "name": "unwind", "variant": "declaration", "kind": 1024, @@ -30583,7 +37652,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 275, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L275" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L275", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30604,12 +37674,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1102, + "target": 1106, "name": "DatasetClientListItemOptions.unwind" } }, { - "id": 1144, + "id": 1148, "name": "view", "variant": "declaration", "kind": 1024, @@ -30622,7 +37692,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 276, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L276" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L276", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30631,12 +37702,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1103, + "target": 1107, "name": "DatasetClientListItemOptions.view" } }, { - "id": 1132, + "id": 1136, "name": "xmlRoot", "variant": "declaration", "kind": 1024, @@ -30648,7 +37719,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 301, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L301" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L301", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30657,7 +37729,7 @@ } }, { - "id": 1133, + "id": 1137, "name": "xmlRow", "variant": "declaration", "kind": 1024, @@ -30669,7 +37741,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 302, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L302" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L302", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30682,8 +37755,8 @@ { "title": "Properties", "children": [ - 1128, 1129, 1134, 1130, 1135, 1137, 1136, 1139, 1140, 1138, 1145, 1141, 1131, 1142, 1143, 1144, - 1132, 1133 + 1132, 1133, 1138, 1134, 1139, 1141, 1140, 1143, 1144, 1142, 1149, 1145, 1135, 1146, 1147, 1148, + 1136, 1137 ] } ], @@ -30692,27 +37765,28 @@ "fileName": "src/resource_clients/dataset.ts", "line": 296, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L296" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L296", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ { "type": "reference", - "target": 1092, + "target": 1096, "name": "DatasetClientListItemOptions", "package": "apify-client" } ] }, { - "id": 1092, + "id": 1096, "name": "DatasetClientListItemOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1093, + "id": 1097, "name": "clean", "variant": "declaration", "kind": 1024, @@ -30724,7 +37798,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 266, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L266" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L266", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30733,7 +37808,7 @@ } }, { - "id": 1094, + "id": 1098, "name": "desc", "variant": "declaration", "kind": 1024, @@ -30745,7 +37820,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 267, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L267" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L267", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30754,7 +37830,7 @@ } }, { - "id": 1096, + "id": 1100, "name": "fields", "variant": "declaration", "kind": 1024, @@ -30766,7 +37842,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 269, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L269" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L269", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30778,7 +37855,7 @@ } }, { - "id": 1095, + "id": 1099, "name": "flatten", "variant": "declaration", "kind": 1024, @@ -30790,7 +37867,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 268, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L268" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L268", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30802,7 +37880,7 @@ } }, { - "id": 1098, + "id": 1102, "name": "limit", "variant": "declaration", "kind": 1024, @@ -30814,7 +37892,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 271, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L271" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L271", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30823,7 +37902,7 @@ } }, { - "id": 1099, + "id": 1103, "name": "offset", "variant": "declaration", "kind": 1024, @@ -30835,7 +37914,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 272, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L272" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L272", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30844,7 +37924,7 @@ } }, { - "id": 1097, + "id": 1101, "name": "omit", "variant": "declaration", "kind": 1024, @@ -30856,7 +37936,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 270, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L270" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L270", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30868,7 +37949,7 @@ } }, { - "id": 1104, + "id": 1108, "name": "signature", "variant": "declaration", "kind": 1024, @@ -30880,7 +37961,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 277, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L277" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L277", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30889,7 +37971,7 @@ } }, { - "id": 1100, + "id": 1104, "name": "skipEmpty", "variant": "declaration", "kind": 1024, @@ -30901,7 +37983,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 273, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L273" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L273", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30910,7 +37993,7 @@ } }, { - "id": 1101, + "id": 1105, "name": "skipHidden", "variant": "declaration", "kind": 1024, @@ -30922,7 +38005,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 274, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L274" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L274", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30931,7 +38015,7 @@ } }, { - "id": 1102, + "id": 1106, "name": "unwind", "variant": "declaration", "kind": 1024, @@ -30943,7 +38027,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 275, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L275" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L275", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30964,7 +38049,7 @@ } }, { - "id": 1103, + "id": 1107, "name": "view", "variant": "declaration", "kind": 1024, @@ -30976,7 +38061,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 276, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L276" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L276", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -30988,7 +38074,7 @@ "groups": [ { "title": "Properties", - "children": [1093, 1094, 1096, 1095, 1098, 1099, 1097, 1104, 1100, 1101, 1102, 1103] + "children": [1097, 1098, 1100, 1099, 1102, 1103, 1101, 1108, 1104, 1105, 1106, 1107] } ], "sources": [ @@ -30996,31 +38082,32 @@ "fileName": "src/resource_clients/dataset.ts", "line": 265, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L265" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L265", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedBy": [ { "type": "reference", - "target": 1105, + "target": 1109, "name": "DatasetClientCreateItemsUrlOptions" }, { "type": "reference", - "target": 1127, + "target": 1131, "name": "DatasetClientDownloadItemsOptions" } ] }, { - "id": 1088, + "id": 1092, "name": "DatasetClientUpdateOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1091, + "id": 1095, "name": "generalAccess", "variant": "declaration", "kind": 1024, @@ -31032,7 +38119,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 262, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L262" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L262", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31055,7 +38143,7 @@ } }, { - "id": 1089, + "id": 1093, "name": "name", "variant": "declaration", "kind": 1024, @@ -31067,7 +38155,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 260, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L260" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L260", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31085,7 +38174,7 @@ } }, { - "id": 1090, + "id": 1094, "name": "title", "variant": "declaration", "kind": 1024, @@ -31097,7 +38186,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 261, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L261" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L261", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31109,7 +38199,7 @@ "groups": [ { "title": "Properties", - "children": [1091, 1089, 1090] + "children": [1095, 1093, 1094] } ], "sources": [ @@ -31117,19 +38207,20 @@ "fileName": "src/resource_clients/dataset.ts", "line": 259, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L259" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L259", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1211, + "id": 1215, "name": "DatasetCollectionClientGetOrCreateOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1212, + "id": 1216, "name": "schema", "variant": "declaration", "kind": 1024, @@ -31141,7 +38232,8 @@ "fileName": "src/resource_clients/dataset_collection.ts", "line": 55, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset_collection.ts#L55" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset_collection.ts#L55", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31168,7 +38260,7 @@ "groups": [ { "title": "Properties", - "children": [1212] + "children": [1216] } ], "sources": [ @@ -31176,19 +38268,20 @@ "fileName": "src/resource_clients/dataset_collection.ts", "line": 54, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset_collection.ts#L54" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset_collection.ts#L54", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1206, + "id": 1210, "name": "DatasetCollectionClientListOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1210, + "id": 1214, "name": "desc", "variant": "declaration", "kind": 1024, @@ -31200,7 +38293,8 @@ "fileName": "src/resource_clients/dataset_collection.ts", "line": 51, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset_collection.ts#L51" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset_collection.ts#L51", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31209,7 +38303,7 @@ } }, { - "id": 1208, + "id": 1212, "name": "limit", "variant": "declaration", "kind": 1024, @@ -31221,7 +38315,8 @@ "fileName": "src/resource_clients/dataset_collection.ts", "line": 49, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset_collection.ts#L49" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset_collection.ts#L49", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31230,7 +38325,7 @@ } }, { - "id": 1209, + "id": 1213, "name": "offset", "variant": "declaration", "kind": 1024, @@ -31242,7 +38337,8 @@ "fileName": "src/resource_clients/dataset_collection.ts", "line": 50, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset_collection.ts#L50" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset_collection.ts#L50", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31251,7 +38347,7 @@ } }, { - "id": 1207, + "id": 1211, "name": "unnamed", "variant": "declaration", "kind": 1024, @@ -31263,7 +38359,8 @@ "fileName": "src/resource_clients/dataset_collection.ts", "line": 48, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset_collection.ts#L48" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset_collection.ts#L48", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31275,7 +38372,7 @@ "groups": [ { "title": "Properties", - "children": [1210, 1208, 1209, 1207] + "children": [1214, 1212, 1213, 1211] } ], "sources": [ @@ -31283,19 +38380,20 @@ "fileName": "src/resource_clients/dataset_collection.ts", "line": 47, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset_collection.ts#L47" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset_collection.ts#L47", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1146, + "id": 1150, "name": "DatasetStatistics", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1147, + "id": 1151, "name": "fieldStatistics", "variant": "declaration", "kind": 1024, @@ -31305,7 +38403,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 306, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L306" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L306", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31321,7 +38420,7 @@ }, { "type": "reference", - "target": 1148, + "target": 1152, "name": "FieldStatistics", "package": "apify-client" } @@ -31334,7 +38433,7 @@ "groups": [ { "title": "Properties", - "children": [1147] + "children": [1151] } ], "sources": [ @@ -31342,19 +38441,20 @@ "fileName": "src/resource_clients/dataset.ts", "line": 305, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L305" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L305", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1083, + "id": 1087, "name": "DatasetStats", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1086, + "id": 1090, "name": "deleteCount", "variant": "declaration", "kind": 1024, @@ -31366,7 +38466,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 255, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L255" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L255", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31375,7 +38476,7 @@ } }, { - "id": 1084, + "id": 1088, "name": "readCount", "variant": "declaration", "kind": 1024, @@ -31387,7 +38488,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 253, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L253" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L253", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31396,7 +38498,7 @@ } }, { - "id": 1087, + "id": 1091, "name": "storageBytes", "variant": "declaration", "kind": 1024, @@ -31408,7 +38510,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 256, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L256" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L256", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31417,7 +38520,7 @@ } }, { - "id": 1085, + "id": 1089, "name": "writeCount", "variant": "declaration", "kind": 1024, @@ -31429,7 +38532,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 254, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L254" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L254", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31441,7 +38545,7 @@ "groups": [ { "title": "Properties", - "children": [1086, 1084, 1087, 1085] + "children": [1090, 1088, 1091, 1089] } ], "sources": [ @@ -31449,19 +38553,20 @@ "fileName": "src/resource_clients/dataset.ts", "line": 252, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L252" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L252", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1148, + "id": 1152, "name": "FieldStatistics", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1152, + "id": 1156, "name": "emptyCount", "variant": "declaration", "kind": 1024, @@ -31473,7 +38578,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 313, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L313" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L313", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31482,7 +38588,7 @@ } }, { - "id": 1150, + "id": 1154, "name": "max", "variant": "declaration", "kind": 1024, @@ -31494,7 +38600,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 311, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L311" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L311", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31503,7 +38610,7 @@ } }, { - "id": 1149, + "id": 1153, "name": "min", "variant": "declaration", "kind": 1024, @@ -31515,7 +38622,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 310, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L310" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L310", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31524,7 +38632,7 @@ } }, { - "id": 1151, + "id": 1155, "name": "nullCount", "variant": "declaration", "kind": 1024, @@ -31536,7 +38644,8 @@ "fileName": "src/resource_clients/dataset.ts", "line": 312, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L312" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L312", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31548,7 +38657,7 @@ "groups": [ { "title": "Properties", - "children": [1152, 1150, 1149, 1151] + "children": [1156, 1154, 1153, 1155] } ], "sources": [ @@ -31556,19 +38665,20 @@ "fileName": "src/resource_clients/dataset.ts", "line": 309, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.ts#L309" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset.ts#L309", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 401, + "id": 405, "name": "FlatPricePerMonthActorPricingInfo", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 405, + "id": 409, "name": "apifyMarginPercentage", "variant": "declaration", "kind": 1024, @@ -31586,9 +38696,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 543, + "line": 574, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L543" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L574", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31602,7 +38713,7 @@ } }, { - "id": 406, + "id": 410, "name": "createdAt", "variant": "declaration", "kind": 1024, @@ -31620,9 +38731,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 545, + "line": 576, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L545" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L576", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31641,7 +38753,7 @@ } }, { - "id": 409, + "id": 413, "name": "notifiedAboutChangeAt", "variant": "declaration", "kind": 1024, @@ -31652,9 +38764,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 549, + "line": 580, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L549" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L580", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31673,7 +38786,7 @@ } }, { - "id": 408, + "id": 412, "name": "notifiedAboutFutureChangeAt", "variant": "declaration", "kind": 1024, @@ -31684,9 +38797,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 548, + "line": 579, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L548" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L579", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31705,7 +38819,7 @@ } }, { - "id": 404, + "id": 408, "name": "pricePerUnitUsd", "variant": "declaration", "kind": 1024, @@ -31721,9 +38835,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 562, + "line": 593, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L562" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L593", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31732,7 +38847,7 @@ } }, { - "id": 402, + "id": 406, "name": "pricingModel", "variant": "declaration", "kind": 1024, @@ -31740,9 +38855,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 558, + "line": 589, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L558" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L589", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31751,7 +38867,7 @@ } }, { - "id": 410, + "id": 414, "name": "reasonForChange", "variant": "declaration", "kind": 1024, @@ -31762,9 +38878,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 550, + "line": 581, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L550" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L581", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31778,7 +38895,7 @@ } }, { - "id": 407, + "id": 411, "name": "startedAt", "variant": "declaration", "kind": 1024, @@ -31796,9 +38913,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 547, + "line": 578, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L547" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L578", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31817,7 +38935,7 @@ } }, { - "id": 403, + "id": 407, "name": "trialMinutes", "variant": "declaration", "kind": 1024, @@ -31835,9 +38953,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 560, + "line": 591, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L560" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L591", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31849,15 +38968,16 @@ "groups": [ { "title": "Properties", - "children": [405, 406, 409, 408, 404, 402, 410, 407, 403] + "children": [409, 410, 413, 412, 408, 406, 414, 411, 407] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 557, + "line": 588, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L557" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L588", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -31873,14 +38993,14 @@ ] }, { - "id": 393, + "id": 397, "name": "FreeActorPricingInfo", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 395, + "id": 399, "name": "apifyMarginPercentage", "variant": "declaration", "kind": 1024, @@ -31898,9 +39018,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 543, + "line": 574, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L543" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L574", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31914,7 +39035,7 @@ } }, { - "id": 396, + "id": 400, "name": "createdAt", "variant": "declaration", "kind": 1024, @@ -31932,9 +39053,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 545, + "line": 576, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L545" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L576", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31953,7 +39075,7 @@ } }, { - "id": 399, + "id": 403, "name": "notifiedAboutChangeAt", "variant": "declaration", "kind": 1024, @@ -31964,9 +39086,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 549, + "line": 580, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L549" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L580", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -31985,7 +39108,7 @@ } }, { - "id": 398, + "id": 402, "name": "notifiedAboutFutureChangeAt", "variant": "declaration", "kind": 1024, @@ -31996,9 +39119,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 548, + "line": 579, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L548" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L579", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32017,7 +39141,7 @@ } }, { - "id": 394, + "id": 398, "name": "pricingModel", "variant": "declaration", "kind": 1024, @@ -32025,9 +39149,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 554, + "line": 585, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L554" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L585", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32036,7 +39161,7 @@ } }, { - "id": 400, + "id": 404, "name": "reasonForChange", "variant": "declaration", "kind": 1024, @@ -32047,9 +39172,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 550, + "line": 581, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L550" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L581", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32063,7 +39189,7 @@ } }, { - "id": 397, + "id": 401, "name": "startedAt", "variant": "declaration", "kind": 1024, @@ -32081,9 +39207,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 547, + "line": 578, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L547" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L578", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32105,15 +39232,16 @@ "groups": [ { "title": "Properties", - "children": [395, 396, 399, 398, 394, 400, 397] + "children": [399, 400, 403, 402, 398, 404, 401] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 553, + "line": 584, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L553" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L584", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -32129,14 +39257,100 @@ ] }, { - "id": 1328, + "id": 2043, + "name": "GetStreamedLogOptions", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2045, + "name": "fromStart", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/resource_clients/run.ts", + "line": 302, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L302", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2044, + "name": "toLog", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/resource_clients/run.ts", + "line": 301, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L301", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "Log" + }, + "name": "Log", + "package": "@apify/log" + }, + { + "type": "literal", + "value": "default" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [2045, 2044] + } + ], + "sources": [ + { + "fileName": "src/resource_clients/run.ts", + "line": 300, + "character": 17, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L300", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ] + }, + { + "id": 1332, "name": "KeyValueClientCreateKeysUrlOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1332, + "id": 1336, "name": "collection", "variant": "declaration", "kind": 1024, @@ -32149,7 +39363,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 359, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L359" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L359", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32158,12 +39373,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1325, + "target": 1329, "name": "KeyValueClientListKeysOptions.collection" } }, { - "id": 1331, + "id": 1335, "name": "exclusiveStartKey", "variant": "declaration", "kind": 1024, @@ -32176,7 +39391,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 358, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L358" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L358", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32185,12 +39401,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1324, + "target": 1328, "name": "KeyValueClientListKeysOptions.exclusiveStartKey" } }, { - "id": 1329, + "id": 1333, "name": "expiresInSecs", "variant": "declaration", "kind": 1024, @@ -32202,7 +39418,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 365, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L365" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L365", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32211,7 +39428,7 @@ } }, { - "id": 1330, + "id": 1334, "name": "limit", "variant": "declaration", "kind": 1024, @@ -32224,7 +39441,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 357, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L357" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L357", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32233,12 +39451,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1323, + "target": 1327, "name": "KeyValueClientListKeysOptions.limit" } }, { - "id": 1333, + "id": 1337, "name": "prefix", "variant": "declaration", "kind": 1024, @@ -32251,7 +39469,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 360, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L360" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L360", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32260,12 +39479,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1326, + "target": 1330, "name": "KeyValueClientListKeysOptions.prefix" } }, { - "id": 1334, + "id": 1338, "name": "signature", "variant": "declaration", "kind": 1024, @@ -32278,7 +39497,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 361, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L361" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L361", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32287,7 +39507,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 1327, + "target": 1331, "name": "KeyValueClientListKeysOptions.signature" } } @@ -32295,7 +39515,7 @@ "groups": [ { "title": "Properties", - "children": [1332, 1331, 1329, 1330, 1333, 1334] + "children": [1336, 1335, 1333, 1334, 1337, 1338] } ], "sources": [ @@ -32303,27 +39523,28 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 364, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L364" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L364", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ { "type": "reference", - "target": 1322, + "target": 1326, "name": "KeyValueClientListKeysOptions", "package": "apify-client" } ] }, { - "id": 1346, + "id": 1350, "name": "KeyValueClientGetRecordOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1347, + "id": 1351, "name": "buffer", "variant": "declaration", "kind": 1024, @@ -32335,7 +39556,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 384, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L384" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L384", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32344,7 +39566,7 @@ } }, { - "id": 1349, + "id": 1353, "name": "signature", "variant": "declaration", "kind": 1024, @@ -32356,7 +39578,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 386, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L386" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L386", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32365,7 +39588,7 @@ } }, { - "id": 1348, + "id": 1352, "name": "stream", "variant": "declaration", "kind": 1024, @@ -32377,7 +39600,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 385, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L385" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L385", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32389,7 +39613,7 @@ "groups": [ { "title": "Properties", - "children": [1347, 1349, 1348] + "children": [1351, 1353, 1352] } ], "sources": [ @@ -32397,19 +39621,20 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 383, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L383" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L383", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1322, + "id": 1326, "name": "KeyValueClientListKeysOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1325, + "id": 1329, "name": "collection", "variant": "declaration", "kind": 1024, @@ -32421,7 +39646,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 359, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L359" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L359", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32430,7 +39656,7 @@ } }, { - "id": 1324, + "id": 1328, "name": "exclusiveStartKey", "variant": "declaration", "kind": 1024, @@ -32442,7 +39668,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 358, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L358" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L358", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32451,7 +39678,7 @@ } }, { - "id": 1323, + "id": 1327, "name": "limit", "variant": "declaration", "kind": 1024, @@ -32463,7 +39690,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 357, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L357" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L357", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32472,7 +39700,7 @@ } }, { - "id": 1326, + "id": 1330, "name": "prefix", "variant": "declaration", "kind": 1024, @@ -32484,7 +39712,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 360, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L360" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L360", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32493,7 +39722,7 @@ } }, { - "id": 1327, + "id": 1331, "name": "signature", "variant": "declaration", "kind": 1024, @@ -32505,7 +39734,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 361, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L361" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L361", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32517,7 +39747,7 @@ "groups": [ { "title": "Properties", - "children": [1325, 1324, 1323, 1326, 1327] + "children": [1329, 1328, 1327, 1330, 1331] } ], "sources": [ @@ -32525,26 +39755,27 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 356, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L356" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L356", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedBy": [ { "type": "reference", - "target": 1328, + "target": 1332, "name": "KeyValueClientCreateKeysUrlOptions" } ] }, { - "id": 1335, + "id": 1339, "name": "KeyValueClientListKeysResult", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1336, + "id": 1340, "name": "count", "variant": "declaration", "kind": 1024, @@ -32554,7 +39785,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 369, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L369" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L369", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32563,7 +39795,7 @@ } }, { - "id": 1338, + "id": 1342, "name": "exclusiveStartKey", "variant": "declaration", "kind": 1024, @@ -32573,7 +39805,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 371, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L371" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L371", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32582,7 +39815,7 @@ } }, { - "id": 1339, + "id": 1343, "name": "isTruncated", "variant": "declaration", "kind": 1024, @@ -32592,7 +39825,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 372, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L372" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L372", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32601,7 +39835,7 @@ } }, { - "id": 1341, + "id": 1345, "name": "items", "variant": "declaration", "kind": 1024, @@ -32611,21 +39845,22 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 374, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L374" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L374", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 1342, + "target": 1346, "name": "KeyValueListItem", "package": "apify-client" } } }, { - "id": 1337, + "id": 1341, "name": "limit", "variant": "declaration", "kind": 1024, @@ -32635,7 +39870,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 370, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L370" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L370", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32644,7 +39880,7 @@ } }, { - "id": 1340, + "id": 1344, "name": "nextExclusiveStartKey", "variant": "declaration", "kind": 1024, @@ -32654,7 +39890,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 373, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L373" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L373", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32666,7 +39903,7 @@ "groups": [ { "title": "Properties", - "children": [1336, 1338, 1339, 1341, 1337, 1340] + "children": [1340, 1342, 1343, 1345, 1341, 1344] } ], "sources": [ @@ -32674,19 +39911,20 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 368, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L368" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L368", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1318, + "id": 1322, "name": "KeyValueClientUpdateOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1321, + "id": 1325, "name": "generalAccess", "variant": "declaration", "kind": 1024, @@ -32698,7 +39936,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 353, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L353" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L353", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32721,7 +39960,7 @@ } }, { - "id": 1319, + "id": 1323, "name": "name", "variant": "declaration", "kind": 1024, @@ -32733,7 +39972,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 351, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L351" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L351", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32751,7 +39991,7 @@ } }, { - "id": 1320, + "id": 1324, "name": "title", "variant": "declaration", "kind": 1024, @@ -32763,7 +40003,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 352, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L352" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L352", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32775,7 +40016,7 @@ "groups": [ { "title": "Properties", - "children": [1321, 1319, 1320] + "children": [1325, 1323, 1324] } ], "sources": [ @@ -32783,19 +40024,20 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 350, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L350" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L350", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1342, + "id": 1346, "name": "KeyValueListItem", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1343, + "id": 1347, "name": "key", "variant": "declaration", "kind": 1024, @@ -32805,7 +40047,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 378, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L378" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L378", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32814,7 +40057,7 @@ } }, { - "id": 1345, + "id": 1349, "name": "recordPublicUrl", "variant": "declaration", "kind": 1024, @@ -32824,7 +40067,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 380, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L380" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L380", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32833,7 +40077,7 @@ } }, { - "id": 1344, + "id": 1348, "name": "size", "variant": "declaration", "kind": 1024, @@ -32843,7 +40087,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 379, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L379" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L379", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32855,7 +40100,7 @@ "groups": [ { "title": "Properties", - "children": [1343, 1345, 1344] + "children": [1347, 1349, 1348] } ], "sources": [ @@ -32863,19 +40108,20 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 377, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L377" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L377", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1298, + "id": 1302, "name": "KeyValueStore", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1305, + "id": 1309, "name": "accessedAt", "variant": "declaration", "kind": 1024, @@ -32885,7 +40131,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 333, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L333" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L333", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32899,7 +40146,7 @@ } }, { - "id": 1306, + "id": 1310, "name": "actId", "variant": "declaration", "kind": 1024, @@ -32911,7 +40158,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 334, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L334" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L334", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32920,7 +40168,7 @@ } }, { - "id": 1307, + "id": 1311, "name": "actRunId", "variant": "declaration", "kind": 1024, @@ -32932,7 +40180,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 335, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L335" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L335", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32941,7 +40190,7 @@ } }, { - "id": 1303, + "id": 1307, "name": "createdAt", "variant": "declaration", "kind": 1024, @@ -32951,7 +40200,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 331, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L331" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L331", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -32965,7 +40215,7 @@ } }, { - "id": 1309, + "id": 1313, "name": "generalAccess", "variant": "declaration", "kind": 1024, @@ -32977,7 +40227,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 337, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L337" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L337", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33000,7 +40251,7 @@ } }, { - "id": 1299, + "id": 1303, "name": "id", "variant": "declaration", "kind": 1024, @@ -33010,7 +40261,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 327, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L327" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L327", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33019,7 +40271,7 @@ } }, { - "id": 1311, + "id": 1315, "name": "keysPublicUrl", "variant": "declaration", "kind": 1024, @@ -33029,7 +40281,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 339, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L339" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L339", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33038,7 +40291,7 @@ } }, { - "id": 1304, + "id": 1308, "name": "modifiedAt", "variant": "declaration", "kind": 1024, @@ -33048,7 +40301,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 332, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L332" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L332", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33062,7 +40316,7 @@ } }, { - "id": 1300, + "id": 1304, "name": "name", "variant": "declaration", "kind": 1024, @@ -33074,7 +40328,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 328, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L328" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L328", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33083,7 +40338,7 @@ } }, { - "id": 1308, + "id": 1312, "name": "stats", "variant": "declaration", "kind": 1024, @@ -33095,18 +40350,19 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 336, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L336" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L336", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1312, + "target": 1316, "name": "KeyValueStoreStats", "package": "apify-client" } }, { - "id": 1301, + "id": 1305, "name": "title", "variant": "declaration", "kind": 1024, @@ -33118,7 +40374,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 329, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L329" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L329", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33127,7 +40384,7 @@ } }, { - "id": 1310, + "id": 1314, "name": "urlSigningSecretKey", "variant": "declaration", "kind": 1024, @@ -33139,7 +40396,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 338, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L338" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L338", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33157,7 +40415,7 @@ } }, { - "id": 1302, + "id": 1306, "name": "userId", "variant": "declaration", "kind": 1024, @@ -33167,7 +40425,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 330, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L330" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L330", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33179,7 +40438,7 @@ "groups": [ { "title": "Properties", - "children": [1305, 1306, 1307, 1303, 1309, 1299, 1311, 1304, 1300, 1308, 1301, 1310, 1302] + "children": [1309, 1310, 1311, 1307, 1313, 1303, 1315, 1308, 1304, 1312, 1305, 1314, 1306] } ], "sources": [ @@ -33187,19 +40446,20 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 326, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L326" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L326", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1418, + "id": 1422, "name": "KeyValueStoreCollectionClientGetOrCreateOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1419, + "id": 1423, "name": "schema", "variant": "declaration", "kind": 1024, @@ -33211,7 +40471,8 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 60, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L60" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L60", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33238,7 +40499,7 @@ "groups": [ { "title": "Properties", - "children": [1419] + "children": [1423] } ], "sources": [ @@ -33246,19 +40507,20 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 59, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L59" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L59", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1413, + "id": 1417, "name": "KeyValueStoreCollectionClientListOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1417, + "id": 1421, "name": "desc", "variant": "declaration", "kind": 1024, @@ -33270,7 +40532,8 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 56, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L56" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L56", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33279,7 +40542,7 @@ } }, { - "id": 1415, + "id": 1419, "name": "limit", "variant": "declaration", "kind": 1024, @@ -33291,7 +40554,8 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 54, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L54" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L54", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33300,7 +40564,7 @@ } }, { - "id": 1416, + "id": 1420, "name": "offset", "variant": "declaration", "kind": 1024, @@ -33312,7 +40576,8 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 55, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L55" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L55", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33321,7 +40586,7 @@ } }, { - "id": 1414, + "id": 1418, "name": "unnamed", "variant": "declaration", "kind": 1024, @@ -33333,7 +40598,8 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 53, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L53" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L53", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33345,7 +40611,7 @@ "groups": [ { "title": "Properties", - "children": [1417, 1415, 1416, 1414] + "children": [1421, 1419, 1420, 1418] } ], "sources": [ @@ -33353,19 +40619,20 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 52, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L52" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L52", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1350, + "id": 1354, "name": "KeyValueStoreRecord", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1353, + "id": 1357, "name": "contentType", "variant": "declaration", "kind": 1024, @@ -33377,7 +40644,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 392, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L392" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L392", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33386,7 +40654,7 @@ } }, { - "id": 1351, + "id": 1355, "name": "key", "variant": "declaration", "kind": 1024, @@ -33396,7 +40664,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 390, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L390" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L390", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33405,7 +40674,7 @@ } }, { - "id": 1352, + "id": 1356, "name": "value", "variant": "declaration", "kind": 1024, @@ -33415,12 +40684,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 391, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L391" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L391", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1354, + "target": 1358, "name": "T", "package": "apify-client", "qualifiedName": "KeyValueStoreRecord.T", @@ -33431,7 +40701,7 @@ "groups": [ { "title": "Properties", - "children": [1353, 1351, 1352] + "children": [1357, 1355, 1356] } ], "sources": [ @@ -33439,12 +40709,13 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 389, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L389" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L389", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "typeParameters": [ { - "id": 1354, + "id": 1358, "name": "T", "variant": "typeParam", "kind": 131072, @@ -33453,14 +40724,14 @@ ] }, { - "id": 1355, + "id": 1359, "name": "KeyValueStoreRecordOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1357, + "id": 1361, "name": "doNotRetryTimeouts", "variant": "declaration", "kind": 1024, @@ -33472,7 +40743,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 397, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L397" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L397", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33481,7 +40753,7 @@ } }, { - "id": 1356, + "id": 1360, "name": "timeoutSecs", "variant": "declaration", "kind": 1024, @@ -33493,7 +40765,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 396, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L396" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L396", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33505,7 +40778,7 @@ "groups": [ { "title": "Properties", - "children": [1357, 1356] + "children": [1361, 1360] } ], "sources": [ @@ -33513,19 +40786,20 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 395, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L395" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L395", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1312, + "id": 1316, "name": "KeyValueStoreStats", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1315, + "id": 1319, "name": "deleteCount", "variant": "declaration", "kind": 1024, @@ -33537,7 +40811,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 345, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L345" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L345", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33546,7 +40821,7 @@ } }, { - "id": 1316, + "id": 1320, "name": "listCount", "variant": "declaration", "kind": 1024, @@ -33558,7 +40833,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 346, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L346" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L346", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33567,7 +40843,7 @@ } }, { - "id": 1313, + "id": 1317, "name": "readCount", "variant": "declaration", "kind": 1024, @@ -33579,7 +40855,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 343, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L343" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L343", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33588,7 +40865,7 @@ } }, { - "id": 1317, + "id": 1321, "name": "storageBytes", "variant": "declaration", "kind": 1024, @@ -33600,7 +40877,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 347, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L347" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L347", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33609,7 +40887,7 @@ } }, { - "id": 1314, + "id": 1318, "name": "writeCount", "variant": "declaration", "kind": 1024, @@ -33621,7 +40899,8 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 344, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L344" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L344", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33633,7 +40912,7 @@ "groups": [ { "title": "Properties", - "children": [1315, 1316, 1313, 1317, 1314] + "children": [1319, 1320, 1317, 1321, 1318] } ], "sources": [ @@ -33641,19 +40920,20 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 342, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L342" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L342", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2467, + "id": 2669, "name": "Limits", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2478, + "id": 2680, "name": "dataRetentionDays", "variant": "declaration", "kind": 1024, @@ -33663,7 +40943,8 @@ "fileName": "src/resource_clients/user.ts", "line": 248, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L248" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L248", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33672,7 +40953,7 @@ } }, { - "id": 2474, + "id": 2676, "name": "maxActorCount", "variant": "declaration", "kind": 1024, @@ -33682,7 +40963,8 @@ "fileName": "src/resource_clients/user.ts", "line": 244, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L244" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L244", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33691,7 +40973,7 @@ } }, { - "id": 2473, + "id": 2675, "name": "maxActorMemoryGbytes", "variant": "declaration", "kind": 1024, @@ -33701,7 +40983,8 @@ "fileName": "src/resource_clients/user.ts", "line": 243, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L243" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L243", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33710,7 +40993,7 @@ } }, { - "id": 2475, + "id": 2677, "name": "maxActorTaskCount", "variant": "declaration", "kind": 1024, @@ -33720,7 +41003,8 @@ "fileName": "src/resource_clients/user.ts", "line": 245, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L245" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L245", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33729,7 +41013,7 @@ } }, { - "id": 2476, + "id": 2678, "name": "maxConcurrentActorJobs", "variant": "declaration", "kind": 1024, @@ -33739,7 +41023,8 @@ "fileName": "src/resource_clients/user.ts", "line": 246, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L246" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L246", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33748,7 +41033,7 @@ } }, { - "id": 2469, + "id": 2671, "name": "maxMonthlyActorComputeUnits", "variant": "declaration", "kind": 1024, @@ -33758,7 +41043,8 @@ "fileName": "src/resource_clients/user.ts", "line": 239, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L239" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L239", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33767,7 +41053,7 @@ } }, { - "id": 2470, + "id": 2672, "name": "maxMonthlyExternalDataTransferGbytes", "variant": "declaration", "kind": 1024, @@ -33777,7 +41063,8 @@ "fileName": "src/resource_clients/user.ts", "line": 240, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L240" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L240", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33786,7 +41073,7 @@ } }, { - "id": 2471, + "id": 2673, "name": "maxMonthlyProxySerps", "variant": "declaration", "kind": 1024, @@ -33796,7 +41083,8 @@ "fileName": "src/resource_clients/user.ts", "line": 241, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L241" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L241", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33805,7 +41093,7 @@ } }, { - "id": 2472, + "id": 2674, "name": "maxMonthlyResidentialProxyGbytes", "variant": "declaration", "kind": 1024, @@ -33815,7 +41103,8 @@ "fileName": "src/resource_clients/user.ts", "line": 242, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L242" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L242", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33824,7 +41113,7 @@ } }, { - "id": 2468, + "id": 2670, "name": "maxMonthlyUsageUsd", "variant": "declaration", "kind": 1024, @@ -33834,7 +41123,8 @@ "fileName": "src/resource_clients/user.ts", "line": 238, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L238" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L238", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33843,7 +41133,7 @@ } }, { - "id": 2477, + "id": 2679, "name": "maxTeamAccountSeatCount", "variant": "declaration", "kind": 1024, @@ -33853,7 +41143,8 @@ "fileName": "src/resource_clients/user.ts", "line": 247, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L247" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L247", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33865,7 +41156,7 @@ "groups": [ { "title": "Properties", - "children": [2478, 2474, 2473, 2475, 2476, 2469, 2470, 2471, 2472, 2468, 2477] + "children": [2680, 2676, 2675, 2677, 2678, 2671, 2672, 2673, 2674, 2670, 2679] } ], "sources": [ @@ -33873,19 +41164,80 @@ "fileName": "src/resource_clients/user.ts", "line": 237, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L237" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L237", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2448, + "id": 1484, + "name": "LogOptions", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1485, + "name": "raw", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [], + "blockTags": [ + { + "tag": "@default", + "content": [ + { + "kind": "code", + "text": "```ts\nfalse\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 76, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L76", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [1485] + } + ], + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 74, + "character": 17, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L74", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ] + }, + { + "id": 2650, "name": "MonthlyUsage", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2454, + "id": 2656, "name": "dailyServiceUsages", "variant": "declaration", "kind": 1024, @@ -33895,7 +41247,8 @@ "fileName": "src/resource_clients/user.ts", "line": 183, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L183" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L183", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -33912,7 +41265,7 @@ } }, { - "id": 2450, + "id": 2652, "name": "monthlyServiceUsage", "variant": "declaration", "kind": 1024, @@ -33922,13 +41275,14 @@ "fileName": "src/resource_clients/user.ts", "line": 182, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L182" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L182", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reflection", "declaration": { - "id": 2451, + "id": 2653, "name": "__type", "variant": "declaration", "kind": 65536, @@ -33938,12 +41292,13 @@ "fileName": "src/resource_clients/user.ts", "line": 182, "character": 25, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L182" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L182", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "indexSignatures": [ { - "id": 2452, + "id": 2654, "name": "__index", "variant": "signature", "kind": 8192, @@ -33953,12 +41308,13 @@ "fileName": "src/resource_clients/user.ts", "line": 182, "character": 27, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L182" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L182", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 2453, + "id": 2655, "name": "key", "variant": "param", "kind": 32768, @@ -33984,7 +41340,7 @@ } }, { - "id": 2456, + "id": 2658, "name": "totalUsageCreditsUsdAfterVolumeDiscount", "variant": "declaration", "kind": 1024, @@ -33994,7 +41350,8 @@ "fileName": "src/resource_clients/user.ts", "line": 185, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L185" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L185", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34003,7 +41360,7 @@ } }, { - "id": 2455, + "id": 2657, "name": "totalUsageCreditsUsdBeforeVolumeDiscount", "variant": "declaration", "kind": 1024, @@ -34013,7 +41370,8 @@ "fileName": "src/resource_clients/user.ts", "line": 184, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L184" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L184", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34022,7 +41380,7 @@ } }, { - "id": 2449, + "id": 2651, "name": "usageCycle", "variant": "declaration", "kind": 1024, @@ -34032,12 +41390,13 @@ "fileName": "src/resource_clients/user.ts", "line": 181, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L181" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L181", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2457, + "target": 2659, "name": "UsageCycle", "package": "apify-client" } @@ -34046,7 +41405,7 @@ "groups": [ { "title": "Properties", - "children": [2454, 2450, 2456, 2455, 2449] + "children": [2656, 2652, 2658, 2657, 2651] } ], "sources": [ @@ -34054,19 +41413,20 @@ "fileName": "src/resource_clients/user.ts", "line": 180, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L180" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L180", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2464, + "id": 2666, "name": "MonthlyUsageCycle", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2466, + "id": 2668, "name": "endAt", "variant": "declaration", "kind": 1024, @@ -34076,7 +41436,8 @@ "fileName": "src/resource_clients/user.ts", "line": 234, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L234" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L234", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34090,7 +41451,7 @@ } }, { - "id": 2465, + "id": 2667, "name": "startAt", "variant": "declaration", "kind": 1024, @@ -34100,7 +41461,8 @@ "fileName": "src/resource_clients/user.ts", "line": 233, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L233" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L233", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34117,7 +41479,7 @@ "groups": [ { "title": "Properties", - "children": [2466, 2465] + "children": [2668, 2667] } ], "sources": [ @@ -34125,19 +41487,20 @@ "fileName": "src/resource_clients/user.ts", "line": 232, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L232" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L232", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 909, + "id": 913, "name": "OpenApiDefinition", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 926, + "id": 930, "name": "components", "variant": "declaration", "kind": 1024, @@ -34147,20 +41510,21 @@ "fileName": "src/resource_clients/build.ts", "line": 174, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L174" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L174", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reflection", "declaration": { - "id": 927, + "id": 931, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 928, + "id": 932, "name": "schemas", "variant": "declaration", "kind": 1024, @@ -34170,13 +41534,14 @@ "fileName": "src/resource_clients/build.ts", "line": 175, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L175" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L175", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reflection", "declaration": { - "id": 929, + "id": 933, "name": "__type", "variant": "declaration", "kind": 65536, @@ -34186,12 +41551,13 @@ "fileName": "src/resource_clients/build.ts", "line": 175, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L175" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L175", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "indexSignatures": [ { - "id": 930, + "id": 934, "name": "__index", "variant": "signature", "kind": 8192, @@ -34201,12 +41567,13 @@ "fileName": "src/resource_clients/build.ts", "line": 176, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L176" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L176", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 931, + "id": 935, "name": "key", "variant": "param", "kind": 32768, @@ -34230,7 +41597,7 @@ "groups": [ { "title": "Properties", - "children": [928] + "children": [932] } ], "sources": [ @@ -34238,14 +41605,15 @@ "fileName": "src/resource_clients/build.ts", "line": 174, "character": 16, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L174" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L174", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } } }, { - "id": 911, + "id": 915, "name": "info", "variant": "declaration", "kind": 1024, @@ -34255,20 +41623,21 @@ "fileName": "src/resource_clients/build.ts", "line": 166, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L166" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L166", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reflection", "declaration": { - "id": 912, + "id": 916, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 914, + "id": 918, "name": "description", "variant": "declaration", "kind": 1024, @@ -34280,7 +41649,8 @@ "fileName": "src/resource_clients/build.ts", "line": 168, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L168" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L168", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34289,7 +41659,7 @@ } }, { - "id": 913, + "id": 917, "name": "title", "variant": "declaration", "kind": 1024, @@ -34299,7 +41669,8 @@ "fileName": "src/resource_clients/build.ts", "line": 167, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L167" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L167", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34308,7 +41679,7 @@ } }, { - "id": 915, + "id": 919, "name": "version", "variant": "declaration", "kind": 1024, @@ -34320,7 +41691,8 @@ "fileName": "src/resource_clients/build.ts", "line": 169, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L169" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L169", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34329,7 +41701,7 @@ } }, { - "id": 916, + "id": 920, "name": "x-build-id", "variant": "declaration", "kind": 1024, @@ -34339,7 +41711,8 @@ "fileName": "src/resource_clients/build.ts", "line": 170, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L170" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L170", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34351,7 +41724,7 @@ "groups": [ { "title": "Properties", - "children": [914, 913, 915, 916] + "children": [918, 917, 919, 920] } ], "sources": [ @@ -34359,14 +41732,15 @@ "fileName": "src/resource_clients/build.ts", "line": 166, "character": 10, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L166" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L166", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } } }, { - "id": 910, + "id": 914, "name": "openapi", "variant": "declaration", "kind": 1024, @@ -34376,7 +41750,8 @@ "fileName": "src/resource_clients/build.ts", "line": 165, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L165" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L165", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34385,7 +41760,7 @@ } }, { - "id": 920, + "id": 924, "name": "paths", "variant": "declaration", "kind": 1024, @@ -34395,13 +41770,14 @@ "fileName": "src/resource_clients/build.ts", "line": 173, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L173" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L173", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reflection", "declaration": { - "id": 921, + "id": 925, "name": "__type", "variant": "declaration", "kind": 65536, @@ -34411,12 +41787,13 @@ "fileName": "src/resource_clients/build.ts", "line": 173, "character": 11, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L173" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L173", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "indexSignatures": [ { - "id": 922, + "id": 926, "name": "__index", "variant": "signature", "kind": 8192, @@ -34426,12 +41803,13 @@ "fileName": "src/resource_clients/build.ts", "line": 173, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L173" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L173", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "parameters": [ { - "id": 923, + "id": 927, "name": "key", "variant": "param", "kind": 32768, @@ -34445,14 +41823,14 @@ "type": { "type": "reflection", "declaration": { - "id": 924, + "id": 928, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 925, + "id": 929, "name": "post", "variant": "declaration", "kind": 1024, @@ -34462,7 +41840,8 @@ "fileName": "src/resource_clients/build.ts", "line": 173, "character": 30, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L173" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L173", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34479,7 +41858,7 @@ "groups": [ { "title": "Properties", - "children": [925] + "children": [929] } ], "sources": [ @@ -34487,7 +41866,8 @@ "fileName": "src/resource_clients/build.ts", "line": 173, "character": 28, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L173" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L173", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } @@ -34498,7 +41878,7 @@ } }, { - "id": 917, + "id": 921, "name": "servers", "variant": "declaration", "kind": 1024, @@ -34508,7 +41888,8 @@ "fileName": "src/resource_clients/build.ts", "line": 172, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L172" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L172", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34516,14 +41897,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 918, + "id": 922, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 919, + "id": 923, "name": "url", "variant": "declaration", "kind": 1024, @@ -34533,7 +41914,8 @@ "fileName": "src/resource_clients/build.ts", "line": 172, "character": 15, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L172" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L172", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34545,7 +41927,7 @@ "groups": [ { "title": "Properties", - "children": [919] + "children": [923] } ], "sources": [ @@ -34553,7 +41935,8 @@ "fileName": "src/resource_clients/build.ts", "line": 172, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L172" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L172", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } @@ -34564,7 +41947,7 @@ "groups": [ { "title": "Properties", - "children": [926, 911, 910, 920, 917] + "children": [930, 915, 914, 924, 921] } ], "sources": [ @@ -34572,7 +41955,8 @@ "fileName": "src/resource_clients/build.ts", "line": 164, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build.ts#L164" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build.ts#L164", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, @@ -34600,9 +41984,10 @@ "sources": [ { "fileName": "src/utils.ts", - "line": 237, + "line": 240, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/utils.ts#L237" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/utils.ts#L240", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34627,9 +42012,10 @@ "sources": [ { "fileName": "src/utils.ts", - "line": 243, + "line": 246, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/utils.ts#L243" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/utils.ts#L246", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34654,9 +42040,10 @@ "sources": [ { "fileName": "src/utils.ts", - "line": 245, + "line": 248, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/utils.ts#L245" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/utils.ts#L248", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34688,9 +42075,10 @@ "sources": [ { "fileName": "src/utils.ts", - "line": 241, + "line": 244, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/utils.ts#L241" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/utils.ts#L244", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34715,9 +42103,10 @@ "sources": [ { "fileName": "src/utils.ts", - "line": 239, + "line": 242, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/utils.ts#L239" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/utils.ts#L242", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34742,9 +42131,10 @@ "sources": [ { "fileName": "src/utils.ts", - "line": 235, + "line": 238, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/utils.ts#L235" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/utils.ts#L238", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34762,9 +42152,10 @@ "sources": [ { "fileName": "src/utils.ts", - "line": 233, + "line": 236, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/utils.ts#L233" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/utils.ts#L236", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "typeParameters": [ @@ -34778,14 +42169,14 @@ ] }, { - "id": 411, + "id": 415, "name": "PricePerDatasetItemActorPricingInfo", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 415, + "id": 419, "name": "apifyMarginPercentage", "variant": "declaration", "kind": 1024, @@ -34803,9 +42194,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 543, + "line": 574, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L543" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L574", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34819,7 +42211,7 @@ } }, { - "id": 416, + "id": 420, "name": "createdAt", "variant": "declaration", "kind": 1024, @@ -34837,9 +42229,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 545, + "line": 576, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L545" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L576", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34858,7 +42251,7 @@ } }, { - "id": 419, + "id": 423, "name": "notifiedAboutChangeAt", "variant": "declaration", "kind": 1024, @@ -34869,9 +42262,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 549, + "line": 580, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L549" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L580", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34890,7 +42284,7 @@ } }, { - "id": 418, + "id": 422, "name": "notifiedAboutFutureChangeAt", "variant": "declaration", "kind": 1024, @@ -34901,9 +42295,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 548, + "line": 579, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L548" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L579", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34922,7 +42317,7 @@ } }, { - "id": 414, + "id": 418, "name": "pricePerUnitUsd", "variant": "declaration", "kind": 1024, @@ -34930,9 +42325,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 569, + "line": 600, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L569" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L600", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34941,7 +42337,7 @@ } }, { - "id": 412, + "id": 416, "name": "pricingModel", "variant": "declaration", "kind": 1024, @@ -34949,9 +42345,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 566, + "line": 597, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L566" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L597", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34960,7 +42357,7 @@ } }, { - "id": 420, + "id": 424, "name": "reasonForChange", "variant": "declaration", "kind": 1024, @@ -34971,9 +42368,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 550, + "line": 581, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L550" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L581", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -34987,7 +42385,7 @@ } }, { - "id": 417, + "id": 421, "name": "startedAt", "variant": "declaration", "kind": 1024, @@ -35005,9 +42403,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 547, + "line": 578, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L547" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L578", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35026,7 +42425,7 @@ } }, { - "id": 413, + "id": 417, "name": "unitName", "variant": "declaration", "kind": 1024, @@ -35044,9 +42443,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 568, + "line": 599, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L568" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L599", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35058,15 +42458,16 @@ "groups": [ { "title": "Properties", - "children": [415, 416, 419, 418, 414, 412, 420, 417, 413] + "children": [419, 420, 423, 422, 418, 416, 424, 421, 417] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 565, + "line": 596, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L565" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L596", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -35082,14 +42483,14 @@ ] }, { - "id": 426, + "id": 430, "name": "PricePerEventActorPricingInfo", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 432, + "id": 436, "name": "apifyMarginPercentage", "variant": "declaration", "kind": 1024, @@ -35107,9 +42508,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 543, + "line": 574, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L543" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L574", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35123,7 +42525,7 @@ } }, { - "id": 433, + "id": 437, "name": "createdAt", "variant": "declaration", "kind": 1024, @@ -35141,9 +42543,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 545, + "line": 576, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L545" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L576", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35162,7 +42565,7 @@ } }, { - "id": 431, + "id": 435, "name": "minimalMaxTotalChargeUsd", "variant": "declaration", "kind": 1024, @@ -35172,9 +42575,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 585, + "line": 616, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L585" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L616", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35183,7 +42587,7 @@ } }, { - "id": 436, + "id": 440, "name": "notifiedAboutChangeAt", "variant": "declaration", "kind": 1024, @@ -35194,9 +42598,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 549, + "line": 580, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L549" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L580", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35215,7 +42620,7 @@ } }, { - "id": 435, + "id": 439, "name": "notifiedAboutFutureChangeAt", "variant": "declaration", "kind": 1024, @@ -35226,9 +42631,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 548, + "line": 579, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L548" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L579", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35247,7 +42653,7 @@ } }, { - "id": 427, + "id": 431, "name": "pricingModel", "variant": "declaration", "kind": 1024, @@ -35255,9 +42661,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 581, + "line": 612, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L581" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L612", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35266,7 +42673,7 @@ } }, { - "id": 428, + "id": 432, "name": "pricingPerEvent", "variant": "declaration", "kind": 1024, @@ -35274,22 +42681,23 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 582, + "line": 613, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L582" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L613", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reflection", "declaration": { - "id": 429, + "id": 433, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 430, + "id": 434, "name": "actorChargeEvents", "variant": "declaration", "kind": 1024, @@ -35297,14 +42705,15 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 583, + "line": 614, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L583" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L614", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 425, + "target": 429, "name": "ActorChargeEvents", "package": "apify-client" } @@ -35313,22 +42722,23 @@ "groups": [ { "title": "Properties", - "children": [430] + "children": [434] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 582, + "line": 613, "character": 21, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L582" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L613", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } } }, { - "id": 437, + "id": 441, "name": "reasonForChange", "variant": "declaration", "kind": 1024, @@ -35339,9 +42749,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 550, + "line": 581, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L550" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L581", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35355,7 +42766,7 @@ } }, { - "id": 434, + "id": 438, "name": "startedAt", "variant": "declaration", "kind": 1024, @@ -35373,9 +42784,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 547, + "line": 578, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L547" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L578", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35397,15 +42809,16 @@ "groups": [ { "title": "Properties", - "children": [432, 433, 431, 436, 435, 427, 428, 437, 434] + "children": [436, 437, 435, 440, 439, 431, 432, 441, 438] } ], "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 580, + "line": 611, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L580" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L611", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -35421,14 +42834,14 @@ ] }, { - "id": 2138, + "id": 2339, "name": "PricingInfo", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2139, + "id": 2340, "name": "pricingModel", "variant": "declaration", "kind": 1024, @@ -35438,7 +42851,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 41, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L41" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L41", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35450,7 +42864,7 @@ "groups": [ { "title": "Properties", - "children": [2139] + "children": [2340] } ], "sources": [ @@ -35458,19 +42872,20 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 40, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L40" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L40", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2415, + "id": 2617, "name": "ProxyGroup", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2418, + "id": 2620, "name": "availableCount", "variant": "declaration", "kind": 1024, @@ -35480,7 +42895,8 @@ "fileName": "src/resource_clients/user.ts", "line": 119, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L119" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L119", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35489,7 +42905,7 @@ } }, { - "id": 2417, + "id": 2619, "name": "description", "variant": "declaration", "kind": 1024, @@ -35499,7 +42915,8 @@ "fileName": "src/resource_clients/user.ts", "line": 118, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L118" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L118", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35508,7 +42925,7 @@ } }, { - "id": 2416, + "id": 2618, "name": "name", "variant": "declaration", "kind": 1024, @@ -35518,7 +42935,8 @@ "fileName": "src/resource_clients/user.ts", "line": 117, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L117" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L117", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35530,7 +42948,7 @@ "groups": [ { "title": "Properties", - "children": [2418, 2417, 2416] + "children": [2620, 2619, 2618] } ], "sources": [ @@ -35538,19 +42956,20 @@ "fileName": "src/resource_clients/user.ts", "line": 116, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L116" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L116", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1593, + "id": 1788, "name": "RequestQueue", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1600, + "id": 1795, "name": "accessedAt", "variant": "declaration", "kind": 1024, @@ -35560,7 +42979,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 563, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L563" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L563", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35574,7 +42994,7 @@ } }, { - "id": 1605, + "id": 1800, "name": "actId", "variant": "declaration", "kind": 1024, @@ -35586,7 +43006,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 568, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L568" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L568", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35595,7 +43016,7 @@ } }, { - "id": 1606, + "id": 1801, "name": "actRunId", "variant": "declaration", "kind": 1024, @@ -35607,7 +43028,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 569, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L569" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L569", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35616,7 +43038,7 @@ } }, { - "id": 1598, + "id": 1793, "name": "createdAt", "variant": "declaration", "kind": 1024, @@ -35626,7 +43048,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 561, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L561" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L561", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35640,7 +43063,7 @@ } }, { - "id": 1601, + "id": 1796, "name": "expireAt", "variant": "declaration", "kind": 1024, @@ -35652,7 +43075,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 564, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L564" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L564", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35661,7 +43085,7 @@ } }, { - "id": 1609, + "id": 1804, "name": "generalAccess", "variant": "declaration", "kind": 1024, @@ -35673,7 +43097,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 572, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L572" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L572", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35696,7 +43121,7 @@ } }, { - "id": 1607, + "id": 1802, "name": "hadMultipleClients", "variant": "declaration", "kind": 1024, @@ -35706,7 +43131,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 570, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L570" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L570", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35715,7 +43141,7 @@ } }, { - "id": 1603, + "id": 1798, "name": "handledRequestCount", "variant": "declaration", "kind": 1024, @@ -35725,7 +43151,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 566, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L566" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L566", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35734,7 +43161,7 @@ } }, { - "id": 1594, + "id": 1789, "name": "id", "variant": "declaration", "kind": 1024, @@ -35744,7 +43171,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 557, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L557" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L557", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35753,7 +43181,7 @@ } }, { - "id": 1599, + "id": 1794, "name": "modifiedAt", "variant": "declaration", "kind": 1024, @@ -35763,7 +43191,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 562, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L562" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L562", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35777,7 +43206,7 @@ } }, { - "id": 1595, + "id": 1790, "name": "name", "variant": "declaration", "kind": 1024, @@ -35789,7 +43218,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 558, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L558" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L558", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35798,7 +43228,7 @@ } }, { - "id": 1604, + "id": 1799, "name": "pendingRequestCount", "variant": "declaration", "kind": 1024, @@ -35808,7 +43238,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 567, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L567" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L567", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35817,7 +43248,7 @@ } }, { - "id": 1608, + "id": 1803, "name": "stats", "variant": "declaration", "kind": 1024, @@ -35827,18 +43258,19 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 571, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L571" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L571", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1610, + "target": 1805, "name": "RequestQueueStats", "package": "apify-client" } }, { - "id": 1596, + "id": 1791, "name": "title", "variant": "declaration", "kind": 1024, @@ -35850,7 +43282,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 559, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L559" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L559", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35859,7 +43292,7 @@ } }, { - "id": 1602, + "id": 1797, "name": "totalRequestCount", "variant": "declaration", "kind": 1024, @@ -35869,7 +43302,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 565, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L565" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L565", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35878,7 +43312,7 @@ } }, { - "id": 1597, + "id": 1792, "name": "userId", "variant": "declaration", "kind": 1024, @@ -35888,7 +43322,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 560, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L560" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L560", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35901,7 +43336,7 @@ { "title": "Properties", "children": [ - 1600, 1605, 1606, 1598, 1601, 1609, 1607, 1603, 1594, 1599, 1595, 1604, 1608, 1596, 1602, 1597 + 1795, 1800, 1801, 1793, 1796, 1804, 1802, 1798, 1789, 1794, 1790, 1799, 1803, 1791, 1797, 1792 ] } ], @@ -35910,19 +43345,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 556, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L556" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L556", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1656, + "id": 1851, "name": "RequestQueueClientAddRequestOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1657, + "id": 1852, "name": "forefront", "variant": "declaration", "kind": 1024, @@ -35934,7 +43370,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 638, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L638" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L638", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35946,7 +43383,7 @@ "groups": [ { "title": "Properties", - "children": [1657] + "children": [1852] } ], "sources": [ @@ -35954,19 +43391,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 637, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L637" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L637", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1683, + "id": 1878, "name": "RequestQueueClientAddRequestResult", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1684, + "id": 1879, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -35976,7 +43414,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 677, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L677" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L677", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -35985,7 +43424,7 @@ } }, { - "id": 1686, + "id": 1881, "name": "wasAlreadyHandled", "variant": "declaration", "kind": 1024, @@ -35995,7 +43434,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 679, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L679" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L679", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36004,7 +43444,7 @@ } }, { - "id": 1685, + "id": 1880, "name": "wasAlreadyPresent", "variant": "declaration", "kind": 1024, @@ -36014,7 +43454,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 678, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L678" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L678", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36026,7 +43467,7 @@ "groups": [ { "title": "Properties", - "children": [1684, 1686, 1685] + "children": [1879, 1881, 1880] } ], "sources": [ @@ -36034,19 +43475,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 676, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L676" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L676", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1665, + "id": 1860, "name": "RequestQueueClientBatchAddRequestWithRetriesOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1666, + "id": 1861, "name": "forefront", "variant": "declaration", "kind": 1024, @@ -36058,7 +43500,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 655, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L655" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L655", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36067,7 +43510,7 @@ } }, { - "id": 1668, + "id": 1863, "name": "maxParallel", "variant": "declaration", "kind": 1024, @@ -36079,7 +43522,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 657, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L657" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L657", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36088,7 +43532,7 @@ } }, { - "id": 1667, + "id": 1862, "name": "maxUnprocessedRequestsRetries", "variant": "declaration", "kind": 1024, @@ -36100,7 +43544,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 656, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L656" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L656", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36109,7 +43554,7 @@ } }, { - "id": 1669, + "id": 1864, "name": "minDelayBetweenUnprocessedRequestsRetriesMillis", "variant": "declaration", "kind": 1024, @@ -36121,7 +43566,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 658, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L658" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L658", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36133,7 +43579,7 @@ "groups": [ { "title": "Properties", - "children": [1666, 1668, 1667, 1669] + "children": [1861, 1863, 1862, 1864] } ], "sources": [ @@ -36141,19 +43587,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 654, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L654" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L654", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1689, + "id": 1884, "name": "RequestQueueClientBatchRequestsOperationResult", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1690, + "id": 1885, "name": "processedRequests", "variant": "declaration", "kind": 1024, @@ -36163,7 +43610,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 700, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L700" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L700", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36180,7 +43628,7 @@ } }, { - "id": 1691, + "id": 1886, "name": "unprocessedRequests", "variant": "declaration", "kind": 1024, @@ -36190,7 +43638,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 701, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L701" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L701", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36210,7 +43659,7 @@ "groups": [ { "title": "Properties", - "children": [1690, 1691] + "children": [1885, 1886] } ], "sources": [ @@ -36218,19 +43667,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 699, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L699" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L699", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1661, + "id": 1856, "name": "RequestQueueClientDeleteRequestLockOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1662, + "id": 1857, "name": "forefront", "variant": "declaration", "kind": 1024, @@ -36242,7 +43692,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 647, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L647" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L647", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36254,7 +43705,7 @@ "groups": [ { "title": "Properties", - "children": [1662] + "children": [1857] } ], "sources": [ @@ -36262,19 +43713,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 646, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L646" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L646", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1638, + "id": 1833, "name": "RequestQueueClientListAndLockHeadOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1640, + "id": 1835, "name": "limit", "variant": "declaration", "kind": 1024, @@ -36286,7 +43738,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 619, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L619" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L619", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36295,7 +43748,7 @@ } }, { - "id": 1639, + "id": 1834, "name": "lockSecs", "variant": "declaration", "kind": 1024, @@ -36305,7 +43758,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 618, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L618" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L618", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36317,7 +43771,7 @@ "groups": [ { "title": "Properties", - "children": [1640, 1639] + "children": [1835, 1834] } ], "sources": [ @@ -36325,19 +43779,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 617, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L617" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L617", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1641, + "id": 1836, "name": "RequestQueueClientListAndLockHeadResult", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1644, + "id": 1839, "name": "clientKey", "variant": "declaration", "kind": 1024, @@ -36347,7 +43802,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 625, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L625" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L625", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36356,7 +43812,7 @@ } }, { - "id": 1647, + "id": 1842, "name": "hadMultipleClients", "variant": "declaration", "kind": 1024, @@ -36368,7 +43824,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 596, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L596" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L596", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36377,12 +43834,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1625, + "target": 1820, "name": "RequestQueueClientListHeadResult.hadMultipleClients" } }, { - "id": 1648, + "id": 1843, "name": "items", "variant": "declaration", "kind": 1024, @@ -36394,26 +43851,27 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 597, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L597" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L597", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 1649, + "target": 1844, "name": "RequestQueueClientListItem", "package": "apify-client" } }, "inheritedFrom": { "type": "reference", - "target": 1626, + "target": 1821, "name": "RequestQueueClientListHeadResult.items" } }, { - "id": 1645, + "id": 1840, "name": "limit", "variant": "declaration", "kind": 1024, @@ -36425,7 +43883,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 594, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L594" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L594", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36434,12 +43893,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1623, + "target": 1818, "name": "RequestQueueClientListHeadResult.limit" } }, { - "id": 1642, + "id": 1837, "name": "lockSecs", "variant": "declaration", "kind": 1024, @@ -36449,7 +43908,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 623, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L623" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L623", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36458,7 +43918,7 @@ } }, { - "id": 1643, + "id": 1838, "name": "queueHasLockedRequests", "variant": "declaration", "kind": 1024, @@ -36468,7 +43928,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 624, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L624" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L624", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36477,7 +43938,7 @@ } }, { - "id": 1646, + "id": 1841, "name": "queueModifiedAt", "variant": "declaration", "kind": 1024, @@ -36489,7 +43950,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 595, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L595" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L595", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36503,7 +43965,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 1624, + "target": 1819, "name": "RequestQueueClientListHeadResult.queueModifiedAt" } } @@ -36511,7 +43973,7 @@ "groups": [ { "title": "Properties", - "children": [1644, 1647, 1648, 1645, 1642, 1643, 1646] + "children": [1839, 1842, 1843, 1840, 1837, 1838, 1841] } ], "sources": [ @@ -36519,27 +43981,28 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 622, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L622" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L622", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ { "type": "reference", - "target": 1622, + "target": 1817, "name": "RequestQueueClientListHeadResult", "package": "apify-client" } ] }, { - "id": 1620, + "id": 1815, "name": "RequestQueueClientListHeadOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1621, + "id": 1816, "name": "limit", "variant": "declaration", "kind": 1024, @@ -36551,7 +44014,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 590, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L590" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L590", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36563,7 +44027,7 @@ "groups": [ { "title": "Properties", - "children": [1621] + "children": [1816] } ], "sources": [ @@ -36571,19 +44035,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 589, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L589" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L589", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1622, + "id": 1817, "name": "RequestQueueClientListHeadResult", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1625, + "id": 1820, "name": "hadMultipleClients", "variant": "declaration", "kind": 1024, @@ -36593,7 +44058,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 596, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L596" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L596", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36602,7 +44068,7 @@ } }, { - "id": 1626, + "id": 1821, "name": "items", "variant": "declaration", "kind": 1024, @@ -36612,21 +44078,22 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 597, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L597" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L597", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 1649, + "target": 1844, "name": "RequestQueueClientListItem", "package": "apify-client" } } }, { - "id": 1623, + "id": 1818, "name": "limit", "variant": "declaration", "kind": 1024, @@ -36636,7 +44103,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 594, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L594" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L594", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36645,7 +44113,7 @@ } }, { - "id": 1624, + "id": 1819, "name": "queueModifiedAt", "variant": "declaration", "kind": 1024, @@ -36655,7 +44123,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 595, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L595" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L595", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36672,7 +44141,7 @@ "groups": [ { "title": "Properties", - "children": [1625, 1626, 1623, 1624] + "children": [1820, 1821, 1818, 1819] } ], "sources": [ @@ -36680,26 +44149,27 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 593, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L593" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L593", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedBy": [ { "type": "reference", - "target": 1641, + "target": 1836, "name": "RequestQueueClientListAndLockHeadResult" } ] }, { - "id": 1649, + "id": 1844, "name": "RequestQueueClientListItem", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1650, + "id": 1845, "name": "id", "variant": "declaration", "kind": 1024, @@ -36709,7 +44179,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 629, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L629" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L629", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36718,7 +44189,7 @@ } }, { - "id": 1655, + "id": 1850, "name": "lockExpiresAt", "variant": "declaration", "kind": 1024, @@ -36730,7 +44201,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 634, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L634" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L634", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36744,7 +44216,7 @@ } }, { - "id": 1654, + "id": 1849, "name": "method", "variant": "declaration", "kind": 1024, @@ -36754,18 +44226,19 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 633, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L633" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L633", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1694, + "target": 1889, "name": "AllowedHttpMethods", "package": "apify-client" } }, { - "id": 1651, + "id": 1846, "name": "retryCount", "variant": "declaration", "kind": 1024, @@ -36775,7 +44248,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 630, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L630" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L630", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36784,7 +44258,7 @@ } }, { - "id": 1652, + "id": 1847, "name": "uniqueKey", "variant": "declaration", "kind": 1024, @@ -36794,7 +44268,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 631, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L631" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L631", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36803,7 +44278,7 @@ } }, { - "id": 1653, + "id": 1848, "name": "url", "variant": "declaration", "kind": 1024, @@ -36813,7 +44288,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 632, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L632" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L632", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36825,7 +44301,7 @@ "groups": [ { "title": "Properties", - "children": [1650, 1655, 1654, 1651, 1652, 1653] + "children": [1845, 1850, 1849, 1846, 1847, 1848] } ], "sources": [ @@ -36833,19 +44309,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 628, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L628" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L628", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1627, + "id": 1822, "name": "RequestQueueClientListRequestsOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1629, + "id": 1824, "name": "exclusiveStartId", "variant": "declaration", "kind": 1024, @@ -36857,7 +44334,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 602, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L602" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L602", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36866,7 +44344,7 @@ } }, { - "id": 1628, + "id": 1823, "name": "limit", "variant": "declaration", "kind": 1024, @@ -36878,7 +44356,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 601, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L601" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L601", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36890,7 +44369,7 @@ "groups": [ { "title": "Properties", - "children": [1629, 1628] + "children": [1824, 1823] } ], "sources": [ @@ -36898,19 +44377,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 600, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L600" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L600", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1634, + "id": 1829, "name": "RequestQueueClientListRequestsResult", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1636, + "id": 1831, "name": "exclusiveStartId", "variant": "declaration", "kind": 1024, @@ -36922,7 +44402,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 613, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L613" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L613", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36931,7 +44412,7 @@ } }, { - "id": 1637, + "id": 1832, "name": "items", "variant": "declaration", "kind": 1024, @@ -36941,21 +44422,22 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 614, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L614" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L614", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 1670, + "target": 1865, "name": "RequestQueueClientRequestSchema", "package": "apify-client" } } }, { - "id": 1635, + "id": 1830, "name": "limit", "variant": "declaration", "kind": 1024, @@ -36965,7 +44447,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 612, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L612" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L612", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -36977,7 +44460,7 @@ "groups": [ { "title": "Properties", - "children": [1636, 1637, 1635] + "children": [1831, 1832, 1830] } ], "sources": [ @@ -36985,19 +44468,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 611, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L611" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L611", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1630, + "id": 1825, "name": "RequestQueueClientPaginateRequestsOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1633, + "id": 1828, "name": "exclusiveStartId", "variant": "declaration", "kind": 1024, @@ -37009,7 +44493,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 608, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L608" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L608", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37018,7 +44503,7 @@ } }, { - "id": 1631, + "id": 1826, "name": "limit", "variant": "declaration", "kind": 1024, @@ -37030,7 +44515,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 606, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L606" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L606", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37039,7 +44525,7 @@ } }, { - "id": 1632, + "id": 1827, "name": "maxPageLimit", "variant": "declaration", "kind": 1024, @@ -37051,7 +44537,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 607, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L607" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L607", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37063,7 +44550,7 @@ "groups": [ { "title": "Properties", - "children": [1633, 1631, 1632] + "children": [1828, 1826, 1827] } ], "sources": [ @@ -37071,19 +44558,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 605, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L605" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L605", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1658, + "id": 1853, "name": "RequestQueueClientProlongRequestLockOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1659, + "id": 1854, "name": "forefront", "variant": "declaration", "kind": 1024, @@ -37095,7 +44583,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 642, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L642" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L642", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37104,7 +44593,7 @@ } }, { - "id": 1660, + "id": 1855, "name": "lockSecs", "variant": "declaration", "kind": 1024, @@ -37114,7 +44603,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 643, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L643" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L643", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37126,7 +44616,7 @@ "groups": [ { "title": "Properties", - "children": [1659, 1660] + "children": [1854, 1855] } ], "sources": [ @@ -37134,19 +44624,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 641, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L641" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L641", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1663, + "id": 1858, "name": "RequestQueueClientProlongRequestLockResult", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1664, + "id": 1859, "name": "lockExpiresAt", "variant": "declaration", "kind": 1024, @@ -37156,7 +44647,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 651, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L651" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L651", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37173,7 +44665,7 @@ "groups": [ { "title": "Properties", - "children": [1664] + "children": [1859] } ], "sources": [ @@ -37181,19 +44673,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 650, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L650" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L650", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1670, + "id": 1865, "name": "RequestQueueClientRequestSchema", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1677, + "id": 1872, "name": "errorMessages", "variant": "declaration", "kind": 1024, @@ -37205,7 +44698,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 668, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L668" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L668", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37217,7 +44711,7 @@ } }, { - "id": 1680, + "id": 1875, "name": "handledAt", "variant": "declaration", "kind": 1024, @@ -37229,7 +44723,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 671, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L671" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L671", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37238,7 +44733,7 @@ } }, { - "id": 1678, + "id": 1873, "name": "headers", "variant": "declaration", "kind": 1024, @@ -37250,7 +44745,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 669, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L669" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L669", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37274,7 +44770,7 @@ } }, { - "id": 1671, + "id": 1866, "name": "id", "variant": "declaration", "kind": 1024, @@ -37284,7 +44780,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 662, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L662" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L662", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37293,7 +44790,7 @@ } }, { - "id": 1682, + "id": 1877, "name": "loadedUrl", "variant": "declaration", "kind": 1024, @@ -37305,7 +44802,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 673, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L673" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L673", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37314,7 +44812,7 @@ } }, { - "id": 1674, + "id": 1869, "name": "method", "variant": "declaration", "kind": 1024, @@ -37326,18 +44824,19 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 665, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L665" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L665", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 1694, + "target": 1889, "name": "AllowedHttpMethods", "package": "apify-client" } }, { - "id": 1681, + "id": 1876, "name": "noRetry", "variant": "declaration", "kind": 1024, @@ -37349,7 +44848,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 672, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L672" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L672", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37358,7 +44858,7 @@ } }, { - "id": 1675, + "id": 1870, "name": "payload", "variant": "declaration", "kind": 1024, @@ -37370,7 +44870,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 666, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L666" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L666", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37379,7 +44880,7 @@ } }, { - "id": 1676, + "id": 1871, "name": "retryCount", "variant": "declaration", "kind": 1024, @@ -37391,7 +44892,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 667, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L667" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L667", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37400,7 +44902,7 @@ } }, { - "id": 1672, + "id": 1867, "name": "uniqueKey", "variant": "declaration", "kind": 1024, @@ -37410,7 +44912,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 663, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L663" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L663", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37419,7 +44922,7 @@ } }, { - "id": 1673, + "id": 1868, "name": "url", "variant": "declaration", "kind": 1024, @@ -37429,7 +44932,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 664, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L664" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L664", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37438,7 +44942,7 @@ } }, { - "id": 1679, + "id": 1874, "name": "userData", "variant": "declaration", "kind": 1024, @@ -37450,7 +44954,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 670, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L670" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L670", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37477,7 +44982,7 @@ "groups": [ { "title": "Properties", - "children": [1677, 1680, 1678, 1671, 1682, 1674, 1681, 1675, 1676, 1672, 1673, 1679] + "children": [1872, 1875, 1873, 1866, 1877, 1869, 1876, 1870, 1871, 1867, 1868, 1874] } ], "sources": [ @@ -37485,19 +44990,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 661, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L661" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L661", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1687, + "id": 1882, "name": "RequestQueueClientUnlockRequestsResult", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1688, + "id": 1883, "name": "unlockedCount", "variant": "declaration", "kind": 1024, @@ -37507,7 +45013,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 696, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L696" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L696", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37519,7 +45026,7 @@ "groups": [ { "title": "Properties", - "children": [1688] + "children": [1883] } ], "sources": [ @@ -37527,19 +45034,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 695, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L695" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L695", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1616, + "id": 1811, "name": "RequestQueueClientUpdateOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1619, + "id": 1814, "name": "generalAccess", "variant": "declaration", "kind": 1024, @@ -37551,7 +45059,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 586, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L586" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L586", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37574,7 +45083,7 @@ } }, { - "id": 1617, + "id": 1812, "name": "name", "variant": "declaration", "kind": 1024, @@ -37586,7 +45095,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 584, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L584" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L584", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37604,7 +45114,7 @@ } }, { - "id": 1618, + "id": 1813, "name": "title", "variant": "declaration", "kind": 1024, @@ -37616,7 +45126,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 585, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L585" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L585", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37628,7 +45139,7 @@ "groups": [ { "title": "Properties", - "children": [1619, 1617, 1618] + "children": [1814, 1812, 1813] } ], "sources": [ @@ -37636,19 +45147,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 583, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L583" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L583", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1749, + "id": 1944, "name": "RequestQueueCollectionListOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1753, + "id": 1948, "name": "desc", "variant": "declaration", "kind": 1024, @@ -37660,7 +45172,8 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 50, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L50" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L50", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37669,7 +45182,7 @@ } }, { - "id": 1751, + "id": 1946, "name": "limit", "variant": "declaration", "kind": 1024, @@ -37681,7 +45194,8 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 48, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L48" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L48", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37690,7 +45204,7 @@ } }, { - "id": 1752, + "id": 1947, "name": "offset", "variant": "declaration", "kind": 1024, @@ -37702,7 +45216,8 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 49, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L49" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L49", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37711,7 +45226,7 @@ } }, { - "id": 1750, + "id": 1945, "name": "unnamed", "variant": "declaration", "kind": 1024, @@ -37723,7 +45238,8 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 47, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L47" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L47", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37735,7 +45251,7 @@ "groups": [ { "title": "Properties", - "children": [1753, 1751, 1752, 1750] + "children": [1948, 1946, 1947, 1945] } ], "sources": [ @@ -37743,19 +45259,20 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 46, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L46" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L46", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1610, + "id": 1805, "name": "RequestQueueStats", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1613, + "id": 1808, "name": "deleteCount", "variant": "declaration", "kind": 1024, @@ -37767,7 +45284,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 578, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L578" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L578", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37776,7 +45294,7 @@ } }, { - "id": 1614, + "id": 1809, "name": "headItemReadCount", "variant": "declaration", "kind": 1024, @@ -37788,7 +45306,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 579, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L579" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L579", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37797,7 +45316,7 @@ } }, { - "id": 1611, + "id": 1806, "name": "readCount", "variant": "declaration", "kind": 1024, @@ -37809,7 +45328,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 576, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L576" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L576", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37818,7 +45338,7 @@ } }, { - "id": 1615, + "id": 1810, "name": "storageBytes", "variant": "declaration", "kind": 1024, @@ -37830,7 +45350,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 580, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L580" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L580", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37839,7 +45360,7 @@ } }, { - "id": 1612, + "id": 1807, "name": "writeCount", "variant": "declaration", "kind": 1024, @@ -37851,7 +45372,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 577, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L577" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L577", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37863,7 +45385,7 @@ "groups": [ { "title": "Properties", - "children": [1613, 1614, 1611, 1615, 1612] + "children": [1808, 1809, 1806, 1810, 1807] } ], "sources": [ @@ -37871,19 +45393,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 575, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L575" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L575", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1590, + "id": 1785, "name": "RequestQueueUserOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1591, + "id": 1786, "name": "clientKey", "variant": "declaration", "kind": 1024, @@ -37895,7 +45418,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 552, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L552" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L552", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37904,7 +45428,7 @@ } }, { - "id": 1592, + "id": 1787, "name": "timeoutSecs", "variant": "declaration", "kind": 1024, @@ -37916,7 +45440,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 553, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L553" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L553", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37928,7 +45453,7 @@ "groups": [ { "title": "Properties", - "children": [1591, 1592] + "children": [1786, 1787] } ], "sources": [ @@ -37936,19 +45461,20 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 551, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L551" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L551", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1847, + "id": 2048, "name": "RunAbortOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1848, + "id": 2049, "name": "gracefully", "variant": "declaration", "kind": 1024, @@ -37958,9 +45484,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 276, + "line": 310, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L276" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L310", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -37972,27 +45499,28 @@ "groups": [ { "title": "Properties", - "children": [1848] + "children": [2049] } ], "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 275, + "line": 309, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L275" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L309", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1863, + "id": 2064, "name": "RunChargeOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1865, + "id": 2066, "name": "count", "variant": "declaration", "kind": 1024, @@ -38010,9 +45538,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 302, + "line": 336, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L302" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L336", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38021,7 +45550,7 @@ } }, { - "id": 1864, + "id": 2065, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -38037,9 +45566,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 300, + "line": 334, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L300" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L334", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38048,7 +45578,7 @@ } }, { - "id": 1866, + "id": 2067, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -38066,9 +45596,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 304, + "line": 338, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L304" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L338", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38080,27 +45611,28 @@ "groups": [ { "title": "Properties", - "children": [1865, 1864, 1866] + "children": [2066, 2065, 2067] } ], "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 298, + "line": 332, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L298" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L332", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1918, + "id": 2119, "name": "RunCollectionListOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1921, + "id": 2122, "name": "desc", "variant": "declaration", "kind": 1024, @@ -38112,7 +45644,8 @@ "fileName": "src/resource_clients/run_collection.ts", "line": 47, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run_collection.ts#L47" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run_collection.ts#L47", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38121,7 +45654,7 @@ } }, { - "id": 1919, + "id": 2120, "name": "limit", "variant": "declaration", "kind": 1024, @@ -38133,7 +45666,8 @@ "fileName": "src/resource_clients/run_collection.ts", "line": 45, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run_collection.ts#L45" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run_collection.ts#L45", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38142,7 +45676,7 @@ } }, { - "id": 1920, + "id": 2121, "name": "offset", "variant": "declaration", "kind": 1024, @@ -38154,7 +45688,8 @@ "fileName": "src/resource_clients/run_collection.ts", "line": 46, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run_collection.ts#L46" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run_collection.ts#L46", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38163,7 +45698,7 @@ } }, { - "id": 1924, + "id": 2125, "name": "startedAfter", "variant": "declaration", "kind": 1024, @@ -38175,7 +45710,8 @@ "fileName": "src/resource_clients/run_collection.ts", "line": 52, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run_collection.ts#L52" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run_collection.ts#L52", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38198,7 +45734,7 @@ } }, { - "id": 1923, + "id": 2124, "name": "startedBefore", "variant": "declaration", "kind": 1024, @@ -38210,7 +45746,8 @@ "fileName": "src/resource_clients/run_collection.ts", "line": 51, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run_collection.ts#L51" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run_collection.ts#L51", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38233,7 +45770,7 @@ } }, { - "id": 1922, + "id": 2123, "name": "status", "variant": "declaration", "kind": 1024, @@ -38245,7 +45782,8 @@ "fileName": "src/resource_clients/run_collection.ts", "line": 48, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run_collection.ts#L48" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run_collection.ts#L48", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38330,7 +45868,7 @@ "groups": [ { "title": "Properties", - "children": [1921, 1919, 1920, 1924, 1923, 1922] + "children": [2122, 2120, 2121, 2125, 2124, 2123] } ], "sources": [ @@ -38338,19 +45876,20 @@ "fileName": "src/resource_clients/run_collection.ts", "line": 44, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run_collection.ts#L44" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run_collection.ts#L44", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1845, + "id": 2046, "name": "RunGetOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1846, + "id": 2047, "name": "waitForFinish", "variant": "declaration", "kind": 1024, @@ -38360,9 +45899,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 272, + "line": 306, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L272" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L306", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38374,27 +45914,28 @@ "groups": [ { "title": "Properties", - "children": [1846] + "children": [2047] } ], "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 271, + "line": 305, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L271" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L305", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1849, + "id": 2050, "name": "RunMetamorphOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1851, + "id": 2052, "name": "build", "variant": "declaration", "kind": 1024, @@ -38404,9 +45945,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 281, + "line": 315, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L281" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L315", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38415,7 +45957,7 @@ } }, { - "id": 1850, + "id": 2051, "name": "contentType", "variant": "declaration", "kind": 1024, @@ -38425,9 +45967,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 280, + "line": 314, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L280" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L314", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38439,27 +45982,28 @@ "groups": [ { "title": "Properties", - "children": [1851, 1850] + "children": [2052, 2051] } ], "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 279, + "line": 313, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L279" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L313", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1856, + "id": 2057, "name": "RunResurrectOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1857, + "id": 2058, "name": "build", "variant": "declaration", "kind": 1024, @@ -38469,9 +46013,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 290, + "line": 324, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L290" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L324", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38480,7 +46025,7 @@ } }, { - "id": 1860, + "id": 2061, "name": "maxItems", "variant": "declaration", "kind": 1024, @@ -38490,9 +46035,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 293, + "line": 327, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L293" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L327", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38501,7 +46047,7 @@ } }, { - "id": 1861, + "id": 2062, "name": "maxTotalChargeUsd", "variant": "declaration", "kind": 1024, @@ -38511,9 +46057,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 294, + "line": 328, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L294" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L328", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38522,7 +46069,7 @@ } }, { - "id": 1858, + "id": 2059, "name": "memory", "variant": "declaration", "kind": 1024, @@ -38532,9 +46079,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 291, + "line": 325, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L291" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L325", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38543,7 +46091,7 @@ } }, { - "id": 1862, + "id": 2063, "name": "restartOnError", "variant": "declaration", "kind": 1024, @@ -38553,9 +46101,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 295, + "line": 329, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L295" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L329", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38564,7 +46113,7 @@ } }, { - "id": 1859, + "id": 2060, "name": "timeout", "variant": "declaration", "kind": 1024, @@ -38574,9 +46123,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 292, + "line": 326, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L292" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L326", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38588,27 +46138,28 @@ "groups": [ { "title": "Properties", - "children": [1857, 1860, 1861, 1858, 1862, 1859] + "children": [2058, 2061, 2062, 2059, 2063, 2060] } ], "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 289, + "line": 323, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L289" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L323", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1852, + "id": 2053, "name": "RunUpdateOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1855, + "id": 2056, "name": "generalAccess", "variant": "declaration", "kind": 1024, @@ -38618,9 +46169,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 286, + "line": 320, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L286" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L320", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38643,7 +46195,7 @@ } }, { - "id": 1854, + "id": 2055, "name": "isStatusMessageTerminal", "variant": "declaration", "kind": 1024, @@ -38653,9 +46205,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 285, + "line": 319, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L285" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L319", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38664,7 +46217,7 @@ } }, { - "id": 1853, + "id": 2054, "name": "statusMessage", "variant": "declaration", "kind": 1024, @@ -38674,9 +46227,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 284, + "line": 318, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L284" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L318", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38688,27 +46242,28 @@ "groups": [ { "title": "Properties", - "children": [1855, 1854, 1853] + "children": [2056, 2055, 2054] } ], "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 283, + "line": 317, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L283" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L317", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1867, + "id": 2068, "name": "RunWaitForFinishOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1868, + "id": 2069, "name": "waitSecs", "variant": "declaration", "kind": 1024, @@ -38750,9 +46305,10 @@ "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 313, + "line": 347, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L313" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L347", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38764,27 +46320,28 @@ "groups": [ { "title": "Properties", - "children": [1868] + "children": [2069] } ], "sources": [ { "fileName": "src/resource_clients/run.ts", - "line": 307, + "line": 341, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/run.ts#L307" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/run.ts#L341", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 1987, + "id": 2188, "name": "Schedule", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2001, + "id": 2202, "name": "actions", "variant": "declaration", "kind": 1024, @@ -38794,21 +46351,22 @@ "fileName": "src/resource_clients/schedule.ts", "line": 78, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L78" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L78", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 2011, + "target": 2212, "name": "ScheduleAction", "package": "apify-client" } } }, { - "id": 1997, + "id": 2198, "name": "createdAt", "variant": "declaration", "kind": 1024, @@ -38818,7 +46376,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 74, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L74" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L74", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38832,7 +46391,7 @@ } }, { - "id": 1992, + "id": 2193, "name": "cronExpression", "variant": "declaration", "kind": 1024, @@ -38842,7 +46401,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 69, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L69" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L69", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38851,7 +46411,7 @@ } }, { - "id": 1996, + "id": 2197, "name": "description", "variant": "declaration", "kind": 1024, @@ -38863,7 +46423,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 73, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L73" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L73", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38872,7 +46433,7 @@ } }, { - "id": 1988, + "id": 2189, "name": "id", "variant": "declaration", "kind": 1024, @@ -38882,7 +46443,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 65, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L65" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L65", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38891,7 +46453,7 @@ } }, { - "id": 1994, + "id": 2195, "name": "isEnabled", "variant": "declaration", "kind": 1024, @@ -38901,7 +46463,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 71, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L71" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L71", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38910,7 +46473,7 @@ } }, { - "id": 1995, + "id": 2196, "name": "isExclusive", "variant": "declaration", "kind": 1024, @@ -38920,7 +46483,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 72, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L72" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L72", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38929,7 +46493,7 @@ } }, { - "id": 2000, + "id": 2201, "name": "lastRunAt", "variant": "declaration", "kind": 1024, @@ -38939,7 +46503,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 77, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L77" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L77", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38948,7 +46513,7 @@ } }, { - "id": 1998, + "id": 2199, "name": "modifiedAt", "variant": "declaration", "kind": 1024, @@ -38958,7 +46523,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 75, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L75" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L75", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38972,7 +46538,7 @@ } }, { - "id": 1990, + "id": 2191, "name": "name", "variant": "declaration", "kind": 1024, @@ -38982,7 +46548,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 67, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L67" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L67", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -38991,7 +46558,7 @@ } }, { - "id": 1999, + "id": 2200, "name": "nextRunAt", "variant": "declaration", "kind": 1024, @@ -39001,7 +46568,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 76, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L76" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L76", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -39010,7 +46578,7 @@ } }, { - "id": 2002, + "id": 2203, "name": "notifications", "variant": "declaration", "kind": 1024, @@ -39020,20 +46588,21 @@ "fileName": "src/resource_clients/schedule.ts", "line": 79, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L79" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L79", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reflection", "declaration": { - "id": 2003, + "id": 2204, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2004, + "id": 2205, "name": "email", "variant": "declaration", "kind": 1024, @@ -39043,7 +46612,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 80, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L80" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L80", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -39055,7 +46625,7 @@ "groups": [ { "title": "Properties", - "children": [2004] + "children": [2205] } ], "sources": [ @@ -39063,14 +46633,15 @@ "fileName": "src/resource_clients/schedule.ts", "line": 79, "character": 19, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L79" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L79", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } } }, { - "id": 1993, + "id": 2194, "name": "timezone", "variant": "declaration", "kind": 1024, @@ -39080,7 +46651,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 70, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L70" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L70", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41462,7 +49034,7 @@ } }, { - "id": 1991, + "id": 2192, "name": "title", "variant": "declaration", "kind": 1024, @@ -41474,7 +49046,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 68, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L68" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L68", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41483,7 +49056,7 @@ } }, { - "id": 1989, + "id": 2190, "name": "userId", "variant": "declaration", "kind": 1024, @@ -41493,7 +49066,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 66, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L66" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L66", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41506,7 +49080,7 @@ { "title": "Properties", "children": [ - 2001, 1997, 1992, 1996, 1988, 1994, 1995, 2000, 1998, 1990, 1999, 2002, 1993, 1991, 1989 + 2202, 2198, 2193, 2197, 2189, 2195, 2196, 2201, 2199, 2191, 2200, 2203, 2194, 2192, 2190 ] } ], @@ -41515,19 +49089,20 @@ "fileName": "src/resource_clients/schedule.ts", "line": 64, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L64" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L64", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2012, + "id": 2213, "name": "ScheduleActionRunActor", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2013, + "id": 2214, "name": "actorId", "variant": "declaration", "kind": 1024, @@ -41537,7 +49112,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 106, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L106" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L106", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41546,7 +49122,7 @@ } }, { - "id": 2016, + "id": 2217, "name": "id", "variant": "declaration", "kind": 1024, @@ -41558,7 +49134,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 99, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L99" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L99", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41572,7 +49149,7 @@ } }, { - "id": 2014, + "id": 2215, "name": "runInput", "variant": "declaration", "kind": 1024, @@ -41584,18 +49161,19 @@ "fileName": "src/resource_clients/schedule.ts", "line": 107, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L107" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L107", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2018, + "target": 2219, "name": "ScheduledActorRunInput", "package": "apify-client" } }, { - "id": 2015, + "id": 2216, "name": "runOptions", "variant": "declaration", "kind": 1024, @@ -41607,18 +49185,19 @@ "fileName": "src/resource_clients/schedule.ts", "line": 108, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L108" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L108", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2021, + "target": 2222, "name": "ScheduledActorRunOptions", "package": "apify-client" } }, { - "id": 2017, + "id": 2218, "name": "type", "variant": "declaration", "kind": 1024, @@ -41630,12 +49209,13 @@ "fileName": "src/resource_clients/schedule.ts", "line": 100, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L100" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L100", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2009, + "target": 2210, "name": "RunActor", "package": "apify-client", "qualifiedName": "ScheduleActions.RunActor" @@ -41650,7 +49230,7 @@ "groups": [ { "title": "Properties", - "children": [2013, 2016, 2014, 2015, 2017] + "children": [2214, 2217, 2215, 2216, 2218] } ], "sources": [ @@ -41658,7 +49238,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 105, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L105" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L105", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -41671,7 +49252,7 @@ "typeArguments": [ { "type": "reference", - "target": 2009, + "target": 2210, "name": "ScheduleActions.RunActor", "package": "apify-client" } @@ -41682,14 +49263,14 @@ ] }, { - "id": 2026, + "id": 2227, "name": "ScheduleActionRunActorTask", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2027, + "id": 2228, "name": "actorTaskId", "variant": "declaration", "kind": 1024, @@ -41699,7 +49280,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 124, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L124" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L124", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41708,7 +49290,7 @@ } }, { - "id": 2029, + "id": 2230, "name": "id", "variant": "declaration", "kind": 1024, @@ -41720,7 +49302,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 99, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L99" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L99", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41734,7 +49317,7 @@ } }, { - "id": 2028, + "id": 2229, "name": "input", "variant": "declaration", "kind": 1024, @@ -41746,7 +49329,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 125, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L125" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L125", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41755,7 +49339,7 @@ } }, { - "id": 2030, + "id": 2231, "name": "type", "variant": "declaration", "kind": 1024, @@ -41767,12 +49351,13 @@ "fileName": "src/resource_clients/schedule.ts", "line": 100, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L100" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L100", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2010, + "target": 2211, "name": "RunActorTask", "package": "apify-client", "qualifiedName": "ScheduleActions.RunActorTask" @@ -41787,7 +49372,7 @@ "groups": [ { "title": "Properties", - "children": [2027, 2029, 2028, 2030] + "children": [2228, 2230, 2229, 2231] } ], "sources": [ @@ -41795,7 +49380,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 123, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L123" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L123", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -41808,7 +49394,7 @@ "typeArguments": [ { "type": "reference", - "target": 2010, + "target": 2211, "name": "ScheduleActions.RunActorTask", "package": "apify-client" } @@ -41819,14 +49405,14 @@ ] }, { - "id": 2085, + "id": 2286, "name": "ScheduleCollectionListOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2088, + "id": 2289, "name": "desc", "variant": "declaration", "kind": 1024, @@ -41838,7 +49424,8 @@ "fileName": "src/resource_clients/schedule_collection.ts", "line": 48, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule_collection.ts#L48" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule_collection.ts#L48", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41847,7 +49434,7 @@ } }, { - "id": 2086, + "id": 2287, "name": "limit", "variant": "declaration", "kind": 1024, @@ -41859,7 +49446,8 @@ "fileName": "src/resource_clients/schedule_collection.ts", "line": 46, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule_collection.ts#L46" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule_collection.ts#L46", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41868,7 +49456,7 @@ } }, { - "id": 2087, + "id": 2288, "name": "offset", "variant": "declaration", "kind": 1024, @@ -41880,7 +49468,8 @@ "fileName": "src/resource_clients/schedule_collection.ts", "line": 47, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule_collection.ts#L47" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule_collection.ts#L47", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41892,7 +49481,7 @@ "groups": [ { "title": "Properties", - "children": [2088, 2086, 2087] + "children": [2289, 2287, 2288] } ], "sources": [ @@ -41900,19 +49489,20 @@ "fileName": "src/resource_clients/schedule_collection.ts", "line": 45, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule_collection.ts#L45" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule_collection.ts#L45", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2018, + "id": 2219, "name": "ScheduledActorRunInput", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2019, + "id": 2220, "name": "body", "variant": "declaration", "kind": 1024, @@ -41922,7 +49512,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 112, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L112" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L112", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41931,7 +49522,7 @@ } }, { - "id": 2020, + "id": 2221, "name": "contentType", "variant": "declaration", "kind": 1024, @@ -41941,7 +49532,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 113, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L113" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L113", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41953,7 +49545,7 @@ "groups": [ { "title": "Properties", - "children": [2019, 2020] + "children": [2220, 2221] } ], "sources": [ @@ -41961,19 +49553,20 @@ "fileName": "src/resource_clients/schedule.ts", "line": 111, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L111" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L111", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2021, + "id": 2222, "name": "ScheduledActorRunOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2022, + "id": 2223, "name": "build", "variant": "declaration", "kind": 1024, @@ -41983,7 +49576,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 117, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L117" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L117", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -41992,7 +49586,7 @@ } }, { - "id": 2024, + "id": 2225, "name": "memoryMbytes", "variant": "declaration", "kind": 1024, @@ -42002,7 +49596,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 119, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L119" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L119", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42011,7 +49606,7 @@ } }, { - "id": 2025, + "id": 2226, "name": "restartOnError", "variant": "declaration", "kind": 1024, @@ -42023,7 +49618,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 120, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L120" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L120", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42032,7 +49628,7 @@ } }, { - "id": 2023, + "id": 2224, "name": "timeoutSecs", "variant": "declaration", "kind": 1024, @@ -42042,7 +49638,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 118, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L118" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L118", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42054,7 +49651,7 @@ "groups": [ { "title": "Properties", - "children": [2022, 2024, 2025, 2023] + "children": [2223, 2225, 2226, 2224] } ], "sources": [ @@ -42062,19 +49659,20 @@ "fileName": "src/resource_clients/schedule.ts", "line": 116, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L116" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L116", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2151, + "id": 2352, "name": "StoreCollectionListOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2156, + "id": 2357, "name": "category", "variant": "declaration", "kind": 1024, @@ -42086,7 +49684,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 62, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L62" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L62", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42095,7 +49694,7 @@ } }, { - "id": 2152, + "id": 2353, "name": "limit", "variant": "declaration", "kind": 1024, @@ -42107,7 +49706,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 58, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L58" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L58", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42116,7 +49716,7 @@ } }, { - "id": 2153, + "id": 2354, "name": "offset", "variant": "declaration", "kind": 1024, @@ -42128,7 +49728,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 59, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L59" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L59", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42137,7 +49738,7 @@ } }, { - "id": 2158, + "id": 2359, "name": "pricingModel", "variant": "declaration", "kind": 1024, @@ -42149,7 +49750,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 64, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L64" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L64", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42158,7 +49760,7 @@ } }, { - "id": 2154, + "id": 2355, "name": "search", "variant": "declaration", "kind": 1024, @@ -42170,7 +49772,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 60, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L60" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L60", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42179,7 +49782,7 @@ } }, { - "id": 2155, + "id": 2356, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -42191,7 +49794,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 61, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L61" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L61", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42200,7 +49804,7 @@ } }, { - "id": 2157, + "id": 2358, "name": "username", "variant": "declaration", "kind": 1024, @@ -42212,7 +49816,8 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 63, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L63" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L63", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42224,7 +49829,7 @@ "groups": [ { "title": "Properties", - "children": [2156, 2152, 2153, 2158, 2154, 2155, 2157] + "children": [2357, 2353, 2354, 2359, 2355, 2356, 2358] } ], "sources": [ @@ -42232,19 +49837,137 @@ "fileName": "src/resource_clients/store_collection.ts", "line": 57, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/store_collection.ts#L57" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/store_collection.ts#L57", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2237, + "id": 1669, + "name": "StreamedLogOptions", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1672, + "name": "fromStart", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to redirect all logs from Actor run start (even logs from the past)." + } + ] + }, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 238, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L238", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1670, + "name": "logClient", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Log client used to communicate with the Apify API." + } + ] + }, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 234, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L234", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "reference", + "target": 1427, + "name": "LogClient", + "package": "apify-client" + } + }, + { + "id": 1671, + "name": "toLog", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Log to which the Actor run logs will be redirected." + } + ] + }, + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 236, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L236", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "Log" + }, + "name": "Log", + "package": "@apify/log" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [1672, 1670, 1671] + } + ], + "sources": [ + { + "fileName": "src/resource_clients/log.ts", + "line": 232, + "character": 17, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/log.ts#L232", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ] + }, + { + "id": 2438, "name": "Task", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2240, + "id": 2441, "name": "actId", "variant": "declaration", "kind": 1024, @@ -42254,7 +49977,8 @@ "fileName": "src/resource_clients/task.ts", "line": 207, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L207" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L207", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42263,7 +49987,7 @@ } }, { - "id": 2250, + "id": 2451, "name": "actorStandby", "variant": "declaration", "kind": 1024, @@ -42275,7 +49999,8 @@ "fileName": "src/resource_clients/task.ts", "line": 217, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L217" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L217", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42297,7 +50022,7 @@ } }, { - "id": 2245, + "id": 2446, "name": "createdAt", "variant": "declaration", "kind": 1024, @@ -42307,7 +50032,8 @@ "fileName": "src/resource_clients/task.ts", "line": 212, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L212" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L212", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42321,7 +50047,7 @@ } }, { - "id": 2243, + "id": 2444, "name": "description", "variant": "declaration", "kind": 1024, @@ -42333,7 +50059,8 @@ "fileName": "src/resource_clients/task.ts", "line": 210, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L210" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L210", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42342,7 +50069,7 @@ } }, { - "id": 2238, + "id": 2439, "name": "id", "variant": "declaration", "kind": 1024, @@ -42352,7 +50079,8 @@ "fileName": "src/resource_clients/task.ts", "line": 205, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L205" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L205", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42361,7 +50089,7 @@ } }, { - "id": 2249, + "id": 2450, "name": "input", "variant": "declaration", "kind": 1024, @@ -42373,7 +50101,8 @@ "fileName": "src/resource_clients/task.ts", "line": 216, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L216" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L216", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42398,7 +50127,7 @@ } }, { - "id": 2246, + "id": 2447, "name": "modifiedAt", "variant": "declaration", "kind": 1024, @@ -42408,7 +50137,8 @@ "fileName": "src/resource_clients/task.ts", "line": 213, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L213" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L213", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42422,7 +50152,7 @@ } }, { - "id": 2241, + "id": 2442, "name": "name", "variant": "declaration", "kind": 1024, @@ -42432,7 +50162,8 @@ "fileName": "src/resource_clients/task.ts", "line": 208, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L208" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L208", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42441,7 +50172,7 @@ } }, { - "id": 2248, + "id": 2449, "name": "options", "variant": "declaration", "kind": 1024, @@ -42453,18 +50184,19 @@ "fileName": "src/resource_clients/task.ts", "line": 215, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L215" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L215", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2253, + "target": 2454, "name": "TaskOptions", "package": "apify-client" } }, { - "id": 2247, + "id": 2448, "name": "stats", "variant": "declaration", "kind": 1024, @@ -42474,18 +50206,19 @@ "fileName": "src/resource_clients/task.ts", "line": 214, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L214" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L214", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2251, + "target": 2452, "name": "TaskStats", "package": "apify-client" } }, { - "id": 2242, + "id": 2443, "name": "title", "variant": "declaration", "kind": 1024, @@ -42497,7 +50230,8 @@ "fileName": "src/resource_clients/task.ts", "line": 209, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L209" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L209", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42506,7 +50240,7 @@ } }, { - "id": 2239, + "id": 2440, "name": "userId", "variant": "declaration", "kind": 1024, @@ -42516,7 +50250,8 @@ "fileName": "src/resource_clients/task.ts", "line": 206, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L206" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L206", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42525,7 +50260,7 @@ } }, { - "id": 2244, + "id": 2445, "name": "username", "variant": "declaration", "kind": 1024, @@ -42537,7 +50272,8 @@ "fileName": "src/resource_clients/task.ts", "line": 211, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L211" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L211", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42549,7 +50285,7 @@ "groups": [ { "title": "Properties", - "children": [2240, 2250, 2245, 2243, 2238, 2249, 2246, 2241, 2248, 2247, 2242, 2239, 2244] + "children": [2441, 2451, 2446, 2444, 2439, 2450, 2447, 2442, 2449, 2448, 2443, 2440, 2445] } ], "sources": [ @@ -42557,19 +50293,20 @@ "fileName": "src/resource_clients/task.ts", "line": 204, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L204" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L204", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2262, + "id": 2463, "name": "TaskCallOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2265, + "id": 2466, "name": "build", "variant": "declaration", "kind": 1024, @@ -42612,9 +50349,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 368, + "line": 379, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L368" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L379", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42628,7 +50366,7 @@ } }, { - "id": 2269, + "id": 2470, "name": "maxItems", "variant": "declaration", "kind": 1024, @@ -42640,7 +50378,7 @@ "summary": [ { "kind": "text", - "text": "Specifies maximum number of items that the actor run should return.\nThis is used by pay per result actors to limit the maximum number of results that will be charged to customer.\nValue can be accessed in actor run using " + "text": "Specifies the maximum number of dataset items that will be charged for pay-per-result Actors.\nThis does NOT guarantee that the Actor will return only this many items.\nIt only ensures you won't be charged for more than this number of items.\nOnly works for pay-per-result Actors.\nValue can be accessed in the Actor run using " }, { "kind": "code", @@ -42655,9 +50393,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 411, + "line": 424, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L411" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L424", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42671,7 +50410,51 @@ } }, { - "id": 2266, + "id": 2471, + "name": "maxTotalChargeUsd", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the maximum cost of the Actor run. This parameter is\nused only for pay-per-event Actors. It allows you to limit the amount\ncharged to your subscription. You can access the maximum cost in your\nActor by using the " + }, + { + "kind": "code", + "text": "`ACTOR_MAX_TOTAL_CHARGE_USD`" + }, + { + "kind": "text", + "text": " environment variable." + } + ] + }, + "sources": [ + { + "fileName": "src/resource_clients/actor.ts", + "line": 432, + "character": 4, + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L432", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.maxTotalChargeUsd" + } + }, + { + "id": 2467, "name": "memory", "variant": "declaration", "kind": 1024, @@ -42690,9 +50473,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 382, + "line": 393, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L382" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L393", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42706,7 +50490,7 @@ } }, { - "id": 2264, + "id": 2465, "name": "restartOnError", "variant": "declaration", "kind": 1024, @@ -42725,9 +50509,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 416, + "line": 437, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L416" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L437", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42741,7 +50526,7 @@ } }, { - "id": 2267, + "id": 2468, "name": "timeout", "variant": "declaration", "kind": 1024, @@ -42760,9 +50545,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 387, + "line": 398, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L387" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L398", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42776,7 +50562,7 @@ } }, { - "id": 2263, + "id": 2464, "name": "waitSecs", "variant": "declaration", "kind": 1024, @@ -42788,7 +50574,8 @@ "fileName": "src/resource_clients/task.ts", "line": 242, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L242" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L242", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42797,7 +50584,7 @@ } }, { - "id": 2268, + "id": 2469, "name": "webhooks", "variant": "declaration", "kind": 1024, @@ -42816,9 +50603,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 404, + "line": 415, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L404" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L415", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42828,7 +50616,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2573, + "target": 2775, "name": "WebhookUpdateData", "package": "apify-client" } @@ -42844,7 +50632,7 @@ "groups": [ { "title": "Properties", - "children": [2265, 2269, 2266, 2264, 2267, 2263, 2268] + "children": [2466, 2470, 2471, 2467, 2465, 2468, 2464, 2469] } ], "sources": [ @@ -42852,7 +50640,8 @@ "fileName": "src/resource_clients/task.ts", "line": 241, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L241" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L241", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ @@ -42865,7 +50654,7 @@ "typeArguments": [ { "type": "reference", - "target": 2261, + "target": 2462, "name": "TaskStartOptions", "package": "apify-client" }, @@ -42880,14 +50669,14 @@ ] }, { - "id": 2322, + "id": 2524, "name": "TaskCollectionListOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2325, + "id": 2527, "name": "desc", "variant": "declaration", "kind": 1024, @@ -42899,7 +50688,8 @@ "fileName": "src/resource_clients/task_collection.ts", "line": 53, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task_collection.ts#L53" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task_collection.ts#L53", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42908,7 +50698,7 @@ } }, { - "id": 2323, + "id": 2525, "name": "limit", "variant": "declaration", "kind": 1024, @@ -42920,7 +50710,8 @@ "fileName": "src/resource_clients/task_collection.ts", "line": 51, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task_collection.ts#L51" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task_collection.ts#L51", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42929,7 +50720,7 @@ } }, { - "id": 2324, + "id": 2526, "name": "offset", "variant": "declaration", "kind": 1024, @@ -42941,7 +50732,8 @@ "fileName": "src/resource_clients/task_collection.ts", "line": 52, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task_collection.ts#L52" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task_collection.ts#L52", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42953,7 +50745,7 @@ "groups": [ { "title": "Properties", - "children": [2325, 2323, 2324] + "children": [2527, 2525, 2526] } ], "sources": [ @@ -42961,19 +50753,20 @@ "fileName": "src/resource_clients/task_collection.ts", "line": 50, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task_collection.ts#L50" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task_collection.ts#L50", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2327, + "id": 2529, "name": "TaskCreateData", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2328, + "id": 2530, "name": "actId", "variant": "declaration", "kind": 1024, @@ -42983,7 +50776,8 @@ "fileName": "src/resource_clients/task_collection.ts", "line": 59, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task_collection.ts#L59" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task_collection.ts#L59", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -42992,7 +50786,7 @@ } }, { - "id": 2332, + "id": 2534, "name": "actorStandby", "variant": "declaration", "kind": 1024, @@ -43005,7 +50799,8 @@ "fileName": "src/resource_clients/task.ts", "line": 217, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L217" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L217", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43032,7 +50827,7 @@ } }, { - "id": 2330, + "id": 2532, "name": "description", "variant": "declaration", "kind": 1024, @@ -43045,7 +50840,8 @@ "fileName": "src/resource_clients/task.ts", "line": 210, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L210" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L210", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43059,7 +50855,7 @@ } }, { - "id": 2333, + "id": 2535, "name": "input", "variant": "declaration", "kind": 1024, @@ -43072,7 +50868,8 @@ "fileName": "src/resource_clients/task.ts", "line": 216, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L216" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L216", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43102,7 +50899,7 @@ } }, { - "id": 2329, + "id": 2531, "name": "name", "variant": "declaration", "kind": 1024, @@ -43115,7 +50912,8 @@ "fileName": "src/resource_clients/task.ts", "line": 208, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L208" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L208", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43129,7 +50927,7 @@ } }, { - "id": 2334, + "id": 2536, "name": "options", "variant": "declaration", "kind": 1024, @@ -43142,12 +50940,13 @@ "fileName": "src/resource_clients/task.ts", "line": 215, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L215" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L215", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2253, + "target": 2454, "name": "TaskOptions", "package": "apify-client" }, @@ -43158,7 +50957,7 @@ } }, { - "id": 2331, + "id": 2533, "name": "title", "variant": "declaration", "kind": 1024, @@ -43171,7 +50970,8 @@ "fileName": "src/resource_clients/task.ts", "line": 209, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L209" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L209", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43188,7 +50988,7 @@ "groups": [ { "title": "Properties", - "children": [2328, 2332, 2330, 2333, 2329, 2334, 2331] + "children": [2530, 2534, 2532, 2535, 2531, 2536, 2533] } ], "sources": [ @@ -43196,27 +50996,28 @@ "fileName": "src/resource_clients/task_collection.ts", "line": 58, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task_collection.ts#L58" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task_collection.ts#L58", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "extendedTypes": [ { "type": "reference", - "target": 2258, + "target": 2459, "name": "TaskUpdateData", "package": "apify-client" } ] }, { - "id": 2259, + "id": 2460, "name": "TaskLastRunOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2260, + "id": 2461, "name": "status", "variant": "declaration", "kind": 1024, @@ -43228,7 +51029,8 @@ "fileName": "src/resource_clients/task.ts", "line": 236, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L236" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L236", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43273,7 +51075,7 @@ "groups": [ { "title": "Properties", - "children": [2260] + "children": [2461] } ], "sources": [ @@ -43281,19 +51083,20 @@ "fileName": "src/resource_clients/task.ts", "line": 235, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L235" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L235", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2253, + "id": 2454, "name": "TaskOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2254, + "id": 2455, "name": "build", "variant": "declaration", "kind": 1024, @@ -43305,7 +51108,8 @@ "fileName": "src/resource_clients/task.ts", "line": 225, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L225" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L225", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43314,7 +51118,7 @@ } }, { - "id": 2256, + "id": 2457, "name": "memoryMbytes", "variant": "declaration", "kind": 1024, @@ -43326,7 +51130,8 @@ "fileName": "src/resource_clients/task.ts", "line": 227, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L227" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L227", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43335,7 +51140,7 @@ } }, { - "id": 2257, + "id": 2458, "name": "restartOnError", "variant": "declaration", "kind": 1024, @@ -43347,7 +51152,8 @@ "fileName": "src/resource_clients/task.ts", "line": 228, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L228" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L228", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43356,7 +51162,7 @@ } }, { - "id": 2255, + "id": 2456, "name": "timeoutSecs", "variant": "declaration", "kind": 1024, @@ -43368,7 +51174,8 @@ "fileName": "src/resource_clients/task.ts", "line": 226, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L226" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L226", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43380,7 +51187,7 @@ "groups": [ { "title": "Properties", - "children": [2254, 2256, 2257, 2255] + "children": [2455, 2457, 2458, 2456] } ], "sources": [ @@ -43388,19 +51195,20 @@ "fileName": "src/resource_clients/task.ts", "line": 224, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L224" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L224", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2251, + "id": 2452, "name": "TaskStats", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2252, + "id": 2453, "name": "totalRuns", "variant": "declaration", "kind": 1024, @@ -43410,7 +51218,8 @@ "fileName": "src/resource_clients/task.ts", "line": 221, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L221" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L221", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43422,7 +51231,7 @@ "groups": [ { "title": "Properties", - "children": [2252] + "children": [2453] } ], "sources": [ @@ -43430,19 +51239,20 @@ "fileName": "src/resource_clients/task.ts", "line": 220, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L220" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L220", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2457, + "id": 2659, "name": "UsageCycle", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2459, + "id": 2661, "name": "endAt", "variant": "declaration", "kind": 1024, @@ -43452,7 +51262,8 @@ "fileName": "src/resource_clients/user.ts", "line": 190, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L190" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L190", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43466,7 +51277,7 @@ } }, { - "id": 2458, + "id": 2660, "name": "startAt", "variant": "declaration", "kind": 1024, @@ -43476,7 +51287,8 @@ "fileName": "src/resource_clients/user.ts", "line": 189, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L189" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L189", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43493,7 +51305,7 @@ "groups": [ { "title": "Properties", - "children": [2459, 2458] + "children": [2661, 2660] } ], "sources": [ @@ -43501,19 +51313,20 @@ "fileName": "src/resource_clients/user.ts", "line": 188, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L188" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L188", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2395, + "id": 2597, "name": "User", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2410, + "id": 2612, "name": "createdAt", "variant": "declaration", "kind": 1024, @@ -43525,7 +51338,8 @@ "fileName": "src/resource_clients/user.ts", "line": 107, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L107" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L107", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43539,7 +51353,7 @@ } }, { - "id": 2409, + "id": 2611, "name": "effectivePlatformFeatures", "variant": "declaration", "kind": 1024, @@ -43551,7 +51365,8 @@ "fileName": "src/resource_clients/user.ts", "line": 106, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L106" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L106", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43565,7 +51380,7 @@ } }, { - "id": 2406, + "id": 2608, "name": "email", "variant": "declaration", "kind": 1024, @@ -43577,7 +51392,8 @@ "fileName": "src/resource_clients/user.ts", "line": 103, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L103" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L103", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43586,7 +51402,7 @@ } }, { - "id": 2405, + "id": 2607, "name": "id", "variant": "declaration", "kind": 1024, @@ -43598,7 +51414,8 @@ "fileName": "src/resource_clients/user.ts", "line": 102, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L102" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L102", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43607,7 +51424,7 @@ } }, { - "id": 2411, + "id": 2613, "name": "isPaying", "variant": "declaration", "kind": 1024, @@ -43619,7 +51436,8 @@ "fileName": "src/resource_clients/user.ts", "line": 108, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L108" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L108", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43628,7 +51446,7 @@ } }, { - "id": 2408, + "id": 2610, "name": "plan", "variant": "declaration", "kind": 1024, @@ -43640,18 +51458,19 @@ "fileName": "src/resource_clients/user.ts", "line": 105, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L105" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L105", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2419, + "target": 2621, "name": "UserPlan", "package": "apify-client" } }, { - "id": 2397, + "id": 2599, "name": "profile", "variant": "declaration", "kind": 1024, @@ -43661,20 +51480,21 @@ "fileName": "src/resource_clients/user.ts", "line": 93, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L93" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L93", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reflection", "declaration": { - "id": 2398, + "id": 2600, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2399, + "id": 2601, "name": "bio", "variant": "declaration", "kind": 1024, @@ -43686,7 +51506,8 @@ "fileName": "src/resource_clients/user.ts", "line": 94, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L94" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L94", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43695,7 +51516,7 @@ } }, { - "id": 2402, + "id": 2604, "name": "githubUsername", "variant": "declaration", "kind": 1024, @@ -43707,7 +51528,8 @@ "fileName": "src/resource_clients/user.ts", "line": 97, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L97" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L97", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43716,7 +51538,7 @@ } }, { - "id": 2400, + "id": 2602, "name": "name", "variant": "declaration", "kind": 1024, @@ -43728,7 +51550,8 @@ "fileName": "src/resource_clients/user.ts", "line": 95, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L95" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L95", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43737,7 +51560,7 @@ } }, { - "id": 2401, + "id": 2603, "name": "pictureUrl", "variant": "declaration", "kind": 1024, @@ -43749,7 +51572,8 @@ "fileName": "src/resource_clients/user.ts", "line": 96, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L96" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L96", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43758,7 +51582,7 @@ } }, { - "id": 2404, + "id": 2606, "name": "twitterUsername", "variant": "declaration", "kind": 1024, @@ -43770,7 +51594,8 @@ "fileName": "src/resource_clients/user.ts", "line": 99, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L99" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L99", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43779,7 +51604,7 @@ } }, { - "id": 2403, + "id": 2605, "name": "websiteUrl", "variant": "declaration", "kind": 1024, @@ -43791,7 +51616,8 @@ "fileName": "src/resource_clients/user.ts", "line": 98, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L98" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L98", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43803,7 +51629,7 @@ "groups": [ { "title": "Properties", - "children": [2399, 2402, 2400, 2401, 2404, 2403] + "children": [2601, 2604, 2602, 2603, 2606, 2605] } ], "sources": [ @@ -43811,14 +51637,15 @@ "fileName": "src/resource_clients/user.ts", "line": 93, "character": 13, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L93" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L93", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } } }, { - "id": 2407, + "id": 2609, "name": "proxy", "variant": "declaration", "kind": 1024, @@ -43830,18 +51657,19 @@ "fileName": "src/resource_clients/user.ts", "line": 104, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L104" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L104", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2412, + "target": 2614, "name": "UserProxy", "package": "apify-client" } }, { - "id": 2396, + "id": 2598, "name": "username", "variant": "declaration", "kind": 1024, @@ -43851,7 +51679,8 @@ "fileName": "src/resource_clients/user.ts", "line": 92, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L92" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L92", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43863,7 +51692,7 @@ "groups": [ { "title": "Properties", - "children": [2410, 2409, 2406, 2405, 2411, 2408, 2397, 2407, 2396] + "children": [2612, 2611, 2608, 2607, 2613, 2610, 2599, 2609, 2598] } ], "sources": [ @@ -43871,19 +51700,20 @@ "fileName": "src/resource_clients/user.ts", "line": 90, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L90" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L90", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2419, + "id": 2621, "name": "UserPlan", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2439, + "id": 2641, "name": "availableAddOns", "variant": "declaration", "kind": 1024, @@ -43893,7 +51723,8 @@ "fileName": "src/resource_clients/user.ts", "line": 142, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L142" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L142", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43905,7 +51736,7 @@ } }, { - "id": 2436, + "id": 2638, "name": "availableProxyGroups", "variant": "declaration", "kind": 1024, @@ -43915,7 +51746,8 @@ "fileName": "src/resource_clients/user.ts", "line": 139, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L139" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L139", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43939,7 +51771,7 @@ } }, { - "id": 2435, + "id": 2637, "name": "dataRetentionDays", "variant": "declaration", "kind": 1024, @@ -43949,7 +51781,8 @@ "fileName": "src/resource_clients/user.ts", "line": 138, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L138" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L138", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43958,7 +51791,7 @@ } }, { - "id": 2421, + "id": 2623, "name": "description", "variant": "declaration", "kind": 1024, @@ -43968,7 +51801,8 @@ "fileName": "src/resource_clients/user.ts", "line": 124, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L124" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L124", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -43977,7 +51811,7 @@ } }, { - "id": 2426, + "id": 2628, "name": "enabledPlatformFeatures", "variant": "declaration", "kind": 1024, @@ -43987,21 +51821,22 @@ "fileName": "src/resource_clients/user.ts", "line": 129, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L129" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L129", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 2440, + "target": 2642, "name": "PlatformFeature", "package": "apify-client" } } }, { - "id": 2420, + "id": 2622, "name": "id", "variant": "declaration", "kind": 1024, @@ -44011,7 +51846,8 @@ "fileName": "src/resource_clients/user.ts", "line": 123, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L123" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L123", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44020,7 +51856,7 @@ } }, { - "id": 2422, + "id": 2624, "name": "isEnabled", "variant": "declaration", "kind": 1024, @@ -44030,7 +51866,8 @@ "fileName": "src/resource_clients/user.ts", "line": 125, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L125" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L125", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44039,7 +51876,7 @@ } }, { - "id": 2433, + "id": 2635, "name": "maxActorCount", "variant": "declaration", "kind": 1024, @@ -44049,7 +51886,8 @@ "fileName": "src/resource_clients/user.ts", "line": 136, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L136" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L136", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44058,7 +51896,7 @@ } }, { - "id": 2428, + "id": 2630, "name": "maxActorMemoryGbytes", "variant": "declaration", "kind": 1024, @@ -44068,7 +51906,8 @@ "fileName": "src/resource_clients/user.ts", "line": 131, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L131" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L131", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44077,7 +51916,7 @@ } }, { - "id": 2434, + "id": 2636, "name": "maxActorTaskCount", "variant": "declaration", "kind": 1024, @@ -44087,7 +51926,8 @@ "fileName": "src/resource_clients/user.ts", "line": 137, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L137" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L137", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44096,7 +51936,7 @@ } }, { - "id": 2429, + "id": 2631, "name": "maxMonthlyActorComputeUnits", "variant": "declaration", "kind": 1024, @@ -44106,7 +51946,8 @@ "fileName": "src/resource_clients/user.ts", "line": 132, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L132" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L132", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44115,7 +51956,7 @@ } }, { - "id": 2432, + "id": 2634, "name": "maxMonthlyExternalDataTransferGbytes", "variant": "declaration", "kind": 1024, @@ -44125,7 +51966,8 @@ "fileName": "src/resource_clients/user.ts", "line": 135, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L135" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L135", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44134,7 +51976,7 @@ } }, { - "id": 2431, + "id": 2633, "name": "maxMonthlyProxySerps", "variant": "declaration", "kind": 1024, @@ -44144,7 +51986,8 @@ "fileName": "src/resource_clients/user.ts", "line": 134, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L134" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L134", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44153,7 +51996,7 @@ } }, { - "id": 2430, + "id": 2632, "name": "maxMonthlyResidentialProxyGbytes", "variant": "declaration", "kind": 1024, @@ -44163,7 +52006,8 @@ "fileName": "src/resource_clients/user.ts", "line": 133, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L133" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L133", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44172,7 +52016,7 @@ } }, { - "id": 2427, + "id": 2629, "name": "maxMonthlyUsageUsd", "variant": "declaration", "kind": 1024, @@ -44182,7 +52026,8 @@ "fileName": "src/resource_clients/user.ts", "line": 130, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L130" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L130", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44191,7 +52036,7 @@ } }, { - "id": 2423, + "id": 2625, "name": "monthlyBasePriceUsd", "variant": "declaration", "kind": 1024, @@ -44201,7 +52046,8 @@ "fileName": "src/resource_clients/user.ts", "line": 126, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L126" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L126", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44210,7 +52056,7 @@ } }, { - "id": 2424, + "id": 2626, "name": "monthlyUsageCreditsUsd", "variant": "declaration", "kind": 1024, @@ -44220,7 +52066,8 @@ "fileName": "src/resource_clients/user.ts", "line": 127, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L127" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L127", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44229,7 +52076,7 @@ } }, { - "id": 2438, + "id": 2640, "name": "supportLevel", "variant": "declaration", "kind": 1024, @@ -44239,7 +52086,8 @@ "fileName": "src/resource_clients/user.ts", "line": 141, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L141" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L141", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44248,7 +52096,7 @@ } }, { - "id": 2437, + "id": 2639, "name": "teamAccountSeatCount", "variant": "declaration", "kind": 1024, @@ -44258,7 +52106,8 @@ "fileName": "src/resource_clients/user.ts", "line": 140, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L140" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L140", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44267,7 +52116,7 @@ } }, { - "id": 2425, + "id": 2627, "name": "usageDiscountPercent", "variant": "declaration", "kind": 1024, @@ -44277,7 +52126,8 @@ "fileName": "src/resource_clients/user.ts", "line": 128, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L128" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L128", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44290,8 +52140,8 @@ { "title": "Properties", "children": [ - 2439, 2436, 2435, 2421, 2426, 2420, 2422, 2433, 2428, 2434, 2429, 2432, 2431, 2430, 2427, 2423, - 2424, 2438, 2437, 2425 + 2641, 2638, 2637, 2623, 2628, 2622, 2624, 2635, 2630, 2636, 2631, 2634, 2633, 2632, 2629, 2625, + 2626, 2640, 2639, 2627 ] } ], @@ -44300,19 +52150,20 @@ "fileName": "src/resource_clients/user.ts", "line": 122, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L122" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L122", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2412, + "id": 2614, "name": "UserProxy", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2414, + "id": 2616, "name": "groups", "variant": "declaration", "kind": 1024, @@ -44322,21 +52173,22 @@ "fileName": "src/resource_clients/user.ts", "line": 113, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L113" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L113", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 2415, + "target": 2617, "name": "ProxyGroup", "package": "apify-client" } } }, { - "id": 2413, + "id": 2615, "name": "password", "variant": "declaration", "kind": 1024, @@ -44346,7 +52198,8 @@ "fileName": "src/resource_clients/user.ts", "line": 112, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L112" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L112", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44358,7 +52211,7 @@ "groups": [ { "title": "Properties", - "children": [2414, 2413] + "children": [2616, 2615] } ], "sources": [ @@ -44366,19 +52219,20 @@ "fileName": "src/resource_clients/user.ts", "line": 111, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L111" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L111", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2553, + "id": 2755, "name": "Webhook", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2560, + "id": 2762, "name": "condition", "variant": "declaration", "kind": 1024, @@ -44388,18 +52242,19 @@ "fileName": "src/resource_clients/webhook.ts", "line": 86, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L86" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L86", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2577, + "target": 2779, "name": "WebhookCondition", "package": "apify-client" } }, { - "id": 2556, + "id": 2758, "name": "createdAt", "variant": "declaration", "kind": 1024, @@ -44409,7 +52264,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 82, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L82" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L82", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44423,7 +52279,7 @@ } }, { - "id": 2570, + "id": 2772, "name": "description", "variant": "declaration", "kind": 1024, @@ -44435,7 +52291,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 96, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L96" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L96", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44444,7 +52301,7 @@ } }, { - "id": 2562, + "id": 2764, "name": "doNotRetry", "variant": "declaration", "kind": 1024, @@ -44454,7 +52311,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 88, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L88" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L88", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44463,7 +52321,7 @@ } }, { - "id": 2559, + "id": 2761, "name": "eventTypes", "variant": "declaration", "kind": 1024, @@ -44473,21 +52331,22 @@ "fileName": "src/resource_clients/webhook.ts", "line": 85, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L85" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L85", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 2576, + "target": 2778, "name": "WebhookEventType", "package": "apify-client" } } }, { - "id": 2569, + "id": 2771, "name": "headersTemplate", "variant": "declaration", "kind": 1024, @@ -44499,7 +52358,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 95, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L95" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L95", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44508,7 +52368,7 @@ } }, { - "id": 2554, + "id": 2756, "name": "id", "variant": "declaration", "kind": 1024, @@ -44518,7 +52378,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 80, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L80" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L80", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44527,7 +52388,7 @@ } }, { - "id": 2561, + "id": 2763, "name": "ignoreSslErrors", "variant": "declaration", "kind": 1024, @@ -44537,7 +52398,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 87, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L87" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L87", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44546,7 +52408,7 @@ } }, { - "id": 2558, + "id": 2760, "name": "isAdHoc", "variant": "declaration", "kind": 1024, @@ -44556,7 +52418,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 84, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L84" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L84", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44565,7 +52428,7 @@ } }, { - "id": 2568, + "id": 2770, "name": "isApifyIntegration", "variant": "declaration", "kind": 1024, @@ -44577,7 +52440,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 94, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L94" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L94", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44586,7 +52450,7 @@ } }, { - "id": 2565, + "id": 2767, "name": "lastDispatch", "variant": "declaration", "kind": 1024, @@ -44596,7 +52460,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 91, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L91" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L91", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44605,7 +52470,7 @@ } }, { - "id": 2557, + "id": 2759, "name": "modifiedAt", "variant": "declaration", "kind": 1024, @@ -44615,7 +52480,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 83, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L83" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L83", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44629,7 +52495,7 @@ } }, { - "id": 2564, + "id": 2766, "name": "payloadTemplate", "variant": "declaration", "kind": 1024, @@ -44639,7 +52505,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 90, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L90" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L90", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44648,7 +52515,7 @@ } }, { - "id": 2563, + "id": 2765, "name": "requestUrl", "variant": "declaration", "kind": 1024, @@ -44658,7 +52525,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 89, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L89" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L89", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44667,7 +52535,7 @@ } }, { - "id": 2567, + "id": 2769, "name": "shouldInterpolateStrings", "variant": "declaration", "kind": 1024, @@ -44677,7 +52545,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 93, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L93" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L93", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44686,7 +52555,7 @@ } }, { - "id": 2566, + "id": 2768, "name": "stats", "variant": "declaration", "kind": 1024, @@ -44696,18 +52565,19 @@ "fileName": "src/resource_clients/webhook.ts", "line": 92, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L92" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L92", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2574, + "target": 2776, "name": "WebhookStats", "package": "apify-client" } }, { - "id": 2555, + "id": 2757, "name": "userId", "variant": "declaration", "kind": 1024, @@ -44717,7 +52587,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 81, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L81" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L81", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44730,8 +52601,8 @@ { "title": "Properties", "children": [ - 2560, 2556, 2570, 2562, 2559, 2569, 2554, 2561, 2558, 2568, 2565, 2557, 2564, 2563, 2567, 2566, - 2555 + 2762, 2758, 2772, 2764, 2761, 2771, 2756, 2763, 2760, 2770, 2767, 2759, 2766, 2765, 2769, 2768, + 2757 ] } ], @@ -44740,19 +52611,20 @@ "fileName": "src/resource_clients/webhook.ts", "line": 79, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L79" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L79", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2578, + "id": 2780, "name": "WebhookAnyRunOfActorCondition", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2579, + "id": 2781, "name": "actorId", "variant": "declaration", "kind": 1024, @@ -44762,7 +52634,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 133, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L133" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L133", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44774,7 +52647,7 @@ "groups": [ { "title": "Properties", - "children": [2579] + "children": [2781] } ], "sources": [ @@ -44782,19 +52655,20 @@ "fileName": "src/resource_clients/webhook.ts", "line": 132, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L132" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L132", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2580, + "id": 2782, "name": "WebhookAnyRunOfActorTaskCondition", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2581, + "id": 2783, "name": "actorTaskId", "variant": "declaration", "kind": 1024, @@ -44804,7 +52678,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 137, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L137" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L137", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44816,7 +52691,7 @@ "groups": [ { "title": "Properties", - "children": [2581] + "children": [2783] } ], "sources": [ @@ -44824,19 +52699,20 @@ "fileName": "src/resource_clients/webhook.ts", "line": 136, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L136" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L136", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2582, + "id": 2784, "name": "WebhookCertainRunCondition", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2583, + "id": 2785, "name": "actorRunId", "variant": "declaration", "kind": 1024, @@ -44846,7 +52722,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 141, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L141" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L141", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44858,7 +52735,7 @@ "groups": [ { "title": "Properties", - "children": [2583] + "children": [2785] } ], "sources": [ @@ -44866,19 +52743,20 @@ "fileName": "src/resource_clients/webhook.ts", "line": 140, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L140" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L140", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2636, + "id": 2838, "name": "WebhookCollectionListOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2639, + "id": 2841, "name": "desc", "variant": "declaration", "kind": 1024, @@ -44890,7 +52768,8 @@ "fileName": "src/resource_clients/webhook_collection.ts", "line": 50, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_collection.ts#L50" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_collection.ts#L50", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44899,7 +52778,7 @@ } }, { - "id": 2637, + "id": 2839, "name": "limit", "variant": "declaration", "kind": 1024, @@ -44911,7 +52790,8 @@ "fileName": "src/resource_clients/webhook_collection.ts", "line": 48, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_collection.ts#L48" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_collection.ts#L48", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44920,7 +52800,7 @@ } }, { - "id": 2638, + "id": 2840, "name": "offset", "variant": "declaration", "kind": 1024, @@ -44932,7 +52812,8 @@ "fileName": "src/resource_clients/webhook_collection.ts", "line": 49, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_collection.ts#L49" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_collection.ts#L49", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -44944,7 +52825,7 @@ "groups": [ { "title": "Properties", - "children": [2639, 2637, 2638] + "children": [2841, 2839, 2840] } ], "sources": [ @@ -44952,19 +52833,20 @@ "fileName": "src/resource_clients/webhook_collection.ts", "line": 47, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_collection.ts#L47" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_collection.ts#L47", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2693, + "id": 2895, "name": "WebhookDispatch", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2700, + "id": 2902, "name": "calls", "variant": "declaration", "kind": 1024, @@ -44974,21 +52856,22 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 31, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L31" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L31", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 2707, + "target": 2909, "name": "WebhookDispatchCall", "package": "apify-client" } } }, { - "id": 2697, + "id": 2899, "name": "createdAt", "variant": "declaration", "kind": 1024, @@ -44998,7 +52881,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 28, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L28" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L28", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45012,7 +52896,7 @@ } }, { - "id": 2702, + "id": 2904, "name": "eventData", "variant": "declaration", "kind": 1024, @@ -45022,7 +52906,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 33, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L33" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L33", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45034,7 +52919,7 @@ }, { "type": "reference", - "target": 2713, + "target": 2915, "name": "WebhookDispatchEventData", "package": "apify-client" } @@ -45042,7 +52927,7 @@ } }, { - "id": 2699, + "id": 2901, "name": "eventType", "variant": "declaration", "kind": 1024, @@ -45052,18 +52937,19 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 30, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L30" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L30", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2576, + "target": 2778, "name": "WebhookEventType", "package": "apify-client" } }, { - "id": 2694, + "id": 2896, "name": "id", "variant": "declaration", "kind": 1024, @@ -45073,7 +52959,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 25, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L25" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L25", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45082,7 +52969,7 @@ } }, { - "id": 2698, + "id": 2900, "name": "status", "variant": "declaration", "kind": 1024, @@ -45092,18 +52979,19 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 29, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L29" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L29", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { "type": "reference", - "target": 2703, + "target": 2905, "name": "WebhookDispatchStatus", "package": "apify-client" } }, { - "id": 2695, + "id": 2897, "name": "userId", "variant": "declaration", "kind": 1024, @@ -45113,7 +53001,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 26, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L26" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L26", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45122,7 +53011,7 @@ } }, { - "id": 2701, + "id": 2903, "name": "webhook", "variant": "declaration", "kind": 1024, @@ -45132,7 +53021,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 32, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L32" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L32", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45144,7 +53034,7 @@ "typeArguments": [ { "type": "reference", - "target": 2553, + "target": 2755, "name": "Webhook", "package": "apify-client" }, @@ -45167,7 +53057,7 @@ } }, { - "id": 2696, + "id": 2898, "name": "webhookId", "variant": "declaration", "kind": 1024, @@ -45177,7 +53067,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 27, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L27" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L27", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45189,7 +53080,7 @@ "groups": [ { "title": "Properties", - "children": [2700, 2697, 2702, 2699, 2694, 2698, 2695, 2701, 2696] + "children": [2902, 2899, 2904, 2901, 2896, 2900, 2897, 2903, 2898] } ], "sources": [ @@ -45197,19 +53088,20 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 24, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L24" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L24", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2707, + "id": 2909, "name": "WebhookDispatchCall", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2710, + "id": 2912, "name": "errorMessage", "variant": "declaration", "kind": 1024, @@ -45219,7 +53111,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 45, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L45" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L45", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45237,7 +53130,7 @@ } }, { - "id": 2709, + "id": 2911, "name": "finishedAt", "variant": "declaration", "kind": 1024, @@ -45247,7 +53140,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 44, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L44" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L44", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45261,7 +53155,7 @@ } }, { - "id": 2712, + "id": 2914, "name": "responseBody", "variant": "declaration", "kind": 1024, @@ -45271,7 +53165,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 47, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L47" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L47", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45289,7 +53184,7 @@ } }, { - "id": 2711, + "id": 2913, "name": "responseStatus", "variant": "declaration", "kind": 1024, @@ -45299,7 +53194,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 46, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L46" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L46", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45317,7 +53213,7 @@ } }, { - "id": 2708, + "id": 2910, "name": "startedAt", "variant": "declaration", "kind": 1024, @@ -45327,7 +53223,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 43, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L43" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L43", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45344,7 +53241,7 @@ "groups": [ { "title": "Properties", - "children": [2710, 2709, 2712, 2711, 2708] + "children": [2912, 2911, 2914, 2913, 2910] } ], "sources": [ @@ -45352,19 +53249,20 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 42, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L42" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L42", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2767, + "id": 2969, "name": "WebhookDispatchCollectionListOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2770, + "id": 2972, "name": "desc", "variant": "declaration", "kind": 1024, @@ -45376,7 +53274,8 @@ "fileName": "src/resource_clients/webhook_dispatch_collection.ts", "line": 39, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch_collection.ts#L39" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch_collection.ts#L39", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45385,7 +53284,7 @@ } }, { - "id": 2768, + "id": 2970, "name": "limit", "variant": "declaration", "kind": 1024, @@ -45397,7 +53296,8 @@ "fileName": "src/resource_clients/webhook_dispatch_collection.ts", "line": 37, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch_collection.ts#L37" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch_collection.ts#L37", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45406,7 +53306,7 @@ } }, { - "id": 2769, + "id": 2971, "name": "offset", "variant": "declaration", "kind": 1024, @@ -45418,7 +53318,8 @@ "fileName": "src/resource_clients/webhook_dispatch_collection.ts", "line": 38, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch_collection.ts#L38" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch_collection.ts#L38", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45430,7 +53331,7 @@ "groups": [ { "title": "Properties", - "children": [2770, 2768, 2769] + "children": [2972, 2970, 2971] } ], "sources": [ @@ -45438,19 +53339,20 @@ "fileName": "src/resource_clients/webhook_dispatch_collection.ts", "line": 36, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch_collection.ts#L36" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch_collection.ts#L36", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2713, + "id": 2915, "name": "WebhookDispatchEventData", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2717, + "id": 2919, "name": "actorBuildId", "variant": "declaration", "kind": 1024, @@ -45462,7 +53364,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 54, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L54" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L54", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45471,7 +53374,7 @@ } }, { - "id": 2715, + "id": 2917, "name": "actorId", "variant": "declaration", "kind": 1024, @@ -45483,7 +53386,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 52, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L52" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L52", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45492,7 +53396,7 @@ } }, { - "id": 2714, + "id": 2916, "name": "actorRunId", "variant": "declaration", "kind": 1024, @@ -45504,7 +53408,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 51, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L51" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L51", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45513,7 +53418,7 @@ } }, { - "id": 2716, + "id": 2918, "name": "actorTaskId", "variant": "declaration", "kind": 1024, @@ -45525,7 +53430,8 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 53, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L53" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L53", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45537,7 +53443,7 @@ "groups": [ { "title": "Properties", - "children": [2717, 2715, 2714, 2716] + "children": [2919, 2917, 2916, 2918] } ], "sources": [ @@ -45545,19 +53451,20 @@ "fileName": "src/resource_clients/webhook_dispatch.ts", "line": 50, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook_dispatch.ts#L50" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook_dispatch.ts#L50", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2571, + "id": 2773, "name": "WebhookIdempotencyKey", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2572, + "id": 2774, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -45569,7 +53476,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 100, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L100" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L100", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45581,7 +53489,7 @@ "groups": [ { "title": "Properties", - "children": [2572] + "children": [2774] } ], "sources": [ @@ -45589,19 +53497,20 @@ "fileName": "src/resource_clients/webhook.ts", "line": 99, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L99" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L99", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 2574, + "id": 2776, "name": "WebhookStats", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2575, + "id": 2777, "name": "totalDispatches", "variant": "declaration", "kind": 1024, @@ -45611,7 +53520,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 122, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L122" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L122", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45623,7 +53533,7 @@ "groups": [ { "title": "Properties", - "children": [2575] + "children": [2777] } ], "sources": [ @@ -45631,12 +53541,13 @@ "fileName": "src/resource_clients/webhook.ts", "line": 121, "character": 17, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L121" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L121", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] }, { - "id": 425, + "id": 429, "name": "ActorChargeEvents", "variant": "declaration", "kind": 2097152, @@ -45644,9 +53555,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 578, + "line": 609, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L578" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L609", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45662,7 +53574,7 @@ }, { "type": "reference", - "target": 421, + "target": 425, "name": "ActorChargeEvent", "package": "apify-client" } @@ -45672,7 +53584,7 @@ } }, { - "id": 506, + "id": 510, "name": "ActorCollectionListResult", "variant": "declaration", "kind": 2097152, @@ -45682,7 +53594,8 @@ "fileName": "src/resource_clients/actor_collection.ts", "line": 69, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_collection.ts#L69" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_collection.ts#L69", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45691,7 +53604,7 @@ "typeArguments": [ { "type": "reference", - "target": 500, + "target": 504, "name": "ActorCollectionListItem", "package": "apify-client" } @@ -45701,7 +53614,7 @@ } }, { - "id": 637, + "id": 641, "name": "ActorEnvVarListResult", "variant": "declaration", "kind": 2097152, @@ -45711,7 +53624,8 @@ "fileName": "src/resource_clients/actor_env_var_collection.ts", "line": 49, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_env_var_collection.ts#L49" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_env_var_collection.ts#L49", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45727,7 +53641,7 @@ "typeArguments": [ { "type": "reference", - "target": 745, + "target": 749, "name": "ActorEnvironmentVariable", "package": "apify-client" } @@ -45754,7 +53668,7 @@ } }, { - "id": 438, + "id": 442, "name": "ActorRunPricingInfo", "variant": "declaration", "kind": 2097152, @@ -45762,9 +53676,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 588, + "line": 619, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L588" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L619", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45772,25 +53687,25 @@ "types": [ { "type": "reference", - "target": 426, + "target": 430, "name": "PricePerEventActorPricingInfo", "package": "apify-client" }, { "type": "reference", - "target": 411, + "target": 415, "name": "PricePerDatasetItemActorPricingInfo", "package": "apify-client" }, { "type": "reference", - "target": 401, + "target": 405, "name": "FlatPricePerMonthActorPricingInfo", "package": "apify-client" }, { "type": "reference", - "target": 393, + "target": 397, "name": "FreeActorPricingInfo", "package": "apify-client" } @@ -45806,9 +53721,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 329, + "line": 340, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L329" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L340", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45842,9 +53758,10 @@ "sources": [ { "fileName": "src/resource_clients/actor.ts", - "line": 337, + "line": 348, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor.ts#L337" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor.ts#L348", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45930,7 +53847,7 @@ } }, { - "id": 749, + "id": 753, "name": "ActorVersion", "variant": "declaration", "kind": 2097152, @@ -45940,7 +53857,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 106, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L106" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L106", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -45948,25 +53866,25 @@ "types": [ { "type": "reference", - "target": 708, + "target": 712, "name": "ActorVersionSourceFiles", "package": "apify-client" }, { "type": "reference", - "target": 719, + "target": 723, "name": "ActorVersionGitRepo", "package": "apify-client" }, { "type": "reference", - "target": 726, + "target": 730, "name": "ActorVersionTarball", "package": "apify-client" }, { "type": "reference", - "target": 733, + "target": 737, "name": "ActorVersionGitHubGist", "package": "apify-client" } @@ -45974,7 +53892,7 @@ } }, { - "id": 807, + "id": 811, "name": "ActorVersionListResult", "variant": "declaration", "kind": 2097152, @@ -45984,7 +53902,8 @@ "fileName": "src/resource_clients/actor_version_collection.ts", "line": 51, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version_collection.ts#L51" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version_collection.ts#L51", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46000,7 +53919,7 @@ "typeArguments": [ { "type": "reference", - "target": 750, + "target": 754, "name": "FinalActorVersion", "package": "apify-client" } @@ -46027,7 +53946,7 @@ } }, { - "id": 1694, + "id": 1889, "name": "AllowedHttpMethods", "variant": "declaration", "kind": 2097152, @@ -46037,7 +53956,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 710, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L710" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L710", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46083,7 +54003,7 @@ } }, { - "id": 985, + "id": 989, "name": "BuildCollectionClientListItem", "variant": "declaration", "kind": 2097152, @@ -46093,7 +54013,8 @@ "fileName": "src/resource_clients/build_collection.ts", "line": 42, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build_collection.ts#L42" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build_collection.ts#L42", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46115,7 +54036,7 @@ "typeArguments": [ { "type": "reference", - "target": 881, + "target": 885, "name": "Build", "package": "apify-client" }, @@ -46164,7 +54085,7 @@ "typeArguments": [ { "type": "reference", - "target": 881, + "target": 885, "name": "Build", "package": "apify-client" }, @@ -46193,7 +54114,7 @@ } }, { - "id": 986, + "id": 990, "name": "BuildCollectionClientListResult", "variant": "declaration", "kind": 2097152, @@ -46203,7 +54124,8 @@ "fileName": "src/resource_clients/build_collection.ts", "line": 45, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/build_collection.ts#L45" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/build_collection.ts#L45", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46212,7 +54134,7 @@ "typeArguments": [ { "type": "reference", - "target": 985, + "target": 989, "name": "BuildCollectionClientListItem", "package": "apify-client" } @@ -46222,7 +54144,7 @@ } }, { - "id": 1213, + "id": 1217, "name": "DatasetCollectionClientListResult", "variant": "declaration", "kind": 2097152, @@ -46232,7 +54154,8 @@ "fileName": "src/resource_clients/dataset_collection.ts", "line": 58, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset_collection.ts#L58" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/dataset_collection.ts#L58", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46241,7 +54164,7 @@ "typeArguments": [ { "type": "reference", - "target": 1066, + "target": 1070, "name": "Dataset", "package": "apify-client" } @@ -46259,9 +54182,10 @@ "sources": [ { "fileName": "src/utils.ts", - "line": 260, + "line": 263, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/utils.ts#L260" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/utils.ts#L263", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "typeParameters": [ @@ -46306,7 +54230,7 @@ } }, { - "id": 750, + "id": 754, "name": "FinalActorVersion", "variant": "declaration", "kind": 2097152, @@ -46316,7 +54240,8 @@ "fileName": "src/resource_clients/actor_version.ts", "line": 108, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/actor_version.ts#L108" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/actor_version.ts#L108", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46324,7 +54249,7 @@ "types": [ { "type": "reference", - "target": 749, + "target": 753, "name": "ActorVersion", "package": "apify-client" }, @@ -46344,7 +54269,7 @@ "typeArguments": [ { "type": "reference", - "target": 749, + "target": 753, "name": "ActorVersion", "package": "apify-client" }, @@ -46373,7 +54298,7 @@ } }, { - "id": 1420, + "id": 1424, "name": "KeyValueStoreCollectionListResult", "variant": "declaration", "kind": 2097152, @@ -46383,7 +54308,8 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 63, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L63" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L63", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46398,7 +54324,7 @@ "typeArguments": [ { "type": "reference", - "target": 1298, + "target": 1302, "name": "KeyValueStore", "package": "apify-client" }, @@ -46413,14 +54339,14 @@ { "type": "reflection", "declaration": { - "id": 1421, + "id": 1425, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1422, + "id": 1426, "name": "username", "variant": "declaration", "kind": 1024, @@ -46432,7 +54358,8 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 63, "character": 81, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L63" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L63", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46444,7 +54371,7 @@ "groups": [ { "title": "Properties", - "children": [1422] + "children": [1426] } ], "sources": [ @@ -46452,7 +54379,8 @@ "fileName": "src/resource_clients/key_value_store_collection.ts", "line": 63, "character": 79, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store_collection.ts#L63" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store_collection.ts#L63", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } @@ -46461,7 +54389,7 @@ } }, { - "id": 2479, + "id": 2681, "name": "LimitsUpdateOptions", "variant": "declaration", "kind": 2097152, @@ -46471,7 +54399,8 @@ "fileName": "src/resource_clients/user.ts", "line": 251, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/user.ts#L251" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/user.ts#L251", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46483,7 +54412,7 @@ "typeArguments": [ { "type": "reference", - "target": 2467, + "target": 2669, "name": "Limits", "package": "apify-client" }, @@ -46506,7 +54435,7 @@ } }, { - "id": 1693, + "id": 1888, "name": "RequestQueueClientGetRequestResult", "variant": "declaration", "kind": 2097152, @@ -46516,7 +54445,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 708, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L708" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L708", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46528,7 +54458,7 @@ "typeArguments": [ { "type": "reference", - "target": 1649, + "target": 1844, "name": "RequestQueueClientListItem", "package": "apify-client" }, @@ -46542,7 +54472,7 @@ } }, { - "id": 1692, + "id": 1887, "name": "RequestQueueClientRequestToDelete", "variant": "declaration", "kind": 2097152, @@ -46552,7 +54482,8 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 704, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L704" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L704", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46567,7 +54498,7 @@ "typeArguments": [ { "type": "reference", - "target": 1670, + "target": 1865, "name": "RequestQueueClientRequestSchema", "package": "apify-client" }, @@ -46588,7 +54519,7 @@ "typeArguments": [ { "type": "reference", - "target": 1670, + "target": 1865, "name": "RequestQueueClientRequestSchema", "package": "apify-client" }, @@ -46604,7 +54535,7 @@ } }, { - "id": 1754, + "id": 1949, "name": "RequestQueueCollectionListResult", "variant": "declaration", "kind": 2097152, @@ -46614,7 +54545,8 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 53, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L53" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L53", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46629,21 +54561,21 @@ "types": [ { "type": "reference", - "target": 1593, + "target": 1788, "name": "RequestQueue", "package": "apify-client" }, { "type": "reflection", "declaration": { - "id": 1755, + "id": 1950, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1756, + "id": 1951, "name": "username", "variant": "declaration", "kind": 1024, @@ -46655,7 +54587,8 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 53, "character": 78, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L53" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L53", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46667,7 +54600,7 @@ "groups": [ { "title": "Properties", - "children": [1756] + "children": [1951] } ], "sources": [ @@ -46675,7 +54608,8 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 53, "character": 76, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L53" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L53", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } @@ -46689,14 +54623,14 @@ { "type": "reflection", "declaration": { - "id": 1757, + "id": 1952, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1758, + "id": 1953, "name": "unnamed", "variant": "declaration", "kind": 1024, @@ -46706,7 +54640,8 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 54, "character": 4, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L54" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L54", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46718,7 +54653,7 @@ "groups": [ { "title": "Properties", - "children": [1758] + "children": [1953] } ], "sources": [ @@ -46726,7 +54661,8 @@ "fileName": "src/resource_clients/request_queue_collection.ts", "line": 53, "character": 101, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue_collection.ts#L53" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue_collection.ts#L53", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } @@ -46735,7 +54671,7 @@ } }, { - "id": 1695, + "id": 1890, "name": "RequestQueueRequestsAsyncIterable", "variant": "declaration", "kind": 2097152, @@ -46745,12 +54681,13 @@ "fileName": "src/resource_clients/request_queue.ts", "line": 712, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/request_queue.ts#L712" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/request_queue.ts#L712", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "typeParameters": [ { - "id": 1696, + "id": 1891, "name": "T", "variant": "typeParam", "kind": 131072, @@ -46766,7 +54703,7 @@ "typeArguments": [ { "type": "reference", - "target": 1696, + "target": 1891, "name": "T", "package": "apify-client", "refersToTypeParameter": true @@ -46777,7 +54714,7 @@ } }, { - "id": 1358, + "id": 1362, "name": "ReturnTypeFromOptions", "variant": "declaration", "kind": 2097152, @@ -46787,19 +54724,20 @@ "fileName": "src/resource_clients/key_value_store.ts", "line": 400, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/key_value_store.ts#L400" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/key_value_store.ts#L400", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "typeParameters": [ { - "id": 1359, + "id": 1363, "name": "Options", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1346, + "target": 1350, "name": "KeyValueClientGetRecordOptions", "package": "apify-client" } @@ -46815,7 +54753,7 @@ }, "objectType": { "type": "reference", - "target": 1359, + "target": 1363, "name": "Options", "package": "apify-client", "refersToTypeParameter": true @@ -46845,7 +54783,7 @@ }, "objectType": { "type": "reference", - "target": 1359, + "target": 1363, "name": "Options", "package": "apify-client", "refersToTypeParameter": true @@ -46878,7 +54816,7 @@ } }, { - "id": 2011, + "id": 2212, "name": "ScheduleAction", "variant": "declaration", "kind": 2097152, @@ -46888,7 +54826,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 103, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L103" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L103", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46896,13 +54835,13 @@ "types": [ { "type": "reference", - "target": 2012, + "target": 2213, "name": "ScheduleActionRunActor", "package": "apify-client" }, { "type": "reference", - "target": 2026, + "target": 2227, "name": "ScheduleActionRunActorTask", "package": "apify-client" } @@ -46910,7 +54849,7 @@ } }, { - "id": 2005, + "id": 2206, "name": "ScheduleCreateOrUpdateData", "variant": "declaration", "kind": 2097152, @@ -46920,7 +54859,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 84, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L84" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L84", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -46942,7 +54882,7 @@ "typeArguments": [ { "type": "reference", - "target": 1987, + "target": 2188, "name": "Schedule", "package": "apify-client" }, @@ -46990,14 +54930,14 @@ { "type": "reflection", "declaration": { - "id": 2006, + "id": 2207, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2007, + "id": 2208, "name": "actions", "variant": "declaration", "kind": 1024, @@ -47007,7 +54947,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 89, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L89" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L89", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -47021,7 +54962,7 @@ "typeArguments": [ { "type": "reference", - "target": 2011, + "target": 2212, "name": "ScheduleAction", "package": "apify-client" }, @@ -47039,7 +54980,7 @@ "groups": [ { "title": "Properties", - "children": [2007] + "children": [2208] } ], "sources": [ @@ -47047,7 +54988,8 @@ "fileName": "src/resource_clients/schedule.ts", "line": 88, "character": 8, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/schedule.ts#L88" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/schedule.ts#L88", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ] } @@ -47060,7 +55002,7 @@ } }, { - "id": 2326, + "id": 2528, "name": "TaskList", "variant": "declaration", "kind": 2097152, @@ -47070,7 +55012,8 @@ "fileName": "src/resource_clients/task_collection.ts", "line": 56, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task_collection.ts#L56" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task_collection.ts#L56", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -47082,7 +55025,7 @@ "typeArguments": [ { "type": "reference", - "target": 2237, + "target": 2438, "name": "Task", "package": "apify-client" }, @@ -47105,7 +55048,7 @@ } }, { - "id": 2261, + "id": 2462, "name": "TaskStartOptions", "variant": "declaration", "kind": 2097152, @@ -47115,7 +55058,8 @@ "fileName": "src/resource_clients/task.ts", "line": 239, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L239" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L239", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -47150,7 +55094,7 @@ } }, { - "id": 2258, + "id": 2459, "name": "TaskUpdateData", "variant": "declaration", "kind": 2097152, @@ -47160,7 +55104,8 @@ "fileName": "src/resource_clients/task.ts", "line": 231, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/task.ts#L231" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/task.ts#L231", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -47179,7 +55124,7 @@ "typeArguments": [ { "type": "reference", - "target": 2237, + "target": 2438, "name": "Task", "package": "apify-client" }, @@ -47223,13 +55168,13 @@ "extendedBy": [ { "type": "reference", - "target": 2327, + "target": 2529, "name": "TaskCreateData" } ] }, { - "id": 2577, + "id": 2779, "name": "WebhookCondition", "variant": "declaration", "kind": 2097152, @@ -47239,7 +55184,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 127, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L127" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L127", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -47247,19 +55193,19 @@ "types": [ { "type": "reference", - "target": 2578, + "target": 2780, "name": "WebhookAnyRunOfActorCondition", "package": "apify-client" }, { "type": "reference", - "target": 2580, + "target": 2782, "name": "WebhookAnyRunOfActorTaskCondition", "package": "apify-client" }, { "type": "reference", - "target": 2582, + "target": 2784, "name": "WebhookCertainRunCondition", "package": "apify-client" } @@ -47267,7 +55213,7 @@ } }, { - "id": 2576, + "id": 2778, "name": "WebhookEventType", "variant": "declaration", "kind": 2097152, @@ -47277,7 +55223,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 125, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L125" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L125", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -47315,7 +55262,7 @@ } }, { - "id": 2573, + "id": 2775, "name": "WebhookUpdateData", "variant": "declaration", "kind": 2097152, @@ -47325,7 +55272,8 @@ "fileName": "src/resource_clients/webhook.ts", "line": 103, "character": 12, - "url": "https://github.com/apify/apify-client-js/blob/master/src/resource_clients/webhook.ts#L103" + "url": "https://github.com/apify/apify-client-js/blob/6ae721a8e78193a0cc00f788b311041d416ea18a/src/resource_clients/webhook.ts#L103", + "gitRevision": "6ae721a8e78193a0cc00f788b311041d416ea18a" } ], "type": { @@ -47347,7 +55295,7 @@ "typeArguments": [ { "type": "reference", - "target": 2553, + "target": 2755, "name": "Webhook", "package": "apify-client" }, @@ -47410,7 +55358,7 @@ }, { "type": "reference", - "target": 2571, + "target": 2773, "name": "WebhookIdempotencyKey", "package": "apify-client" } @@ -47421,38 +55369,38 @@ "groups": [ { "title": "Enumerations", - "children": [491, 740, 1119, 2440, 2008, 2703] + "children": [495, 744, 1123, 2642, 2209, 2905] }, { "title": "Classes", "children": [ - 126, 439, 523, 581, 638, 751, 2771, 33, 808, 932, 987, 1153, 1, 1214, 1360, 1423, 1478, 1697, 1759, - 1869, 1925, 2031, 2089, 2159, 2270, 2335, 2491, 2584, 2640, 2718 + 126, 443, 527, 585, 642, 755, 2973, 33, 812, 936, 991, 1157, 1, 1218, 1364, 1427, 1486, 1673, 1892, + 1954, 2070, 2126, 2232, 2290, 1647, 2360, 2472, 2537, 2693, 2786, 2842, 2920 ] }, { "title": "Interfaces", "children": [ - 2460, 213, 369, 278, 421, 507, 500, 494, 248, 376, 745, 633, 253, 374, 302, 288, 342, 362, 346, 329, - 262, 268, 239, 2140, 257, 803, 733, 719, 715, 708, 726, 114, 701, 881, 873, 875, 981, 877, 904, 900, - 898, 2480, 1066, 1105, 1127, 1092, 1088, 1211, 1206, 1146, 1083, 1148, 401, 393, 1328, 1346, 1322, 1335, - 1318, 1342, 1298, 1418, 1413, 1350, 1355, 1312, 2467, 2448, 2464, 909, 23, 411, 426, 2138, 2415, 1593, - 1656, 1683, 1665, 1689, 1661, 1638, 1641, 1620, 1622, 1649, 1627, 1634, 1630, 1658, 1663, 1670, 1687, - 1616, 1749, 1610, 1590, 1847, 1863, 1918, 1845, 1849, 1856, 1852, 1867, 1987, 2012, 2026, 2085, 2018, - 2021, 2151, 2237, 2262, 2322, 2327, 2259, 2253, 2251, 2457, 2395, 2419, 2412, 2553, 2578, 2580, 2582, - 2636, 2693, 2707, 2767, 2713, 2571, 2574 + 2662, 213, 373, 279, 425, 511, 504, 498, 248, 380, 749, 637, 253, 378, 305, 291, 345, 365, 349, 332, + 262, 268, 239, 2341, 257, 807, 737, 723, 719, 712, 730, 114, 705, 885, 877, 879, 985, 881, 908, 904, + 902, 2682, 1070, 1109, 1131, 1096, 1092, 1215, 1210, 1150, 1087, 1152, 405, 397, 2043, 1332, 1350, 1326, + 1339, 1322, 1346, 1302, 1422, 1417, 1354, 1359, 1316, 2669, 1484, 2650, 2666, 913, 23, 415, 430, 2339, + 2617, 1788, 1851, 1878, 1860, 1884, 1856, 1833, 1836, 1815, 1817, 1844, 1822, 1829, 1825, 1853, 1858, + 1865, 1882, 1811, 1944, 1805, 1785, 2048, 2064, 2119, 2046, 2050, 2057, 2053, 2068, 2188, 2213, 2227, + 2286, 2219, 2222, 2352, 1669, 2438, 2463, 2524, 2529, 2460, 2454, 2452, 2659, 2597, 2621, 2614, 2755, + 2780, 2782, 2784, 2838, 2895, 2909, 2969, 2915, 2773, 2776 ] }, { "title": "Type Aliases", "children": [ - 425, 506, 637, 438, 256, 261, 749, 807, 1694, 985, 986, 1213, 31, 750, 1420, 2479, 1693, 1692, 1754, - 1695, 1358, 2011, 2005, 2326, 2261, 2258, 2577, 2576, 2573 + 429, 510, 641, 442, 256, 261, 753, 811, 1889, 989, 990, 1217, 31, 754, 1424, 2681, 1888, 1887, 1949, + 1890, 1362, 2212, 2206, 2528, 2462, 2459, 2779, 2778, 2775 ] } ], "packageName": "apify-client", - "packageVersion": "2.19.0", + "packageVersion": "2.20.0", "readme": [ { "kind": "text", @@ -48582,5989 +56530,6737 @@ }, "276": { "sourceFileName": "../src/resource_clients/actor.ts", - "qualifiedName": "ActorStartOptions.restartOnError" + "qualifiedName": "ActorStartOptions.maxTotalChargeUsd" }, "277": { "sourceFileName": "../src/resource_clients/actor.ts", - "qualifiedName": "ActorStartOptions.forcePermissionLevel" + "qualifiedName": "ActorStartOptions.restartOnError" }, "278": { "sourceFileName": "../src/resource_clients/actor.ts", - "qualifiedName": "ActorCallOptions" + "qualifiedName": "ActorStartOptions.forcePermissionLevel" }, "279": { "sourceFileName": "../src/resource_clients/actor.ts", - "qualifiedName": "ActorCallOptions.waitSecs" + "qualifiedName": "ActorCallOptions" }, "280": { "sourceFileName": "../src/resource_clients/actor.ts", - "qualifiedName": "restartOnError" + "qualifiedName": "ActorCallOptions.waitSecs" }, "281": { "sourceFileName": "../src/resource_clients/actor.ts", - "qualifiedName": "build" + "qualifiedName": "ActorCallOptions.log" }, "282": { "sourceFileName": "../src/resource_clients/actor.ts", - "qualifiedName": "contentType" + "qualifiedName": "restartOnError" }, "283": { "sourceFileName": "../src/resource_clients/actor.ts", - "qualifiedName": "memory" + "qualifiedName": "build" }, "284": { "sourceFileName": "../src/resource_clients/actor.ts", - "qualifiedName": "timeout" + "qualifiedName": "contentType" }, "285": { "sourceFileName": "../src/resource_clients/actor.ts", - "qualifiedName": "webhooks" + "qualifiedName": "memory" }, "286": { "sourceFileName": "../src/resource_clients/actor.ts", - "qualifiedName": "maxItems" + "qualifiedName": "timeout" }, "287": { "sourceFileName": "../src/resource_clients/actor.ts", - "qualifiedName": "forcePermissionLevel" + "qualifiedName": "webhooks" }, "288": { "sourceFileName": "../src/resource_clients/actor.ts", - "qualifiedName": "ActorRunListItem" + "qualifiedName": "maxItems" }, "289": { + "sourceFileName": "../src/resource_clients/actor.ts", + "qualifiedName": "maxTotalChargeUsd" + }, + "290": { + "sourceFileName": "../src/resource_clients/actor.ts", + "qualifiedName": "forcePermissionLevel" + }, + "291": { + "sourceFileName": "../src/resource_clients/actor.ts", + "qualifiedName": "ActorRunListItem" + }, + "292": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.id" }, - "290": { + "293": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.actId" }, - "291": { + "294": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.actorTaskId" }, - "292": { + "295": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.startedAt" }, - "293": { + "296": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.finishedAt" }, - "294": { + "297": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.status" }, - "295": { + "298": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.meta" }, - "296": { + "299": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.buildId" }, - "297": { + "300": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.buildNumber" }, - "298": { + "301": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.defaultKeyValueStoreId" }, - "299": { + "302": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.defaultDatasetId" }, - "300": { + "303": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.defaultRequestQueueId" }, - "301": { + "304": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.usageTotalUsd" }, - "302": { + "305": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun" }, - "303": { + "306": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun.userId" }, - "304": { + "307": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun.statusMessage" }, - "305": { + "308": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun.stats" }, - "306": { + "309": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun.options" }, - "307": { + "310": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun.exitCode" }, - "308": { + "311": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun.containerUrl" }, - "309": { + "312": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun.isContainerServerReady" }, - "310": { + "313": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun.gitBranchName" }, - "311": { + "314": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun.usage" }, - "312": { + "315": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun.usageUsd" }, - "313": { + "316": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun.pricingInfo" }, - "314": { + "317": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun.chargedEventCounts" }, - "315": { + "318": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRun.generalAccess" }, - "316": { + "319": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.id" }, - "317": { + "320": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.actId" }, - "318": { + "321": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.actorTaskId" }, - "319": { + "322": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.startedAt" }, - "320": { + "323": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.finishedAt" }, - "321": { + "324": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.status" }, - "322": { + "325": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.meta" }, - "323": { + "326": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.buildId" }, - "324": { + "327": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.buildNumber" }, - "325": { + "328": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.defaultKeyValueStoreId" }, - "326": { + "329": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.defaultDatasetId" }, - "327": { + "330": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.defaultRequestQueueId" }, - "328": { + "331": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunListItem.usageTotalUsd" }, - "329": { + "332": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunUsage" }, - "330": { + "333": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunUsage.ACTOR_COMPUTE_UNITS" }, - "331": { + "334": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunUsage.DATASET_READS" }, - "332": { + "335": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunUsage.DATASET_WRITES" }, - "333": { + "336": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunUsage.KEY_VALUE_STORE_READS" }, - "334": { + "337": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunUsage.KEY_VALUE_STORE_WRITES" }, - "335": { + "338": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunUsage.KEY_VALUE_STORE_LISTS" }, - "336": { + "339": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunUsage.REQUEST_QUEUE_READS" }, - "337": { + "340": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunUsage.REQUEST_QUEUE_WRITES" }, - "338": { + "341": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunUsage.DATA_TRANSFER_INTERNAL_GBYTES" }, - "339": { + "342": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunUsage.DATA_TRANSFER_EXTERNAL_GBYTES" }, - "340": { + "343": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunUsage.PROXY_RESIDENTIAL_TRANSFER_GBYTES" }, - "341": { + "344": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunUsage.PROXY_SERPS" }, - "342": { + "345": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunMeta" }, - "343": { + "346": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunMeta.origin" }, - "344": { + "347": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunMeta.clientIp" }, - "345": { + "348": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunMeta.userAgent" }, - "346": { + "349": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats" }, - "347": { + "350": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.inputBodyLen" }, - "348": { + "351": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.restartCount" }, - "349": { + "352": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.resurrectCount" }, - "350": { + "353": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.memAvgBytes" }, - "351": { + "354": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.memMaxBytes" }, - "352": { + "355": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.memCurrentBytes" }, - "353": { + "356": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.cpuAvgUsage" }, - "354": { + "357": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.cpuMaxUsage" }, - "355": { + "358": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.cpuCurrentUsage" }, - "356": { + "359": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.netRxBytes" }, - "357": { + "360": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.netTxBytes" }, - "358": { + "361": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.durationMillis" }, - "359": { + "362": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.runTimeSecs" }, - "360": { + "363": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.metamorph" }, - "361": { + "364": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunStats.computeUnits" }, - "362": { + "365": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunOptions" }, - "363": { + "366": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunOptions.build" }, - "364": { + "367": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunOptions.timeoutSecs" }, - "365": { + "368": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunOptions.memoryMbytes" }, - "366": { + "369": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunOptions.diskMbytes" }, - "367": { + "370": { + "sourceFileName": "../src/resource_clients/actor.ts", + "qualifiedName": "ActorRunOptions.maxItems" + }, + "371": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunOptions.maxTotalChargeUsd" }, - "368": { + "372": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunOptions.restartOnError" }, - "369": { + "373": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorBuildOptions" }, - "370": { + "374": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorBuildOptions.betaPackages" }, - "371": { + "375": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorBuildOptions.tag" }, - "372": { + "376": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorBuildOptions.useCache" }, - "373": { + "377": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorBuildOptions.waitForFinish" }, - "374": { + "378": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorLastRunOptions" }, - "375": { + "379": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorLastRunOptions.status" }, - "376": { + "380": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition" }, - "377": { + "381": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.actorSpecification" }, - "378": { + "382": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.name" }, - "379": { + "383": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.version" }, - "380": { + "384": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.buildTag" }, - "381": { + "385": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.environmentVariables" }, - "382": { + "386": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.dockerfile" }, - "383": { + "387": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.dockerContextDir" }, - "384": { + "388": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.readme" }, - "385": { + "389": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.input" }, - "386": { + "390": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.changelog" }, - "387": { + "391": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.storages" }, - "388": { + "392": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "__type" }, - "389": { + "393": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "__type.dataset" }, - "390": { + "394": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.minMemoryMbytes" }, - "391": { + "395": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.maxMemoryMbytes" }, - "392": { + "396": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorDefinition.usesStandbyMode" }, - "393": { + "397": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "FreeActorPricingInfo" }, - "394": { + "398": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "FreeActorPricingInfo.pricingModel" }, - "395": { + "399": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.apifyMarginPercentage" }, - "396": { + "400": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.createdAt" }, - "397": { + "401": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.startedAt" }, - "398": { + "402": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.notifiedAboutFutureChangeAt" }, - "399": { + "403": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.notifiedAboutChangeAt" }, - "400": { + "404": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.reasonForChange" }, - "401": { + "405": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "FlatPricePerMonthActorPricingInfo" }, - "402": { + "406": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "FlatPricePerMonthActorPricingInfo.pricingModel" }, - "403": { + "407": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "FlatPricePerMonthActorPricingInfo.trialMinutes" }, - "404": { + "408": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "FlatPricePerMonthActorPricingInfo.pricePerUnitUsd" }, - "405": { + "409": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.apifyMarginPercentage" }, - "406": { + "410": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.createdAt" }, - "407": { + "411": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.startedAt" }, - "408": { + "412": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.notifiedAboutFutureChangeAt" }, - "409": { + "413": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.notifiedAboutChangeAt" }, - "410": { + "414": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.reasonForChange" }, - "411": { + "415": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "PricePerDatasetItemActorPricingInfo" }, - "412": { + "416": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "PricePerDatasetItemActorPricingInfo.pricingModel" }, - "413": { + "417": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "PricePerDatasetItemActorPricingInfo.unitName" }, - "414": { + "418": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "PricePerDatasetItemActorPricingInfo.pricePerUnitUsd" }, - "415": { + "419": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.apifyMarginPercentage" }, - "416": { + "420": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.createdAt" }, - "417": { + "421": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.startedAt" }, - "418": { + "422": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.notifiedAboutFutureChangeAt" }, - "419": { + "423": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.notifiedAboutChangeAt" }, - "420": { + "424": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.reasonForChange" }, - "421": { + "425": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorChargeEvent" }, - "422": { + "426": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorChargeEvent.eventPriceUsd" }, - "423": { + "427": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorChargeEvent.eventTitle" }, - "424": { + "428": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorChargeEvent.eventDescription" }, - "425": { + "429": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorChargeEvents" }, - "426": { + "430": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "PricePerEventActorPricingInfo" }, - "427": { + "431": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "PricePerEventActorPricingInfo.pricingModel" }, - "428": { + "432": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "PricePerEventActorPricingInfo.pricingPerEvent" }, - "429": { + "433": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "__type" }, - "430": { + "434": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "__type.actorChargeEvents" }, - "431": { + "435": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "PricePerEventActorPricingInfo.minimalMaxTotalChargeUsd" }, - "432": { + "436": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.apifyMarginPercentage" }, - "433": { + "437": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.createdAt" }, - "434": { + "438": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.startedAt" }, - "435": { + "439": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.notifiedAboutFutureChangeAt" }, - "436": { + "440": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.notifiedAboutChangeAt" }, - "437": { + "441": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "CommonActorPricingInfo.reasonForChange" }, - "438": { + "442": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "ActorRunPricingInfo" }, - "439": { + "443": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionClient" }, - "443": { + "447": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionClient.list" }, - "444": { + "448": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionClient.list" }, - "445": { + "449": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "options" }, - "446": { + "450": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionClient.create" }, - "447": { + "451": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionClient.create" }, - "448": { + "452": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "actor" }, - "465": { + "469": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "466": { + "470": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "467": { + "471": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "468": { + "472": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "469": { + "473": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "470": { + "474": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "471": { + "475": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "472": { + "476": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "473": { + "477": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "491": { + "495": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorListSortBy" }, - "492": { + "496": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorListSortBy.CREATED_AT" }, - "493": { + "497": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorListSortBy.LAST_RUN_STARTED_AT" }, - "494": { + "498": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionListOptions" }, - "495": { + "499": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionListOptions.my" }, - "496": { + "500": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionListOptions.limit" }, - "497": { + "501": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionListOptions.offset" }, - "498": { + "502": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionListOptions.desc" }, - "499": { + "503": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionListOptions.sortBy" }, - "500": { + "504": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionListItem" }, - "501": { + "505": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionListItem.id" }, - "502": { + "506": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionListItem.createdAt" }, - "503": { + "507": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionListItem.modifiedAt" }, - "504": { + "508": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionListItem.name" }, - "505": { + "509": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionListItem.username" }, - "506": { + "510": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionListResult" }, - "507": { + "511": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions" }, - "508": { + "512": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions.categories" }, - "509": { + "513": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions.defaultRunOptions" }, - "510": { + "514": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions.description" }, - "511": { + "515": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions.exampleRunInput" }, - "512": { + "516": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions.isDeprecated" }, - "513": { + "517": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions.isPublic" }, - "514": { + "518": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions.name" }, - "515": { + "519": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions.restartOnError" }, - "516": { + "520": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions.seoTitle" }, - "517": { + "521": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions.seoDescription" }, - "518": { + "522": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions.title" }, - "519": { + "523": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions.versions" }, - "520": { + "524": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "ActorCollectionCreateOptions.actorStandby" }, - "521": { + "525": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "__type" }, - "522": { + "526": { "sourceFileName": "../src/resource_clients/actor_collection.ts", "qualifiedName": "__type.isEnabled" }, - "523": { + "527": { "sourceFileName": "../src/resource_clients/actor_env_var.ts", "qualifiedName": "ActorEnvVarClient" }, - "527": { + "531": { "sourceFileName": "../src/resource_clients/actor_env_var.ts", "qualifiedName": "ActorEnvVarClient.get" }, - "528": { + "532": { "sourceFileName": "../src/resource_clients/actor_env_var.ts", "qualifiedName": "ActorEnvVarClient.get" }, - "529": { + "533": { "sourceFileName": "../src/resource_clients/actor_env_var.ts", "qualifiedName": "ActorEnvVarClient.update" }, - "530": { + "534": { "sourceFileName": "../src/resource_clients/actor_env_var.ts", "qualifiedName": "ActorEnvVarClient.update" }, - "531": { + "535": { "sourceFileName": "../src/resource_clients/actor_env_var.ts", "qualifiedName": "actorEnvVar" }, - "532": { + "536": { "sourceFileName": "../src/resource_clients/actor_env_var.ts", "qualifiedName": "ActorEnvVarClient.delete" }, - "533": { + "537": { "sourceFileName": "../src/resource_clients/actor_env_var.ts", "qualifiedName": "ActorEnvVarClient.delete" }, - "555": { + "559": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "556": { + "560": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "557": { + "561": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "558": { + "562": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "559": { + "563": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "560": { + "564": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "561": { + "565": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "562": { + "566": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "563": { + "567": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "581": { + "585": { "sourceFileName": "../src/resource_clients/actor_env_var_collection.ts", "qualifiedName": "ActorEnvVarCollectionClient" }, - "585": { + "589": { "sourceFileName": "../src/resource_clients/actor_env_var_collection.ts", "qualifiedName": "ActorEnvVarCollectionClient.list" }, - "586": { + "590": { "sourceFileName": "../src/resource_clients/actor_env_var_collection.ts", "qualifiedName": "ActorEnvVarCollectionClient.list" }, - "587": { + "591": { "sourceFileName": "../src/resource_clients/actor_env_var_collection.ts", "qualifiedName": "options" }, - "588": { + "592": { "sourceFileName": "../src/resource_clients/actor_env_var_collection.ts", "qualifiedName": "ActorEnvVarCollectionClient.create" }, - "589": { + "593": { "sourceFileName": "../src/resource_clients/actor_env_var_collection.ts", "qualifiedName": "ActorEnvVarCollectionClient.create" }, - "590": { + "594": { "sourceFileName": "../src/resource_clients/actor_env_var_collection.ts", "qualifiedName": "actorEnvVar" }, - "607": { + "611": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "608": { + "612": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "609": { + "613": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "610": { + "614": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "611": { + "615": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "612": { + "616": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "613": { + "617": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "614": { + "618": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "615": { + "619": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "633": { + "637": { "sourceFileName": "../src/resource_clients/actor_env_var_collection.ts", "qualifiedName": "ActorEnvVarCollectionListOptions" }, - "634": { + "638": { "sourceFileName": "../src/resource_clients/actor_env_var_collection.ts", "qualifiedName": "ActorEnvVarCollectionListOptions.limit" }, - "635": { + "639": { "sourceFileName": "../src/resource_clients/actor_env_var_collection.ts", "qualifiedName": "ActorEnvVarCollectionListOptions.offset" }, - "636": { + "640": { "sourceFileName": "../src/resource_clients/actor_env_var_collection.ts", "qualifiedName": "ActorEnvVarCollectionListOptions.desc" }, - "637": { + "641": { "sourceFileName": "../src/resource_clients/actor_env_var_collection.ts", "qualifiedName": "ActorEnvVarListResult" }, - "638": { + "642": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionClient" }, - "642": { + "646": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionClient.get" }, - "643": { + "647": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionClient.get" }, - "644": { + "648": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionClient.update" }, - "645": { + "649": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionClient.update" }, - "646": { + "650": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "newFields" }, - "647": { + "651": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionClient.delete" }, - "648": { + "652": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionClient.delete" }, - "649": { + "653": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionClient.envVar" }, - "650": { + "654": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionClient.envVar" }, - "651": { + "655": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "envVarName" }, - "652": { + "656": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionClient.envVars" }, - "653": { + "657": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionClient.envVars" }, - "675": { + "679": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "676": { + "680": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "677": { + "681": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "678": { + "682": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "679": { + "683": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "680": { + "684": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "681": { + "685": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "682": { + "686": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "683": { + "687": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "701": { + "705": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion" }, - "702": { + "706": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.versionNumber" }, - "703": { + "707": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.sourceType" }, - "704": { + "708": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.envVars" }, - "705": { + "709": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.applyEnvVarsToBuild" }, - "706": { + "710": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.buildTag" }, - "707": { + "711": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.SourceType" }, - "708": { + "712": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionSourceFiles" }, - "709": { + "713": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionSourceFiles.sourceFiles" }, - "710": { + "714": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.versionNumber" }, - "711": { + "715": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.sourceType" }, - "712": { + "716": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.envVars" }, - "713": { + "717": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.applyEnvVarsToBuild" }, - "714": { + "718": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.buildTag" }, - "715": { + "719": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionSourceFile" }, - "716": { + "720": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionSourceFile.name" }, - "717": { + "721": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionSourceFile.format" }, - "718": { + "722": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionSourceFile.content" }, - "719": { + "723": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionGitRepo" }, - "720": { + "724": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionGitRepo.gitRepoUrl" }, - "721": { + "725": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.versionNumber" }, - "722": { + "726": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.sourceType" }, - "723": { + "727": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.envVars" }, - "724": { + "728": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.applyEnvVarsToBuild" }, - "725": { + "729": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.buildTag" }, - "726": { + "730": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionTarball" }, - "727": { + "731": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionTarball.tarballUrl" }, - "728": { + "732": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.versionNumber" }, - "729": { + "733": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.sourceType" }, - "730": { + "734": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.envVars" }, - "731": { + "735": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.applyEnvVarsToBuild" }, - "732": { + "736": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.buildTag" }, - "733": { + "737": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionGitHubGist" }, - "734": { + "738": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersionGitHubGist.gitHubGistUrl" }, - "735": { + "739": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.versionNumber" }, - "736": { + "740": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.sourceType" }, - "737": { + "741": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.envVars" }, - "738": { + "742": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.applyEnvVarsToBuild" }, - "739": { + "743": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "BaseActorVersion.buildTag" }, - "740": { + "744": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorSourceType" }, - "741": { + "745": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorSourceType.SourceFiles" }, - "742": { + "746": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorSourceType.GitRepo" }, - "743": { + "747": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorSourceType.Tarball" }, - "744": { + "748": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorSourceType.GitHubGist" }, - "745": { + "749": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorEnvironmentVariable" }, - "746": { + "750": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorEnvironmentVariable.name" }, - "747": { + "751": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorEnvironmentVariable.value" }, - "748": { + "752": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorEnvironmentVariable.isSecret" }, - "749": { + "753": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "ActorVersion" }, - "750": { + "754": { "sourceFileName": "../src/resource_clients/actor_version.ts", "qualifiedName": "FinalActorVersion" }, - "751": { + "755": { "sourceFileName": "../src/resource_clients/actor_version_collection.ts", "qualifiedName": "ActorVersionCollectionClient" }, - "755": { + "759": { "sourceFileName": "../src/resource_clients/actor_version_collection.ts", "qualifiedName": "ActorVersionCollectionClient.list" }, - "756": { + "760": { "sourceFileName": "../src/resource_clients/actor_version_collection.ts", "qualifiedName": "ActorVersionCollectionClient.list" }, - "757": { + "761": { "sourceFileName": "../src/resource_clients/actor_version_collection.ts", "qualifiedName": "options" }, - "758": { + "762": { "sourceFileName": "../src/resource_clients/actor_version_collection.ts", "qualifiedName": "ActorVersionCollectionClient.create" }, - "759": { + "763": { "sourceFileName": "../src/resource_clients/actor_version_collection.ts", "qualifiedName": "ActorVersionCollectionClient.create" }, - "760": { + "764": { "sourceFileName": "../src/resource_clients/actor_version_collection.ts", "qualifiedName": "actorVersion" }, - "777": { + "781": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "778": { + "782": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "779": { + "783": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "780": { + "784": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "781": { + "785": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "782": { + "786": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "783": { + "787": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "784": { + "788": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "785": { + "789": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "803": { + "807": { "sourceFileName": "../src/resource_clients/actor_version_collection.ts", "qualifiedName": "ActorVersionCollectionListOptions" }, - "804": { + "808": { "sourceFileName": "../src/resource_clients/actor_version_collection.ts", "qualifiedName": "ActorVersionCollectionListOptions.limit" }, - "805": { + "809": { "sourceFileName": "../src/resource_clients/actor_version_collection.ts", "qualifiedName": "ActorVersionCollectionListOptions.offset" }, - "806": { + "810": { "sourceFileName": "../src/resource_clients/actor_version_collection.ts", "qualifiedName": "ActorVersionCollectionListOptions.desc" }, - "807": { + "811": { "sourceFileName": "../src/resource_clients/actor_version_collection.ts", "qualifiedName": "ActorVersionListResult" }, - "808": { + "812": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClient" }, - "812": { + "816": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClient.get" }, - "813": { + "817": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClient.get" }, - "814": { + "818": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "options" }, - "815": { + "819": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClient.abort" }, - "816": { + "820": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClient.abort" }, - "817": { + "821": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClient.delete" }, - "818": { + "822": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClient.delete" }, - "819": { + "823": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClient.getOpenApiDefinition" }, - "820": { + "824": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClient.getOpenApiDefinition" }, - "821": { + "825": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClient.waitForFinish" }, - "822": { + "826": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClient.waitForFinish" }, - "823": { + "827": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "options" }, - "824": { + "828": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClient.log" }, - "825": { + "829": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClient.log" }, - "847": { + "851": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "848": { + "852": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "849": { + "853": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "850": { + "854": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "851": { + "855": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "852": { + "856": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "853": { + "857": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "854": { + "858": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "855": { + "859": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "873": { + "877": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClientGetOptions" }, - "874": { + "878": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClientGetOptions.waitForFinish" }, - "875": { + "879": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClientWaitForFinishOptions" }, - "876": { + "880": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildClientWaitForFinishOptions.waitSecs" }, - "877": { + "881": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildMeta" }, - "878": { + "882": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildMeta.origin" }, - "879": { + "883": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildMeta.clientIp" }, - "880": { + "884": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildMeta.userAgent" }, - "881": { + "885": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build" }, - "882": { + "886": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.id" }, - "883": { + "887": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.actId" }, - "884": { + "888": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.userId" }, - "885": { + "889": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.startedAt" }, - "886": { + "890": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.finishedAt" }, - "887": { + "891": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.status" }, - "888": { + "892": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.meta" }, - "889": { + "893": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.stats" }, - "890": { + "894": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.options" }, - "891": { + "895": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.inputSchema" }, - "892": { + "896": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.readme" }, - "893": { + "897": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.buildNumber" }, - "894": { + "898": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.usage" }, - "895": { + "899": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.usageTotalUsd" }, - "896": { + "900": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.usageUsd" }, - "897": { + "901": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "Build.actorDefinition" }, - "898": { + "902": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildUsage" }, - "899": { + "903": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildUsage.ACTOR_COMPUTE_UNITS" }, - "900": { + "904": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildStats" }, - "901": { + "905": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildStats.durationMillis" }, - "902": { + "906": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildStats.runTimeSecs" }, - "903": { + "907": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildStats.computeUnits" }, - "904": { + "908": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildOptions" }, - "905": { + "909": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildOptions.useCache" }, - "906": { + "910": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildOptions.betaPackages" }, - "907": { + "911": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildOptions.memoryMbytes" }, - "908": { + "912": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "BuildOptions.diskMbytes" }, - "909": { + "913": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "OpenApiDefinition" }, - "910": { + "914": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "OpenApiDefinition.openapi" }, - "911": { + "915": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "OpenApiDefinition.info" }, - "912": { + "916": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type" }, - "913": { + "917": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type.title" }, - "914": { + "918": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type.description" }, - "915": { + "919": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type.version" }, - "916": { + "920": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type.x-build-id" }, - "917": { + "921": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "OpenApiDefinition.servers" }, - "918": { + "922": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type" }, - "919": { + "923": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type.url" }, - "920": { + "924": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "OpenApiDefinition.paths" }, - "921": { + "925": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type" }, - "922": { + "926": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type.__index" }, - "924": { + "928": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type" }, - "925": { + "929": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type.post" }, - "926": { + "930": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "OpenApiDefinition.components" }, - "927": { + "931": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type" }, - "928": { + "932": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type.schemas" }, - "929": { + "933": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type" }, - "930": { + "934": { "sourceFileName": "../src/resource_clients/build.ts", "qualifiedName": "__type.__index" }, - "932": { + "936": { "sourceFileName": "../src/resource_clients/build_collection.ts", "qualifiedName": "BuildCollectionClient" }, - "936": { + "940": { "sourceFileName": "../src/resource_clients/build_collection.ts", "qualifiedName": "BuildCollectionClient.list" }, - "937": { + "941": { "sourceFileName": "../src/resource_clients/build_collection.ts", "qualifiedName": "BuildCollectionClient.list" }, - "938": { + "942": { "sourceFileName": "../src/resource_clients/build_collection.ts", "qualifiedName": "options" }, - "955": { + "959": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "956": { + "960": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "957": { + "961": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "958": { + "962": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "959": { + "963": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "960": { + "964": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "961": { + "965": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "962": { + "966": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "963": { + "967": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "981": { + "985": { "sourceFileName": "../src/resource_clients/build_collection.ts", "qualifiedName": "BuildCollectionClientListOptions" }, - "982": { + "986": { "sourceFileName": "../src/resource_clients/build_collection.ts", "qualifiedName": "BuildCollectionClientListOptions.limit" }, - "983": { + "987": { "sourceFileName": "../src/resource_clients/build_collection.ts", "qualifiedName": "BuildCollectionClientListOptions.offset" }, - "984": { + "988": { "sourceFileName": "../src/resource_clients/build_collection.ts", "qualifiedName": "BuildCollectionClientListOptions.desc" }, - "985": { + "989": { "sourceFileName": "../src/resource_clients/build_collection.ts", "qualifiedName": "BuildCollectionClientListItem" }, - "986": { + "990": { "sourceFileName": "../src/resource_clients/build_collection.ts", "qualifiedName": "BuildCollectionClientListResult" }, - "987": { + "991": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient" }, - "992": { + "996": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.get" }, - "993": { + "997": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.get" }, - "994": { + "998": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.update" }, - "995": { + "999": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.update" }, - "996": { + "1000": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "newFields" }, - "997": { + "1001": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.delete" }, - "998": { + "1002": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.delete" }, - "999": { + "1003": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.listItems" }, - "1000": { + "1004": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.listItems" }, - "1001": { + "1005": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "options" }, - "1002": { + "1006": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.downloadItems" }, - "1003": { + "1007": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.downloadItems" }, - "1004": { + "1008": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "format" }, - "1005": { + "1009": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "options" }, - "1006": { + "1010": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.pushItems" }, - "1007": { + "1011": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.pushItems" }, - "1008": { + "1012": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "items" }, - "1009": { + "1013": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.getStatistics" }, - "1010": { + "1014": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.getStatistics" }, - "1011": { + "1015": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.createItemsPublicUrl" }, - "1012": { + "1016": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.createItemsPublicUrl" }, - "1013": { + "1017": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "options" }, - "1039": { + "1043": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "1040": { + "1044": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "1041": { + "1045": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "1042": { + "1046": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "1043": { + "1047": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "1044": { + "1048": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "1045": { + "1049": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "1046": { + "1050": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "1047": { + "1051": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "1065": { + "1069": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClient.Data" }, - "1066": { + "1070": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset" }, - "1067": { + "1071": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.id" }, - "1068": { + "1072": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.name" }, - "1069": { + "1073": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.title" }, - "1070": { + "1074": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.userId" }, - "1071": { + "1075": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.createdAt" }, - "1072": { + "1076": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.modifiedAt" }, - "1073": { + "1077": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.accessedAt" }, - "1074": { + "1078": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.itemCount" }, - "1075": { + "1079": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.cleanItemCount" }, - "1076": { + "1080": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.actId" }, - "1077": { + "1081": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.actRunId" }, - "1078": { + "1082": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.stats" }, - "1079": { + "1083": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.fields" }, - "1080": { + "1084": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.generalAccess" }, - "1081": { + "1085": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.urlSigningSecretKey" }, - "1082": { + "1086": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "Dataset.itemsPublicUrl" }, - "1083": { + "1087": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetStats" }, - "1084": { + "1088": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetStats.readCount" }, - "1085": { + "1089": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetStats.writeCount" }, - "1086": { + "1090": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetStats.deleteCount" }, - "1087": { + "1091": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetStats.storageBytes" }, - "1088": { + "1092": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientUpdateOptions" }, - "1089": { + "1093": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientUpdateOptions.name" }, - "1090": { + "1094": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientUpdateOptions.title" }, - "1091": { + "1095": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientUpdateOptions.generalAccess" }, - "1092": { + "1096": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions" }, - "1093": { + "1097": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.clean" }, - "1094": { + "1098": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.desc" }, - "1095": { + "1099": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.flatten" }, - "1096": { + "1100": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.fields" }, - "1097": { + "1101": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.omit" }, - "1098": { + "1102": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.limit" }, - "1099": { + "1103": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.offset" }, - "1100": { + "1104": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.skipEmpty" }, - "1101": { + "1105": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.skipHidden" }, - "1102": { + "1106": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.unwind" }, - "1103": { + "1107": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.view" }, - "1104": { + "1108": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.signature" }, - "1105": { + "1109": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientCreateItemsUrlOptions" }, - "1106": { + "1110": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientCreateItemsUrlOptions.expiresInSecs" }, - "1107": { + "1111": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.clean" }, - "1108": { + "1112": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.desc" }, - "1109": { + "1113": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.flatten" }, - "1110": { + "1114": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.fields" }, - "1111": { + "1115": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.omit" }, - "1112": { + "1116": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.limit" }, - "1113": { + "1117": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.offset" }, - "1114": { + "1118": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.skipEmpty" }, - "1115": { + "1119": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.skipHidden" }, - "1116": { + "1120": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.unwind" }, - "1117": { + "1121": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.view" }, - "1118": { + "1122": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.signature" }, - "1119": { + "1123": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DownloadItemsFormat" }, - "1120": { + "1124": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DownloadItemsFormat.JSON" }, - "1121": { + "1125": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DownloadItemsFormat.JSONL" }, - "1122": { + "1126": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DownloadItemsFormat.XML" }, - "1123": { + "1127": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DownloadItemsFormat.HTML" }, - "1124": { + "1128": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DownloadItemsFormat.CSV" }, - "1125": { + "1129": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DownloadItemsFormat.XLSX" }, - "1126": { + "1130": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DownloadItemsFormat.RSS" }, - "1127": { + "1131": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientDownloadItemsOptions" }, - "1128": { + "1132": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientDownloadItemsOptions.attachment" }, - "1129": { + "1133": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientDownloadItemsOptions.bom" }, - "1130": { + "1134": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientDownloadItemsOptions.delimiter" }, - "1131": { + "1135": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientDownloadItemsOptions.skipHeaderRow" }, - "1132": { + "1136": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientDownloadItemsOptions.xmlRoot" }, - "1133": { + "1137": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientDownloadItemsOptions.xmlRow" }, - "1134": { + "1138": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.clean" }, - "1135": { + "1139": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.desc" }, - "1136": { + "1140": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.flatten" }, - "1137": { + "1141": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.fields" }, - "1138": { + "1142": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.omit" }, - "1139": { + "1143": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.limit" }, - "1140": { + "1144": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.offset" }, - "1141": { + "1145": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.skipEmpty" }, - "1142": { + "1146": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.skipHidden" }, - "1143": { + "1147": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.unwind" }, - "1144": { + "1148": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.view" }, - "1145": { + "1149": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetClientListItemOptions.signature" }, - "1146": { + "1150": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetStatistics" }, - "1147": { + "1151": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "DatasetStatistics.fieldStatistics" }, - "1148": { + "1152": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "FieldStatistics" }, - "1149": { + "1153": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "FieldStatistics.min" }, - "1150": { + "1154": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "FieldStatistics.max" }, - "1151": { + "1155": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "FieldStatistics.nullCount" }, - "1152": { + "1156": { "sourceFileName": "../src/resource_clients/dataset.ts", "qualifiedName": "FieldStatistics.emptyCount" }, - "1153": { + "1157": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "DatasetCollectionClient" }, - "1157": { + "1161": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "DatasetCollectionClient.list" }, - "1158": { + "1162": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "DatasetCollectionClient.list" }, - "1159": { + "1163": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "options" }, - "1160": { + "1164": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "DatasetCollectionClient.getOrCreate" }, - "1161": { + "1165": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "DatasetCollectionClient.getOrCreate" }, - "1162": { + "1166": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "name" }, - "1163": { + "1167": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "options" }, - "1180": { + "1184": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "1181": { + "1185": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "1182": { + "1186": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "1183": { + "1187": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "1184": { + "1188": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "1185": { + "1189": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "1186": { + "1190": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "1187": { + "1191": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "1188": { + "1192": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "1206": { + "1210": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "DatasetCollectionClientListOptions" }, - "1207": { + "1211": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "DatasetCollectionClientListOptions.unnamed" }, - "1208": { + "1212": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "DatasetCollectionClientListOptions.limit" }, - "1209": { + "1213": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "DatasetCollectionClientListOptions.offset" }, - "1210": { + "1214": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "DatasetCollectionClientListOptions.desc" }, - "1211": { + "1215": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "DatasetCollectionClientGetOrCreateOptions" }, - "1212": { + "1216": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "DatasetCollectionClientGetOrCreateOptions.schema" }, - "1213": { + "1217": { "sourceFileName": "../src/resource_clients/dataset_collection.ts", "qualifiedName": "DatasetCollectionClientListResult" }, - "1214": { + "1218": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient" }, - "1218": { + "1222": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.get" }, - "1219": { + "1223": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.get" }, - "1220": { + "1224": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.update" }, - "1221": { + "1225": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.update" }, - "1222": { + "1226": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "newFields" }, - "1223": { + "1227": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.delete" }, - "1224": { + "1228": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.delete" }, - "1225": { + "1229": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.listKeys" }, - "1226": { + "1230": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.listKeys" }, - "1227": { + "1231": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "options" }, - "1228": { + "1232": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.getRecordPublicUrl" }, - "1229": { + "1233": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.getRecordPublicUrl" }, - "1230": { + "1234": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "key" }, - "1231": { + "1235": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.createKeysPublicUrl" }, - "1232": { + "1236": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.createKeysPublicUrl" }, - "1233": { + "1237": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "options" }, - "1234": { + "1238": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.recordExists" }, - "1235": { + "1239": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.recordExists" }, - "1236": { + "1240": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "key" }, - "1237": { + "1241": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.getRecord" }, - "1238": { + "1242": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.getRecord" }, - "1239": { + "1243": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "key" }, - "1240": { + "1244": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.getRecord" }, - "1241": { + "1245": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "Options" }, - "1242": { + "1246": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "key" }, - "1243": { + "1247": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "options" }, - "1244": { + "1248": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.setRecord" }, - "1245": { + "1249": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.setRecord" }, - "1246": { + "1250": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "record" }, - "1247": { + "1251": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "options" }, - "1248": { + "1252": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.deleteRecord" }, - "1249": { + "1253": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreClient.deleteRecord" }, - "1250": { + "1254": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "key" }, - "1272": { + "1276": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "1273": { + "1277": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "1274": { + "1278": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "1275": { + "1279": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "1276": { + "1280": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "1277": { + "1281": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "1278": { + "1282": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "1279": { + "1283": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "1280": { + "1284": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "1298": { + "1302": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore" }, - "1299": { + "1303": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore.id" }, - "1300": { + "1304": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore.name" }, - "1301": { + "1305": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore.title" }, - "1302": { + "1306": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore.userId" }, - "1303": { + "1307": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore.createdAt" }, - "1304": { + "1308": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore.modifiedAt" }, - "1305": { + "1309": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore.accessedAt" }, - "1306": { + "1310": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore.actId" }, - "1307": { + "1311": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore.actRunId" }, - "1308": { + "1312": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore.stats" }, - "1309": { + "1313": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore.generalAccess" }, - "1310": { + "1314": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore.urlSigningSecretKey" }, - "1311": { + "1315": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStore.keysPublicUrl" }, - "1312": { + "1316": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreStats" }, - "1313": { + "1317": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreStats.readCount" }, - "1314": { + "1318": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreStats.writeCount" }, - "1315": { + "1319": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreStats.deleteCount" }, - "1316": { + "1320": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreStats.listCount" }, - "1317": { + "1321": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreStats.storageBytes" }, - "1318": { + "1322": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientUpdateOptions" }, - "1319": { + "1323": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientUpdateOptions.name" }, - "1320": { + "1324": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientUpdateOptions.title" }, - "1321": { + "1325": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientUpdateOptions.generalAccess" }, - "1322": { + "1326": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysOptions" }, - "1323": { + "1327": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysOptions.limit" }, - "1324": { + "1328": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysOptions.exclusiveStartKey" }, - "1325": { + "1329": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysOptions.collection" }, - "1326": { + "1330": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysOptions.prefix" }, - "1327": { + "1331": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysOptions.signature" }, - "1328": { + "1332": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientCreateKeysUrlOptions" }, - "1329": { + "1333": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientCreateKeysUrlOptions.expiresInSecs" }, - "1330": { + "1334": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysOptions.limit" }, - "1331": { + "1335": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysOptions.exclusiveStartKey" }, - "1332": { + "1336": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysOptions.collection" }, - "1333": { + "1337": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysOptions.prefix" }, - "1334": { + "1338": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysOptions.signature" }, - "1335": { + "1339": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysResult" }, - "1336": { + "1340": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysResult.count" }, - "1337": { + "1341": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysResult.limit" }, - "1338": { + "1342": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysResult.exclusiveStartKey" }, - "1339": { + "1343": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysResult.isTruncated" }, - "1340": { + "1344": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysResult.nextExclusiveStartKey" }, - "1341": { + "1345": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientListKeysResult.items" }, - "1342": { + "1346": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueListItem" }, - "1343": { + "1347": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueListItem.key" }, - "1344": { + "1348": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueListItem.size" }, - "1345": { + "1349": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueListItem.recordPublicUrl" }, - "1346": { + "1350": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientGetRecordOptions" }, - "1347": { + "1351": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientGetRecordOptions.buffer" }, - "1348": { + "1352": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientGetRecordOptions.stream" }, - "1349": { + "1353": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueClientGetRecordOptions.signature" }, - "1350": { + "1354": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreRecord" }, - "1351": { + "1355": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreRecord.key" }, - "1352": { + "1356": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreRecord.value" }, - "1353": { + "1357": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreRecord.contentType" }, - "1354": { + "1358": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreRecord.T" }, - "1355": { + "1359": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreRecordOptions" }, - "1356": { + "1360": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreRecordOptions.timeoutSecs" }, - "1357": { + "1361": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "KeyValueStoreRecordOptions.doNotRetryTimeouts" }, - "1358": { + "1362": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "ReturnTypeFromOptions" }, - "1359": { + "1363": { "sourceFileName": "../src/resource_clients/key_value_store.ts", "qualifiedName": "Options" }, - "1360": { + "1364": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "KeyValueStoreCollectionClient" }, - "1364": { + "1368": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "KeyValueStoreCollectionClient.list" }, - "1365": { + "1369": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "KeyValueStoreCollectionClient.list" }, - "1366": { + "1370": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "options" }, - "1367": { + "1371": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "KeyValueStoreCollectionClient.getOrCreate" }, - "1368": { + "1372": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "KeyValueStoreCollectionClient.getOrCreate" }, - "1369": { + "1373": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "name" }, - "1370": { + "1374": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "options" }, - "1387": { + "1391": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "1388": { + "1392": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "1389": { + "1393": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "1390": { + "1394": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "1391": { + "1395": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "1392": { + "1396": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "1393": { + "1397": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "1394": { + "1398": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "1395": { + "1399": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "1413": { + "1417": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "KeyValueStoreCollectionClientListOptions" }, - "1414": { + "1418": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "KeyValueStoreCollectionClientListOptions.unnamed" }, - "1415": { + "1419": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "KeyValueStoreCollectionClientListOptions.limit" }, - "1416": { + "1420": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "KeyValueStoreCollectionClientListOptions.offset" }, - "1417": { + "1421": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "KeyValueStoreCollectionClientListOptions.desc" }, - "1418": { + "1422": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "KeyValueStoreCollectionClientGetOrCreateOptions" }, - "1419": { + "1423": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "KeyValueStoreCollectionClientGetOrCreateOptions.schema" }, - "1420": { + "1424": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "KeyValueStoreCollectionListResult" }, - "1421": { + "1425": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "__type" }, - "1422": { + "1426": { "sourceFileName": "../src/resource_clients/key_value_store_collection.ts", "qualifiedName": "__type.username" }, - "1423": { + "1427": { "sourceFileName": "../src/resource_clients/log.ts", "qualifiedName": "LogClient" }, - "1427": { + "1431": { "sourceFileName": "../src/resource_clients/log.ts", "qualifiedName": "LogClient.get" }, - "1428": { + "1432": { "sourceFileName": "../src/resource_clients/log.ts", "qualifiedName": "LogClient.get" }, - "1429": { + "1433": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "options" + }, + "1434": { "sourceFileName": "../src/resource_clients/log.ts", "qualifiedName": "LogClient.stream" }, - "1430": { + "1435": { "sourceFileName": "../src/resource_clients/log.ts", "qualifiedName": "LogClient.stream" }, - "1452": { + "1436": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "options" + }, + "1458": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "1453": { + "1459": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "1454": { + "1460": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "1455": { + "1461": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "1456": { - "sourceFileName": "../src/base/api_client.ts", - "qualifiedName": "ApiClient.resourcePath" + "1462": { + "sourceFileName": "../src/base/api_client.ts", + "qualifiedName": "ApiClient.resourcePath" + }, + "1463": { + "sourceFileName": "../src/base/api_client.ts", + "qualifiedName": "ApiClient.url" + }, + "1464": { + "sourceFileName": "../src/base/api_client.ts", + "qualifiedName": "ApiClient.apifyClient" + }, + "1465": { + "sourceFileName": "../src/base/api_client.ts", + "qualifiedName": "ApiClient.httpClient" + }, + "1466": { + "sourceFileName": "../src/base/api_client.ts", + "qualifiedName": "ApiClient.params" + }, + "1484": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "LogOptions" + }, + "1485": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "LogOptions.raw" + }, + "1486": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "LoggerActorRedirect" + }, + "1487": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.once" + }, + "1488": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.once" + }, + "1489": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "emitter" + }, + "1490": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1491": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "options" + }, + "1492": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.once" + }, + "1493": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "emitter" + }, + "1494": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1495": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "options" + }, + "1496": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.on" + }, + "1497": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.on" + }, + "1498": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "emitter" + }, + "1499": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1500": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "options" + }, + "1501": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.on" + }, + "1502": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "emitter" + }, + "1503": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1504": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "options" + }, + "1505": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.listenerCount" + }, + "1506": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.listenerCount" + }, + "1507": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "emitter" + }, + "1508": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1509": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.getEventListeners" + }, + "1510": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.getEventListeners" + }, + "1511": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "emitter" + }, + "1512": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "name" + }, + "1513": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.getMaxListeners" + }, + "1514": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.getMaxListeners" + }, + "1515": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "emitter" + }, + "1516": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.setMaxListeners" + }, + "1517": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.setMaxListeners" + }, + "1518": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "n" + }, + "1519": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventTargets" + }, + "1520": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.addAbortListener" + }, + "1521": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.addAbortListener" + }, + "1522": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "signal" + }, + "1523": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "resource" + }, + "1524": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1525": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1526": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "event" + }, + "1527": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.errorMonitor" + }, + "1528": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.captureRejectionSymbol" + }, + "1529": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.captureRejections" + }, + "1530": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.defaultMaxListeners" + }, + "1531": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "LoggerActorRedirect.__constructor" + }, + "1532": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "LoggerActorRedirect" + }, + "1533": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "options" + }, + "1534": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "__object" + }, + "1535": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "LoggerActorRedirect._log" + }, + "1536": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "LoggerActorRedirect._log" + }, + "1537": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "level" + }, + "1538": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "message" + }, + "1539": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "data" + }, + "1540": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "exception" + }, + "1541": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "opts" + }, + "1543": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "Logger.setOptions" + }, + "1544": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "Logger.setOptions" + }, + "1545": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "options" + }, + "1546": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "Logger.getOptions" + }, + "1547": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "Logger.getOptions" + }, + "1548": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "Logger._outputWithConsole" + }, + "1549": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "Logger._outputWithConsole" + }, + "1550": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "level" + }, + "1551": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "line" + }, + "1552": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "Logger.log" + }, + "1553": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "Logger.log" + }, + "1554": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "level" + }, + "1555": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "message" + }, + "1556": { + "sourceFileName": "../node_modules/@apify/log/cjs/index.d.ts", + "qualifiedName": "args" + }, + "1557": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.[captureRejectionSymbol]" + }, + "1558": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "EventEmitter.[captureRejectionSymbol]" + }, + "1559": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "K" + }, + "1560": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "error" + }, + "1561": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "event" + }, + "1562": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "args" + }, + "1563": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.addListener" + }, + "1564": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.addListener" + }, + "1565": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "K" + }, + "1566": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1567": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "listener" + }, + "1568": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1569": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1570": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "args" + }, + "1571": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.on" + }, + "1572": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.on" + }, + "1573": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "K" + }, + "1574": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1575": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "listener" + }, + "1576": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1577": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1578": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "args" + }, + "1579": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.once" + }, + "1580": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.once" + }, + "1581": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "K" + }, + "1582": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1583": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "listener" + }, + "1584": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1585": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1586": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "args" + }, + "1587": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.removeListener" + }, + "1588": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.removeListener" + }, + "1589": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "K" + }, + "1590": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1591": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "listener" + }, + "1592": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1593": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1594": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "args" + }, + "1595": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.off" + }, + "1596": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.off" + }, + "1597": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "K" + }, + "1598": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1599": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "listener" + }, + "1600": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1601": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1602": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "args" + }, + "1603": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.removeAllListeners" + }, + "1604": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.removeAllListeners" + }, + "1605": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1606": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.setMaxListeners" + }, + "1607": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.setMaxListeners" + }, + "1608": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "n" + }, + "1609": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.getMaxListeners" + }, + "1610": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.getMaxListeners" + }, + "1611": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.listeners" + }, + "1612": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.listeners" + }, + "1613": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "K" + }, + "1614": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1615": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.rawListeners" + }, + "1616": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.rawListeners" + }, + "1617": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "K" + }, + "1618": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1619": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.emit" + }, + "1620": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.emit" + }, + "1621": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "K" + }, + "1622": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1623": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "args" + }, + "1624": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.listenerCount" + }, + "1625": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.listenerCount" + }, + "1626": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "K" + }, + "1627": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1628": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "listener" + }, + "1629": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.prependListener" + }, + "1630": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.prependListener" + }, + "1631": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "K" + }, + "1632": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1633": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "listener" + }, + "1634": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1635": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1636": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "args" + }, + "1637": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.prependOnceListener" + }, + "1638": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.prependOnceListener" + }, + "1639": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "K" + }, + "1640": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "eventName" + }, + "1641": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "listener" + }, + "1642": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1643": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__type" + }, + "1644": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "args" + }, + "1645": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.eventNames" + }, + "1646": { + "sourceFileName": "../node_modules/@types/node/events.d.ts", + "qualifiedName": "__global.NodeJS.EventEmitter.eventNames" + }, + "1647": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "StreamedLog" + }, + "1648": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "StreamedLog.__constructor" + }, + "1649": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "StreamedLog" + }, + "1650": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "options" + }, + "1658": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "StreamedLog.start" + }, + "1659": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "StreamedLog.start" + }, + "1660": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "StreamedLog.stop" + }, + "1661": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "StreamedLog.stop" }, - "1457": { - "sourceFileName": "../src/base/api_client.ts", - "qualifiedName": "ApiClient.url" + "1669": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "StreamedLogOptions" }, - "1458": { - "sourceFileName": "../src/base/api_client.ts", - "qualifiedName": "ApiClient.apifyClient" + "1670": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "StreamedLogOptions.logClient" }, - "1459": { - "sourceFileName": "../src/base/api_client.ts", - "qualifiedName": "ApiClient.httpClient" + "1671": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "StreamedLogOptions.toLog" }, - "1460": { - "sourceFileName": "../src/base/api_client.ts", - "qualifiedName": "ApiClient.params" + "1672": { + "sourceFileName": "../src/resource_clients/log.ts", + "qualifiedName": "StreamedLogOptions.fromStart" }, - "1478": { + "1673": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient" }, - "1485": { + "1680": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.get" }, - "1486": { + "1681": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.get" }, - "1487": { + "1682": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.update" }, - "1488": { + "1683": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.update" }, - "1489": { + "1684": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "newFields" }, - "1490": { + "1685": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.delete" }, - "1491": { + "1686": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.delete" }, - "1492": { + "1687": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.listHead" }, - "1493": { + "1688": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.listHead" }, - "1494": { + "1689": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "options" }, - "1495": { + "1690": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.listAndLockHead" }, - "1496": { + "1691": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.listAndLockHead" }, - "1497": { + "1692": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "options" }, - "1498": { + "1693": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.addRequest" }, - "1499": { + "1694": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.addRequest" }, - "1500": { + "1695": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "request" }, - "1501": { + "1696": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "options" }, - "1510": { + "1705": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.batchAddRequests" }, - "1511": { + "1706": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.batchAddRequests" }, - "1512": { + "1707": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "requests" }, - "1513": { + "1708": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "options" }, - "1514": { + "1709": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.batchDeleteRequests" }, - "1515": { + "1710": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.batchDeleteRequests" }, - "1516": { + "1711": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "requests" }, - "1517": { + "1712": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.getRequest" }, - "1518": { + "1713": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.getRequest" }, - "1519": { + "1714": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "id" }, - "1520": { + "1715": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.updateRequest" }, - "1521": { + "1716": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.updateRequest" }, - "1522": { + "1717": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "request" }, - "1523": { + "1718": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "options" }, - "1524": { + "1719": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.deleteRequest" }, - "1525": { + "1720": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.deleteRequest" }, - "1526": { + "1721": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "id" }, - "1527": { + "1722": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.prolongRequestLock" }, - "1528": { + "1723": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.prolongRequestLock" }, - "1529": { + "1724": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "id" }, - "1530": { + "1725": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "options" }, - "1531": { + "1726": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.deleteRequestLock" }, - "1532": { + "1727": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.deleteRequestLock" }, - "1533": { + "1728": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "id" }, - "1534": { + "1729": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "options" }, - "1535": { + "1730": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.listRequests" }, - "1536": { + "1731": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.listRequests" }, - "1537": { + "1732": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "options" }, - "1538": { + "1733": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.unlockRequests" }, - "1539": { + "1734": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.unlockRequests" }, - "1540": { + "1735": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.paginateRequests" }, - "1541": { + "1736": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClient.paginateRequests" }, - "1542": { + "1737": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "options" }, - "1564": { + "1759": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "1565": { + "1760": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "1566": { + "1761": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "1567": { + "1762": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "1568": { + "1763": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "1569": { + "1764": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "1570": { + "1765": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "1571": { + "1766": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "1572": { + "1767": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "1590": { + "1785": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueUserOptions" }, - "1591": { + "1786": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueUserOptions.clientKey" }, - "1592": { + "1787": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueUserOptions.timeoutSecs" }, - "1593": { + "1788": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue" }, - "1594": { + "1789": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.id" }, - "1595": { + "1790": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.name" }, - "1596": { + "1791": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.title" }, - "1597": { + "1792": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.userId" }, - "1598": { + "1793": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.createdAt" }, - "1599": { + "1794": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.modifiedAt" }, - "1600": { + "1795": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.accessedAt" }, - "1601": { + "1796": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.expireAt" }, - "1602": { + "1797": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.totalRequestCount" }, - "1603": { + "1798": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.handledRequestCount" }, - "1604": { + "1799": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.pendingRequestCount" }, - "1605": { + "1800": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.actId" }, - "1606": { + "1801": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.actRunId" }, - "1607": { + "1802": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.hadMultipleClients" }, - "1608": { + "1803": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.stats" }, - "1609": { + "1804": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueue.generalAccess" }, - "1610": { + "1805": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueStats" }, - "1611": { + "1806": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueStats.readCount" }, - "1612": { + "1807": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueStats.writeCount" }, - "1613": { + "1808": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueStats.deleteCount" }, - "1614": { + "1809": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueStats.headItemReadCount" }, - "1615": { + "1810": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueStats.storageBytes" }, - "1616": { + "1811": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientUpdateOptions" }, - "1617": { + "1812": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientUpdateOptions.name" }, - "1618": { + "1813": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientUpdateOptions.title" }, - "1619": { + "1814": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientUpdateOptions.generalAccess" }, - "1620": { + "1815": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListHeadOptions" }, - "1621": { + "1816": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListHeadOptions.limit" }, - "1622": { + "1817": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListHeadResult" }, - "1623": { + "1818": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListHeadResult.limit" }, - "1624": { + "1819": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListHeadResult.queueModifiedAt" }, - "1625": { + "1820": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListHeadResult.hadMultipleClients" }, - "1626": { + "1821": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListHeadResult.items" }, - "1627": { + "1822": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListRequestsOptions" }, - "1628": { + "1823": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListRequestsOptions.limit" }, - "1629": { + "1824": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListRequestsOptions.exclusiveStartId" }, - "1630": { + "1825": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientPaginateRequestsOptions" }, - "1631": { + "1826": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientPaginateRequestsOptions.limit" }, - "1632": { + "1827": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientPaginateRequestsOptions.maxPageLimit" }, - "1633": { + "1828": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientPaginateRequestsOptions.exclusiveStartId" }, - "1634": { + "1829": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListRequestsResult" }, - "1635": { + "1830": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListRequestsResult.limit" }, - "1636": { + "1831": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListRequestsResult.exclusiveStartId" }, - "1637": { + "1832": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListRequestsResult.items" }, - "1638": { + "1833": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListAndLockHeadOptions" }, - "1639": { + "1834": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListAndLockHeadOptions.lockSecs" }, - "1640": { + "1835": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListAndLockHeadOptions.limit" }, - "1641": { + "1836": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListAndLockHeadResult" }, - "1642": { + "1837": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListAndLockHeadResult.lockSecs" }, - "1643": { + "1838": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListAndLockHeadResult.queueHasLockedRequests" }, - "1644": { + "1839": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListAndLockHeadResult.clientKey" }, - "1645": { + "1840": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListHeadResult.limit" }, - "1646": { + "1841": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListHeadResult.queueModifiedAt" }, - "1647": { + "1842": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListHeadResult.hadMultipleClients" }, - "1648": { + "1843": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListHeadResult.items" }, - "1649": { + "1844": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListItem" }, - "1650": { + "1845": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListItem.id" }, - "1651": { + "1846": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListItem.retryCount" }, - "1652": { + "1847": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListItem.uniqueKey" }, - "1653": { + "1848": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListItem.url" }, - "1654": { + "1849": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListItem.method" }, - "1655": { + "1850": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientListItem.lockExpiresAt" }, - "1656": { + "1851": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientAddRequestOptions" }, - "1657": { + "1852": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientAddRequestOptions.forefront" }, - "1658": { + "1853": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientProlongRequestLockOptions" }, - "1659": { + "1854": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientProlongRequestLockOptions.forefront" }, - "1660": { + "1855": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientProlongRequestLockOptions.lockSecs" }, - "1661": { + "1856": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientDeleteRequestLockOptions" }, - "1662": { + "1857": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientDeleteRequestLockOptions.forefront" }, - "1663": { + "1858": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientProlongRequestLockResult" }, - "1664": { + "1859": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientProlongRequestLockResult.lockExpiresAt" }, - "1665": { + "1860": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientBatchAddRequestWithRetriesOptions" }, - "1666": { + "1861": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientBatchAddRequestWithRetriesOptions.forefront" }, - "1667": { + "1862": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientBatchAddRequestWithRetriesOptions.maxUnprocessedRequestsRetries" }, - "1668": { + "1863": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientBatchAddRequestWithRetriesOptions.maxParallel" }, - "1669": { + "1864": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientBatchAddRequestWithRetriesOptions.minDelayBetweenUnprocessedRequestsRetriesMillis" }, - "1670": { + "1865": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestSchema" }, - "1671": { + "1866": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestSchema.id" }, - "1672": { + "1867": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestSchema.uniqueKey" }, - "1673": { + "1868": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestSchema.url" }, - "1674": { + "1869": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestSchema.method" }, - "1675": { + "1870": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestSchema.payload" }, - "1676": { + "1871": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestSchema.retryCount" }, - "1677": { + "1872": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestSchema.errorMessages" }, - "1678": { + "1873": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestSchema.headers" }, - "1679": { + "1874": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestSchema.userData" }, - "1680": { + "1875": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestSchema.handledAt" }, - "1681": { + "1876": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestSchema.noRetry" }, - "1682": { + "1877": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestSchema.loadedUrl" }, - "1683": { + "1878": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientAddRequestResult" }, - "1684": { + "1879": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientAddRequestResult.requestId" }, - "1685": { + "1880": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientAddRequestResult.wasAlreadyPresent" }, - "1686": { + "1881": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientAddRequestResult.wasAlreadyHandled" }, - "1687": { + "1882": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientUnlockRequestsResult" }, - "1688": { + "1883": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientUnlockRequestsResult.unlockedCount" }, - "1689": { + "1884": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientBatchRequestsOperationResult" }, - "1690": { + "1885": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientBatchRequestsOperationResult.processedRequests" }, - "1691": { + "1886": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientBatchRequestsOperationResult.unprocessedRequests" }, - "1692": { + "1887": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientRequestToDelete" }, - "1693": { + "1888": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueClientGetRequestResult" }, - "1694": { + "1889": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "AllowedHttpMethods" }, - "1695": { + "1890": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "RequestQueueRequestsAsyncIterable" }, - "1696": { + "1891": { "sourceFileName": "../src/resource_clients/request_queue.ts", "qualifiedName": "T" }, - "1697": { + "1892": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "RequestQueueCollectionClient" }, - "1701": { + "1896": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "RequestQueueCollectionClient.list" }, - "1702": { + "1897": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "RequestQueueCollectionClient.list" }, - "1703": { + "1898": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "options" }, - "1704": { + "1899": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "RequestQueueCollectionClient.getOrCreate" }, - "1705": { + "1900": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "RequestQueueCollectionClient.getOrCreate" }, - "1706": { + "1901": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "name" }, - "1723": { + "1918": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "1724": { + "1919": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "1725": { + "1920": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "1726": { + "1921": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "1727": { + "1922": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "1728": { + "1923": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "1729": { + "1924": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "1730": { + "1925": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "1731": { + "1926": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "1749": { + "1944": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "RequestQueueCollectionListOptions" }, - "1750": { + "1945": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "RequestQueueCollectionListOptions.unnamed" }, - "1751": { + "1946": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "RequestQueueCollectionListOptions.limit" }, - "1752": { + "1947": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "RequestQueueCollectionListOptions.offset" }, - "1753": { + "1948": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "RequestQueueCollectionListOptions.desc" }, - "1754": { + "1949": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "RequestQueueCollectionListResult" }, - "1755": { + "1950": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "__type" }, - "1756": { + "1951": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "__type.username" }, - "1757": { + "1952": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "__type" }, - "1758": { + "1953": { "sourceFileName": "../src/resource_clients/request_queue_collection.ts", "qualifiedName": "__type.unnamed" }, - "1759": { + "1954": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient" }, - "1763": { + "1958": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.get" }, - "1764": { + "1959": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.get" }, - "1765": { + "1960": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "options" }, - "1766": { + "1961": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.abort" }, - "1767": { + "1962": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.abort" }, - "1768": { + "1963": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "options" }, - "1769": { + "1964": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.delete" }, - "1770": { + "1965": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.delete" }, - "1771": { + "1966": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.metamorph" }, - "1772": { + "1967": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.metamorph" }, - "1773": { + "1968": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "targetActorId" }, - "1774": { + "1969": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "input" }, - "1775": { + "1970": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "options" }, - "1776": { + "1971": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.reboot" }, - "1777": { + "1972": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.reboot" }, - "1778": { + "1973": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.update" }, - "1779": { + "1974": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.update" }, - "1780": { + "1975": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "newFields" }, - "1781": { + "1976": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.resurrect" }, - "1782": { + "1977": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.resurrect" }, - "1783": { + "1978": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "options" }, - "1784": { + "1979": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.charge" }, - "1785": { + "1980": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.charge" }, - "1786": { + "1981": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "options" }, - "1787": { + "1982": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.waitForFinish" }, - "1788": { + "1983": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.waitForFinish" }, - "1789": { + "1984": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "options" }, - "1790": { + "1985": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.dataset" }, - "1791": { + "1986": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.dataset" }, - "1792": { + "1987": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.keyValueStore" }, - "1793": { + "1988": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.keyValueStore" }, - "1794": { + "1989": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.requestQueue" }, - "1795": { + "1990": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.requestQueue" }, - "1796": { + "1991": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.log" }, - "1797": { + "1992": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunClient.log" }, - "1819": { + "1993": { + "sourceFileName": "../src/resource_clients/run.ts", + "qualifiedName": "RunClient.getStreamedLog" + }, + "1994": { + "sourceFileName": "../src/resource_clients/run.ts", + "qualifiedName": "RunClient.getStreamedLog" + }, + "1995": { + "sourceFileName": "../src/resource_clients/run.ts", + "qualifiedName": "options" + }, + "2017": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "1820": { + "2018": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "1821": { + "2019": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "1822": { + "2020": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "1823": { + "2021": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "1824": { + "2022": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "1825": { + "2023": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "1826": { + "2024": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "1827": { + "2025": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "1845": { + "2043": { + "sourceFileName": "../src/resource_clients/run.ts", + "qualifiedName": "GetStreamedLogOptions" + }, + "2044": { + "sourceFileName": "../src/resource_clients/run.ts", + "qualifiedName": "GetStreamedLogOptions.toLog" + }, + "2045": { + "sourceFileName": "../src/resource_clients/run.ts", + "qualifiedName": "GetStreamedLogOptions.fromStart" + }, + "2046": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunGetOptions" }, - "1846": { + "2047": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunGetOptions.waitForFinish" }, - "1847": { + "2048": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunAbortOptions" }, - "1848": { + "2049": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunAbortOptions.gracefully" }, - "1849": { + "2050": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunMetamorphOptions" }, - "1850": { + "2051": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunMetamorphOptions.contentType" }, - "1851": { + "2052": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunMetamorphOptions.build" }, - "1852": { + "2053": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunUpdateOptions" }, - "1853": { + "2054": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunUpdateOptions.statusMessage" }, - "1854": { + "2055": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunUpdateOptions.isStatusMessageTerminal" }, - "1855": { + "2056": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunUpdateOptions.generalAccess" }, - "1856": { + "2057": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunResurrectOptions" }, - "1857": { + "2058": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunResurrectOptions.build" }, - "1858": { + "2059": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunResurrectOptions.memory" }, - "1859": { + "2060": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunResurrectOptions.timeout" }, - "1860": { + "2061": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunResurrectOptions.maxItems" }, - "1861": { + "2062": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunResurrectOptions.maxTotalChargeUsd" }, - "1862": { + "2063": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunResurrectOptions.restartOnError" }, - "1863": { + "2064": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunChargeOptions" }, - "1864": { + "2065": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunChargeOptions.eventName" }, - "1865": { + "2066": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunChargeOptions.count" }, - "1866": { + "2067": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunChargeOptions.idempotencyKey" }, - "1867": { + "2068": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunWaitForFinishOptions" }, - "1868": { + "2069": { "sourceFileName": "../src/resource_clients/run.ts", "qualifiedName": "RunWaitForFinishOptions.waitSecs" }, - "1869": { + "2070": { "sourceFileName": "../src/resource_clients/run_collection.ts", "qualifiedName": "RunCollectionClient" }, - "1873": { + "2074": { "sourceFileName": "../src/resource_clients/run_collection.ts", "qualifiedName": "RunCollectionClient.list" }, - "1874": { + "2075": { "sourceFileName": "../src/resource_clients/run_collection.ts", "qualifiedName": "RunCollectionClient.list" }, - "1875": { + "2076": { "sourceFileName": "../src/resource_clients/run_collection.ts", "qualifiedName": "options" }, - "1892": { + "2093": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "1893": { + "2094": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "1894": { + "2095": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "1895": { + "2096": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "1896": { + "2097": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "1897": { + "2098": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "1898": { + "2099": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "1899": { + "2100": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "1900": { + "2101": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "1918": { + "2119": { "sourceFileName": "../src/resource_clients/run_collection.ts", "qualifiedName": "RunCollectionListOptions" }, - "1919": { + "2120": { "sourceFileName": "../src/resource_clients/run_collection.ts", "qualifiedName": "RunCollectionListOptions.limit" }, - "1920": { + "2121": { "sourceFileName": "../src/resource_clients/run_collection.ts", "qualifiedName": "RunCollectionListOptions.offset" }, - "1921": { + "2122": { "sourceFileName": "../src/resource_clients/run_collection.ts", "qualifiedName": "RunCollectionListOptions.desc" }, - "1922": { + "2123": { "sourceFileName": "../src/resource_clients/run_collection.ts", "qualifiedName": "RunCollectionListOptions.status" }, - "1923": { + "2124": { "sourceFileName": "../src/resource_clients/run_collection.ts", "qualifiedName": "RunCollectionListOptions.startedBefore" }, - "1924": { + "2125": { "sourceFileName": "../src/resource_clients/run_collection.ts", "qualifiedName": "RunCollectionListOptions.startedAfter" }, - "1925": { + "2126": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleClient" }, - "1929": { + "2130": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleClient.get" }, - "1930": { + "2131": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleClient.get" }, - "1931": { + "2132": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleClient.update" }, - "1932": { + "2133": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleClient.update" }, - "1933": { + "2134": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "newFields" }, - "1934": { + "2135": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "__type" }, - "1935": { + "2136": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "__type.actions" }, - "1936": { + "2137": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleClient.delete" }, - "1937": { + "2138": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleClient.delete" }, - "1938": { + "2139": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleClient.getLog" }, - "1939": { + "2140": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleClient.getLog" }, - "1961": { + "2162": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "1962": { + "2163": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "1963": { + "2164": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "1964": { + "2165": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "1965": { + "2166": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "1966": { + "2167": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "1967": { + "2168": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "1968": { + "2169": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "1969": { + "2170": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "1987": { + "2188": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule" }, - "1988": { + "2189": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.id" }, - "1989": { + "2190": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.userId" }, - "1990": { + "2191": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.name" }, - "1991": { + "2192": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.title" }, - "1992": { + "2193": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.cronExpression" }, - "1993": { + "2194": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.timezone" }, - "1994": { + "2195": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.isEnabled" }, - "1995": { + "2196": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.isExclusive" }, - "1996": { + "2197": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.description" }, - "1997": { + "2198": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.createdAt" }, - "1998": { + "2199": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.modifiedAt" }, - "1999": { + "2200": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.nextRunAt" }, - "2000": { + "2201": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.lastRunAt" }, - "2001": { + "2202": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.actions" }, - "2002": { + "2203": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "Schedule.notifications" }, - "2003": { + "2204": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "__type" }, - "2004": { + "2205": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "__type.email" }, - "2005": { + "2206": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleCreateOrUpdateData" }, - "2006": { + "2207": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "__type" }, - "2007": { + "2208": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "__type.actions" }, - "2008": { + "2209": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleActions" }, - "2009": { + "2210": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleActions.RunActor" }, - "2010": { + "2211": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleActions.RunActorTask" }, - "2011": { + "2212": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleAction" }, - "2012": { + "2213": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleActionRunActor" }, - "2013": { + "2214": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleActionRunActor.actorId" }, - "2014": { + "2215": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleActionRunActor.runInput" }, - "2015": { + "2216": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleActionRunActor.runOptions" }, - "2016": { + "2217": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "BaseScheduleAction.id" }, - "2017": { + "2218": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "BaseScheduleAction.type" }, - "2018": { + "2219": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduledActorRunInput" }, - "2019": { + "2220": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduledActorRunInput.body" }, - "2020": { + "2221": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduledActorRunInput.contentType" }, - "2021": { + "2222": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduledActorRunOptions" }, - "2022": { + "2223": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduledActorRunOptions.build" }, - "2023": { + "2224": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduledActorRunOptions.timeoutSecs" }, - "2024": { + "2225": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduledActorRunOptions.memoryMbytes" }, - "2025": { + "2226": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduledActorRunOptions.restartOnError" }, - "2026": { + "2227": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleActionRunActorTask" }, - "2027": { + "2228": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleActionRunActorTask.actorTaskId" }, - "2028": { + "2229": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "ScheduleActionRunActorTask.input" }, - "2029": { + "2230": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "BaseScheduleAction.id" }, - "2030": { + "2231": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "BaseScheduleAction.type" }, - "2031": { + "2232": { "sourceFileName": "../src/resource_clients/schedule_collection.ts", "qualifiedName": "ScheduleCollectionClient" }, - "2035": { + "2236": { "sourceFileName": "../src/resource_clients/schedule_collection.ts", "qualifiedName": "ScheduleCollectionClient.list" }, - "2036": { + "2237": { "sourceFileName": "../src/resource_clients/schedule_collection.ts", "qualifiedName": "ScheduleCollectionClient.list" }, - "2037": { + "2238": { "sourceFileName": "../src/resource_clients/schedule_collection.ts", "qualifiedName": "options" }, - "2038": { + "2239": { "sourceFileName": "../src/resource_clients/schedule_collection.ts", "qualifiedName": "ScheduleCollectionClient.create" }, - "2039": { + "2240": { "sourceFileName": "../src/resource_clients/schedule_collection.ts", "qualifiedName": "ScheduleCollectionClient.create" }, - "2040": { + "2241": { "sourceFileName": "../src/resource_clients/schedule_collection.ts", "qualifiedName": "schedule" }, - "2041": { + "2242": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "__type" }, - "2042": { + "2243": { "sourceFileName": "../src/resource_clients/schedule.ts", "qualifiedName": "__type.actions" }, - "2059": { + "2260": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "2060": { + "2261": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "2061": { + "2262": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "2062": { + "2263": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "2063": { + "2264": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "2064": { + "2265": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "2065": { + "2266": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "2066": { + "2267": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "2067": { + "2268": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "2085": { + "2286": { "sourceFileName": "../src/resource_clients/schedule_collection.ts", "qualifiedName": "ScheduleCollectionListOptions" }, - "2086": { + "2287": { "sourceFileName": "../src/resource_clients/schedule_collection.ts", "qualifiedName": "ScheduleCollectionListOptions.limit" }, - "2087": { + "2288": { "sourceFileName": "../src/resource_clients/schedule_collection.ts", "qualifiedName": "ScheduleCollectionListOptions.offset" }, - "2088": { + "2289": { "sourceFileName": "../src/resource_clients/schedule_collection.ts", "qualifiedName": "ScheduleCollectionListOptions.desc" }, - "2089": { + "2290": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "StoreCollectionClient" }, - "2093": { + "2294": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "StoreCollectionClient.list" }, - "2094": { + "2295": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "StoreCollectionClient.list" }, - "2095": { + "2296": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "options" }, - "2112": { + "2313": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "2113": { + "2314": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "2114": { + "2315": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "2115": { + "2316": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "2116": { + "2317": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "2117": { + "2318": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "2118": { + "2319": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "2119": { + "2320": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "2120": { + "2321": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "2138": { + "2339": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "PricingInfo" }, - "2139": { + "2340": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "PricingInfo.pricingModel" }, - "2140": { + "2341": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "ActorStoreList" }, - "2141": { + "2342": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "ActorStoreList.id" }, - "2142": { + "2343": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "ActorStoreList.name" }, - "2143": { + "2344": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "ActorStoreList.username" }, - "2144": { + "2345": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "ActorStoreList.title" }, - "2145": { + "2346": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "ActorStoreList.description" }, - "2146": { + "2347": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "ActorStoreList.stats" }, - "2147": { + "2348": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "ActorStoreList.currentPricingInfo" }, - "2148": { + "2349": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "ActorStoreList.pictureUrl" }, - "2149": { + "2350": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "ActorStoreList.userPictureUrl" }, - "2150": { + "2351": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "ActorStoreList.url" }, - "2151": { + "2352": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "StoreCollectionListOptions" }, - "2152": { + "2353": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "StoreCollectionListOptions.limit" }, - "2153": { + "2354": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "StoreCollectionListOptions.offset" }, - "2154": { + "2355": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "StoreCollectionListOptions.search" }, - "2155": { + "2356": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "StoreCollectionListOptions.sortBy" }, - "2156": { + "2357": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "StoreCollectionListOptions.category" }, - "2157": { + "2358": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "StoreCollectionListOptions.username" }, - "2158": { + "2359": { "sourceFileName": "../src/resource_clients/store_collection.ts", "qualifiedName": "StoreCollectionListOptions.pricingModel" }, - "2159": { + "2360": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient" }, - "2163": { + "2364": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.get" }, - "2164": { + "2365": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.get" }, - "2165": { + "2366": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.update" }, - "2166": { + "2367": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.update" }, - "2167": { + "2368": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "newFields" }, - "2168": { + "2369": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.delete" }, - "2169": { + "2370": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.delete" }, - "2170": { + "2371": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.start" }, - "2171": { + "2372": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.start" }, - "2172": { + "2373": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "input" }, - "2173": { + "2374": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "options" }, - "2174": { + "2375": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.call" }, - "2175": { + "2376": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.call" }, - "2176": { + "2377": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "input" }, - "2177": { + "2378": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "options" }, - "2178": { + "2379": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.getInput" }, - "2179": { + "2380": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.getInput" }, - "2180": { + "2381": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.updateInput" }, - "2181": { + "2382": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.updateInput" }, - "2182": { + "2383": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "newFields" }, - "2183": { + "2384": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.lastRun" }, - "2184": { + "2385": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.lastRun" }, - "2185": { + "2386": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "options" }, - "2186": { + "2387": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.runs" }, - "2187": { + "2388": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.runs" }, - "2188": { + "2389": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.webhooks" }, - "2189": { + "2390": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskClient.webhooks" }, - "2211": { + "2412": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "2212": { + "2413": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "2213": { + "2414": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "2214": { + "2415": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "2215": { + "2416": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "2216": { + "2417": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "2217": { + "2418": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "2218": { + "2419": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "2219": { + "2420": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "2237": { + "2438": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task" }, - "2238": { + "2439": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task.id" }, - "2239": { + "2440": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task.userId" }, - "2240": { + "2441": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task.actId" }, - "2241": { + "2442": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task.name" }, - "2242": { + "2443": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task.title" }, - "2243": { + "2444": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task.description" }, - "2244": { + "2445": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task.username" }, - "2245": { + "2446": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task.createdAt" }, - "2246": { + "2447": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task.modifiedAt" }, - "2247": { + "2448": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task.stats" }, - "2248": { + "2449": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task.options" }, - "2249": { + "2450": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task.input" }, - "2250": { + "2451": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "Task.actorStandby" }, - "2251": { + "2452": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskStats" }, - "2252": { + "2453": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskStats.totalRuns" }, - "2253": { + "2454": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskOptions" }, - "2254": { + "2455": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskOptions.build" }, - "2255": { + "2456": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskOptions.timeoutSecs" }, - "2256": { + "2457": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskOptions.memoryMbytes" }, - "2257": { + "2458": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskOptions.restartOnError" }, - "2258": { + "2459": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskUpdateData" }, - "2259": { + "2460": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskLastRunOptions" }, - "2260": { + "2461": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskLastRunOptions.status" }, - "2261": { + "2462": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskStartOptions" }, - "2262": { + "2463": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskCallOptions" }, - "2263": { + "2464": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "TaskCallOptions.waitSecs" }, - "2264": { + "2465": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "restartOnError" }, - "2265": { + "2466": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "build" }, - "2266": { + "2467": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "memory" }, - "2267": { + "2468": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "timeout" }, - "2268": { + "2469": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "webhooks" }, - "2269": { + "2470": { "sourceFileName": "../src/resource_clients/actor.ts", "qualifiedName": "maxItems" }, - "2270": { + "2471": { + "sourceFileName": "../src/resource_clients/actor.ts", + "qualifiedName": "maxTotalChargeUsd" + }, + "2472": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "TaskCollectionClient" }, - "2274": { + "2476": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "TaskCollectionClient.list" }, - "2275": { + "2477": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "TaskCollectionClient.list" }, - "2276": { + "2478": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "options" }, - "2277": { + "2479": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "TaskCollectionClient.create" }, - "2278": { + "2480": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "TaskCollectionClient.create" }, - "2279": { + "2481": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "task" }, - "2296": { + "2498": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "2297": { + "2499": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "2298": { + "2500": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "2299": { + "2501": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "2300": { + "2502": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "2301": { + "2503": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "2302": { + "2504": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "2303": { + "2505": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "2304": { + "2506": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "2322": { + "2524": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "TaskCollectionListOptions" }, - "2323": { + "2525": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "TaskCollectionListOptions.limit" }, - "2324": { + "2526": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "TaskCollectionListOptions.offset" }, - "2325": { + "2527": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "TaskCollectionListOptions.desc" }, - "2326": { + "2528": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "TaskList" }, - "2327": { + "2529": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "TaskCreateData" }, - "2328": { + "2530": { "sourceFileName": "../src/resource_clients/task_collection.ts", "qualifiedName": "TaskCreateData.actId" }, - "2329": { + "2531": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "name" }, - "2330": { + "2532": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "description" }, - "2331": { + "2533": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "title" }, - "2332": { + "2534": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "actorStandby" }, - "2333": { + "2535": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "input" }, - "2334": { + "2536": { "sourceFileName": "../src/resource_clients/task.ts", "qualifiedName": "options" }, - "2335": { + "2537": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserClient" }, - "2339": { + "2541": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserClient.get" }, - "2340": { + "2542": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserClient.get" }, - "2341": { + "2543": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserClient.monthlyUsage" }, - "2342": { + "2544": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserClient.monthlyUsage" }, - "2343": { + "2545": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserClient.limits" }, - "2344": { + "2546": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserClient.limits" }, - "2345": { + "2547": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserClient.updateLimits" }, - "2346": { + "2548": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserClient.updateLimits" }, - "2347": { + "2549": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "options" }, - "2369": { + "2571": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "2370": { + "2572": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "2371": { + "2573": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "2372": { + "2574": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "2373": { + "2575": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "2374": { + "2576": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "2375": { + "2577": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "2376": { + "2578": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "2377": { + "2579": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "2395": { + "2597": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "User" }, - "2396": { + "2598": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "User.username" }, - "2397": { + "2599": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "User.profile" }, - "2398": { + "2600": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "__type" }, - "2399": { + "2601": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "__type.bio" }, - "2400": { + "2602": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "__type.name" }, - "2401": { + "2603": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "__type.pictureUrl" }, - "2402": { + "2604": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "__type.githubUsername" }, - "2403": { + "2605": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "__type.websiteUrl" }, - "2404": { + "2606": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "__type.twitterUsername" }, - "2405": { + "2607": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "User.id" }, - "2406": { + "2608": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "User.email" }, - "2407": { + "2609": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "User.proxy" }, - "2408": { + "2610": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "User.plan" }, - "2409": { + "2611": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "User.effectivePlatformFeatures" }, - "2410": { + "2612": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "User.createdAt" }, - "2411": { + "2613": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "User.isPaying" }, - "2412": { + "2614": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserProxy" }, - "2413": { + "2615": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserProxy.password" }, - "2414": { + "2616": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserProxy.groups" }, - "2415": { + "2617": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "ProxyGroup" }, - "2416": { + "2618": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "ProxyGroup.name" }, - "2417": { + "2619": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "ProxyGroup.description" }, - "2418": { + "2620": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "ProxyGroup.availableCount" }, - "2419": { + "2621": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan" }, - "2420": { + "2622": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.id" }, - "2421": { + "2623": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.description" }, - "2422": { + "2624": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.isEnabled" }, - "2423": { + "2625": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.monthlyBasePriceUsd" }, - "2424": { + "2626": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.monthlyUsageCreditsUsd" }, - "2425": { + "2627": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.usageDiscountPercent" }, - "2426": { + "2628": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.enabledPlatformFeatures" }, - "2427": { + "2629": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.maxMonthlyUsageUsd" }, - "2428": { + "2630": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.maxActorMemoryGbytes" }, - "2429": { + "2631": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.maxMonthlyActorComputeUnits" }, - "2430": { + "2632": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.maxMonthlyResidentialProxyGbytes" }, - "2431": { + "2633": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.maxMonthlyProxySerps" }, - "2432": { + "2634": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.maxMonthlyExternalDataTransferGbytes" }, - "2433": { + "2635": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.maxActorCount" }, - "2434": { + "2636": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.maxActorTaskCount" }, - "2435": { + "2637": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.dataRetentionDays" }, - "2436": { + "2638": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.availableProxyGroups" }, - "2437": { + "2639": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.teamAccountSeatCount" }, - "2438": { + "2640": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.supportLevel" }, - "2439": { + "2641": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UserPlan.availableAddOns" }, - "2440": { + "2642": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "PlatformFeature" }, - "2441": { + "2643": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "PlatformFeature.Actors" }, - "2442": { + "2644": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "PlatformFeature.Storage" }, - "2443": { + "2645": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "PlatformFeature.ProxySERPS" }, - "2444": { + "2646": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "PlatformFeature.Scheduler" }, - "2445": { + "2647": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "PlatformFeature.Webhooks" }, - "2446": { + "2648": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "PlatformFeature.Proxy" }, - "2447": { + "2649": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "PlatformFeature.ProxyExternalAccess" }, - "2448": { + "2650": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "MonthlyUsage" }, - "2449": { + "2651": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "MonthlyUsage.usageCycle" }, - "2450": { + "2652": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "MonthlyUsage.monthlyServiceUsage" }, - "2451": { + "2653": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "__type" }, - "2452": { + "2654": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "__type.__index" }, - "2454": { + "2656": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "MonthlyUsage.dailyServiceUsages" }, - "2455": { + "2657": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "MonthlyUsage.totalUsageCreditsUsdBeforeVolumeDiscount" }, - "2456": { + "2658": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "MonthlyUsage.totalUsageCreditsUsdAfterVolumeDiscount" }, - "2457": { + "2659": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UsageCycle" }, - "2458": { + "2660": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UsageCycle.startAt" }, - "2459": { + "2661": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "UsageCycle.endAt" }, - "2460": { + "2662": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "AccountAndUsageLimits" }, - "2461": { + "2663": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "AccountAndUsageLimits.monthlyUsageCycle" }, - "2462": { + "2664": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "AccountAndUsageLimits.limits" }, - "2463": { + "2665": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "AccountAndUsageLimits.current" }, - "2464": { + "2666": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "MonthlyUsageCycle" }, - "2465": { + "2667": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "MonthlyUsageCycle.startAt" }, - "2466": { + "2668": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "MonthlyUsageCycle.endAt" }, - "2467": { + "2669": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Limits" }, - "2468": { + "2670": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Limits.maxMonthlyUsageUsd" }, - "2469": { + "2671": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Limits.maxMonthlyActorComputeUnits" }, - "2470": { + "2672": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Limits.maxMonthlyExternalDataTransferGbytes" }, - "2471": { + "2673": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Limits.maxMonthlyProxySerps" }, - "2472": { + "2674": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Limits.maxMonthlyResidentialProxyGbytes" }, - "2473": { + "2675": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Limits.maxActorMemoryGbytes" }, - "2474": { + "2676": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Limits.maxActorCount" }, - "2475": { + "2677": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Limits.maxActorTaskCount" }, - "2476": { + "2678": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Limits.maxConcurrentActorJobs" }, - "2477": { + "2679": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Limits.maxTeamAccountSeatCount" }, - "2478": { + "2680": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Limits.dataRetentionDays" }, - "2479": { + "2681": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "LimitsUpdateOptions" }, - "2480": { + "2682": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Current" }, - "2481": { + "2683": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Current.monthlyUsageUsd" }, - "2482": { + "2684": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Current.monthlyActorComputeUnits" }, - "2483": { + "2685": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Current.monthlyExternalDataTransferGbytes" }, - "2484": { + "2686": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Current.monthlyProxySerps" }, - "2485": { + "2687": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Current.monthlyResidentialProxyGbytes" }, - "2486": { + "2688": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Current.actorMemoryGbytes" }, - "2487": { + "2689": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Current.actorCount" }, - "2488": { + "2690": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Current.actorTaskCount" }, - "2489": { + "2691": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Current.activeActorJobCount" }, - "2490": { + "2692": { "sourceFileName": "../src/resource_clients/user.ts", "qualifiedName": "Current.teamAccountSeatCount" }, - "2491": { + "2693": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookClient" }, - "2495": { + "2697": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookClient.get" }, - "2496": { + "2698": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookClient.get" }, - "2497": { + "2699": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookClient.update" }, - "2498": { + "2700": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookClient.update" }, - "2499": { + "2701": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "newFields" }, - "2500": { + "2702": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookClient.delete" }, - "2501": { + "2703": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookClient.delete" }, - "2502": { + "2704": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookClient.test" }, - "2503": { + "2705": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookClient.test" }, - "2504": { + "2706": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookClient.dispatches" }, - "2505": { + "2707": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookClient.dispatches" }, - "2527": { + "2729": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "2528": { + "2730": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "2529": { + "2731": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "2530": { + "2732": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "2531": { + "2733": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "2532": { + "2734": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "2533": { + "2735": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "2534": { + "2736": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "2535": { + "2737": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "2553": { + "2755": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook" }, - "2554": { + "2756": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.id" }, - "2555": { + "2757": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.userId" }, - "2556": { + "2758": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.createdAt" }, - "2557": { + "2759": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.modifiedAt" }, - "2558": { + "2760": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.isAdHoc" }, - "2559": { + "2761": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.eventTypes" }, - "2560": { + "2762": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.condition" }, - "2561": { + "2763": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.ignoreSslErrors" }, - "2562": { + "2764": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.doNotRetry" }, - "2563": { + "2765": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.requestUrl" }, - "2564": { + "2766": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.payloadTemplate" }, - "2565": { + "2767": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.lastDispatch" }, - "2566": { + "2768": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.stats" }, - "2567": { + "2769": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.shouldInterpolateStrings" }, - "2568": { + "2770": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.isApifyIntegration" }, - "2569": { + "2771": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.headersTemplate" }, - "2570": { + "2772": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "Webhook.description" }, - "2571": { + "2773": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookIdempotencyKey" }, - "2572": { + "2774": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookIdempotencyKey.idempotencyKey" }, - "2573": { + "2775": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookUpdateData" }, - "2574": { + "2776": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookStats" }, - "2575": { + "2777": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookStats.totalDispatches" }, - "2576": { + "2778": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookEventType" }, - "2577": { + "2779": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookCondition" }, - "2578": { + "2780": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookAnyRunOfActorCondition" }, - "2579": { + "2781": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookAnyRunOfActorCondition.actorId" }, - "2580": { + "2782": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookAnyRunOfActorTaskCondition" }, - "2581": { + "2783": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookAnyRunOfActorTaskCondition.actorTaskId" }, - "2582": { + "2784": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookCertainRunCondition" }, - "2583": { + "2785": { "sourceFileName": "../src/resource_clients/webhook.ts", "qualifiedName": "WebhookCertainRunCondition.actorRunId" }, - "2584": { + "2786": { "sourceFileName": "../src/resource_clients/webhook_collection.ts", "qualifiedName": "WebhookCollectionClient" }, - "2588": { + "2790": { "sourceFileName": "../src/resource_clients/webhook_collection.ts", "qualifiedName": "WebhookCollectionClient.list" }, - "2589": { + "2791": { "sourceFileName": "../src/resource_clients/webhook_collection.ts", "qualifiedName": "WebhookCollectionClient.list" }, - "2590": { + "2792": { "sourceFileName": "../src/resource_clients/webhook_collection.ts", "qualifiedName": "options" }, - "2591": { + "2793": { "sourceFileName": "../src/resource_clients/webhook_collection.ts", "qualifiedName": "WebhookCollectionClient.create" }, - "2592": { + "2794": { "sourceFileName": "../src/resource_clients/webhook_collection.ts", "qualifiedName": "WebhookCollectionClient.create" }, - "2593": { + "2795": { "sourceFileName": "../src/resource_clients/webhook_collection.ts", "qualifiedName": "webhook" }, - "2610": { + "2812": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "2611": { + "2813": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "2612": { + "2814": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "2613": { + "2815": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "2614": { + "2816": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "2615": { + "2817": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "2616": { + "2818": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "2617": { + "2819": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "2618": { + "2820": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "2636": { + "2838": { "sourceFileName": "../src/resource_clients/webhook_collection.ts", "qualifiedName": "WebhookCollectionListOptions" }, - "2637": { + "2839": { "sourceFileName": "../src/resource_clients/webhook_collection.ts", "qualifiedName": "WebhookCollectionListOptions.limit" }, - "2638": { + "2840": { "sourceFileName": "../src/resource_clients/webhook_collection.ts", "qualifiedName": "WebhookCollectionListOptions.offset" }, - "2639": { + "2841": { "sourceFileName": "../src/resource_clients/webhook_collection.ts", "qualifiedName": "WebhookCollectionListOptions.desc" }, - "2640": { + "2842": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchClient" }, - "2644": { + "2846": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchClient.get" }, - "2645": { + "2847": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchClient.get" }, - "2667": { + "2869": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "2668": { + "2870": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "2669": { + "2871": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "2670": { + "2872": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "2671": { + "2873": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "2672": { + "2874": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "2673": { + "2875": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "2674": { + "2876": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "2675": { + "2877": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "2693": { + "2895": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatch" }, - "2694": { + "2896": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatch.id" }, - "2695": { + "2897": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatch.userId" }, - "2696": { + "2898": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatch.webhookId" }, - "2697": { + "2899": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatch.createdAt" }, - "2698": { + "2900": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatch.status" }, - "2699": { + "2901": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatch.eventType" }, - "2700": { + "2902": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatch.calls" }, - "2701": { + "2903": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatch.webhook" }, - "2702": { + "2904": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatch.eventData" }, - "2703": { + "2905": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchStatus" }, - "2704": { + "2906": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchStatus.Active" }, - "2705": { + "2907": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchStatus.Succeeded" }, - "2706": { + "2908": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchStatus.Failed" }, - "2707": { + "2909": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchCall" }, - "2708": { + "2910": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchCall.startedAt" }, - "2709": { + "2911": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchCall.finishedAt" }, - "2710": { + "2912": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchCall.errorMessage" }, - "2711": { + "2913": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchCall.responseStatus" }, - "2712": { + "2914": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchCall.responseBody" }, - "2713": { + "2915": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchEventData" }, - "2714": { + "2916": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchEventData.actorRunId" }, - "2715": { + "2917": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchEventData.actorId" }, - "2716": { + "2918": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchEventData.actorTaskId" }, - "2717": { + "2919": { "sourceFileName": "../src/resource_clients/webhook_dispatch.ts", "qualifiedName": "WebhookDispatchEventData.actorBuildId" }, - "2718": { + "2920": { "sourceFileName": "../src/resource_clients/webhook_dispatch_collection.ts", "qualifiedName": "WebhookDispatchCollectionClient" }, - "2722": { + "2924": { "sourceFileName": "../src/resource_clients/webhook_dispatch_collection.ts", "qualifiedName": "WebhookDispatchCollectionClient.list" }, - "2723": { + "2925": { "sourceFileName": "../src/resource_clients/webhook_dispatch_collection.ts", "qualifiedName": "WebhookDispatchCollectionClient.list" }, - "2724": { + "2926": { "sourceFileName": "../src/resource_clients/webhook_dispatch_collection.ts", "qualifiedName": "options" }, - "2741": { + "2943": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.id" }, - "2742": { + "2944": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.safeId" }, - "2743": { + "2945": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.baseUrl" }, - "2744": { + "2946": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.publicBaseUrl" }, - "2745": { + "2947": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.resourcePath" }, - "2746": { + "2948": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.url" }, - "2747": { + "2949": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.apifyClient" }, - "2748": { + "2950": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.httpClient" }, - "2749": { + "2951": { "sourceFileName": "../src/base/api_client.ts", "qualifiedName": "ApiClient.params" }, - "2767": { + "2969": { "sourceFileName": "../src/resource_clients/webhook_dispatch_collection.ts", "qualifiedName": "WebhookDispatchCollectionListOptions" }, - "2768": { + "2970": { "sourceFileName": "../src/resource_clients/webhook_dispatch_collection.ts", "qualifiedName": "WebhookDispatchCollectionListOptions.limit" }, - "2769": { + "2971": { "sourceFileName": "../src/resource_clients/webhook_dispatch_collection.ts", "qualifiedName": "WebhookDispatchCollectionListOptions.offset" }, - "2770": { + "2972": { "sourceFileName": "../src/resource_clients/webhook_dispatch_collection.ts", "qualifiedName": "WebhookDispatchCollectionListOptions.desc" }, - "2771": { + "2973": { "sourceFileName": "../src/apify_api_error.ts", "qualifiedName": "ApifyApiError" }, - "2772": { + "2974": { "sourceFileName": "../node_modules/@types/node/globals.d.ts", "qualifiedName": "ErrorConstructor.captureStackTrace" }, - "2773": { + "2975": { "sourceFileName": "../node_modules/@types/node/globals.d.ts", "qualifiedName": "ErrorConstructor.captureStackTrace" }, - "2774": { + "2976": { "sourceFileName": "../node_modules/@types/node/globals.d.ts", "qualifiedName": "targetObject" }, - "2775": { + "2977": { "sourceFileName": "../node_modules/@types/node/globals.d.ts", "qualifiedName": "constructorOpt" }, - "2776": { + "2978": { "sourceFileName": "../node_modules/@types/node/globals.d.ts", "qualifiedName": "ErrorConstructor.prepareStackTrace" }, - "2777": { + "2979": { "sourceFileName": "../node_modules/@types/node/globals.d.ts", "qualifiedName": "ErrorConstructor.prepareStackTrace" }, - "2778": { + "2980": { "sourceFileName": "../node_modules/@types/node/globals.d.ts", "qualifiedName": "err" }, - "2779": { + "2981": { "sourceFileName": "../node_modules/@types/node/globals.d.ts", "qualifiedName": "stackTraces" }, - "2780": { + "2982": { "sourceFileName": "../node_modules/@types/node/globals.d.ts", "qualifiedName": "ErrorConstructor.stackTraceLimit" }, - "2786": { + "2988": { "sourceFileName": "../src/apify_api_error.ts", "qualifiedName": "ApifyApiError.name" }, - "2787": { + "2989": { "sourceFileName": "../src/apify_api_error.ts", "qualifiedName": "ApifyApiError.clientMethod" }, - "2788": { + "2990": { "sourceFileName": "../src/apify_api_error.ts", "qualifiedName": "ApifyApiError.statusCode" }, - "2789": { + "2991": { "sourceFileName": "../src/apify_api_error.ts", "qualifiedName": "ApifyApiError.type" }, - "2790": { + "2992": { "sourceFileName": "../src/apify_api_error.ts", "qualifiedName": "ApifyApiError.attempt" }, - "2791": { + "2993": { "sourceFileName": "../src/apify_api_error.ts", "qualifiedName": "ApifyApiError.httpMethod" }, - "2792": { + "2994": { "sourceFileName": "../src/apify_api_error.ts", "qualifiedName": "ApifyApiError.path" }, - "2793": { + "2995": { "sourceFileName": "../src/apify_api_error.ts", "qualifiedName": "ApifyApiError.originalStack" }, - "2794": { + "2996": { "sourceFileName": "../src/apify_api_error.ts", "qualifiedName": "ApifyApiError.data" }, - "2803": { + "3005": { "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", "qualifiedName": "Error.message" }, - "2804": { + "3006": { "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", "qualifiedName": "Error.stack" }, - "2805": { + "3007": { "sourceFileName": "node_modules/typescript/lib/lib.es2022.error.d.ts", "qualifiedName": "Error.cause" } From ddbff6b48a5e3a9fbd8d9e6aa048e2897cce2908 Mon Sep 17 00:00:00 2001 From: Josef Prochazka Date: Fri, 21 Nov 2025 13:53:45 +0100 Subject: [PATCH 2/2] Add more comments and polish --- src/resource_clients/log.ts | 23 ++++++++++++++++++++++- src/resource_clients/run.ts | 2 +- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/src/resource_clients/log.ts b/src/resource_clients/log.ts index c62b3f00..ca8aab48 100644 --- a/src/resource_clients/log.ts +++ b/src/resource_clients/log.ts @@ -239,6 +239,9 @@ export interface StreamedLogOptions { fromStart?: boolean; } +/** + * Helper class for redirecting Actor run status and status message to log. + */ export class StatusMessageWatcher { private static finalSleepTimeMs = 6000; private static defaultCheckPeriodMs = 5000; @@ -250,12 +253,16 @@ export class StatusMessageWatcher { private loggingTask: Promise | null = null; private stopLogging = false; - constructor(toLog: Log, runClient: RunClient, checkPeriod: number = StatusMessageWatcher.defaultCheckPeriodMs) { + constructor(options: StatusMessageWatcherOptions) { + const { toLog, runClient, checkPeriod = StatusMessageWatcher.defaultCheckPeriodMs } = options; this.runClient = runClient; this.toLog = toLog; this.checkPeriod = checkPeriod; } + /** + * Start Actor run status and status message redirection. + */ start() { if (this.loggingTask) { throw new Error('Logging task already active'); @@ -264,11 +271,15 @@ export class StatusMessageWatcher { this.loggingTask = this._logChangedStatusMessage(); } + /** + * Stop Actor run status and status message redirection. + */ async stop(): Promise { if (!this.loggingTask) { throw new Error('Logging task is not active'); } await new Promise((resolve) => { + // Wait for the final status and status message to be set setTimeout(resolve, StatusMessageWatcher.finalSleepTimeMs); }); this.stopLogging = true; @@ -284,6 +295,7 @@ export class StatusMessageWatcher { const statusMessage = runData.statusMessage ?? ''; const newStatusMessage = `Status: ${status}, Message: ${statusMessage}`; if (newStatusMessage !== this.lastStatusMessage) { + // Log only when status or status message changed this.lastStatusMessage = newStatusMessage; this.toLog.info(newStatusMessage); } @@ -294,3 +306,12 @@ export class StatusMessageWatcher { } } } + +export interface StatusMessageWatcherOptions { + /** Run client used to communicate with the Apify API. */ + runClient: RunClient; + /** Log to which the Actor run logs will be redirected. */ + toLog: Log; + /** How often should change in status be checked. */ + checkPeriod?: number; +} diff --git a/src/resource_clients/run.ts b/src/resource_clients/run.ts index 58374ac2..115b42de 100644 --- a/src/resource_clients/run.ts +++ b/src/resource_clients/run.ts @@ -299,7 +299,7 @@ export class RunClient extends ResourceClient { if (toLog === undefined || toLog === 'default') { toLog = await this.getActorRedirectLog(); } - return new StatusMessageWatcher(toLog, this, options.checkPeriod); + return new StatusMessageWatcher({ toLog, runClient: this, checkPeriod: options.checkPeriod }); } private async getActorRedirectLog(): Promise {