export declare const DEFAULT_PAGE = 0; /** * Default page size for paginated API requests. * @type {number} * @public * @example * const pageSize = DEFAULT_PAGE_SIZE; // 100 * @ignore */ export declare const DEFAULT_PAGE_SIZE = 100; /** * Agent state ID for 'Available'. * @type {string} * @public * @ignore */ export declare const AGENT_STATE_AVAILABLE_ID = "0"; /** * Agent state label for 'Available'. * @type {string} * @public * @ignore */ export declare const AGENT_STATE_AVAILABLE = "Available"; /** * Description for the 'Available' agent state. * @type {string} * @public * @ignore */ export declare const AGENT_STATE_AVAILABLE_DESCRIPTION = "Agent is available to receive calls"; /** * Default attributes for auxiliary code API requests. * @type {string[]} * @public * @ignore */ export declare const DEFAULT_AUXCODE_ATTRIBUTES: string[]; export declare const METHODS: { GET_AGENT_CONFIG: string; GET_USER_USING_CI: string; GET_DESKTOP_PROFILE_BY_ID: string; GET_MULTIMEDIA_PROFILE_BY_ID: string; GET_LIST_OF_TEAMS: string; GET_ALL_TEAMS: string; GET_LIST_OF_AUX_CODES: string; GET_ALL_AUX_CODES: string; GET_SITE_INFO: string; GET_ORG_INFO: string; GET_ORGANIZATION_SETTING: string; GET_TENANT_DATA: string; GET_URL_MAPPING: string; GET_DIAL_PLAN_DATA: string; GET_AI_FEATURE_FLAGS: string; GET_QUEUES: string; PARSE_AGENT_CONFIGS: string; GET_URL_MAPPING_UTIL: string; GET_MSFT_CONFIG: string; GET_WEBEX_CONFIG: string; GET_DEFAULT_AGENT_DN: string; GET_FILTERED_DIALPLAN_ENTRIES: string; GET_FILTER_AUX_CODES: string; GET_DEFAULT_WRAP_UP_CODE: string; }; /** * Maps API endpoint names to functions that generate endpoint URLs for various organization resources. * @public * @example * const url = endPointMap.userByCI('org123', 'agent456'); */ export declare const endPointMap: { /** * Gets the endpoint for a user by CI user ID. * @param orgId - Organization ID. * @param agentId - Agent ID. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.userByCI('org123', 'agent456'); * @ignore */ userByCI: (orgId: string, agentId: string) => string; /** * Gets the endpoint for a desktop profile. * @param orgId - Organization ID. * @param desktopProfileId - Desktop profile ID. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.desktopProfile('org123', 'profile789'); * @ignore */ desktopProfile: (orgId: string, desktopProfileId: string) => string; /** * Gets the endpoint for a multimedia profile. * @param orgId - Organization ID. * @param multimediaProfileId - Multimedia profile ID. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.multimediaProfile('org123', 'multi456'); * @ignore */ multimediaProfile: (orgId: string, multimediaProfileId: string) => string; /** * Gets the endpoint for listing teams with optional filters. * @param orgId - Organization ID. * @param page - Page number. * @param pageSize - Page size. * @param filter - Array of team IDs to filter. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.listTeams('org123', 0, 100, ['team1', 'team2']); * @ignore */ listTeams: (orgId: string, page: number, pageSize: number, filter: string[]) => string; /** * Gets the endpoint for listing auxiliary codes with optional filters and attributes. * @param orgId - Organization ID. * @param page - Page number. * @param pageSize - Page size. * @param filter - Array of auxiliary code IDs to filter. * @param attributes - Array of attribute names to include. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.listAuxCodes('org123', 0, 100, ['aux1'], ['id', 'name']); * @ignore */ listAuxCodes: (orgId: string, page: number, pageSize: number, filter: string[], attributes: string[]) => string; /** * Gets the endpoint for organization info. * @param orgId - Organization ID. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.orgInfo('org123'); * @ignore */ orgInfo: (orgId: string) => string; /** * Gets the endpoint for organization settings. * @param orgId - Organization ID. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.orgSettings('org123'); * @ignore */ orgSettings: (orgId: string) => string; /** * Gets the endpoint for site info. * @param orgId - Organization ID. * @param siteId - Site ID. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.siteInfo('org123', 'site456'); * @ignore */ siteInfo: (orgId: string, siteId: string) => string; /** * Gets the endpoint for tenant configuration data. * @param orgId - Organization ID. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.tenantData('org123'); * @ignore */ tenantData: (orgId: string) => string; /** * Gets the endpoint for organization URL mapping. * @param orgId - Organization ID. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.urlMapping('org123'); * @ignore */ urlMapping: (orgId: string) => string; /** * Gets the endpoint for dial plan. * @param orgId - Organization ID. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.dialPlan('org123'); * @ignore */ dialPlan: (orgId: string) => string; /** * Gets the endpoint for listing AI feature flags. * @param orgId - Organization ID. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.aiFeatureFlags('org123'); * @ignore */ aiFeature: (orgId: string) => string; /** * Gets the endpoint for the queue list with custom query parameters. * @param orgId - Organization ID. * @param queryParams - Query parameters string. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.queueList('org123', 'page=0&pageSize=10'); * @ignore */ queueList: (orgId: string, queryParams: string) => string; /** * Gets the endpoint for entry points list with custom query parameters. * @param orgId - Organization ID. * @param queryParams - Query parameters string. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.entryPointList('org123', 'page=0&pageSize=10'); * @ignore */ entryPointList: (orgId: string, queryParams: string) => string; /** * Gets the endpoint for address book entries with custom query parameters. * @param orgId - Organization ID. * @param addressBookId - Address book ID. * @param queryParams - Query parameters string. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.addressBookEntries('org123', 'book456', 'page=0&pageSize=10'); * @ignore */ addressBookEntries: (orgId: string, addressBookId: string, queryParams: string) => string; /** * Gets the endpoint for outdial ANI entries with custom query parameters. * @param orgId - Organization ID. * @param outdialANI - Outdial ANI ID. * @param queryParams - Query parameters string. * @returns The endpoint URL string. * @public * @example * const url = endPointMap.outdialAniEntries('org123', 'ani456', 'page=0&pageSize=10'); * @ignore */ outdialAniEntries: (orgId: string, outdialANI: string, queryParams: string) => string; };