@indigina/wms-api 0.0.178 → 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 +62 -38
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +76 -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
|
|
@@ -2351,6 +2366,7 @@ interface CountRecordGridView {
|
|
|
2351
2366
|
countType: CountType;
|
|
2352
2367
|
countStatus: CountStatuses;
|
|
2353
2368
|
location?: string;
|
|
2369
|
+
sortOrder?: number | null;
|
|
2354
2370
|
licencePlate?: number | null;
|
|
2355
2371
|
productMasterId?: string | null;
|
|
2356
2372
|
sku?: string;
|
|
@@ -2532,6 +2548,34 @@ declare class CountRecordsService extends BaseService {
|
|
|
2532
2548
|
context?: HttpContext;
|
|
2533
2549
|
transferCache?: boolean;
|
|
2534
2550
|
}): Observable<HttpEvent<CountRecords>>;
|
|
2551
|
+
/**
|
|
2552
|
+
* CountRecords list
|
|
2553
|
+
* @endpoint get /CountRecords/search
|
|
2554
|
+
* @param statusGroup
|
|
2555
|
+
* @param $skip
|
|
2556
|
+
* @param $top
|
|
2557
|
+
* @param $orderby
|
|
2558
|
+
* @param $filter
|
|
2559
|
+
* @param searchTerm
|
|
2560
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2561
|
+
* @param reportProgress flag to report request and response progress.
|
|
2562
|
+
* @param options additional options
|
|
2563
|
+
*/
|
|
2564
|
+
getCountRecordsFromIndex(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2565
|
+
httpHeaderAccept?: 'application/json';
|
|
2566
|
+
context?: HttpContext;
|
|
2567
|
+
transferCache?: boolean;
|
|
2568
|
+
}): Observable<CountRecords>;
|
|
2569
|
+
getCountRecordsFromIndex(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2570
|
+
httpHeaderAccept?: 'application/json';
|
|
2571
|
+
context?: HttpContext;
|
|
2572
|
+
transferCache?: boolean;
|
|
2573
|
+
}): Observable<HttpResponse<CountRecords>>;
|
|
2574
|
+
getCountRecordsFromIndex(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2575
|
+
httpHeaderAccept?: 'application/json';
|
|
2576
|
+
context?: HttpContext;
|
|
2577
|
+
transferCache?: boolean;
|
|
2578
|
+
}): Observable<HttpEvent<CountRecords>>;
|
|
2535
2579
|
/**
|
|
2536
2580
|
* Getting operator counts for a count record
|
|
2537
2581
|
* @endpoint get /CountRecords/{id}/operatorCounts
|
|
@@ -10010,5 +10054,5 @@ declare class ApiModule {
|
|
|
10010
10054
|
|
|
10011
10055
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
10012
10056
|
|
|
10013
|
-
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,
|
|
10014
|
-
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 };
|