@indigina/wms-api 0.0.95 → 0.0.97
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 +137 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +146 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1488,8 +1488,8 @@ interface DeliveryDataModel {
|
|
|
1488
1488
|
customerCompanyId?: string | null;
|
|
1489
1489
|
supplierCompanyId?: string | null;
|
|
1490
1490
|
useDirectivePutAway: boolean;
|
|
1491
|
-
ownerCompanyId
|
|
1492
|
-
deliveryNumber
|
|
1491
|
+
ownerCompanyId?: string | null;
|
|
1492
|
+
deliveryNumber?: string | null;
|
|
1493
1493
|
hbRef: string;
|
|
1494
1494
|
asnDate?: string | null;
|
|
1495
1495
|
warehouseEtaDate?: string | null;
|
|
@@ -3346,6 +3346,147 @@ declare class ReplenishmentService extends BaseService {
|
|
|
3346
3346
|
static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentService>;
|
|
3347
3347
|
}
|
|
3348
3348
|
|
|
3349
|
+
/**
|
|
3350
|
+
* Wms.API.Client
|
|
3351
|
+
*
|
|
3352
|
+
*
|
|
3353
|
+
*
|
|
3354
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3355
|
+
* https://openapi-generator.tech
|
|
3356
|
+
* Do not edit the class manually.
|
|
3357
|
+
*/
|
|
3358
|
+
|
|
3359
|
+
interface ReturnedDeliveryItemDeliveryModel {
|
|
3360
|
+
customerCompanyId?: string | null;
|
|
3361
|
+
deliveryNumber?: string;
|
|
3362
|
+
hbRef?: string;
|
|
3363
|
+
createdDate: string;
|
|
3364
|
+
deliveryStatus: OrderStatus;
|
|
3365
|
+
}
|
|
3366
|
+
declare namespace ReturnedDeliveryItemDeliveryModel {
|
|
3367
|
+
}
|
|
3368
|
+
|
|
3369
|
+
/**
|
|
3370
|
+
* Wms.API.Client
|
|
3371
|
+
*
|
|
3372
|
+
*
|
|
3373
|
+
*
|
|
3374
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3375
|
+
* https://openapi-generator.tech
|
|
3376
|
+
* Do not edit the class manually.
|
|
3377
|
+
*/
|
|
3378
|
+
interface ReasonLookup {
|
|
3379
|
+
description?: string;
|
|
3380
|
+
}
|
|
3381
|
+
|
|
3382
|
+
/**
|
|
3383
|
+
* Wms.API.Client
|
|
3384
|
+
*
|
|
3385
|
+
*
|
|
3386
|
+
*
|
|
3387
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3388
|
+
* https://openapi-generator.tech
|
|
3389
|
+
* Do not edit the class manually.
|
|
3390
|
+
*/
|
|
3391
|
+
interface ReturnedDeliveryItemProductMasterSystemEanModel {
|
|
3392
|
+
attributeList?: string;
|
|
3393
|
+
}
|
|
3394
|
+
|
|
3395
|
+
/**
|
|
3396
|
+
* Wms.API.Client
|
|
3397
|
+
*
|
|
3398
|
+
*
|
|
3399
|
+
*
|
|
3400
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3401
|
+
* https://openapi-generator.tech
|
|
3402
|
+
* Do not edit the class manually.
|
|
3403
|
+
*/
|
|
3404
|
+
|
|
3405
|
+
interface ReturnedDeliveryItemView {
|
|
3406
|
+
id: string;
|
|
3407
|
+
customerName?: string;
|
|
3408
|
+
lineNo: number;
|
|
3409
|
+
asnQuantity: number;
|
|
3410
|
+
grnQuantity: number;
|
|
3411
|
+
returnReason?: string;
|
|
3412
|
+
productMasterSystemEan?: ReturnedDeliveryItemProductMasterSystemEanModel;
|
|
3413
|
+
productMaster?: ProductMaster1;
|
|
3414
|
+
delivery?: ReturnedDeliveryItemDeliveryModel;
|
|
3415
|
+
reasonLookup?: ReasonLookup;
|
|
3416
|
+
}
|
|
3417
|
+
|
|
3418
|
+
/**
|
|
3419
|
+
* Wms.API.Client
|
|
3420
|
+
*
|
|
3421
|
+
*
|
|
3422
|
+
*
|
|
3423
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3424
|
+
* https://openapi-generator.tech
|
|
3425
|
+
* Do not edit the class manually.
|
|
3426
|
+
*/
|
|
3427
|
+
|
|
3428
|
+
interface ReturnedDeliveryItems {
|
|
3429
|
+
total: number;
|
|
3430
|
+
data: Array<ReturnedDeliveryItemView>;
|
|
3431
|
+
}
|
|
3432
|
+
|
|
3433
|
+
declare class ReturnedItemsService extends BaseService {
|
|
3434
|
+
protected httpClient: HttpClient;
|
|
3435
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3436
|
+
/**
|
|
3437
|
+
* Getting returnedItems
|
|
3438
|
+
* @param $skip
|
|
3439
|
+
* @param $top
|
|
3440
|
+
* @param $orderby
|
|
3441
|
+
* @param $filter
|
|
3442
|
+
* @param $search
|
|
3443
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3444
|
+
* @param reportProgress flag to report request and response progress.
|
|
3445
|
+
*/
|
|
3446
|
+
getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3447
|
+
httpHeaderAccept?: 'application/json';
|
|
3448
|
+
context?: HttpContext;
|
|
3449
|
+
transferCache?: boolean;
|
|
3450
|
+
}): Observable<ReturnedDeliveryItems>;
|
|
3451
|
+
getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3452
|
+
httpHeaderAccept?: 'application/json';
|
|
3453
|
+
context?: HttpContext;
|
|
3454
|
+
transferCache?: boolean;
|
|
3455
|
+
}): Observable<HttpResponse<ReturnedDeliveryItems>>;
|
|
3456
|
+
getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3457
|
+
httpHeaderAccept?: 'application/json';
|
|
3458
|
+
context?: HttpContext;
|
|
3459
|
+
transferCache?: boolean;
|
|
3460
|
+
}): Observable<HttpEvent<ReturnedDeliveryItems>>;
|
|
3461
|
+
/**
|
|
3462
|
+
* ReturnedItems list
|
|
3463
|
+
* @param $skip
|
|
3464
|
+
* @param $top
|
|
3465
|
+
* @param $orderby
|
|
3466
|
+
* @param $filter
|
|
3467
|
+
* @param searchTerm
|
|
3468
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3469
|
+
* @param reportProgress flag to report request and response progress.
|
|
3470
|
+
*/
|
|
3471
|
+
getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3472
|
+
httpHeaderAccept?: 'application/json';
|
|
3473
|
+
context?: HttpContext;
|
|
3474
|
+
transferCache?: boolean;
|
|
3475
|
+
}): Observable<ReturnedDeliveryItems>;
|
|
3476
|
+
getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3477
|
+
httpHeaderAccept?: 'application/json';
|
|
3478
|
+
context?: HttpContext;
|
|
3479
|
+
transferCache?: boolean;
|
|
3480
|
+
}): Observable<HttpResponse<ReturnedDeliveryItems>>;
|
|
3481
|
+
getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3482
|
+
httpHeaderAccept?: 'application/json';
|
|
3483
|
+
context?: HttpContext;
|
|
3484
|
+
transferCache?: boolean;
|
|
3485
|
+
}): Observable<HttpEvent<ReturnedDeliveryItems>>;
|
|
3486
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReturnedItemsService, [null, { optional: true; }, { optional: true; }]>;
|
|
3487
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ReturnedItemsService>;
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3349
3490
|
/**
|
|
3350
3491
|
* Wms.API.Client
|
|
3351
3492
|
*
|
|
@@ -4422,7 +4563,7 @@ declare class UsersInternalService extends BaseService {
|
|
|
4422
4563
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
|
|
4423
4564
|
}
|
|
4424
4565
|
|
|
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)[];
|
|
4566
|
+
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 ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
|
|
4426
4567
|
|
|
4427
4568
|
/**
|
|
4428
4569
|
* Wms.API.Client
|
|
@@ -4607,5 +4748,5 @@ declare class ApiModule {
|
|
|
4607
4748
|
|
|
4608
4749
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
4609
4750
|
|
|
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 };
|
|
4751
|
+
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, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
4752
|
+
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, ReasonLookup, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentSummary, Report, ReturnedDeliveryItemProductMasterSystemEanModel, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
|