@indigina/wms-api 0.0.85 → 0.0.87
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
|
|
|
@@ -2271,6 +2271,7 @@ declare class NotesService extends BaseService {
|
|
|
2271
2271
|
*/
|
|
2272
2272
|
interface UserPermissions {
|
|
2273
2273
|
permissions: Array<string>;
|
|
2274
|
+
wms: Array<string>;
|
|
2274
2275
|
}
|
|
2275
2276
|
|
|
2276
2277
|
declare class PermissionsService extends BaseService {
|
|
@@ -2525,6 +2526,34 @@ interface ReplenishmentAccess {
|
|
|
2525
2526
|
systemReplenishment: boolean;
|
|
2526
2527
|
}
|
|
2527
2528
|
|
|
2529
|
+
/**
|
|
2530
|
+
* Wms.API.Client
|
|
2531
|
+
*
|
|
2532
|
+
*
|
|
2533
|
+
*
|
|
2534
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2535
|
+
* https://openapi-generator.tech
|
|
2536
|
+
* Do not edit the class manually.
|
|
2537
|
+
*/
|
|
2538
|
+
interface ReplenishmentAccessClient {
|
|
2539
|
+
clientId: string;
|
|
2540
|
+
}
|
|
2541
|
+
|
|
2542
|
+
/**
|
|
2543
|
+
* Wms.API.Client
|
|
2544
|
+
*
|
|
2545
|
+
*
|
|
2546
|
+
*
|
|
2547
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2548
|
+
* https://openapi-generator.tech
|
|
2549
|
+
* Do not edit the class manually.
|
|
2550
|
+
*/
|
|
2551
|
+
|
|
2552
|
+
interface ReplenishmentAccessClients {
|
|
2553
|
+
total: number;
|
|
2554
|
+
data: Array<ReplenishmentAccessClient>;
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2528
2557
|
/**
|
|
2529
2558
|
* Wms.API.Client
|
|
2530
2559
|
*
|
|
@@ -2603,6 +2632,31 @@ declare class ReplenishmentService extends BaseService {
|
|
|
2603
2632
|
context?: HttpContext;
|
|
2604
2633
|
transferCache?: boolean;
|
|
2605
2634
|
}): Observable<HttpEvent<any>>;
|
|
2635
|
+
/**
|
|
2636
|
+
* Get list of replenishment access client
|
|
2637
|
+
* @param $skip
|
|
2638
|
+
* @param $top
|
|
2639
|
+
* @param $orderby
|
|
2640
|
+
* @param $filter
|
|
2641
|
+
* @param $search
|
|
2642
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2643
|
+
* @param reportProgress flag to report request and response progress.
|
|
2644
|
+
*/
|
|
2645
|
+
getAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2646
|
+
httpHeaderAccept?: 'application/json';
|
|
2647
|
+
context?: HttpContext;
|
|
2648
|
+
transferCache?: boolean;
|
|
2649
|
+
}): Observable<ReplenishmentAccessClients>;
|
|
2650
|
+
getAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2651
|
+
httpHeaderAccept?: 'application/json';
|
|
2652
|
+
context?: HttpContext;
|
|
2653
|
+
transferCache?: boolean;
|
|
2654
|
+
}): Observable<HttpResponse<ReplenishmentAccessClients>>;
|
|
2655
|
+
getAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2656
|
+
httpHeaderAccept?: 'application/json';
|
|
2657
|
+
context?: HttpContext;
|
|
2658
|
+
transferCache?: boolean;
|
|
2659
|
+
}): Observable<HttpEvent<ReplenishmentAccessClients>>;
|
|
2606
2660
|
/**
|
|
2607
2661
|
* Getting replenishment access
|
|
2608
2662
|
* @param $skip
|
|
@@ -2632,20 +2686,21 @@ declare class ReplenishmentService extends BaseService {
|
|
|
2632
2686
|
* Update an existing replenishment access
|
|
2633
2687
|
* @param id
|
|
2634
2688
|
* @param replenishmentAccess
|
|
2689
|
+
* @param propertiesToUpdate Array of property names to update
|
|
2635
2690
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2636
2691
|
* @param reportProgress flag to report request and response progress.
|
|
2637
2692
|
*/
|
|
2638
|
-
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2693
|
+
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2639
2694
|
httpHeaderAccept?: 'application/json';
|
|
2640
2695
|
context?: HttpContext;
|
|
2641
2696
|
transferCache?: boolean;
|
|
2642
2697
|
}): Observable<ReplenishmentAccess>;
|
|
2643
|
-
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2698
|
+
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2644
2699
|
httpHeaderAccept?: 'application/json';
|
|
2645
2700
|
context?: HttpContext;
|
|
2646
2701
|
transferCache?: boolean;
|
|
2647
2702
|
}): Observable<HttpResponse<ReplenishmentAccess>>;
|
|
2648
|
-
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2703
|
+
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2649
2704
|
httpHeaderAccept?: 'application/json';
|
|
2650
2705
|
context?: HttpContext;
|
|
2651
2706
|
transferCache?: boolean;
|
|
@@ -3823,20 +3878,6 @@ interface ModelError {
|
|
|
3823
3878
|
} | null;
|
|
3824
3879
|
}
|
|
3825
3880
|
|
|
3826
|
-
/**
|
|
3827
|
-
* Wms.API.Client
|
|
3828
|
-
*
|
|
3829
|
-
*
|
|
3830
|
-
*
|
|
3831
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3832
|
-
* https://openapi-generator.tech
|
|
3833
|
-
* Do not edit the class manually.
|
|
3834
|
-
*/
|
|
3835
|
-
interface ReplenishmentAccessView {
|
|
3836
|
-
id: string;
|
|
3837
|
-
clientId: string;
|
|
3838
|
-
}
|
|
3839
|
-
|
|
3840
3881
|
declare const BASE_PATH: InjectionToken<string>;
|
|
3841
3882
|
declare const COLLECTION_FORMATS: {
|
|
3842
3883
|
csv: string;
|
|
@@ -3856,4 +3897,4 @@ declare class ApiModule {
|
|
|
3856
3897
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
3857
3898
|
|
|
3858
3899
|
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 };
|
|
3859
|
-
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,
|
|
3900
|
+
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 };
|