@indigina/wms-api 0.0.94 → 0.0.96
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 +216 -6
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +219 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -567,6 +567,7 @@ interface Channel {
|
|
|
567
567
|
* Do not edit the class manually.
|
|
568
568
|
*/
|
|
569
569
|
interface ProductMaster1 {
|
|
570
|
+
ownerCompanyId?: string;
|
|
570
571
|
productDescription?: string;
|
|
571
572
|
productCode?: string;
|
|
572
573
|
}
|
|
@@ -992,6 +993,69 @@ declare class DcLocationsService extends BaseService {
|
|
|
992
993
|
static ɵprov: i0.ɵɵInjectableDeclaration<DcLocationsService>;
|
|
993
994
|
}
|
|
994
995
|
|
|
996
|
+
/**
|
|
997
|
+
* Wms.API.Client
|
|
998
|
+
*
|
|
999
|
+
*
|
|
1000
|
+
*
|
|
1001
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1002
|
+
* https://openapi-generator.tech
|
|
1003
|
+
* Do not edit the class manually.
|
|
1004
|
+
*/
|
|
1005
|
+
declare const UnitOfMeasurementTypes: {
|
|
1006
|
+
readonly Inches: "Inches";
|
|
1007
|
+
readonly Kilogram: "Kilogram";
|
|
1008
|
+
readonly Centimeter: "Centimeter";
|
|
1009
|
+
readonly Pound: "Pound";
|
|
1010
|
+
readonly Cbm: "CBM";
|
|
1011
|
+
readonly Mtq: "MTQ";
|
|
1012
|
+
};
|
|
1013
|
+
type UnitOfMeasurementTypes = typeof UnitOfMeasurementTypes[keyof typeof UnitOfMeasurementTypes];
|
|
1014
|
+
|
|
1015
|
+
/**
|
|
1016
|
+
* Wms.API.Client
|
|
1017
|
+
*
|
|
1018
|
+
*
|
|
1019
|
+
*
|
|
1020
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1021
|
+
* https://openapi-generator.tech
|
|
1022
|
+
* Do not edit the class manually.
|
|
1023
|
+
*/
|
|
1024
|
+
|
|
1025
|
+
interface MeasurementModel {
|
|
1026
|
+
weightUnitOfMeasure?: UnitOfMeasurementTypes;
|
|
1027
|
+
dimensionUnitOfMeasure?: UnitOfMeasurementTypes;
|
|
1028
|
+
}
|
|
1029
|
+
declare namespace MeasurementModel {
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
declare class DcUnitOfMeasurementService extends BaseService {
|
|
1033
|
+
protected httpClient: HttpClient;
|
|
1034
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
1035
|
+
/**
|
|
1036
|
+
* Getting dcUnitOfMeasurement
|
|
1037
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1038
|
+
* @param reportProgress flag to report request and response progress.
|
|
1039
|
+
*/
|
|
1040
|
+
getDcUnitOfMeasurement(observe?: 'body', reportProgress?: boolean, options?: {
|
|
1041
|
+
httpHeaderAccept?: 'application/json';
|
|
1042
|
+
context?: HttpContext;
|
|
1043
|
+
transferCache?: boolean;
|
|
1044
|
+
}): Observable<MeasurementModel>;
|
|
1045
|
+
getDcUnitOfMeasurement(observe?: 'response', reportProgress?: boolean, options?: {
|
|
1046
|
+
httpHeaderAccept?: 'application/json';
|
|
1047
|
+
context?: HttpContext;
|
|
1048
|
+
transferCache?: boolean;
|
|
1049
|
+
}): Observable<HttpResponse<MeasurementModel>>;
|
|
1050
|
+
getDcUnitOfMeasurement(observe?: 'events', reportProgress?: boolean, options?: {
|
|
1051
|
+
httpHeaderAccept?: 'application/json';
|
|
1052
|
+
context?: HttpContext;
|
|
1053
|
+
transferCache?: boolean;
|
|
1054
|
+
}): Observable<HttpEvent<MeasurementModel>>;
|
|
1055
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DcUnitOfMeasurementService, [null, { optional: true; }, { optional: true; }]>;
|
|
1056
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DcUnitOfMeasurementService>;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
995
1059
|
/**
|
|
996
1060
|
* Wms.API.Client
|
|
997
1061
|
*
|
|
@@ -1410,6 +1474,44 @@ interface Delivery {
|
|
|
1410
1474
|
declare namespace Delivery {
|
|
1411
1475
|
}
|
|
1412
1476
|
|
|
1477
|
+
/**
|
|
1478
|
+
* Wms.API.Client
|
|
1479
|
+
*
|
|
1480
|
+
*
|
|
1481
|
+
*
|
|
1482
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1483
|
+
* https://openapi-generator.tech
|
|
1484
|
+
* Do not edit the class manually.
|
|
1485
|
+
*/
|
|
1486
|
+
|
|
1487
|
+
interface DeliveryDataModel {
|
|
1488
|
+
customerCompanyId?: string | null;
|
|
1489
|
+
supplierCompanyId?: string | null;
|
|
1490
|
+
useDirectivePutAway: boolean;
|
|
1491
|
+
ownerCompanyId?: string | null;
|
|
1492
|
+
deliveryNumber?: string | null;
|
|
1493
|
+
hbRef: string;
|
|
1494
|
+
asnDate?: string | null;
|
|
1495
|
+
warehouseEtaDate?: string | null;
|
|
1496
|
+
deliveryType: DeliveryType;
|
|
1497
|
+
deliveryStatus: OrderStatus;
|
|
1498
|
+
dcId?: string | null;
|
|
1499
|
+
qcType?: QcType;
|
|
1500
|
+
qcRequired: boolean;
|
|
1501
|
+
createdDate: string;
|
|
1502
|
+
arrivedDate?: string | null;
|
|
1503
|
+
receivingStartDate?: string | null;
|
|
1504
|
+
confirmedDate?: string | null;
|
|
1505
|
+
recordType: RecordType;
|
|
1506
|
+
receiptReasonId?: string | null;
|
|
1507
|
+
supplierCompliance?: boolean | null;
|
|
1508
|
+
directivePutAwayComplete: boolean;
|
|
1509
|
+
isStockAdjustment?: boolean | null;
|
|
1510
|
+
createdFromShortReceipt: boolean;
|
|
1511
|
+
}
|
|
1512
|
+
declare namespace DeliveryDataModel {
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1413
1515
|
/**
|
|
1414
1516
|
* Wms.API.Client
|
|
1415
1517
|
*
|
|
@@ -1512,21 +1614,21 @@ declare class DeliveriesService extends BaseService {
|
|
|
1512
1614
|
}): Observable<HttpEvent<any>>;
|
|
1513
1615
|
/**
|
|
1514
1616
|
* Create a specific delivery
|
|
1515
|
-
* @param
|
|
1617
|
+
* @param deliveryDataModel
|
|
1516
1618
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1517
1619
|
* @param reportProgress flag to report request and response progress.
|
|
1518
1620
|
*/
|
|
1519
|
-
createDelivery(
|
|
1621
|
+
createDelivery(deliveryDataModel: DeliveryDataModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1520
1622
|
httpHeaderAccept?: 'application/json';
|
|
1521
1623
|
context?: HttpContext;
|
|
1522
1624
|
transferCache?: boolean;
|
|
1523
1625
|
}): Observable<Delivery>;
|
|
1524
|
-
createDelivery(
|
|
1626
|
+
createDelivery(deliveryDataModel: DeliveryDataModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1525
1627
|
httpHeaderAccept?: 'application/json';
|
|
1526
1628
|
context?: HttpContext;
|
|
1527
1629
|
transferCache?: boolean;
|
|
1528
1630
|
}): Observable<HttpResponse<Delivery>>;
|
|
1529
|
-
createDelivery(
|
|
1631
|
+
createDelivery(deliveryDataModel: DeliveryDataModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1530
1632
|
httpHeaderAccept?: 'application/json';
|
|
1531
1633
|
context?: HttpContext;
|
|
1532
1634
|
transferCache?: boolean;
|
|
@@ -1915,6 +2017,116 @@ declare class DeliveryItemsService extends BaseService {
|
|
|
1915
2017
|
static ɵprov: i0.ɵɵInjectableDeclaration<DeliveryItemsService>;
|
|
1916
2018
|
}
|
|
1917
2019
|
|
|
2020
|
+
/**
|
|
2021
|
+
* Wms.API.Client
|
|
2022
|
+
*
|
|
2023
|
+
*
|
|
2024
|
+
*
|
|
2025
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2026
|
+
* https://openapi-generator.tech
|
|
2027
|
+
* Do not edit the class manually.
|
|
2028
|
+
*/
|
|
2029
|
+
interface DispatchBoxDispatchHeaderModel {
|
|
2030
|
+
ownerCompanyId?: string;
|
|
2031
|
+
dispatchNumber: string;
|
|
2032
|
+
salesOrderNumberList: string;
|
|
2033
|
+
}
|
|
2034
|
+
|
|
2035
|
+
/**
|
|
2036
|
+
* Wms.API.Client
|
|
2037
|
+
*
|
|
2038
|
+
*
|
|
2039
|
+
*
|
|
2040
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2041
|
+
* https://openapi-generator.tech
|
|
2042
|
+
* Do not edit the class manually.
|
|
2043
|
+
*/
|
|
2044
|
+
|
|
2045
|
+
interface DispatchBoxViewModel {
|
|
2046
|
+
id: string;
|
|
2047
|
+
number: number;
|
|
2048
|
+
companyDescription: string;
|
|
2049
|
+
length?: number | null;
|
|
2050
|
+
width?: number | null;
|
|
2051
|
+
height?: number | null;
|
|
2052
|
+
weight?: number | null;
|
|
2053
|
+
dispatchBoxTotalQuantity: number;
|
|
2054
|
+
createdDate: string;
|
|
2055
|
+
dispatchHeader?: DispatchBoxDispatchHeaderModel;
|
|
2056
|
+
}
|
|
2057
|
+
|
|
2058
|
+
/**
|
|
2059
|
+
* Wms.API.Client
|
|
2060
|
+
*
|
|
2061
|
+
*
|
|
2062
|
+
*
|
|
2063
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2064
|
+
* https://openapi-generator.tech
|
|
2065
|
+
* Do not edit the class manually.
|
|
2066
|
+
*/
|
|
2067
|
+
|
|
2068
|
+
interface DispatchBoxes {
|
|
2069
|
+
total: number;
|
|
2070
|
+
data: Array<DispatchBoxViewModel>;
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
declare class DispatchBoxesService extends BaseService {
|
|
2074
|
+
protected httpClient: HttpClient;
|
|
2075
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2076
|
+
/**
|
|
2077
|
+
* Getting dispatchBoxes
|
|
2078
|
+
* @param $skip
|
|
2079
|
+
* @param $top
|
|
2080
|
+
* @param $orderby
|
|
2081
|
+
* @param $filter
|
|
2082
|
+
* @param $search
|
|
2083
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2084
|
+
* @param reportProgress flag to report request and response progress.
|
|
2085
|
+
*/
|
|
2086
|
+
getDispatchBoxes($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2087
|
+
httpHeaderAccept?: 'application/json';
|
|
2088
|
+
context?: HttpContext;
|
|
2089
|
+
transferCache?: boolean;
|
|
2090
|
+
}): Observable<DispatchBoxes>;
|
|
2091
|
+
getDispatchBoxes($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2092
|
+
httpHeaderAccept?: 'application/json';
|
|
2093
|
+
context?: HttpContext;
|
|
2094
|
+
transferCache?: boolean;
|
|
2095
|
+
}): Observable<HttpResponse<DispatchBoxes>>;
|
|
2096
|
+
getDispatchBoxes($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2097
|
+
httpHeaderAccept?: 'application/json';
|
|
2098
|
+
context?: HttpContext;
|
|
2099
|
+
transferCache?: boolean;
|
|
2100
|
+
}): Observable<HttpEvent<DispatchBoxes>>;
|
|
2101
|
+
/**
|
|
2102
|
+
* DispatchBoxes list
|
|
2103
|
+
* @param $skip
|
|
2104
|
+
* @param $top
|
|
2105
|
+
* @param $orderby
|
|
2106
|
+
* @param $filter
|
|
2107
|
+
* @param searchTerm
|
|
2108
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2109
|
+
* @param reportProgress flag to report request and response progress.
|
|
2110
|
+
*/
|
|
2111
|
+
getDispatchBoxesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2112
|
+
httpHeaderAccept?: 'application/json';
|
|
2113
|
+
context?: HttpContext;
|
|
2114
|
+
transferCache?: boolean;
|
|
2115
|
+
}): Observable<DispatchBoxes>;
|
|
2116
|
+
getDispatchBoxesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2117
|
+
httpHeaderAccept?: 'application/json';
|
|
2118
|
+
context?: HttpContext;
|
|
2119
|
+
transferCache?: boolean;
|
|
2120
|
+
}): Observable<HttpResponse<DispatchBoxes>>;
|
|
2121
|
+
getDispatchBoxesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2122
|
+
httpHeaderAccept?: 'application/json';
|
|
2123
|
+
context?: HttpContext;
|
|
2124
|
+
transferCache?: boolean;
|
|
2125
|
+
}): Observable<HttpEvent<DispatchBoxes>>;
|
|
2126
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DispatchBoxesService, [null, { optional: true; }, { optional: true; }]>;
|
|
2127
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchBoxesService>;
|
|
2128
|
+
}
|
|
2129
|
+
|
|
1918
2130
|
/**
|
|
1919
2131
|
* Wms.API.Client
|
|
1920
2132
|
*
|
|
@@ -4210,7 +4422,7 @@ declare class UsersInternalService extends BaseService {
|
|
|
4210
4422
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
|
|
4211
4423
|
}
|
|
4212
4424
|
|
|
4213
|
-
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
|
|
4425
|
+
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
|
|
4214
4426
|
|
|
4215
4427
|
/**
|
|
4216
4428
|
* Wms.API.Client
|
|
@@ -4395,5 +4607,5 @@ declare class ApiModule {
|
|
|
4395
4607
|
|
|
4396
4608
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
4397
4609
|
|
|
4398
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcsService, DeliveriesService, Delivery, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchGridView, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, HealthService, LocationType, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
4399
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchItemView, DispatchItems, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentSummary, Report, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
|
|
4610
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
4611
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemView, DispatchItems, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentSummary, Report, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
|