@indigina/wms-api 0.0.173 → 0.0.175

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.
@@ -12,10 +12,19 @@ import { InjectionToken, ModuleWithProviders, EnvironmentProviders } from '@angu
12
12
  * https://openapi-generator.tech
13
13
  * Do not edit the class manually.
14
14
  */
15
- interface EmbedTokenDto {
16
- token: string;
17
- tokenID: string;
18
- }
15
+ declare const AddressType: {
16
+ readonly Delivery: "Delivery";
17
+ readonly Bank: "Bank";
18
+ readonly Primary: "Primary";
19
+ readonly Supplier: "Supplier";
20
+ readonly Billing: "Billing";
21
+ readonly Shipping: "Shipping";
22
+ readonly ForwardingAgent: "ForwardingAgent";
23
+ readonly Invoice: "Invoice";
24
+ readonly MarkFor: "MarkFor";
25
+ readonly Return: "Return";
26
+ };
27
+ type AddressType = typeof AddressType[keyof typeof AddressType];
19
28
 
20
29
  /**
21
30
  * Wms.API.Client
@@ -26,41 +35,17 @@ interface EmbedTokenDto {
26
35
  * https://openapi-generator.tech
27
36
  * Do not edit the class manually.
28
37
  */
29
-
30
- interface EmbedReport {
38
+ interface AddressView {
31
39
  id: string;
32
- embedUrl: string | null;
33
- isPaginated: boolean;
34
- showPagesPane: boolean;
35
- showFiltersPane: boolean;
36
- embedToken: EmbedTokenDto | null;
37
- }
38
-
39
- /**
40
- * Wms.API.Client
41
- *
42
- *
43
- *
44
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
45
- * https://openapi-generator.tech
46
- * Do not edit the class manually.
47
- */
48
- interface Report {
49
- id?: number;
50
- name: string;
51
- columnOrder: number;
52
- sortOrder: number;
53
- isEmbeddingAllowed: boolean;
54
- isPaginated: boolean;
55
- showPagesPane: boolean;
56
- serviceId: string;
57
- permission?: string;
58
- displayName?: string;
59
- reportId?: string;
60
- powerBiTenant?: string;
61
- workspaceId?: string;
62
- pageName?: string;
63
- groupId: number;
40
+ addressLine1?: string | null;
41
+ addressLine2?: string | null;
42
+ addressLine3?: string | null;
43
+ addressLine4?: string | null;
44
+ city?: string | null;
45
+ county?: string | null;
46
+ postCodeZip?: string | null;
47
+ countryName?: string | null;
48
+ isDefault: boolean;
64
49
  }
65
50
 
66
51
  /**
@@ -73,15 +58,9 @@ interface Report {
73
58
  * Do not edit the class manually.
74
59
  */
75
60
 
76
- interface Group {
77
- id?: number;
78
- groups: Array<Group>;
79
- reports: Array<Report>;
80
- name: string;
81
- parentId?: number | null;
82
- verticalOrder?: number | null;
83
- horizontalOrder?: number | null;
84
- isVisible?: boolean;
61
+ interface Addresses {
62
+ total: number;
63
+ data: Array<AddressView>;
85
64
  }
86
65
 
87
66
  /**
@@ -305,6 +284,152 @@ declare class BaseService {
305
284
  protected addToHttpParams(httpParams: OpenApiHttpParams, key: string, value: any | null | undefined, paramStyle: QueryParamStyle, explode: boolean): OpenApiHttpParams;
306
285
  }
307
286
 
287
+ declare class AddressesService extends BaseService {
288
+ protected httpClient: HttpClient;
289
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
290
+ /**
291
+ * Getting addresses by company
292
+ * @endpoint get /companies/{companyId}/addresses/{addressType}
293
+ * @param companyId
294
+ * @param addressType
295
+ * @param $skip
296
+ * @param $top
297
+ * @param $orderby
298
+ * @param $filter
299
+ * @param $search
300
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
301
+ * @param reportProgress flag to report request and response progress.
302
+ * @param options additional options
303
+ */
304
+ getAddressesByCompany(companyId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
305
+ httpHeaderAccept?: 'application/json';
306
+ context?: HttpContext;
307
+ transferCache?: boolean;
308
+ }): Observable<Addresses>;
309
+ getAddressesByCompany(companyId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
310
+ httpHeaderAccept?: 'application/json';
311
+ context?: HttpContext;
312
+ transferCache?: boolean;
313
+ }): Observable<HttpResponse<Addresses>>;
314
+ getAddressesByCompany(companyId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
315
+ httpHeaderAccept?: 'application/json';
316
+ context?: HttpContext;
317
+ transferCache?: boolean;
318
+ }): Observable<HttpEvent<Addresses>>;
319
+ /**
320
+ * Getting addresses by person
321
+ * @endpoint get /people/{personId}/addresses/{addressType}
322
+ * @param personId
323
+ * @param addressType
324
+ * @param $skip
325
+ * @param $top
326
+ * @param $orderby
327
+ * @param $filter
328
+ * @param $search
329
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
330
+ * @param reportProgress flag to report request and response progress.
331
+ * @param options additional options
332
+ */
333
+ getAddressesByPerson(personId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
334
+ httpHeaderAccept?: 'application/json';
335
+ context?: HttpContext;
336
+ transferCache?: boolean;
337
+ }): Observable<Addresses>;
338
+ getAddressesByPerson(personId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
339
+ httpHeaderAccept?: 'application/json';
340
+ context?: HttpContext;
341
+ transferCache?: boolean;
342
+ }): Observable<HttpResponse<Addresses>>;
343
+ getAddressesByPerson(personId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
344
+ httpHeaderAccept?: 'application/json';
345
+ context?: HttpContext;
346
+ transferCache?: boolean;
347
+ }): Observable<HttpEvent<Addresses>>;
348
+ static ɵfac: i0.ɵɵFactoryDeclaration<AddressesService, [null, { optional: true; }, { optional: true; }]>;
349
+ static ɵprov: i0.ɵɵInjectableDeclaration<AddressesService>;
350
+ }
351
+
352
+ /**
353
+ * Wms.API.Client
354
+ *
355
+ *
356
+ *
357
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
358
+ * https://openapi-generator.tech
359
+ * Do not edit the class manually.
360
+ */
361
+ interface EmbedTokenDto {
362
+ token: string;
363
+ tokenID: string;
364
+ }
365
+
366
+ /**
367
+ * Wms.API.Client
368
+ *
369
+ *
370
+ *
371
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
372
+ * https://openapi-generator.tech
373
+ * Do not edit the class manually.
374
+ */
375
+
376
+ interface EmbedReport {
377
+ id: string;
378
+ embedUrl: string | null;
379
+ isPaginated: boolean;
380
+ showPagesPane: boolean;
381
+ showFiltersPane: boolean;
382
+ embedToken: EmbedTokenDto | null;
383
+ }
384
+
385
+ /**
386
+ * Wms.API.Client
387
+ *
388
+ *
389
+ *
390
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
391
+ * https://openapi-generator.tech
392
+ * Do not edit the class manually.
393
+ */
394
+ interface Report {
395
+ id?: number;
396
+ name: string;
397
+ columnOrder: number;
398
+ sortOrder: number;
399
+ isEmbeddingAllowed: boolean;
400
+ isPaginated: boolean;
401
+ showPagesPane: boolean;
402
+ serviceId: string;
403
+ permission?: string;
404
+ displayName?: string;
405
+ reportId?: string;
406
+ powerBiTenant?: string;
407
+ workspaceId?: string;
408
+ pageName?: string;
409
+ groupId: number;
410
+ }
411
+
412
+ /**
413
+ * Wms.API.Client
414
+ *
415
+ *
416
+ *
417
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
418
+ * https://openapi-generator.tech
419
+ * Do not edit the class manually.
420
+ */
421
+
422
+ interface Group {
423
+ id?: number;
424
+ groups: Array<Group>;
425
+ reports: Array<Report>;
426
+ name: string;
427
+ parentId?: number | null;
428
+ verticalOrder?: number | null;
429
+ horizontalOrder?: number | null;
430
+ isVisible?: boolean;
431
+ }
432
+
308
433
  declare class AnalyticsService extends BaseService {
309
434
  protected httpClient: HttpClient;
310
435
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
@@ -1975,6 +2100,39 @@ interface Companies {
1975
2100
  data: Array<Company>;
1976
2101
  }
1977
2102
 
2103
+ /**
2104
+ * Wms.API.Client
2105
+ *
2106
+ *
2107
+ *
2108
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2109
+ * https://openapi-generator.tech
2110
+ * Do not edit the class manually.
2111
+ */
2112
+ declare const CompanyType: {
2113
+ readonly Carrier: "Carrier";
2114
+ readonly TransportServices: "TransportServices";
2115
+ readonly Company: "Company";
2116
+ readonly Vendor: "Vendor";
2117
+ readonly Customer: "Customer";
2118
+ readonly ShippingAgent: "ShippingAgent";
2119
+ readonly ShipFrom: "ShipFrom";
2120
+ readonly OriginAgent: "OriginAgent";
2121
+ readonly ShipTo: "ShipTo";
2122
+ readonly BuyingAgent: "BuyingAgent";
2123
+ readonly Seller: "Seller";
2124
+ readonly DistributionCentre: "DistributionCentre";
2125
+ readonly Client: "Client";
2126
+ readonly SysAdmin: "SysAdmin";
2127
+ readonly LocalAgent: "LocalAgent";
2128
+ readonly CarrierProvider: "CarrierProvider";
2129
+ readonly WholesaleCustomer: "WholesaleCustomer";
2130
+ readonly WebCustomer: "WebCustomer";
2131
+ readonly DestinationAgent: "DestinationAgent";
2132
+ readonly ForwardingAgent: "ForwardingAgent";
2133
+ };
2134
+ type CompanyType = typeof CompanyType[keyof typeof CompanyType];
2135
+
1978
2136
  declare class CompaniesService extends BaseService {
1979
2137
  protected httpClient: HttpClient;
1980
2138
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
@@ -2005,6 +2163,34 @@ declare class CompaniesService extends BaseService {
2005
2163
  context?: HttpContext;
2006
2164
  transferCache?: boolean;
2007
2165
  }): Observable<HttpEvent<Companies>>;
2166
+ /**
2167
+ * Getting companies by company type
2168
+ * @endpoint get /companies/{companyType}
2169
+ * @param companyType
2170
+ * @param $skip
2171
+ * @param $top
2172
+ * @param $orderby
2173
+ * @param $filter
2174
+ * @param $search
2175
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2176
+ * @param reportProgress flag to report request and response progress.
2177
+ * @param options additional options
2178
+ */
2179
+ getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
2180
+ httpHeaderAccept?: 'application/json';
2181
+ context?: HttpContext;
2182
+ transferCache?: boolean;
2183
+ }): Observable<Companies>;
2184
+ getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
2185
+ httpHeaderAccept?: 'application/json';
2186
+ context?: HttpContext;
2187
+ transferCache?: boolean;
2188
+ }): Observable<HttpResponse<Companies>>;
2189
+ getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
2190
+ httpHeaderAccept?: 'application/json';
2191
+ context?: HttpContext;
2192
+ transferCache?: boolean;
2193
+ }): Observable<HttpEvent<Companies>>;
2008
2194
  /**
2009
2195
  * Getting suppliers
2010
2196
  * @endpoint get /companies/{id}/suppliers
@@ -2032,6 +2218,89 @@ declare class CompaniesService extends BaseService {
2032
2218
  static ɵprov: i0.ɵɵInjectableDeclaration<CompaniesService>;
2033
2219
  }
2034
2220
 
2221
+ /**
2222
+ * Wms.API.Client
2223
+ *
2224
+ *
2225
+ *
2226
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2227
+ * https://openapi-generator.tech
2228
+ * Do not edit the class manually.
2229
+ */
2230
+ interface ContactView {
2231
+ id: string;
2232
+ firstName?: string | null;
2233
+ lastName?: string | null;
2234
+ }
2235
+
2236
+ /**
2237
+ * Wms.API.Client
2238
+ *
2239
+ *
2240
+ *
2241
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2242
+ * https://openapi-generator.tech
2243
+ * Do not edit the class manually.
2244
+ */
2245
+
2246
+ interface Contacts {
2247
+ total: number;
2248
+ data: Array<ContactView>;
2249
+ }
2250
+
2251
+ /**
2252
+ * Wms.API.Client
2253
+ *
2254
+ *
2255
+ *
2256
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2257
+ * https://openapi-generator.tech
2258
+ * Do not edit the class manually.
2259
+ */
2260
+ declare const PeopleGroup: {
2261
+ readonly DeliveryContact: "DeliveryContact";
2262
+ readonly BillingContact: "BillingContact";
2263
+ readonly SupplierContact: "SupplierContact";
2264
+ readonly ForwardingAgentContact: "ForwardingAgentContact";
2265
+ };
2266
+ type PeopleGroup = typeof PeopleGroup[keyof typeof PeopleGroup];
2267
+
2268
+ declare class ContactsService extends BaseService {
2269
+ protected httpClient: HttpClient;
2270
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
2271
+ /**
2272
+ * Getting contacts by company
2273
+ * @endpoint get /companies/{companyId}/contacts/{contactType}
2274
+ * @param companyId
2275
+ * @param contactType
2276
+ * @param $skip
2277
+ * @param $top
2278
+ * @param $orderby
2279
+ * @param $filter
2280
+ * @param $search
2281
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2282
+ * @param reportProgress flag to report request and response progress.
2283
+ * @param options additional options
2284
+ */
2285
+ getContactsByCompany(companyId: string, contactType: PeopleGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
2286
+ httpHeaderAccept?: 'application/json';
2287
+ context?: HttpContext;
2288
+ transferCache?: boolean;
2289
+ }): Observable<Contacts>;
2290
+ getContactsByCompany(companyId: string, contactType: PeopleGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
2291
+ httpHeaderAccept?: 'application/json';
2292
+ context?: HttpContext;
2293
+ transferCache?: boolean;
2294
+ }): Observable<HttpResponse<Contacts>>;
2295
+ getContactsByCompany(companyId: string, contactType: PeopleGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
2296
+ httpHeaderAccept?: 'application/json';
2297
+ context?: HttpContext;
2298
+ transferCache?: boolean;
2299
+ }): Observable<HttpEvent<Contacts>>;
2300
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactsService, [null, { optional: true; }, { optional: true; }]>;
2301
+ static ɵprov: i0.ɵɵInjectableDeclaration<ContactsService>;
2302
+ }
2303
+
2035
2304
  /**
2036
2305
  * Wms.API.Client
2037
2306
  *
@@ -4395,6 +4664,7 @@ declare class LicencePlateSerialsService extends BaseService {
4395
4664
  declare const NoteSourceType: {
4396
4665
  readonly Delivery: "Delivery";
4397
4666
  readonly DispatchHeader: "DispatchHeader";
4667
+ readonly SalesOrderHeader: "SalesOrderHeader";
4398
4668
  };
4399
4669
  type NoteSourceType = typeof NoteSourceType[keyof typeof NoteSourceType];
4400
4670
 
@@ -5923,7 +6193,266 @@ interface ReplenishmentRecordGridView {
5923
6193
  cancelDate?: string | null;
5924
6194
  cancelUserName?: string;
5925
6195
  }
5926
- declare namespace ReplenishmentRecordGridView {
6196
+ declare namespace ReplenishmentRecordGridView {
6197
+ }
6198
+
6199
+ /**
6200
+ * Wms.API.Client
6201
+ *
6202
+ *
6203
+ *
6204
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6205
+ * https://openapi-generator.tech
6206
+ * Do not edit the class manually.
6207
+ */
6208
+
6209
+ interface ReplenishmentRecords {
6210
+ total: number;
6211
+ data: Array<ReplenishmentRecordGridView>;
6212
+ }
6213
+
6214
+ declare class ReplenishmentRecordsService extends BaseService {
6215
+ protected httpClient: HttpClient;
6216
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
6217
+ /**
6218
+ * Cancel a replenishment record
6219
+ * @endpoint put /replenishmentRecords/{id}/cancel
6220
+ * @param id
6221
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
6222
+ * @param reportProgress flag to report request and response progress.
6223
+ * @param options additional options
6224
+ */
6225
+ cancelReplenishmentRecord(id: string, observe?: 'body', reportProgress?: boolean, options?: {
6226
+ httpHeaderAccept?: undefined;
6227
+ context?: HttpContext;
6228
+ transferCache?: boolean;
6229
+ }): Observable<any>;
6230
+ cancelReplenishmentRecord(id: string, observe?: 'response', reportProgress?: boolean, options?: {
6231
+ httpHeaderAccept?: undefined;
6232
+ context?: HttpContext;
6233
+ transferCache?: boolean;
6234
+ }): Observable<HttpResponse<any>>;
6235
+ cancelReplenishmentRecord(id: string, observe?: 'events', reportProgress?: boolean, options?: {
6236
+ httpHeaderAccept?: undefined;
6237
+ context?: HttpContext;
6238
+ transferCache?: boolean;
6239
+ }): Observable<HttpEvent<any>>;
6240
+ /**
6241
+ * Getting replenishment records
6242
+ * @endpoint get /replenishmentRecords
6243
+ * @param $skip
6244
+ * @param $top
6245
+ * @param $orderby
6246
+ * @param $filter
6247
+ * @param $search
6248
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
6249
+ * @param reportProgress flag to report request and response progress.
6250
+ * @param options additional options
6251
+ */
6252
+ getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
6253
+ httpHeaderAccept?: 'application/json';
6254
+ context?: HttpContext;
6255
+ transferCache?: boolean;
6256
+ }): Observable<ReplenishmentRecords>;
6257
+ getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
6258
+ httpHeaderAccept?: 'application/json';
6259
+ context?: HttpContext;
6260
+ transferCache?: boolean;
6261
+ }): Observable<HttpResponse<ReplenishmentRecords>>;
6262
+ getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
6263
+ httpHeaderAccept?: 'application/json';
6264
+ context?: HttpContext;
6265
+ transferCache?: boolean;
6266
+ }): Observable<HttpEvent<ReplenishmentRecords>>;
6267
+ /**
6268
+ * ReplenishmentRecords list
6269
+ * @endpoint get /replenishmentRecords/search
6270
+ * @param $skip
6271
+ * @param $top
6272
+ * @param $orderby
6273
+ * @param $filter
6274
+ * @param searchTerm
6275
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
6276
+ * @param reportProgress flag to report request and response progress.
6277
+ * @param options additional options
6278
+ */
6279
+ getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
6280
+ httpHeaderAccept?: 'application/json';
6281
+ context?: HttpContext;
6282
+ transferCache?: boolean;
6283
+ }): Observable<ReplenishmentRecords>;
6284
+ getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
6285
+ httpHeaderAccept?: 'application/json';
6286
+ context?: HttpContext;
6287
+ transferCache?: boolean;
6288
+ }): Observable<HttpResponse<ReplenishmentRecords>>;
6289
+ getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
6290
+ httpHeaderAccept?: 'application/json';
6291
+ context?: HttpContext;
6292
+ transferCache?: boolean;
6293
+ }): Observable<HttpEvent<ReplenishmentRecords>>;
6294
+ /**
6295
+ * Unallocate a replenishment record
6296
+ * @endpoint put /replenishmentRecords/{id}/unallocate
6297
+ * @param id
6298
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
6299
+ * @param reportProgress flag to report request and response progress.
6300
+ * @param options additional options
6301
+ */
6302
+ unallocateReplenishmentRecord(id: string, observe?: 'body', reportProgress?: boolean, options?: {
6303
+ httpHeaderAccept?: undefined;
6304
+ context?: HttpContext;
6305
+ transferCache?: boolean;
6306
+ }): Observable<any>;
6307
+ unallocateReplenishmentRecord(id: string, observe?: 'response', reportProgress?: boolean, options?: {
6308
+ httpHeaderAccept?: undefined;
6309
+ context?: HttpContext;
6310
+ transferCache?: boolean;
6311
+ }): Observable<HttpResponse<any>>;
6312
+ unallocateReplenishmentRecord(id: string, observe?: 'events', reportProgress?: boolean, options?: {
6313
+ httpHeaderAccept?: undefined;
6314
+ context?: HttpContext;
6315
+ transferCache?: boolean;
6316
+ }): Observable<HttpEvent<any>>;
6317
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReplenishmentRecordsService, [null, { optional: true; }, { optional: true; }]>;
6318
+ static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentRecordsService>;
6319
+ }
6320
+
6321
+ /**
6322
+ * Wms.API.Client
6323
+ *
6324
+ *
6325
+ *
6326
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6327
+ * https://openapi-generator.tech
6328
+ * Do not edit the class manually.
6329
+ */
6330
+
6331
+ interface ReturnedDeliveryItemDeliveryModel {
6332
+ customerCompanyId?: string | null;
6333
+ deliveryNumber?: string;
6334
+ hbRef?: string;
6335
+ createdDate: string;
6336
+ deliveryStatus: OrderStatus;
6337
+ }
6338
+ declare namespace ReturnedDeliveryItemDeliveryModel {
6339
+ }
6340
+
6341
+ /**
6342
+ * Wms.API.Client
6343
+ *
6344
+ *
6345
+ *
6346
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6347
+ * https://openapi-generator.tech
6348
+ * Do not edit the class manually.
6349
+ */
6350
+
6351
+ interface ReturnedDeliveryItemView {
6352
+ id: string;
6353
+ customerName?: string;
6354
+ lineNo: number;
6355
+ asnQuantity: number;
6356
+ grnQuantity: number;
6357
+ returnReason?: string;
6358
+ attributeList?: string;
6359
+ reasonDescription?: string;
6360
+ productDescription?: string;
6361
+ productCode?: string;
6362
+ delivery?: ReturnedDeliveryItemDeliveryModel;
6363
+ }
6364
+
6365
+ /**
6366
+ * Wms.API.Client
6367
+ *
6368
+ *
6369
+ *
6370
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6371
+ * https://openapi-generator.tech
6372
+ * Do not edit the class manually.
6373
+ */
6374
+
6375
+ interface ReturnedDeliveryItems {
6376
+ total: number;
6377
+ data: Array<ReturnedDeliveryItemView>;
6378
+ }
6379
+
6380
+ declare class ReturnedItemsService extends BaseService {
6381
+ protected httpClient: HttpClient;
6382
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
6383
+ /**
6384
+ * Getting returnedItems
6385
+ * @endpoint get /deliveryItems/returnedItems
6386
+ * @param $skip
6387
+ * @param $top
6388
+ * @param $orderby
6389
+ * @param $filter
6390
+ * @param $search
6391
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
6392
+ * @param reportProgress flag to report request and response progress.
6393
+ * @param options additional options
6394
+ */
6395
+ getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
6396
+ httpHeaderAccept?: 'application/json';
6397
+ context?: HttpContext;
6398
+ transferCache?: boolean;
6399
+ }): Observable<ReturnedDeliveryItems>;
6400
+ getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
6401
+ httpHeaderAccept?: 'application/json';
6402
+ context?: HttpContext;
6403
+ transferCache?: boolean;
6404
+ }): Observable<HttpResponse<ReturnedDeliveryItems>>;
6405
+ getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
6406
+ httpHeaderAccept?: 'application/json';
6407
+ context?: HttpContext;
6408
+ transferCache?: boolean;
6409
+ }): Observable<HttpEvent<ReturnedDeliveryItems>>;
6410
+ /**
6411
+ * ReturnedItems list
6412
+ * @endpoint get /deliveryItems/returnedItems/search
6413
+ * @param $skip
6414
+ * @param $top
6415
+ * @param $orderby
6416
+ * @param $filter
6417
+ * @param searchTerm
6418
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
6419
+ * @param reportProgress flag to report request and response progress.
6420
+ * @param options additional options
6421
+ */
6422
+ getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
6423
+ httpHeaderAccept?: 'application/json';
6424
+ context?: HttpContext;
6425
+ transferCache?: boolean;
6426
+ }): Observable<ReturnedDeliveryItems>;
6427
+ getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
6428
+ httpHeaderAccept?: 'application/json';
6429
+ context?: HttpContext;
6430
+ transferCache?: boolean;
6431
+ }): Observable<HttpResponse<ReturnedDeliveryItems>>;
6432
+ getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
6433
+ httpHeaderAccept?: 'application/json';
6434
+ context?: HttpContext;
6435
+ transferCache?: boolean;
6436
+ }): Observable<HttpEvent<ReturnedDeliveryItems>>;
6437
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReturnedItemsService, [null, { optional: true; }, { optional: true; }]>;
6438
+ static ɵprov: i0.ɵɵInjectableDeclaration<ReturnedItemsService>;
6439
+ }
6440
+
6441
+ /**
6442
+ * Wms.API.Client
6443
+ *
6444
+ *
6445
+ *
6446
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6447
+ * https://openapi-generator.tech
6448
+ * Do not edit the class manually.
6449
+ */
6450
+ interface SalesOrderItemCreateModel {
6451
+ salesOrderId: string;
6452
+ lineNo: number;
6453
+ productMasterId: string;
6454
+ productQuantityId: string;
6455
+ quantity: number;
5927
6456
  }
5928
6457
 
5929
6458
  /**
@@ -5935,117 +6464,157 @@ declare namespace ReplenishmentRecordGridView {
5935
6464
  * https://openapi-generator.tech
5936
6465
  * Do not edit the class manually.
5937
6466
  */
6467
+ interface SalesOrderItemUpdateModel {
6468
+ salesOrderId: string;
6469
+ lineNo: number;
6470
+ productMasterId: string;
6471
+ productQuantityId: string;
6472
+ quantity: number;
6473
+ }
5938
6474
 
5939
- interface ReplenishmentRecords {
5940
- total: number;
5941
- data: Array<ReplenishmentRecordGridView>;
6475
+ /**
6476
+ * Wms.API.Client
6477
+ *
6478
+ *
6479
+ *
6480
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6481
+ * https://openapi-generator.tech
6482
+ * Do not edit the class manually.
6483
+ */
6484
+ interface SalesOrderItemView {
6485
+ id: string;
6486
+ lineNo: number;
6487
+ productCode?: string | null;
6488
+ productDescription?: string | null;
6489
+ productQuantityName?: string | null;
6490
+ productQuantityId: string;
6491
+ quantity: number;
6492
+ productMasterId: string;
6493
+ buildKit: boolean;
6494
+ isComponentSku: boolean;
5942
6495
  }
5943
6496
 
5944
- declare class ReplenishmentRecordsService extends BaseService {
6497
+ declare class SalesOrderItemsService extends BaseService {
5945
6498
  protected httpClient: HttpClient;
5946
6499
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
5947
6500
  /**
5948
- * Cancel a replenishment record
5949
- * @endpoint put /replenishmentRecords/{id}/cancel
5950
- * @param id
6501
+ * Create a sales order item
6502
+ * @endpoint post /salesOrderItems
6503
+ * @param salesOrderItemCreateModel
5951
6504
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5952
6505
  * @param reportProgress flag to report request and response progress.
5953
6506
  * @param options additional options
5954
6507
  */
5955
- cancelReplenishmentRecord(id: string, observe?: 'body', reportProgress?: boolean, options?: {
5956
- httpHeaderAccept?: undefined;
6508
+ createSalesOrderItem(salesOrderItemCreateModel: SalesOrderItemCreateModel, observe?: 'body', reportProgress?: boolean, options?: {
6509
+ httpHeaderAccept?: 'application/json';
5957
6510
  context?: HttpContext;
5958
6511
  transferCache?: boolean;
5959
- }): Observable<any>;
5960
- cancelReplenishmentRecord(id: string, observe?: 'response', reportProgress?: boolean, options?: {
5961
- httpHeaderAccept?: undefined;
6512
+ }): Observable<SalesOrderItemView>;
6513
+ createSalesOrderItem(salesOrderItemCreateModel: SalesOrderItemCreateModel, observe?: 'response', reportProgress?: boolean, options?: {
6514
+ httpHeaderAccept?: 'application/json';
5962
6515
  context?: HttpContext;
5963
6516
  transferCache?: boolean;
5964
- }): Observable<HttpResponse<any>>;
5965
- cancelReplenishmentRecord(id: string, observe?: 'events', reportProgress?: boolean, options?: {
5966
- httpHeaderAccept?: undefined;
6517
+ }): Observable<HttpResponse<SalesOrderItemView>>;
6518
+ createSalesOrderItem(salesOrderItemCreateModel: SalesOrderItemCreateModel, observe?: 'events', reportProgress?: boolean, options?: {
6519
+ httpHeaderAccept?: 'application/json';
5967
6520
  context?: HttpContext;
5968
6521
  transferCache?: boolean;
5969
- }): Observable<HttpEvent<any>>;
6522
+ }): Observable<HttpEvent<SalesOrderItemView>>;
5970
6523
  /**
5971
- * Getting replenishment records
5972
- * @endpoint get /replenishmentRecords
5973
- * @param $skip
5974
- * @param $top
5975
- * @param $orderby
5976
- * @param $filter
5977
- * @param $search
6524
+ * Create multiple sales order items
6525
+ * @endpoint post /salesOrderItems/bulk
6526
+ * @param salesOrderItemCreateModel
5978
6527
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5979
6528
  * @param reportProgress flag to report request and response progress.
5980
6529
  * @param options additional options
5981
6530
  */
5982
- getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
6531
+ createSalesOrderItemsBulk(salesOrderItemCreateModel: Array<SalesOrderItemCreateModel>, observe?: 'body', reportProgress?: boolean, options?: {
5983
6532
  httpHeaderAccept?: 'application/json';
5984
6533
  context?: HttpContext;
5985
6534
  transferCache?: boolean;
5986
- }): Observable<ReplenishmentRecords>;
5987
- getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
6535
+ }): Observable<Array<SalesOrderItemView>>;
6536
+ createSalesOrderItemsBulk(salesOrderItemCreateModel: Array<SalesOrderItemCreateModel>, observe?: 'response', reportProgress?: boolean, options?: {
5988
6537
  httpHeaderAccept?: 'application/json';
5989
6538
  context?: HttpContext;
5990
6539
  transferCache?: boolean;
5991
- }): Observable<HttpResponse<ReplenishmentRecords>>;
5992
- getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
6540
+ }): Observable<HttpResponse<Array<SalesOrderItemView>>>;
6541
+ createSalesOrderItemsBulk(salesOrderItemCreateModel: Array<SalesOrderItemCreateModel>, observe?: 'events', reportProgress?: boolean, options?: {
5993
6542
  httpHeaderAccept?: 'application/json';
5994
6543
  context?: HttpContext;
5995
6544
  transferCache?: boolean;
5996
- }): Observable<HttpEvent<ReplenishmentRecords>>;
6545
+ }): Observable<HttpEvent<Array<SalesOrderItemView>>>;
5997
6546
  /**
5998
- * ReplenishmentRecords list
5999
- * @endpoint get /replenishmentRecords/search
6000
- * @param $skip
6001
- * @param $top
6002
- * @param $orderby
6003
- * @param $filter
6004
- * @param searchTerm
6547
+ * Delete a sales order item
6548
+ * @endpoint delete /salesOrderItems/{id}
6549
+ * @param id
6005
6550
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
6006
6551
  * @param reportProgress flag to report request and response progress.
6007
6552
  * @param options additional options
6008
6553
  */
