@indigina/wms-api 0.0.36 → 0.0.37
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 +35 -27
- package/fesm2022/indigina-wms-api.mjs +23 -42
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/model/applicationSetting.d.ts +0 -1
- package/model/commandStatusResult.d.ts +0 -1
- package/model/countingSummary.d.ts +0 -1
- package/model/currentUser.d.ts +0 -1
- package/model/dispatchSummary.d.ts +0 -1
- package/model/embedReport.d.ts +0 -1
- package/model/embedTokenDto.d.ts +0 -1
- package/model/failures.d.ts +0 -1
- package/model/group.d.ts +0 -1
- package/model/modelError.d.ts +0 -1
- package/model/receivingSummary.d.ts +0 -1
- package/model/replenishmentSummary.d.ts +0 -1
- package/model/report.d.ts +0 -1
- package/model/setNewFeaturesVisibilityCommand.d.ts +0 -1
- package/model/summaryDashboardReports.d.ts +0 -1
- package/model/userApplication.d.ts +0 -1
- package/model/userApplications.d.ts +0 -1
- package/model/userPermissions.d.ts +0 -1
- package/package.json +2 -4
- package/esm2022/api/analytics.service.mjs +0 -570
- package/esm2022/api/api.mjs +0 -14
- package/esm2022/api/dcs.service.mjs +0 -274
- package/esm2022/api/health.service.mjs +0 -143
- package/esm2022/api/permissions.service.mjs +0 -142
- package/esm2022/api/summary.service.mjs +0 -142
- package/esm2022/api/user.service.mjs +0 -286
- package/esm2022/api.module.mjs +0 -40
- package/esm2022/configuration.mjs +0 -121
- package/esm2022/encoder.mjs +0 -19
- package/esm2022/index.mjs +0 -7
- package/esm2022/indigina-wms-api.mjs +0 -5
- package/esm2022/model/applicationSetting.mjs +0 -12
- package/esm2022/model/commandStatusResult.mjs +0 -12
- package/esm2022/model/countingSummary.mjs +0 -12
- package/esm2022/model/currentUser.mjs +0 -12
- package/esm2022/model/dispatchSummary.mjs +0 -12
- package/esm2022/model/embedReport.mjs +0 -2
- package/esm2022/model/embedTokenDto.mjs +0 -12
- package/esm2022/model/failures.mjs +0 -12
- package/esm2022/model/group.mjs +0 -2
- package/esm2022/model/modelError.mjs +0 -2
- package/esm2022/model/models.mjs +0 -19
- package/esm2022/model/receivingSummary.mjs +0 -12
- package/esm2022/model/replenishmentSummary.mjs +0 -12
- package/esm2022/model/report.mjs +0 -12
- package/esm2022/model/setNewFeaturesVisibilityCommand.mjs +0 -12
- package/esm2022/model/summaryDashboardReports.mjs +0 -2
- package/esm2022/model/userApplication.mjs +0 -12
- package/esm2022/model/userApplications.mjs +0 -2
- package/esm2022/model/userPermissions.mjs +0 -12
- package/esm2022/param.mjs +0 -2
- package/esm2022/variables.mjs +0 -9
package/README.md
CHANGED
|
@@ -1,32 +1,35 @@
|
|
|
1
|
-
|
|
1
|
+
# @indigina/wms-api@0.0.37
|
|
2
|
+
|
|
3
|
+
WMS API Client for Angular applications
|
|
2
4
|
|
|
3
5
|
The version of the OpenAPI document: v1
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
## Building
|
|
6
8
|
|
|
7
9
|
To install the required dependencies and to build the typescript sources run:
|
|
8
|
-
|
|
10
|
+
|
|
11
|
+
```console
|
|
9
12
|
npm install
|
|
10
13
|
npm run build
|
|
11
14
|
```
|
|
12
15
|
|
|
13
|
-
|
|
16
|
+
## Publishing
|
|
14
17
|
|
|
15
|
-
First build the package then run
|
|
18
|
+
First build the package then run `npm publish dist` (don't forget to specify the `dist` folder!)
|
|
16
19
|
|
|
17
|
-
|
|
20
|
+
## Consuming
|
|
18
21
|
|
|
19
22
|
Navigate to the folder of your consuming project and run one of next commands.
|
|
20
23
|
|
|
21
24
|
_published:_
|
|
22
25
|
|
|
23
|
-
```
|
|
24
|
-
npm install @indigina/wms-api@0.0.
|
|
26
|
+
```console
|
|
27
|
+
npm install @indigina/wms-api@0.0.37 --save
|
|
25
28
|
```
|
|
26
29
|
|
|
27
30
|
_without publishing (not recommended):_
|
|
28
31
|
|
|
29
|
-
```
|
|
32
|
+
```console
|
|
30
33
|
npm install PATH_TO_GENERATED_PACKAGE/dist.tgz --save
|
|
31
34
|
```
|
|
32
35
|
|
|
@@ -35,26 +38,26 @@ _It's important to take the tgz file, otherwise you'll get trouble with links on
|
|
|
35
38
|
_using `npm link`:_
|
|
36
39
|
|
|
37
40
|
In PATH_TO_GENERATED_PACKAGE/dist:
|
|
38
|
-
|
|
41
|
+
|
|
42
|
+
```console
|
|
39
43
|
npm link
|
|
40
44
|
```
|
|
41
45
|
|
|
42
46
|
In your project:
|
|
43
|
-
|
|
47
|
+
|
|
48
|
+
```console
|
|
44
49
|
npm link @indigina/wms-api
|
|
45
50
|
```
|
|
46
51
|
|
|
47
52
|
__Note for Windows users:__ The Angular CLI has troubles to use linked npm packages.
|
|
48
|
-
Please refer to this issue https://github.com/angular/angular-cli/issues/8284 for a solution / workaround.
|
|
53
|
+
Please refer to this issue <https://github.com/angular/angular-cli/issues/8284> for a solution / workaround.
|
|
49
54
|
Published packages are not effected by this issue.
|
|
50
55
|
|
|
51
|
-
|
|
52
|
-
#### General usage
|
|
56
|
+
### General usage
|
|
53
57
|
|
|
54
58
|
In your Angular project:
|
|
55
59
|
|
|
56
|
-
|
|
57
|
-
```
|
|
60
|
+
```typescript
|
|
58
61
|
// without configuring providers
|
|
59
62
|
import { ApiModule } from '@indigina/wms-api';
|
|
60
63
|
import { HttpClientModule } from '@angular/common/http';
|
|
@@ -73,7 +76,7 @@ import { HttpClientModule } from '@angular/common/http';
|
|
|
73
76
|
export class AppModule {}
|
|
74
77
|
```
|
|
75
78
|
|
|
76
|
-
```
|
|
79
|
+
```typescript
|
|
77
80
|
// configuring providers
|
|
78
81
|
import { ApiModule, Configuration, ConfigurationParameters } from '@indigina/wms-api';
|
|
79
82
|
|
|
@@ -93,7 +96,7 @@ export function apiConfigFactory (): Configuration {
|
|
|
93
96
|
export class AppModule {}
|
|
94
97
|
```
|
|
95
98
|
|
|
96
|
-
```
|
|
99
|
+
```typescript
|
|
97
100
|
// configuring providers with an authentication service that manages your access tokens
|
|
98
101
|
import { ApiModule, Configuration } from '@indigina/wms-api';
|
|
99
102
|
|
|
@@ -118,7 +121,7 @@ import { ApiModule, Configuration } from '@indigina/wms-api';
|
|
|
118
121
|
export class AppModule {}
|
|
119
122
|
```
|
|
120
123
|
|
|
121
|
-
```
|
|
124
|
+
```typescript
|
|
122
125
|
import { DefaultApi } from '@indigina/wms-api';
|
|
123
126
|
|
|
124
127
|
export class AppComponent {
|
|
@@ -129,11 +132,13 @@ export class AppComponent {
|
|
|
129
132
|
Note: The ApiModule is restricted to being instantiated once app wide.
|
|
130
133
|
This is to ensure that all services are treated as singletons.
|
|
131
134
|
|
|
132
|
-
|
|
135
|
+
### Using multiple OpenAPI files / APIs / ApiModules
|
|
136
|
+
|
|
133
137
|
In order to use multiple `ApiModules` generated from different OpenAPI files,
|
|
134
138
|
you can create an alias name when importing the modules
|
|
135
139
|
in order to avoid naming conflicts:
|
|
136
|
-
|
|
140
|
+
|
|
141
|
+
```typescript
|
|
137
142
|
import { ApiModule } from 'my-api-path';
|
|
138
143
|
import { ApiModule as OtherApiModule } from 'my-other-api-path';
|
|
139
144
|
import { HttpClientModule } from '@angular/common/http';
|
|
@@ -152,20 +157,21 @@ export class AppModule {
|
|
|
152
157
|
}
|
|
153
158
|
```
|
|
154
159
|
|
|
155
|
-
|
|
156
160
|
### Set service base path
|
|
161
|
+
|
|
157
162
|
If different than the generated base path, during app bootstrap, you can provide the base path to your service.
|
|
158
163
|
|
|
159
|
-
```
|
|
164
|
+
```typescript
|
|
160
165
|
import { BASE_PATH } from '@indigina/wms-api';
|
|
161
166
|
|
|
162
167
|
bootstrap(AppComponent, [
|
|
163
168
|
{ provide: BASE_PATH, useValue: 'https://your-web-service.com' },
|
|
164
169
|
]);
|
|
165
170
|
```
|
|
171
|
+
|
|
166
172
|
or
|
|
167
173
|
|
|
168
|
-
```
|
|
174
|
+
```typescript
|
|
169
175
|
import { BASE_PATH } from '@indigina/wms-api';
|
|
170
176
|
|
|
171
177
|
@NgModule({
|
|
@@ -177,11 +183,11 @@ import { BASE_PATH } from '@indigina/wms-api';
|
|
|
177
183
|
export class AppModule {}
|
|
178
184
|
```
|
|
179
185
|
|
|
186
|
+
### Using @angular/cli
|
|
180
187
|
|
|
181
|
-
#### Using @angular/cli
|
|
182
188
|
First extend your `src/environments/*.ts` files by adding the corresponding base path:
|
|
183
189
|
|
|
184
|
-
```
|
|
190
|
+
```typescript
|
|
185
191
|
export const environment = {
|
|
186
192
|
production: false,
|
|
187
193
|
API_BASE_PATH: 'http://127.0.0.1:8080'
|
|
@@ -189,7 +195,8 @@ export const environment = {
|
|
|
189
195
|
```
|
|
190
196
|
|
|
191
197
|
In the src/app/app.module.ts:
|
|
192
|
-
|
|
198
|
+
|
|
199
|
+
```typescript
|
|
193
200
|
import { BASE_PATH } from '@indigina/wms-api';
|
|
194
201
|
import { environment } from '../environments/environment';
|
|
195
202
|
|
|
@@ -217,6 +224,7 @@ pass an arrow-function or method-reference to the `encodeParam` property of the
|
|
|
217
224
|
(see [General Usage](#general-usage) above).
|
|
218
225
|
|
|
219
226
|
Example value for use in your Configuration-Provider:
|
|
227
|
+
|
|
220
228
|
```typescript
|
|
221
229
|
new Configuration({
|
|
222
230
|
encodeParam: (param: Param) => myFancyParamEncoder(param),
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken,
|
|
2
|
+
import { InjectionToken, Optional, Inject, Injectable, SkipSelf, NgModule } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common/http';
|
|
4
4
|
import { HttpHeaders, HttpContext, HttpParams } from '@angular/common/http';
|
|
5
5
|
|
|
@@ -153,7 +153,6 @@ class Configuration {
|
|
|
153
153
|
|
|
154
154
|
/**
|
|
155
155
|
* Wms.API.Client
|
|
156
|
-
* WMS API Client for Angular applications
|
|
157
156
|
*
|
|
158
157
|
*
|
|
159
158
|
*
|
|
@@ -695,10 +694,10 @@ class AnalyticsService {
|
|
|
695
694
|
reportProgress: reportProgress
|
|
696
695
|
});
|
|
697
696
|
}
|
|
698
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
699
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
697
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AnalyticsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
698
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AnalyticsService, providedIn: 'root' });
|
|
700
699
|
}
|
|
701
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
700
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AnalyticsService, decorators: [{
|
|
702
701
|
type: Injectable,
|
|
703
702
|
args: [{
|
|
704
703
|
providedIn: 'root'
|
|
@@ -714,7 +713,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImpor
|
|
|
714
713
|
|
|
715
714
|
/**
|
|
716
715
|
* Wms.API.Client
|
|
717
|
-
* WMS API Client for Angular applications
|
|
718
716
|
*
|
|
719
717
|
*
|
|
720
718
|
*
|
|
@@ -960,10 +958,10 @@ class DcsService {
|
|
|
960
958
|
reportProgress: reportProgress
|
|
961
959
|
});
|
|
962
960
|
}
|
|
963
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
964
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
961
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DcsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
962
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DcsService, providedIn: 'root' });
|
|
965
963
|
}
|
|
966
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
964
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DcsService, decorators: [{
|
|
967
965
|
type: Injectable,
|
|
968
966
|
args: [{
|
|
969
967
|
providedIn: 'root'
|
|
@@ -979,7 +977,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImpor
|
|
|
979
977
|
|
|
980
978
|
/**
|
|
981
979
|
* Wms.API.Client
|
|
982
|
-
* WMS API Client for Angular applications
|
|
983
980
|
*
|
|
984
981
|
*
|
|
985
982
|
*
|
|
@@ -1094,10 +1091,10 @@ class HealthService {
|
|
|
1094
1091
|
reportProgress: reportProgress
|
|
1095
1092
|
});
|
|
1096
1093
|
}
|
|
1097
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1098
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1094
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: HealthService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1095
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: HealthService, providedIn: 'root' });
|
|
1099
1096
|
}
|
|
1100
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1097
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: HealthService, decorators: [{
|
|
1101
1098
|
type: Injectable,
|
|
1102
1099
|
args: [{
|
|
1103
1100
|
providedIn: 'root'
|
|
@@ -1113,7 +1110,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImpor
|
|
|
1113
1110
|
|
|
1114
1111
|
/**
|
|
1115
1112
|
* Wms.API.Client
|
|
1116
|
-
* WMS API Client for Angular applications
|
|
1117
1113
|
*
|
|
1118
1114
|
*
|
|
1119
1115
|
*
|
|
@@ -1227,10 +1223,10 @@ class PermissionsService {
|
|
|
1227
1223
|
reportProgress: reportProgress
|
|
1228
1224
|
});
|
|
1229
1225
|
}
|
|
1230
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1231
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1226
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PermissionsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1227
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PermissionsService, providedIn: 'root' });
|
|
1232
1228
|
}
|
|
1233
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1229
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PermissionsService, decorators: [{
|
|
1234
1230
|
type: Injectable,
|
|
1235
1231
|
args: [{
|
|
1236
1232
|
providedIn: 'root'
|
|
@@ -1246,7 +1242,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImpor
|
|
|
1246
1242
|
|
|
1247
1243
|
/**
|
|
1248
1244
|
* Wms.API.Client
|
|
1249
|
-
* WMS API Client for Angular applications
|
|
1250
1245
|
*
|
|
1251
1246
|
*
|
|
1252
1247
|
*
|
|
@@ -1360,10 +1355,10 @@ class SummaryService {
|
|
|
1360
1355
|
reportProgress: reportProgress
|
|
1361
1356
|
});
|
|
1362
1357
|
}
|
|
1363
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1364
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1358
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SummaryService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1359
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SummaryService, providedIn: 'root' });
|
|
1365
1360
|
}
|
|
1366
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SummaryService, decorators: [{
|
|
1367
1362
|
type: Injectable,
|
|
1368
1363
|
args: [{
|
|
1369
1364
|
providedIn: 'root'
|
|
@@ -1379,7 +1374,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImpor
|
|
|
1379
1374
|
|
|
1380
1375
|
/**
|
|
1381
1376
|
* Wms.API.Client
|
|
1382
|
-
* WMS API Client for Angular applications
|
|
1383
1377
|
*
|
|
1384
1378
|
*
|
|
1385
1379
|
*
|
|
@@ -1637,10 +1631,10 @@ class UserService {
|
|
|
1637
1631
|
reportProgress: reportProgress
|
|
1638
1632
|
});
|
|
1639
1633
|
}
|
|
1640
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1641
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1634
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: UserService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1635
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: UserService, providedIn: 'root' });
|
|
1642
1636
|
}
|
|
1643
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1637
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: UserService, decorators: [{
|
|
1644
1638
|
type: Injectable,
|
|
1645
1639
|
args: [{
|
|
1646
1640
|
providedIn: 'root'
|
|
@@ -1658,7 +1652,6 @@ const APIS = [AnalyticsService, DcsService, HealthService, PermissionsService, S
|
|
|
1658
1652
|
|
|
1659
1653
|
/**
|
|
1660
1654
|
* Wms.API.Client
|
|
1661
|
-
* WMS API Client for Angular applications
|
|
1662
1655
|
*
|
|
1663
1656
|
*
|
|
1664
1657
|
*
|
|
@@ -1669,7 +1662,6 @@ const APIS = [AnalyticsService, DcsService, HealthService, PermissionsService, S
|
|
|
1669
1662
|
|
|
1670
1663
|
/**
|
|
1671
1664
|
* Wms.API.Client
|
|
1672
|
-
* WMS API Client for Angular applications
|
|
1673
1665
|
*
|
|
1674
1666
|
*
|
|
1675
1667
|
*
|
|
@@ -1680,7 +1672,6 @@ const APIS = [AnalyticsService, DcsService, HealthService, PermissionsService, S
|
|
|
1680
1672
|
|
|
1681
1673
|
/**
|
|
1682
1674
|
* Wms.API.Client
|
|
1683
|
-
* WMS API Client for Angular applications
|
|
1684
1675
|
*
|
|
1685
1676
|
*
|
|
1686
1677
|
*
|
|
@@ -1691,7 +1682,6 @@ const APIS = [AnalyticsService, DcsService, HealthService, PermissionsService, S
|
|
|
1691
1682
|
|
|
1692
1683
|
/**
|
|
1693
1684
|
* Wms.API.Client
|
|
1694
|
-
* WMS API Client for Angular applications
|
|
1695
1685
|
*
|
|
1696
1686
|
*
|
|
1697
1687
|
*
|
|
@@ -1702,7 +1692,6 @@ const APIS = [AnalyticsService, DcsService, HealthService, PermissionsService, S
|
|
|
1702
1692
|
|
|
1703
1693
|
/**
|
|
1704
1694
|
* Wms.API.Client
|
|
1705
|
-
* WMS API Client for Angular applications
|
|
1706
1695
|
*
|
|
1707
1696
|
*
|
|
1708
1697
|
*
|
|
@@ -1713,7 +1702,6 @@ const APIS = [AnalyticsService, DcsService, HealthService, PermissionsService, S
|
|
|
1713
1702
|
|
|
1714
1703
|
/**
|
|
1715
1704
|
* Wms.API.Client
|
|
1716
|
-
* WMS API Client for Angular applications
|
|
1717
1705
|
*
|
|
1718
1706
|
*
|
|
1719
1707
|
*
|
|
@@ -1724,7 +1712,6 @@ const APIS = [AnalyticsService, DcsService, HealthService, PermissionsService, S
|
|
|
1724
1712
|
|
|
1725
1713
|
/**
|
|
1726
1714
|
* Wms.API.Client
|
|
1727
|
-
* WMS API Client for Angular applications
|
|
1728
1715
|
*
|
|
1729
1716
|
*
|
|
1730
1717
|
*
|
|
@@ -1735,7 +1722,6 @@ const APIS = [AnalyticsService, DcsService, HealthService, PermissionsService, S
|
|
|
1735
1722
|
|
|
1736
1723
|
/**
|
|
1737
1724
|
* Wms.API.Client
|
|
1738
|
-
* WMS API Client for Angular applications
|
|
1739
1725
|
*
|
|
1740
1726
|
*
|
|
1741
1727
|
*
|
|
@@ -1746,7 +1732,6 @@ const APIS = [AnalyticsService, DcsService, HealthService, PermissionsService, S
|
|
|
1746
1732
|
|
|
1747
1733
|
/**
|
|
1748
1734
|
* Wms.API.Client
|
|
1749
|
-
* WMS API Client for Angular applications
|
|
1750
1735
|
*
|
|
1751
1736
|
*
|
|
1752
1737
|
*
|
|
@@ -1757,7 +1742,6 @@ const APIS = [AnalyticsService, DcsService, HealthService, PermissionsService, S
|
|
|
1757
1742
|
|
|
1758
1743
|
/**
|
|
1759
1744
|
* Wms.API.Client
|
|
1760
|
-
* WMS API Client for Angular applications
|
|
1761
1745
|
*
|
|
1762
1746
|
*
|
|
1763
1747
|
*
|
|
@@ -1768,7 +1752,6 @@ const APIS = [AnalyticsService, DcsService, HealthService, PermissionsService, S
|
|
|
1768
1752
|
|
|
1769
1753
|
/**
|
|
1770
1754
|
* Wms.API.Client
|
|
1771
|
-
* WMS API Client for Angular applications
|
|
1772
1755
|
*
|
|
1773
1756
|
*
|
|
1774
1757
|
*
|
|
@@ -1779,7 +1762,6 @@ const APIS = [AnalyticsService, DcsService, HealthService, PermissionsService, S
|
|
|
1779
1762
|
|
|
1780
1763
|
/**
|
|
1781
1764
|
* Wms.API.Client
|
|
1782
|
-
* WMS API Client for Angular applications
|
|
1783
1765
|
*
|
|
1784
1766
|
*
|
|
1785
1767
|
*
|
|
@@ -1790,7 +1772,6 @@ const APIS = [AnalyticsService, DcsService, HealthService, PermissionsService, S
|
|
|
1790
1772
|
|
|
1791
1773
|
/**
|
|
1792
1774
|
* Wms.API.Client
|
|
1793
|
-
* WMS API Client for Angular applications
|
|
1794
1775
|
*
|
|
1795
1776
|
*
|
|
1796
1777
|
*
|
|
@@ -1815,11 +1796,11 @@ class ApiModule {
|
|
|
1815
1796
|
'See also https://github.com/angular/angular/issues/20575');
|
|
1816
1797
|
}
|
|
1817
1798
|
}
|
|
1818
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1819
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
1820
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
1799
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1800
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.0", ngImport: i0, type: ApiModule });
|
|
1801
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ApiModule });
|
|
1821
1802
|
}
|
|
1822
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1803
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ApiModule, decorators: [{
|
|
1823
1804
|
type: NgModule,
|
|
1824
1805
|
args: [{
|
|
1825
1806
|
imports: [],
|