@indigina/wms-api 0.0.113 → 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 +60 -25
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +40 -41
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3171,26 +3171,13 @@ declare namespace Note {
|
|
|
3171
3171
|
interface NoteView {
|
|
3172
3172
|
id: string;
|
|
3173
3173
|
createdUserFullName: string;
|
|
3174
|
+
lastModifiedUserFullName: string;
|
|
3174
3175
|
createdDate: string;
|
|
3176
|
+
lastModifiedDate: string;
|
|
3175
3177
|
createdByCompany: string;
|
|
3176
3178
|
notes: string;
|
|
3177
3179
|
}
|
|
3178
3180
|
|
|
3179
|
-
/**
|
|
3180
|
-
* Wms.API.Client
|
|
3181
|
-
*
|
|
3182
|
-
*
|
|
3183
|
-
*
|
|
3184
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3185
|
-
* https://openapi-generator.tech
|
|
3186
|
-
* Do not edit the class manually.
|
|
3187
|
-
*/
|
|
3188
|
-
|
|
3189
|
-
interface Notes {
|
|
3190
|
-
total: number;
|
|
3191
|
-
data: Array<NoteView>;
|
|
3192
|
-
}
|
|
3193
|
-
|
|
3194
3181
|
declare class NotesService extends BaseService {
|
|
3195
3182
|
protected httpClient: HttpClient;
|
|
3196
3183
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
@@ -3216,60 +3203,72 @@ declare class NotesService extends BaseService {
|
|
|
3216
3203
|
transferCache?: boolean;
|
|
3217
3204
|
}): Observable<HttpEvent<Note>>;
|
|
3218
3205
|
/**
|
|
3219
|
-
*
|
|
3206
|
+
* Get note by source with category
|
|
3220
3207
|
* @param sourceId
|
|
3221
3208
|
* @param type
|
|
3222
|
-
* @param
|
|
3223
|
-
* @param $top
|
|
3224
|
-
* @param $orderby
|
|
3225
|
-
* @param $filter
|
|
3226
|
-
* @param $search
|
|
3209
|
+
* @param category
|
|
3227
3210
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3228
3211
|
* @param reportProgress flag to report request and response progress.
|
|
3229
3212
|
*/
|
|
3230
|
-
|
|
3213
|
+
getNoteByCategory(sourceId: string, type: NoteSourceType, category: NoteCategory, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3231
3214
|
httpHeaderAccept?: 'application/json';
|
|
3232
3215
|
context?: HttpContext;
|
|
3233
3216
|
transferCache?: boolean;
|
|
3234
|
-
}): Observable<
|
|
3235
|
-
|
|
3217
|
+
}): Observable<NoteView>;
|
|
3218
|
+
getNoteByCategory(sourceId: string, type: NoteSourceType, category: NoteCategory, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3236
3219
|
httpHeaderAccept?: 'application/json';
|
|
3237
3220
|
context?: HttpContext;
|
|
3238
3221
|
transferCache?: boolean;
|
|
3239
|
-
}): Observable<HttpResponse<
|
|
3240
|
-
|
|
3222
|
+
}): Observable<HttpResponse<NoteView>>;
|
|
3223
|
+
getNoteByCategory(sourceId: string, type: NoteSourceType, category: NoteCategory, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3241
3224
|
httpHeaderAccept?: 'application/json';
|
|
3242
3225
|
context?: HttpContext;
|
|
3243
3226
|
transferCache?: boolean;
|
|
3244
|
-
}): Observable<HttpEvent<
|
|
3227
|
+
}): Observable<HttpEvent<NoteView>>;
|
|
3245
3228
|
/**
|
|
3246
|
-
*
|
|
3229
|
+
* Get note by source
|
|
3247
3230
|
* @param sourceId
|
|
3248
3231
|
* @param type
|
|
3249
|
-
* @param category
|
|
3250
|
-
* @param $skip
|
|
3251
|
-
* @param $top
|
|
3252
|
-
* @param $orderby
|
|
3253
|
-
* @param $filter
|
|
3254
|
-
* @param $search
|
|
3255
3232
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3256
3233
|
* @param reportProgress flag to report request and response progress.
|
|
3257
3234
|
*/
|
|
3258
|
-
|
|
3235
|
+
getNoteBySource(sourceId: string, type: NoteSourceType, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3259
3236
|
httpHeaderAccept?: 'application/json';
|
|
3260
3237
|
context?: HttpContext;
|
|
3261
3238
|
transferCache?: boolean;
|
|
3262
|
-
}): Observable<
|
|
3263
|
-
|
|
3239
|
+
}): Observable<NoteView>;
|
|
3240
|
+
getNoteBySource(sourceId: string, type: NoteSourceType, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3264
3241
|
httpHeaderAccept?: 'application/json';
|
|
3265
3242
|
context?: HttpContext;
|
|
3266
3243
|
transferCache?: boolean;
|
|
3267
|
-
}): Observable<HttpResponse<
|
|
3268
|
-
|
|
3244
|
+
}): Observable<HttpResponse<NoteView>>;
|
|
3245
|
+
getNoteBySource(sourceId: string, type: NoteSourceType, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3269
3246
|
httpHeaderAccept?: 'application/json';
|
|
3270
3247
|
context?: HttpContext;
|
|
3271
3248
|
transferCache?: boolean;
|
|
3272
|
-
}): Observable<HttpEvent<
|
|
3249
|
+
}): Observable<HttpEvent<NoteView>>;
|
|
3250
|
+
/**
|
|
3251
|
+
* Update a specific note
|
|
3252
|
+
* @param id
|
|
3253
|
+
* @param note
|
|
3254
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3255
|
+
* @param reportProgress flag to report request and response progress.
|
|
3256
|
+
*/
|
|
3257
|
+
updateNote(id: string, note: Note, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3258
|
+
httpHeaderAccept?: 'application/json';
|
|
3259
|
+
context?: HttpContext;
|
|
3260
|
+
transferCache?: boolean;
|
|
3261
|
+
}): Observable<Note>;
|
|
3262
|
+
updateNote(id: string, note: Note, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3263
|
+
httpHeaderAccept?: 'application/json';
|
|
3264
|
+
context?: HttpContext;
|
|
3265
|
+
transferCache?: boolean;
|
|
3266
|
+
}): Observable<HttpResponse<Note>>;
|
|
3267
|
+
updateNote(id: string, note: Note, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3268
|
+
httpHeaderAccept?: 'application/json';
|
|
3269
|
+
context?: HttpContext;
|
|
3270
|
+
transferCache?: boolean;
|
|
3271
|
+
}): Observable<HttpEvent<Note>>;
|
|
3273
3272
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotesService, [null, { optional: true; }, { optional: true; }]>;
|
|
3274
3273
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotesService>;
|
|
3275
3274
|
}
|
|
@@ -5614,4 +5613,4 @@ declare class ApiModule {
|
|
|
5614
5613
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
5615
5614
|
|
|
5616
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 };
|
|
5617
|
-
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 };
|