@indigina/wms-api 0.0.114 → 0.0.115
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 +12 -33
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +19 -45
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3178,21 +3178,6 @@ interface NoteView {
|
|
|
3178
3178
|
notes: string;
|
|
3179
3179
|
}
|
|
3180
3180
|
|
|
3181
|
-
/**
|
|
3182
|
-
* Wms.API.Client
|
|
3183
|
-
*
|
|
3184
|
-
*
|
|
3185
|
-
*
|
|
3186
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3187
|
-
* https://openapi-generator.tech
|
|
3188
|
-
* Do not edit the class manually.
|
|
3189
|
-
*/
|
|
3190
|
-
|
|
3191
|
-
interface Notes {
|
|
3192
|
-
total: number;
|
|
3193
|
-
data: Array<NoteView>;
|
|
3194
|
-
}
|
|
3195
|
-
|
|
3196
3181
|
declare class NotesService extends BaseService {
|
|
3197
3182
|
protected httpClient: HttpClient;
|
|
3198
3183
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
@@ -3218,79 +3203,68 @@ declare class NotesService extends BaseService {
|
|
|
3218
3203
|
transferCache?: boolean;
|
|
3219
3204
|
}): Observable<HttpEvent<Note>>;
|
|
3220
3205
|
/**
|
|
3221
|
-
*
|
|
3206
|
+
* Get note by source with category
|
|
3222
3207
|
* @param sourceId
|
|
3223
3208
|
* @param type
|
|
3224
|
-
* @param
|
|
3225
|
-
* @param $top
|
|
3226
|
-
* @param $orderby
|
|
3227
|
-
* @param $filter
|
|
3228
|
-
* @param $search
|
|
3209
|
+
* @param category
|
|
3229
3210
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3230
3211
|
* @param reportProgress flag to report request and response progress.
|
|
3231
3212
|
*/
|
|
3232
|
-
|
|
3213
|
+
getNoteByCategory(sourceId: string, type: NoteSourceType, category: NoteCategory, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3233
3214
|
httpHeaderAccept?: 'application/json';
|
|
3234
3215
|
context?: HttpContext;
|
|
3235
3216
|
transferCache?: boolean;
|
|
3236
|
-
}): Observable<
|
|
3237
|
-
|
|
3217
|
+
}): Observable<NoteView>;
|
|
3218
|
+
getNoteByCategory(sourceId: string, type: NoteSourceType, category: NoteCategory, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3238
3219
|
httpHeaderAccept?: 'application/json';
|
|
3239
3220
|
context?: HttpContext;
|
|
3240
3221
|
transferCache?: boolean;
|
|
3241
|
-
}): Observable<HttpResponse<
|
|
3242
|
-
|
|
3222
|
+
}): Observable<HttpResponse<NoteView>>;
|
|
3223
|
+
getNoteByCategory(sourceId: string, type: NoteSourceType, category: NoteCategory, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3243
3224
|
httpHeaderAccept?: 'application/json';
|
|
3244
3225
|
context?: HttpContext;
|
|
3245
3226
|
transferCache?: boolean;
|
|
3246
|
-
}): Observable<HttpEvent<
|
|
3227
|
+
}): Observable<HttpEvent<NoteView>>;
|
|
3247
3228
|
/**
|
|
3248
|
-
*
|
|
3229
|
+
* Get note by source
|
|
3249
3230
|
* @param sourceId
|
|
3250
3231
|
* @param type
|
|
3251
|
-
* @param category
|
|
3252
|
-
* @param $skip
|
|
3253
|
-
* @param $top
|
|
3254
|
-
* @param $orderby
|
|
3255
|
-
* @param $filter
|
|
3256
|
-
* @param $search
|
|
3257
3232
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3258
3233
|
* @param reportProgress flag to report request and response progress.
|
|
3259
3234
|
*/
|
|
3260
|
-
|
|
3235
|
+
getNoteBySource(sourceId: string, type: NoteSourceType, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3261
3236
|
httpHeaderAccept?: 'application/json';
|
|
3262
3237
|
context?: HttpContext;
|
|
3263
3238
|
transferCache?: boolean;
|
|
3264
|
-
}): Observable<
|
|
3265
|
-
|
|
3239
|
+
}): Observable<NoteView>;
|
|
3240
|
+
getNoteBySource(sourceId: string, type: NoteSourceType, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3266
3241
|
httpHeaderAccept?: 'application/json';
|
|
3267
3242
|
context?: HttpContext;
|
|
3268
3243
|
transferCache?: boolean;
|
|
3269
|
-
}): Observable<HttpResponse<
|
|
3270
|
-
|
|
3244
|
+
}): Observable<HttpResponse<NoteView>>;
|
|
3245
|
+
getNoteBySource(sourceId: string, type: NoteSourceType, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3271
3246
|
httpHeaderAccept?: 'application/json';
|
|
3272
3247
|
context?: HttpContext;
|
|
3273
3248
|
transferCache?: boolean;
|
|
3274
|
-
}): Observable<HttpEvent<
|
|
3249
|
+
}): Observable<HttpEvent<NoteView>>;
|
|
3275
3250
|
/**
|
|
3276
3251
|
* Update a specific note
|
|
3277
3252
|
* @param id
|
|
3278
3253
|
* @param note
|
|
3279
|
-
* @param propertiesToUpdate
|
|
3280
3254
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3281
3255
|
* @param reportProgress flag to report request and response progress.
|
|
3282
3256
|
*/
|
|
3283
|
-
updateNote(id: string, note: Note,
|
|
3257
|
+
updateNote(id: string, note: Note, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3284
3258
|
httpHeaderAccept?: 'application/json';
|
|
3285
3259
|
context?: HttpContext;
|
|
3286
3260
|
transferCache?: boolean;
|
|
3287
3261
|
}): Observable<Note>;
|
|
3288
|
-
updateNote(id: string, note: Note,
|
|
3262
|
+
updateNote(id: string, note: Note, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3289
3263
|
httpHeaderAccept?: 'application/json';
|
|
3290
3264
|
context?: HttpContext;
|
|
3291
3265
|
transferCache?: boolean;
|
|
3292
3266
|
}): Observable<HttpResponse<Note>>;
|
|
3293
|
-
updateNote(id: string, note: Note,
|
|
3267
|
+
updateNote(id: string, note: Note, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3294
3268
|
httpHeaderAccept?: 'application/json';
|
|
3295
3269
|
context?: HttpContext;
|
|
3296
3270
|
transferCache?: boolean;
|
|
@@ -5639,4 +5613,4 @@ declare class ApiModule {
|
|
|
5639
5613
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
5640
5614
|
|
|
5641
5615
|
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 };
|
|
5642
|
-
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,
|
|
5616
|
+
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 };
|