@indigina/wms-api 0.0.91 → 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/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
  *
@@ -3476,6 +3547,27 @@ declare class TaskUserRecordsService extends BaseService {
3476
3547
  context?: HttpContext;
3477
3548
  transferCache?: boolean;
3478
3549
  }): Observable<HttpEvent<TaskUserRecord>>;
3550
+ /**
3551
+ * Delete a specific task user record
3552
+ * @param id
3553
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3554
+ * @param reportProgress flag to report request and response progress.
3555
+ */
3556
+ deleteTaskUserRecord(id: number, observe?: 'body', reportProgress?: boolean, options?: {
3557
+ httpHeaderAccept?: undefined;
3558
+ context?: HttpContext;
3559
+ transferCache?: boolean;
3560
+ }): Observable<any>;
3561
+ deleteTaskUserRecord(id: number, observe?: 'response', reportProgress?: boolean, options?: {
3562
+ httpHeaderAccept?: undefined;
3563
+ context?: HttpContext;
3564
+ transferCache?: boolean;
3565
+ }): Observable<HttpResponse<any>>;
3566
+ deleteTaskUserRecord(id: number, observe?: 'events', reportProgress?: boolean, options?: {
3567
+ httpHeaderAccept?: undefined;
3568
+ context?: HttpContext;
3569
+ transferCache?: boolean;
3570
+ }): Observable<HttpEvent<any>>;
3479
3571
  /**
3480
3572
  * Marks the specified task user record as finished for the current user.
3481
3573
  * @param id
@@ -3909,7 +4001,7 @@ declare class UsersInternalService extends BaseService {
3909
4001
  static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
3910
4002
  }
3911
4003
 
3912
- 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)[];
3913
4005
 
3914
4006
  /**
3915
4007
  * Wms.API.Client
@@ -4041,5 +4133,5 @@ declare class ApiModule {
4041
4133
 
4042
4134
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
4043
4135
 
4044
- 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 };
4045
- 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.91",
3
+ "version": "0.0.93",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {