@indigina/wms-api 0.0.85 → 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/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: number;
526
- companyDescription: string | null;
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;
@@ -3823,20 +3877,6 @@ interface ModelError {
3823
3877
  } | null;
3824
3878
  }
3825
3879
 
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
3880
  declare const BASE_PATH: InjectionToken<string>;
3841
3881
  declare const COLLECTION_FORMATS: {
3842
3882
  csv: string;
@@ -3856,4 +3896,4 @@ declare class ApiModule {
3856
3896
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
3857
3897
 
3858
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 };
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, ReplenishmentAccessGridView, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentSummary, Report, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.85",
3
+ "version": "0.0.86",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {