@indigina/wms-api 0.0.96 → 0.0.98
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 +117 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +119 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3346,6 +3346,122 @@ 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
|
+
|
|
3379
|
+
interface ReturnedDeliveryItemView {
|
|
3380
|
+
id: string;
|
|
3381
|
+
customerName?: string;
|
|
3382
|
+
lineNo: number;
|
|
3383
|
+
asnQuantity: number;
|
|
3384
|
+
grnQuantity: number;
|
|
3385
|
+
returnReason?: string;
|
|
3386
|
+
attributeList?: string;
|
|
3387
|
+
reasonDescription?: string;
|
|
3388
|
+
productDescription?: string;
|
|
3389
|
+
productCode?: string;
|
|
3390
|
+
delivery?: ReturnedDeliveryItemDeliveryModel;
|
|
3391
|
+
}
|
|
3392
|
+
|
|
3393
|
+
/**
|
|
3394
|
+
* Wms.API.Client
|
|
3395
|
+
*
|
|
3396
|
+
*
|
|
3397
|
+
*
|
|
3398
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3399
|
+
* https://openapi-generator.tech
|
|
3400
|
+
* Do not edit the class manually.
|
|
3401
|
+
*/
|
|
3402
|
+
|
|
3403
|
+
interface ReturnedDeliveryItems {
|
|
3404
|
+
total: number;
|
|
3405
|
+
data: Array<ReturnedDeliveryItemView>;
|
|
3406
|
+
}
|
|
3407
|
+
|
|
3408
|
+
declare class ReturnedItemsService extends BaseService {
|
|
3409
|
+
protected httpClient: HttpClient;
|
|
3410
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3411
|
+
/**
|
|
3412
|
+
* Getting returnedItems
|
|
3413
|
+
* @param $skip
|
|
3414
|
+
* @param $top
|
|
3415
|
+
* @param $orderby
|
|
3416
|
+
* @param $filter
|
|
3417
|
+
* @param $search
|
|
3418
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3419
|
+
* @param reportProgress flag to report request and response progress.
|
|
3420
|
+
*/
|
|
3421
|
+
getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3422
|
+
httpHeaderAccept?: 'application/json';
|
|
3423
|
+
context?: HttpContext;
|
|
3424
|
+
transferCache?: boolean;
|
|
3425
|
+
}): Observable<ReturnedDeliveryItems>;
|
|
3426
|
+
getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3427
|
+
httpHeaderAccept?: 'application/json';
|
|
3428
|
+
context?: HttpContext;
|
|
3429
|
+
transferCache?: boolean;
|
|
3430
|
+
}): Observable<HttpResponse<ReturnedDeliveryItems>>;
|
|
3431
|
+
getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3432
|
+
httpHeaderAccept?: 'application/json';
|
|
3433
|
+
context?: HttpContext;
|
|
3434
|
+
transferCache?: boolean;
|
|
3435
|
+
}): Observable<HttpEvent<ReturnedDeliveryItems>>;
|
|
3436
|
+
/**
|
|
3437
|
+
* ReturnedItems list
|
|
3438
|
+
* @param $skip
|
|
3439
|
+
* @param $top
|
|
3440
|
+
* @param $orderby
|
|
3441
|
+
* @param $filter
|
|
3442
|
+
* @param searchTerm
|
|
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
|
+
getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3447
|
+
httpHeaderAccept?: 'application/json';
|
|
3448
|
+
context?: HttpContext;
|
|
3449
|
+
transferCache?: boolean;
|
|
3450
|
+
}): Observable<ReturnedDeliveryItems>;
|
|
3451
|
+
getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3452
|
+
httpHeaderAccept?: 'application/json';
|
|
3453
|
+
context?: HttpContext;
|
|
3454
|
+
transferCache?: boolean;
|
|
3455
|
+
}): Observable<HttpResponse<ReturnedDeliveryItems>>;
|
|
3456
|
+
getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3457
|
+
httpHeaderAccept?: 'application/json';
|
|
3458
|
+
context?: HttpContext;
|
|
3459
|
+
transferCache?: boolean;
|
|
3460
|
+
}): Observable<HttpEvent<ReturnedDeliveryItems>>;
|
|
3461
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReturnedItemsService, [null, { optional: true; }, { optional: true; }]>;
|
|
3462
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ReturnedItemsService>;
|
|
3463
|
+
}
|
|
3464
|
+
|
|
3349
3465
|
/**
|
|
3350
3466
|
* Wms.API.Client
|
|
3351
3467
|
*
|
|
@@ -4422,7 +4538,7 @@ declare class UsersInternalService extends BaseService {
|
|
|
4422
4538
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
|
|
4423
4539
|
}
|
|
4424
4540
|
|
|
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)[];
|
|
4541
|
+
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
4542
|
|
|
4427
4543
|
/**
|
|
4428
4544
|
* Wms.API.Client
|
|
@@ -4607,5 +4723,5 @@ declare class ApiModule {
|
|
|
4607
4723
|
|
|
4608
4724
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
4609
4725
|
|
|
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 };
|
|
4726
|
+
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 };
|
|
4727
|
+
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, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
|