@indigina/wms-api 0.0.84 → 0.0.86
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 +49 -1
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +61 -20
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -522,8 +522,8 @@ declare class CarrierProviderIntegrationsService extends BaseService {
|
|
|
522
522
|
* Do not edit the class manually.
|
|
523
523
|
*/
|
|
524
524
|
interface Company {
|
|
525
|
-
id:
|
|
526
|
-
companyDescription
|
|
525
|
+
id: string;
|
|
526
|
+
companyDescription?: string | null;
|
|
527
527
|
companyCode: string;
|
|
528
528
|
}
|
|
529
529
|
|
|
@@ -2525,6 +2525,34 @@ interface ReplenishmentAccess {
|
|
|
2525
2525
|
systemReplenishment: boolean;
|
|
2526
2526
|
}
|
|
2527
2527
|
|
|
2528
|
+
/**
|
|
2529
|
+
* Wms.API.Client
|
|
2530
|
+
*
|
|
2531
|
+
*
|
|
2532
|
+
*
|
|
2533
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2534
|
+
* https://openapi-generator.tech
|
|
2535
|
+
* Do not edit the class manually.
|
|
2536
|
+
*/
|
|
2537
|
+
interface ReplenishmentAccessClient {
|
|
2538
|
+
clientId: string;
|
|
2539
|
+
}
|
|
2540
|
+
|
|
2541
|
+
/**
|
|
2542
|
+
* Wms.API.Client
|
|
2543
|
+
*
|
|
2544
|
+
*
|
|
2545
|
+
*
|
|
2546
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2547
|
+
* https://openapi-generator.tech
|
|
2548
|
+
* Do not edit the class manually.
|
|
2549
|
+
*/
|
|
2550
|
+
|
|
2551
|
+
interface ReplenishmentAccessClients {
|
|
2552
|
+
total: number;
|
|
2553
|
+
data: Array<ReplenishmentAccessClient>;
|
|
2554
|
+
}
|
|
2555
|
+
|
|
2528
2556
|
/**
|
|
2529
2557
|
* Wms.API.Client
|
|
2530
2558
|
*
|
|
@@ -2603,6 +2631,31 @@ declare class ReplenishmentService extends BaseService {
|
|
|
2603
2631
|
context?: HttpContext;
|
|
2604
2632
|
transferCache?: boolean;
|
|
2605
2633
|
}): Observable<HttpEvent<any>>;
|
|
2634
|
+
/**
|
|
2635
|
+
* Get list of replenishment access client
|
|
2636
|
+
* @param $skip
|
|
2637
|
+
* @param $top
|
|
2638
|
+
* @param $orderby
|
|
2639
|
+
* @param $filter
|
|
2640
|
+
* @param $search
|
|
2641
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2642
|
+
* @param reportProgress flag to report request and response progress.
|
|
2643
|
+
*/
|
|
2644
|
+
getAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2645
|
+
httpHeaderAccept?: 'application/json';
|
|
2646
|
+
context?: HttpContext;
|
|
2647
|
+
transferCache?: boolean;
|
|
2648
|
+
}): Observable<ReplenishmentAccessClients>;
|
|
2649
|
+
getAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2650
|
+
httpHeaderAccept?: 'application/json';
|
|
2651
|
+
context?: HttpContext;
|
|
2652
|
+
transferCache?: boolean;
|
|
2653
|
+
}): Observable<HttpResponse<ReplenishmentAccessClients>>;
|
|
2654
|
+
getAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2655
|
+
httpHeaderAccept?: 'application/json';
|
|
2656
|
+
context?: HttpContext;
|
|
2657
|
+
transferCache?: boolean;
|
|
2658
|
+
}): Observable<HttpEvent<ReplenishmentAccessClients>>;
|
|
2606
2659
|
/**
|
|
2607
2660
|
* Getting replenishment access
|
|
2608
2661
|
* @param $skip
|
|
@@ -2632,20 +2685,21 @@ declare class ReplenishmentService extends BaseService {
|
|
|
2632
2685
|
* Update an existing replenishment access
|
|
2633
2686
|
* @param id
|
|
2634
2687
|
* @param replenishmentAccess
|
|
2688
|
+
* @param propertiesToUpdate Array of property names to update
|
|
2635
2689
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2636
2690
|
* @param reportProgress flag to report request and response progress.
|
|
2637
2691
|
*/
|
|
2638
|
-
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2692
|
+
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2639
2693
|
httpHeaderAccept?: 'application/json';
|
|
2640
2694
|
context?: HttpContext;
|
|
2641
2695
|
transferCache?: boolean;
|
|
2642
2696
|
}): Observable<ReplenishmentAccess>;
|
|
2643
|
-
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2697
|
+
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2644
2698
|
httpHeaderAccept?: 'application/json';
|
|
2645
2699
|
context?: HttpContext;
|
|
2646
2700
|
transferCache?: boolean;
|
|
2647
2701
|
}): Observable<HttpResponse<ReplenishmentAccess>>;
|
|
2648
|
-
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2702
|
+
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2649
2703
|
httpHeaderAccept?: 'application/json';
|
|
2650
2704
|
context?: HttpContext;
|
|
2651
2705
|
transferCache?: boolean;
|
|
@@ -3009,6 +3063,7 @@ interface TaskOperation {
|
|
|
3009
3063
|
id?: number;
|
|
3010
3064
|
title: string;
|
|
3011
3065
|
notes: string;
|
|
3066
|
+
disabled?: boolean;
|
|
3012
3067
|
/**
|
|
3013
3068
|
* Indicates if the task operation has any user records associated with it.
|
|
3014
3069
|
*/
|
|
@@ -3822,20 +3877,6 @@ interface ModelError {
|
|
|
3822
3877
|
} | null;
|
|
3823
3878
|
}
|
|
3824
3879
|
|
|
3825
|
-
/**
|
|
3826
|
-
* Wms.API.Client
|
|
3827
|
-
*
|
|
3828
|
-
*
|
|
3829
|
-
*
|
|
3830
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3831
|
-
* https://openapi-generator.tech
|
|
3832
|
-
* Do not edit the class manually.
|
|
3833
|
-
*/
|
|
3834
|
-
interface ReplenishmentAccessView {
|
|
3835
|
-
id: string;
|
|
3836
|
-
clientId: string;
|
|
3837
|
-
}
|
|
3838
|
-
|
|
3839
3880
|
declare const BASE_PATH: InjectionToken<string>;
|
|
3840
3881
|
declare const COLLECTION_FORMATS: {
|
|
3841
3882
|
csv: string;
|
|
@@ -3855,4 +3896,4 @@ declare class ApiModule {
|
|
|
3855
3896
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
3856
3897
|
|
|
3857
3898
|
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CompaniesService, Configuration, CurrentUser, 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, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
3858
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, Dcs, Deliveries, DeliveryItems, DispatchItemView, DispatchItems, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess,
|
|
3899
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, 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 };
|