@indigina/wms-api 0.0.179 → 0.0.180
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/README.md +2 -2
- package/fesm2022/indigina-wms-api.mjs +17 -38
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +47 -32
package/package.json
CHANGED
|
@@ -2107,29 +2107,45 @@ interface Companies {
|
|
|
2107
2107
|
* https://openapi-generator.tech
|
|
2108
2108
|
* Do not edit the class manually.
|
|
2109
2109
|
*/
|
|
2110
|
-
declare const
|
|
2111
|
-
readonly Carrier: "Carrier";
|
|
2112
|
-
readonly TransportServices: "TransportServices";
|
|
2110
|
+
declare const ShipToSubtype: {
|
|
2113
2111
|
readonly Company: "Company";
|
|
2114
|
-
readonly
|
|
2115
|
-
readonly Customer: "Customer";
|
|
2116
|
-
readonly ShippingAgent: "ShippingAgent";
|
|
2117
|
-
readonly ShipFrom: "ShipFrom";
|
|
2118
|
-
readonly OriginAgent: "OriginAgent";
|
|
2119
|
-
readonly ShipTo: "ShipTo";
|
|
2120
|
-
readonly BuyingAgent: "BuyingAgent";
|
|
2121
|
-
readonly Seller: "Seller";
|
|
2122
|
-
readonly DistributionCentre: "DistributionCentre";
|
|
2123
|
-
readonly Client: "Client";
|
|
2124
|
-
readonly SysAdmin: "SysAdmin";
|
|
2125
|
-
readonly LocalAgent: "LocalAgent";
|
|
2126
|
-
readonly CarrierProvider: "CarrierProvider";
|
|
2127
|
-
readonly WholesaleCustomer: "WholesaleCustomer";
|
|
2128
|
-
readonly WebCustomer: "WebCustomer";
|
|
2129
|
-
readonly DestinationAgent: "DestinationAgent";
|
|
2130
|
-
readonly ForwardingAgent: "ForwardingAgent";
|
|
2112
|
+
readonly Station: "Station";
|
|
2131
2113
|
};
|
|
2132
|
-
type
|
|
2114
|
+
type ShipToSubtype = typeof ShipToSubtype[keyof typeof ShipToSubtype];
|
|
2115
|
+
|
|
2116
|
+
/**
|
|
2117
|
+
* Wms.API.Client
|
|
2118
|
+
*
|
|
2119
|
+
*
|
|
2120
|
+
*
|
|
2121
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2122
|
+
* https://openapi-generator.tech
|
|
2123
|
+
* Do not edit the class manually.
|
|
2124
|
+
*/
|
|
2125
|
+
|
|
2126
|
+
interface ShipToCompany {
|
|
2127
|
+
id: string;
|
|
2128
|
+
companyCode: string;
|
|
2129
|
+
companyDescription: string | null;
|
|
2130
|
+
subtype: ShipToSubtype;
|
|
2131
|
+
}
|
|
2132
|
+
declare namespace ShipToCompany {
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
/**
|
|
2136
|
+
* Wms.API.Client
|
|
2137
|
+
*
|
|
2138
|
+
*
|
|
2139
|
+
*
|
|
2140
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2141
|
+
* https://openapi-generator.tech
|
|
2142
|
+
* Do not edit the class manually.
|
|
2143
|
+
*/
|
|
2144
|
+
|
|
2145
|
+
interface ShipToCompanies {
|
|
2146
|
+
total: number;
|
|
2147
|
+
data: Array<ShipToCompany>;
|
|
2148
|
+
}
|
|
2133
2149
|
|
|
2134
2150
|
declare class CompaniesService extends BaseService {
|
|
2135
2151
|
protected httpClient: HttpClient;
|
|
@@ -2162,9 +2178,8 @@ declare class CompaniesService extends BaseService {
|
|
|
2162
2178
|
transferCache?: boolean;
|
|
2163
2179
|
}): Observable<HttpEvent<Companies>>;
|
|
2164
2180
|
/**
|
|
2165
|
-
* Getting companies
|
|
2166
|
-
* @endpoint get /companies/
|
|
2167
|
-
* @param companyType
|
|
2181
|
+
* Getting ship-to companies
|
|
2182
|
+
* @endpoint get /companies/ship-to
|
|
2168
2183
|
* @param $skip
|
|
2169
2184
|
* @param $top
|
|
2170
2185
|
* @param $orderby
|
|
@@ -2173,21 +2188,21 @@ declare class CompaniesService extends BaseService {
|
|
|
2173
2188
|
* @param reportProgress flag to report request and response progress.
|
|
2174
2189
|
* @param options additional options
|
|
2175
2190
|
*/
|
|
2176
|
-
|
|
2191
|
+
getShipToCompanies($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2177
2192
|
httpHeaderAccept?: 'application/json';
|
|
2178
2193
|
context?: HttpContext;
|
|
2179
2194
|
transferCache?: boolean;
|
|
2180
|
-
}): Observable<
|
|
2181
|
-
|
|
2195
|
+
}): Observable<ShipToCompanies>;
|
|
2196
|
+
getShipToCompanies($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2182
2197
|
httpHeaderAccept?: 'application/json';
|
|
2183
2198
|
context?: HttpContext;
|
|
2184
2199
|
transferCache?: boolean;
|
|
2185
|
-
}): Observable<HttpResponse<
|
|
2186
|
-
|
|
2200
|
+
}): Observable<HttpResponse<ShipToCompanies>>;
|
|
2201
|
+
getShipToCompanies($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2187
2202
|
httpHeaderAccept?: 'application/json';
|
|
2188
2203
|
context?: HttpContext;
|
|
2189
2204
|
transferCache?: boolean;
|
|
2190
|
-
}): Observable<HttpEvent<
|
|
2205
|
+
}): Observable<HttpEvent<ShipToCompanies>>;
|
|
2191
2206
|
/**
|
|
2192
2207
|
* Getting suppliers
|
|
2193
2208
|
* @endpoint get /companies/{id}/suppliers
|
|
@@ -10039,5 +10054,5 @@ declare class ApiModule {
|
|
|
10039
10054
|
|
|
10040
10055
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
10041
10056
|
|
|
10042
|
-
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService,
|
|
10043
|
-
export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, 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, CountRecords, 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, OperatorCounts, 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, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, 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 };
|
|
10057
|
+
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, Configuration, ContactsService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, 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, OperatorCountGridView, OrderStatus, OrderType, PackingProcesses, PendoService, PeopleGroup, 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, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, 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 };
|
|
10058
|
+
export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, 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, CountRecords, 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, OperatorCounts, 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, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, 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 };
|