6009
- getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
6554
+ deleteSalesOrderItem(id: string, observe?: 'body', reportProgress?: boolean, options?: {
6555
+ httpHeaderAccept?: undefined;
6556
+ context?: HttpContext;
6557
+ transferCache?: boolean;
6558
+ }): Observable<any>;
6559
+ deleteSalesOrderItem(id: string, observe?: 'response', reportProgress?: boolean, options?: {
6560
+ httpHeaderAccept?: undefined;
6561
+ context?: HttpContext;
6562
+ transferCache?: boolean;
6563
+ }): Observable<HttpResponse<any>>;
6564
+ deleteSalesOrderItem(id: string, observe?: 'events', reportProgress?: boolean, options?: {
6565
+ httpHeaderAccept?: undefined;
6566
+ context?: HttpContext;
6567
+ transferCache?: boolean;
6568
+ }): Observable<HttpEvent<any>>;
6569
+ /**
6570
+ * Getting a sales order item by id
6571
+ * @endpoint get /salesOrderItems/{id}
6572
+ * @param id
6573
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
6574
+ * @param reportProgress flag to report request and response progress.
6575
+ * @param options additional options
6576
+ */
6577
+ getSalesOrderItem(id: string, observe?: 'body', reportProgress?: boolean, options?: {
6010
6578
  httpHeaderAccept?: 'application/json';
6011
6579
  context?: HttpContext;
6012
6580
  transferCache?: boolean;
6013
- }): Observable<ReplenishmentRecords>;
6014
- getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
6581
+ }): Observable<SalesOrderItemView>;
6582
+ getSalesOrderItem(id: string, observe?: 'response', reportProgress?: boolean, options?: {
6015
6583
  httpHeaderAccept?: 'application/json';
6016
6584
  context?: HttpContext;
6017
6585
  transferCache?: boolean;
6018
- }): Observable<HttpResponse<ReplenishmentRecords>>;
6019
- getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
6586
+ }): Observable<HttpResponse<SalesOrderItemView>>;
6587
+ getSalesOrderItem(id: string, observe?: 'events', reportProgress?: boolean, options?: {
6020
6588
  httpHeaderAccept?: 'application/json';
6021
6589
  context?: HttpContext;
6022
6590
  transferCache?: boolean;
6023
- }): Observable<HttpEvent<ReplenishmentRecords>>;
6591
+ }): Observable<HttpEvent<SalesOrderItemView>>;
6024
6592
  /**
6025
- * Unallocate a replenishment record
6026
- * @endpoint put /replenishmentRecords/{id}/unallocate
6593
+ * Update a sales order item
6594
+ * @endpoint put /salesOrderItems/{id}
6027
6595
  * @param id
6596
+ * @param salesOrderItemUpdateModel
6028
6597
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
6029
6598
  * @param reportProgress flag to report request and response progress.
6030
6599
  * @param options additional options
6031
6600
  */
6032
- unallocateReplenishmentRecord(id: string, observe?: 'body', reportProgress?: boolean, options?: {
6033
- httpHeaderAccept?: undefined;
6601
+ updateSalesOrderItem(id: string, salesOrderItemUpdateModel: SalesOrderItemUpdateModel, observe?: 'body', reportProgress?: boolean, options?: {
6602
+ httpHeaderAccept?: 'application/json';
6034
6603
  context?: HttpContext;
6035
6604
  transferCache?: boolean;
6036
- }): Observable<any>;
6037
- unallocateReplenishmentRecord(id: string, observe?: 'response', reportProgress?: boolean, options?: {
6038
- httpHeaderAccept?: undefined;
6605
+ }): Observable<SalesOrderItemView>;
6606
+ updateSalesOrderItem(id: string, salesOrderItemUpdateModel: SalesOrderItemUpdateModel, observe?: 'response', reportProgress?: boolean, options?: {
6607
+ httpHeaderAccept?: 'application/json';
6039
6608
  context?: HttpContext;
6040
6609
  transferCache?: boolean;
6041
- }): Observable<HttpResponse<any>>;
6042
- unallocateReplenishmentRecord(id: string, observe?: 'events', reportProgress?: boolean, options?: {
6043
- httpHeaderAccept?: undefined;
6610
+ }): Observable<HttpResponse<SalesOrderItemView>>;
6611
+ updateSalesOrderItem(id: string, salesOrderItemUpdateModel: SalesOrderItemUpdateModel, observe?: 'events', reportProgress?: boolean, options?: {
6612
+ httpHeaderAccept?: 'application/json';
6044
6613
  context?: HttpContext;
6045
6614
  transferCache?: boolean;
6046
- }): Observable<HttpEvent<any>>;
6047
- static ɵfac: i0.ɵɵFactoryDeclaration<ReplenishmentRecordsService, [null, { optional: true; }, { optional: true; }]>;
6048
- static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentRecordsService>;
6615
+ }): Observable<HttpEvent<SalesOrderItemView>>;
6616
+ static ɵfac: i0.ɵɵFactoryDeclaration<SalesOrderItemsService, [null, { optional: true; }, { optional: true; }]>;
6617
+ static ɵprov: i0.ɵɵInjectableDeclaration<SalesOrderItemsService>;
6049
6618
  }
6050
6619
 
6051
6620
  /**
@@ -6058,14 +6627,20 @@ declare class ReplenishmentRecordsService extends BaseService {
6058
6627
  * Do not edit the class manually.
6059
6628
  */
6060
6629
 
6061
- interface ReturnedDeliveryItemDeliveryModel {
6062
- customerCompanyId?: string | null;
6063
- deliveryNumber?: string;
6064
- hbRef?: string;
6065
- createdDate: string;
6066
- deliveryStatus: OrderStatus;
6630
+ interface SalesOrderHeaderCreateModel {
6631
+ salesOrderNumber?: string | null;
6632
+ salesOrderStatus: OrderStatus;
6633
+ customerOrderReference?: string | null;
6634
+ orderType: OrderType;
6635
+ locationType?: LocationType | null;
6636
+ soDate?: string | null;
6637
+ shipToCompanyId?: string | null;
6638
+ shipToContactId?: string | null;
6639
+ deliveryAddressId: string;
6640
+ billingAddressId?: string | null;
6641
+ billingContactId?: string | null;
6067
6642
  }
6068
- declare namespace ReturnedDeliveryItemDeliveryModel {
6643
+ declare namespace SalesOrderHeaderCreateModel {
6069
6644
  }
6070
6645
 
6071
6646
  /**
@@ -6078,18 +6653,64 @@ declare namespace ReturnedDeliveryItemDeliveryModel {
6078
6653
  * Do not edit the class manually.
6079
6654
  */
6080
6655
 
6081
- interface ReturnedDeliveryItemView {
6656
+ interface SalesOrderHeaderUpdateModel {
6657
+ salesOrderNumber?: string | null;
6658
+ salesOrderStatus: OrderStatus;
6659
+ customerOrderReference?: string | null;
6660
+ orderType: OrderType;
6661
+ locationType?: LocationType | null;
6662
+ soDate?: string | null;
6663
+ shipToCompanyId?: string | null;
6664
+ shipToContactId?: string | null;
6665
+ deliveryAddressId: string;
6666
+ billingAddressId?: string | null;
6667
+ billingContactId?: string | null;
6668
+ }
6669
+ declare namespace SalesOrderHeaderUpdateModel {
6670
+ }
6671
+
6672
+ /**
6673
+ * Wms.API.Client
6674
+ *
6675
+ *
6676
+ *
6677
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6678
+ * https://openapi-generator.tech
6679
+ * Do not edit the class manually.
6680
+ */
6681
+ declare const AddressSource: {
6682
+ readonly Company: "Company";
6683
+ readonly Contact: "Contact";
6684
+ };
6685
+ type AddressSource = typeof AddressSource[keyof typeof AddressSource];
6686
+
6687
+ /**
6688
+ * Wms.API.Client
6689
+ *
6690
+ *
6691
+ *
6692
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6693
+ * https://openapi-generator.tech
6694
+ * Do not edit the class manually.
6695
+ */
6696
+
6697
+ interface SalesOrderHeaderView {
6698
+ salesOrderNumber?: string | null;
6699
+ salesOrderStatus: OrderStatus;
6700
+ customerOrderReference?: string | null;
6701
+ orderType: OrderType;
6702
+ locationType?: LocationType | null;
6703
+ soDate?: string | null;
6704
+ shipToCompanyId?: string | null;
6705
+ shipToContactId?: string | null;
6706
+ deliveryAddressId: string;
6707
+ billingAddressId?: string | null;
6708
+ billingContactId?: string | null;
6082
6709
  id: string;
6083
- customerName?: string;
6084
- lineNo: number;
6085
- asnQuantity: number;
6086
- grnQuantity: number;
6087
- returnReason?: string;
6088
- attributeList?: string;
6089
- reasonDescription?: string;
6090
- productDescription?: string;
6091
- productCode?: string;
6092
- delivery?: ReturnedDeliveryItemDeliveryModel;
6710
+ deliveryAddressSource?: AddressSource | null;
6711
+ billingAddressSource?: AddressSource | null;
6712
+ }
6713
+ declare namespace SalesOrderHeaderView {
6093
6714
  }
6094
6715
 
6095
6716
  /**
@@ -6102,17 +6723,64 @@ interface ReturnedDeliveryItemView {
6102
6723
  * Do not edit the class manually.
6103
6724
  */
6104
6725
 
6105
- interface ReturnedDeliveryItems {
6726
+ interface SalesOrderItems {
6106
6727
  total: number;
6107
- data: Array<ReturnedDeliveryItemView>;
6728
+ data: Array<SalesOrderItemView>;
6108
6729
  }
6109
6730
 
6110
- declare class ReturnedItemsService extends BaseService {
6731
+ declare class SalesOrdersService extends BaseService {
6111
6732
  protected httpClient: HttpClient;
6112
6733
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
6113
6734
  /**
6114
- * Getting returnedItems
6115
- * @endpoint get /deliveryItems/returnedItems
6735
+ * Create a sales order
6736
+ * @endpoint post /salesOrders
6737
+ * @param salesOrderHeaderCreateModel
6738
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
6739
+ * @param reportProgress flag to report request and response progress.
6740
+ * @param options additional options
6741
+ */
6742
+ createSalesOrder(salesOrderHeaderCreateModel: SalesOrderHeaderCreateModel, observe?: 'body', reportProgress?: boolean, options?: {
6743
+ httpHeaderAccept?: 'application/json';
6744
+ context?: HttpContext;
6745
+ transferCache?: boolean;
6746
+ }): Observable<SalesOrderHeaderView>;
6747
+ createSalesOrder(salesOrderHeaderCreateModel: SalesOrderHeaderCreateModel, observe?: 'response', reportProgress?: boolean, options?: {
6748
+ httpHeaderAccept?: 'application/json';
6749
+ context?: HttpContext;
6750
+ transferCache?: boolean;
6751
+ }): Observable<HttpResponse<SalesOrderHeaderView>>;
6752
+ createSalesOrder(salesOrderHeaderCreateModel: SalesOrderHeaderCreateModel, observe?: 'events', reportProgress?: boolean, options?: {
6753
+ httpHeaderAccept?: 'application/json';
6754
+ context?: HttpContext;
6755
+ transferCache?: boolean;
6756
+ }): Observable<HttpEvent<SalesOrderHeaderView>>;
6757
+ /**
6758
+ * Getting sales order by id
6759
+ * @endpoint get /salesOrders/{id}
6760
+ * @param id
6761
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
6762
+ * @param reportProgress flag to report request and response progress.
6763
+ * @param options additional options
6764
+ */
6765
+ getSalesOrder(id: string, observe?: 'body', reportProgress?: boolean, options?: {
6766
+ httpHeaderAccept?: 'application/json';
6767
+ context?: HttpContext;
6768
+ transferCache?: boolean;
6769
+ }): Observable<SalesOrderHeaderView>;
6770
+ getSalesOrder(id: string, observe?: 'response', reportProgress?: boolean, options?: {
6771
+ httpHeaderAccept?: 'application/json';
6772
+ context?: HttpContext;
6773
+ transferCache?: boolean;
6774
+ }): Observable<HttpResponse<SalesOrderHeaderView>>;
6775
+ getSalesOrder(id: string, observe?: 'events', reportProgress?: boolean, options?: {
6776
+ httpHeaderAccept?: 'application/json';
6777
+ context?: HttpContext;
6778
+ transferCache?: boolean;
6779
+ }): Observable<HttpEvent<SalesOrderHeaderView>>;
6780
+ /**
6781
+ * Getting sales order items for a sales order
6782
+ * @endpoint get /salesOrders/{id}/items
6783
+ * @param id
6116
6784
  * @param $skip
6117
6785
  * @param $top
6118
6786
  * @param $orderby
@@ -6122,50 +6790,47 @@ declare class ReturnedItemsService extends BaseService {
6122
6790
  * @param reportProgress flag to report request and response progress.
6123
6791
  * @param options additional options
6124
6792
  */
6125
- getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
6793
+ getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
6126
6794
  httpHeaderAccept?: 'application/json';
6127
6795
  context?: HttpContext;
6128
6796
  transferCache?: boolean;
6129
- }): Observable<ReturnedDeliveryItems>;
6130
- getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
6797
+ }): Observable<SalesOrderItems>;
6798
+ getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
6131
6799
  httpHeaderAccept?: 'application/json';
6132
6800
  context?: HttpContext;
6133
6801
  transferCache?: boolean;
6134
- }): Observable<HttpResponse<ReturnedDeliveryItems>>;
6135
- getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
6802
+ }): Observable<HttpResponse<SalesOrderItems>>;
6803
+ getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
6136
6804
  httpHeaderAccept?: 'application/json';
