Skip to content
Closed
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
6 changes: 3 additions & 3 deletions src/utils/InstabugConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ const InstabugConstants = {
GRAPHQL_HEADER: 'ibg-graphql-header',

// TODO: dyanmically get the max size from the native SDK and update the error message to reflect the dynamic size.
MAX_NETWORK_BODY_SIZE_IN_BYTES: 1024 * 10, // 10 KB
MAX_NETWORK_BODY_SIZE_IN_BYTES: 1024 * 30, // 30 KB
MAX_RESPONSE_BODY_SIZE_EXCEEDED_MESSAGE:
'The response body has not been logged because it exceeds the maximum size of 10 Kb',
'The response body has not been logged because it exceeds the maximum size of 30 Kb',
MAX_REQUEST_BODY_SIZE_EXCEEDED_MESSAGE:
'The request body has not been logged because it exceeds the maximum size of 10 Kb',
'The request body has not been logged because it exceeds the maximum size of 30 Kb',
SET_USER_ATTRIBUTES_ERROR_TYPE_MESSAGE:
'IBG-RN: Expected key and value passed to setUserAttribute to be of type string',
REMOVE_USER_ATTRIBUTES_ERROR_TYPE_MESSAGE:
Expand Down