@indigina/wms-api 0.0.187 → 0.0.189

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.187",
3
+ "version": "0.0.189",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -5273,6 +5273,68 @@ interface PrintDispatchView {
5273
5273
  declare namespace PrintDispatchView {
5274
5274
  }
5275
5275
 
5276
+ /**
5277
+ * Wms.API.Client
5278
+ *
5279
+ *
5280
+ *
5281
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
5282
+ * https://openapi-generator.tech
5283
+ * Do not edit the class manually.
5284
+ */
5285
+ interface CountrySummary {
5286
+ countryName?: string | null;
5287
+ }
5288
+
5289
+ /**
5290
+ * Wms.API.Client
5291
+ *
5292
+ *
5293
+ *
5294
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
5295
+ * https://openapi-generator.tech
5296
+ * Do not edit the class manually.
5297
+ */
5298
+
5299
+ interface WavePickingStarDispatchView {
5300
+ id: string;
5301
+ company?: CompanyDescriptionSummary | null;
5302
+ dispatchNumber: string;
5303
+ salesOrderNumberList?: string;
5304
+ noOfLines?: number | null;
5305
+ noOfLinesOrdered?: number | null;
5306
+ shipTo?: string;
5307
+ region?: string;
5308
+ country?: CountrySummary | null;
5309
+ requestedCarrier?: string;
5310
+ requestedService?: string;
5311
+ carrier?: string;
5312
+ service?: string;
5313
+ orderType: OrderType;
5314
+ createdDate: string;
5315
+ scheduledShipDate?: string | null;
5316
+ recordType: RecordType;
5317
+ star: boolean;
5318
+ dispatchNumberUnique: number;
5319
+ }
5320
+ declare namespace WavePickingStarDispatchView {
5321
+ }
5322
+
5323
+ /**
5324
+ * Wms.API.Client
5325
+ *
5326
+ *
5327
+ *
5328
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
5329
+ * https://openapi-generator.tech
5330
+ * Do not edit the class manually.
5331
+ */
5332
+
5333
+ interface WavePickingStarDispatches {
5334
+ total: number;
5335
+ data: Array<WavePickingStarDispatchView>;
5336
+ }
5337
+
5276
5338
  declare class DispatchesService extends BaseService {
5277
5339
  protected httpClient: HttpClient;
5278
5340
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
@@ -5518,6 +5580,33 @@ declare class DispatchesService extends BaseService {
5518
5580
  context?: HttpContext;
5519
5581
  transferCache?: boolean;
5520
5582
  }): Observable<HttpEvent<PrintDispatchView>>;
5583
+ /**
5584
+ * Getting the To Be Picked star dispatches
5585
+ * @endpoint get /dispatches/star-dispatches
5586
+ * @param $skip
5587
+ * @param $top
5588
+ * @param $orderby
5589
+ * @param $filter
5590
+ * @param $search
5591
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5592
+ * @param reportProgress flag to report request and response progress.
5593
+ * @param options additional options
5594
+ */
5595
+ getStarDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
5596
+ httpHeaderAccept?: 'application/json';
5597
+ context?: HttpContext;
5598
+ transferCache?: boolean;
5599
+ }): Observable<WavePickingStarDispatches>;
5600
+ getStarDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
5601
+ httpHeaderAccept?: 'application/json';
5602
+ context?: HttpContext;
5603
+ transferCache?: boolean;
5604
+ }): Observable<HttpResponse<WavePickingStarDispatches>>;
5605
+ getStarDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
5606
+ httpHeaderAccept?: 'application/json';
5607
+ context?: HttpContext;
5608
+ transferCache?: boolean;
5609
+ }): Observable<HttpEvent<WavePickingStarDispatches>>;
5521
5610
  /**
5522
5611
  * Release on-hold dispatches
5523
5612
  * @endpoint put /dispatches/release-on-hold
@@ -5566,6 +5655,30 @@ declare class DispatchesService extends BaseService {
5566
5655
  context?: HttpContext;
5567
5656
  transferCache?: boolean;
5568
5657
  }): Observable<HttpEvent<any>>;
5658
+ /**
5659
+ * Toggle the Star flag for a dispatch
5660
+ * @endpoint patch /dispatches/{id}/star
5661
+ * @param id
5662
+ * @param starred
5663
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5664
+ * @param reportProgress flag to report request and response progress.
5665
+ * @param options additional options
5666
+ */
5667
+ setDispatchStar(id: string, starred: boolean, observe?: 'body', reportProgress?: boolean, options?: {
5668
+ httpHeaderAccept?: undefined;
5669
+ context?: HttpContext;
5670
+ transferCache?: boolean;
5671
+ }): Observable<any>;
5672
+ setDispatchStar(id: string, starred: boolean, observe?: 'response', reportProgress?: boolean, options?: {
5673
+ httpHeaderAccept?: undefined;
5674
+ context?: HttpContext;
5675
+ transferCache?: boolean;
5676
+ }): Observable<HttpResponse<any>>;
5677
+ setDispatchStar(id: string, starred: boolean, observe?: 'events', reportProgress?: boolean, options?: {
5678
+ httpHeaderAccept?: undefined;
5679
+ context?: HttpContext;
5680
+ transferCache?: boolean;
5681
+ }): Observable<HttpEvent<any>>;
5569
5682
  static ɵfac: i0.ɵɵFactoryDeclaration<DispatchesService, [null, { optional: true; }, { optional: true; }]>;
5570
5683
  static ɵprov: i0.ɵɵInjectableDeclaration<DispatchesService>;
5571
5684
  }
@@ -11149,5 +11262,5 @@ declare class ApiModule {
11149
11262
 
11150
11263
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
11151
11264
 
11152
- export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarrierServiceTypesService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateLabelsGenerateModel, LicencePlateLabelsService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintLabelTemplates, 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, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderCompletionIssue, SalesOrderGridView, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrderTab, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, 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 };
11153
- export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServiceTypes, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountContinuousInventories, CountContinuousInventory, CountContinuousInventoryClient, CountContinuousInventoryClients, CountContinuousInventoryGridView, CountRecords, CountingSummary, CreateCountContinuousInventory, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, 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, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SalesOrders, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UpdateCountContinuousInventory, 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 };
11265
+ export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarrierServiceTypesService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateLabelsGenerateModel, LicencePlateLabelsService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintLabelTemplates, 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, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderCompletionIssue, SalesOrderGridView, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrderTab, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, 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, WavePickingStarDispatchView, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
11266
+ export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServiceTypes, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountContinuousInventories, CountContinuousInventory, CountContinuousInventoryClient, CountContinuousInventoryClients, CountContinuousInventoryGridView, CountRecords, CountingSummary, CountrySummary, CreateCountContinuousInventory, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, 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, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SalesOrders, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UpdateCountContinuousInventory, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WavePickingStarDispatches, WaveSummaries, Waves };