skyflow-node
Version:
Skyflow SDK for Node.js
308 lines (307 loc) • 6.82 kB
TypeScript
declare const SKYFLOW_ERROR_CODE: {
VAULTID_IS_REQUIRED: {
code: number;
description: string;
};
EMPTY_VAULTID_IN_INIT: {
code: number;
description: string;
};
VAULTURL_IS_REQUIRED: {
code: number;
description: string;
};
EMPTY_VAULTURL_IN_INIT: {
code: number;
description: string;
};
INVALID_VAULTURL_IN_INIT: {
code: number;
description: string;
};
GET_BEARER_TOKEN_IS_REQUIRED: {
code: number;
description: string;
};
INVALID_BEARER_TOKEN: {
code: number;
description: string;
};
INVALID_CREDENTIALS: {
code: number;
description: string;
};
INVALID_CONTAINER_TYPE: {
code: number;
description: string;
};
INVALID_TABLE_OR_COLUMN: {
code: number;
description: string;
};
CLIENT_CONNECTION: {
code: number;
description: string;
};
RECORDS_KEY_NOT_FOUND: {
code: number;
description: string;
};
EMPTY_RECORDS: {
code: number;
description: string;
};
MISSING_RECORDS: {
code: number;
description: string;
};
EMPTY_RECORD_IDS: {
code: number;
description: string;
};
EMPTY_RECORD_COLUMN_VALUES: {
code: number;
description: string;
};
INVALID_RECORD_ID_TYPE: {
code: number;
description: string;
};
INVALID_RECORD_COLUMN_VALUE_TYPE: {
code: number;
description: string;
};
INVALID_COLUMN_VALUES_OPTION_TYPE: {
code: number;
description: string;
};
INVALID_RECORD_LABEL: {
code: number;
description: string;
};
INVALID_RECORD_ALT_TEXT: {
code: number;
description: string;
};
EMPTY_TABLE_AND_FIELDS: {
code: number;
description: string;
};
EMPTY_TABLE: {
code: number;
description: string;
};
MISSING_TABLE: {
code: number;
description: string;
};
EMPTY_COLUMN_NAME: {
code: number;
description: string;
};
EMPTY_COLUMN_VALUE: {
code: number;
description: string;
};
INVALID_RECORD_TABLE_VALUE: {
code: number;
description: string;
};
INVALID_RECORD_COLUMN_VALUE: {
code: number;
description: string;
};
MISSING_RECORD_COLUMN_VALUE: {
code: number;
description: string;
};
MISSING_RECORD_COLUMN_NAME: {
code: number;
description: string;
};
MISSING_ID_AND_COLUMN_NAME: {
code: number;
description: string;
};
INVALID_TOKEN_ID: {
code: number;
description: string;
};
MISSING_TOKEN: {
code: number;
description: string;
};
MISSING_TOKEN_KEY: {
code: number;
description: string;
};
INVALID_REDACTION_TYPE: {
code: number;
description: string;
};
MISSING_REDACTION: {
code: number;
description: string;
};
MISSING_REDACTION_VALUE: {
code: number;
description: string;
};
MISSING_IDS: {
code: number;
description: string;
};
MISSING_CONNECTION_URL: {
code: number;
description: string;
};
INVALID_CONNECTION_URL_TYPE: {
code: number;
description: string;
};
INVALID_CONNECTION_URL: {
code: number;
description: string;
};
MISSING_METHODNAME_KEY: {
code: number;
description: string;
};
INVALID_METHODNAME_VALUE: {
code: number;
description: string;
};
UNKNOWN_ERROR: {
code: number;
description: string;
};
CONNECTION_ERROR: {
code: number;
description: string;
};
TRANSACTION_ERROR: {
code: number;
description: string;
};
INVALID_UPSERT_OPTION_TYPE: {
code: number;
description: string;
};
EMPTY_UPSERT_OPTIONS_ARRAY: {
code: number;
description: string;
};
INVALID_UPSERT_OPTION_OBJECT_TYPE: {
code: number;
description: string;
};
MISSING_TABLE_IN_UPSERT_OPTION: {
code: number;
description: string;
};
MISSING_COLUMN_IN_UPSERT_OPTION: {
code: number;
description: string;
};
INVALID_TABLE_IN_UPSERT_OPTION: {
code: number;
description: string;
};
INVALID_COLUMN_IN_UPSERT_OPTION: {
code: number;
description: string;
};
INVALID_TOKENS_IN_INSERT: {
code: number;
description: string;
};
INVALID_CONTINUE_ON_ERROR_IN_INSERT: {
code: number;
description: string;
};
INVALID_TOKENS_IN_UPDATE: {
code: number;
description: string;
};
MISSING_TABLE_IN_IN_UPDATE: {
code: number;
description: string;
};
MISSING_FIELDS_IN_IN_UPDATE: {
code: number;
description: string;
};
MISSING_ID_IN_UPDATE: {
code: number;
description: string;
};
INVALID_ID_IN_UPDATE: {
code: number;
description: string;
};
INVALID_TABLE_IN_UPDATE: {
code: number;
description: string;
};
INVALID_FIELDS_IN_UPDATE: {
code: number;
description: string;
};
INVALID_UPDATE_INPUT: {
code: number;
description: string;
};
INVALID_RECORDS_UPDATE_INPUT: {
code: number;
description: string;
};
INVALID_GET_BY_ID_INPUT: {
code: number;
description: string;
};
INVALID_TOKENS_IN_GET: {
code: number;
description: string;
};
TOKENS_GET_COLUMN_NOT_SUPPORTED: {
code: number;
description: string;
};
REDACTION_WITH_TOKENS_NOT_SUPPORTED: {
code: number;
description: string;
};
INVALID_ENCODE_URI_IN_GET: {
code: number;
description: string;
};
MISSING_ID_IN_DELETE: {
code: number;
description: string;
};
INVALID_ID_IN_DELETE: {
code: number;
description: string;
};
MISSING_TABLE_IN_DELETE: {
code: number;
description: string;
};
INVALID_TABLE_IN_DELETE: {
code: number;
description: string;
};
INVALID_DELETE_INPUT: {
code: number;
description: string;
};
INVLAID_DELETE_RECORDS_INPUT: {
code: number;
description: string;
};
DETOKENIZE_INVALID_REDACTION_TYPE: {
code: number;
description: string;
};
};
export default SKYFLOW_ERROR_CODE;