@indigina/wms-api 0.0.126 → 0.0.128

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.126",
3
+ "version": "0.0.128",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1761,7 +1761,6 @@ interface Delivery {
1761
1761
  customerCompanyId: string | null;
1762
1762
  supplierCompanyId: string | null;
1763
1763
  useDirectivePutAway: boolean;
1764
- ownerCompanyId?: string;
1765
1764
  deliveryNumber?: string;
1766
1765
  hbRef: string;
1767
1766
  asnDate: string | null;
@@ -1791,32 +1790,30 @@ declare namespace Delivery {
1791
1790
  * Do not edit the class manually.
1792
1791
  */
1793
1792
 
1794
- interface DeliveryDataModel {
1795
- customerCompanyId?: string | null;
1796
- supplierCompanyId?: string | null;
1797
- useDirectivePutAway: boolean;
1798
- ownerCompanyId?: string | null;
1799
- deliveryNumber?: string | null;
1793
+ interface DeliveryCreateModel {
1794
+ useDirectivePutAway?: boolean;
1800
1795
  hbRef: string;
1801
- asnDate?: string | null;
1802
- warehouseEtaDate?: string | null;
1796
+ asnDate: string;
1797
+ warehouseEtaDate: string;
1803
1798
  deliveryType: DeliveryType;
1804
1799
  deliveryStatus: OrderStatus;
1805
- dcId?: string | null;
1806
1800
  qcType?: QcType;
1807
- qcRequired: boolean;
1808
- createdDate: string;
1801
+ qcRequired?: boolean;
1802
+ createdDate?: string;
1809
1803
  arrivedDate?: string | null;
1810
1804
  receivingStartDate?: string | null;
1811
1805
  confirmedDate?: string | null;
1812
1806
  recordType: RecordType;
1813
1807
  receiptReasonId?: string | null;
1814
1808
  supplierCompliance?: boolean | null;
1815
- directivePutAwayComplete: boolean;
1809
+ directivePutAwayComplete?: boolean;
1816
1810
  isStockAdjustment?: boolean | null;
1817
- createdFromShortReceipt: boolean;
1811
+ createdFromShortReceipt?: boolean;
1812
+ customerCompanyId: string;
1813
+ supplierCompanyId: string;
1814
+ dcId: string;
1818
1815
  }
1819
- declare namespace DeliveryDataModel {
1816
+ declare namespace DeliveryCreateModel {
1820
1817
  }
1821
1818
 
1822
1819
  /**
@@ -1853,6 +1850,39 @@ interface DeliverySummary {
1853
1850
  declare namespace DeliverySummary {
1854
1851
  }
1855
1852
 
1853
+ /**
1854
+ * Wms.API.Client
1855
+ *
1856
+ *
1857
+ *
1858
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1859
+ * https://openapi-generator.tech
1860
+ * Do not edit the class manually.
1861
+ */
1862
+
1863
+ interface DeliveryUpdateModel {
1864
+ useDirectivePutAway?: boolean;
1865
+ hbRef: string;
1866
+ asnDate: string;
1867
+ warehouseEtaDate: string;
1868
+ deliveryType: DeliveryType;
1869
+ deliveryStatus: OrderStatus;
1870
+ qcType?: QcType;
1871
+ qcRequired?: boolean;
1872
+ createdDate?: string;
1873
+ arrivedDate?: string | null;
1874
+ receivingStartDate?: string | null;
1875
+ confirmedDate?: string | null;
1876
+ recordType: RecordType;
1877
+ receiptReasonId?: string | null;
1878
+ supplierCompliance?: boolean | null;
1879
+ directivePutAwayComplete?: boolean;
1880
+ isStockAdjustment?: boolean | null;
1881
+ createdFromShortReceipt?: boolean;
1882
+ }
1883
+ declare namespace DeliveryUpdateModel {
1884
+ }
1885
+
1856
1886
  declare class DeliveriesService extends BaseService {
1857
1887
  protected httpClient: HttpClient;
1858
1888
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
@@ -1928,22 +1958,22 @@ declare class DeliveriesService extends BaseService {
1928
1958
  /**
1929
1959
  * Create a specific delivery
1930
1960
  * @endpoint post /deliveries
1931
- * @param deliveryDataModel
1961
+ * @param deliveryCreateModel
1932
1962
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1933
1963
  * @param reportProgress flag to report request and response progress.
1934
1964
  * @param options additional options
1935
1965
  */
1936
- createDelivery(deliveryDataModel: DeliveryDataModel, observe?: 'body', reportProgress?: boolean, options?: {
1966
+ createDelivery(deliveryCreateModel: DeliveryCreateModel, observe?: 'body', reportProgress?: boolean, options?: {
1937
1967
  httpHeaderAccept?: 'application/json';
1938
1968
  context?: HttpContext;
1939
1969
  transferCache?: boolean;
1940
1970
  }): Observable<Delivery>;
1941
- createDelivery(deliveryDataModel: DeliveryDataModel, observe?: 'response', reportProgress?: boolean, options?: {
1971
+ createDelivery(deliveryCreateModel: DeliveryCreateModel, observe?: 'response', reportProgress?: boolean, options?: {
1942
1972
  httpHeaderAccept?: 'application/json';
1943
1973
  context?: HttpContext;
1944
1974
  transferCache?: boolean;
1945
1975
  }): Observable<HttpResponse<Delivery>>;
1946
- createDelivery(deliveryDataModel: DeliveryDataModel, observe?: 'events', reportProgress?: boolean, options?: {
1976
+ createDelivery(deliveryCreateModel: DeliveryCreateModel, observe?: 'events', reportProgress?: boolean, options?: {
1947
1977
  httpHeaderAccept?: 'application/json';
1948
1978
  context?: HttpContext;
1949
1979
  transferCache?: boolean;
@@ -2076,22 +2106,22 @@ declare class DeliveriesService extends BaseService {
2076
2106
  * Update a specific delivery
2077
2107
  * @endpoint put /deliveries/{id}
2078
2108
  * @param id
2079
- * @param delivery
2109
+ * @param deliveryUpdateModel
2080
2110
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2081
2111
  * @param reportProgress flag to report request and response progress.
2082
2112
  * @param options additional options
2083
2113
  */
2084
- setDelivery(id: string, delivery: Delivery, observe?: 'body', reportProgress?: boolean, options?: {
2114
+ setDelivery(id: string, deliveryUpdateModel: DeliveryUpdateModel, observe?: 'body', reportProgress?: boolean, options?: {
2085
2115
  httpHeaderAccept?: 'application/json';
2086
2116
  context?: HttpContext;
2087
2117
  transferCache?: boolean;
2088
2118
  }): Observable<Delivery>;
2089
- setDelivery(id: string, delivery: Delivery, observe?: 'response', reportProgress?: boolean, options?: {
2119
+ setDelivery(id: string, deliveryUpdateModel: DeliveryUpdateModel, observe?: 'response', reportProgress?: boolean, options?: {
2090
2120
  httpHeaderAccept?: 'application/json';
2091
2121
  context?: HttpContext;
2092
2122
  transferCache?: boolean;
2093
2123
  }): Observable<HttpResponse<Delivery>>;
2094
- setDelivery(id: string, delivery: Delivery, observe?: 'events', reportProgress?: boolean, options?: {
2124
+ setDelivery(id: string, deliveryUpdateModel: DeliveryUpdateModel, observe?: 'events', reportProgress?: boolean, options?: {
2095
2125
  httpHeaderAccept?: 'application/json';
2096
2126
  context?: HttpContext;
2097
2127
  transferCache?: boolean;
@@ -6153,6 +6183,39 @@ interface CartonView {
6153
6183
  productMasterSystemEan?: ProductMasterSystemEan;
6154
6184
  }
6155
6185
 
6186
+ /**
6187
+ * Wms.API.Client
6188
+ *
6189
+ *
6190
+ *
6191
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6192
+ * https://openapi-generator.tech
6193
+ * Do not edit the class manually.
6194
+ */
6195
+
6196
+ interface DeliveryDataModel {
6197
+ useDirectivePutAway?: boolean;
6198
+ hbRef: string;
6199
+ asnDate: string;
6200
+ warehouseEtaDate: string;
6201
+ deliveryType: DeliveryType;
6202
+ deliveryStatus: OrderStatus;
6203
+ qcType?: QcType;
6204
+ qcRequired?: boolean;
6205
+ createdDate?: string;
6206
+ arrivedDate?: string | null;
6207
+ receivingStartDate?: string | null;
6208
+ confirmedDate?: string | null;
6209
+ recordType: RecordType;
6210
+ receiptReasonId?: string | null;
6211
+ supplierCompliance?: boolean | null;
6212
+ directivePutAwayComplete?: boolean;
6213
+ isStockAdjustment?: boolean | null;
6214
+ createdFromShortReceipt?: boolean;
6215
+ }
6216
+ declare namespace DeliveryDataModel {
6217
+ }
6218
+
6156
6219
  /**
6157
6220
  * Wms.API.Client
6158
6221
  *
@@ -6283,5 +6346,5 @@ declare class ApiModule {
6283
6346
 
6284
6347
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
6285
6348
 
6286
- 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, PrintTypes, Printer, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessesService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrinter, UserPrintersService, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
6349
+ export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, 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, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, PrintTypes, Printer, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessesService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrinter, UserPrintersService, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
6287
6350
  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, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, WavePickingAccessView, WavePickingAccesses, Waves };