@indigina/wms-api 0.0.97 → 0.0.99
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 +147 -22
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +175 -32
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2127,6 +2127,174 @@ declare class DispatchBoxesService extends BaseService {
|
|
|
2127
2127
|
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchBoxesService>;
|
|
2128
2128
|
}
|
|
2129
2129
|
|
|
2130
|
+
/**
|
|
2131
|
+
* Wms.API.Client
|
|
2132
|
+
*
|
|
2133
|
+
*
|
|
2134
|
+
*
|
|
2135
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2136
|
+
* https://openapi-generator.tech
|
|
2137
|
+
* Do not edit the class manually.
|
|
2138
|
+
*/
|
|
2139
|
+
interface DispatchQuantityChangeProductMasterModel {
|
|
2140
|
+
productCode?: string;
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2143
|
+
/**
|
|
2144
|
+
* Wms.API.Client
|
|
2145
|
+
*
|
|
2146
|
+
*
|
|
2147
|
+
*
|
|
2148
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2149
|
+
* https://openapi-generator.tech
|
|
2150
|
+
* Do not edit the class manually.
|
|
2151
|
+
*/
|
|
2152
|
+
interface DispatchQuantityChangeSalesOrderHeaderModel {
|
|
2153
|
+
salesOrderNumber?: string;
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
/**
|
|
2157
|
+
* Wms.API.Client
|
|
2158
|
+
*
|
|
2159
|
+
*
|
|
2160
|
+
*
|
|
2161
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2162
|
+
* https://openapi-generator.tech
|
|
2163
|
+
* Do not edit the class manually.
|
|
2164
|
+
*/
|
|
2165
|
+
|
|
2166
|
+
interface DispatchQuantityChangeSoLineItemModel {
|
|
2167
|
+
lineNo: number;
|
|
2168
|
+
quantity: number;
|
|
2169
|
+
salesOrderHeader?: DispatchQuantityChangeSalesOrderHeaderModel;
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
/**
|
|
2173
|
+
* Wms.API.Client
|
|
2174
|
+
*
|
|
2175
|
+
*
|
|
2176
|
+
*
|
|
2177
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2178
|
+
* https://openapi-generator.tech
|
|
2179
|
+
* Do not edit the class manually.
|
|
2180
|
+
*/
|
|
2181
|
+
interface DispatchQuantityChangeDispatchModel {
|
|
2182
|
+
OwnerCompanyId?: string;
|
|
2183
|
+
DispatchNumber?: string;
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
/**
|
|
2187
|
+
* Wms.API.Client
|
|
2188
|
+
*
|
|
2189
|
+
*
|
|
2190
|
+
*
|
|
2191
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2192
|
+
* https://openapi-generator.tech
|
|
2193
|
+
* Do not edit the class manually.
|
|
2194
|
+
*/
|
|
2195
|
+
|
|
2196
|
+
interface DispatchQuantityChangeDispatchLineItemModel {
|
|
2197
|
+
lineNo: number;
|
|
2198
|
+
dispatchHeader?: DispatchQuantityChangeDispatchModel;
|
|
2199
|
+
soLineItem?: DispatchQuantityChangeSoLineItemModel;
|
|
2200
|
+
productMaster?: DispatchQuantityChangeProductMasterModel;
|
|
2201
|
+
}
|
|
2202
|
+
|
|
2203
|
+
/**
|
|
2204
|
+
* Wms.API.Client
|
|
2205
|
+
*
|
|
2206
|
+
*
|
|
2207
|
+
*
|
|
2208
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2209
|
+
* https://openapi-generator.tech
|
|
2210
|
+
* Do not edit the class manually.
|
|
2211
|
+
*/
|
|
2212
|
+
|
|
2213
|
+
interface DispatchQuantityChangeViewModel {
|
|
2214
|
+
id: string;
|
|
2215
|
+
customer?: string;
|
|
2216
|
+
qtyRequested: number;
|
|
2217
|
+
qtyDispatched: number;
|
|
2218
|
+
shipToCompanyName?: string;
|
|
2219
|
+
shipToContact?: string;
|
|
2220
|
+
createdDate: string;
|
|
2221
|
+
createdByUser?: string;
|
|
2222
|
+
reason?: string;
|
|
2223
|
+
dispatchItem?: DispatchQuantityChangeDispatchLineItemModel;
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
/**
|
|
2227
|
+
* Wms.API.Client
|
|
2228
|
+
*
|
|
2229
|
+
*
|
|
2230
|
+
*
|
|
2231
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2232
|
+
* https://openapi-generator.tech
|
|
2233
|
+
* Do not edit the class manually.
|
|
2234
|
+
*/
|
|
2235
|
+
|
|
2236
|
+
interface DispatchItemQuantityChanges {
|
|
2237
|
+
total: number;
|
|
2238
|
+
data: Array<DispatchQuantityChangeViewModel>;
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2241
|
+
declare class DispatchItemQuantityChangesService extends BaseService {
|
|
2242
|
+
protected httpClient: HttpClient;
|
|
2243
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2244
|
+
/**
|
|
2245
|
+
* Getting dispatchItemQuantityChanges
|
|
2246
|
+
* @param $skip
|
|
2247
|
+
* @param $top
|
|
2248
|
+
* @param $orderby
|
|
2249
|
+
* @param $filter
|
|
2250
|
+
* @param $search
|
|
2251
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2252
|
+
* @param reportProgress flag to report request and response progress.
|
|
2253
|
+
*/
|
|
2254
|
+
getDispatchItemQuantityChanges($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2255
|
+
httpHeaderAccept?: 'application/json';
|
|
2256
|
+
context?: HttpContext;
|
|
2257
|
+
transferCache?: boolean;
|
|
2258
|
+
}): Observable<DispatchItemQuantityChanges>;
|
|
2259
|
+
getDispatchItemQuantityChanges($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2260
|
+
httpHeaderAccept?: 'application/json';
|
|
2261
|
+
context?: HttpContext;
|
|
2262
|
+
transferCache?: boolean;
|
|
2263
|
+
}): Observable<HttpResponse<DispatchItemQuantityChanges>>;
|
|
2264
|
+
getDispatchItemQuantityChanges($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2265
|
+
httpHeaderAccept?: 'application/json';
|
|
2266
|
+
context?: HttpContext;
|
|
2267
|
+
transferCache?: boolean;
|
|
2268
|
+
}): Observable<HttpEvent<DispatchItemQuantityChanges>>;
|
|
2269
|
+
/**
|
|
2270
|
+
* DispatchItemQuantityChanges list
|
|
2271
|
+
* @param $skip
|
|
2272
|
+
* @param $top
|
|
2273
|
+
* @param $orderby
|
|
2274
|
+
* @param $filter
|
|
2275
|
+
* @param searchTerm
|
|
2276
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2277
|
+
* @param reportProgress flag to report request and response progress.
|
|
2278
|
+
*/
|
|
2279
|
+
getDispatchItemQuantityChangesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2280
|
+
httpHeaderAccept?: 'application/json';
|
|
2281
|
+
context?: HttpContext;
|
|
2282
|
+
transferCache?: boolean;
|
|
2283
|
+
}): Observable<DispatchItemQuantityChanges>;
|
|
2284
|
+
getDispatchItemQuantityChangesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2285
|
+
httpHeaderAccept?: 'application/json';
|
|
2286
|
+
context?: HttpContext;
|
|
2287
|
+
transferCache?: boolean;
|
|
2288
|
+
}): Observable<HttpResponse<DispatchItemQuantityChanges>>;
|
|
2289
|
+
getDispatchItemQuantityChangesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2290
|
+
httpHeaderAccept?: 'application/json';
|
|
2291
|
+
context?: HttpContext;
|
|
2292
|
+
transferCache?: boolean;
|
|
2293
|
+
}): Observable<HttpEvent<DispatchItemQuantityChanges>>;
|
|
2294
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DispatchItemQuantityChangesService, [null, { optional: true; }, { optional: true; }]>;
|
|
2295
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchItemQuantityChangesService>;
|
|
2296
|
+
}
|
|
2297
|
+
|
|
2130
2298
|
/**
|
|
2131
2299
|
* Wms.API.Client
|
|
2132
2300
|
*
|
|
@@ -3366,32 +3534,6 @@ interface ReturnedDeliveryItemDeliveryModel {
|
|
|
3366
3534
|
declare namespace ReturnedDeliveryItemDeliveryModel {
|
|
3367
3535
|
}
|
|
3368
3536
|
|
|
3369
|
-
/**
|
|
3370
|
-
* Wms.API.Client
|
|
3371
|
-
*
|
|
3372
|
-
*
|
|
3373
|
-
*
|
|
3374
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3375
|
-
* https://openapi-generator.tech
|
|
3376
|
-
* Do not edit the class manually.
|
|
3377
|
-
*/
|
|
3378
|
-
interface ReasonLookup {
|
|
3379
|
-
description?: string;
|
|
3380
|
-
}
|
|
3381
|
-
|
|
3382
|
-
/**
|
|
3383
|
-
* Wms.API.Client
|
|
3384
|
-
*
|
|
3385
|
-
*
|
|
3386
|
-
*
|
|
3387
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3388
|
-
* https://openapi-generator.tech
|
|
3389
|
-
* Do not edit the class manually.
|
|
3390
|
-
*/
|
|
3391
|
-
interface ReturnedDeliveryItemProductMasterSystemEanModel {
|
|
3392
|
-
attributeList?: string;
|
|
3393
|
-
}
|
|
3394
|
-
|
|
3395
3537
|
/**
|
|
3396
3538
|
* Wms.API.Client
|
|
3397
3539
|
*
|
|
@@ -3409,10 +3551,11 @@ interface ReturnedDeliveryItemView {
|
|
|
3409
3551
|
asnQuantity: number;
|
|
3410
3552
|
grnQuantity: number;
|
|
3411
3553
|
returnReason?: string;
|
|
3412
|
-
|
|
3413
|
-
|
|
3554
|
+
attributeList?: string;
|
|
3555
|
+
reasonDescription?: string;
|
|
3556
|
+
productDescription?: string;
|
|
3557
|
+
productCode?: string;
|
|
3414
3558
|
delivery?: ReturnedDeliveryItemDeliveryModel;
|
|
3415
|
-
reasonLookup?: ReasonLookup;
|
|
3416
3559
|
}
|
|
3417
3560
|
|
|
3418
3561
|
/**
|
|
@@ -4563,7 +4706,7 @@ declare class UsersInternalService extends BaseService {
|
|
|
4563
4706
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
|
|
4564
4707
|
}
|
|
4565
4708
|
|
|
4566
|
-
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
|
|
4709
|
+
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | 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 ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
|
|
4567
4710
|
|
|
4568
4711
|
/**
|
|
4569
4712
|
* Wms.API.Client
|
|
@@ -4748,5 +4891,5 @@ declare class ApiModule {
|
|
|
4748
4891
|
|
|
4749
4892
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
4750
4893
|
|
|
4751
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
4752
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemView, DispatchItems, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity,
|
|
4894
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, 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, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
4895
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, 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, Notes, Param, ParamLocation, ParamStyle, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
|