/** * Application constants to avoid magic numbers and strings */ export declare const MAX_DISPLAY_NAME_LENGTH = 255; export declare const MIN_DISPLAY_NAME_LENGTH = 1; export declare const MAX_KEY_LENGTH = 255; export declare const MIN_KEY_LENGTH = 1; export declare const MAX_DESCRIPTION_LENGTH = 1000; export declare const DEFAULT_PAGE_SIZE = 50; export declare const MAX_PAGE_SIZE = 100; export declare const MIN_PAGE_SIZE = 1; export declare const MAX_SEARCH_LENGTH = 255; export declare const MAX_FEATURE_VALUE_LENGTH = 1000; export declare const MAX_SUBSCRIPTIONS_PER_CUSTOMER = 100; export declare const PLAN_CACHE_SIZE = 1000; export declare const BATCH_SIZE = 50; export declare const QUERY_TIMEOUT = 60000; export declare const CONNECTION_TIMEOUT = 30000; //# sourceMappingURL=index.d.ts.map