@ignos/api-client 20251009.0.12800 → 20251013.0.12851-alpha
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/lib/ignosportal-api.d.ts +19 -0
- package/lib/ignosportal-api.js +700 -622
- package/package.json +1 -1
- package/src/ignosportal-api.ts +2042 -1946
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2348,6 +2348,7 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
2348
2348
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2349
2349
|
listMeasurementFormsByStatus(status: MeasurementFormInstanceStatus | undefined, statusChangedSince: Date | null | undefined, onlyWithReports: boolean | null | undefined, pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2350
2350
|
postListMeasurementFormsByStatus(request: ListMeasurementFormsByStatusRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2351
|
+
deleteInstancesBulk(request: DeleteMeasurementFormsInstancesBulkRequest): Promise<void>;
|
|
2351
2352
|
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2352
2353
|
createMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2353
2354
|
updateMeasurementFormInstance(id: string, request: UpdateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
@@ -2394,6 +2395,8 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2394
2395
|
protected processListMeasurementFormsByStatus(response: Response): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2395
2396
|
postListMeasurementFormsByStatus(request: ListMeasurementFormsByStatusRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2396
2397
|
protected processPostListMeasurementFormsByStatus(response: Response): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2398
|
+
deleteInstancesBulk(request: DeleteMeasurementFormsInstancesBulkRequest): Promise<void>;
|
|
2399
|
+
protected processDeleteInstancesBulk(response: Response): Promise<void>;
|
|
2397
2400
|
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2398
2401
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2399
2402
|
createMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
@@ -10738,6 +10741,7 @@ export declare class ProductionOrderOperationDto implements IProductionOrderOper
|
|
|
10738
10741
|
quantity: number;
|
|
10739
10742
|
startedQuantity?: number | null;
|
|
10740
10743
|
ongoingQuantity?: number | null;
|
|
10744
|
+
earlierOperationsScrappedQuantity: number;
|
|
10741
10745
|
availableToStartQuantity: number;
|
|
10742
10746
|
workInstructions?: string | null;
|
|
10743
10747
|
note?: string | null;
|
|
@@ -10775,6 +10779,7 @@ export interface IProductionOrderOperationDto {
|
|
|
10775
10779
|
quantity: number;
|
|
10776
10780
|
startedQuantity?: number | null;
|
|
10777
10781
|
ongoingQuantity?: number | null;
|
|
10782
|
+
earlierOperationsScrappedQuantity: number;
|
|
10778
10783
|
availableToStartQuantity: number;
|
|
10779
10784
|
workInstructions?: string | null;
|
|
10780
10785
|
note?: string | null;
|
|
@@ -11198,6 +11203,7 @@ export declare class ProductionScheduleOperationDto implements IProductionSchedu
|
|
|
11198
11203
|
producedQuantity: number;
|
|
11199
11204
|
scrappedQuantity: number;
|
|
11200
11205
|
availableToStartQuantity: number;
|
|
11206
|
+
earlierOperationsScrappedQuantity: number;
|
|
11201
11207
|
startedQuantity?: number | null;
|
|
11202
11208
|
ongoingQuantity?: number | null;
|
|
11203
11209
|
project?: WorkOrderProjectDto | null;
|
|
@@ -11252,6 +11258,7 @@ export interface IProductionScheduleOperationDto {
|
|
|
11252
11258
|
producedQuantity: number;
|
|
11253
11259
|
scrappedQuantity: number;
|
|
11254
11260
|
availableToStartQuantity: number;
|
|
11261
|
+
earlierOperationsScrappedQuantity: number;
|
|
11255
11262
|
startedQuantity?: number | null;
|
|
11256
11263
|
ongoingQuantity?: number | null;
|
|
11257
11264
|
project?: WorkOrderProjectDto | null;
|
|
@@ -11298,6 +11305,7 @@ export declare class SurroundingOperationDto implements ISurroundingOperationDto
|
|
|
11298
11305
|
resourceDepartmentName?: string | null;
|
|
11299
11306
|
producedQuantity: number;
|
|
11300
11307
|
scrappedQuantity: number;
|
|
11308
|
+
earlierOperationsScrappedQuantity: number;
|
|
11301
11309
|
startedQuantity?: number | null;
|
|
11302
11310
|
constructor(data?: ISurroundingOperationDto);
|
|
11303
11311
|
init(_data?: any): void;
|
|
@@ -11320,6 +11328,7 @@ export interface ISurroundingOperationDto {
|
|
|
11320
11328
|
resourceDepartmentName?: string | null;
|
|
11321
11329
|
producedQuantity: number;
|
|
11322
11330
|
scrappedQuantity: number;
|
|
11331
|
+
earlierOperationsScrappedQuantity: number;
|
|
11323
11332
|
startedQuantity?: number | null;
|
|
11324
11333
|
}
|
|
11325
11334
|
export declare class OperationPrerequisitesDto implements IOperationPrerequisitesDto {
|
|
@@ -13328,6 +13337,16 @@ export interface IMeasurementFormWorkorderSupplierDto {
|
|
|
13328
13337
|
procurementLine?: number | null;
|
|
13329
13338
|
externalOrderNumber?: string | null;
|
|
13330
13339
|
}
|
|
13340
|
+
export declare class DeleteMeasurementFormsInstancesBulkRequest implements IDeleteMeasurementFormsInstancesBulkRequest {
|
|
13341
|
+
ids: string[];
|
|
13342
|
+
constructor(data?: IDeleteMeasurementFormsInstancesBulkRequest);
|
|
13343
|
+
init(_data?: any): void;
|
|
13344
|
+
static fromJS(data: any): DeleteMeasurementFormsInstancesBulkRequest;
|
|
13345
|
+
toJSON(data?: any): any;
|
|
13346
|
+
}
|
|
13347
|
+
export interface IDeleteMeasurementFormsInstancesBulkRequest {
|
|
13348
|
+
ids: string[];
|
|
13349
|
+
}
|
|
13331
13350
|
export declare class ListMeasurementFormsByStatusRequest implements IListMeasurementFormsByStatusRequest {
|
|
13332
13351
|
status?: MeasurementFormInstanceStatus | null;
|
|
13333
13352
|
statusChangedSince?: Date | null;
|