@indigina/wms-api 0.0.49 → 0.0.51
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/api.d.ts +5 -1
- package/api/deliveries.service.d.ts +50 -11
- package/api/deliveryItems.service.d.ts +4 -3
- package/api/taskOperations.service.d.ts +128 -0
- package/api/taskUserRecords.service.d.ts +128 -0
- package/fesm2022/indigina-wms-api.mjs +908 -102
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/model/deliveries.d.ts +2 -2
- package/model/deliveryGridView.d.ts +43 -0
- package/model/deliveryItem.d.ts +4 -0
- package/model/deliveryItemView.d.ts +5 -0
- package/model/deliverySummary.d.ts +35 -0
- package/model/deliveryView.d.ts +0 -12
- package/model/deviceType.d.ts +15 -0
- package/model/models.d.ts +7 -0
- package/model/taskOperation.d.ts +15 -0
- package/model/taskOperations.d.ts +14 -0
- package/model/taskUserRecord.d.ts +23 -0
- package/model/taskUserRecords.d.ts +14 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.51
|
|
2
2
|
|
|
3
3
|
WMS 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/wms-api@0.0.
|
|
27
|
+
npm install @indigina/wms-api@0.0.51 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
package/api/api.d.ts
CHANGED
|
@@ -24,6 +24,10 @@ export * from './settings.service';
|
|
|
24
24
|
import { SettingsService } from './settings.service';
|
|
25
25
|
export * from './summary.service';
|
|
26
26
|
import { SummaryService } from './summary.service';
|
|
27
|
+
export * from './taskOperations.service';
|
|
28
|
+
import { TaskOperationsService } from './taskOperations.service';
|
|
29
|
+
export * from './taskUserRecords.service';
|
|
30
|
+
import { TaskUserRecordsService } from './taskUserRecords.service';
|
|
27
31
|
export * from './user.service';
|
|
28
32
|
import { UserService } from './user.service';
|
|
29
|
-
export declare const APIS: (typeof AnalyticsService | typeof CompaniesService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof HealthService | typeof NotesService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof SettingsService | typeof SummaryService | typeof UserService)[];
|
|
33
|
+
export declare const APIS: (typeof AnalyticsService | typeof CompaniesService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof HealthService | typeof NotesService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof SettingsService | typeof SummaryService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService)[];
|
|
@@ -2,6 +2,7 @@ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, H
|
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { Deliveries } from '../model/deliveries';
|
|
4
4
|
import { Delivery } from '../model/delivery';
|
|
5
|
+
import { DeliverySummary } from '../model/deliverySummary';
|
|
5
6
|
import { OrderStatus } from '../model/orderStatus';
|
|
6
7
|
import { Configuration } from '../configuration';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
@@ -14,6 +15,27 @@ export declare class DeliveriesService {
|
|
|
14
15
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration: Configuration);
|
|
15
16
|
private addToHttpParams;
|
|
16
17
|
private addToHttpParamsRecursive;
|
|
18
|
+
/**
|
|
19
|
+
* Confirm delivery
|
|
20
|
+
* @param id
|
|
21
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
22
|
+
* @param reportProgress flag to report request and response progress.
|
|
23
|
+
*/
|
|
24
|
+
confirmDelivery(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
25
|
+
httpHeaderAccept?: undefined;
|
|
26
|
+
context?: HttpContext;
|
|
27
|
+
transferCache?: boolean;
|
|
28
|
+
}): Observable<any>;
|
|
29
|
+
confirmDelivery(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
30
|
+
httpHeaderAccept?: undefined;
|
|
31
|
+
context?: HttpContext;
|
|
32
|
+
transferCache?: boolean;
|
|
33
|
+
}): Observable<HttpResponse<any>>;
|
|
34
|
+
confirmDelivery(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
35
|
+
httpHeaderAccept?: undefined;
|
|
36
|
+
context?: HttpContext;
|
|
37
|
+
transferCache?: boolean;
|
|
38
|
+
}): Observable<HttpEvent<any>>;
|
|
17
39
|
/**
|
|
18
40
|
* Create a specific delivery
|
|
19
41
|
* @param delivery
|
|
@@ -135,47 +157,64 @@ export declare class DeliveriesService {
|
|
|
135
157
|
/**
|
|
136
158
|
* Getting delivery by id
|
|
137
159
|
* @param id
|
|
138
|
-
* @param $skip
|
|
139
|
-
* @param $top
|
|
140
|
-
* @param $orderby
|
|
141
|
-
* @param $filter
|
|
142
|
-
* @param $search
|
|
143
160
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
144
161
|
* @param reportProgress flag to report request and response progress.
|
|
145
162
|
*/
|
|
146
|
-
getDelivery(id: string,
|
|
163
|
+
getDelivery(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
147
164
|
httpHeaderAccept?: 'application/json';
|
|
148
165
|
context?: HttpContext;
|
|
149
166
|
transferCache?: boolean;
|
|
150
167
|
}): Observable<Delivery>;
|
|
151
|
-
getDelivery(id: string,
|
|
168
|
+
getDelivery(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
152
169
|
httpHeaderAccept?: 'application/json';
|
|
153
170
|
context?: HttpContext;
|
|
154
171
|
transferCache?: boolean;
|
|
155
172
|
}): Observable<HttpResponse<Delivery>>;
|
|
156
|
-
getDelivery(id: string,
|
|
173
|
+
getDelivery(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
157
174
|
httpHeaderAccept?: 'application/json';
|
|
158
175
|
context?: HttpContext;
|
|
159
176
|
transferCache?: boolean;
|
|
160
177
|
}): Observable<HttpEvent<Delivery>>;
|
|
178
|
+
/**
|
|
179
|
+
* Getting delivery summary by id
|
|
180
|
+
* @param id
|
|
181
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
182
|
+
* @param reportProgress flag to report request and response progress.
|
|
183
|
+
*/
|
|
184
|
+
getDeliverySummary(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
185
|
+
httpHeaderAccept?: 'application/json';
|
|
186
|
+
context?: HttpContext;
|
|
187
|
+
transferCache?: boolean;
|
|
188
|
+
}): Observable<DeliverySummary>;
|
|
189
|
+
getDeliverySummary(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
190
|
+
httpHeaderAccept?: 'application/json';
|
|
191
|
+
context?: HttpContext;
|
|
192
|
+
transferCache?: boolean;
|
|
193
|
+
}): Observable<HttpResponse<DeliverySummary>>;
|
|
194
|
+
getDeliverySummary(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
195
|
+
httpHeaderAccept?: 'application/json';
|
|
196
|
+
context?: HttpContext;
|
|
197
|
+
transferCache?: boolean;
|
|
198
|
+
}): Observable<HttpEvent<DeliverySummary>>;
|
|
161
199
|
/**
|
|
162
200
|
* Update a specific delivery
|
|
163
201
|
* @param id
|
|
164
202
|
* @param delivery
|
|
203
|
+
* @param propertiesToUpdate
|
|
165
204
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
166
205
|
* @param reportProgress flag to report request and response progress.
|
|
167
206
|
*/
|
|
168
|
-
setDelivery(id: string, delivery: Delivery, observe?: 'body', reportProgress?: boolean, options?: {
|
|
207
|
+
setDelivery(id: string, delivery: Delivery, propertiesToUpdate?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
169
208
|
httpHeaderAccept?: 'application/json';
|
|
170
209
|
context?: HttpContext;
|
|
171
210
|
transferCache?: boolean;
|
|
172
211
|
}): Observable<Delivery>;
|
|
173
|
-
setDelivery(id: string, delivery: Delivery, observe?: 'response', reportProgress?: boolean, options?: {
|
|
212
|
+
setDelivery(id: string, delivery: Delivery, propertiesToUpdate?: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
174
213
|
httpHeaderAccept?: 'application/json';
|
|
175
214
|
context?: HttpContext;
|
|
176
215
|
transferCache?: boolean;
|
|
177
216
|
}): Observable<HttpResponse<Delivery>>;
|
|
178
|
-
setDelivery(id: string, delivery: Delivery, observe?: 'events', reportProgress?: boolean, options?: {
|
|
217
|
+
setDelivery(id: string, delivery: Delivery, propertiesToUpdate?: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
179
218
|
httpHeaderAccept?: 'application/json';
|
|
180
219
|
context?: HttpContext;
|
|
181
220
|
transferCache?: boolean;
|
|
@@ -85,20 +85,21 @@ export declare class DeliveryItemsService {
|
|
|
85
85
|
* Update a specific delivery Item
|
|
86
86
|
* @param id
|
|
87
87
|
* @param deliveryItem
|
|
88
|
+
* @param propertiesToUpdate
|
|
88
89
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
89
90
|
* @param reportProgress flag to report request and response progress.
|
|
90
91
|
*/
|
|
91
|
-
setDeliveryItem(id: string, deliveryItem: DeliveryItem, observe?: 'body', reportProgress?: boolean, options?: {
|
|
92
|
+
setDeliveryItem(id: string, deliveryItem: DeliveryItem, propertiesToUpdate?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
92
93
|
httpHeaderAccept?: 'application/json';
|
|
93
94
|
context?: HttpContext;
|
|
94
95
|
transferCache?: boolean;
|
|
95
96
|
}): Observable<DeliveryItem>;
|
|
96
|
-
setDeliveryItem(id: string, deliveryItem: DeliveryItem, observe?: 'response', reportProgress?: boolean, options?: {
|
|
97
|
+
setDeliveryItem(id: string, deliveryItem: DeliveryItem, propertiesToUpdate?: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
97
98
|
httpHeaderAccept?: 'application/json';
|
|
98
99
|
context?: HttpContext;
|
|
99
100
|
transferCache?: boolean;
|
|
100
101
|
}): Observable<HttpResponse<DeliveryItem>>;
|
|
101
|
-
setDeliveryItem(id: string, deliveryItem: DeliveryItem, observe?: 'events', reportProgress?: boolean, options?: {
|
|
102
|
+
setDeliveryItem(id: string, deliveryItem: DeliveryItem, propertiesToUpdate?: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
102
103
|
httpHeaderAccept?: 'application/json';
|
|
103
104
|
context?: HttpContext;
|
|
104
105
|
transferCache?: boolean;
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { TaskOperation } from '../model/taskOperation';
|
|
4
|
+
import { TaskOperations } from '../model/taskOperations';
|
|
5
|
+
import { Configuration } from '../configuration';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TaskOperationsService {
|
|
8
|
+
protected httpClient: HttpClient;
|
|
9
|
+
protected basePath: string;
|
|
10
|
+
defaultHeaders: HttpHeaders;
|
|
11
|
+
configuration: Configuration;
|
|
12
|
+
encoder: HttpParameterCodec;
|
|
13
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration: Configuration);
|
|
14
|
+
private addToHttpParams;
|
|
15
|
+
private addToHttpParamsRecursive;
|
|
16
|
+
/**
|
|
17
|
+
* Create a new task operation
|
|
18
|
+
* @param taskOperation
|
|
19
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
20
|
+
* @param reportProgress flag to report request and response progress.
|
|
21
|
+
*/
|
|
22
|
+
createTaskOperation(taskOperation: TaskOperation, observe?: 'body', reportProgress?: boolean, options?: {
|
|
23
|
+
httpHeaderAccept?: 'application/json';
|
|
24
|
+
context?: HttpContext;
|
|
25
|
+
transferCache?: boolean;
|
|
26
|
+
}): Observable<TaskOperation>;
|
|
27
|
+
createTaskOperation(taskOperation: TaskOperation, observe?: 'response', reportProgress?: boolean, options?: {
|
|
28
|
+
httpHeaderAccept?: 'application/json';
|
|
29
|
+
context?: HttpContext;
|
|
30
|
+
transferCache?: boolean;
|
|
31
|
+
}): Observable<HttpResponse<TaskOperation>>;
|
|
32
|
+
createTaskOperation(taskOperation: TaskOperation, observe?: 'events', reportProgress?: boolean, options?: {
|
|
33
|
+
httpHeaderAccept?: 'application/json';
|
|
34
|
+
context?: HttpContext;
|
|
35
|
+
transferCache?: boolean;
|
|
36
|
+
}): Observable<HttpEvent<TaskOperation>>;
|
|
37
|
+
/**
|
|
38
|
+
* Delete a task operation
|
|
39
|
+
* @param id
|
|
40
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
41
|
+
* @param reportProgress flag to report request and response progress.
|
|
42
|
+
*/
|
|
43
|
+
deleteTaskOperation(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
44
|
+
httpHeaderAccept?: undefined;
|
|
45
|
+
context?: HttpContext;
|
|
46
|
+
transferCache?: boolean;
|
|
47
|
+
}): Observable<any>;
|
|
48
|
+
deleteTaskOperation(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
49
|
+
httpHeaderAccept?: undefined;
|
|
50
|
+
context?: HttpContext;
|
|
51
|
+
transferCache?: boolean;
|
|
52
|
+
}): Observable<HttpResponse<any>>;
|
|
53
|
+
deleteTaskOperation(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
54
|
+
httpHeaderAccept?: undefined;
|
|
55
|
+
context?: HttpContext;
|
|
56
|
+
transferCache?: boolean;
|
|
57
|
+
}): Observable<HttpEvent<any>>;
|
|
58
|
+
/**
|
|
59
|
+
* Retrieve a task operation by ID
|
|
60
|
+
* @param id
|
|
61
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
62
|
+
* @param reportProgress flag to report request and response progress.
|
|
63
|
+
*/
|
|
64
|
+
getTaskOperationById(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
65
|
+
httpHeaderAccept?: 'application/json';
|
|
66
|
+
context?: HttpContext;
|
|
67
|
+
transferCache?: boolean;
|
|
68
|
+
}): Observable<TaskOperation>;
|
|
69
|
+
getTaskOperationById(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
70
|
+
httpHeaderAccept?: 'application/json';
|
|
71
|
+
context?: HttpContext;
|
|
72
|
+
transferCache?: boolean;
|
|
73
|
+
}): Observable<HttpResponse<TaskOperation>>;
|
|
74
|
+
getTaskOperationById(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
75
|
+
httpHeaderAccept?: 'application/json';
|
|
76
|
+
context?: HttpContext;
|
|
77
|
+
transferCache?: boolean;
|
|
78
|
+
}): Observable<HttpEvent<TaskOperation>>;
|
|
79
|
+
/**
|
|
80
|
+
* Getting task operations
|
|
81
|
+
* @param $skip
|
|
82
|
+
* @param $top
|
|
83
|
+
* @param $orderby
|
|
84
|
+
* @param $filter
|
|
85
|
+
* @param $search
|
|
86
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
87
|
+
* @param reportProgress flag to report request and response progress.
|
|
88
|
+
*/
|
|
89
|
+
getTaskOperations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
90
|
+
httpHeaderAccept?: 'application/json';
|
|
91
|
+
context?: HttpContext;
|
|
92
|
+
transferCache?: boolean;
|
|
93
|
+
}): Observable<TaskOperations>;
|
|
94
|
+
getTaskOperations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
95
|
+
httpHeaderAccept?: 'application/json';
|
|
96
|
+
context?: HttpContext;
|
|
97
|
+
transferCache?: boolean;
|
|
98
|
+
}): Observable<HttpResponse<TaskOperations>>;
|
|
99
|
+
getTaskOperations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
100
|
+
httpHeaderAccept?: 'application/json';
|
|
101
|
+
context?: HttpContext;
|
|
102
|
+
transferCache?: boolean;
|
|
103
|
+
}): Observable<HttpEvent<TaskOperations>>;
|
|
104
|
+
/**
|
|
105
|
+
* Update an existing task operation
|
|
106
|
+
* @param id
|
|
107
|
+
* @param taskOperation
|
|
108
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
109
|
+
* @param reportProgress flag to report request and response progress.
|
|
110
|
+
*/
|
|
111
|
+
updateTaskOperation(id: number, taskOperation: TaskOperation, observe?: 'body', reportProgress?: boolean, options?: {
|
|
112
|
+
httpHeaderAccept?: 'application/json';
|
|
113
|
+
context?: HttpContext;
|
|
114
|
+
transferCache?: boolean;
|
|
115
|
+
}): Observable<TaskOperation>;
|
|
116
|
+
updateTaskOperation(id: number, taskOperation: TaskOperation, observe?: 'response', reportProgress?: boolean, options?: {
|
|
117
|
+
httpHeaderAccept?: 'application/json';
|
|
118
|
+
context?: HttpContext;
|
|
119
|
+
transferCache?: boolean;
|
|
120
|
+
}): Observable<HttpResponse<TaskOperation>>;
|
|
121
|
+
updateTaskOperation(id: number, taskOperation: TaskOperation, observe?: 'events', reportProgress?: boolean, options?: {
|
|
122
|
+
httpHeaderAccept?: 'application/json';
|
|
123
|
+
context?: HttpContext;
|
|
124
|
+
transferCache?: boolean;
|
|
125
|
+
}): Observable<HttpEvent<TaskOperation>>;
|
|
126
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TaskOperationsService, [null, { optional: true; }, { optional: true; }]>;
|
|
127
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TaskOperationsService>;
|
|
128
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { TaskUserRecord } from '../model/taskUserRecord';
|
|
4
|
+
import { TaskUserRecords } from '../model/taskUserRecords';
|
|
5
|
+
import { Configuration } from '../configuration';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TaskUserRecordsService {
|
|
8
|
+
protected httpClient: HttpClient;
|
|
9
|
+
protected basePath: string;
|
|
10
|
+
defaultHeaders: HttpHeaders;
|
|
11
|
+
configuration: Configuration;
|
|
12
|
+
encoder: HttpParameterCodec;
|
|
13
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration: Configuration);
|
|
14
|
+
private addToHttpParams;
|
|
15
|
+
private addToHttpParamsRecursive;
|
|
16
|
+
/**
|
|
17
|
+
* Create a new task user record
|
|
18
|
+
* @param taskUserRecord
|
|
19
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
20
|
+
* @param reportProgress flag to report request and response progress.
|
|
21
|
+
*/
|
|
22
|
+
createTaskUserRecord(taskUserRecord: TaskUserRecord, observe?: 'body', reportProgress?: boolean, options?: {
|
|
23
|
+
httpHeaderAccept?: 'application/json';
|
|
24
|
+
context?: HttpContext;
|
|
25
|
+
transferCache?: boolean;
|
|
26
|
+
}): Observable<TaskUserRecord>;
|
|
27
|
+
createTaskUserRecord(taskUserRecord: TaskUserRecord, observe?: 'response', reportProgress?: boolean, options?: {
|
|
28
|
+
httpHeaderAccept?: 'application/json';
|
|
29
|
+
context?: HttpContext;
|
|
30
|
+
transferCache?: boolean;
|
|
31
|
+
}): Observable<HttpResponse<TaskUserRecord>>;
|
|
32
|
+
createTaskUserRecord(taskUserRecord: TaskUserRecord, observe?: 'events', reportProgress?: boolean, options?: {
|
|
33
|
+
httpHeaderAccept?: 'application/json';
|
|
34
|
+
context?: HttpContext;
|
|
35
|
+
transferCache?: boolean;
|
|
36
|
+
}): Observable<HttpEvent<TaskUserRecord>>;
|
|
37
|
+
/**
|
|
38
|
+
* Delete a task user record
|
|
39
|
+
* @param id
|
|
40
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
41
|
+
* @param reportProgress flag to report request and response progress.
|
|
42
|
+
*/
|
|
43
|
+
deleteTaskUserRecord(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
44
|
+
httpHeaderAccept?: undefined;
|
|
45
|
+
context?: HttpContext;
|
|
46
|
+
transferCache?: boolean;
|
|
47
|
+
}): Observable<any>;
|
|
48
|
+
deleteTaskUserRecord(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
49
|
+
httpHeaderAccept?: undefined;
|
|
50
|
+
context?: HttpContext;
|
|
51
|
+
transferCache?: boolean;
|
|
52
|
+
}): Observable<HttpResponse<any>>;
|
|
53
|
+
deleteTaskUserRecord(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
54
|
+
httpHeaderAccept?: undefined;
|
|
55
|
+
context?: HttpContext;
|
|
56
|
+
transferCache?: boolean;
|
|
57
|
+
}): Observable<HttpEvent<any>>;
|
|
58
|
+
/**
|
|
59
|
+
* Retrieve a task user record by ID
|
|
60
|
+
* @param id
|
|
61
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
62
|
+
* @param reportProgress flag to report request and response progress.
|
|
63
|
+
*/
|
|
64
|
+
getTaskUserRecordById(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
65
|
+
httpHeaderAccept?: 'application/json';
|
|
66
|
+
context?: HttpContext;
|
|
67
|
+
transferCache?: boolean;
|
|
68
|
+
}): Observable<TaskUserRecord>;
|
|
69
|
+
getTaskUserRecordById(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
70
|
+
httpHeaderAccept?: 'application/json';
|
|
71
|
+
context?: HttpContext;
|
|
72
|
+
transferCache?: boolean;
|
|
73
|
+
}): Observable<HttpResponse<TaskUserRecord>>;
|
|
74
|
+
getTaskUserRecordById(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
75
|
+
httpHeaderAccept?: 'application/json';
|
|
76
|
+
context?: HttpContext;
|
|
77
|
+
transferCache?: boolean;
|
|
78
|
+
}): Observable<HttpEvent<TaskUserRecord>>;
|
|
79
|
+
/**
|
|
80
|
+
* Getting task user records
|
|
81
|
+
* @param $skip
|
|
82
|
+
* @param $top
|
|
83
|
+
* @param $orderby
|
|
84
|
+
* @param $filter
|
|
85
|
+
* @param $search
|
|
86
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
87
|
+
* @param reportProgress flag to report request and response progress.
|
|
88
|
+
*/
|
|
89
|
+
getTaskUserRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
90
|
+
httpHeaderAccept?: 'application/json';
|
|
91
|
+
context?: HttpContext;
|
|
92
|
+
transferCache?: boolean;
|
|
93
|
+
}): Observable<TaskUserRecords>;
|
|
94
|
+
getTaskUserRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
95
|
+
httpHeaderAccept?: 'application/json';
|
|
96
|
+
context?: HttpContext;
|
|
97
|
+
transferCache?: boolean;
|
|
98
|
+
}): Observable<HttpResponse<TaskUserRecords>>;
|
|
99
|
+
getTaskUserRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
100
|
+
httpHeaderAccept?: 'application/json';
|
|
101
|
+
context?: HttpContext;
|
|
102
|
+
transferCache?: boolean;
|
|
103
|
+
}): Observable<HttpEvent<TaskUserRecords>>;
|
|
104
|
+
/**
|
|
105
|
+
* Update an existing task user record
|
|
106
|
+
* @param id
|
|
107
|
+
* @param taskUserRecord
|
|
108
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
109
|
+
* @param reportProgress flag to report request and response progress.
|
|
110
|
+
*/
|
|
111
|
+
updateTaskUserRecord(id: number, taskUserRecord: TaskUserRecord, observe?: 'body', reportProgress?: boolean, options?: {
|
|
112
|
+
httpHeaderAccept?: 'application/json';
|
|
113
|
+
context?: HttpContext;
|
|
114
|
+
transferCache?: boolean;
|
|
115
|
+
}): Observable<TaskUserRecord>;
|
|
116
|
+
updateTaskUserRecord(id: number, taskUserRecord: TaskUserRecord, observe?: 'response', reportProgress?: boolean, options?: {
|
|
117
|
+
httpHeaderAccept?: 'application/json';
|
|
118
|
+
context?: HttpContext;
|
|
119
|
+
transferCache?: boolean;
|
|
120
|
+
}): Observable<HttpResponse<TaskUserRecord>>;
|
|
121
|
+
updateTaskUserRecord(id: number, taskUserRecord: TaskUserRecord, observe?: 'events', reportProgress?: boolean, options?: {
|
|
122
|
+
httpHeaderAccept?: 'application/json';
|
|
123
|
+
context?: HttpContext;
|
|
124
|
+
transferCache?: boolean;
|
|
125
|
+
}): Observable<HttpEvent<TaskUserRecord>>;
|
|
126
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TaskUserRecordsService, [null, { optional: true; }, { optional: true; }]>;
|
|
127
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TaskUserRecordsService>;
|
|
128
|
+
}
|