@indigina/wms-api 0.0.116 → 0.0.118

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.116",
3
+ "version": "0.0.118",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -2182,6 +2182,8 @@ interface DeliveryItemView {
2182
2182
  qcPercentage: number | null;
2183
2183
  qcControlled: boolean;
2184
2184
  bestBeforeDate: string | null;
2185
+ lotControlled?: boolean | null;
2186
+ dateControlled?: boolean | null;
2185
2187
  qcType: QcType | null;
2186
2188
  }
2187
2189
  declare namespace DeliveryItemView {
@@ -3526,6 +3528,21 @@ declare class PermissionsService extends BaseService {
3526
3528
  static ɵprov: i0.ɵɵInjectableDeclaration<PermissionsService>;
3527
3529
  }
3528
3530
 
3531
+ /**
3532
+ * Wms.API.Client
3533
+ *
3534
+ *
3535
+ *
3536
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3537
+ * https://openapi-generator.tech
3538
+ * Do not edit the class manually.
3539
+ */
3540
+ declare const ProductStatus: {
3541
+ readonly InDevelopment: "InDevelopment";
3542
+ readonly InProduction: "InProduction";
3543
+ };
3544
+ type ProductStatus = typeof ProductStatus[keyof typeof ProductStatus];
3545
+
3529
3546
  /**
3530
3547
  * Wms.API.Client
3531
3548
  *
@@ -3542,7 +3559,9 @@ interface ProductMaster {
3542
3559
  htsCode?: string;
3543
3560
  productCode: string;
3544
3561
  ownerCompanyId: string;
3545
- status: OrderStatus | null;
3562
+ lotControlled: boolean;
3563
+ dateControlled: boolean;
3564
+ status?: ProductStatus | null;
3546
3565
  }
3547
3566
  declare namespace ProductMaster {
3548
3567
  }
@@ -3562,6 +3581,40 @@ interface ProductMasters {
3562
3581
  data: Array<ProductMaster>;
3563
3582
  }
3564
3583
 
3584
+ declare class ProductMasterSuppliersService extends BaseService {
3585
+ protected httpClient: HttpClient;
3586
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3587
+ /**
3588
+ * Get product masters by supplier
3589
+ * @endpoint get /productMasterSuppliers/productMasters
3590
+ * @param $skip
3591
+ * @param $top
3592
+ * @param $orderby
3593
+ * @param $filter
3594
+ * @param $search
3595
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3596
+ * @param reportProgress flag to report request and response progress.
3597
+ * @param options additional options
3598
+ */
3599
+ getProductMastersBySupplier($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3600
+ httpHeaderAccept?: 'application/json';
3601
+ context?: HttpContext;
3602
+ transferCache?: boolean;
3603
+ }): Observable<ProductMasters>;
3604
+ getProductMastersBySupplier($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
3605
+ httpHeaderAccept?: 'application/json';
3606
+ context?: HttpContext;
3607
+ transferCache?: boolean;
3608
+ }): Observable<HttpResponse<ProductMasters>>;
3609
+ getProductMastersBySupplier($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
3610
+ httpHeaderAccept?: 'application/json';
3611
+ context?: HttpContext;
3612
+ transferCache?: boolean;
3613
+ }): Observable<HttpEvent<ProductMasters>>;
3614
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProductMasterSuppliersService, [null, { optional: true; }, { optional: true; }]>;
3615
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProductMasterSuppliersService>;
3616
+ }
3617
+
3565
3618
  declare class ProductMastersService extends BaseService {
3566
3619
  protected httpClient: HttpClient;
3567
3620
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
@@ -5708,7 +5761,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
5708
5761
  static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
5709
5762
  }
5710
5763
 
5711
- declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
5764
+ declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
5712
5765
 
5713
5766
  /**
5714
5767
  * Wms.API.Client
@@ -5893,5 +5946,5 @@ declare class ApiModule {
5893
5946
 
5894
5947
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
5895
5948
 
5896
- export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
5949
+ export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
5897
5950
  export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };