@indigina/wms-api 0.0.185 → 0.0.187
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/fesm2022/indigina-wms-api.mjs +274 -190
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +3 -2
- package/types/indigina-wms-api.d.ts +129 -62
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@indigina/wms-api",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.187",
|
|
4
4
|
"description": "OpenAPI client for @indigina/wms-api",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
],
|
|
14
14
|
"license": "Unlicense",
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@angular/core": "^
|
|
16
|
+
"@angular/core": "^22.0.0",
|
|
17
17
|
"rxjs": "^7.4.0"
|
|
18
18
|
},
|
|
19
19
|
"module": "fesm2022/indigina-wms-api.mjs",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
|
+
"type": "module",
|
|
31
32
|
"dependencies": {
|
|
32
33
|
"tslib": "^2.3.0"
|
|
33
34
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HttpParameterCodec,
|
|
1
|
+
import { HttpParameterCodec, HttpParams, HttpHeaders, HttpClient, HttpContext, HttpResponse, HttpEvent } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
4
|
import { InjectionToken, ModuleWithProviders, EnvironmentProviders } from '@angular/core';
|
|
@@ -101,6 +101,64 @@ interface Param {
|
|
|
101
101
|
dataFormat: DataFormat | undefined;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
+
declare enum QueryParamStyle {
|
|
105
|
+
Json = 0,
|
|
106
|
+
Form = 1,
|
|
107
|
+
DeepObject = 2,
|
|
108
|
+
SpaceDelimited = 3,
|
|
109
|
+
PipeDelimited = 4
|
|
110
|
+
}
|
|
111
|
+
type Delimiter = "," | " " | "|" | "\t";
|
|
112
|
+
interface ParamOptions {
|
|
113
|
+
/** When true, serialized as multiple repeated key=value pairs. When false, serialized as a single key with joined values using `delimiter`. */
|
|
114
|
+
explode?: boolean;
|
|
115
|
+
/** Delimiter used when explode=false. The delimiter itself is inserted unencoded between encoded values. */
|
|
116
|
+
delimiter?: Delimiter;
|
|
117
|
+
}
|
|
118
|
+
declare class OpenApiHttpParams {
|
|
119
|
+
private params;
|
|
120
|
+
private defaults;
|
|
121
|
+
private encoder;
|
|
122
|
+
/**
|
|
123
|
+
* @param encoder Parameter serializer
|
|
124
|
+
* @param defaults Global defaults used when a specific parameter has no explicit options.
|
|
125
|
+
* By OpenAPI default, explode is true for query params with style=form.
|
|
126
|
+
*/
|
|
127
|
+
constructor(encoder?: HttpParameterCodec, defaults?: {
|
|
128
|
+
explode?: boolean;
|
|
129
|
+
delimiter?: Delimiter;
|
|
130
|
+
});
|
|
131
|
+
private resolveOptions;
|
|
132
|
+
/**
|
|
133
|
+
* Replace the parameter's values and (optionally) its options.
|
|
134
|
+
* Options are stored per-parameter (not global).
|
|
135
|
+
*/
|
|
136
|
+
set(key: string, values: string[] | string, options?: ParamOptions): this;
|
|
137
|
+
/**
|
|
138
|
+
* Append a single value to the parameter. If the parameter didn't exist it will be created
|
|
139
|
+
* and use resolved options (global defaults merged with any provided options).
|
|
140
|
+
*/
|
|
141
|
+
append(key: string, value: string, options?: ParamOptions): this;
|
|
142
|
+
/**
|
|
143
|
+
* Serialize to a query string according to per-parameter OpenAPI options.
|
|
144
|
+
* - If explode=true for that parameter → repeated key=value pairs (each value encoded).
|
|
145
|
+
* - If explode=false for that parameter → single key=value where values are individually encoded
|
|
146
|
+
* and joined using the configured delimiter. The delimiter character is inserted AS-IS
|
|
147
|
+
* (not percent-encoded).
|
|
148
|
+
*/
|
|
149
|
+
toString(): string;
|
|
150
|
+
/**
|
|
151
|
+
* Return parameters as a plain record.
|
|
152
|
+
* - If a parameter has exactly one value, returns that value directly.
|
|
153
|
+
* - If a parameter has multiple values, returns a readonly array of values.
|
|
154
|
+
*/
|
|
155
|
+
toRecord(): Record<string, string | number | boolean | ReadonlyArray<string | number | boolean>>;
|
|
156
|
+
/**
|
|
157
|
+
* Return an Angular's HttpParams with an identity parameter codec as the parameters are already encoded.
|
|
158
|
+
*/
|
|
159
|
+
toHttpParams(): HttpParams;
|
|
160
|
+
}
|
|
161
|
+
|
|
104
162
|
interface ConfigurationParameters {
|
|
105
163
|
/**
|
|
106
164
|
* @deprecated Since 5.0. Use credentials instead
|
|
@@ -202,68 +260,10 @@ declare class Configuration {
|
|
|
202
260
|
isJsonMime(mime: string): boolean;
|
|
203
261
|
lookupCredential(key: string): string | undefined;
|
|
204
262
|
addCredentialToHeaders(credentialKey: string, headerName: string, headers: HttpHeaders, prefix?: string): HttpHeaders;
|
|
205
|
-
addCredentialToQuery(credentialKey: string, paramName: string, query:
|
|
263
|
+
addCredentialToQuery(credentialKey: string, paramName: string, query: OpenApiHttpParams): OpenApiHttpParams;
|
|
206
264
|
private defaultEncodeParam;
|
|
207
265
|
}
|
|
208
266
|
|
|
209
|
-
declare enum QueryParamStyle {
|
|
210
|
-
Json = 0,
|
|
211
|
-
Form = 1,
|
|
212
|
-
DeepObject = 2,
|
|
213
|
-
SpaceDelimited = 3,
|
|
214
|
-
PipeDelimited = 4
|
|
215
|
-
}
|
|
216
|
-
type Delimiter = "," | " " | "|" | "\t";
|
|
217
|
-
interface ParamOptions {
|
|
218
|
-
/** When true, serialized as multiple repeated key=value pairs. When false, serialized as a single key with joined values using `delimiter`. */
|
|
219
|
-
explode?: boolean;
|
|
220
|
-
/** Delimiter used when explode=false. The delimiter itself is inserted unencoded between encoded values. */
|
|
221
|
-
delimiter?: Delimiter;
|
|
222
|
-
}
|
|
223
|
-
declare class OpenApiHttpParams {
|
|
224
|
-
private params;
|
|
225
|
-
private defaults;
|
|
226
|
-
private encoder;
|
|
227
|
-
/**
|
|
228
|
-
* @param encoder Parameter serializer
|
|
229
|
-
* @param defaults Global defaults used when a specific parameter has no explicit options.
|
|
230
|
-
* By OpenAPI default, explode is true for query params with style=form.
|
|
231
|
-
*/
|
|
232
|
-
constructor(encoder?: HttpParameterCodec, defaults?: {
|
|
233
|
-
explode?: boolean;
|
|
234
|
-
delimiter?: Delimiter;
|
|
235
|
-
});
|
|
236
|
-
private resolveOptions;
|
|
237
|
-
/**
|
|
238
|
-
* Replace the parameter's values and (optionally) its options.
|
|
239
|
-
* Options are stored per-parameter (not global).
|
|
240
|
-
*/
|
|
241
|
-
set(key: string, values: string[] | string, options?: ParamOptions): this;
|
|
242
|
-
/**
|
|
243
|
-
* Append a single value to the parameter. If the parameter didn't exist it will be created
|
|
244
|
-
* and use resolved options (global defaults merged with any provided options).
|
|
245
|
-
*/
|
|
246
|
-
append(key: string, value: string, options?: ParamOptions): this;
|
|
247
|
-
/**
|
|
248
|
-
* Serialize to a query string according to per-parameter OpenAPI options.
|
|
249
|
-
* - If explode=true for that parameter → repeated key=value pairs (each value encoded).
|
|
250
|
-
* - If explode=false for that parameter → single key=value where values are individually encoded
|
|
251
|
-
* and joined using the configured delimiter. The delimiter character is inserted AS-IS
|
|
252
|
-
* (not percent-encoded).
|
|
253
|
-
*/
|
|
254
|
-
toString(): string;
|
|
255
|
-
/**
|
|
256
|
-
* Return parameters as a plain record.
|
|
257
|
-
* - If a parameter has exactly one value, returns that value directly.
|
|
258
|
-
* - If a parameter has multiple values, returns a readonly array of values.
|
|
259
|
-
*/
|
|
260
|
-
toRecord(): Record<string, string | number | boolean | ReadonlyArray<string | number | boolean>>;
|
|
261
|
-
/**
|
|
262
|
-
* Return an Angular's HttpParams with an identity parameter codec as the parameters are already encoded.
|
|
263
|
-
*/
|
|
264
|
-
toHttpParams(): HttpParams;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
267
|
/**
|
|
268
268
|
* Wms.API.Client
|
|
269
269
|
*
|
|
@@ -5599,6 +5599,73 @@ declare class HealthService extends BaseService {
|
|
|
5599
5599
|
static ɵprov: i0.ɵɵInjectableDeclaration<HealthService>;
|
|
5600
5600
|
}
|
|
5601
5601
|
|
|
5602
|
+
/**
|
|
5603
|
+
* Wms.API.Client
|
|
5604
|
+
*
|
|
5605
|
+
*
|
|
5606
|
+
*
|
|
5607
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5608
|
+
* https://openapi-generator.tech
|
|
5609
|
+
* Do not edit the class manually.
|
|
5610
|
+
*/
|
|
5611
|
+
declare const PrintLabelTemplates: {
|
|
5612
|
+
readonly BoxTemplate: "BoxTemplate";
|
|
5613
|
+
readonly BoxTemplateAbsolute: "BoxTemplateAbsolute";
|
|
5614
|
+
readonly Bpt: "Bpt";
|
|
5615
|
+
readonly ReturnLabel: "ReturnLabel";
|
|
5616
|
+
};
|
|
5617
|
+
type PrintLabelTemplates = typeof PrintLabelTemplates[keyof typeof PrintLabelTemplates];
|
|
5618
|
+
|
|
5619
|
+
/**
|
|
5620
|
+
* Wms.API.Client
|
|
5621
|
+
*
|
|
5622
|
+
*
|
|
5623
|
+
*
|
|
5624
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5625
|
+
* https://openapi-generator.tech
|
|
5626
|
+
* Do not edit the class manually.
|
|
5627
|
+
*/
|
|
5628
|
+
|
|
5629
|
+
interface LicencePlateLabelsGenerateModel {
|
|
5630
|
+
ids: Array<string>;
|
|
5631
|
+
qrCode: boolean;
|
|
5632
|
+
labelTemplate?: PrintLabelTemplates;
|
|
5633
|
+
isLicencePlate: boolean;
|
|
5634
|
+
printerId?: number | null;
|
|
5635
|
+
}
|
|
5636
|
+
declare namespace LicencePlateLabelsGenerateModel {
|
|
5637
|
+
}
|
|
5638
|
+
|
|
5639
|
+
declare class LicencePlateLabelsService extends BaseService {
|
|
5640
|
+
protected httpClient: HttpClient;
|
|
5641
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5642
|
+
/**
|
|
5643
|
+
* Generate and optionally print licence plate labels
|
|
5644
|
+
* @endpoint post /licencePlateLabels/print
|
|
5645
|
+
* @param licencePlateLabelsGenerateModel
|
|
5646
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5647
|
+
* @param reportProgress flag to report request and response progress.
|
|
5648
|
+
* @param options additional options
|
|
5649
|
+
*/
|
|
5650
|
+
printLicencePlateLabels(licencePlateLabelsGenerateModel: LicencePlateLabelsGenerateModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5651
|
+
httpHeaderAccept?: 'application/pdf';
|
|
5652
|
+
context?: HttpContext;
|
|
5653
|
+
transferCache?: boolean;
|
|
5654
|
+
}): Observable<Blob>;
|
|
5655
|
+
printLicencePlateLabels(licencePlateLabelsGenerateModel: LicencePlateLabelsGenerateModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5656
|
+
httpHeaderAccept?: 'application/pdf';
|
|
5657
|
+
context?: HttpContext;
|
|
5658
|
+
transferCache?: boolean;
|
|
5659
|
+
}): Observable<HttpResponse<Blob>>;
|
|
5660
|
+
printLicencePlateLabels(licencePlateLabelsGenerateModel: LicencePlateLabelsGenerateModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5661
|
+
httpHeaderAccept?: 'application/pdf';
|
|
5662
|
+
context?: HttpContext;
|
|
5663
|
+
transferCache?: boolean;
|
|
5664
|
+
}): Observable<HttpEvent<Blob>>;
|
|
5665
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LicencePlateLabelsService, [null, { optional: true; }, { optional: true; }]>;
|
|
5666
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LicencePlateLabelsService>;
|
|
5667
|
+
}
|
|
5668
|
+
|
|
5602
5669
|
/**
|
|
5603
5670
|
* Wms.API.Client
|
|
5604
5671
|
*
|
|
@@ -10766,7 +10833,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
10766
10833
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
10767
10834
|
}
|
|
10768
10835
|
|
|
10769
|
-
declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarrierServiceTypesService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountContinuousInventoryService | typeof CountRecordsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxTypesService | typeof DispatchBoxesService | typeof DispatchCarriersService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PackageTypesService | 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)[];
|
|
10836
|
+
declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarrierServiceTypesService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountContinuousInventoryService | typeof CountRecordsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxTypesService | typeof DispatchBoxesService | typeof DispatchCarriersService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateLabelsService | typeof LicencePlateSerialsService | typeof NotesService | typeof PackageTypesService | 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)[];
|
|
10770
10837
|
|
|
10771
10838
|
/**
|
|
10772
10839
|
* Wms.API.Client
|
|
@@ -11082,5 +11149,5 @@ declare class ApiModule {
|
|
|
11082
11149
|
|
|
11083
11150
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
11084
11151
|
|
|
11085
|
-
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarrierServiceTypesService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, 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, SalesOrderCompletionIssue, SalesOrderGridView, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrderTab, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, 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 };
|
|
11152
|
+
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarrierServiceTypesService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateLabelsGenerateModel, LicencePlateLabelsService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintLabelTemplates, 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, SalesOrderCompletionIssue, SalesOrderGridView, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrderTab, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, 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 };
|
|
11086
11153
|
export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServiceTypes, 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, CountContinuousInventories, CountContinuousInventory, CountContinuousInventoryClient, CountContinuousInventoryClients, CountContinuousInventoryGridView, CountRecords, CountingSummary, CreateCountContinuousInventory, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, 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, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, 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, SalesOrders, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UpdateCountContinuousInventory, 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 };
|