@stemy/ngx-utils 19.6.7 → 19.6.8
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/fesm2022/stemy-ngx-utils.mjs +18 -4
- package/fesm2022/stemy-ngx-utils.mjs.map +1 -1
- package/ngx-utils/common-types.d.ts +5 -1
- package/ngx-utils/ngx-utils.imports.d.ts +2 -2
- package/ngx-utils/services/open-api.service.d.ts +2 -1
- package/ngx-utils/tokens.d.ts +2 -1
- package/ngx-utils/utils/cached-factory.d.ts +2 -2
- package/package.json +1 -1
- package/public_api.d.ts +2 -2
|
@@ -484,6 +484,7 @@ const ROOT_ELEMENT = new InjectionToken("app-root-element");
|
|
|
484
484
|
const RESIZE_DELAY = new InjectionToken("resize-event-delay");
|
|
485
485
|
const RESIZE_STRATEGY = new InjectionToken("resize-event-strategy");
|
|
486
486
|
const ERROR_HANDLER = new InjectionToken("error-handler-callback");
|
|
487
|
+
const STATIC_SCHEMAS = new InjectionToken("static-openapi-schemas");
|
|
487
488
|
|
|
488
489
|
class AjaxRequestHandler {
|
|
489
490
|
static { this.isOverridden = false; }
|
|
@@ -4053,8 +4054,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
4053
4054
|
}] });
|
|
4054
4055
|
|
|
4055
4056
|
class OpenApiService {
|
|
4056
|
-
constructor(api) {
|
|
4057
|
+
constructor(api, staticSchemas) {
|
|
4057
4058
|
this.api = api;
|
|
4059
|
+
this.staticSchemas = staticSchemas;
|
|
4058
4060
|
this.dynamicSchemas = {};
|
|
4059
4061
|
}
|
|
4060
4062
|
isDynamicSchema(value) {
|
|
@@ -4071,7 +4073,12 @@ class OpenApiService {
|
|
|
4071
4073
|
const apiDocs = this.api.get("api-docs", { cache });
|
|
4072
4074
|
if (apiDocs !== this.apiDocs) {
|
|
4073
4075
|
this.apiDocs = apiDocs;
|
|
4074
|
-
this.schemas = apiDocs.then(res =>
|
|
4076
|
+
this.schemas = apiDocs.then(res => {
|
|
4077
|
+
return {
|
|
4078
|
+
...this.extractSchemas({ definitions: this.staticSchemas }),
|
|
4079
|
+
...this.extractSchemas(res)
|
|
4080
|
+
};
|
|
4081
|
+
});
|
|
4075
4082
|
}
|
|
4076
4083
|
return this.schemas;
|
|
4077
4084
|
}
|
|
@@ -4123,7 +4130,7 @@ class OpenApiService {
|
|
|
4123
4130
|
});
|
|
4124
4131
|
return schemas;
|
|
4125
4132
|
}
|
|
4126
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: OpenApiService, deps: [{ token: API_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4133
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: OpenApiService, deps: [{ token: API_SERVICE }, { token: STATIC_SCHEMAS }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4127
4134
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: OpenApiService }); }
|
|
4128
4135
|
}
|
|
4129
4136
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: OpenApiService, decorators: [{
|
|
@@ -4131,6 +4138,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
4131
4138
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
4132
4139
|
type: Inject,
|
|
4133
4140
|
args: [API_SERVICE]
|
|
4141
|
+
}] }, { type: undefined, decorators: [{
|
|
4142
|
+
type: Inject,
|
|
4143
|
+
args: [STATIC_SCHEMAS]
|
|
4134
4144
|
}] }] });
|
|
4135
4145
|
|
|
4136
4146
|
class BaseToasterService {
|
|
@@ -8855,6 +8865,10 @@ class NgxUtilsModule {
|
|
|
8855
8865
|
provide: SOCKET_IO_PATH,
|
|
8856
8866
|
useValue: (!config ? null : config.socketPath) ?? "socket.io",
|
|
8857
8867
|
},
|
|
8868
|
+
{
|
|
8869
|
+
provide: STATIC_SCHEMAS,
|
|
8870
|
+
useValue: (!config ? null : config.staticSchemas) ?? {},
|
|
8871
|
+
},
|
|
8858
8872
|
{
|
|
8859
8873
|
provide: APP_INITIALIZER,
|
|
8860
8874
|
useFactory: (!config ? null : config.initializeApp) || loadConfig,
|
|
@@ -8937,5 +8951,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
8937
8951
|
* Generated bundle index. Do not edit.
|
|
8938
8952
|
*/
|
|
8939
8953
|
|
|
8940
|
-
export { API_SERVICE, APP_BASE_URL, AUTH_SERVICE, AclService, AjaxRequestHandler, ApiService, ArrayUtils, AsyncMethodBase, AsyncMethodDirective, AsyncMethodTargetDirective, AuthGuard, BASE_CONFIG, BUTTON_TYPE, BackgroundDirective, BaseDialogService, BaseHttpClient, BaseHttpService, BaseToasterService, BtnComponent, BtnDefaultComponent, CONFIG_SERVICE, CacheService, CanvasColor, CanvasUtils, ChipsComponent, ChunkPipe, Circle, CloseBtnComponent, ComponentLoaderDirective, ComponentLoaderService, ConfigService, DIALOG_SERVICE, DateUtils, DragDropEventPlugin, DropListComponent, DropdownBoxComponent, DropdownContentDirective, DropdownDirective, DropdownToggleDirective, DynamicTableComponent, DynamicTableTemplateDirective, ERROR_HANDLER, EXPRESS_REQUEST, EntriesPipe, ErrorHandlerService, EventsService, ExtraItemPropertiesPipe, FactoryDependencies, FakeModuleComponent, FileSystemEntry, FileUtils, FilterPipe, FindPipe, ForbiddenZone, FormatNumberPipe, FormatterService, GenericValue, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplateDirective, GlobalTemplatePipe, GlobalTemplateService, GroupByPipe, ICON_MAP, ICON_SERVICE, ICON_TYPE, IConfiguration, IconComponent, IconDefaultComponent, IconDirective, IconService, IncludesPipe, Initializer, InteractiveCanvasComponent, InteractiveCircleComponent, InteractiveItemComponent, InteractiveRectComponent, IsTypePipe, JSONfn, JoinPipe, KeysPipe, LANGUAGE_SERVICE, LanguageService, LoaderUtils, LocalHttpService, MapPipe, MathUtils, MaxPipe, MinPipe, NgxTemplateOutletDirective, NgxUtilsModule, OPTIONS_TOKEN, ObjectType, ObjectUtils, ObservableUtils, OpenApiService, PROMISE_SERVICE, PaginationDirective, PaginationItemContext, PaginationItemDirective, PaginationMenuComponent, Point, PopPipe, PromiseService, RESIZE_DELAY, RESIZE_STRATEGY, ROOT_ELEMENT, Rect, ReducePipe, ReflectUtils, RemapPipe, ReplacePipe, ResizeEventPlugin, ResourceIfContext, ResourceIfDirective, ReversePipe, RoundPipe, SCRIPT_PARAMS, SafeHtmlPipe, ScrollEventPlugin, SetUtils, ShiftPipe, SocketClient, SocketService, SplitPipe, StateService, StaticAuthService, StaticLanguageService, StickyClassDirective, StickyDirective, StorageMode, StorageService, StringUtils, TOASTER_SERVICE, TabsComponent, TabsItemDirective, TabsTemplateDirective, TimerUtils, TranslatePipe, TranslatedUrlSerializer, UniqueUtils, UniversalService, UnorderedListComponent, UnorderedListItemDirective, UnorderedListTemplateDirective, UploadComponent, ValuedPromise, ValuesPipe, Vector, WASI_IMPLEMENTATION, WasmService, cachedFactory, cancelablePromise, checkTransitions, computedPrevious, cssStyles, cssVariables, getComponentDef, getCssVariables, getRoot, hashCode, impatientPromise, isBrowser, parseSelector, provideEntryComponents, provideWithOptions, selectorMatchesList, switchClass };
|
|
8954
|
+
export { API_SERVICE, APP_BASE_URL, AUTH_SERVICE, AclService, AjaxRequestHandler, ApiService, ArrayUtils, AsyncMethodBase, AsyncMethodDirective, AsyncMethodTargetDirective, AuthGuard, BASE_CONFIG, BUTTON_TYPE, BackgroundDirective, BaseDialogService, BaseHttpClient, BaseHttpService, BaseToasterService, BtnComponent, BtnDefaultComponent, CONFIG_SERVICE, CacheService, CanvasColor, CanvasUtils, ChipsComponent, ChunkPipe, Circle, CloseBtnComponent, ComponentLoaderDirective, ComponentLoaderService, ConfigService, DIALOG_SERVICE, DateUtils, DragDropEventPlugin, DropListComponent, DropdownBoxComponent, DropdownContentDirective, DropdownDirective, DropdownToggleDirective, DynamicTableComponent, DynamicTableTemplateDirective, ERROR_HANDLER, EXPRESS_REQUEST, EntriesPipe, ErrorHandlerService, EventsService, ExtraItemPropertiesPipe, FactoryDependencies, FakeModuleComponent, FileSystemEntry, FileUtils, FilterPipe, FindPipe, ForbiddenZone, FormatNumberPipe, FormatterService, GenericValue, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplateDirective, GlobalTemplatePipe, GlobalTemplateService, GroupByPipe, ICON_MAP, ICON_SERVICE, ICON_TYPE, IConfiguration, IconComponent, IconDefaultComponent, IconDirective, IconService, IncludesPipe, Initializer, InteractiveCanvasComponent, InteractiveCircleComponent, InteractiveItemComponent, InteractiveRectComponent, IsTypePipe, JSONfn, JoinPipe, KeysPipe, LANGUAGE_SERVICE, LanguageService, LoaderUtils, LocalHttpService, MapPipe, MathUtils, MaxPipe, MinPipe, NgxTemplateOutletDirective, NgxUtilsModule, OPTIONS_TOKEN, ObjectType, ObjectUtils, ObservableUtils, OpenApiService, PROMISE_SERVICE, PaginationDirective, PaginationItemContext, PaginationItemDirective, PaginationMenuComponent, Point, PopPipe, PromiseService, RESIZE_DELAY, RESIZE_STRATEGY, ROOT_ELEMENT, Rect, ReducePipe, ReflectUtils, RemapPipe, ReplacePipe, ResizeEventPlugin, ResourceIfContext, ResourceIfDirective, ReversePipe, RoundPipe, SCRIPT_PARAMS, STATIC_SCHEMAS, SafeHtmlPipe, ScrollEventPlugin, SetUtils, ShiftPipe, SocketClient, SocketService, SplitPipe, StateService, StaticAuthService, StaticLanguageService, StickyClassDirective, StickyDirective, StorageMode, StorageService, StringUtils, TOASTER_SERVICE, TabsComponent, TabsItemDirective, TabsTemplateDirective, TimerUtils, TranslatePipe, TranslatedUrlSerializer, UniqueUtils, UniversalService, UnorderedListComponent, UnorderedListItemDirective, UnorderedListTemplateDirective, UploadComponent, ValuedPromise, ValuesPipe, Vector, WASI_IMPLEMENTATION, WasmService, cachedFactory, cancelablePromise, checkTransitions, computedPrevious, cssStyles, cssVariables, getComponentDef, getCssVariables, getRoot, hashCode, impatientPromise, isBrowser, parseSelector, provideEntryComponents, provideWithOptions, selectorMatchesList, switchClass };
|
|
8941
8955
|
//# sourceMappingURL=stemy-ngx-utils.mjs.map
|