@deboxsoft/module-core
Advanced tools
Comparing version 2.6.10 to 2.6.11
@@ -608,12 +608,13 @@ import { z, ZodType } from 'zod'; | ||
} & RootFilterOperators<T>); | ||
declare type ID = string; | ||
declare type IdParams = { | ||
id: string; | ||
id: ID; | ||
}; | ||
declare type RestResponse<T> = { | ||
declare type DataResponse<T, M = Record<string, any>> = { | ||
data: T; | ||
meta?: Record<string, any>; | ||
meta?: M; | ||
}; | ||
declare type BooleanResponse = RestResponse<boolean>; | ||
declare type StringResponse = RestResponse<string>; | ||
declare type NumberResponse = RestResponse<number>; | ||
declare type CreateDataResponse<M = Record<string, any>> = DataResponse<ID, M>; | ||
declare type UpdateDataResponse<M = Record<string, any>> = DataResponse<boolean, M>; | ||
declare type RemoveDataResponse<M = Record<string, any>> = DataResponse<boolean, M>; | ||
@@ -629,2 +630,2 @@ declare type ModuleConfig = { | ||
export { AlternativeType, AppConfig, BooleanResponse, CONFIG_KEY, Config, Container, DateSchema, DbxError, DbxErrorOptions, Filter, FilterCondition, FilterOperators, IdParams, IdSchema, Join, LOGGER_KEY, Logger, MakeSchemaResponse, ModuleConfig, NestedPaths, NotificationType, NumberResponse, PageCursorInfo, PageCursorParams, PageCursorParamsOutput, PageDefaultInfo, PageDefaultParams, PageDefaultParamsOutput, PageInfo, PageParams, Pagination, PaginationOptions, PaginationType, PropertyType, RangeDate, RangeDateSchema, RegExpOrString, RestResponse, RootFilterOperators, StringResponse, TimeStampSchema, clamp, cloneDeep, createLoggerConsole, dayTimeZone, debounce, getAppConfig, getConfig, getLogger, getRangeDate, isEmpty, isObject, isPlainObject, isString, isStringAndNotBlank, isStringBlank, kindOf, makeSchemaResponse, omit, pickBy, pull, throttle, transformDefaultPageInfo }; | ||
export { AlternativeType, AppConfig, CONFIG_KEY, Config, Container, CreateDataResponse, DataResponse, DateSchema, DbxError, DbxErrorOptions, Filter, FilterCondition, FilterOperators, ID, IdParams, IdSchema, Join, LOGGER_KEY, Logger, MakeSchemaResponse, ModuleConfig, NestedPaths, NotificationType, PageCursorInfo, PageCursorParams, PageCursorParamsOutput, PageDefaultInfo, PageDefaultParams, PageDefaultParamsOutput, PageInfo, PageParams, Pagination, PaginationOptions, PaginationType, PropertyType, RangeDate, RangeDateSchema, RegExpOrString, RemoveDataResponse, RootFilterOperators, TimeStampSchema, UpdateDataResponse, clamp, cloneDeep, createLoggerConsole, dayTimeZone, debounce, getAppConfig, getConfig, getLogger, getRangeDate, isEmpty, isObject, isPlainObject, isString, isStringAndNotBlank, isStringBlank, kindOf, makeSchemaResponse, omit, pickBy, pull, throttle, transformDefaultPageInfo }; |
{ | ||
"name": "@deboxsoft/module-core", | ||
"version": "2.6.10", | ||
"version": "2.6.11", | ||
"license": "SEE LICENSE IN LICENSE", | ||
@@ -5,0 +5,0 @@ "maintainers": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
71844
2146