@bnsights/bbsf-utilities 1.0.60 → 1.0.65
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 +6 -0
- package/bnsights-bbsf-utilities-1.0.65.tgz +0 -0
- package/esm2022/lib/bbsf-utilities.module.mjs +8 -31
- package/esm2022/lib/shared/services/request-handler.service.mjs +12 -9
- package/fesm2022/bnsights-bbsf-utilities.mjs +563 -582
- package/fesm2022/bnsights-bbsf-utilities.mjs.map +1 -1
- package/lib/bbsf-utilities.module.d.ts +2 -2
- package/lib/shared/services/request-handler.service.d.ts +2 -3
- package/package.json +16 -16
|
@@ -2,9 +2,9 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "@angular/common";
|
|
3
3
|
import * as i2 from "@angular/router";
|
|
4
4
|
import * as i3 from "ng-block-ui";
|
|
5
|
-
import * as i4 from "
|
|
5
|
+
import * as i4 from "@angular/common/http";
|
|
6
6
|
export declare class BBSFUtilitiesModule {
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFUtilitiesModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFUtilitiesModule, never, [typeof i1.CommonModule, typeof i2.RouterModule, typeof i3.BlockUIModule, typeof i4.
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFUtilitiesModule, never, [typeof i1.CommonModule, typeof i2.RouterModule, typeof i3.BlockUIModule, typeof i4.HttpClientModule], never>;
|
|
9
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<BBSFUtilitiesModule>;
|
|
10
10
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { HttpClient, HttpHeaders, HttpParams } from "@angular/common/http";
|
|
2
2
|
import { OnDestroy } from '@angular/core';
|
|
3
|
-
import { Router } from '@angular/router';
|
|
4
3
|
import { Observable, Subject } from 'rxjs';
|
|
5
4
|
import { BBSFTranslateService, EnvironmentService, UtilityService } from ".";
|
|
6
5
|
import { AuthService } from '../authentication/auth.service';
|
|
@@ -12,11 +11,11 @@ export declare class RequestHandlerService implements OnDestroy {
|
|
|
12
11
|
private environmentService;
|
|
13
12
|
private utilityService;
|
|
14
13
|
private bbsfTranslateService;
|
|
15
|
-
private router;
|
|
16
14
|
private requestOptions;
|
|
17
15
|
private currentLanguage;
|
|
18
16
|
onDestroy$: Subject<void>;
|
|
19
|
-
|
|
17
|
+
private router;
|
|
18
|
+
constructor(http: HttpClient, authService: AuthService, environmentService: EnvironmentService, utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService);
|
|
20
19
|
private isOnline;
|
|
21
20
|
get<T>(Url: string, params?: HttpParams, responseType?: new () => T, requestOptions?: RequestOptionsModel): Observable<T>;
|
|
22
21
|
post<T>(Url: string, model?: any, responseType?: new () => T, params?: HttpParams, requestOptions?: RequestOptionsModel): Observable<T>;
|
package/package.json
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bnsights/bbsf-utilities",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.65",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/animations": "^
|
|
6
|
-
"@angular/cdk": "^
|
|
7
|
-
"@angular/common": "^
|
|
8
|
-
"@angular/compiler": "^
|
|
9
|
-
"@angular/core": "^
|
|
10
|
-
"@angular/forms": "^
|
|
11
|
-
"@angular/localize": "^
|
|
12
|
-
"@angular/router": "^
|
|
5
|
+
"@angular/animations": "^19.0.0",
|
|
6
|
+
"@angular/cdk": "^19.0.0",
|
|
7
|
+
"@angular/common": "^19.0.0",
|
|
8
|
+
"@angular/compiler": "^19.0.0",
|
|
9
|
+
"@angular/core": "^19.0.0",
|
|
10
|
+
"@angular/forms": "^19.0.0",
|
|
11
|
+
"@angular/localize": "^19.0.0",
|
|
12
|
+
"@angular/router": "^19.0.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@auth0/angular-jwt": "^5.2.0",
|
|
16
|
+
"@ngx-translate/core": "^15.0.0",
|
|
17
|
+
"class-transformer": "^0.5.1",
|
|
16
18
|
"color-name": "^2.0.0",
|
|
17
19
|
"escape-html": "^1.0.3",
|
|
18
20
|
"html-to-vdom": "^0.7.0",
|
|
@@ -21,16 +23,14 @@
|
|
|
21
23
|
"jszip": "^3.10.1",
|
|
22
24
|
"lodash": "^4.17.21",
|
|
23
25
|
"mime-types": "^2.1.35",
|
|
24
|
-
"
|
|
25
|
-
"virtual-dom": "^2.1.1",
|
|
26
|
-
"xmlbuilder2": "3.1.1",
|
|
26
|
+
"nanoid": "^5.0.4",
|
|
27
27
|
"ng-block-ui": "^4.0.1",
|
|
28
|
-
"ngx-
|
|
28
|
+
"ngx-cookie-service": "^19.0.0",
|
|
29
|
+
"ngx-toastr": "^19.0.0",
|
|
29
30
|
"oidc-client": "^1.11.5",
|
|
30
|
-
"class-transformer": "^0.5.1",
|
|
31
|
-
"nanoid": "^5.0.4",
|
|
32
31
|
"tslib": "^2.6.2",
|
|
33
|
-
"
|
|
32
|
+
"virtual-dom": "^2.1.1",
|
|
33
|
+
"xmlbuilder2": "3.1.1"
|
|
34
34
|
},
|
|
35
35
|
"module": "fesm2022/bnsights-bbsf-utilities.mjs",
|
|
36
36
|
"typings": "index.d.ts",
|