@saritasa/crm-delmar-core-sdk 0.0.158 → 0.0.160
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/clients-api.service.d.ts +1 -22
- package/api/clients-api.serviceInterface.d.ts +0 -9
- package/esm2022/api/clients-api.service.mjs +1 -58
- package/esm2022/api/clients-api.serviceInterface.mjs +1 -1
- package/esm2022/model/models.mjs +1 -2
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +0 -57
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +0 -1
- package/package.json +1 -1
- package/esm2022/model/clients-destroy-error-response400.dto.mjs +0 -2
- package/model/clients-destroy-error-response400.dto.d.ts +0 -15
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ import { ClientMonthStatsDto } from "../model/client-month-stats.dto";
|
|
|
5
5
|
import { ClientStatsDto } from "../model/client-stats.dto";
|
|
6
6
|
import { PaginatedClientListDto } from "../model/paginated-client-list.dto";
|
|
7
7
|
import { Configuration } from "../configuration";
|
|
8
|
-
import { ClientsApiServiceInterface, ClientsCreateRequestParams,
|
|
8
|
+
import { ClientsApiServiceInterface, ClientsCreateRequestParams, ClientsListRequestParams, ClientsRetrieveRequestParams, ClientsUpdateRequestParams, ClientsWithMonthStatsRetrieveRequestParams, ClientsWithStatsRetrieveRequestParams } from "./clients-api.serviceInterface";
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class ClientsApiService implements ClientsApiServiceInterface {
|
|
11
11
|
protected httpClient: HttpClient;
|
|
@@ -37,27 +37,6 @@ export declare class ClientsApiService implements ClientsApiServiceInterface {
|
|
|
37
37
|
context?: HttpContext;
|
|
38
38
|
transferCache?: boolean;
|
|
39
39
|
}): Observable<HttpEvent<ClientDto>>;
|
|
40
|
-
/**
|
|
41
|
-
* View set API for Client model.
|
|
42
|
-
* @param requestParameters
|
|
43
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
44
|
-
* @param reportProgress flag to report request and response progress.
|
|
45
|
-
*/
|
|
46
|
-
clientsDestroy(requestParameters: ClientsDestroyRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
47
|
-
httpHeaderAccept?: "application/json";
|
|
48
|
-
context?: HttpContext;
|
|
49
|
-
transferCache?: boolean;
|
|
50
|
-
}): Observable<any>;
|
|
51
|
-
clientsDestroy(requestParameters: ClientsDestroyRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
52
|
-
httpHeaderAccept?: "application/json";
|
|
53
|
-
context?: HttpContext;
|
|
54
|
-
transferCache?: boolean;
|
|
55
|
-
}): Observable<HttpResponse<any>>;
|
|
56
|
-
clientsDestroy(requestParameters: ClientsDestroyRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
57
|
-
httpHeaderAccept?: "application/json";
|
|
58
|
-
context?: HttpContext;
|
|
59
|
-
transferCache?: boolean;
|
|
60
|
-
}): Observable<HttpEvent<any>>;
|
|
61
40
|
/**
|
|
62
41
|
* View set API for Client model.
|
|
63
42
|
* @param requestParameters
|
|
@@ -18,9 +18,6 @@ import { Configuration } from "../configuration";
|
|
|
18
18
|
export interface ClientsCreateRequestParams {
|
|
19
19
|
clientRequestDto: ClientRequestDto;
|
|
20
20
|
}
|
|
21
|
-
export interface ClientsDestroyRequestParams {
|
|
22
|
-
id: number;
|
|
23
|
-
}
|
|
24
21
|
export interface ClientsListRequestParams {
|
|
25
22
|
accountManager?: number;
|
|
26
23
|
accountManagerIn?: Array<number>;
|
|
@@ -216,12 +213,6 @@ export interface ClientsApiServiceInterface {
|
|
|
216
213
|
* @param requestParameters
|
|
217
214
|
*/
|
|
218
215
|
clientsCreate(requestParameters: ClientsCreateRequestParams, extraHttpRequestParams?: any): Observable<ClientDto>;
|
|
219
|
-
/**
|
|
220
|
-
*
|
|
221
|
-
* View set API for Client model.
|
|
222
|
-
* @param requestParameters
|
|
223
|
-
*/
|
|
224
|
-
clientsDestroy(requestParameters: ClientsDestroyRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
225
216
|
/**
|
|
226
217
|
*
|
|
227
218
|
* View set API for Client model.
|