Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions packages/consts/src/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,11 +347,6 @@ export const ME_USER_NAME_PLACEHOLDER = 'me';
*/
export const REQUEST_QUEUE_HEAD_MAX_LIMIT = 1000;

/**
* Throttling period for mongo increment updates
*/
export const MONGO_INC_THROTTLED_INTERVAL_MILLIS = 5000;

/**
* Dictionary of APIFY_XXX environment variable names.
*/
Expand Down Expand Up @@ -443,15 +438,6 @@ export const KEY_VALUE_STORE_KEYS = {
*/
export const ACTOR_LOG_MAX_CHARS = ACTOR_LIMITS.LOG_MAX_CHARS;

/**
* Types of customer request.
*/
export const CUSTOMER_REQUEST_TYPES = {
EXTRACT_DATA: 'EXTRACT_DATA',
AUTOMATION: 'AUTOMATION',
OTHER: 'OTHER',
} as const;

/**
* Represents the maximum size in bytes of a request body (decompressed)
* that will be accepted by the App and API servers.
Expand Down Expand Up @@ -575,9 +561,6 @@ export const WEBHOOK_ALLOWED_PAYLOAD_VARIABLES = new Set([
'resource',
]);

// This client key is used in request queue to indentify requests from Apify app UI.
export const APIFY_UI_CLIENT_KEY = 'apify-app-ui';

// Max allowed size of files in multi-file editor
export const MAX_MULTIFILE_BYTES = 3 * (1024 ** 2); // 3MB

Expand Down