@indigina/wms-api 0.0.169 → 0.0.171

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.169",
3
+ "version": "0.0.171",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -589,6 +589,65 @@ declare class CarrierProviderIntegrationsService extends BaseService {
589
589
  static ɵprov: i0.ɵɵInjectableDeclaration<CarrierProviderIntegrationsService>;
590
590
  }
591
591
 
592
+ /**
593
+ * Wms.API.Client
594
+ *
595
+ *
596
+ *
597
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
598
+ * https://openapi-generator.tech
599
+ * Do not edit the class manually.
600
+ */
601
+ interface CarrierService {
602
+ carrierServiceTypeId?: string;
603
+ serviceName?: string;
604
+ }
605
+
606
+ /**
607
+ * Wms.API.Client
608
+ *
609
+ *
610
+ *
611
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
612
+ * https://openapi-generator.tech
613
+ * Do not edit the class manually.
614
+ */
615
+
616
+ interface CarrierServices {
617
+ total: number;
618
+ data: Array<CarrierService>;
619
+ }
620
+
621
+ declare class CarriersService extends BaseService {
622
+ protected httpClient: HttpClient;
623
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
624
+ /**
625
+ * Getting the services for a carrier
626
+ * @endpoint get /carriers/{carrierId}/services
627
+ * @param carrierId
628
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
629
+ * @param reportProgress flag to report request and response progress.
630
+ * @param options additional options
631
+ */
632
+ getCarrierServices(carrierId: string, observe?: 'body', reportProgress?: boolean, options?: {
633
+ httpHeaderAccept?: 'application/json';
634
+ context?: HttpContext;
635
+ transferCache?: boolean;
636
+ }): Observable<CarrierServices>;
637
+ getCarrierServices(carrierId: string, observe?: 'response', reportProgress?: boolean, options?: {
638
+ httpHeaderAccept?: 'application/json';
639
+ context?: HttpContext;
640
+ transferCache?: boolean;
641
+ }): Observable<HttpResponse<CarrierServices>>;
642
+ getCarrierServices(carrierId: string, observe?: 'events', reportProgress?: boolean, options?: {
643
+ httpHeaderAccept?: 'application/json';
644
+ context?: HttpContext;
645
+ transferCache?: boolean;
646
+ }): Observable<HttpEvent<CarrierServices>>;
647
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarriersService, [null, { optional: true; }, { optional: true; }]>;
648
+ static ɵprov: i0.ɵɵInjectableDeclaration<CarriersService>;
649
+ }
650
+
592
651
  /**
593
652
  * Wms.API.Client
594
653
  *
@@ -3596,6 +3655,31 @@ declare class DispatchesService extends BaseService {
3596
3655
  context?: HttpContext;
3597
3656
  transferCache?: boolean;
3598
3657
  }): Observable<HttpEvent<any>>;
3658
+ /**
3659
+ * Manually set the Courier Ref and Service for a dispatch on a non-integrated carrier
3660
+ * @endpoint put /dispatches/{id}/carrier-reference
3661
+ * @param id
3662
+ * @param courierReference
3663
+ * @param carrierServiceName
3664
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3665
+ * @param reportProgress flag to report request and response progress.
3666
+ * @param options additional options
3667
+ */
3668
+ setDispatchCarrierReference(id: string, courierReference: string, carrierServiceName?: string, observe?: 'body', reportProgress?: boolean, options?: {
3669
+ httpHeaderAccept?: undefined;
3670
+ context?: HttpContext;
3671
+ transferCache?: boolean;
3672
+ }): Observable<any>;
3673
+ setDispatchCarrierReference(id: string, courierReference: string, carrierServiceName?: string, observe?: 'response', reportProgress?: boolean, options?: {
3674
+ httpHeaderAccept?: undefined;
3675
+ context?: HttpContext;
3676
+ transferCache?: boolean;
3677
+ }): Observable<HttpResponse<any>>;
3678
+ setDispatchCarrierReference(id: string, courierReference: string, carrierServiceName?: string, observe?: 'events', reportProgress?: boolean, options?: {
3679
+ httpHeaderAccept?: undefined;
3680
+ context?: HttpContext;
3681
+ transferCache?: boolean;
3682
+ }): Observable<HttpEvent<any>>;
3599
3683
  static ɵfac: i0.ɵɵFactoryDeclaration<DispatchesService, [null, { optional: true; }, { optional: true; }]>;
3600
3684
  static ɵprov: i0.ɵɵInjectableDeclaration<DispatchesService>;
3601
3685
  }
@@ -7297,6 +7381,33 @@ interface WaveConfigurations {
7297
7381
  declare class WaveConfigurationsService extends BaseService {
7298
7382
  protected httpClient: HttpClient;
7299
7383
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
7384
+ /**
7385
+ * Get list of wave configuration clients
7386
+ * @endpoint get /waveConfigurations/clients
7387
+ * @param $skip
7388
+ * @param $top
7389
+ * @param $orderby
7390
+ * @param $filter
7391
+ * @param $search
7392
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
7393
+ * @param reportProgress flag to report request and response progress.
7394
+ * @param options additional options
7395
+ */
7396
+ getWaveConfigurationClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
7397
+ httpHeaderAccept?: 'application/json';
7398
+ context?: HttpContext;
7399
+ transferCache?: boolean;
7400
+ }): Observable<Array<string>>;
7401
+ getWaveConfigurationClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
7402
+ httpHeaderAccept?: 'application/json';
7403
+ context?: HttpContext;
7404
+ transferCache?: boolean;
7405
+ }): Observable<HttpResponse<Array<string>>>;
7406
+ getWaveConfigurationClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
7407
+ httpHeaderAccept?: 'application/json';
7408
+ context?: HttpContext;
7409
+ transferCache?: boolean;
7410
+ }): Observable<HttpEvent<Array<string>>>;
7300
7411
  /**
7301
7412
  * Getting wave configurations
7302
7413
  * @endpoint get /waveConfigurations
@@ -8191,7 +8302,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
8191
8302
  static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
8192
8303
  }
8193
8304
 
8194
- declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
8305
+ declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
8195
8306
 
8196
8307
  /**
8197
8308
  * Wms.API.Client
@@ -8464,5 +8575,5 @@ declare class ApiModule {
8464
8575
 
8465
8576
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
8466
8577
 
8467
- export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
8468
- export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
8578
+ export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
8579
+ export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };