@saritasa/crm-delmar-core-sdk 0.1.43 → 0.1.45
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/jira-client-api.service.d.ts +4 -4
- package/api/jira-client-api.serviceInterface.d.ts +2 -2
- package/api/jira-sync-issues-api.serviceInterface.d.ts +3 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +74 -11
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/jira-sync-issue.dto.d.ts +25 -0
- package/model/jira-sync-issues-list-date-gte-error-component.dto.d.ts +26 -0
- package/model/jira-sync-issues-list-date-lte-error-component.dto.d.ts +26 -0
- package/model/jira-sync-issues-list-date-range-error-component.dto.d.ts +27 -0
- package/model/jira-sync-issues-list-error.dto.d.ts +7 -4
- package/model/models.d.ts +4 -1
- package/model/{create-jira-project.dto.d.ts → project-creation-response.dto.d.ts} +3 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, HttpResponse, HttpEvent, HttpContext } from "@angular/common/http";
|
|
2
2
|
import { Observable } from "rxjs";
|
|
3
|
-
import {
|
|
3
|
+
import { ProjectCreationResponseDto } from "../model/project-creation-response.dto";
|
|
4
4
|
import { Configuration } from "../configuration";
|
|
5
5
|
import { BaseService } from "../api.base.service";
|
|
6
6
|
import { JiraClientApiServiceInterface, JiraClientCreateProjectCreateRequestParams } from "./jira-client-api.serviceInterface";
|
|
@@ -18,17 +18,17 @@ export declare class JiraClientApiService extends BaseService implements JiraCli
|
|
|
18
18
|
httpHeaderAccept?: "application/json";
|
|
19
19
|
context?: HttpContext;
|
|
20
20
|
transferCache?: boolean;
|
|
21
|
-
}): Observable<
|
|
21
|
+
}): Observable<ProjectCreationResponseDto>;
|
|
22
22
|
jiraClientCreateProjectCreate(requestParameters: JiraClientCreateProjectCreateRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
23
23
|
httpHeaderAccept?: "application/json";
|
|
24
24
|
context?: HttpContext;
|
|
25
25
|
transferCache?: boolean;
|
|
26
|
-
}): Observable<HttpResponse<
|
|
26
|
+
}): Observable<HttpResponse<ProjectCreationResponseDto>>;
|
|
27
27
|
jiraClientCreateProjectCreate(requestParameters: JiraClientCreateProjectCreateRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
28
28
|
httpHeaderAccept?: "application/json";
|
|
29
29
|
context?: HttpContext;
|
|
30
30
|
transferCache?: boolean;
|
|
31
|
-
}): Observable<HttpEvent<
|
|
31
|
+
}): Observable<HttpEvent<ProjectCreationResponseDto>>;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<JiraClientApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
33
33
|
static ɵprov: i0.ɵɵInjectableDeclaration<JiraClientApiService>;
|
|
34
34
|
}
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import { HttpHeaders } from "@angular/common/http";
|
|
11
11
|
import { Observable } from "rxjs";
|
|
12
|
-
import { CreateJiraProjectDto } from "../model/models";
|
|
13
12
|
import { CreateJiraProjectRequestDto } from "../model/models";
|
|
13
|
+
import { ProjectCreationResponseDto } from "../model/models";
|
|
14
14
|
import { Configuration } from "../configuration";
|
|
15
15
|
export interface JiraClientCreateProjectCreateRequestParams {
|
|
16
16
|
createJiraProjectRequestDto: CreateJiraProjectRequestDto;
|
|
@@ -23,5 +23,5 @@ export interface JiraClientApiServiceInterface {
|
|
|
23
23
|
* Create new project in jira.
|
|
24
24
|
* @param requestParameters
|
|
25
25
|
*/
|
|
26
|
-
jiraClientCreateProjectCreate(requestParameters: JiraClientCreateProjectCreateRequestParams, extraHttpRequestParams?: any): Observable<
|
|
26
|
+
jiraClientCreateProjectCreate(requestParameters: JiraClientCreateProjectCreateRequestParams, extraHttpRequestParams?: any): Observable<ProjectCreationResponseDto>;
|
|
27
27
|
}
|
|
@@ -15,6 +15,9 @@ import { Configuration } from "../configuration";
|
|
|
15
15
|
export interface JiraSyncIssuesListRequestParams {
|
|
16
16
|
compareTask?: number;
|
|
17
17
|
compareTaskIn?: Array<number>;
|
|
18
|
+
dateGte?: string;
|
|
19
|
+
dateLte?: string;
|
|
20
|
+
dateRange?: Array<string>;
|
|
18
21
|
id?: number;
|
|
19
22
|
idIn?: Array<number>;
|
|
20
23
|
instance?: number;
|