@indigina/myseko-api 0.0.51 → 0.0.53

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 CHANGED
@@ -1,4 +1,4 @@
1
- # @indigina/myseko-api@0.0.51
1
+ # @indigina/myseko-api@0.0.53
2
2
 
3
3
  MySeko API Client for Angular applications
4
4
 
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
24
24
  _published:_
25
25
 
26
26
  ```console
27
- npm install @indigina/myseko-api@0.0.51 --save
27
+ npm install @indigina/myseko-api@0.0.53 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -145,8 +145,8 @@ class Configuration {
145
145
  * @return True if the given MIME is JSON, false otherwise.
146
146
  */
147
147
  isJsonMime(mime) {
148
- const jsonMime = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
149
- return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
148
+ const jsonMime = /^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$/i;
149
+ return mime !== null && jsonMime.test(mime);
150
150
  }
151
151
  lookupCredential(key) {
152
152
  const value = this.credentials[key];
@@ -359,17 +359,18 @@ class BaseService {
359
359
  else if (value instanceof Date) {
360
360
  return httpParams.append(key, value.toISOString());
361
361
  }
362
- else if (Array.isArray(value)) {
363
- // Otherwise, if it's an array, add each element.
362
+ else if (Array.isArray(value) || value instanceof Set) {
363
+ // Otherwise, if it's an array or set, add each element.
364
+ const array = Array.isArray(value) ? value : Array.from(value);
364
365
  if (paramStyle === QueryParamStyle.Form) {
365
- return httpParams.set(key, value, { explode: explode, delimiter: ',' });
366
+ return httpParams.set(key, array, { explode: explode, delimiter: ',' });
366
367
  }
367
368
  else if (paramStyle === QueryParamStyle.SpaceDelimited) {
368
- return httpParams.set(key, value, { explode: explode, delimiter: ' ' });
369
+ return httpParams.set(key, array, { explode: explode, delimiter: ' ' });
369
370
  }
370
371
  else {
371
372
  // PipeDelimited
372
- return httpParams.set(key, value, { explode: explode, delimiter: '|' });
373
+ return httpParams.set(key, array, { explode: explode, delimiter: '|' });
373
374
  }
374
375
  }
375
376
  else {
@@ -445,10 +446,10 @@ class AuthService extends BaseService {
445
446
  reportProgress: reportProgress
446
447
  });
447
448
  }
448
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: AuthService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
449
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: AuthService, providedIn: 'root' });
449
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: AuthService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
450
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: AuthService, providedIn: 'root' });
450
451
  }
451
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: AuthService, decorators: [{
452
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: AuthService, decorators: [{
452
453
  type: Injectable,
453
454
  args: [{
454
455
  providedIn: 'root'
@@ -531,10 +532,10 @@ class CalendarService extends BaseService {
531
532
  reportProgress: reportProgress
532
533
  });
533
534
  }
534
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CalendarService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
535
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CalendarService, providedIn: 'root' });
535
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CalendarService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
536
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CalendarService, providedIn: 'root' });
536
537
  }
537
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CalendarService, decorators: [{
538
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CalendarService, decorators: [{
538
539
  type: Injectable,
539
540
  args: [{
540
541
  providedIn: 'root'
@@ -666,10 +667,10 @@ class DashboardService extends BaseService {
666
667
  reportProgress: reportProgress
667
668
  });
668
669
  }
669
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DashboardService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
670
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DashboardService, providedIn: 'root' });
670
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DashboardService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
671
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DashboardService, providedIn: 'root' });
671
672
  }
672
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DashboardService, decorators: [{
673
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DashboardService, decorators: [{
673
674
  type: Injectable,
674
675
  args: [{
675
676
  providedIn: 'root'
@@ -857,10 +858,10 @@ class DocumentService extends BaseService {
857
858
  reportProgress: reportProgress
858
859
  });
859
860
  }
860
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DocumentService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
861
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DocumentService, providedIn: 'root' });
861
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DocumentService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
862
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DocumentService, providedIn: 'root' });
862
863
  }
863
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DocumentService, decorators: [{
864
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DocumentService, decorators: [{
864
865
  type: Injectable,
865
866
  args: [{
866
867
  providedIn: 'root'
@@ -890,7 +891,7 @@ class ExceptionsService extends BaseService {
890
891
  super(basePath, configuration);
891
892
  this.httpClient = httpClient;
892
893
  }
893
- getShipmentExceptionKanbanCounts(columnGroup, rowGroup, rowSkip, rowTake, search, statusFilter, observe = 'body', reportProgress = false, options) {
894
+ getShipmentExceptionKanbanCounts(columnGroup, rowGroup, rowSkip, rowTake, $filter, $orderby, $select, $expand, $top, $skip, $count, observe = 'body', reportProgress = false, options) {
894
895
  if (columnGroup === null || columnGroup === undefined) {
895
896
  throw new Error('Required parameter columnGroup was null or undefined when calling getShipmentExceptionKanbanCounts.');
896
897
  }
@@ -899,8 +900,13 @@ class ExceptionsService extends BaseService {
899
900
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'RowGroup', rowGroup, QueryParamStyle.Form, true);
900
901
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'RowSkip', rowSkip, QueryParamStyle.Form, true);
901
902
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'RowTake', rowTake, QueryParamStyle.Form, true);
902
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'Search', search, QueryParamStyle.Form, true);
903
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'StatusFilter', statusFilter, QueryParamStyle.Form, true);
903
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
904
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
905
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$select', $select, QueryParamStyle.Form, true);
906
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$expand', $expand, QueryParamStyle.Form, true);
907
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
908
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
909
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$count', $count, QueryParamStyle.Form, true);
904
910
  let localVarHeaders = this.defaultHeaders;
905
911
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
906
912
  'application/json'
@@ -935,7 +941,7 @@ class ExceptionsService extends BaseService {
935
941
  reportProgress: reportProgress
936
942
  });
937
943
  }
938
- getShipmentExceptionKanbanRow(columnGroup, rowGroup, rowValue, skip, top, filter, orderBy, observe = 'body', reportProgress = false, options) {
944
+ getShipmentExceptionKanbanRow(columnGroup, rowGroup, rowValue, rowSkip, rowTake, $filter, $orderby, $select, $expand, $top, $skip, $count, observe = 'body', reportProgress = false, options) {
939
945
  if (columnGroup === null || columnGroup === undefined) {
940
946
  throw new Error('Required parameter columnGroup was null or undefined when calling getShipmentExceptionKanbanRow.');
941
947
  }
@@ -943,10 +949,15 @@ class ExceptionsService extends BaseService {
943
949
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'ColumnGroup', columnGroup, QueryParamStyle.Form, true);
944
950
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'RowGroup', rowGroup, QueryParamStyle.Form, true);
945
951
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'RowValue', rowValue, QueryParamStyle.Form, true);
946
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'Skip', skip, QueryParamStyle.Form, true);
947
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'Top', top, QueryParamStyle.Form, true);
948
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'Filter', filter, QueryParamStyle.Form, true);
949
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'OrderBy', orderBy, QueryParamStyle.Form, true);
952
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'RowSkip', rowSkip, QueryParamStyle.Form, true);
953
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'RowTake', rowTake, QueryParamStyle.Form, true);
954
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
955
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
956
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$select', $select, QueryParamStyle.Form, true);
957
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$expand', $expand, QueryParamStyle.Form, true);
958
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
959
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
960
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$count', $count, QueryParamStyle.Form, true);
950
961
  let localVarHeaders = this.defaultHeaders;
951
962
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
952
963
  'application/json'
@@ -1068,10 +1079,10 @@ class ExceptionsService extends BaseService {
1068
1079
  reportProgress: reportProgress
1069
1080
  });
1070
1081
  }
1071
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ExceptionsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1072
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ExceptionsService, providedIn: 'root' });
1082
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ExceptionsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1083
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ExceptionsService, providedIn: 'root' });
1073
1084
  }
1074
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ExceptionsService, decorators: [{
1085
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ExceptionsService, decorators: [{
1075
1086
  type: Injectable,
1076
1087
  args: [{
1077
1088
  providedIn: 'root'
@@ -1136,10 +1147,10 @@ class HealthService extends BaseService {
1136
1147
  reportProgress: reportProgress
1137
1148
  });
1138
1149
  }
1139
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: HealthService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1140
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: HealthService, providedIn: 'root' });
1150
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: HealthService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1151
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: HealthService, providedIn: 'root' });
1141
1152
  }
1142
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: HealthService, decorators: [{
1153
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: HealthService, decorators: [{
1143
1154
  type: Injectable,
1144
1155
  args: [{
1145
1156
  providedIn: 'root'
@@ -1405,10 +1416,10 @@ class SettingsService extends BaseService {
1405
1416
  reportProgress: reportProgress
1406
1417
  });
1407
1418
  }
1408
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: SettingsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1409
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: SettingsService, providedIn: 'root' });
1419
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SettingsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1420
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SettingsService, providedIn: 'root' });
1410
1421
  }
1411
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: SettingsService, decorators: [{
1422
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SettingsService, decorators: [{
1412
1423
  type: Injectable,
1413
1424
  args: [{
1414
1425
  providedIn: 'root'
@@ -1968,10 +1979,10 @@ class ShipmentService extends BaseService {
1968
1979
  reportProgress: reportProgress
1969
1980
  });
1970
1981
  }
1971
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ShipmentService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1972
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ShipmentService, providedIn: 'root' });
1982
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ShipmentService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1983
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ShipmentService, providedIn: 'root' });
1973
1984
  }
1974
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ShipmentService, decorators: [{
1985
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ShipmentService, decorators: [{
1975
1986
  type: Injectable,
1976
1987
  args: [{
1977
1988
  providedIn: 'root'
@@ -2035,10 +2046,10 @@ class UserService extends BaseService {
2035
2046
  reportProgress: reportProgress
2036
2047
  });
2037
2048
  }
2038
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UserService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2039
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UserService, providedIn: 'root' });
2049
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UserService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2050
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UserService, providedIn: 'root' });
2040
2051
  }
2041
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UserService, decorators: [{
2052
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UserService, decorators: [{
2042
2053
  type: Injectable,
2043
2054
  args: [{
2044
2055
  providedIn: 'root'
@@ -2140,10 +2151,10 @@ class UsergroupService extends BaseService {
2140
2151
  reportProgress: reportProgress
2141
2152
  });
2142
2153
  }
2143
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UsergroupService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2144
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UsergroupService, providedIn: 'root' });
2154
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UsergroupService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2155
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UsergroupService, providedIn: 'root' });
2145
2156
  }
2146
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UsergroupService, decorators: [{
2157
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UsergroupService, decorators: [{
2147
2158
  type: Injectable,
2148
2159
  args: [{
2149
2160
  providedIn: 'root'
@@ -2626,11 +2637,11 @@ class ApiModule {
2626
2637
  'See also https://github.com/angular/angular/issues/20575');
2627
2638
  }
2628
2639
  }
2629
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
2630
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.1.0", ngImport: i0, type: ApiModule });
2631
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ApiModule });
2640
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
2641
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.1.1", ngImport: i0, type: ApiModule });
2642
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ApiModule });
2632
2643
  }
2633
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ApiModule, decorators: [{
2644
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ApiModule, decorators: [{
2634
2645
  type: NgModule,
2635
2646
  args: [{
2636
2647
  imports: [],