@saritasa/crm-delmar-core-sdk 0.0.45 → 0.0.46
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 +2 -2
- package/api/user-periods-api.service.d.ts +22 -1
- package/api/user-periods-api.serviceInterface.d.ts +11 -0
- package/esm2022/api/branch-periods-api.service.mjs +3 -3
- package/esm2022/api/branches-api.service.mjs +3 -3
- package/esm2022/api/departments-api.service.mjs +3 -3
- package/esm2022/api/dismissal-reasons-api.service.mjs +3 -3
- package/esm2022/api/jira-client-api.service.mjs +3 -3
- package/esm2022/api/jira-instances-api.service.mjs +3 -3
- package/esm2022/api/locations-api.service.mjs +3 -3
- package/esm2022/api/notifications-api.service.mjs +3 -3
- package/esm2022/api/permission-data-api.service.mjs +3 -3
- package/esm2022/api/profile-api.service.mjs +3 -3
- package/esm2022/api/projects-api.service.mjs +3 -3
- package/esm2022/api/roles-api.service.mjs +3 -3
- package/esm2022/api/s3-api.service.mjs +3 -3
- package/esm2022/api/search-periods-api.service.mjs +3 -3
- package/esm2022/api/sso-api.service.mjs +3 -3
- package/esm2022/api/token-api.service.mjs +3 -3
- package/esm2022/api/user-capacities-api.service.mjs +3 -3
- package/esm2022/api/user-logins-api.service.mjs +3 -3
- package/esm2022/api/user-periods-api.service.mjs +77 -4
- package/esm2022/api/user-periods-api.serviceInterface.mjs +1 -1
- package/esm2022/api/user-timezone-setting-api.service.mjs +3 -3
- package/esm2022/api/user-timezones-api.service.mjs +3 -3
- package/esm2022/api/users-api.service.mjs +3 -3
- package/esm2022/api/vendors-api.service.mjs +3 -3
- package/esm2022/api/who-am-i-api.service.mjs +3 -3
- package/esm2022/api/work-types-api.service.mjs +3 -3
- package/esm2022/api.module.mjs +4 -4
- package/esm2022/model/branch-period-request.dto.mjs +1 -1
- package/esm2022/model/branch-period.dto.mjs +1 -1
- package/esm2022/model/branch-periods-create-description-error-component.dto.mjs +1 -3
- package/esm2022/model/branch-periods-update-description-error-component.dto.mjs +1 -3
- package/esm2022/model/models.mjs +7 -1
- package/esm2022/model/user-period-change-status-request.dto.mjs +2 -0
- package/esm2022/model/user-period-request.dto.mjs +1 -1
- package/esm2022/model/user-period.dto.mjs +1 -1
- package/esm2022/model/user-periods-change-status-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-periods-change-status-create-error.dto.mjs +2 -0
- package/esm2022/model/user-periods-change-status-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-change-status-create-status-error-component.dto.mjs +20 -0
- package/esm2022/model/user-periods-change-status-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/user-periods-create-description-error-component.dto.mjs +1 -3
- package/esm2022/model/user-periods-update-description-error-component.dto.mjs +1 -3
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +192 -88
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/branch-period-request.dto.d.ts +1 -1
- package/model/branch-period.dto.d.ts +1 -1
- package/model/branch-periods-create-description-error-component.dto.d.ts +1 -3
- package/model/branch-periods-update-description-error-component.dto.d.ts +1 -3
- package/model/models.d.ts +6 -0
- package/model/user-period-change-status-request.dto.d.ts +16 -0
- package/model/user-period-request.dto.d.ts +1 -1
- package/model/user-period.dto.d.ts +1 -1
- package/model/user-periods-change-status-create-error-response400.dto.d.ts +16 -0
- package/model/user-periods-change-status-create-error.dto.d.ts +16 -0
- package/model/user-periods-change-status-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/user-periods-change-status-create-status-error-component.dto.d.ts +28 -0
- package/model/user-periods-change-status-create-validation-error.dto.d.ts +15 -0
- package/model/user-periods-create-description-error-component.dto.d.ts +1 -3
- package/model/user-periods-update-description-error-component.dto.d.ts +1 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@ import { Observable } from "rxjs";
|
|
|
3
3
|
import { PaginatedUserPeriodListDto } from "../model/paginated-user-period-list.dto";
|
|
4
4
|
import { UserPeriodDto } from "../model/user-period.dto";
|
|
5
5
|
import { Configuration } from "../configuration";
|
|
6
|
-
import { UserPeriodsApiServiceInterface, UserPeriodsCreateRequestParams, UserPeriodsDestroyRequestParams, UserPeriodsListRequestParams, UserPeriodsRetrieveRequestParams, UserPeriodsUpdateRequestParams } from "./user-periods-api.serviceInterface";
|
|
6
|
+
import { UserPeriodsApiServiceInterface, UserPeriodsChangeStatusCreateRequestParams, UserPeriodsCreateRequestParams, UserPeriodsDestroyRequestParams, UserPeriodsListRequestParams, UserPeriodsRetrieveRequestParams, UserPeriodsUpdateRequestParams } from "./user-periods-api.serviceInterface";
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UserPeriodsApiService implements UserPeriodsApiServiceInterface {
|
|
9
9
|
protected httpClient: HttpClient;
|
|
@@ -14,6 +14,27 @@ export declare class UserPeriodsApiService implements UserPeriodsApiServiceInter
|
|
|
14
14
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration: Configuration);
|
|
15
15
|
private addToHttpParams;
|
|
16
16
|
private addToHttpParamsRecursive;
|
|
17
|
+
/**
|
|
18
|
+
* Change status for user period.
|
|
19
|
+
* @param requestParameters
|
|
20
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
21
|
+
* @param reportProgress flag to report request and response progress.
|
|
22
|
+
*/
|
|
23
|
+
userPeriodsChangeStatusCreate(requestParameters?: UserPeriodsChangeStatusCreateRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
24
|
+
httpHeaderAccept?: "application/json";
|
|
25
|
+
context?: HttpContext;
|
|
26
|
+
transferCache?: boolean;
|
|
27
|
+
}): Observable<UserPeriodDto>;
|
|
28
|
+
userPeriodsChangeStatusCreate(requestParameters?: UserPeriodsChangeStatusCreateRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
29
|
+
httpHeaderAccept?: "application/json";
|
|
30
|
+
context?: HttpContext;
|
|
31
|
+
transferCache?: boolean;
|
|
32
|
+
}): Observable<HttpResponse<UserPeriodDto>>;
|
|
33
|
+
userPeriodsChangeStatusCreate(requestParameters?: UserPeriodsChangeStatusCreateRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
34
|
+
httpHeaderAccept?: "application/json";
|
|
35
|
+
context?: HttpContext;
|
|
36
|
+
transferCache?: boolean;
|
|
37
|
+
}): Observable<HttpEvent<UserPeriodDto>>;
|
|
17
38
|
/**
|
|
18
39
|
* Api viewset for UserPeriod model.
|
|
19
40
|
* @param requestParameters
|
|
@@ -10,9 +10,14 @@
|
|
|
10
10
|
import { HttpHeaders } from "@angular/common/http";
|
|
11
11
|
import { Observable } from "rxjs";
|
|
12
12
|
import { PaginatedUserPeriodListDto } from "../model/models";
|
|
13
|
+
import { UserPeriodChangeStatusRequestDto } from "../model/models";
|
|
13
14
|
import { UserPeriodDto } from "../model/models";
|
|
14
15
|
import { UserPeriodRequestDto } from "../model/models";
|
|
15
16
|
import { Configuration } from "../configuration";
|
|
17
|
+
export interface UserPeriodsChangeStatusCreateRequestParams {
|
|
18
|
+
id: number;
|
|
19
|
+
userPeriodChangeStatusRequestDto: UserPeriodChangeStatusRequestDto;
|
|
20
|
+
}
|
|
16
21
|
export interface UserPeriodsCreateRequestParams {
|
|
17
22
|
userPeriodRequestDto: UserPeriodRequestDto;
|
|
18
23
|
}
|
|
@@ -49,6 +54,12 @@ export interface UserPeriodsUpdateRequestParams {
|
|
|
49
54
|
export interface UserPeriodsApiServiceInterface {
|
|
50
55
|
defaultHeaders: HttpHeaders;
|
|
51
56
|
configuration: Configuration;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* Change status for user period.
|
|
60
|
+
* @param requestParameters
|
|
61
|
+
*/
|
|
62
|
+
userPeriodsChangeStatusCreate(requestParameters: UserPeriodsChangeStatusCreateRequestParams, extraHttpRequestParams?: any): Observable<UserPeriodDto>;
|
|
52
63
|
/**
|
|
53
64
|
*
|
|
54
65
|
* Api viewset for UserPeriod model.
|
|
@@ -405,10 +405,10 @@ export class BranchPeriodsApiService {
|
|
|
405
405
|
reportProgress: reportProgress,
|
|
406
406
|
});
|
|
407
407
|
}
|
|
408
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
409
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
408
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BranchPeriodsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
409
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BranchPeriodsApiService, providedIn: "root" });
|
|
410
410
|
}
|
|
411
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
411
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BranchPeriodsApiService, decorators: [{
|
|
412
412
|
type: Injectable,
|
|
413
413
|
args: [{
|
|
414
414
|
providedIn: "root",
|
|
@@ -526,10 +526,10 @@ export class BranchesApiService {
|
|
|
526
526
|
reportProgress: reportProgress,
|
|
527
527
|
});
|
|
528
528
|
}
|
|
529
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
530
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
529
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BranchesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
530
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BranchesApiService, providedIn: "root" });
|
|
531
531
|
}
|
|
532
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
532
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BranchesApiService, decorators: [{
|
|
533
533
|
type: Injectable,
|
|
534
534
|
args: [{
|
|
535
535
|
providedIn: "root",
|
|
@@ -427,10 +427,10 @@ export class DepartmentsApiService {
|
|
|
427
427
|
reportProgress: reportProgress,
|
|
428
428
|
});
|
|
429
429
|
}
|
|
430
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
431
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
430
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DepartmentsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
431
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DepartmentsApiService, providedIn: "root" });
|
|
432
432
|
}
|
|
433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DepartmentsApiService, decorators: [{
|
|
434
434
|
type: Injectable,
|
|
435
435
|
args: [{
|
|
436
436
|
providedIn: "root",
|
|
@@ -429,10 +429,10 @@ export class DismissalReasonsApiService {
|
|
|
429
429
|
reportProgress: reportProgress,
|
|
430
430
|
});
|
|
431
431
|
}
|
|
432
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
433
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
432
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DismissalReasonsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
433
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DismissalReasonsApiService, providedIn: "root" });
|
|
434
434
|
}
|
|
435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DismissalReasonsApiService, decorators: [{
|
|
436
436
|
type: Injectable,
|
|
437
437
|
args: [{
|
|
438
438
|
providedIn: "root",
|
|
@@ -147,10 +147,10 @@ export class JiraClientApiService {
|
|
|
147
147
|
reportProgress: reportProgress,
|
|
148
148
|
});
|
|
149
149
|
}
|
|
150
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
151
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
150
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JiraClientApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
151
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JiraClientApiService, providedIn: "root" });
|
|
152
152
|
}
|
|
153
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
153
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JiraClientApiService, decorators: [{
|
|
154
154
|
type: Injectable,
|
|
155
155
|
args: [{
|
|
156
156
|
providedIn: "root",
|
|
@@ -206,10 +206,10 @@ export class JiraInstancesApiService {
|
|
|
206
206
|
reportProgress: reportProgress,
|
|
207
207
|
});
|
|
208
208
|
}
|
|
209
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
210
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
209
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JiraInstancesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
210
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JiraInstancesApiService, providedIn: "root" });
|
|
211
211
|
}
|
|
212
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
212
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JiraInstancesApiService, decorators: [{
|
|
213
213
|
type: Injectable,
|
|
214
214
|
args: [{
|
|
215
215
|
providedIn: "root",
|
|
@@ -427,10 +427,10 @@ export class LocationsApiService {
|
|
|
427
427
|
reportProgress: reportProgress,
|
|
428
428
|
});
|
|
429
429
|
}
|
|
430
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
431
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
430
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LocationsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
431
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LocationsApiService, providedIn: "root" });
|
|
432
432
|
}
|
|
433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LocationsApiService, decorators: [{
|
|
434
434
|
type: Injectable,
|
|
435
435
|
args: [{
|
|
436
436
|
providedIn: "root",
|
|
@@ -429,10 +429,10 @@ export class NotificationsApiService {
|
|
|
429
429
|
reportProgress: reportProgress,
|
|
430
430
|
});
|
|
431
431
|
}
|
|
432
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
433
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
432
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
433
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationsApiService, providedIn: "root" });
|
|
434
434
|
}
|
|
435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationsApiService, decorators: [{
|
|
436
436
|
type: Injectable,
|
|
437
437
|
args: [{
|
|
438
438
|
providedIn: "root",
|
|
@@ -131,10 +131,10 @@ export class PermissionDataApiService {
|
|
|
131
131
|
reportProgress: reportProgress,
|
|
132
132
|
});
|
|
133
133
|
}
|
|
134
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
135
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
134
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PermissionDataApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
135
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PermissionDataApiService, providedIn: "root" });
|
|
136
136
|
}
|
|
137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
137
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PermissionDataApiService, decorators: [{
|
|
138
138
|
type: Injectable,
|
|
139
139
|
args: [{
|
|
140
140
|
providedIn: "root",
|
|
@@ -199,10 +199,10 @@ export class ProfileApiService {
|
|
|
199
199
|
reportProgress: reportProgress,
|
|
200
200
|
});
|
|
201
201
|
}
|
|
202
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
203
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
202
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProfileApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
203
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProfileApiService, providedIn: "root" });
|
|
204
204
|
}
|
|
205
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
205
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProfileApiService, decorators: [{
|
|
206
206
|
type: Injectable,
|
|
207
207
|
args: [{
|
|
208
208
|
providedIn: "root",
|
|
@@ -206,10 +206,10 @@ export class ProjectsApiService {
|
|
|
206
206
|
reportProgress: reportProgress,
|
|
207
207
|
});
|
|
208
208
|
}
|
|
209
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
210
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
209
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProjectsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
210
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProjectsApiService, providedIn: "root" });
|
|
211
211
|
}
|
|
212
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
212
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProjectsApiService, decorators: [{
|
|
213
213
|
type: Injectable,
|
|
214
214
|
args: [{
|
|
215
215
|
providedIn: "root",
|
|
@@ -427,10 +427,10 @@ export class RolesApiService {
|
|
|
427
427
|
reportProgress: reportProgress,
|
|
428
428
|
});
|
|
429
429
|
}
|
|
430
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
431
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
430
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RolesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
431
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RolesApiService, providedIn: "root" });
|
|
432
432
|
}
|
|
433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RolesApiService, decorators: [{
|
|
434
434
|
type: Injectable,
|
|
435
435
|
args: [{
|
|
436
436
|
providedIn: "root",
|
|
@@ -147,10 +147,10 @@ export class S3ApiService {
|
|
|
147
147
|
reportProgress: reportProgress,
|
|
148
148
|
});
|
|
149
149
|
}
|
|
150
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
151
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
150
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: S3ApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
151
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: S3ApiService, providedIn: "root" });
|
|
152
152
|
}
|
|
153
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
153
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: S3ApiService, decorators: [{
|
|
154
154
|
type: Injectable,
|
|
155
155
|
args: [{
|
|
156
156
|
providedIn: "root",
|
|
@@ -187,10 +187,10 @@ export class SearchPeriodsApiService {
|
|
|
187
187
|
reportProgress: reportProgress,
|
|
188
188
|
});
|
|
189
189
|
}
|
|
190
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
191
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
190
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SearchPeriodsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
191
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SearchPeriodsApiService, providedIn: "root" });
|
|
192
192
|
}
|
|
193
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
193
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SearchPeriodsApiService, decorators: [{
|
|
194
194
|
type: Injectable,
|
|
195
195
|
args: [{
|
|
196
196
|
providedIn: "root",
|
|
@@ -250,10 +250,10 @@ export class SsoApiService {
|
|
|
250
250
|
reportProgress: reportProgress,
|
|
251
251
|
});
|
|
252
252
|
}
|
|
253
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
254
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
253
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SsoApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
254
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SsoApiService, providedIn: "root" });
|
|
255
255
|
}
|
|
256
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
256
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SsoApiService, decorators: [{
|
|
257
257
|
type: Injectable,
|
|
258
258
|
args: [{
|
|
259
259
|
providedIn: "root",
|
|
@@ -195,10 +195,10 @@ export class TokenApiService {
|
|
|
195
195
|
reportProgress: reportProgress,
|
|
196
196
|
});
|
|
197
197
|
}
|
|
198
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
199
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
198
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TokenApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
199
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TokenApiService, providedIn: "root" });
|
|
200
200
|
}
|
|
201
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TokenApiService, decorators: [{
|
|
202
202
|
type: Injectable,
|
|
203
203
|
args: [{
|
|
204
204
|
providedIn: "root",
|
|
@@ -413,10 +413,10 @@ export class UserCapacitiesApiService {
|
|
|
413
413
|
reportProgress: reportProgress,
|
|
414
414
|
});
|
|
415
415
|
}
|
|
416
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
417
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
416
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserCapacitiesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
417
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserCapacitiesApiService, providedIn: "root" });
|
|
418
418
|
}
|
|
419
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
419
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserCapacitiesApiService, decorators: [{
|
|
420
420
|
type: Injectable,
|
|
421
421
|
args: [{
|
|
422
422
|
providedIn: "root",
|
|
@@ -326,10 +326,10 @@ export class UserLoginsApiService {
|
|
|
326
326
|
reportProgress: reportProgress,
|
|
327
327
|
});
|
|
328
328
|
}
|
|
329
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
330
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
329
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserLoginsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
330
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserLoginsApiService, providedIn: "root" });
|
|
331
331
|
}
|
|
332
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
332
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserLoginsApiService, decorators: [{
|
|
333
333
|
type: Injectable,
|
|
334
334
|
args: [{
|
|
335
335
|
providedIn: "root",
|