@exyconn/common 2.3.2 → 2.3.3
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/README.md +117 -12
- package/dist/client/http/index.d.mts +217 -49
- package/dist/client/http/index.d.ts +217 -49
- package/dist/client/http/index.js +473 -94
- package/dist/client/http/index.js.map +1 -1
- package/dist/client/http/index.mjs +441 -84
- package/dist/client/http/index.mjs.map +1 -1
- package/dist/client/index.d.mts +3 -3
- package/dist/client/index.d.ts +3 -3
- package/dist/client/index.js +481 -319
- package/dist/client/index.js.map +1 -1
- package/dist/client/index.mjs +449 -290
- package/dist/client/index.mjs.map +1 -1
- package/dist/client/utils/index.d.mts +3 -279
- package/dist/client/utils/index.d.ts +3 -279
- package/dist/{index-DuxL84IW.d.mts → index-BZf42T3R.d.mts} +39 -39
- package/dist/{index-D9a9oxQy.d.ts → index-CF0D8PGE.d.ts} +39 -39
- package/dist/{index-D3yCCjBZ.d.mts → index-Ckhm_HaX.d.mts} +21 -2
- package/dist/{index-01hoqibP.d.ts → index-br6POSyA.d.ts} +21 -2
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1122 -329
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1134 -341
- package/dist/index.mjs.map +1 -1
- package/dist/packageCheck-B_qfsD6R.d.ts +280 -0
- package/dist/packageCheck-C2_FT_Rl.d.mts +280 -0
- package/dist/server/index.d.mts +1 -1
- package/dist/server/index.d.ts +1 -1
- package/dist/server/index.js +631 -0
- package/dist/server/index.js.map +1 -1
- package/dist/server/index.mjs +625 -2
- package/dist/server/index.mjs.map +1 -1
- package/dist/server/middleware/index.d.mts +283 -2
- package/dist/server/middleware/index.d.ts +283 -2
- package/dist/server/middleware/index.js +761 -0
- package/dist/server/middleware/index.js.map +1 -1
- package/dist/server/middleware/index.mjs +751 -1
- package/dist/server/middleware/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { ApiResponse, ColumnMetadata, PaginationData, badRequestResponse, confli
|
|
|
2
2
|
import { StatusCode, StatusMessage, statusCode, statusMessage } from './server/enums/index.mjs';
|
|
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
|
-
import { AuthRequest, JWTPayload, authenticateApiKey, authenticateJWT, extractOrganization, optionalAuthenticateJWT, requireOrganization } from './server/middleware/index.mjs';
|
|
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
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';
|
|
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
|
|
|
@@ -10,10 +10,13 @@ declare const index_ApiResponse: typeof ApiResponse;
|
|
|
10
10
|
declare const index_AppConfig: typeof AppConfig;
|
|
11
11
|
declare const index_AuthConfig: typeof AuthConfig;
|
|
12
12
|
declare const index_AuthRequest: typeof AuthRequest;
|
|
13
|
+
declare const index_BulkDeleteRequest: typeof BulkDeleteRequest;
|
|
14
|
+
declare const index_ColumnMeta: typeof ColumnMeta;
|
|
13
15
|
declare const index_ColumnMetadata: typeof ColumnMetadata;
|
|
14
16
|
declare const index_ConfigBuilder: typeof ConfigBuilder;
|
|
15
17
|
declare const index_CorsConfig: typeof CorsConfig;
|
|
16
18
|
declare const index_CorsOriginsConfig: typeof CorsOriginsConfig;
|
|
19
|
+
declare const index_CrudConfig: typeof CrudConfig;
|
|
17
20
|
declare const index_DEFAULT_AUTH_CONFIG: typeof DEFAULT_AUTH_CONFIG;
|
|
18
21
|
declare const index_DEFAULT_CORS_CONFIG: typeof DEFAULT_CORS_CONFIG;
|
|
19
22
|
declare const index_DEFAULT_CORS_ORIGINS: typeof DEFAULT_CORS_ORIGINS;
|
|
@@ -31,13 +34,19 @@ declare const index_JWTPayload: typeof JWTPayload;
|
|
|
31
34
|
declare const index_LogLevel: typeof LogLevel;
|
|
32
35
|
declare const index_LoggerConfig: typeof LoggerConfig;
|
|
33
36
|
declare const index_LoggingConfig: typeof LoggingConfig;
|
|
37
|
+
declare const index_OrgRequest: typeof OrgRequest;
|
|
34
38
|
declare const index_PERMISSIVE_CORS_CONFIG: typeof PERMISSIVE_CORS_CONFIG;
|
|
35
39
|
declare const index_PackageCheckResult: typeof PackageCheckResult;
|
|
36
40
|
declare const index_PackageJson: typeof PackageJson;
|
|
37
41
|
declare const index_PackageVersion: typeof PackageVersion;
|
|
42
|
+
declare const index_PaginatedRequest: typeof PaginatedRequest;
|
|
43
|
+
declare const index_PaginatedResponse: typeof PaginatedResponse;
|
|
44
|
+
declare const index_PaginatedResult: typeof PaginatedResult;
|
|
38
45
|
declare const index_PaginationData: typeof PaginationData;
|
|
46
|
+
declare const index_PaginationMeta: typeof PaginationMeta;
|
|
39
47
|
declare const index_PaginationOptions: typeof PaginationOptions;
|
|
40
48
|
declare const index_PaginationResult: typeof PaginationResult;
|
|
49
|
+
declare const index_ParsedQuery: typeof ParsedQuery;
|
|
41
50
|
declare const index_RATE_LIMIT_CONFIG: typeof RATE_LIMIT_CONFIG;
|
|
42
51
|
declare const index_RateLimitConfig: typeof RateLimitConfig;
|
|
43
52
|
declare const index_RateLimitResponse: typeof RateLimitResponse;
|
|
@@ -47,12 +56,15 @@ declare const index_RateLimiterBuilder: typeof RateLimiterBuilder;
|
|
|
47
56
|
declare const index_RateLimiterConfig: typeof RateLimiterConfig;
|
|
48
57
|
declare const index_STRICT_CORS_CONFIG: typeof STRICT_CORS_CONFIG;
|
|
49
58
|
declare const index_ServerConfig: typeof ServerConfig;
|
|
59
|
+
declare const index_SortConfig: typeof SortConfig;
|
|
60
|
+
declare const index_SortOrder: typeof SortOrder;
|
|
50
61
|
declare const index_StatusCode: typeof StatusCode;
|
|
51
62
|
declare const index_StatusMessage: typeof StatusMessage;
|
|
52
63
|
declare const index_authenticateApiKey: typeof authenticateApiKey;
|
|
53
64
|
declare const index_authenticateJWT: typeof authenticateJWT;
|
|
54
65
|
declare const index_badRequestResponse: typeof badRequestResponse;
|
|
55
66
|
declare const index_buildConfig: typeof buildConfig;
|
|
67
|
+
declare const index_buildDeleteFilter: typeof buildDeleteFilter;
|
|
56
68
|
declare const index_buildFilter: typeof buildFilter;
|
|
57
69
|
declare const index_buildPagination: typeof buildPagination;
|
|
58
70
|
declare const index_buildPaginationMeta: typeof buildPaginationMeta;
|
|
@@ -63,12 +75,15 @@ declare const index_corsOptions: typeof corsOptions;
|
|
|
63
75
|
declare const index_createApiKeyGenerator: typeof createApiKeyGenerator;
|
|
64
76
|
declare const index_createApiRateLimiter: typeof createApiRateLimiter;
|
|
65
77
|
declare const index_createBrandCorsOptions: typeof createBrandCorsOptions;
|
|
78
|
+
declare const index_createBulkDeleteHandler: typeof createBulkDeleteHandler;
|
|
66
79
|
declare const index_createConfig: typeof createConfig;
|
|
67
80
|
declare const index_createCorsOptions: typeof createCorsOptions;
|
|
81
|
+
declare const index_createCrudControllers: typeof createCrudControllers;
|
|
68
82
|
declare const index_createDdosRateLimiter: typeof createDdosRateLimiter;
|
|
69
83
|
declare const index_createLogger: typeof createLogger;
|
|
70
84
|
declare const index_createMorganStream: typeof createMorganStream;
|
|
71
85
|
declare const index_createMultiBrandCorsOptions: typeof createMultiBrandCorsOptions;
|
|
86
|
+
declare const index_createPaginationMiddleware: typeof createPaginationMiddleware;
|
|
72
87
|
declare const index_createPrefixedKeyGenerator: typeof createPrefixedKeyGenerator;
|
|
73
88
|
declare const index_createRateLimiter: typeof createRateLimiter;
|
|
74
89
|
declare const index_createStandardRateLimiter: typeof createStandardRateLimiter;
|
|
@@ -81,6 +96,7 @@ declare const index_disconnectDB: typeof disconnectDB;
|
|
|
81
96
|
declare const index_errorResponse: typeof errorResponse;
|
|
82
97
|
declare const index_extractColumns: typeof extractColumns;
|
|
83
98
|
declare const index_extractOrganization: typeof extractOrganization;
|
|
99
|
+
declare const index_extractSchemaMeta: typeof extractSchemaMeta;
|
|
84
100
|
declare const index_forbiddenResponse: typeof forbiddenResponse;
|
|
85
101
|
declare const index_formatPackageCheckResult: typeof formatPackageCheckResult;
|
|
86
102
|
declare const index_generateNcuCommand: typeof generateNcuCommand;
|
|
@@ -95,8 +111,11 @@ declare const index_notFoundResponse: typeof notFoundResponse;
|
|
|
95
111
|
declare const index_omitFields: typeof omitFields;
|
|
96
112
|
declare const index_optionalAuthenticateJWT: typeof optionalAuthenticateJWT;
|
|
97
113
|
declare const index_packageCheckServer: typeof packageCheckServer;
|
|
114
|
+
declare const index_parseBulkDelete: typeof parseBulkDelete;
|
|
98
115
|
declare const index_pickFields: typeof pickFields;
|
|
99
116
|
declare const index_printPackageCheckSummary: typeof printPackageCheckSummary;
|
|
117
|
+
declare const index_queryPagination: typeof queryPagination;
|
|
118
|
+
declare const index_queryParser: typeof queryParser;
|
|
100
119
|
declare const index_rateLimitResponse: typeof rateLimitResponse;
|
|
101
120
|
declare const index_rateLimiter: typeof rateLimiter;
|
|
102
121
|
declare const index_requireOrganization: typeof requireOrganization;
|
|
@@ -113,7 +132,7 @@ declare const index_successResponseArr: typeof successResponseArr;
|
|
|
113
132
|
declare const index_unauthorizedResponse: typeof unauthorizedResponse;
|
|
114
133
|
declare const index_validationErrorResponse: typeof validationErrorResponse;
|
|
115
134
|
declare namespace index {
|
|
116
|
-
export { index_ApiResponse as ApiResponse, index_AppConfig as AppConfig, index_AuthConfig as AuthConfig, index_AuthRequest as AuthRequest, index_ColumnMetadata as ColumnMetadata, index_ConfigBuilder as ConfigBuilder, index_CorsConfig as CorsConfig, index_CorsOriginsConfig as CorsOriginsConfig, 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_PERMISSIVE_CORS_CONFIG as PERMISSIVE_CORS_CONFIG, index_PackageCheckResult as PackageCheckResult, index_PackageJson as PackageJson, index_PackageVersion as PackageVersion, index_PaginationData as PaginationData, index_PaginationOptions as PaginationOptions, index_PaginationResult as PaginationResult, 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_StatusCode as StatusCode, index_StatusMessage as StatusMessage, index_authenticateApiKey as authenticateApiKey, index_authenticateJWT as authenticateJWT, index_badRequestResponse as badRequestResponse, index_buildConfig as buildConfig, 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_createConfig as createConfig, index_createCorsOptions as createCorsOptions, index_createDdosRateLimiter as createDdosRateLimiter, index_createLogger as createLogger, index_createMorganStream as createMorganStream, index_createMultiBrandCorsOptions as createMultiBrandCorsOptions, 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_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_pickFields as pickFields, index_printPackageCheckSummary as printPackageCheckSummary, 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 };
|
|
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 };
|
|
117
136
|
}
|
|
118
137
|
|
|
119
138
|
export { index as i };
|
|
@@ -2,7 +2,7 @@ import { ApiResponse, ColumnMetadata, PaginationData, badRequestResponse, confli
|
|
|
2
2
|
import { StatusCode, StatusMessage, statusCode, statusMessage } from './server/enums/index.js';
|
|
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
|
-
import { AuthRequest, JWTPayload, authenticateApiKey, authenticateJWT, extractOrganization, optionalAuthenticateJWT, requireOrganization } from './server/middleware/index.js';
|
|
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
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';
|
|
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
|
|
|
@@ -10,10 +10,13 @@ declare const index_ApiResponse: typeof ApiResponse;
|
|
|
10
10
|
declare const index_AppConfig: typeof AppConfig;
|
|
11
11
|
declare const index_AuthConfig: typeof AuthConfig;
|
|
12
12
|
declare const index_AuthRequest: typeof AuthRequest;
|
|
13
|
+
declare const index_BulkDeleteRequest: typeof BulkDeleteRequest;
|
|
14
|
+
declare const index_ColumnMeta: typeof ColumnMeta;
|
|
13
15
|
declare const index_ColumnMetadata: typeof ColumnMetadata;
|
|
14
16
|
declare const index_ConfigBuilder: typeof ConfigBuilder;
|
|
15
17
|
declare const index_CorsConfig: typeof CorsConfig;
|
|
16
18
|
declare const index_CorsOriginsConfig: typeof CorsOriginsConfig;
|
|
19
|
+
declare const index_CrudConfig: typeof CrudConfig;
|
|
17
20
|
declare const index_DEFAULT_AUTH_CONFIG: typeof DEFAULT_AUTH_CONFIG;
|
|
18
21
|
declare const index_DEFAULT_CORS_CONFIG: typeof DEFAULT_CORS_CONFIG;
|
|
19
22
|
declare const index_DEFAULT_CORS_ORIGINS: typeof DEFAULT_CORS_ORIGINS;
|
|
@@ -31,13 +34,19 @@ declare const index_JWTPayload: typeof JWTPayload;
|
|
|
31
34
|
declare const index_LogLevel: typeof LogLevel;
|
|
32
35
|
declare const index_LoggerConfig: typeof LoggerConfig;
|
|
33
36
|
declare const index_LoggingConfig: typeof LoggingConfig;
|
|
37
|
+
declare const index_OrgRequest: typeof OrgRequest;
|
|
34
38
|
declare const index_PERMISSIVE_CORS_CONFIG: typeof PERMISSIVE_CORS_CONFIG;
|
|
35
39
|
declare const index_PackageCheckResult: typeof PackageCheckResult;
|
|
36
40
|
declare const index_PackageJson: typeof PackageJson;
|
|
37
41
|
declare const index_PackageVersion: typeof PackageVersion;
|
|
42
|
+
declare const index_PaginatedRequest: typeof PaginatedRequest;
|
|
43
|
+
declare const index_PaginatedResponse: typeof PaginatedResponse;
|
|
44
|
+
declare const index_PaginatedResult: typeof PaginatedResult;
|
|
38
45
|
declare const index_PaginationData: typeof PaginationData;
|
|
46
|
+
declare const index_PaginationMeta: typeof PaginationMeta;
|
|
39
47
|
declare const index_PaginationOptions: typeof PaginationOptions;
|
|
40
48
|
declare const index_PaginationResult: typeof PaginationResult;
|
|
49
|
+
declare const index_ParsedQuery: typeof ParsedQuery;
|
|
41
50
|
declare const index_RATE_LIMIT_CONFIG: typeof RATE_LIMIT_CONFIG;
|
|
42
51
|
declare const index_RateLimitConfig: typeof RateLimitConfig;
|
|
43
52
|
declare const index_RateLimitResponse: typeof RateLimitResponse;
|
|
@@ -47,12 +56,15 @@ declare const index_RateLimiterBuilder: typeof RateLimiterBuilder;
|
|
|
47
56
|
declare const index_RateLimiterConfig: typeof RateLimiterConfig;
|
|
48
57
|
declare const index_STRICT_CORS_CONFIG: typeof STRICT_CORS_CONFIG;
|
|
49
58
|
declare const index_ServerConfig: typeof ServerConfig;
|
|
59
|
+
declare const index_SortConfig: typeof SortConfig;
|
|
60
|
+
declare const index_SortOrder: typeof SortOrder;
|
|
50
61
|
declare const index_StatusCode: typeof StatusCode;
|
|
51
62
|
declare const index_StatusMessage: typeof StatusMessage;
|
|
52
63
|
declare const index_authenticateApiKey: typeof authenticateApiKey;
|
|
53
64
|
declare const index_authenticateJWT: typeof authenticateJWT;
|
|
54
65
|
declare const index_badRequestResponse: typeof badRequestResponse;
|
|
55
66
|
declare const index_buildConfig: typeof buildConfig;
|
|
67
|
+
declare const index_buildDeleteFilter: typeof buildDeleteFilter;
|
|
56
68
|
declare const index_buildFilter: typeof buildFilter;
|
|
57
69
|
declare const index_buildPagination: typeof buildPagination;
|
|
58
70
|
declare const index_buildPaginationMeta: typeof buildPaginationMeta;
|
|
@@ -63,12 +75,15 @@ declare const index_corsOptions: typeof corsOptions;
|
|
|
63
75
|
declare const index_createApiKeyGenerator: typeof createApiKeyGenerator;
|
|
64
76
|
declare const index_createApiRateLimiter: typeof createApiRateLimiter;
|
|
65
77
|
declare const index_createBrandCorsOptions: typeof createBrandCorsOptions;
|
|
78
|
+
declare const index_createBulkDeleteHandler: typeof createBulkDeleteHandler;
|
|
66
79
|
declare const index_createConfig: typeof createConfig;
|
|
67
80
|
declare const index_createCorsOptions: typeof createCorsOptions;
|
|
81
|
+
declare const index_createCrudControllers: typeof createCrudControllers;
|
|
68
82
|
declare const index_createDdosRateLimiter: typeof createDdosRateLimiter;
|
|
69
83
|
declare const index_createLogger: typeof createLogger;
|
|
70
84
|
declare const index_createMorganStream: typeof createMorganStream;
|
|
71
85
|
declare const index_createMultiBrandCorsOptions: typeof createMultiBrandCorsOptions;
|
|
86
|
+
declare const index_createPaginationMiddleware: typeof createPaginationMiddleware;
|
|
72
87
|
declare const index_createPrefixedKeyGenerator: typeof createPrefixedKeyGenerator;
|
|
73
88
|
declare const index_createRateLimiter: typeof createRateLimiter;
|
|
74
89
|
declare const index_createStandardRateLimiter: typeof createStandardRateLimiter;
|
|
@@ -81,6 +96,7 @@ declare const index_disconnectDB: typeof disconnectDB;
|
|
|
81
96
|
declare const index_errorResponse: typeof errorResponse;
|
|
82
97
|
declare const index_extractColumns: typeof extractColumns;
|
|
83
98
|
declare const index_extractOrganization: typeof extractOrganization;
|
|
99
|
+
declare const index_extractSchemaMeta: typeof extractSchemaMeta;
|
|
84
100
|
declare const index_forbiddenResponse: typeof forbiddenResponse;
|
|
85
101
|
declare const index_formatPackageCheckResult: typeof formatPackageCheckResult;
|
|
86
102
|
declare const index_generateNcuCommand: typeof generateNcuCommand;
|
|
@@ -95,8 +111,11 @@ declare const index_notFoundResponse: typeof notFoundResponse;
|
|
|
95
111
|
declare const index_omitFields: typeof omitFields;
|
|
96
112
|
declare const index_optionalAuthenticateJWT: typeof optionalAuthenticateJWT;
|
|
97
113
|
declare const index_packageCheckServer: typeof packageCheckServer;
|
|
114
|
+
declare const index_parseBulkDelete: typeof parseBulkDelete;
|
|
98
115
|
declare const index_pickFields: typeof pickFields;
|
|
99
116
|
declare const index_printPackageCheckSummary: typeof printPackageCheckSummary;
|
|
117
|
+
declare const index_queryPagination: typeof queryPagination;
|
|
118
|
+
declare const index_queryParser: typeof queryParser;
|
|
100
119
|
declare const index_rateLimitResponse: typeof rateLimitResponse;
|
|
101
120
|
declare const index_rateLimiter: typeof rateLimiter;
|
|
102
121
|
declare const index_requireOrganization: typeof requireOrganization;
|
|
@@ -113,7 +132,7 @@ declare const index_successResponseArr: typeof successResponseArr;
|
|
|
113
132
|
declare const index_unauthorizedResponse: typeof unauthorizedResponse;
|
|
114
133
|
declare const index_validationErrorResponse: typeof validationErrorResponse;
|
|
115
134
|
declare namespace index {
|
|
116
|
-
export { index_ApiResponse as ApiResponse, index_AppConfig as AppConfig, index_AuthConfig as AuthConfig, index_AuthRequest as AuthRequest, index_ColumnMetadata as ColumnMetadata, index_ConfigBuilder as ConfigBuilder, index_CorsConfig as CorsConfig, index_CorsOriginsConfig as CorsOriginsConfig, 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_PERMISSIVE_CORS_CONFIG as PERMISSIVE_CORS_CONFIG, index_PackageCheckResult as PackageCheckResult, index_PackageJson as PackageJson, index_PackageVersion as PackageVersion, index_PaginationData as PaginationData, index_PaginationOptions as PaginationOptions, index_PaginationResult as PaginationResult, 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_StatusCode as StatusCode, index_StatusMessage as StatusMessage, index_authenticateApiKey as authenticateApiKey, index_authenticateJWT as authenticateJWT, index_badRequestResponse as badRequestResponse, index_buildConfig as buildConfig, 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_createConfig as createConfig, index_createCorsOptions as createCorsOptions, index_createDdosRateLimiter as createDdosRateLimiter, index_createLogger as createLogger, index_createMorganStream as createMorganStream, index_createMultiBrandCorsOptions as createMultiBrandCorsOptions, 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_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_pickFields as pickFields, index_printPackageCheckSummary as printPackageCheckSummary, 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 };
|
|
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 };
|
|
117
136
|
}
|
|
118
137
|
|
|
119
138
|
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-Ckhm_HaX.mjs';
|
|
2
|
+
export { i as client } from './index-BZf42T3R.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';
|
|
@@ -17,7 +17,7 @@ import 'express-rate-limit';
|
|
|
17
17
|
import './client/http/index.mjs';
|
|
18
18
|
import 'axios';
|
|
19
19
|
import './client/logger/index.mjs';
|
|
20
|
-
import './
|
|
20
|
+
import './packageCheck-C2_FT_Rl.mjs';
|
|
21
21
|
import './response.types-D--UhLJq.mjs';
|
|
22
22
|
import './client/hooks/index.mjs';
|
|
23
23
|
import 'react';
|
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-br6POSyA.js';
|
|
2
|
+
export { i as client } from './index-CF0D8PGE.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';
|
|
@@ -17,7 +17,7 @@ import 'express-rate-limit';
|
|
|
17
17
|
import './client/http/index.js';
|
|
18
18
|
import 'axios';
|
|
19
19
|
import './client/logger/index.js';
|
|
20
|
-
import './
|
|
20
|
+
import './packageCheck-B_qfsD6R.js';
|
|
21
21
|
import './response.types-D--UhLJq.js';
|
|
22
22
|
import './client/hooks/index.js';
|
|
23
23
|
import 'react';
|