6137
6805
  context?: HttpContext;
6138
6806
  transferCache?: boolean;
6139
- }): Observable<HttpEvent<ReturnedDeliveryItems>>;
6807
+ }): Observable<HttpEvent<SalesOrderItems>>;
6140
6808
  /**
6141
- * ReturnedItems list
6142
- * @endpoint get /deliveryItems/returnedItems/search
6143
- * @param $skip
6144
- * @param $top
6145
- * @param $orderby
6146
- * @param $filter
6147
- * @param searchTerm
6809
+ * Update a sales order
6810
+ * @endpoint put /salesOrders/{id}
6811
+ * @param id
6812
+ * @param salesOrderHeaderUpdateModel
6148
6813
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
6149
6814
  * @param reportProgress flag to report request and response progress.
6150
6815
  * @param options additional options
6151
6816
  */
6152
- getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
6817
+ updateSalesOrder(id: string, salesOrderHeaderUpdateModel: SalesOrderHeaderUpdateModel, observe?: 'body', reportProgress?: boolean, options?: {
6153
6818
  httpHeaderAccept?: 'application/json';
6154
6819
  context?: HttpContext;
6155
6820
  transferCache?: boolean;
6156
- }): Observable<ReturnedDeliveryItems>;
6157
- getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
6821
+ }): Observable<SalesOrderHeaderView>;
6822
+ updateSalesOrder(id: string, salesOrderHeaderUpdateModel: SalesOrderHeaderUpdateModel, observe?: 'response', reportProgress?: boolean, options?: {
6158
6823
  httpHeaderAccept?: 'application/json';
6159
6824
  context?: HttpContext;
6160
6825
  transferCache?: boolean;
6161
- }): Observable<HttpResponse<ReturnedDeliveryItems>>;
6162
- getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
6826
+ }): Observable<HttpResponse<SalesOrderHeaderView>>;
6827
+ updateSalesOrder(id: string, salesOrderHeaderUpdateModel: SalesOrderHeaderUpdateModel, observe?: 'events', reportProgress?: boolean, options?: {
6163
6828
  httpHeaderAccept?: 'application/json';
6164
6829
  context?: HttpContext;
6165
6830
  transferCache?: boolean;
6166
- }): Observable<HttpEvent<ReturnedDeliveryItems>>;
6167
- static ɵfac: i0.ɵɵFactoryDeclaration<ReturnedItemsService, [null, { optional: true; }, { optional: true; }]>;
6168
- static ɵprov: i0.ɵɵInjectableDeclaration<ReturnedItemsService>;
6831
+ }): Observable<HttpEvent<SalesOrderHeaderView>>;
6832
+ static ɵfac: i0.ɵɵFactoryDeclaration<SalesOrdersService, [null, { optional: true; }, { optional: true; }]>;
6833
+ static ɵprov: i0.ɵɵInjectableDeclaration<SalesOrdersService>;
6169
6834
  }
