@abp/ng.core 7.0.1 → 7.1.0-rc.1
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/esm2020/lib/clients/http.client.mjs +34 -0
- package/esm2020/lib/clients/index.mjs +2 -0
- package/esm2020/lib/providers/include-localization-resources.provider.mjs +2 -2
- package/esm2020/lib/proxy/pages/abp/multi-tenancy/abp-tenant.service.mjs +1 -1
- package/esm2020/lib/proxy/volo/abp/asp-net-core/mvc/api-exploring/abp-api-definition.service.mjs +1 -1
- package/esm2020/lib/proxy/volo/abp/asp-net-core/mvc/application-configurations/abp-application-configuration.service.mjs +1 -1
- package/esm2020/lib/proxy/volo/abp/asp-net-core/mvc/application-configurations/abp-application-localization.service.mjs +2 -2
- package/esm2020/lib/proxy/volo/abp/http/modeling/models.mjs +1 -1
- package/esm2020/lib/proxy/volo/abp/localization/models.mjs +1 -1
- package/esm2020/lib/tokens/http-context.token.mjs +3 -0
- package/esm2020/lib/tokens/include-localization-resources.token.mjs +2 -2
- package/esm2020/lib/tokens/index.mjs +2 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/abp-ng.core.mjs +35 -3
- package/fesm2015/abp-ng.core.mjs.map +1 -1
- package/fesm2020/abp-ng.core.mjs +34 -2
- package/fesm2020/abp-ng.core.mjs.map +1 -1
- package/lib/clients/http.client.d.ts +11 -0
- package/lib/clients/index.d.ts +1 -0
- package/lib/providers/include-localization-resources.provider.d.ts +1 -1
- package/lib/proxy/volo/abp/http/modeling/models.d.ts +1 -1
- package/lib/proxy/volo/abp/localization/models.d.ts +1 -0
- package/lib/tokens/http-context.token.d.ts +2 -0
- package/lib/tokens/include-localization-resources.token.d.ts +1 -1
- package/lib/tokens/index.d.ts +1 -0
- package/package.json +2 -2
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { HttpClient, HttpRequest } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ExternalHttpClient extends HttpClient {
|
|
5
|
+
#private;
|
|
6
|
+
request(first: string | HttpRequest<any>, url?: string, options?: RequestOptions): Observable<any>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExternalHttpClient, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ExternalHttpClient>;
|
|
9
|
+
}
|
|
10
|
+
declare type RequestOptions = Parameters<HttpClient['request']>[2];
|
|
11
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './http.client';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Provider } from
|
|
1
|
+
import { Provider } from '@angular/core';
|
|
2
2
|
export declare const IncludeLocalizationResourcesProvider: Provider;
|
|
@@ -21,7 +21,7 @@ export interface ControllerApiDescriptionModel {
|
|
|
21
21
|
controllerName?: string;
|
|
22
22
|
controllerGroupName?: string;
|
|
23
23
|
isRemoteService: boolean;
|
|
24
|
-
|
|
24
|
+
isIntegrationService: boolean;
|
|
25
25
|
apiVersion?: string;
|
|
26
26
|
type?: string;
|
|
27
27
|
interfaces: ControllerInterfaceApiDescriptionModel[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { InjectionToken } from
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
2
|
export declare const INCUDE_LOCALIZATION_RESOURCES_TOKEN: InjectionToken<boolean>;
|
package/lib/tokens/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abp/ng.core",
|
|
3
|
-
"version": "7.0.1",
|
|
3
|
+
"version": "7.1.0-rc.1",
|
|
4
4
|
"homepage": "https://abp.io",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/abpframework/abp.git"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@abp/utils": "~7.0.1",
|
|
10
|
+
"@abp/utils": "~7.1.0-rc.1",
|
|
11
11
|
"angular-oauth2-oidc": "^15.0.1",
|
|
12
12
|
"just-clone": "^6.1.1",
|
|
13
13
|
"just-compare": "^1.4.0",
|
package/public-api.d.ts
CHANGED