@saritasa/crm-delmar-core-sdk 0.1.44 → 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/fesm2022/saritasa-crm-delmar-core-sdk.mjs +10 -10
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +1 -1
- package/model/{create-jira-project.dto.d.ts → project-creation-response.dto.d.ts} +3 -5
- package/package.json +1 -1
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
|
}
|
|
@@ -24977,16 +24977,6 @@ var ConfigEnumDto;
|
|
|
24977
24977
|
* Do not edit the class manually.
|
|
24978
24978
|
*/
|
|
24979
24979
|
|
|
24980
|
-
/**
|
|
24981
|
-
* Delmar Api
|
|
24982
|
-
*
|
|
24983
|
-
*
|
|
24984
|
-
*
|
|
24985
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
24986
|
-
* https://openapi-generator.tech
|
|
24987
|
-
* Do not edit the class manually.
|
|
24988
|
-
*/
|
|
24989
|
-
|
|
24990
24980
|
/**
|
|
24991
24981
|
* Delmar Api
|
|
24992
24982
|
*
|
|
@@ -33530,6 +33520,16 @@ var ProfileUpdateUpdatedByErrorComponentDtoCodeEnum;
|
|
|
33530
33520
|
* Do not edit the class manually.
|
|
33531
33521
|
*/
|
|
33532
33522
|
|
|
33523
|
+
/**
|
|
33524
|
+
* Delmar Api
|
|
33525
|
+
*
|
|
33526
|
+
*
|
|
33527
|
+
*
|
|
33528
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
33529
|
+
* https://openapi-generator.tech
|
|
33530
|
+
* Do not edit the class manually.
|
|
33531
|
+
*/
|
|
33532
|
+
|
|
33533
33533
|
/**
|
|
33534
33534
|
* Delmar Api
|
|
33535
33535
|
*
|