6170
6835
 
6171
6836
  /**
@@ -8768,7 +9433,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
8768
9433
  static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
8769
9434
  }
8770
9435
 
8771
- declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
9436
+ declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
8772
9437
 
8773
9438
  /**
8774
9439
  * Wms.API.Client
@@ -9023,6 +9688,49 @@ interface PrinterTrayDataModel {
9023
9688
  declare namespace PrinterTrayDataModel {
9024
9689
  }
9025
9690
 
9691
+ /**
9692
+ * Wms.API.Client
9693
+ *
9694
+ *
9695
+ *
9696
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9697
+ * https://openapi-generator.tech
9698
+ * Do not edit the class manually.
9699
+ */
9700
+
9701
+ interface SalesOrderHeaderDataModel {
9702
+ salesOrderNumber?: string | null;
9703
+ salesOrderStatus: OrderStatus;
9704
+ customerOrderReference?: string | null;
9705
+ orderType: OrderType;
9706
+ locationType?: LocationType | null;
9707
+ soDate?: string | null;
9708
+ shipToCompanyId?: string | null;
9709
+ shipToContactId?: string | null;
9710
+ deliveryAddressId: string;
9711
+ billingAddressId?: string | null;
9712
+ billingContactId?: string | null;
9713
+ }
9714
+ declare namespace SalesOrderHeaderDataModel {
9715
+ }
9716
+
9717
+ /**
9718
+ * Wms.API.Client
9719
+ *
9720
+ *
9721
+ *
9722
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9723
+ * https://openapi-generator.tech
9724
+ * Do not edit the class manually.
9725
+ */
9726
+ interface SalesOrderItemDataModel {
9727
+ salesOrderId: string;
9728
+ lineNo: number;
9729
+ productMasterId: string;
9730
+ productQuantityId: string;
9731
+ quantity: number;
9732
+ }
9733
+
9026
9734
  declare const BASE_PATH: InjectionToken<string>;
9027
9735
  declare const COLLECTION_FORMATS: {
9028
9736
  csv: string;
@@ -9041,5 +9749,5 @@ declare class ApiModule {
9041
9749
 
9042
9750
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
9043
9751
 
9044
- export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
9045
- export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
9752
+ export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrdersService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
9753
+ export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };