@exyconn/common 2.3.3 → 2.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/http/index.d.mts +66 -3
- package/dist/client/http/index.d.ts +66 -3
- package/dist/client/http/index.js +101 -6
- package/dist/client/http/index.js.map +1 -1
- package/dist/client/http/index.mjs +90 -7
- package/dist/client/http/index.mjs.map +1 -1
- package/dist/client/index.d.mts +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.js +101 -6
- package/dist/client/index.js.map +1 -1
- package/dist/client/index.mjs +90 -7
- package/dist/client/index.mjs.map +1 -1
- package/dist/{index-Ckhm_HaX.d.mts → index-B8O4iu6q.d.mts} +7 -2
- package/dist/{index-CF0D8PGE.d.ts → index-CdbQ8YPt.d.ts} +14 -2
- package/dist/{index-br6POSyA.d.ts → index-MpV0UNTq.d.ts} +7 -2
- package/dist/{index-BZf42T3R.d.mts → index-guYdqefq.d.mts} +14 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +262 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +259 -16
- package/dist/index.mjs.map +1 -1
- package/dist/server/index.d.mts +1 -1
- package/dist/server/index.d.ts +1 -1
- package/dist/server/index.js +155 -5
- package/dist/server/index.js.map +1 -1
- package/dist/server/index.mjs +150 -5
- package/dist/server/index.mjs.map +1 -1
- package/dist/server/utils/index.d.mts +99 -1
- package/dist/server/utils/index.d.ts +99 -1
- package/dist/server/utils/index.js +154 -0
- package/dist/server/utils/index.js.map +1 -1
- package/dist/server/utils/index.mjs +148 -3
- package/dist/server/utils/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { StatusCode, StatusMessage, statusCode, statusMessage } from './server/e
|
|
|
3
3
|
import { LoggerConfig, createLogger, createMorganStream, logger, simpleLogger, stream } from './server/logger/index.mjs';
|
|
4
4
|
import { DbConnectionOptions, connectDB, disconnectDB, getConnectionStatus } from './server/db/index.mjs';
|
|
5
5
|
import { AuthRequest, BulkDeleteRequest, ColumnMeta, CrudConfig, JWTPayload, OrgRequest, PaginatedRequest, PaginatedResponse, PaginatedResult, PaginationMeta, ParsedQuery, SortConfig, SortOrder, authenticateApiKey, authenticateJWT, buildDeleteFilter, createBulkDeleteHandler, createCrudControllers, createPaginationMiddleware, extractOrganization, extractSchemaMeta, optionalAuthenticateJWT, parseBulkDelete, queryPagination, queryParser, requireOrganization } from './server/middleware/index.mjs';
|
|
6
|
-
import { FilterOptions, PackageCheckResult, PackageJson, PackageVersion, PaginationOptions, PaginationResult, buildFilter, buildPagination, buildPaginationMeta, checkPackageServer, formatPackageCheckResult, generateNcuCommand, omitFields, packageCheckServer, pickFields, printPackageCheckSummary, sanitizeDocument, sanitizeUser } from './server/utils/index.mjs';
|
|
6
|
+
import { FilterOptions, HealthConfig, HealthResponse, PackageCheckResult, PackageJson, PackageVersion, PaginationOptions, PaginationResult, buildFilter, buildPagination, buildPaginationMeta, checkPackageServer, createHealthHandler, createRootHandler, formatPackageCheckResult, generateHealthResponse, generateNcuCommand, omitFields, packageCheckServer, pickFields, printPackageCheckSummary, sanitizeDocument, sanitizeUser } from './server/utils/index.mjs';
|
|
7
7
|
import { AppConfig, AuthConfig, ConfigBuilder, CorsConfig, CorsOriginsConfig, DEFAULT_AUTH_CONFIG, DEFAULT_CORS_CONFIG, DEFAULT_CORS_ORIGINS, DEFAULT_DATABASE_CONFIG, DEFAULT_LOGGING_CONFIG, DEFAULT_RATE_LIMIT_CONFIG, DEFAULT_RATE_LIMIT_TIERS, DEFAULT_SERVER_CONFIG, DatabaseConfig, EXYCONN_CORS_CONFIG, Environment, LogLevel, LoggingConfig, PERMISSIVE_CORS_CONFIG, RATE_LIMIT_CONFIG, RateLimitConfig, RateLimitResponse, RateLimitTier, RateLimitTierConfig, RateLimiterBuilder, RateLimiterConfig, STRICT_CORS_CONFIG, ServerConfig, buildConfig, corsOptions, createApiKeyGenerator, createApiRateLimiter, createBrandCorsOptions, createConfig, createCorsOptions, createDdosRateLimiter, createMultiBrandCorsOptions, createPrefixedKeyGenerator, createRateLimiter, createStandardRateLimiter, createStrictRateLimiter, createUserKeyGenerator, ddosProtectionLimiter, defaultKeyGenerator, getDatabaseOptions, isDevelopment, isProduction, isTest, rateLimiter, standardRateLimiter, strictRateLimiter } from './server/configs/index.mjs';
|
|
8
8
|
|
|
9
9
|
declare const index_ApiResponse: typeof ApiResponse;
|
|
@@ -30,6 +30,8 @@ declare const index_DbConnectionOptions: typeof DbConnectionOptions;
|
|
|
30
30
|
declare const index_EXYCONN_CORS_CONFIG: typeof EXYCONN_CORS_CONFIG;
|
|
31
31
|
declare const index_Environment: typeof Environment;
|
|
32
32
|
declare const index_FilterOptions: typeof FilterOptions;
|
|
33
|
+
declare const index_HealthConfig: typeof HealthConfig;
|
|
34
|
+
declare const index_HealthResponse: typeof HealthResponse;
|
|
33
35
|
declare const index_JWTPayload: typeof JWTPayload;
|
|
34
36
|
declare const index_LogLevel: typeof LogLevel;
|
|
35
37
|
declare const index_LoggerConfig: typeof LoggerConfig;
|
|
@@ -80,12 +82,14 @@ declare const index_createConfig: typeof createConfig;
|
|
|
80
82
|
declare const index_createCorsOptions: typeof createCorsOptions;
|
|
81
83
|
declare const index_createCrudControllers: typeof createCrudControllers;
|
|
82
84
|
declare const index_createDdosRateLimiter: typeof createDdosRateLimiter;
|
|
85
|
+
declare const index_createHealthHandler: typeof createHealthHandler;
|
|
83
86
|
declare const index_createLogger: typeof createLogger;
|
|
84
87
|
declare const index_createMorganStream: typeof createMorganStream;
|
|
85
88
|
declare const index_createMultiBrandCorsOptions: typeof createMultiBrandCorsOptions;
|
|
86
89
|
declare const index_createPaginationMiddleware: typeof createPaginationMiddleware;
|
|
87
90
|
declare const index_createPrefixedKeyGenerator: typeof createPrefixedKeyGenerator;
|
|
88
91
|
declare const index_createRateLimiter: typeof createRateLimiter;
|
|
92
|
+
declare const index_createRootHandler: typeof createRootHandler;
|
|
89
93
|
declare const index_createStandardRateLimiter: typeof createStandardRateLimiter;
|
|
90
94
|
declare const index_createStrictRateLimiter: typeof createStrictRateLimiter;
|
|
91
95
|
declare const index_createUserKeyGenerator: typeof createUserKeyGenerator;
|
|
@@ -99,6 +103,7 @@ declare const index_extractOrganization: typeof extractOrganization;
|
|
|
99
103
|
declare const index_extractSchemaMeta: typeof extractSchemaMeta;
|
|
100
104
|
declare const index_forbiddenResponse: typeof forbiddenResponse;
|
|
101
105
|
declare const index_formatPackageCheckResult: typeof formatPackageCheckResult;
|
|
106
|
+
declare const index_generateHealthResponse: typeof generateHealthResponse;
|
|
102
107
|
declare const index_generateNcuCommand: typeof generateNcuCommand;
|
|
103
108
|
declare const index_getConnectionStatus: typeof getConnectionStatus;
|
|
104
109
|
declare const index_getDatabaseOptions: typeof getDatabaseOptions;
|
|
@@ -132,7 +137,7 @@ declare const index_successResponseArr: typeof successResponseArr;
|
|
|
132
137
|
declare const index_unauthorizedResponse: typeof unauthorizedResponse;
|
|
133
138
|
declare const index_validationErrorResponse: typeof validationErrorResponse;
|
|
134
139
|
declare namespace index {
|
|
135
|
-
export { index_ApiResponse as ApiResponse, index_AppConfig as AppConfig, index_AuthConfig as AuthConfig, index_AuthRequest as AuthRequest, index_BulkDeleteRequest as BulkDeleteRequest, index_ColumnMeta as ColumnMeta, index_ColumnMetadata as ColumnMetadata, index_ConfigBuilder as ConfigBuilder, index_CorsConfig as CorsConfig, index_CorsOriginsConfig as CorsOriginsConfig, index_CrudConfig as CrudConfig, index_DEFAULT_AUTH_CONFIG as DEFAULT_AUTH_CONFIG, index_DEFAULT_CORS_CONFIG as DEFAULT_CORS_CONFIG, index_DEFAULT_CORS_ORIGINS as DEFAULT_CORS_ORIGINS, index_DEFAULT_DATABASE_CONFIG as DEFAULT_DATABASE_CONFIG, index_DEFAULT_LOGGING_CONFIG as DEFAULT_LOGGING_CONFIG, index_DEFAULT_RATE_LIMIT_CONFIG as DEFAULT_RATE_LIMIT_CONFIG, index_DEFAULT_RATE_LIMIT_TIERS as DEFAULT_RATE_LIMIT_TIERS, index_DEFAULT_SERVER_CONFIG as DEFAULT_SERVER_CONFIG, index_DatabaseConfig as DatabaseConfig, index_DbConnectionOptions as DbConnectionOptions, index_EXYCONN_CORS_CONFIG as EXYCONN_CORS_CONFIG, index_Environment as Environment, index_FilterOptions as FilterOptions, index_JWTPayload as JWTPayload, index_LogLevel as LogLevel, index_LoggerConfig as LoggerConfig, index_LoggingConfig as LoggingConfig, index_OrgRequest as OrgRequest, index_PERMISSIVE_CORS_CONFIG as PERMISSIVE_CORS_CONFIG, index_PackageCheckResult as PackageCheckResult, index_PackageJson as PackageJson, index_PackageVersion as PackageVersion, index_PaginatedRequest as PaginatedRequest, index_PaginatedResponse as PaginatedResponse, index_PaginatedResult as PaginatedResult, index_PaginationData as PaginationData, index_PaginationMeta as PaginationMeta, index_PaginationOptions as PaginationOptions, index_PaginationResult as PaginationResult, index_ParsedQuery as ParsedQuery, index_RATE_LIMIT_CONFIG as RATE_LIMIT_CONFIG, index_RateLimitConfig as RateLimitConfig, index_RateLimitResponse as RateLimitResponse, index_RateLimitTier as RateLimitTier, index_RateLimitTierConfig as RateLimitTierConfig, index_RateLimiterBuilder as RateLimiterBuilder, index_RateLimiterConfig as RateLimiterConfig, index_STRICT_CORS_CONFIG as STRICT_CORS_CONFIG, index_ServerConfig as ServerConfig, index_SortConfig as SortConfig, index_SortOrder as SortOrder, index_StatusCode as StatusCode, index_StatusMessage as StatusMessage, index_authenticateApiKey as authenticateApiKey, index_authenticateJWT as authenticateJWT, index_badRequestResponse as badRequestResponse, index_buildConfig as buildConfig, index_buildDeleteFilter as buildDeleteFilter, index_buildFilter as buildFilter, index_buildPagination as buildPagination, index_buildPaginationMeta as buildPaginationMeta, index_checkPackageServer as checkPackageServer, index_conflictResponse as conflictResponse, index_connectDB as connectDB, index_corsOptions as corsOptions, index_createApiKeyGenerator as createApiKeyGenerator, index_createApiRateLimiter as createApiRateLimiter, index_createBrandCorsOptions as createBrandCorsOptions, index_createBulkDeleteHandler as createBulkDeleteHandler, index_createConfig as createConfig, index_createCorsOptions as createCorsOptions, index_createCrudControllers as createCrudControllers, index_createDdosRateLimiter as createDdosRateLimiter, index_createLogger as createLogger, index_createMorganStream as createMorganStream, index_createMultiBrandCorsOptions as createMultiBrandCorsOptions, index_createPaginationMiddleware as createPaginationMiddleware, index_createPrefixedKeyGenerator as createPrefixedKeyGenerator, index_createRateLimiter as createRateLimiter, index_createStandardRateLimiter as createStandardRateLimiter, index_createStrictRateLimiter as createStrictRateLimiter, index_createUserKeyGenerator as createUserKeyGenerator, index_createdResponse as createdResponse, index_ddosProtectionLimiter as ddosProtectionLimiter, index_defaultKeyGenerator as defaultKeyGenerator, index_disconnectDB as disconnectDB, index_errorResponse as errorResponse, index_extractColumns as extractColumns, index_extractOrganization as extractOrganization, index_extractSchemaMeta as extractSchemaMeta, index_forbiddenResponse as forbiddenResponse, index_formatPackageCheckResult as formatPackageCheckResult, index_generateNcuCommand as generateNcuCommand, index_getConnectionStatus as getConnectionStatus, index_getDatabaseOptions as getDatabaseOptions, index_isDevelopment as isDevelopment, index_isProduction as isProduction, index_isTest as isTest, index_logger as logger, index_noContentResponse as noContentResponse, index_notFoundResponse as notFoundResponse, index_omitFields as omitFields, index_optionalAuthenticateJWT as optionalAuthenticateJWT, index_packageCheckServer as packageCheckServer, index_parseBulkDelete as parseBulkDelete, index_pickFields as pickFields, index_printPackageCheckSummary as printPackageCheckSummary, index_queryPagination as queryPagination, index_queryParser as queryParser, index_rateLimitResponse as rateLimitResponse, index_rateLimiter as rateLimiter, index_requireOrganization as requireOrganization, index_sanitizeDocument as sanitizeDocument, index_sanitizeUser as sanitizeUser, index_simpleLogger as simpleLogger, index_standardRateLimiter as standardRateLimiter, index_statusCode as statusCode, index_statusMessage as statusMessage, index_stream as stream, index_strictRateLimiter as strictRateLimiter, index_successResponse as successResponse, index_successResponseArr as successResponseArr, index_unauthorizedResponse as unauthorizedResponse, index_validationErrorResponse as validationErrorResponse };
|
|
140
|
+
export { index_ApiResponse as ApiResponse, index_AppConfig as AppConfig, index_AuthConfig as AuthConfig, index_AuthRequest as AuthRequest, index_BulkDeleteRequest as BulkDeleteRequest, index_ColumnMeta as ColumnMeta, index_ColumnMetadata as ColumnMetadata, index_ConfigBuilder as ConfigBuilder, index_CorsConfig as CorsConfig, index_CorsOriginsConfig as CorsOriginsConfig, index_CrudConfig as CrudConfig, index_DEFAULT_AUTH_CONFIG as DEFAULT_AUTH_CONFIG, index_DEFAULT_CORS_CONFIG as DEFAULT_CORS_CONFIG, index_DEFAULT_CORS_ORIGINS as DEFAULT_CORS_ORIGINS, index_DEFAULT_DATABASE_CONFIG as DEFAULT_DATABASE_CONFIG, index_DEFAULT_LOGGING_CONFIG as DEFAULT_LOGGING_CONFIG, index_DEFAULT_RATE_LIMIT_CONFIG as DEFAULT_RATE_LIMIT_CONFIG, index_DEFAULT_RATE_LIMIT_TIERS as DEFAULT_RATE_LIMIT_TIERS, index_DEFAULT_SERVER_CONFIG as DEFAULT_SERVER_CONFIG, index_DatabaseConfig as DatabaseConfig, index_DbConnectionOptions as DbConnectionOptions, index_EXYCONN_CORS_CONFIG as EXYCONN_CORS_CONFIG, index_Environment as Environment, index_FilterOptions as FilterOptions, index_HealthConfig as HealthConfig, index_HealthResponse as HealthResponse, index_JWTPayload as JWTPayload, index_LogLevel as LogLevel, index_LoggerConfig as LoggerConfig, index_LoggingConfig as LoggingConfig, index_OrgRequest as OrgRequest, index_PERMISSIVE_CORS_CONFIG as PERMISSIVE_CORS_CONFIG, index_PackageCheckResult as PackageCheckResult, index_PackageJson as PackageJson, index_PackageVersion as PackageVersion, index_PaginatedRequest as PaginatedRequest, index_PaginatedResponse as PaginatedResponse, index_PaginatedResult as PaginatedResult, index_PaginationData as PaginationData, index_PaginationMeta as PaginationMeta, index_PaginationOptions as PaginationOptions, index_PaginationResult as PaginationResult, index_ParsedQuery as ParsedQuery, index_RATE_LIMIT_CONFIG as RATE_LIMIT_CONFIG, index_RateLimitConfig as RateLimitConfig, index_RateLimitResponse as RateLimitResponse, index_RateLimitTier as RateLimitTier, index_RateLimitTierConfig as RateLimitTierConfig, index_RateLimiterBuilder as RateLimiterBuilder, index_RateLimiterConfig as RateLimiterConfig, index_STRICT_CORS_CONFIG as STRICT_CORS_CONFIG, index_ServerConfig as ServerConfig, index_SortConfig as SortConfig, index_SortOrder as SortOrder, index_StatusCode as StatusCode, index_StatusMessage as StatusMessage, index_authenticateApiKey as authenticateApiKey, index_authenticateJWT as authenticateJWT, index_badRequestResponse as badRequestResponse, index_buildConfig as buildConfig, index_buildDeleteFilter as buildDeleteFilter, index_buildFilter as buildFilter, index_buildPagination as buildPagination, index_buildPaginationMeta as buildPaginationMeta, index_checkPackageServer as checkPackageServer, index_conflictResponse as conflictResponse, index_connectDB as connectDB, index_corsOptions as corsOptions, index_createApiKeyGenerator as createApiKeyGenerator, index_createApiRateLimiter as createApiRateLimiter, index_createBrandCorsOptions as createBrandCorsOptions, index_createBulkDeleteHandler as createBulkDeleteHandler, index_createConfig as createConfig, index_createCorsOptions as createCorsOptions, index_createCrudControllers as createCrudControllers, index_createDdosRateLimiter as createDdosRateLimiter, index_createHealthHandler as createHealthHandler, index_createLogger as createLogger, index_createMorganStream as createMorganStream, index_createMultiBrandCorsOptions as createMultiBrandCorsOptions, index_createPaginationMiddleware as createPaginationMiddleware, index_createPrefixedKeyGenerator as createPrefixedKeyGenerator, index_createRateLimiter as createRateLimiter, index_createRootHandler as createRootHandler, index_createStandardRateLimiter as createStandardRateLimiter, index_createStrictRateLimiter as createStrictRateLimiter, index_createUserKeyGenerator as createUserKeyGenerator, index_createdResponse as createdResponse, index_ddosProtectionLimiter as ddosProtectionLimiter, index_defaultKeyGenerator as defaultKeyGenerator, index_disconnectDB as disconnectDB, index_errorResponse as errorResponse, index_extractColumns as extractColumns, index_extractOrganization as extractOrganization, index_extractSchemaMeta as extractSchemaMeta, index_forbiddenResponse as forbiddenResponse, index_formatPackageCheckResult as formatPackageCheckResult, index_generateHealthResponse as generateHealthResponse, index_generateNcuCommand as generateNcuCommand, index_getConnectionStatus as getConnectionStatus, index_getDatabaseOptions as getDatabaseOptions, index_isDevelopment as isDevelopment, index_isProduction as isProduction, index_isTest as isTest, index_logger as logger, index_noContentResponse as noContentResponse, index_notFoundResponse as notFoundResponse, index_omitFields as omitFields, index_optionalAuthenticateJWT as optionalAuthenticateJWT, index_packageCheckServer as packageCheckServer, index_parseBulkDelete as parseBulkDelete, index_pickFields as pickFields, index_printPackageCheckSummary as printPackageCheckSummary, index_queryPagination as queryPagination, index_queryParser as queryParser, index_rateLimitResponse as rateLimitResponse, index_rateLimiter as rateLimiter, index_requireOrganization as requireOrganization, index_sanitizeDocument as sanitizeDocument, index_sanitizeUser as sanitizeUser, index_simpleLogger as simpleLogger, index_standardRateLimiter as standardRateLimiter, index_statusCode as statusCode, index_statusMessage as statusMessage, index_stream as stream, index_strictRateLimiter as strictRateLimiter, index_successResponse as successResponse, index_successResponseArr as successResponseArr, index_unauthorizedResponse as unauthorizedResponse, index_validationErrorResponse as validationErrorResponse };
|
|
136
141
|
}
|
|
137
142
|
|
|
138
143
|
export { index as i };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { API_BASE_URL, API_PREFIX, ApiResponse, ColumnMetadata, ERROR_CODES, PaginatedResponse, PaginationData, ParsedError, STATUS_CODES, STATUS_MESSAGES, SUCCESS_CODES, axios as axiosInstance, deleteRequest, extractData, extractMessage, extractNestedData, extractPaginatedData, generateSlug, generateSnakeSlug, generateUrlSlug, getRequest, isErrorResponse, isSuccess, isSuccessResponse, logger, parseAxiosErrorMessage, parseError, parsePaginatedResponse, parseResponseData, parseResponseMessage, parseResponseStatus, parseResponseStatusMessage, patchRequest, postRequest, putRequest, safeJsonParse, simpleMetaParseResponse, simpleParseDualDataResponse, simpleParseResponse, uploadFile } from './client/http/index.js';
|
|
1
|
+
import { API_BASE_URL, API_PREFIX, ApiResponse, ColumnMetadata, ERROR_CODES, PaginatedResponse, PaginationData, ParsedError, STATUS_CODES, STATUS_MESSAGES, SUCCESS_CODES, axios as axiosInstance, clearCustomHeaders, configureHttp, deleteRequest, extractData, extractMessage, extractNestedData, extractPaginatedData, generateSlug, generateSnakeSlug, generateUrlSlug, getApiBaseUrl, getApiPrefix, getCustomHeaders, getHttpConfig, getRequest, isErrorResponse, isSuccess, isSuccessResponse, logger, parseAxiosErrorMessage, parseError, parsePaginatedResponse, parseResponseData, parseResponseMessage, parseResponseStatus, parseResponseStatusMessage, patchRequest, postRequest, putRequest, removeCustomHeader, resetHttpConfig, safeJsonParse, setApiBaseUrl, setApiPrefix, setCustomHeader, setCustomHeaders, simpleMetaParseResponse, simpleParseDualDataResponse, simpleParseResponse, uploadFile } from './client/http/index.js';
|
|
2
2
|
import { ClientLogger, ClientLoggerConfig, LogLevel, clientLogger, createClientLogger } from './client/logger/index.js';
|
|
3
3
|
import { c as camelToKebab, a as capitalize, b as capitalizeWords, d as copyToClipboard, e as createEmptyPaginationMeta, f as createErrorResponse, g as createSuccessResponse, h as formatDate, i as formatDateTime, j as formatRelativeTime, k as getErrorMessage, l as getNextPage, m as getPrevPage, n as getResponseData, o as hasData, p as hasMorePages, q as isErrorResponse$1, r as isSuccessResponse$1, s as kebabToCamel, t as packageCheck, u as slugify, v as slugifyUnique, w as truncate, x as truncateWords, y as unslugify } from './packageCheck-B_qfsD6R.js';
|
|
4
4
|
import { BatteryState, Dimensions, GeolocationState, MousePosition, NetworkState, ObjectStateUpdate, OrientationState, RenderInfo, ScriptStatus, SetValue, SnackbarSeverity, SnackbarState, ThemeMode, UseContinuousRetryOptions, UseContinuousRetryReturn, UseCopyToClipboardReturn, UseCountdownOptions, UseCountdownReturn, UseCounterOptions, UseCounterReturn, UseDocumentTitleOptions, UseFetchOptions, UseFetchReturn, UseGeolocationOptions, UseGeolocationReturn, UseHistoryStateOptions, UseHistoryStateReturn, UseHoverReturn, UseIdleOptions, UseIdleReturn, UseIntersectionObserverOptions, UseIntersectionObserverReturn, UseKeyPressOptions, UseKeyPressReturn, UseListReturn, UseLocalStorageOptions, UseLoggerOptions, UseLongPressOptions, UseLongPressReturn, UseMapReturn, UseMeasureReturn, UseMouseOptions, UseMouseReturn, UseObjectStateReturn, UsePageLeaveOptions, UsePageTitleOptions, UsePreferredLanguageReturn, UseQueueReturn, UseScriptOptions, UseScriptReturn, UseSessionStorageOptions, UseSetReturn, UseSnackbarReturn, UseTimeoutReturn, UseToggleReturn, UseVisibilityChangeReturn, UseWindowScrollReturn, WindowScrollPosition, WindowSize, useBattery, useClickAway, useContinuousRetry, useCopyToClipboard, useCountdown, useCounter, useDebounce, useDefault, useDocumentTitle, useEventListener, useFavicon, useFetch, useGeolocation, useHistoryState, useHover, useIdle, useIntersectionObserver, useInterval, useIntervalWhen, useIsClient, useIsDesktop, useIsFirstRender, useIsMobile, useIsMobileOrTablet, useIsTablet, useKeyPress, useList, useLocalStorage, useLockBodyScroll, useLogger, useLongPress, useMap, useMeasure, useMediaQuery, useMouse, useNetworkState, useObjectState, useOnClickOutside, useOrientation, usePageLeave, usePageTitle, usePreferredLanguage, usePrevious, useQueue, useRandomInterval, useRenderCount, useRenderInfo, useScript, useSessionStorage, useSet, useSnackbar, useThemeDetector, useThrottle, useTimeout, useToggle, useVisibilityChange, useWindowScroll, useWindowSize } from './client/hooks/index.js';
|
|
@@ -157,7 +157,9 @@ declare const index_adjustColor: typeof adjustColor;
|
|
|
157
157
|
declare const index_camelToKebab: typeof camelToKebab;
|
|
158
158
|
declare const index_capitalize: typeof capitalize;
|
|
159
159
|
declare const index_capitalizeWords: typeof capitalizeWords;
|
|
160
|
+
declare const index_clearCustomHeaders: typeof clearCustomHeaders;
|
|
160
161
|
declare const index_clientLogger: typeof clientLogger;
|
|
162
|
+
declare const index_configureHttp: typeof configureHttp;
|
|
161
163
|
declare const index_contactFormSchema: typeof contactFormSchema;
|
|
162
164
|
declare const index_copyToClipboard: typeof copyToClipboard;
|
|
163
165
|
declare const index_createClientLogger: typeof createClientLogger;
|
|
@@ -192,8 +194,12 @@ declare const index_generateCssVars: typeof generateCssVars;
|
|
|
192
194
|
declare const index_generateSlug: typeof generateSlug;
|
|
193
195
|
declare const index_generateSnakeSlug: typeof generateSnakeSlug;
|
|
194
196
|
declare const index_generateUrlSlug: typeof generateUrlSlug;
|
|
197
|
+
declare const index_getApiBaseUrl: typeof getApiBaseUrl;
|
|
198
|
+
declare const index_getApiPrefix: typeof getApiPrefix;
|
|
195
199
|
declare const index_getContrastColor: typeof getContrastColor;
|
|
200
|
+
declare const index_getCustomHeaders: typeof getCustomHeaders;
|
|
196
201
|
declare const index_getErrorMessage: typeof getErrorMessage;
|
|
202
|
+
declare const index_getHttpConfig: typeof getHttpConfig;
|
|
197
203
|
declare const index_getNextPage: typeof getNextPage;
|
|
198
204
|
declare const index_getPrevPage: typeof getPrevPage;
|
|
199
205
|
declare const index_getRequest: typeof getRequest;
|
|
@@ -226,9 +232,15 @@ declare const index_postRequest: typeof postRequest;
|
|
|
226
232
|
declare const index_putRequest: typeof putRequest;
|
|
227
233
|
declare const index_registerFormSchema: typeof registerFormSchema;
|
|
228
234
|
declare const index_removeCssVars: typeof removeCssVars;
|
|
235
|
+
declare const index_removeCustomHeader: typeof removeCustomHeader;
|
|
236
|
+
declare const index_resetHttpConfig: typeof resetHttpConfig;
|
|
229
237
|
declare const index_resolveThemeMode: typeof resolveThemeMode;
|
|
230
238
|
declare const index_safeJsonParse: typeof safeJsonParse;
|
|
231
239
|
declare const index_saveThemeMode: typeof saveThemeMode;
|
|
240
|
+
declare const index_setApiBaseUrl: typeof setApiBaseUrl;
|
|
241
|
+
declare const index_setApiPrefix: typeof setApiPrefix;
|
|
242
|
+
declare const index_setCustomHeader: typeof setCustomHeader;
|
|
243
|
+
declare const index_setCustomHeaders: typeof setCustomHeaders;
|
|
232
244
|
declare const index_simpleMetaParseResponse: typeof simpleMetaParseResponse;
|
|
233
245
|
declare const index_simpleParseDualDataResponse: typeof simpleParseDualDataResponse;
|
|
234
246
|
declare const index_simpleParseResponse: typeof simpleParseResponse;
|
|
@@ -299,7 +311,7 @@ declare const index_useVisibilityChange: typeof useVisibilityChange;
|
|
|
299
311
|
declare const index_useWindowScroll: typeof useWindowScroll;
|
|
300
312
|
declare const index_useWindowSize: typeof useWindowSize;
|
|
301
313
|
declare namespace index {
|
|
302
|
-
export { index_API_BASE_URL as API_BASE_URL, index_API_PREFIX as API_PREFIX, index_ApiResponse as ApiResponse, index_AxiosError as AxiosError, index_AxiosResponse as AxiosResponse, index_BannerProps as BannerProps, index_BatteryState as BatteryState, index_BorderRadius as BorderRadius, index_Breakpoints as Breakpoints, index_ButtonProps as ButtonProps, index_ButtonSize as ButtonSize, index_ButtonVariant as ButtonVariant, index_CardProps as CardProps, index_ClientLogger as ClientLogger, index_ClientLoggerConfig as ClientLoggerConfig, index_ColProps as ColProps, index_ColorPalette as ColorPalette, index_ColumnMetadata as ColumnMetadata, index_ComponentThemes as ComponentThemes, index_ContactForm as ContactForm, index_ContactFormProps as ContactFormProps, index_ContactFormValues as ContactFormValues, index_ContainerProps as ContainerProps, index_CtaSectionProps as CtaSectionProps, index_Dimensions as Dimensions, index_ERROR_CODES as ERROR_CODES, index_FaqItem as FaqItem, index_FaqSectionProps as FaqSectionProps, index_Feature as Feature, index_FeatureSectionProps as FeatureSectionProps, index_FooterColumn as FooterColumn, index_FooterProps as FooterProps, index_FormFieldError as FormFieldError, index_FormSubmitResult as FormSubmitResult, index_GeolocationState as GeolocationState, index_HeaderProps as HeaderProps, index_LoaderProps as LoaderProps, index_LoaderSize as LoaderSize, index_LoaderVariant as LoaderVariant, index_LogLevel as LogLevel, index_LoginForm as LoginForm, index_LoginFormProps as LoginFormProps, index_LoginFormValues as LoginFormValues, index_MousePosition as MousePosition, index_NavLink as NavLink, index_NetworkState as NetworkState, index_NewsletterForm as NewsletterForm, index_NewsletterFormProps as NewsletterFormProps, index_NewsletterFormValues as NewsletterFormValues, index_NewsletterSectionProps as NewsletterSectionProps, index_ObjectStateUpdate as ObjectStateUpdate, index_OrientationState as OrientationState, index_PaginatedResponse as PaginatedResponse, index_PaginationData as PaginationData, index_ParsedError as ParsedError, index_PasswordRequirements as PasswordRequirements, index_PricingFeature as PricingFeature, index_PricingPlan as PricingPlan, index_PricingSectionProps as PricingSectionProps, index_RegisterForm as RegisterForm, index_RegisterFormProps as RegisterFormProps, index_RegisterFormValues as RegisterFormValues, index_RenderInfo as RenderInfo, index_RowProps as RowProps, index_STATUS_CODES as STATUS_CODES, index_STATUS_MESSAGES as STATUS_MESSAGES, index_SUCCESS_CODES as SUCCESS_CODES, index_ScriptStatus as ScriptStatus, index_SemanticColors as SemanticColors, index_SetValue as SetValue, index_Shadows as Shadows, index_SnackbarSeverity as SnackbarSeverity, index_SnackbarState as SnackbarState, index_SocialLink as SocialLink, index_Spacing as Spacing, index_TailwindBgColor as TailwindBgColor, index_TailwindBorderRadius as TailwindBorderRadius, index_TailwindClasses as TailwindClasses, index_TailwindFontSize as TailwindFontSize, index_TailwindFontWeight as TailwindFontWeight, index_TailwindGap as TailwindGap, index_TailwindHeight as TailwindHeight, index_TailwindMargin as TailwindMargin, index_TailwindPadding as TailwindPadding, index_TailwindShadow as TailwindShadow, index_TailwindTextColor as TailwindTextColor, index_TailwindWidth as TailwindWidth, index_Testimonial as Testimonial, index_TestimonialSectionProps as TestimonialSectionProps, index_Theme as Theme, index_ThemeConfig as ThemeConfig, index_ThemeContext as ThemeContext, index_ThemeContextValue as ThemeContextValue, index_ThemeMode as ThemeMode, index_ThemeProvider as ThemeProvider, index_ThemeProviderProps as ThemeProviderProps, index_ThemeToggle as ThemeToggle, index_ThemeToggleProps as ThemeToggleProps, index_ThreeColumnProps as ThreeColumnProps, index_TwoColumnProps as TwoColumnProps, index_Typography as Typography, index_UseContinuousRetryOptions as UseContinuousRetryOptions, index_UseContinuousRetryReturn as UseContinuousRetryReturn, index_UseCopyToClipboardReturn as UseCopyToClipboardReturn, index_UseCountdownOptions as UseCountdownOptions, index_UseCountdownReturn as UseCountdownReturn, index_UseCounterOptions as UseCounterOptions, index_UseCounterReturn as UseCounterReturn, index_UseDocumentTitleOptions as UseDocumentTitleOptions, index_UseFetchOptions as UseFetchOptions, index_UseFetchReturn as UseFetchReturn, index_UseGeolocationOptions as UseGeolocationOptions, index_UseGeolocationReturn as UseGeolocationReturn, index_UseHistoryStateOptions as UseHistoryStateOptions, index_UseHistoryStateReturn as UseHistoryStateReturn, index_UseHoverReturn as UseHoverReturn, index_UseIdleOptions as UseIdleOptions, index_UseIdleReturn as UseIdleReturn, index_UseIntersectionObserverOptions as UseIntersectionObserverOptions, index_UseIntersectionObserverReturn as UseIntersectionObserverReturn, index_UseKeyPressOptions as UseKeyPressOptions, index_UseKeyPressReturn as UseKeyPressReturn, index_UseListReturn as UseListReturn, index_UseLocalStorageOptions as UseLocalStorageOptions, index_UseLoggerOptions as UseLoggerOptions, index_UseLongPressOptions as UseLongPressOptions, index_UseLongPressReturn as UseLongPressReturn, index_UseMapReturn as UseMapReturn, index_UseMeasureReturn as UseMeasureReturn, index_UseMouseOptions as UseMouseOptions, index_UseMouseReturn as UseMouseReturn, index_UseObjectStateReturn as UseObjectStateReturn, index_UsePageLeaveOptions as UsePageLeaveOptions, index_UsePageTitleOptions as UsePageTitleOptions, index_UsePreferredLanguageReturn as UsePreferredLanguageReturn, index_UseQueueReturn as UseQueueReturn, index_UseScriptOptions as UseScriptOptions, index_UseScriptReturn as UseScriptReturn, index_UseSessionStorageOptions as UseSessionStorageOptions, index_UseSetReturn as UseSetReturn, index_UseSnackbarReturn as UseSnackbarReturn, index_UseTimeoutReturn as UseTimeoutReturn, index_UseToggleReturn as UseToggleReturn, index_UseVisibilityChangeReturn as UseVisibilityChangeReturn, index_UseWindowScrollReturn as UseWindowScrollReturn, index_VALIDATION_MESSAGES as VALIDATION_MESSAGES, ThemeMode$1 as WebThemeMode, index_WindowScrollPosition as WindowScrollPosition, index_WindowSize as WindowSize, index_adjustColor as adjustColor, axiosInstance as axios, index_camelToKebab as camelToKebab, index_capitalize as capitalize, index_capitalizeWords as capitalizeWords, index_clientLogger as clientLogger, index_contactFormSchema as contactFormSchema, index_copyToClipboard as copyToClipboard, index_createClientLogger as createClientLogger, index_createEmptyPaginationMeta as createEmptyPaginationMeta, index_createErrorResponse as createErrorResponse, index_createRegisterFormSchema as createRegisterFormSchema, index_createSuccessResponse as createSuccessResponse, index_createTheme as createTheme, index_createThemeFromBrand as createThemeFromBrand, index_cssVar as cssVar, index_deepMerge as deepMerge, index_defaultDarkTheme as defaultDarkTheme, index_defaultLightTheme as defaultLightTheme, index_deleteRequest as deleteRequest, index_dummyBannerData as dummyBannerData, index_dummyFaqItems as dummyFaqItems, index_dummyFeatures as dummyFeatures, index_dummyFooterData as dummyFooterData, index_dummyHeaderData as dummyHeaderData, index_dummyImage as dummyImage, index_dummyPricingPlans as dummyPricingPlans, index_dummyTestimonials as dummyTestimonials, index_extractData as extractData, index_extractMessage as extractMessage, index_extractNestedData as extractNestedData, index_extractPaginatedData as extractPaginatedData, index_flattenToCssVars as flattenToCssVars, index_formatDate as formatDate, index_formatDateTime as formatDateTime, index_formatRelativeTime as formatRelativeTime, index_generateCssVars as generateCssVars, index_generateSlug as generateSlug, index_generateSnakeSlug as generateSnakeSlug, index_generateUrlSlug as generateUrlSlug, index_getContrastColor as getContrastColor, index_getErrorMessage as getErrorMessage, index_getNextPage as getNextPage, index_getPrevPage as getPrevPage, index_getRequest as getRequest, index_getResponseData as getResponseData, index_getSystemColorScheme as getSystemColorScheme, index_hasData as hasData, index_hasMorePages as hasMorePages, index_hexToRgba as hexToRgba, index_injectCssVars as injectCssVars, index_isErrorResponse as isErrorResponse, index_isSuccess as isSuccess, index_isSuccessResponse as isSuccessResponse, isErrorResponse$1 as isUtilErrorResponse, isSuccessResponse$1 as isUtilSuccessResponse, index_kebabToCamel as kebabToCamel, index_loadThemeFromUrl as loadThemeFromUrl, index_loadThemeMode as loadThemeMode, index_logger as logger, index_loginFormSchema as loginFormSchema, index_loremIpsum as loremIpsum, index_newsletterFormSchema as newsletterFormSchema, index_packageCheck as packageCheck, index_parseAxiosErrorMessage as parseAxiosErrorMessage, index_parseError as parseError, index_parsePaginatedResponse as parsePaginatedResponse, index_parseResponseData as parseResponseData, index_parseResponseMessage as parseResponseMessage, index_parseResponseStatus as parseResponseStatus, index_parseResponseStatusMessage as parseResponseStatusMessage, index_patchRequest as patchRequest, index_postRequest as postRequest, index_putRequest as putRequest, index_registerFormSchema as registerFormSchema, index_removeCssVars as removeCssVars, index_resolveThemeMode as resolveThemeMode, index_safeJsonParse as safeJsonParse, index_saveThemeMode as saveThemeMode, index_simpleMetaParseResponse as simpleMetaParseResponse, index_simpleParseDualDataResponse as simpleParseDualDataResponse, index_simpleParseResponse as simpleParseResponse, index_slugify as slugify, index_slugifyUnique as slugifyUnique, index_truncate as truncate, index_truncateWords as truncateWords, index_unslugify as unslugify, index_uploadFile as uploadFile, index_useBattery as useBattery, index_useClickAway as useClickAway, index_useContinuousRetry as useContinuousRetry, index_useCopyToClipboard as useCopyToClipboard, index_useCountdown as useCountdown, index_useCounter as useCounter, index_useDebounce as useDebounce, index_useDefault as useDefault, index_useDocumentTitle as useDocumentTitle, index_useEventListener as useEventListener, index_useFavicon as useFavicon, index_useFetch as useFetch, index_useGeolocation as useGeolocation, index_useHistoryState as useHistoryState, index_useHover as useHover, index_useIdle as useIdle, index_useIntersectionObserver as useIntersectionObserver, index_useInterval as useInterval, index_useIntervalWhen as useIntervalWhen, index_useIsClient as useIsClient, index_useIsDesktop as useIsDesktop, index_useIsFirstRender as useIsFirstRender, index_useIsMobile as useIsMobile, index_useIsMobileOrTablet as useIsMobileOrTablet, index_useIsTablet as useIsTablet, index_useKeyPress as useKeyPress, index_useList as useList, index_useLocalStorage as useLocalStorage, index_useLockBodyScroll as useLockBodyScroll, index_useLogger as useLogger, index_useLongPress as useLongPress, index_useMap as useMap, index_useMeasure as useMeasure, index_useMediaQuery as useMediaQuery, index_useMouse as useMouse, index_useNetworkState as useNetworkState, index_useObjectState as useObjectState, index_useOnClickOutside as useOnClickOutside, index_useOrientation as useOrientation, index_usePageLeave as usePageLeave, index_usePageTitle as usePageTitle, index_usePreferredLanguage as usePreferredLanguage, index_usePrevious as usePrevious, index_useQueue as useQueue, index_useRandomInterval as useRandomInterval, index_useRenderCount as useRenderCount, index_useRenderInfo as useRenderInfo, index_useScript as useScript, index_useSessionStorage as useSessionStorage, index_useSet as useSet, index_useSnackbar as useSnackbar, index_useTheme as useTheme, index_useThemeDetector as useThemeDetector, index_useThemeValue as useThemeValue, index_useThrottle as useThrottle, index_useTimeout as useTimeout, index_useToggle as useToggle, index_useVisibilityChange as useVisibilityChange, index_useWindowScroll as useWindowScroll, index_useWindowSize as useWindowSize };
|
|
314
|
+
export { index_API_BASE_URL as API_BASE_URL, index_API_PREFIX as API_PREFIX, index_ApiResponse as ApiResponse, index_AxiosError as AxiosError, index_AxiosResponse as AxiosResponse, index_BannerProps as BannerProps, index_BatteryState as BatteryState, index_BorderRadius as BorderRadius, index_Breakpoints as Breakpoints, index_ButtonProps as ButtonProps, index_ButtonSize as ButtonSize, index_ButtonVariant as ButtonVariant, index_CardProps as CardProps, index_ClientLogger as ClientLogger, index_ClientLoggerConfig as ClientLoggerConfig, index_ColProps as ColProps, index_ColorPalette as ColorPalette, index_ColumnMetadata as ColumnMetadata, index_ComponentThemes as ComponentThemes, index_ContactForm as ContactForm, index_ContactFormProps as ContactFormProps, index_ContactFormValues as ContactFormValues, index_ContainerProps as ContainerProps, index_CtaSectionProps as CtaSectionProps, index_Dimensions as Dimensions, index_ERROR_CODES as ERROR_CODES, index_FaqItem as FaqItem, index_FaqSectionProps as FaqSectionProps, index_Feature as Feature, index_FeatureSectionProps as FeatureSectionProps, index_FooterColumn as FooterColumn, index_FooterProps as FooterProps, index_FormFieldError as FormFieldError, index_FormSubmitResult as FormSubmitResult, index_GeolocationState as GeolocationState, index_HeaderProps as HeaderProps, index_LoaderProps as LoaderProps, index_LoaderSize as LoaderSize, index_LoaderVariant as LoaderVariant, index_LogLevel as LogLevel, index_LoginForm as LoginForm, index_LoginFormProps as LoginFormProps, index_LoginFormValues as LoginFormValues, index_MousePosition as MousePosition, index_NavLink as NavLink, index_NetworkState as NetworkState, index_NewsletterForm as NewsletterForm, index_NewsletterFormProps as NewsletterFormProps, index_NewsletterFormValues as NewsletterFormValues, index_NewsletterSectionProps as NewsletterSectionProps, index_ObjectStateUpdate as ObjectStateUpdate, index_OrientationState as OrientationState, index_PaginatedResponse as PaginatedResponse, index_PaginationData as PaginationData, index_ParsedError as ParsedError, index_PasswordRequirements as PasswordRequirements, index_PricingFeature as PricingFeature, index_PricingPlan as PricingPlan, index_PricingSectionProps as PricingSectionProps, index_RegisterForm as RegisterForm, index_RegisterFormProps as RegisterFormProps, index_RegisterFormValues as RegisterFormValues, index_RenderInfo as RenderInfo, index_RowProps as RowProps, index_STATUS_CODES as STATUS_CODES, index_STATUS_MESSAGES as STATUS_MESSAGES, index_SUCCESS_CODES as SUCCESS_CODES, index_ScriptStatus as ScriptStatus, index_SemanticColors as SemanticColors, index_SetValue as SetValue, index_Shadows as Shadows, index_SnackbarSeverity as SnackbarSeverity, index_SnackbarState as SnackbarState, index_SocialLink as SocialLink, index_Spacing as Spacing, index_TailwindBgColor as TailwindBgColor, index_TailwindBorderRadius as TailwindBorderRadius, index_TailwindClasses as TailwindClasses, index_TailwindFontSize as TailwindFontSize, index_TailwindFontWeight as TailwindFontWeight, index_TailwindGap as TailwindGap, index_TailwindHeight as TailwindHeight, index_TailwindMargin as TailwindMargin, index_TailwindPadding as TailwindPadding, index_TailwindShadow as TailwindShadow, index_TailwindTextColor as TailwindTextColor, index_TailwindWidth as TailwindWidth, index_Testimonial as Testimonial, index_TestimonialSectionProps as TestimonialSectionProps, index_Theme as Theme, index_ThemeConfig as ThemeConfig, index_ThemeContext as ThemeContext, index_ThemeContextValue as ThemeContextValue, index_ThemeMode as ThemeMode, index_ThemeProvider as ThemeProvider, index_ThemeProviderProps as ThemeProviderProps, index_ThemeToggle as ThemeToggle, index_ThemeToggleProps as ThemeToggleProps, index_ThreeColumnProps as ThreeColumnProps, index_TwoColumnProps as TwoColumnProps, index_Typography as Typography, index_UseContinuousRetryOptions as UseContinuousRetryOptions, index_UseContinuousRetryReturn as UseContinuousRetryReturn, index_UseCopyToClipboardReturn as UseCopyToClipboardReturn, index_UseCountdownOptions as UseCountdownOptions, index_UseCountdownReturn as UseCountdownReturn, index_UseCounterOptions as UseCounterOptions, index_UseCounterReturn as UseCounterReturn, index_UseDocumentTitleOptions as UseDocumentTitleOptions, index_UseFetchOptions as UseFetchOptions, index_UseFetchReturn as UseFetchReturn, index_UseGeolocationOptions as UseGeolocationOptions, index_UseGeolocationReturn as UseGeolocationReturn, index_UseHistoryStateOptions as UseHistoryStateOptions, index_UseHistoryStateReturn as UseHistoryStateReturn, index_UseHoverReturn as UseHoverReturn, index_UseIdleOptions as UseIdleOptions, index_UseIdleReturn as UseIdleReturn, index_UseIntersectionObserverOptions as UseIntersectionObserverOptions, index_UseIntersectionObserverReturn as UseIntersectionObserverReturn, index_UseKeyPressOptions as UseKeyPressOptions, index_UseKeyPressReturn as UseKeyPressReturn, index_UseListReturn as UseListReturn, index_UseLocalStorageOptions as UseLocalStorageOptions, index_UseLoggerOptions as UseLoggerOptions, index_UseLongPressOptions as UseLongPressOptions, index_UseLongPressReturn as UseLongPressReturn, index_UseMapReturn as UseMapReturn, index_UseMeasureReturn as UseMeasureReturn, index_UseMouseOptions as UseMouseOptions, index_UseMouseReturn as UseMouseReturn, index_UseObjectStateReturn as UseObjectStateReturn, index_UsePageLeaveOptions as UsePageLeaveOptions, index_UsePageTitleOptions as UsePageTitleOptions, index_UsePreferredLanguageReturn as UsePreferredLanguageReturn, index_UseQueueReturn as UseQueueReturn, index_UseScriptOptions as UseScriptOptions, index_UseScriptReturn as UseScriptReturn, index_UseSessionStorageOptions as UseSessionStorageOptions, index_UseSetReturn as UseSetReturn, index_UseSnackbarReturn as UseSnackbarReturn, index_UseTimeoutReturn as UseTimeoutReturn, index_UseToggleReturn as UseToggleReturn, index_UseVisibilityChangeReturn as UseVisibilityChangeReturn, index_UseWindowScrollReturn as UseWindowScrollReturn, index_VALIDATION_MESSAGES as VALIDATION_MESSAGES, ThemeMode$1 as WebThemeMode, index_WindowScrollPosition as WindowScrollPosition, index_WindowSize as WindowSize, index_adjustColor as adjustColor, axiosInstance as axios, index_camelToKebab as camelToKebab, index_capitalize as capitalize, index_capitalizeWords as capitalizeWords, index_clearCustomHeaders as clearCustomHeaders, index_clientLogger as clientLogger, index_configureHttp as configureHttp, index_contactFormSchema as contactFormSchema, index_copyToClipboard as copyToClipboard, index_createClientLogger as createClientLogger, index_createEmptyPaginationMeta as createEmptyPaginationMeta, index_createErrorResponse as createErrorResponse, index_createRegisterFormSchema as createRegisterFormSchema, index_createSuccessResponse as createSuccessResponse, index_createTheme as createTheme, index_createThemeFromBrand as createThemeFromBrand, index_cssVar as cssVar, index_deepMerge as deepMerge, index_defaultDarkTheme as defaultDarkTheme, index_defaultLightTheme as defaultLightTheme, index_deleteRequest as deleteRequest, index_dummyBannerData as dummyBannerData, index_dummyFaqItems as dummyFaqItems, index_dummyFeatures as dummyFeatures, index_dummyFooterData as dummyFooterData, index_dummyHeaderData as dummyHeaderData, index_dummyImage as dummyImage, index_dummyPricingPlans as dummyPricingPlans, index_dummyTestimonials as dummyTestimonials, index_extractData as extractData, index_extractMessage as extractMessage, index_extractNestedData as extractNestedData, index_extractPaginatedData as extractPaginatedData, index_flattenToCssVars as flattenToCssVars, index_formatDate as formatDate, index_formatDateTime as formatDateTime, index_formatRelativeTime as formatRelativeTime, index_generateCssVars as generateCssVars, index_generateSlug as generateSlug, index_generateSnakeSlug as generateSnakeSlug, index_generateUrlSlug as generateUrlSlug, index_getApiBaseUrl as getApiBaseUrl, index_getApiPrefix as getApiPrefix, index_getContrastColor as getContrastColor, index_getCustomHeaders as getCustomHeaders, index_getErrorMessage as getErrorMessage, index_getHttpConfig as getHttpConfig, index_getNextPage as getNextPage, index_getPrevPage as getPrevPage, index_getRequest as getRequest, index_getResponseData as getResponseData, index_getSystemColorScheme as getSystemColorScheme, index_hasData as hasData, index_hasMorePages as hasMorePages, index_hexToRgba as hexToRgba, index_injectCssVars as injectCssVars, index_isErrorResponse as isErrorResponse, index_isSuccess as isSuccess, index_isSuccessResponse as isSuccessResponse, isErrorResponse$1 as isUtilErrorResponse, isSuccessResponse$1 as isUtilSuccessResponse, index_kebabToCamel as kebabToCamel, index_loadThemeFromUrl as loadThemeFromUrl, index_loadThemeMode as loadThemeMode, index_logger as logger, index_loginFormSchema as loginFormSchema, index_loremIpsum as loremIpsum, index_newsletterFormSchema as newsletterFormSchema, index_packageCheck as packageCheck, index_parseAxiosErrorMessage as parseAxiosErrorMessage, index_parseError as parseError, index_parsePaginatedResponse as parsePaginatedResponse, index_parseResponseData as parseResponseData, index_parseResponseMessage as parseResponseMessage, index_parseResponseStatus as parseResponseStatus, index_parseResponseStatusMessage as parseResponseStatusMessage, index_patchRequest as patchRequest, index_postRequest as postRequest, index_putRequest as putRequest, index_registerFormSchema as registerFormSchema, index_removeCssVars as removeCssVars, index_removeCustomHeader as removeCustomHeader, index_resetHttpConfig as resetHttpConfig, index_resolveThemeMode as resolveThemeMode, index_safeJsonParse as safeJsonParse, index_saveThemeMode as saveThemeMode, index_setApiBaseUrl as setApiBaseUrl, index_setApiPrefix as setApiPrefix, index_setCustomHeader as setCustomHeader, index_setCustomHeaders as setCustomHeaders, index_simpleMetaParseResponse as simpleMetaParseResponse, index_simpleParseDualDataResponse as simpleParseDualDataResponse, index_simpleParseResponse as simpleParseResponse, index_slugify as slugify, index_slugifyUnique as slugifyUnique, index_truncate as truncate, index_truncateWords as truncateWords, index_unslugify as unslugify, index_uploadFile as uploadFile, index_useBattery as useBattery, index_useClickAway as useClickAway, index_useContinuousRetry as useContinuousRetry, index_useCopyToClipboard as useCopyToClipboard, index_useCountdown as useCountdown, index_useCounter as useCounter, index_useDebounce as useDebounce, index_useDefault as useDefault, index_useDocumentTitle as useDocumentTitle, index_useEventListener as useEventListener, index_useFavicon as useFavicon, index_useFetch as useFetch, index_useGeolocation as useGeolocation, index_useHistoryState as useHistoryState, index_useHover as useHover, index_useIdle as useIdle, index_useIntersectionObserver as useIntersectionObserver, index_useInterval as useInterval, index_useIntervalWhen as useIntervalWhen, index_useIsClient as useIsClient, index_useIsDesktop as useIsDesktop, index_useIsFirstRender as useIsFirstRender, index_useIsMobile as useIsMobile, index_useIsMobileOrTablet as useIsMobileOrTablet, index_useIsTablet as useIsTablet, index_useKeyPress as useKeyPress, index_useList as useList, index_useLocalStorage as useLocalStorage, index_useLockBodyScroll as useLockBodyScroll, index_useLogger as useLogger, index_useLongPress as useLongPress, index_useMap as useMap, index_useMeasure as useMeasure, index_useMediaQuery as useMediaQuery, index_useMouse as useMouse, index_useNetworkState as useNetworkState, index_useObjectState as useObjectState, index_useOnClickOutside as useOnClickOutside, index_useOrientation as useOrientation, index_usePageLeave as usePageLeave, index_usePageTitle as usePageTitle, index_usePreferredLanguage as usePreferredLanguage, index_usePrevious as usePrevious, index_useQueue as useQueue, index_useRandomInterval as useRandomInterval, index_useRenderCount as useRenderCount, index_useRenderInfo as useRenderInfo, index_useScript as useScript, index_useSessionStorage as useSessionStorage, index_useSet as useSet, index_useSnackbar as useSnackbar, index_useTheme as useTheme, index_useThemeDetector as useThemeDetector, index_useThemeValue as useThemeValue, index_useThrottle as useThrottle, index_useTimeout as useTimeout, index_useToggle as useToggle, index_useVisibilityChange as useVisibilityChange, index_useWindowScroll as useWindowScroll, index_useWindowSize as useWindowSize };
|
|
303
315
|
}
|
|
304
316
|
|
|
305
317
|
export { index as i };
|
|
@@ -3,7 +3,7 @@ import { StatusCode, StatusMessage, statusCode, statusMessage } from './server/e
|
|
|
3
3
|
import { LoggerConfig, createLogger, createMorganStream, logger, simpleLogger, stream } from './server/logger/index.js';
|
|
4
4
|
import { DbConnectionOptions, connectDB, disconnectDB, getConnectionStatus } from './server/db/index.js';
|
|
5
5
|
import { AuthRequest, BulkDeleteRequest, ColumnMeta, CrudConfig, JWTPayload, OrgRequest, PaginatedRequest, PaginatedResponse, PaginatedResult, PaginationMeta, ParsedQuery, SortConfig, SortOrder, authenticateApiKey, authenticateJWT, buildDeleteFilter, createBulkDeleteHandler, createCrudControllers, createPaginationMiddleware, extractOrganization, extractSchemaMeta, optionalAuthenticateJWT, parseBulkDelete, queryPagination, queryParser, requireOrganization } from './server/middleware/index.js';
|
|
6
|
-
import { FilterOptions, PackageCheckResult, PackageJson, PackageVersion, PaginationOptions, PaginationResult, buildFilter, buildPagination, buildPaginationMeta, checkPackageServer, formatPackageCheckResult, generateNcuCommand, omitFields, packageCheckServer, pickFields, printPackageCheckSummary, sanitizeDocument, sanitizeUser } from './server/utils/index.js';
|
|
6
|
+
import { FilterOptions, HealthConfig, HealthResponse, PackageCheckResult, PackageJson, PackageVersion, PaginationOptions, PaginationResult, buildFilter, buildPagination, buildPaginationMeta, checkPackageServer, createHealthHandler, createRootHandler, formatPackageCheckResult, generateHealthResponse, generateNcuCommand, omitFields, packageCheckServer, pickFields, printPackageCheckSummary, sanitizeDocument, sanitizeUser } from './server/utils/index.js';
|
|
7
7
|
import { AppConfig, AuthConfig, ConfigBuilder, CorsConfig, CorsOriginsConfig, DEFAULT_AUTH_CONFIG, DEFAULT_CORS_CONFIG, DEFAULT_CORS_ORIGINS, DEFAULT_DATABASE_CONFIG, DEFAULT_LOGGING_CONFIG, DEFAULT_RATE_LIMIT_CONFIG, DEFAULT_RATE_LIMIT_TIERS, DEFAULT_SERVER_CONFIG, DatabaseConfig, EXYCONN_CORS_CONFIG, Environment, LogLevel, LoggingConfig, PERMISSIVE_CORS_CONFIG, RATE_LIMIT_CONFIG, RateLimitConfig, RateLimitResponse, RateLimitTier, RateLimitTierConfig, RateLimiterBuilder, RateLimiterConfig, STRICT_CORS_CONFIG, ServerConfig, buildConfig, corsOptions, createApiKeyGenerator, createApiRateLimiter, createBrandCorsOptions, createConfig, createCorsOptions, createDdosRateLimiter, createMultiBrandCorsOptions, createPrefixedKeyGenerator, createRateLimiter, createStandardRateLimiter, createStrictRateLimiter, createUserKeyGenerator, ddosProtectionLimiter, defaultKeyGenerator, getDatabaseOptions, isDevelopment, isProduction, isTest, rateLimiter, standardRateLimiter, strictRateLimiter } from './server/configs/index.js';
|
|
8
8
|
|
|
9
9
|
declare const index_ApiResponse: typeof ApiResponse;
|
|
@@ -30,6 +30,8 @@ declare const index_DbConnectionOptions: typeof DbConnectionOptions;
|
|
|
30
30
|
declare const index_EXYCONN_CORS_CONFIG: typeof EXYCONN_CORS_CONFIG;
|
|
31
31
|
declare const index_Environment: typeof Environment;
|
|
32
32
|
declare const index_FilterOptions: typeof FilterOptions;
|
|
33
|
+
declare const index_HealthConfig: typeof HealthConfig;
|
|
34
|
+
declare const index_HealthResponse: typeof HealthResponse;
|
|
33
35
|
declare const index_JWTPayload: typeof JWTPayload;
|
|
34
36
|
declare const index_LogLevel: typeof LogLevel;
|
|
35
37
|
declare const index_LoggerConfig: typeof LoggerConfig;
|
|
@@ -80,12 +82,14 @@ declare const index_createConfig: typeof createConfig;
|
|
|
80
82
|
declare const index_createCorsOptions: typeof createCorsOptions;
|
|
81
83
|
declare const index_createCrudControllers: typeof createCrudControllers;
|
|
82
84
|
declare const index_createDdosRateLimiter: typeof createDdosRateLimiter;
|
|
85
|
+
declare const index_createHealthHandler: typeof createHealthHandler;
|
|
83
86
|
declare const index_createLogger: typeof createLogger;
|
|
84
87
|
declare const index_createMorganStream: typeof createMorganStream;
|
|
85
88
|
declare const index_createMultiBrandCorsOptions: typeof createMultiBrandCorsOptions;
|
|
86
89
|
declare const index_createPaginationMiddleware: typeof createPaginationMiddleware;
|
|
87
90
|
declare const index_createPrefixedKeyGenerator: typeof createPrefixedKeyGenerator;
|
|
88
91
|
declare const index_createRateLimiter: typeof createRateLimiter;
|
|
92
|
+
declare const index_createRootHandler: typeof createRootHandler;
|
|
89
93
|
declare const index_createStandardRateLimiter: typeof createStandardRateLimiter;
|
|
90
94
|
declare const index_createStrictRateLimiter: typeof createStrictRateLimiter;
|
|
91
95
|
declare const index_createUserKeyGenerator: typeof createUserKeyGenerator;
|
|
@@ -99,6 +103,7 @@ declare const index_extractOrganization: typeof extractOrganization;
|
|
|
99
103
|
declare const index_extractSchemaMeta: typeof extractSchemaMeta;
|
|
100
104
|
declare const index_forbiddenResponse: typeof forbiddenResponse;
|
|
101
105
|
declare const index_formatPackageCheckResult: typeof formatPackageCheckResult;
|
|
106
|
+
declare const index_generateHealthResponse: typeof generateHealthResponse;
|
|
102
107
|
declare const index_generateNcuCommand: typeof generateNcuCommand;
|
|
103
108
|
declare const index_getConnectionStatus: typeof getConnectionStatus;
|
|
104
109
|
declare const index_getDatabaseOptions: typeof getDatabaseOptions;
|
|
@@ -132,7 +137,7 @@ declare const index_successResponseArr: typeof successResponseArr;
|
|
|
132
137
|
declare const index_unauthorizedResponse: typeof unauthorizedResponse;
|
|
133
138
|
declare const index_validationErrorResponse: typeof validationErrorResponse;
|
|
134
139
|
declare namespace index {
|
|
135
|
-
export { index_ApiResponse as ApiResponse, index_AppConfig as AppConfig, index_AuthConfig as AuthConfig, index_AuthRequest as AuthRequest, index_BulkDeleteRequest as BulkDeleteRequest, index_ColumnMeta as ColumnMeta, index_ColumnMetadata as ColumnMetadata, index_ConfigBuilder as ConfigBuilder, index_CorsConfig as CorsConfig, index_CorsOriginsConfig as CorsOriginsConfig, index_CrudConfig as CrudConfig, index_DEFAULT_AUTH_CONFIG as DEFAULT_AUTH_CONFIG, index_DEFAULT_CORS_CONFIG as DEFAULT_CORS_CONFIG, index_DEFAULT_CORS_ORIGINS as DEFAULT_CORS_ORIGINS, index_DEFAULT_DATABASE_CONFIG as DEFAULT_DATABASE_CONFIG, index_DEFAULT_LOGGING_CONFIG as DEFAULT_LOGGING_CONFIG, index_DEFAULT_RATE_LIMIT_CONFIG as DEFAULT_RATE_LIMIT_CONFIG, index_DEFAULT_RATE_LIMIT_TIERS as DEFAULT_RATE_LIMIT_TIERS, index_DEFAULT_SERVER_CONFIG as DEFAULT_SERVER_CONFIG, index_DatabaseConfig as DatabaseConfig, index_DbConnectionOptions as DbConnectionOptions, index_EXYCONN_CORS_CONFIG as EXYCONN_CORS_CONFIG, index_Environment as Environment, index_FilterOptions as FilterOptions, index_JWTPayload as JWTPayload, index_LogLevel as LogLevel, index_LoggerConfig as LoggerConfig, index_LoggingConfig as LoggingConfig, index_OrgRequest as OrgRequest, index_PERMISSIVE_CORS_CONFIG as PERMISSIVE_CORS_CONFIG, index_PackageCheckResult as PackageCheckResult, index_PackageJson as PackageJson, index_PackageVersion as PackageVersion, index_PaginatedRequest as PaginatedRequest, index_PaginatedResponse as PaginatedResponse, index_PaginatedResult as PaginatedResult, index_PaginationData as PaginationData, index_PaginationMeta as PaginationMeta, index_PaginationOptions as PaginationOptions, index_PaginationResult as PaginationResult, index_ParsedQuery as ParsedQuery, index_RATE_LIMIT_CONFIG as RATE_LIMIT_CONFIG, index_RateLimitConfig as RateLimitConfig, index_RateLimitResponse as RateLimitResponse, index_RateLimitTier as RateLimitTier, index_RateLimitTierConfig as RateLimitTierConfig, index_RateLimiterBuilder as RateLimiterBuilder, index_RateLimiterConfig as RateLimiterConfig, index_STRICT_CORS_CONFIG as STRICT_CORS_CONFIG, index_ServerConfig as ServerConfig, index_SortConfig as SortConfig, index_SortOrder as SortOrder, index_StatusCode as StatusCode, index_StatusMessage as StatusMessage, index_authenticateApiKey as authenticateApiKey, index_authenticateJWT as authenticateJWT, index_badRequestResponse as badRequestResponse, index_buildConfig as buildConfig, index_buildDeleteFilter as buildDeleteFilter, index_buildFilter as buildFilter, index_buildPagination as buildPagination, index_buildPaginationMeta as buildPaginationMeta, index_checkPackageServer as checkPackageServer, index_conflictResponse as conflictResponse, index_connectDB as connectDB, index_corsOptions as corsOptions, index_createApiKeyGenerator as createApiKeyGenerator, index_createApiRateLimiter as createApiRateLimiter, index_createBrandCorsOptions as createBrandCorsOptions, index_createBulkDeleteHandler as createBulkDeleteHandler, index_createConfig as createConfig, index_createCorsOptions as createCorsOptions, index_createCrudControllers as createCrudControllers, index_createDdosRateLimiter as createDdosRateLimiter, index_createLogger as createLogger, index_createMorganStream as createMorganStream, index_createMultiBrandCorsOptions as createMultiBrandCorsOptions, index_createPaginationMiddleware as createPaginationMiddleware, index_createPrefixedKeyGenerator as createPrefixedKeyGenerator, index_createRateLimiter as createRateLimiter, index_createStandardRateLimiter as createStandardRateLimiter, index_createStrictRateLimiter as createStrictRateLimiter, index_createUserKeyGenerator as createUserKeyGenerator, index_createdResponse as createdResponse, index_ddosProtectionLimiter as ddosProtectionLimiter, index_defaultKeyGenerator as defaultKeyGenerator, index_disconnectDB as disconnectDB, index_errorResponse as errorResponse, index_extractColumns as extractColumns, index_extractOrganization as extractOrganization, index_extractSchemaMeta as extractSchemaMeta, index_forbiddenResponse as forbiddenResponse, index_formatPackageCheckResult as formatPackageCheckResult, index_generateNcuCommand as generateNcuCommand, index_getConnectionStatus as getConnectionStatus, index_getDatabaseOptions as getDatabaseOptions, index_isDevelopment as isDevelopment, index_isProduction as isProduction, index_isTest as isTest, index_logger as logger, index_noContentResponse as noContentResponse, index_notFoundResponse as notFoundResponse, index_omitFields as omitFields, index_optionalAuthenticateJWT as optionalAuthenticateJWT, index_packageCheckServer as packageCheckServer, index_parseBulkDelete as parseBulkDelete, index_pickFields as pickFields, index_printPackageCheckSummary as printPackageCheckSummary, index_queryPagination as queryPagination, index_queryParser as queryParser, index_rateLimitResponse as rateLimitResponse, index_rateLimiter as rateLimiter, index_requireOrganization as requireOrganization, index_sanitizeDocument as sanitizeDocument, index_sanitizeUser as sanitizeUser, index_simpleLogger as simpleLogger, index_standardRateLimiter as standardRateLimiter, index_statusCode as statusCode, index_statusMessage as statusMessage, index_stream as stream, index_strictRateLimiter as strictRateLimiter, index_successResponse as successResponse, index_successResponseArr as successResponseArr, index_unauthorizedResponse as unauthorizedResponse, index_validationErrorResponse as validationErrorResponse };
|
|
140
|
+
export { index_ApiResponse as ApiResponse, index_AppConfig as AppConfig, index_AuthConfig as AuthConfig, index_AuthRequest as AuthRequest, index_BulkDeleteRequest as BulkDeleteRequest, index_ColumnMeta as ColumnMeta, index_ColumnMetadata as ColumnMetadata, index_ConfigBuilder as ConfigBuilder, index_CorsConfig as CorsConfig, index_CorsOriginsConfig as CorsOriginsConfig, index_CrudConfig as CrudConfig, index_DEFAULT_AUTH_CONFIG as DEFAULT_AUTH_CONFIG, index_DEFAULT_CORS_CONFIG as DEFAULT_CORS_CONFIG, index_DEFAULT_CORS_ORIGINS as DEFAULT_CORS_ORIGINS, index_DEFAULT_DATABASE_CONFIG as DEFAULT_DATABASE_CONFIG, index_DEFAULT_LOGGING_CONFIG as DEFAULT_LOGGING_CONFIG, index_DEFAULT_RATE_LIMIT_CONFIG as DEFAULT_RATE_LIMIT_CONFIG, index_DEFAULT_RATE_LIMIT_TIERS as DEFAULT_RATE_LIMIT_TIERS, index_DEFAULT_SERVER_CONFIG as DEFAULT_SERVER_CONFIG, index_DatabaseConfig as DatabaseConfig, index_DbConnectionOptions as DbConnectionOptions, index_EXYCONN_CORS_CONFIG as EXYCONN_CORS_CONFIG, index_Environment as Environment, index_FilterOptions as FilterOptions, index_HealthConfig as HealthConfig, index_HealthResponse as HealthResponse, index_JWTPayload as JWTPayload, index_LogLevel as LogLevel, index_LoggerConfig as LoggerConfig, index_LoggingConfig as LoggingConfig, index_OrgRequest as OrgRequest, index_PERMISSIVE_CORS_CONFIG as PERMISSIVE_CORS_CONFIG, index_PackageCheckResult as PackageCheckResult, index_PackageJson as PackageJson, index_PackageVersion as PackageVersion, index_PaginatedRequest as PaginatedRequest, index_PaginatedResponse as PaginatedResponse, index_PaginatedResult as PaginatedResult, index_PaginationData as PaginationData, index_PaginationMeta as PaginationMeta, index_PaginationOptions as PaginationOptions, index_PaginationResult as PaginationResult, index_ParsedQuery as ParsedQuery, index_RATE_LIMIT_CONFIG as RATE_LIMIT_CONFIG, index_RateLimitConfig as RateLimitConfig, index_RateLimitResponse as RateLimitResponse, index_RateLimitTier as RateLimitTier, index_RateLimitTierConfig as RateLimitTierConfig, index_RateLimiterBuilder as RateLimiterBuilder, index_RateLimiterConfig as RateLimiterConfig, index_STRICT_CORS_CONFIG as STRICT_CORS_CONFIG, index_ServerConfig as ServerConfig, index_SortConfig as SortConfig, index_SortOrder as SortOrder, index_StatusCode as StatusCode, index_StatusMessage as StatusMessage, index_authenticateApiKey as authenticateApiKey, index_authenticateJWT as authenticateJWT, index_badRequestResponse as badRequestResponse, index_buildConfig as buildConfig, index_buildDeleteFilter as buildDeleteFilter, index_buildFilter as buildFilter, index_buildPagination as buildPagination, index_buildPaginationMeta as buildPaginationMeta, index_checkPackageServer as checkPackageServer, index_conflictResponse as conflictResponse, index_connectDB as connectDB, index_corsOptions as corsOptions, index_createApiKeyGenerator as createApiKeyGenerator, index_createApiRateLimiter as createApiRateLimiter, index_createBrandCorsOptions as createBrandCorsOptions, index_createBulkDeleteHandler as createBulkDeleteHandler, index_createConfig as createConfig, index_createCorsOptions as createCorsOptions, index_createCrudControllers as createCrudControllers, index_createDdosRateLimiter as createDdosRateLimiter, index_createHealthHandler as createHealthHandler, index_createLogger as createLogger, index_createMorganStream as createMorganStream, index_createMultiBrandCorsOptions as createMultiBrandCorsOptions, index_createPaginationMiddleware as createPaginationMiddleware, index_createPrefixedKeyGenerator as createPrefixedKeyGenerator, index_createRateLimiter as createRateLimiter, index_createRootHandler as createRootHandler, index_createStandardRateLimiter as createStandardRateLimiter, index_createStrictRateLimiter as createStrictRateLimiter, index_createUserKeyGenerator as createUserKeyGenerator, index_createdResponse as createdResponse, index_ddosProtectionLimiter as ddosProtectionLimiter, index_defaultKeyGenerator as defaultKeyGenerator, index_disconnectDB as disconnectDB, index_errorResponse as errorResponse, index_extractColumns as extractColumns, index_extractOrganization as extractOrganization, index_extractSchemaMeta as extractSchemaMeta, index_forbiddenResponse as forbiddenResponse, index_formatPackageCheckResult as formatPackageCheckResult, index_generateHealthResponse as generateHealthResponse, index_generateNcuCommand as generateNcuCommand, index_getConnectionStatus as getConnectionStatus, index_getDatabaseOptions as getDatabaseOptions, index_isDevelopment as isDevelopment, index_isProduction as isProduction, index_isTest as isTest, index_logger as logger, index_noContentResponse as noContentResponse, index_notFoundResponse as notFoundResponse, index_omitFields as omitFields, index_optionalAuthenticateJWT as optionalAuthenticateJWT, index_packageCheckServer as packageCheckServer, index_parseBulkDelete as parseBulkDelete, index_pickFields as pickFields, index_printPackageCheckSummary as printPackageCheckSummary, index_queryPagination as queryPagination, index_queryParser as queryParser, index_rateLimitResponse as rateLimitResponse, index_rateLimiter as rateLimiter, index_requireOrganization as requireOrganization, index_sanitizeDocument as sanitizeDocument, index_sanitizeUser as sanitizeUser, index_simpleLogger as simpleLogger, index_standardRateLimiter as standardRateLimiter, index_statusCode as statusCode, index_statusMessage as statusMessage, index_stream as stream, index_strictRateLimiter as strictRateLimiter, index_successResponse as successResponse, index_successResponseArr as successResponseArr, index_unauthorizedResponse as unauthorizedResponse, index_validationErrorResponse as validationErrorResponse };
|
|
136
141
|
}
|
|
137
142
|
|
|
138
143
|
export { index as i };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { API_BASE_URL, API_PREFIX, ApiResponse, ColumnMetadata, ERROR_CODES, PaginatedResponse, PaginationData, ParsedError, STATUS_CODES, STATUS_MESSAGES, SUCCESS_CODES, axios as axiosInstance, deleteRequest, extractData, extractMessage, extractNestedData, extractPaginatedData, generateSlug, generateSnakeSlug, generateUrlSlug, getRequest, isErrorResponse, isSuccess, isSuccessResponse, logger, parseAxiosErrorMessage, parseError, parsePaginatedResponse, parseResponseData, parseResponseMessage, parseResponseStatus, parseResponseStatusMessage, patchRequest, postRequest, putRequest, safeJsonParse, simpleMetaParseResponse, simpleParseDualDataResponse, simpleParseResponse, uploadFile } from './client/http/index.mjs';
|
|
1
|
+
import { API_BASE_URL, API_PREFIX, ApiResponse, ColumnMetadata, ERROR_CODES, PaginatedResponse, PaginationData, ParsedError, STATUS_CODES, STATUS_MESSAGES, SUCCESS_CODES, axios as axiosInstance, clearCustomHeaders, configureHttp, deleteRequest, extractData, extractMessage, extractNestedData, extractPaginatedData, generateSlug, generateSnakeSlug, generateUrlSlug, getApiBaseUrl, getApiPrefix, getCustomHeaders, getHttpConfig, getRequest, isErrorResponse, isSuccess, isSuccessResponse, logger, parseAxiosErrorMessage, parseError, parsePaginatedResponse, parseResponseData, parseResponseMessage, parseResponseStatus, parseResponseStatusMessage, patchRequest, postRequest, putRequest, removeCustomHeader, resetHttpConfig, safeJsonParse, setApiBaseUrl, setApiPrefix, setCustomHeader, setCustomHeaders, simpleMetaParseResponse, simpleParseDualDataResponse, simpleParseResponse, uploadFile } from './client/http/index.mjs';
|
|
2
2
|
import { ClientLogger, ClientLoggerConfig, LogLevel, clientLogger, createClientLogger } from './client/logger/index.mjs';
|
|
3
3
|
import { c as camelToKebab, a as capitalize, b as capitalizeWords, d as copyToClipboard, e as createEmptyPaginationMeta, f as createErrorResponse, g as createSuccessResponse, h as formatDate, i as formatDateTime, j as formatRelativeTime, k as getErrorMessage, l as getNextPage, m as getPrevPage, n as getResponseData, o as hasData, p as hasMorePages, q as isErrorResponse$1, r as isSuccessResponse$1, s as kebabToCamel, t as packageCheck, u as slugify, v as slugifyUnique, w as truncate, x as truncateWords, y as unslugify } from './packageCheck-C2_FT_Rl.mjs';
|
|
4
4
|
import { BatteryState, Dimensions, GeolocationState, MousePosition, NetworkState, ObjectStateUpdate, OrientationState, RenderInfo, ScriptStatus, SetValue, SnackbarSeverity, SnackbarState, ThemeMode, UseContinuousRetryOptions, UseContinuousRetryReturn, UseCopyToClipboardReturn, UseCountdownOptions, UseCountdownReturn, UseCounterOptions, UseCounterReturn, UseDocumentTitleOptions, UseFetchOptions, UseFetchReturn, UseGeolocationOptions, UseGeolocationReturn, UseHistoryStateOptions, UseHistoryStateReturn, UseHoverReturn, UseIdleOptions, UseIdleReturn, UseIntersectionObserverOptions, UseIntersectionObserverReturn, UseKeyPressOptions, UseKeyPressReturn, UseListReturn, UseLocalStorageOptions, UseLoggerOptions, UseLongPressOptions, UseLongPressReturn, UseMapReturn, UseMeasureReturn, UseMouseOptions, UseMouseReturn, UseObjectStateReturn, UsePageLeaveOptions, UsePageTitleOptions, UsePreferredLanguageReturn, UseQueueReturn, UseScriptOptions, UseScriptReturn, UseSessionStorageOptions, UseSetReturn, UseSnackbarReturn, UseTimeoutReturn, UseToggleReturn, UseVisibilityChangeReturn, UseWindowScrollReturn, WindowScrollPosition, WindowSize, useBattery, useClickAway, useContinuousRetry, useCopyToClipboard, useCountdown, useCounter, useDebounce, useDefault, useDocumentTitle, useEventListener, useFavicon, useFetch, useGeolocation, useHistoryState, useHover, useIdle, useIntersectionObserver, useInterval, useIntervalWhen, useIsClient, useIsDesktop, useIsFirstRender, useIsMobile, useIsMobileOrTablet, useIsTablet, useKeyPress, useList, useLocalStorage, useLockBodyScroll, useLogger, useLongPress, useMap, useMeasure, useMediaQuery, useMouse, useNetworkState, useObjectState, useOnClickOutside, useOrientation, usePageLeave, usePageTitle, usePreferredLanguage, usePrevious, useQueue, useRandomInterval, useRenderCount, useRenderInfo, useScript, useSessionStorage, useSet, useSnackbar, useThemeDetector, useThrottle, useTimeout, useToggle, useVisibilityChange, useWindowScroll, useWindowSize } from './client/hooks/index.mjs';
|
|
@@ -157,7 +157,9 @@ declare const index_adjustColor: typeof adjustColor;
|
|
|
157
157
|
declare const index_camelToKebab: typeof camelToKebab;
|
|
158
158
|
declare const index_capitalize: typeof capitalize;
|
|
159
159
|
declare const index_capitalizeWords: typeof capitalizeWords;
|
|
160
|
+
declare const index_clearCustomHeaders: typeof clearCustomHeaders;
|
|
160
161
|
declare const index_clientLogger: typeof clientLogger;
|
|
162
|
+
declare const index_configureHttp: typeof configureHttp;
|
|
161
163
|
declare const index_contactFormSchema: typeof contactFormSchema;
|
|
162
164
|
declare const index_copyToClipboard: typeof copyToClipboard;
|
|
163
165
|
declare const index_createClientLogger: typeof createClientLogger;
|
|
@@ -192,8 +194,12 @@ declare const index_generateCssVars: typeof generateCssVars;
|
|
|
192
194
|
declare const index_generateSlug: typeof generateSlug;
|
|
193
195
|
declare const index_generateSnakeSlug: typeof generateSnakeSlug;
|
|
194
196
|
declare const index_generateUrlSlug: typeof generateUrlSlug;
|
|
197
|
+
declare const index_getApiBaseUrl: typeof getApiBaseUrl;
|
|
198
|
+
declare const index_getApiPrefix: typeof getApiPrefix;
|
|
195
199
|
declare const index_getContrastColor: typeof getContrastColor;
|
|
200
|
+
declare const index_getCustomHeaders: typeof getCustomHeaders;
|
|
196
201
|
declare const index_getErrorMessage: typeof getErrorMessage;
|
|
202
|
+
declare const index_getHttpConfig: typeof getHttpConfig;
|
|
197
203
|
declare const index_getNextPage: typeof getNextPage;
|
|
198
204
|
declare const index_getPrevPage: typeof getPrevPage;
|
|
199
205
|
declare const index_getRequest: typeof getRequest;
|
|
@@ -226,9 +232,15 @@ declare const index_postRequest: typeof postRequest;
|
|
|
226
232
|
declare const index_putRequest: typeof putRequest;
|
|
227
233
|
declare const index_registerFormSchema: typeof registerFormSchema;
|
|
228
234
|
declare const index_removeCssVars: typeof removeCssVars;
|
|
235
|
+
declare const index_removeCustomHeader: typeof removeCustomHeader;
|
|
236
|
+
declare const index_resetHttpConfig: typeof resetHttpConfig;
|
|
229
237
|
declare const index_resolveThemeMode: typeof resolveThemeMode;
|
|
230
238
|
declare const index_safeJsonParse: typeof safeJsonParse;
|
|
231
239
|
declare const index_saveThemeMode: typeof saveThemeMode;
|
|
240
|
+
declare const index_setApiBaseUrl: typeof setApiBaseUrl;
|
|
241
|
+
declare const index_setApiPrefix: typeof setApiPrefix;
|
|
242
|
+
declare const index_setCustomHeader: typeof setCustomHeader;
|
|
243
|
+
declare const index_setCustomHeaders: typeof setCustomHeaders;
|
|
232
244
|
declare const index_simpleMetaParseResponse: typeof simpleMetaParseResponse;
|
|
233
245
|
declare const index_simpleParseDualDataResponse: typeof simpleParseDualDataResponse;
|
|
234
246
|
declare const index_simpleParseResponse: typeof simpleParseResponse;
|
|
@@ -299,7 +311,7 @@ declare const index_useVisibilityChange: typeof useVisibilityChange;
|
|
|
299
311
|
declare const index_useWindowScroll: typeof useWindowScroll;
|
|
300
312
|
declare const index_useWindowSize: typeof useWindowSize;
|
|
301
313
|
declare namespace index {
|
|
302
|
-
export { index_API_BASE_URL as API_BASE_URL, index_API_PREFIX as API_PREFIX, index_ApiResponse as ApiResponse, index_AxiosError as AxiosError, index_AxiosResponse as AxiosResponse, index_BannerProps as BannerProps, index_BatteryState as BatteryState, index_BorderRadius as BorderRadius, index_Breakpoints as Breakpoints, index_ButtonProps as ButtonProps, index_ButtonSize as ButtonSize, index_ButtonVariant as ButtonVariant, index_CardProps as CardProps, index_ClientLogger as ClientLogger, index_ClientLoggerConfig as ClientLoggerConfig, index_ColProps as ColProps, index_ColorPalette as ColorPalette, index_ColumnMetadata as ColumnMetadata, index_ComponentThemes as ComponentThemes, index_ContactForm as ContactForm, index_ContactFormProps as ContactFormProps, index_ContactFormValues as ContactFormValues, index_ContainerProps as ContainerProps, index_CtaSectionProps as CtaSectionProps, index_Dimensions as Dimensions, index_ERROR_CODES as ERROR_CODES, index_FaqItem as FaqItem, index_FaqSectionProps as FaqSectionProps, index_Feature as Feature, index_FeatureSectionProps as FeatureSectionProps, index_FooterColumn as FooterColumn, index_FooterProps as FooterProps, index_FormFieldError as FormFieldError, index_FormSubmitResult as FormSubmitResult, index_GeolocationState as GeolocationState, index_HeaderProps as HeaderProps, index_LoaderProps as LoaderProps, index_LoaderSize as LoaderSize, index_LoaderVariant as LoaderVariant, index_LogLevel as LogLevel, index_LoginForm as LoginForm, index_LoginFormProps as LoginFormProps, index_LoginFormValues as LoginFormValues, index_MousePosition as MousePosition, index_NavLink as NavLink, index_NetworkState as NetworkState, index_NewsletterForm as NewsletterForm, index_NewsletterFormProps as NewsletterFormProps, index_NewsletterFormValues as NewsletterFormValues, index_NewsletterSectionProps as NewsletterSectionProps, index_ObjectStateUpdate as ObjectStateUpdate, index_OrientationState as OrientationState, index_PaginatedResponse as PaginatedResponse, index_PaginationData as PaginationData, index_ParsedError as ParsedError, index_PasswordRequirements as PasswordRequirements, index_PricingFeature as PricingFeature, index_PricingPlan as PricingPlan, index_PricingSectionProps as PricingSectionProps, index_RegisterForm as RegisterForm, index_RegisterFormProps as RegisterFormProps, index_RegisterFormValues as RegisterFormValues, index_RenderInfo as RenderInfo, index_RowProps as RowProps, index_STATUS_CODES as STATUS_CODES, index_STATUS_MESSAGES as STATUS_MESSAGES, index_SUCCESS_CODES as SUCCESS_CODES, index_ScriptStatus as ScriptStatus, index_SemanticColors as SemanticColors, index_SetValue as SetValue, index_Shadows as Shadows, index_SnackbarSeverity as SnackbarSeverity, index_SnackbarState as SnackbarState, index_SocialLink as SocialLink, index_Spacing as Spacing, index_TailwindBgColor as TailwindBgColor, index_TailwindBorderRadius as TailwindBorderRadius, index_TailwindClasses as TailwindClasses, index_TailwindFontSize as TailwindFontSize, index_TailwindFontWeight as TailwindFontWeight, index_TailwindGap as TailwindGap, index_TailwindHeight as TailwindHeight, index_TailwindMargin as TailwindMargin, index_TailwindPadding as TailwindPadding, index_TailwindShadow as TailwindShadow, index_TailwindTextColor as TailwindTextColor, index_TailwindWidth as TailwindWidth, index_Testimonial as Testimonial, index_TestimonialSectionProps as TestimonialSectionProps, index_Theme as Theme, index_ThemeConfig as ThemeConfig, index_ThemeContext as ThemeContext, index_ThemeContextValue as ThemeContextValue, index_ThemeMode as ThemeMode, index_ThemeProvider as ThemeProvider, index_ThemeProviderProps as ThemeProviderProps, index_ThemeToggle as ThemeToggle, index_ThemeToggleProps as ThemeToggleProps, index_ThreeColumnProps as ThreeColumnProps, index_TwoColumnProps as TwoColumnProps, index_Typography as Typography, index_UseContinuousRetryOptions as UseContinuousRetryOptions, index_UseContinuousRetryReturn as UseContinuousRetryReturn, index_UseCopyToClipboardReturn as UseCopyToClipboardReturn, index_UseCountdownOptions as UseCountdownOptions, index_UseCountdownReturn as UseCountdownReturn, index_UseCounterOptions as UseCounterOptions, index_UseCounterReturn as UseCounterReturn, index_UseDocumentTitleOptions as UseDocumentTitleOptions, index_UseFetchOptions as UseFetchOptions, index_UseFetchReturn as UseFetchReturn, index_UseGeolocationOptions as UseGeolocationOptions, index_UseGeolocationReturn as UseGeolocationReturn, index_UseHistoryStateOptions as UseHistoryStateOptions, index_UseHistoryStateReturn as UseHistoryStateReturn, index_UseHoverReturn as UseHoverReturn, index_UseIdleOptions as UseIdleOptions, index_UseIdleReturn as UseIdleReturn, index_UseIntersectionObserverOptions as UseIntersectionObserverOptions, index_UseIntersectionObserverReturn as UseIntersectionObserverReturn, index_UseKeyPressOptions as UseKeyPressOptions, index_UseKeyPressReturn as UseKeyPressReturn, index_UseListReturn as UseListReturn, index_UseLocalStorageOptions as UseLocalStorageOptions, index_UseLoggerOptions as UseLoggerOptions, index_UseLongPressOptions as UseLongPressOptions, index_UseLongPressReturn as UseLongPressReturn, index_UseMapReturn as UseMapReturn, index_UseMeasureReturn as UseMeasureReturn, index_UseMouseOptions as UseMouseOptions, index_UseMouseReturn as UseMouseReturn, index_UseObjectStateReturn as UseObjectStateReturn, index_UsePageLeaveOptions as UsePageLeaveOptions, index_UsePageTitleOptions as UsePageTitleOptions, index_UsePreferredLanguageReturn as UsePreferredLanguageReturn, index_UseQueueReturn as UseQueueReturn, index_UseScriptOptions as UseScriptOptions, index_UseScriptReturn as UseScriptReturn, index_UseSessionStorageOptions as UseSessionStorageOptions, index_UseSetReturn as UseSetReturn, index_UseSnackbarReturn as UseSnackbarReturn, index_UseTimeoutReturn as UseTimeoutReturn, index_UseToggleReturn as UseToggleReturn, index_UseVisibilityChangeReturn as UseVisibilityChangeReturn, index_UseWindowScrollReturn as UseWindowScrollReturn, index_VALIDATION_MESSAGES as VALIDATION_MESSAGES, ThemeMode$1 as WebThemeMode, index_WindowScrollPosition as WindowScrollPosition, index_WindowSize as WindowSize, index_adjustColor as adjustColor, axiosInstance as axios, index_camelToKebab as camelToKebab, index_capitalize as capitalize, index_capitalizeWords as capitalizeWords, index_clientLogger as clientLogger, index_contactFormSchema as contactFormSchema, index_copyToClipboard as copyToClipboard, index_createClientLogger as createClientLogger, index_createEmptyPaginationMeta as createEmptyPaginationMeta, index_createErrorResponse as createErrorResponse, index_createRegisterFormSchema as createRegisterFormSchema, index_createSuccessResponse as createSuccessResponse, index_createTheme as createTheme, index_createThemeFromBrand as createThemeFromBrand, index_cssVar as cssVar, index_deepMerge as deepMerge, index_defaultDarkTheme as defaultDarkTheme, index_defaultLightTheme as defaultLightTheme, index_deleteRequest as deleteRequest, index_dummyBannerData as dummyBannerData, index_dummyFaqItems as dummyFaqItems, index_dummyFeatures as dummyFeatures, index_dummyFooterData as dummyFooterData, index_dummyHeaderData as dummyHeaderData, index_dummyImage as dummyImage, index_dummyPricingPlans as dummyPricingPlans, index_dummyTestimonials as dummyTestimonials, index_extractData as extractData, index_extractMessage as extractMessage, index_extractNestedData as extractNestedData, index_extractPaginatedData as extractPaginatedData, index_flattenToCssVars as flattenToCssVars, index_formatDate as formatDate, index_formatDateTime as formatDateTime, index_formatRelativeTime as formatRelativeTime, index_generateCssVars as generateCssVars, index_generateSlug as generateSlug, index_generateSnakeSlug as generateSnakeSlug, index_generateUrlSlug as generateUrlSlug, index_getContrastColor as getContrastColor, index_getErrorMessage as getErrorMessage, index_getNextPage as getNextPage, index_getPrevPage as getPrevPage, index_getRequest as getRequest, index_getResponseData as getResponseData, index_getSystemColorScheme as getSystemColorScheme, index_hasData as hasData, index_hasMorePages as hasMorePages, index_hexToRgba as hexToRgba, index_injectCssVars as injectCssVars, index_isErrorResponse as isErrorResponse, index_isSuccess as isSuccess, index_isSuccessResponse as isSuccessResponse, isErrorResponse$1 as isUtilErrorResponse, isSuccessResponse$1 as isUtilSuccessResponse, index_kebabToCamel as kebabToCamel, index_loadThemeFromUrl as loadThemeFromUrl, index_loadThemeMode as loadThemeMode, index_logger as logger, index_loginFormSchema as loginFormSchema, index_loremIpsum as loremIpsum, index_newsletterFormSchema as newsletterFormSchema, index_packageCheck as packageCheck, index_parseAxiosErrorMessage as parseAxiosErrorMessage, index_parseError as parseError, index_parsePaginatedResponse as parsePaginatedResponse, index_parseResponseData as parseResponseData, index_parseResponseMessage as parseResponseMessage, index_parseResponseStatus as parseResponseStatus, index_parseResponseStatusMessage as parseResponseStatusMessage, index_patchRequest as patchRequest, index_postRequest as postRequest, index_putRequest as putRequest, index_registerFormSchema as registerFormSchema, index_removeCssVars as removeCssVars, index_resolveThemeMode as resolveThemeMode, index_safeJsonParse as safeJsonParse, index_saveThemeMode as saveThemeMode, index_simpleMetaParseResponse as simpleMetaParseResponse, index_simpleParseDualDataResponse as simpleParseDualDataResponse, index_simpleParseResponse as simpleParseResponse, index_slugify as slugify, index_slugifyUnique as slugifyUnique, index_truncate as truncate, index_truncateWords as truncateWords, index_unslugify as unslugify, index_uploadFile as uploadFile, index_useBattery as useBattery, index_useClickAway as useClickAway, index_useContinuousRetry as useContinuousRetry, index_useCopyToClipboard as useCopyToClipboard, index_useCountdown as useCountdown, index_useCounter as useCounter, index_useDebounce as useDebounce, index_useDefault as useDefault, index_useDocumentTitle as useDocumentTitle, index_useEventListener as useEventListener, index_useFavicon as useFavicon, index_useFetch as useFetch, index_useGeolocation as useGeolocation, index_useHistoryState as useHistoryState, index_useHover as useHover, index_useIdle as useIdle, index_useIntersectionObserver as useIntersectionObserver, index_useInterval as useInterval, index_useIntervalWhen as useIntervalWhen, index_useIsClient as useIsClient, index_useIsDesktop as useIsDesktop, index_useIsFirstRender as useIsFirstRender, index_useIsMobile as useIsMobile, index_useIsMobileOrTablet as useIsMobileOrTablet, index_useIsTablet as useIsTablet, index_useKeyPress as useKeyPress, index_useList as useList, index_useLocalStorage as useLocalStorage, index_useLockBodyScroll as useLockBodyScroll, index_useLogger as useLogger, index_useLongPress as useLongPress, index_useMap as useMap, index_useMeasure as useMeasure, index_useMediaQuery as useMediaQuery, index_useMouse as useMouse, index_useNetworkState as useNetworkState, index_useObjectState as useObjectState, index_useOnClickOutside as useOnClickOutside, index_useOrientation as useOrientation, index_usePageLeave as usePageLeave, index_usePageTitle as usePageTitle, index_usePreferredLanguage as usePreferredLanguage, index_usePrevious as usePrevious, index_useQueue as useQueue, index_useRandomInterval as useRandomInterval, index_useRenderCount as useRenderCount, index_useRenderInfo as useRenderInfo, index_useScript as useScript, index_useSessionStorage as useSessionStorage, index_useSet as useSet, index_useSnackbar as useSnackbar, index_useTheme as useTheme, index_useThemeDetector as useThemeDetector, index_useThemeValue as useThemeValue, index_useThrottle as useThrottle, index_useTimeout as useTimeout, index_useToggle as useToggle, index_useVisibilityChange as useVisibilityChange, index_useWindowScroll as useWindowScroll, index_useWindowSize as useWindowSize };
|
|
314
|
+
export { index_API_BASE_URL as API_BASE_URL, index_API_PREFIX as API_PREFIX, index_ApiResponse as ApiResponse, index_AxiosError as AxiosError, index_AxiosResponse as AxiosResponse, index_BannerProps as BannerProps, index_BatteryState as BatteryState, index_BorderRadius as BorderRadius, index_Breakpoints as Breakpoints, index_ButtonProps as ButtonProps, index_ButtonSize as ButtonSize, index_ButtonVariant as ButtonVariant, index_CardProps as CardProps, index_ClientLogger as ClientLogger, index_ClientLoggerConfig as ClientLoggerConfig, index_ColProps as ColProps, index_ColorPalette as ColorPalette, index_ColumnMetadata as ColumnMetadata, index_ComponentThemes as ComponentThemes, index_ContactForm as ContactForm, index_ContactFormProps as ContactFormProps, index_ContactFormValues as ContactFormValues, index_ContainerProps as ContainerProps, index_CtaSectionProps as CtaSectionProps, index_Dimensions as Dimensions, index_ERROR_CODES as ERROR_CODES, index_FaqItem as FaqItem, index_FaqSectionProps as FaqSectionProps, index_Feature as Feature, index_FeatureSectionProps as FeatureSectionProps, index_FooterColumn as FooterColumn, index_FooterProps as FooterProps, index_FormFieldError as FormFieldError, index_FormSubmitResult as FormSubmitResult, index_GeolocationState as GeolocationState, index_HeaderProps as HeaderProps, index_LoaderProps as LoaderProps, index_LoaderSize as LoaderSize, index_LoaderVariant as LoaderVariant, index_LogLevel as LogLevel, index_LoginForm as LoginForm, index_LoginFormProps as LoginFormProps, index_LoginFormValues as LoginFormValues, index_MousePosition as MousePosition, index_NavLink as NavLink, index_NetworkState as NetworkState, index_NewsletterForm as NewsletterForm, index_NewsletterFormProps as NewsletterFormProps, index_NewsletterFormValues as NewsletterFormValues, index_NewsletterSectionProps as NewsletterSectionProps, index_ObjectStateUpdate as ObjectStateUpdate, index_OrientationState as OrientationState, index_PaginatedResponse as PaginatedResponse, index_PaginationData as PaginationData, index_ParsedError as ParsedError, index_PasswordRequirements as PasswordRequirements, index_PricingFeature as PricingFeature, index_PricingPlan as PricingPlan, index_PricingSectionProps as PricingSectionProps, index_RegisterForm as RegisterForm, index_RegisterFormProps as RegisterFormProps, index_RegisterFormValues as RegisterFormValues, index_RenderInfo as RenderInfo, index_RowProps as RowProps, index_STATUS_CODES as STATUS_CODES, index_STATUS_MESSAGES as STATUS_MESSAGES, index_SUCCESS_CODES as SUCCESS_CODES, index_ScriptStatus as ScriptStatus, index_SemanticColors as SemanticColors, index_SetValue as SetValue, index_Shadows as Shadows, index_SnackbarSeverity as SnackbarSeverity, index_SnackbarState as SnackbarState, index_SocialLink as SocialLink, index_Spacing as Spacing, index_TailwindBgColor as TailwindBgColor, index_TailwindBorderRadius as TailwindBorderRadius, index_TailwindClasses as TailwindClasses, index_TailwindFontSize as TailwindFontSize, index_TailwindFontWeight as TailwindFontWeight, index_TailwindGap as TailwindGap, index_TailwindHeight as TailwindHeight, index_TailwindMargin as TailwindMargin, index_TailwindPadding as TailwindPadding, index_TailwindShadow as TailwindShadow, index_TailwindTextColor as TailwindTextColor, index_TailwindWidth as TailwindWidth, index_Testimonial as Testimonial, index_TestimonialSectionProps as TestimonialSectionProps, index_Theme as Theme, index_ThemeConfig as ThemeConfig, index_ThemeContext as ThemeContext, index_ThemeContextValue as ThemeContextValue, index_ThemeMode as ThemeMode, index_ThemeProvider as ThemeProvider, index_ThemeProviderProps as ThemeProviderProps, index_ThemeToggle as ThemeToggle, index_ThemeToggleProps as ThemeToggleProps, index_ThreeColumnProps as ThreeColumnProps, index_TwoColumnProps as TwoColumnProps, index_Typography as Typography, index_UseContinuousRetryOptions as UseContinuousRetryOptions, index_UseContinuousRetryReturn as UseContinuousRetryReturn, index_UseCopyToClipboardReturn as UseCopyToClipboardReturn, index_UseCountdownOptions as UseCountdownOptions, index_UseCountdownReturn as UseCountdownReturn, index_UseCounterOptions as UseCounterOptions, index_UseCounterReturn as UseCounterReturn, index_UseDocumentTitleOptions as UseDocumentTitleOptions, index_UseFetchOptions as UseFetchOptions, index_UseFetchReturn as UseFetchReturn, index_UseGeolocationOptions as UseGeolocationOptions, index_UseGeolocationReturn as UseGeolocationReturn, index_UseHistoryStateOptions as UseHistoryStateOptions, index_UseHistoryStateReturn as UseHistoryStateReturn, index_UseHoverReturn as UseHoverReturn, index_UseIdleOptions as UseIdleOptions, index_UseIdleReturn as UseIdleReturn, index_UseIntersectionObserverOptions as UseIntersectionObserverOptions, index_UseIntersectionObserverReturn as UseIntersectionObserverReturn, index_UseKeyPressOptions as UseKeyPressOptions, index_UseKeyPressReturn as UseKeyPressReturn, index_UseListReturn as UseListReturn, index_UseLocalStorageOptions as UseLocalStorageOptions, index_UseLoggerOptions as UseLoggerOptions, index_UseLongPressOptions as UseLongPressOptions, index_UseLongPressReturn as UseLongPressReturn, index_UseMapReturn as UseMapReturn, index_UseMeasureReturn as UseMeasureReturn, index_UseMouseOptions as UseMouseOptions, index_UseMouseReturn as UseMouseReturn, index_UseObjectStateReturn as UseObjectStateReturn, index_UsePageLeaveOptions as UsePageLeaveOptions, index_UsePageTitleOptions as UsePageTitleOptions, index_UsePreferredLanguageReturn as UsePreferredLanguageReturn, index_UseQueueReturn as UseQueueReturn, index_UseScriptOptions as UseScriptOptions, index_UseScriptReturn as UseScriptReturn, index_UseSessionStorageOptions as UseSessionStorageOptions, index_UseSetReturn as UseSetReturn, index_UseSnackbarReturn as UseSnackbarReturn, index_UseTimeoutReturn as UseTimeoutReturn, index_UseToggleReturn as UseToggleReturn, index_UseVisibilityChangeReturn as UseVisibilityChangeReturn, index_UseWindowScrollReturn as UseWindowScrollReturn, index_VALIDATION_MESSAGES as VALIDATION_MESSAGES, ThemeMode$1 as WebThemeMode, index_WindowScrollPosition as WindowScrollPosition, index_WindowSize as WindowSize, index_adjustColor as adjustColor, axiosInstance as axios, index_camelToKebab as camelToKebab, index_capitalize as capitalize, index_capitalizeWords as capitalizeWords, index_clearCustomHeaders as clearCustomHeaders, index_clientLogger as clientLogger, index_configureHttp as configureHttp, index_contactFormSchema as contactFormSchema, index_copyToClipboard as copyToClipboard, index_createClientLogger as createClientLogger, index_createEmptyPaginationMeta as createEmptyPaginationMeta, index_createErrorResponse as createErrorResponse, index_createRegisterFormSchema as createRegisterFormSchema, index_createSuccessResponse as createSuccessResponse, index_createTheme as createTheme, index_createThemeFromBrand as createThemeFromBrand, index_cssVar as cssVar, index_deepMerge as deepMerge, index_defaultDarkTheme as defaultDarkTheme, index_defaultLightTheme as defaultLightTheme, index_deleteRequest as deleteRequest, index_dummyBannerData as dummyBannerData, index_dummyFaqItems as dummyFaqItems, index_dummyFeatures as dummyFeatures, index_dummyFooterData as dummyFooterData, index_dummyHeaderData as dummyHeaderData, index_dummyImage as dummyImage, index_dummyPricingPlans as dummyPricingPlans, index_dummyTestimonials as dummyTestimonials, index_extractData as extractData, index_extractMessage as extractMessage, index_extractNestedData as extractNestedData, index_extractPaginatedData as extractPaginatedData, index_flattenToCssVars as flattenToCssVars, index_formatDate as formatDate, index_formatDateTime as formatDateTime, index_formatRelativeTime as formatRelativeTime, index_generateCssVars as generateCssVars, index_generateSlug as generateSlug, index_generateSnakeSlug as generateSnakeSlug, index_generateUrlSlug as generateUrlSlug, index_getApiBaseUrl as getApiBaseUrl, index_getApiPrefix as getApiPrefix, index_getContrastColor as getContrastColor, index_getCustomHeaders as getCustomHeaders, index_getErrorMessage as getErrorMessage, index_getHttpConfig as getHttpConfig, index_getNextPage as getNextPage, index_getPrevPage as getPrevPage, index_getRequest as getRequest, index_getResponseData as getResponseData, index_getSystemColorScheme as getSystemColorScheme, index_hasData as hasData, index_hasMorePages as hasMorePages, index_hexToRgba as hexToRgba, index_injectCssVars as injectCssVars, index_isErrorResponse as isErrorResponse, index_isSuccess as isSuccess, index_isSuccessResponse as isSuccessResponse, isErrorResponse$1 as isUtilErrorResponse, isSuccessResponse$1 as isUtilSuccessResponse, index_kebabToCamel as kebabToCamel, index_loadThemeFromUrl as loadThemeFromUrl, index_loadThemeMode as loadThemeMode, index_logger as logger, index_loginFormSchema as loginFormSchema, index_loremIpsum as loremIpsum, index_newsletterFormSchema as newsletterFormSchema, index_packageCheck as packageCheck, index_parseAxiosErrorMessage as parseAxiosErrorMessage, index_parseError as parseError, index_parsePaginatedResponse as parsePaginatedResponse, index_parseResponseData as parseResponseData, index_parseResponseMessage as parseResponseMessage, index_parseResponseStatus as parseResponseStatus, index_parseResponseStatusMessage as parseResponseStatusMessage, index_patchRequest as patchRequest, index_postRequest as postRequest, index_putRequest as putRequest, index_registerFormSchema as registerFormSchema, index_removeCssVars as removeCssVars, index_removeCustomHeader as removeCustomHeader, index_resetHttpConfig as resetHttpConfig, index_resolveThemeMode as resolveThemeMode, index_safeJsonParse as safeJsonParse, index_saveThemeMode as saveThemeMode, index_setApiBaseUrl as setApiBaseUrl, index_setApiPrefix as setApiPrefix, index_setCustomHeader as setCustomHeader, index_setCustomHeaders as setCustomHeaders, index_simpleMetaParseResponse as simpleMetaParseResponse, index_simpleParseDualDataResponse as simpleParseDualDataResponse, index_simpleParseResponse as simpleParseResponse, index_slugify as slugify, index_slugifyUnique as slugifyUnique, index_truncate as truncate, index_truncateWords as truncateWords, index_unslugify as unslugify, index_uploadFile as uploadFile, index_useBattery as useBattery, index_useClickAway as useClickAway, index_useContinuousRetry as useContinuousRetry, index_useCopyToClipboard as useCopyToClipboard, index_useCountdown as useCountdown, index_useCounter as useCounter, index_useDebounce as useDebounce, index_useDefault as useDefault, index_useDocumentTitle as useDocumentTitle, index_useEventListener as useEventListener, index_useFavicon as useFavicon, index_useFetch as useFetch, index_useGeolocation as useGeolocation, index_useHistoryState as useHistoryState, index_useHover as useHover, index_useIdle as useIdle, index_useIntersectionObserver as useIntersectionObserver, index_useInterval as useInterval, index_useIntervalWhen as useIntervalWhen, index_useIsClient as useIsClient, index_useIsDesktop as useIsDesktop, index_useIsFirstRender as useIsFirstRender, index_useIsMobile as useIsMobile, index_useIsMobileOrTablet as useIsMobileOrTablet, index_useIsTablet as useIsTablet, index_useKeyPress as useKeyPress, index_useList as useList, index_useLocalStorage as useLocalStorage, index_useLockBodyScroll as useLockBodyScroll, index_useLogger as useLogger, index_useLongPress as useLongPress, index_useMap as useMap, index_useMeasure as useMeasure, index_useMediaQuery as useMediaQuery, index_useMouse as useMouse, index_useNetworkState as useNetworkState, index_useObjectState as useObjectState, index_useOnClickOutside as useOnClickOutside, index_useOrientation as useOrientation, index_usePageLeave as usePageLeave, index_usePageTitle as usePageTitle, index_usePreferredLanguage as usePreferredLanguage, index_usePrevious as usePrevious, index_useQueue as useQueue, index_useRandomInterval as useRandomInterval, index_useRenderCount as useRenderCount, index_useRenderInfo as useRenderInfo, index_useScript as useScript, index_useSessionStorage as useSessionStorage, index_useSet as useSet, index_useSnackbar as useSnackbar, index_useTheme as useTheme, index_useThemeDetector as useThemeDetector, index_useThemeValue as useThemeValue, index_useThrottle as useThrottle, index_useTimeout as useTimeout, index_useToggle as useToggle, index_useVisibilityChange as useVisibilityChange, index_useWindowScroll as useWindowScroll, index_useWindowSize as useWindowSize };
|
|
303
315
|
}
|
|
304
316
|
|
|
305
317
|
export { index as i };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { i as server } from './index-
|
|
2
|
-
export { i as client } from './index-
|
|
1
|
+
export { i as server } from './index-B8O4iu6q.mjs';
|
|
2
|
+
export { i as client } from './index-guYdqefq.mjs';
|
|
3
3
|
export { i as shared } from './index-NS8dS0p9.mjs';
|
|
4
4
|
export { i as data } from './index-jBi3V6e5.mjs';
|
|
5
5
|
import './server/response/index.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { i as server } from './index-
|
|
2
|
-
export { i as client } from './index-
|
|
1
|
+
export { i as server } from './index-MpV0UNTq.js';
|
|
2
|
+
export { i as client } from './index-CdbQ8YPt.js';
|
|
3
3
|
export { i as shared } from './index-DKn4raO7.js';
|
|
4
4
|
export { i as data } from './index-Nqm5_lwT.js';
|
|
5
5
|
import './server/response/index.js';
|