@indigina/wms-api 0.0.82 → 0.0.84
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 +144 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +87 -10
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2510,6 +2510,21 @@ declare class ReasonsService extends BaseService {
|
|
|
2510
2510
|
static ɵprov: i0.ɵɵInjectableDeclaration<ReasonsService>;
|
|
2511
2511
|
}
|
|
2512
2512
|
|
|
2513
|
+
/**
|
|
2514
|
+
* Wms.API.Client
|
|
2515
|
+
*
|
|
2516
|
+
*
|
|
2517
|
+
*
|
|
2518
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2519
|
+
* https://openapi-generator.tech
|
|
2520
|
+
* Do not edit the class manually.
|
|
2521
|
+
*/
|
|
2522
|
+
interface ReplenishmentAccess {
|
|
2523
|
+
id: string;
|
|
2524
|
+
clientId: string;
|
|
2525
|
+
systemReplenishment: boolean;
|
|
2526
|
+
}
|
|
2527
|
+
|
|
2513
2528
|
/**
|
|
2514
2529
|
* Wms.API.Client
|
|
2515
2530
|
*
|
|
@@ -2522,7 +2537,6 @@ declare class ReasonsService extends BaseService {
|
|
|
2522
2537
|
interface ReplenishmentAccessGridView {
|
|
2523
2538
|
id: string;
|
|
2524
2539
|
clientId: string;
|
|
2525
|
-
createdUserId: string;
|
|
2526
2540
|
client: string;
|
|
2527
2541
|
systemReplenishment: boolean;
|
|
2528
2542
|
createdDate: string;
|
|
@@ -2539,7 +2553,7 @@ interface ReplenishmentAccessGridView {
|
|
|
2539
2553
|
* Do not edit the class manually.
|
|
2540
2554
|
*/
|
|
2541
2555
|
|
|
2542
|
-
interface
|
|
2556
|
+
interface ReplenishmentAccesses {
|
|
2543
2557
|
total: number;
|
|
2544
2558
|
data: Array<ReplenishmentAccessGridView>;
|
|
2545
2559
|
}
|
|
@@ -2547,6 +2561,48 @@ interface Access {
|
|
|
2547
2561
|
declare class ReplenishmentService extends BaseService {
|
|
2548
2562
|
protected httpClient: HttpClient;
|
|
2549
2563
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2564
|
+
/**
|
|
2565
|
+
* Create a specific replenishment access
|
|
2566
|
+
* @param replenishmentAccess
|
|
2567
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2568
|
+
* @param reportProgress flag to report request and response progress.
|
|
2569
|
+
*/
|
|
2570
|
+
createAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2571
|
+
httpHeaderAccept?: 'application/json';
|
|
2572
|
+
context?: HttpContext;
|
|
2573
|
+
transferCache?: boolean;
|
|
2574
|
+
}): Observable<ReplenishmentAccess>;
|
|
2575
|
+
createAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2576
|
+
httpHeaderAccept?: 'application/json';
|
|
2577
|
+
context?: HttpContext;
|
|
2578
|
+
transferCache?: boolean;
|
|
2579
|
+
}): Observable<HttpResponse<ReplenishmentAccess>>;
|
|
2580
|
+
createAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2581
|
+
httpHeaderAccept?: 'application/json';
|
|
2582
|
+
context?: HttpContext;
|
|
2583
|
+
transferCache?: boolean;
|
|
2584
|
+
}): Observable<HttpEvent<ReplenishmentAccess>>;
|
|
2585
|
+
/**
|
|
2586
|
+
* Delete a replenishment access
|
|
2587
|
+
* @param id
|
|
2588
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2589
|
+
* @param reportProgress flag to report request and response progress.
|
|
2590
|
+
*/
|
|
2591
|
+
deleteAccess(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2592
|
+
httpHeaderAccept?: 'application/json';
|
|
2593
|
+
context?: HttpContext;
|
|
2594
|
+
transferCache?: boolean;
|
|
2595
|
+
}): Observable<any>;
|
|
2596
|
+
deleteAccess(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2597
|
+
httpHeaderAccept?: 'application/json';
|
|
2598
|
+
context?: HttpContext;
|
|
2599
|
+
transferCache?: boolean;
|
|
2600
|
+
}): Observable<HttpResponse<any>>;
|
|
2601
|
+
deleteAccess(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2602
|
+
httpHeaderAccept?: 'application/json';
|
|
2603
|
+
context?: HttpContext;
|
|
2604
|
+
transferCache?: boolean;
|
|
2605
|
+
}): Observable<HttpEvent<any>>;
|
|
2550
2606
|
/**
|
|
2551
2607
|
* Getting replenishment access
|
|
2552
2608
|
* @param $skip
|
|
@@ -2557,21 +2613,43 @@ declare class ReplenishmentService extends BaseService {
|
|
|
2557
2613
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2558
2614
|
* @param reportProgress flag to report request and response progress.
|
|
2559
2615
|
*/
|
|
2560
|
-
|
|
2616
|
+
getAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2617
|
+
httpHeaderAccept?: 'application/json';
|
|
2618
|
+
context?: HttpContext;
|
|
2619
|
+
transferCache?: boolean;
|
|
2620
|
+
}): Observable<ReplenishmentAccesses>;
|
|
2621
|
+
getAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2622
|
+
httpHeaderAccept?: 'application/json';
|
|
2623
|
+
context?: HttpContext;
|
|
2624
|
+
transferCache?: boolean;
|
|
2625
|
+
}): Observable<HttpResponse<ReplenishmentAccesses>>;
|
|
2626
|
+
getAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2627
|
+
httpHeaderAccept?: 'application/json';
|
|
2628
|
+
context?: HttpContext;
|
|
2629
|
+
transferCache?: boolean;
|
|
2630
|
+
}): Observable<HttpEvent<ReplenishmentAccesses>>;
|
|
2631
|
+
/**
|
|
2632
|
+
* Update an existing replenishment access
|
|
2633
|
+
* @param id
|
|
2634
|
+
* @param replenishmentAccess
|
|
2635
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2636
|
+
* @param reportProgress flag to report request and response progress.
|
|
2637
|
+
*/
|
|
2638
|
+
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2561
2639
|
httpHeaderAccept?: 'application/json';
|
|
2562
2640
|
context?: HttpContext;
|
|
2563
2641
|
transferCache?: boolean;
|
|
2564
|
-
}): Observable<
|
|
2565
|
-
|
|
2642
|
+
}): Observable<ReplenishmentAccess>;
|
|
2643
|
+
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2566
2644
|
httpHeaderAccept?: 'application/json';
|
|
2567
2645
|
context?: HttpContext;
|
|
2568
2646
|
transferCache?: boolean;
|
|
2569
|
-
}): Observable<HttpResponse<
|
|
2570
|
-
|
|
2647
|
+
}): Observable<HttpResponse<ReplenishmentAccess>>;
|
|
2648
|
+
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2571
2649
|
httpHeaderAccept?: 'application/json';
|
|
2572
2650
|
context?: HttpContext;
|
|
2573
2651
|
transferCache?: boolean;
|
|
2574
|
-
}): Observable<HttpEvent<
|
|
2652
|
+
}): Observable<HttpEvent<ReplenishmentAccess>>;
|
|
2575
2653
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReplenishmentService, [null, { optional: true; }, { optional: true; }]>;
|
|
2576
2654
|
static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentService>;
|
|
2577
2655
|
}
|
|
@@ -3756,7 +3834,6 @@ interface ModelError {
|
|
|
3756
3834
|
interface ReplenishmentAccessView {
|
|
3757
3835
|
id: string;
|
|
3758
3836
|
clientId: string;
|
|
3759
|
-
createdUserId: string;
|
|
3760
3837
|
}
|
|
3761
3838
|
|
|
3762
3839
|
declare const BASE_PATH: InjectionToken<string>;
|
|
@@ -3778,4 +3855,4 @@ declare class ApiModule {
|
|
|
3778
3855
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
3779
3856
|
|
|
3780
3857
|
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 };
|
|
3781
|
-
export type {
|
|
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, ReplenishmentAccessGridView, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentSummary, Report, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
|