@indigina/wms-api 0.0.92 → 0.0.93
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 +127 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +74 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -512,6 +512,77 @@ declare class CarrierProviderIntegrationsService extends BaseService {
|
|
|
512
512
|
static ɵprov: i0.ɵɵInjectableDeclaration<CarrierProviderIntegrationsService>;
|
|
513
513
|
}
|
|
514
514
|
|
|
515
|
+
/**
|
|
516
|
+
* Wms.API.Client
|
|
517
|
+
*
|
|
518
|
+
*
|
|
519
|
+
*
|
|
520
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
521
|
+
* https://openapi-generator.tech
|
|
522
|
+
* Do not edit the class manually.
|
|
523
|
+
*/
|
|
524
|
+
interface CartonDeliveryItems {
|
|
525
|
+
total: number;
|
|
526
|
+
data: Array<object>;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
declare class CartonDeliveryItemsService extends BaseService {
|
|
530
|
+
protected httpClient: HttpClient;
|
|
531
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
532
|
+
/**
|
|
533
|
+
* Getting cartonDeliveryItems
|
|
534
|
+
* @param $skip
|
|
535
|
+
* @param $top
|
|
536
|
+
* @param $orderby
|
|
537
|
+
* @param $filter
|
|
538
|
+
* @param $search
|
|
539
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
540
|
+
* @param reportProgress flag to report request and response progress.
|
|
541
|
+
*/
|
|
542
|
+
getCartonDeliveryItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
543
|
+
httpHeaderAccept?: 'application/json';
|
|
544
|
+
context?: HttpContext;
|
|
545
|
+
transferCache?: boolean;
|
|
546
|
+
}): Observable<CartonDeliveryItems>;
|
|
547
|
+
getCartonDeliveryItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
548
|
+
httpHeaderAccept?: 'application/json';
|
|
549
|
+
context?: HttpContext;
|
|
550
|
+
transferCache?: boolean;
|
|
551
|
+
}): Observable<HttpResponse<CartonDeliveryItems>>;
|
|
552
|
+
getCartonDeliveryItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
553
|
+
httpHeaderAccept?: 'application/json';
|
|
554
|
+
context?: HttpContext;
|
|
555
|
+
transferCache?: boolean;
|
|
556
|
+
}): Observable<HttpEvent<CartonDeliveryItems>>;
|
|
557
|
+
/**
|
|
558
|
+
* CartonDeliveryItems list
|
|
559
|
+
* @param $skip
|
|
560
|
+
* @param $top
|
|
561
|
+
* @param $orderby
|
|
562
|
+
* @param $filter
|
|
563
|
+
* @param searchTerm
|
|
564
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
565
|
+
* @param reportProgress flag to report request and response progress.
|
|
566
|
+
*/
|
|
567
|
+
getCartonDeliveryItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
568
|
+
httpHeaderAccept?: 'application/json';
|
|
569
|
+
context?: HttpContext;
|
|
570
|
+
transferCache?: boolean;
|
|
571
|
+
}): Observable<CartonDeliveryItems>;
|
|
572
|
+
getCartonDeliveryItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
573
|
+
httpHeaderAccept?: 'application/json';
|
|
574
|
+
context?: HttpContext;
|
|
575
|
+
transferCache?: boolean;
|
|
576
|
+
}): Observable<HttpResponse<CartonDeliveryItems>>;
|
|
577
|
+
getCartonDeliveryItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
578
|
+
httpHeaderAccept?: 'application/json';
|
|
579
|
+
context?: HttpContext;
|
|
580
|
+
transferCache?: boolean;
|
|
581
|
+
}): Observable<HttpEvent<CartonDeliveryItems>>;
|
|
582
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CartonDeliveryItemsService, [null, { optional: true; }, { optional: true; }]>;
|
|
583
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CartonDeliveryItemsService>;
|
|
584
|
+
}
|
|
585
|
+
|
|
515
586
|
/**
|
|
516
587
|
* Wms.API.Client
|
|
517
588
|
*
|
|
@@ -3930,7 +4001,7 @@ declare class UsersInternalService extends BaseService {
|
|
|
3930
4001
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
|
|
3931
4002
|
}
|
|
3932
4003
|
|
|
3933
|
-
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | 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)[];
|
|
4004
|
+
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)[];
|
|
3934
4005
|
|
|
3935
4006
|
/**
|
|
3936
4007
|
* Wms.API.Client
|
|
@@ -4062,5 +4133,5 @@ declare class ApiModule {
|
|
|
4062
4133
|
|
|
4063
4134
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
4064
4135
|
|
|
4065
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationsService, DcsService, DeliveriesService, Delivery, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchGridView, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, HealthService, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
4066
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, Cartons, 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, 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 };
|
|
4136
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationsService, DcsService, DeliveriesService, Delivery, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchGridView, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, HealthService, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
4137
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItems, Cartons, 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, 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 };
|