@ignos/api-client 20251114.0.13234-alpha → 20251209.0.13462-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 +343 -288
- package/lib/ignosportal-api.js +1009 -972
- package/package.json +1 -1
- package/src/ignosportal-api.ts +1528 -1436
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2197,7 +2197,6 @@ export interface IMeasurementFormSchemasAdminClient {
|
|
|
2197
2197
|
listResourceTypesForNeedsGenerator(): Promise<MeasurementFormResourceTypeGeneratorDto[]>;
|
|
2198
2198
|
addResourceTypeForNeedsGenerator(request: AddResourceTypeForNeedsGenerator): Promise<MeasurementFormResourceTypeGeneratorDto>;
|
|
2199
2199
|
deleteResourceTypeForNeedsGenerator(resourceType: string): Promise<void>;
|
|
2200
|
-
listFrequencies(): Promise<MeasurementFrequencyDto[]>;
|
|
2201
2200
|
listMeasurementFormInstanceSchemaFeedback(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfSchemaFeedbackDto>;
|
|
2202
2201
|
postListMeasurementFormInstanceSchemaFeedback(request: ListMeasurementFormInstanceSchemaFeedbackRequest | undefined): Promise<PagedResultOfSchemaFeedbackDto>;
|
|
2203
2202
|
getMeasurementFormInstanceSchemaFeedback(id: string): Promise<SchemaFeedbackDto>;
|
|
@@ -2316,8 +2315,6 @@ export declare class MeasurementFormSchemasAdminClient extends AuthorizedApiBase
|
|
|
2316
2315
|
protected processAddResourceTypeForNeedsGenerator(response: Response): Promise<MeasurementFormResourceTypeGeneratorDto>;
|
|
2317
2316
|
deleteResourceTypeForNeedsGenerator(resourceType: string): Promise<void>;
|
|
2318
2317
|
protected processDeleteResourceTypeForNeedsGenerator(response: Response): Promise<void>;
|
|
2319
|
-
listFrequencies(): Promise<MeasurementFrequencyDto[]>;
|
|
2320
|
-
protected processListFrequencies(response: Response): Promise<MeasurementFrequencyDto[]>;
|
|
2321
2318
|
listMeasurementFormInstanceSchemaFeedback(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfSchemaFeedbackDto>;
|
|
2322
2319
|
protected processListMeasurementFormInstanceSchemaFeedback(response: Response): Promise<PagedResultOfSchemaFeedbackDto>;
|
|
2323
2320
|
postListMeasurementFormInstanceSchemaFeedback(request: ListMeasurementFormInstanceSchemaFeedbackRequest | undefined): Promise<PagedResultOfSchemaFeedbackDto>;
|
|
@@ -2336,6 +2333,7 @@ export declare class MeasurementFormSchemasAdminClient extends AuthorizedApiBase
|
|
|
2336
2333
|
export interface IMeasurementFormSchemasClient {
|
|
2337
2334
|
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2338
2335
|
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2336
|
+
listFrequencies(): Promise<MeasurementFrequencyDto[]>;
|
|
2339
2337
|
}
|
|
2340
2338
|
export declare class MeasurementFormSchemasClient extends AuthorizedApiBase implements IMeasurementFormSchemasClient {
|
|
2341
2339
|
private http;
|
|
@@ -2348,6 +2346,8 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2348
2346
|
protected processGetMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2349
2347
|
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2350
2348
|
protected processPostListMeasurementFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2349
|
+
listFrequencies(): Promise<MeasurementFrequencyDto[]>;
|
|
2350
|
+
protected processListFrequencies(response: Response): Promise<MeasurementFrequencyDto[]>;
|
|
2351
2351
|
}
|
|
2352
2352
|
export interface IMeasurementFormSettingsClient {
|
|
2353
2353
|
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
@@ -2371,22 +2371,31 @@ export declare class MeasurementFormSettingsClient extends AuthorizedApiBase imp
|
|
|
2371
2371
|
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2372
2372
|
protected processUpdateMeasurementFormCustomerSettings(response: Response): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2373
2373
|
}
|
|
2374
|
+
export interface IMeasurementFormsInstancesAdminClient {
|
|
2375
|
+
approveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2376
|
+
disapproveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2377
|
+
exportDimensionReportValues(id: string): Promise<DownloadDto>;
|
|
2378
|
+
}
|
|
2379
|
+
export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesAdminClient {
|
|
2380
|
+
private http;
|
|
2381
|
+
private baseUrl;
|
|
2382
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2383
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2384
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2385
|
+
});
|
|
2386
|
+
approveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2387
|
+
protected processApproveMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2388
|
+
disapproveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2389
|
+
protected processDisapproveMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2390
|
+
exportDimensionReportValues(id: string): Promise<DownloadDto>;
|
|
2391
|
+
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
2392
|
+
}
|
|
2374
2393
|
export interface IMeasurementFormsInstancesClient {
|
|
2375
2394
|
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, tenantId: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2376
2395
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2377
|
-
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>;
|
|
2378
|
-
postListMeasurementFormsByStatus(request: ListMeasurementFormsByStatusRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2379
|
-
deleteInstancesBulk(request: DeleteMeasurementFormsInstancesBulkRequest): Promise<void>;
|
|
2380
2396
|
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2381
|
-
createMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2382
|
-
updateMeasurementFormInstance(id: string, request: UpdateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2383
2397
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2384
|
-
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2385
2398
|
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2386
|
-
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2387
|
-
approveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2388
|
-
disapproveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2389
|
-
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2390
2399
|
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2391
2400
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2392
2401
|
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
@@ -2405,8 +2414,6 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
2405
2414
|
*/
|
|
2406
2415
|
exportDimensionReportV2(id: string, request: ExportDimensionReportV2Request): Promise<DownloadDto>;
|
|
2407
2416
|
exportDimensionReport(id: string, request: ExportDimensionReportV2Request): Promise<DownloadDto>;
|
|
2408
|
-
exportDimensionReportValues(id: string): Promise<DownloadDto>;
|
|
2409
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2410
2417
|
}
|
|
2411
2418
|
export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase implements IMeasurementFormsInstancesClient {
|
|
2412
2419
|
private http;
|
|
@@ -2419,32 +2426,12 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2419
2426
|
protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2420
2427
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2421
2428
|
protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2422
|
-
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>;
|
|
2423
|
-
protected processListMeasurementFormsByStatus(response: Response): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2424
|
-
postListMeasurementFormsByStatus(request: ListMeasurementFormsByStatusRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2425
|
-
protected processPostListMeasurementFormsByStatus(response: Response): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2426
|
-
deleteInstancesBulk(request: DeleteMeasurementFormsInstancesBulkRequest): Promise<void>;
|
|
2427
|
-
protected processDeleteInstancesBulk(response: Response): Promise<void>;
|
|
2428
2429
|
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2429
2430
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2430
|
-
createMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2431
|
-
protected processCreateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2432
|
-
updateMeasurementFormInstance(id: string, request: UpdateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2433
|
-
protected processUpdateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2434
2431
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2435
2432
|
protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2436
|
-
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2437
|
-
protected processCreateMeasurementFormInstance2(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2438
2433
|
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2439
2434
|
protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2440
|
-
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2441
|
-
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2442
|
-
approveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2443
|
-
protected processApproveMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2444
|
-
disapproveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2445
|
-
protected processDisapproveMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2446
|
-
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2447
|
-
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2448
2435
|
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2449
2436
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2450
2437
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
@@ -2478,8 +2465,41 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2478
2465
|
protected processExportDimensionReportV2(response: Response): Promise<DownloadDto>;
|
|
2479
2466
|
exportDimensionReport(id: string, request: ExportDimensionReportV2Request): Promise<DownloadDto>;
|
|
2480
2467
|
protected processExportDimensionReport(response: Response): Promise<DownloadDto>;
|
|
2481
|
-
|
|
2482
|
-
|
|
2468
|
+
}
|
|
2469
|
+
export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
2470
|
+
createMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2471
|
+
updateMeasurementFormInstance(id: string, request: UpdateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2472
|
+
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>;
|
|
2473
|
+
postListMeasurementFormsByStatus(request: ListMeasurementFormsByStatusRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2474
|
+
deleteInstancesBulk(request: DeleteMeasurementFormsInstancesBulkRequest): Promise<void>;
|
|
2475
|
+
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2476
|
+
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2477
|
+
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2478
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2479
|
+
}
|
|
2480
|
+
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
2481
|
+
private http;
|
|
2482
|
+
private baseUrl;
|
|
2483
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2484
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2485
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2486
|
+
});
|
|
2487
|
+
createMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2488
|
+
protected processCreateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2489
|
+
updateMeasurementFormInstance(id: string, request: UpdateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2490
|
+
protected processUpdateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2491
|
+
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>;
|
|
2492
|
+
protected processListMeasurementFormsByStatus(response: Response): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2493
|
+
postListMeasurementFormsByStatus(request: ListMeasurementFormsByStatusRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2494
|
+
protected processPostListMeasurementFormsByStatus(response: Response): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2495
|
+
deleteInstancesBulk(request: DeleteMeasurementFormsInstancesBulkRequest): Promise<void>;
|
|
2496
|
+
protected processDeleteInstancesBulk(response: Response): Promise<void>;
|
|
2497
|
+
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2498
|
+
protected processCreateMeasurementFormInstance2(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2499
|
+
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2500
|
+
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2501
|
+
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2502
|
+
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2483
2503
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2484
2504
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
2485
2505
|
}
|
|
@@ -2637,16 +2657,6 @@ export interface IWorkordersClient {
|
|
|
2637
2657
|
upsertWorkorderTraces(id: string, request: UpsertWorkOrderTracesRequest): Promise<void>;
|
|
2638
2658
|
setWorkorderCustomerOrderReference(id: string, request: WorkorderCustomerOrderReferenceDto | undefined): Promise<void>;
|
|
2639
2659
|
checkResourceStatus(id: string): Promise<ResourceExistDto>;
|
|
2640
|
-
/**
|
|
2641
|
-
* Register start work or setup on a workorder operation.
|
|
2642
|
-
* @deprecated
|
|
2643
|
-
*/
|
|
2644
|
-
startWorkorderOperation(id: string, operation: number, request: StartWorkOperationRequest): Promise<void>;
|
|
2645
|
-
/**
|
|
2646
|
-
* Register end work or setup on a workorder operation.
|
|
2647
|
-
* @deprecated
|
|
2648
|
-
*/
|
|
2649
|
-
stopWorkorderOperation(id: string, operation: number, request: StopWorkOperationRequest): Promise<void>;
|
|
2650
2660
|
/**
|
|
2651
2661
|
* Register a completed work order operation event
|
|
2652
2662
|
*/
|
|
@@ -2659,6 +2669,10 @@ export interface IWorkordersClient {
|
|
|
2659
2669
|
* Register end work or setup on a workorder operation.
|
|
2660
2670
|
*/
|
|
2661
2671
|
stopWorkorderOperationV2(id: string, operation: number, request: StopWorkOperationRequest): Promise<WorkorderOperationEventDto>;
|
|
2672
|
+
/**
|
|
2673
|
+
* Sync work order operation
|
|
2674
|
+
*/
|
|
2675
|
+
syncWorkorderOperation(id: string, operation: number, request: SyncWorkorderOperationRequest): Promise<WorkorderOperationEventDto>;
|
|
2662
2676
|
listActiveWorkorderOperations(): Promise<WorkorderOperationEventDto[]>;
|
|
2663
2677
|
deleteWorkorderOperationEvent(id: string, operation: number, eventId: string): Promise<void>;
|
|
2664
2678
|
/**
|
|
@@ -2756,18 +2770,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
2756
2770
|
protected processSetWorkorderCustomerOrderReference(response: Response): Promise<void>;
|
|
2757
2771
|
checkResourceStatus(id: string): Promise<ResourceExistDto>;
|
|
2758
2772
|
protected processCheckResourceStatus(response: Response): Promise<ResourceExistDto>;
|
|
2759
|
-
/**
|
|
2760
|
-
* Register start work or setup on a workorder operation.
|
|
2761
|
-
* @deprecated
|
|
2762
|
-
*/
|
|
2763
|
-
startWorkorderOperation(id: string, operation: number, request: StartWorkOperationRequest): Promise<void>;
|
|
2764
|
-
protected processStartWorkorderOperation(response: Response): Promise<void>;
|
|
2765
|
-
/**
|
|
2766
|
-
* Register end work or setup on a workorder operation.
|
|
2767
|
-
* @deprecated
|
|
2768
|
-
*/
|
|
2769
|
-
stopWorkorderOperation(id: string, operation: number, request: StopWorkOperationRequest): Promise<void>;
|
|
2770
|
-
protected processStopWorkorderOperation(response: Response): Promise<void>;
|
|
2771
2773
|
/**
|
|
2772
2774
|
* Register a completed work order operation event
|
|
2773
2775
|
*/
|
|
@@ -2783,6 +2785,11 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
2783
2785
|
*/
|
|
2784
2786
|
stopWorkorderOperationV2(id: string, operation: number, request: StopWorkOperationRequest): Promise<WorkorderOperationEventDto>;
|
|
2785
2787
|
protected processStopWorkorderOperationV2(response: Response): Promise<WorkorderOperationEventDto>;
|
|
2788
|
+
/**
|
|
2789
|
+
* Sync work order operation
|
|
2790
|
+
*/
|
|
2791
|
+
syncWorkorderOperation(id: string, operation: number, request: SyncWorkorderOperationRequest): Promise<WorkorderOperationEventDto>;
|
|
2792
|
+
protected processSyncWorkorderOperation(response: Response): Promise<WorkorderOperationEventDto>;
|
|
2786
2793
|
listActiveWorkorderOperations(): Promise<WorkorderOperationEventDto[]>;
|
|
2787
2794
|
protected processListActiveWorkorderOperations(response: Response): Promise<WorkorderOperationEventDto[]>;
|
|
2788
2795
|
deleteWorkorderOperationEvent(id: string, operation: number, eventId: string): Promise<void>;
|
|
@@ -4543,6 +4550,8 @@ export declare class MrbTemplateDto implements IMrbTemplateDto {
|
|
|
4543
4550
|
sharedAccessUri?: string | null;
|
|
4544
4551
|
contentIndicator?: string | null;
|
|
4545
4552
|
noContentIndicator?: string | null;
|
|
4553
|
+
showSerialNumbersOnFrontPage?: boolean;
|
|
4554
|
+
showSerialNumbersOnCoC?: boolean;
|
|
4546
4555
|
elements: MrbTemplateElementDto[];
|
|
4547
4556
|
tableOfContents?: MrbTemplateTableOfContentsDto | null;
|
|
4548
4557
|
constructor(data?: IMrbTemplateDto);
|
|
@@ -4561,6 +4570,8 @@ export interface IMrbTemplateDto {
|
|
|
4561
4570
|
sharedAccessUri?: string | null;
|
|
4562
4571
|
contentIndicator?: string | null;
|
|
4563
4572
|
noContentIndicator?: string | null;
|
|
4573
|
+
showSerialNumbersOnFrontPage?: boolean;
|
|
4574
|
+
showSerialNumbersOnCoC?: boolean;
|
|
4564
4575
|
elements: MrbTemplateElementDto[];
|
|
4565
4576
|
tableOfContents?: MrbTemplateTableOfContentsDto | null;
|
|
4566
4577
|
}
|
|
@@ -4733,6 +4744,7 @@ export declare class MrbCompanySettingsDto implements IMrbCompanySettingsDto {
|
|
|
4733
4744
|
hideVendorBatchInfo: boolean;
|
|
4734
4745
|
lotLabel?: string | null;
|
|
4735
4746
|
vendorBatchLabel?: string | null;
|
|
4747
|
+
ownArticleLabel?: string | null;
|
|
4736
4748
|
coCStatement?: string | null;
|
|
4737
4749
|
addressLines: string[];
|
|
4738
4750
|
sequenceFormat?: string | null;
|
|
@@ -4753,6 +4765,7 @@ export interface IMrbCompanySettingsDto {
|
|
|
4753
4765
|
hideVendorBatchInfo: boolean;
|
|
4754
4766
|
lotLabel?: string | null;
|
|
4755
4767
|
vendorBatchLabel?: string | null;
|
|
4768
|
+
ownArticleLabel?: string | null;
|
|
4756
4769
|
coCStatement?: string | null;
|
|
4757
4770
|
addressLines: string[];
|
|
4758
4771
|
sequenceFormat?: string | null;
|
|
@@ -4769,6 +4782,7 @@ export declare class UpsertMrbCompanySettings implements IUpsertMrbCompanySettin
|
|
|
4769
4782
|
hideVendorBatchInfo: boolean;
|
|
4770
4783
|
lotLabel?: string | null;
|
|
4771
4784
|
vendorBatchLabel?: string | null;
|
|
4785
|
+
ownArticleLabel?: string | null;
|
|
4772
4786
|
coCStatement?: string | null;
|
|
4773
4787
|
addressLines: string[];
|
|
4774
4788
|
sequenceFormat?: string | null;
|
|
@@ -4789,6 +4803,7 @@ export interface IUpsertMrbCompanySettings {
|
|
|
4789
4803
|
hideVendorBatchInfo: boolean;
|
|
4790
4804
|
lotLabel?: string | null;
|
|
4791
4805
|
vendorBatchLabel?: string | null;
|
|
4806
|
+
ownArticleLabel?: string | null;
|
|
4792
4807
|
coCStatement?: string | null;
|
|
4793
4808
|
addressLines: string[];
|
|
4794
4809
|
sequenceFormat?: string | null;
|
|
@@ -13036,18 +13051,6 @@ export declare class AddResourceTypeForNeedsGenerator implements IAddResourceTyp
|
|
|
13036
13051
|
export interface IAddResourceTypeForNeedsGenerator {
|
|
13037
13052
|
resourceType: string;
|
|
13038
13053
|
}
|
|
13039
|
-
export declare class MeasurementFrequencyDto implements IMeasurementFrequencyDto {
|
|
13040
|
-
id: number;
|
|
13041
|
-
name: string;
|
|
13042
|
-
constructor(data?: IMeasurementFrequencyDto);
|
|
13043
|
-
init(_data?: any): void;
|
|
13044
|
-
static fromJS(data: any): MeasurementFrequencyDto;
|
|
13045
|
-
toJSON(data?: any): any;
|
|
13046
|
-
}
|
|
13047
|
-
export interface IMeasurementFrequencyDto {
|
|
13048
|
-
id: number;
|
|
13049
|
-
name: string;
|
|
13050
|
-
}
|
|
13051
13054
|
export declare class PagedResultOfSchemaFeedbackDto implements IPagedResultOfSchemaFeedbackDto {
|
|
13052
13055
|
results: SchemaFeedbackDto[];
|
|
13053
13056
|
continuationToken?: string | null;
|
|
@@ -13181,134 +13184,17 @@ export interface IListMeasurementFormSchemasRequest {
|
|
|
13181
13184
|
filter?: string | null;
|
|
13182
13185
|
continuationToken?: string | null;
|
|
13183
13186
|
}
|
|
13184
|
-
export declare class
|
|
13185
|
-
|
|
13186
|
-
|
|
13187
|
-
constructor(data?:
|
|
13188
|
-
init(_data?: any): void;
|
|
13189
|
-
static fromJS(data: any): PagedResultOfMeasurementFormInstanceOverviewDto;
|
|
13190
|
-
toJSON(data?: any): any;
|
|
13191
|
-
}
|
|
13192
|
-
export interface IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
13193
|
-
results: MeasurementFormInstanceOverviewDto[];
|
|
13194
|
-
continuationToken?: string | null;
|
|
13195
|
-
}
|
|
13196
|
-
export declare class MeasurementFormInstanceOverviewDto implements IMeasurementFormInstanceOverviewDto {
|
|
13197
|
-
id: string;
|
|
13198
|
-
readonly: boolean;
|
|
13199
|
-
partName?: string | null;
|
|
13200
|
-
partNumber?: string | null;
|
|
13201
|
-
partRevision?: string | null;
|
|
13202
|
-
drawing?: string | null;
|
|
13203
|
-
drawingRevision?: string | null;
|
|
13204
|
-
drawingUrl?: string | null;
|
|
13205
|
-
customerId?: string | null;
|
|
13206
|
-
customerName?: string | null;
|
|
13207
|
-
quantity: number;
|
|
13208
|
-
status: MeasurementFormInstanceStatus;
|
|
13209
|
-
schemas: MeasurementFormInstanceSchemaOverviewDto[];
|
|
13210
|
-
supplierData?: MeasurementFormInstanceSupplierDto | null;
|
|
13211
|
-
progress: MeasurementFormProgressDto;
|
|
13212
|
-
constructor(data?: IMeasurementFormInstanceOverviewDto);
|
|
13213
|
-
init(_data?: any): void;
|
|
13214
|
-
static fromJS(data: any): MeasurementFormInstanceOverviewDto;
|
|
13215
|
-
toJSON(data?: any): any;
|
|
13216
|
-
}
|
|
13217
|
-
export interface IMeasurementFormInstanceOverviewDto {
|
|
13218
|
-
id: string;
|
|
13219
|
-
readonly: boolean;
|
|
13220
|
-
partName?: string | null;
|
|
13221
|
-
partNumber?: string | null;
|
|
13222
|
-
partRevision?: string | null;
|
|
13223
|
-
drawing?: string | null;
|
|
13224
|
-
drawingRevision?: string | null;
|
|
13225
|
-
drawingUrl?: string | null;
|
|
13226
|
-
customerId?: string | null;
|
|
13227
|
-
customerName?: string | null;
|
|
13228
|
-
quantity: number;
|
|
13229
|
-
status: MeasurementFormInstanceStatus;
|
|
13230
|
-
schemas: MeasurementFormInstanceSchemaOverviewDto[];
|
|
13231
|
-
supplierData?: MeasurementFormInstanceSupplierDto | null;
|
|
13232
|
-
progress: MeasurementFormProgressDto;
|
|
13233
|
-
}
|
|
13234
|
-
export type MeasurementFormInstanceStatus = "Active" | "Cancelled" | "Completed" | "Approved" | "MissingCompletion";
|
|
13235
|
-
export declare class MeasurementFormInstanceSchemaOverviewDto implements IMeasurementFormInstanceSchemaOverviewDto {
|
|
13236
|
-
id: string;
|
|
13237
|
-
constructor(data?: IMeasurementFormInstanceSchemaOverviewDto);
|
|
13238
|
-
init(_data?: any): void;
|
|
13239
|
-
static fromJS(data: any): MeasurementFormInstanceSchemaOverviewDto;
|
|
13240
|
-
toJSON(data?: any): any;
|
|
13241
|
-
}
|
|
13242
|
-
export interface IMeasurementFormInstanceSchemaOverviewDto {
|
|
13243
|
-
id: string;
|
|
13244
|
-
}
|
|
13245
|
-
export declare class MeasurementFormInstanceSupplierDto implements IMeasurementFormInstanceSupplierDto {
|
|
13246
|
-
supplierId: string;
|
|
13247
|
-
supplierName?: string | null;
|
|
13248
|
-
available?: boolean;
|
|
13249
|
-
procurementOrder?: string | null;
|
|
13250
|
-
procurementLine?: number | null;
|
|
13251
|
-
externalOrderNumber?: string | null;
|
|
13252
|
-
constructor(data?: IMeasurementFormInstanceSupplierDto);
|
|
13253
|
-
init(_data?: any): void;
|
|
13254
|
-
static fromJS(data: any): MeasurementFormInstanceSupplierDto;
|
|
13255
|
-
toJSON(data?: any): any;
|
|
13256
|
-
}
|
|
13257
|
-
export interface IMeasurementFormInstanceSupplierDto {
|
|
13258
|
-
supplierId: string;
|
|
13259
|
-
supplierName?: string | null;
|
|
13260
|
-
available?: boolean;
|
|
13261
|
-
procurementOrder?: string | null;
|
|
13262
|
-
procurementLine?: number | null;
|
|
13263
|
-
externalOrderNumber?: string | null;
|
|
13264
|
-
}
|
|
13265
|
-
export declare class MeasurementFormProgressDto implements IMeasurementFormProgressDto {
|
|
13266
|
-
id: string;
|
|
13267
|
-
requiredValues: number;
|
|
13268
|
-
values: number;
|
|
13269
|
-
progress: number;
|
|
13270
|
-
constructor(data?: IMeasurementFormProgressDto);
|
|
13271
|
-
init(_data?: any): void;
|
|
13272
|
-
static fromJS(data: any): MeasurementFormProgressDto;
|
|
13273
|
-
toJSON(data?: any): any;
|
|
13274
|
-
}
|
|
13275
|
-
export interface IMeasurementFormProgressDto {
|
|
13276
|
-
id: string;
|
|
13277
|
-
requiredValues: number;
|
|
13278
|
-
values: number;
|
|
13279
|
-
progress: number;
|
|
13280
|
-
}
|
|
13281
|
-
export declare class ListMeasurementFormsRequest implements IListMeasurementFormsRequest {
|
|
13282
|
-
pageSize?: number | null;
|
|
13283
|
-
search?: string | null;
|
|
13284
|
-
continuationToken?: string | null;
|
|
13285
|
-
tenantId?: string | null;
|
|
13286
|
-
inactive?: boolean | null;
|
|
13287
|
-
includeInactiveSupplierAccess?: boolean | null;
|
|
13288
|
-
constructor(data?: IListMeasurementFormsRequest);
|
|
13289
|
-
init(_data?: any): void;
|
|
13290
|
-
static fromJS(data: any): ListMeasurementFormsRequest;
|
|
13291
|
-
toJSON(data?: any): any;
|
|
13292
|
-
}
|
|
13293
|
-
export interface IListMeasurementFormsRequest {
|
|
13294
|
-
pageSize?: number | null;
|
|
13295
|
-
search?: string | null;
|
|
13296
|
-
continuationToken?: string | null;
|
|
13297
|
-
tenantId?: string | null;
|
|
13298
|
-
inactive?: boolean | null;
|
|
13299
|
-
includeInactiveSupplierAccess?: boolean | null;
|
|
13300
|
-
}
|
|
13301
|
-
export declare class PagedResultOfMeasurementFormInstanceDto implements IPagedResultOfMeasurementFormInstanceDto {
|
|
13302
|
-
results: MeasurementFormInstanceDto[];
|
|
13303
|
-
continuationToken?: string | null;
|
|
13304
|
-
constructor(data?: IPagedResultOfMeasurementFormInstanceDto);
|
|
13187
|
+
export declare class MeasurementFrequencyDto implements IMeasurementFrequencyDto {
|
|
13188
|
+
id: number;
|
|
13189
|
+
name: string;
|
|
13190
|
+
constructor(data?: IMeasurementFrequencyDto);
|
|
13305
13191
|
init(_data?: any): void;
|
|
13306
|
-
static fromJS(data: any):
|
|
13192
|
+
static fromJS(data: any): MeasurementFrequencyDto;
|
|
13307
13193
|
toJSON(data?: any): any;
|
|
13308
13194
|
}
|
|
13309
|
-
export interface
|
|
13310
|
-
|
|
13311
|
-
|
|
13195
|
+
export interface IMeasurementFrequencyDto {
|
|
13196
|
+
id: number;
|
|
13197
|
+
name: string;
|
|
13312
13198
|
}
|
|
13313
13199
|
export declare class MeasurementFormInstanceDto implements IMeasurementFormInstanceDto {
|
|
13314
13200
|
id: string;
|
|
@@ -13356,6 +13242,7 @@ export interface IMeasurementFormInstanceDto {
|
|
|
13356
13242
|
approvedReportUrl?: string | null;
|
|
13357
13243
|
currentResource?: ResourceDto | null;
|
|
13358
13244
|
}
|
|
13245
|
+
export type MeasurementFormInstanceStatus = "Active" | "Cancelled" | "Completed" | "Approved" | "MissingCompletion";
|
|
13359
13246
|
export declare class MeasurementFormWorkorderSchemaDto implements IMeasurementFormWorkorderSchemaDto {
|
|
13360
13247
|
id: string;
|
|
13361
13248
|
partNumber?: string | null;
|
|
@@ -13388,6 +13275,22 @@ export interface IMeasurementFormWorkorderSchemaDto {
|
|
|
13388
13275
|
specification?: string | null;
|
|
13389
13276
|
progress: MeasurementFormProgressDto;
|
|
13390
13277
|
}
|
|
13278
|
+
export declare class MeasurementFormProgressDto implements IMeasurementFormProgressDto {
|
|
13279
|
+
id: string;
|
|
13280
|
+
requiredValues: number;
|
|
13281
|
+
values: number;
|
|
13282
|
+
progress: number;
|
|
13283
|
+
constructor(data?: IMeasurementFormProgressDto);
|
|
13284
|
+
init(_data?: any): void;
|
|
13285
|
+
static fromJS(data: any): MeasurementFormProgressDto;
|
|
13286
|
+
toJSON(data?: any): any;
|
|
13287
|
+
}
|
|
13288
|
+
export interface IMeasurementFormProgressDto {
|
|
13289
|
+
id: string;
|
|
13290
|
+
requiredValues: number;
|
|
13291
|
+
values: number;
|
|
13292
|
+
progress: number;
|
|
13293
|
+
}
|
|
13391
13294
|
export declare class MeasurementFormWorkorderSequenceDto implements IMeasurementFormWorkorderSequenceDto {
|
|
13392
13295
|
lot?: string | null;
|
|
13393
13296
|
sequence: string;
|
|
@@ -13436,35 +13339,105 @@ export interface IMeasurementFormWorkorderSupplierDto {
|
|
|
13436
13339
|
procurementLine?: number | null;
|
|
13437
13340
|
externalOrderNumber?: string | null;
|
|
13438
13341
|
}
|
|
13439
|
-
export declare class
|
|
13440
|
-
|
|
13441
|
-
|
|
13342
|
+
export declare class PagedResultOfMeasurementFormInstanceOverviewDto implements IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
13343
|
+
results: MeasurementFormInstanceOverviewDto[];
|
|
13344
|
+
continuationToken?: string | null;
|
|
13345
|
+
constructor(data?: IPagedResultOfMeasurementFormInstanceOverviewDto);
|
|
13442
13346
|
init(_data?: any): void;
|
|
13443
|
-
static fromJS(data: any):
|
|
13347
|
+
static fromJS(data: any): PagedResultOfMeasurementFormInstanceOverviewDto;
|
|
13444
13348
|
toJSON(data?: any): any;
|
|
13445
13349
|
}
|
|
13446
|
-
export interface
|
|
13447
|
-
|
|
13350
|
+
export interface IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
13351
|
+
results: MeasurementFormInstanceOverviewDto[];
|
|
13352
|
+
continuationToken?: string | null;
|
|
13448
13353
|
}
|
|
13449
|
-
export declare class
|
|
13450
|
-
|
|
13451
|
-
|
|
13452
|
-
|
|
13354
|
+
export declare class MeasurementFormInstanceOverviewDto implements IMeasurementFormInstanceOverviewDto {
|
|
13355
|
+
id: string;
|
|
13356
|
+
readonly: boolean;
|
|
13357
|
+
partName?: string | null;
|
|
13358
|
+
partNumber?: string | null;
|
|
13359
|
+
partRevision?: string | null;
|
|
13360
|
+
drawing?: string | null;
|
|
13361
|
+
drawingRevision?: string | null;
|
|
13362
|
+
drawingUrl?: string | null;
|
|
13363
|
+
customerId?: string | null;
|
|
13364
|
+
customerName?: string | null;
|
|
13365
|
+
quantity: number;
|
|
13366
|
+
status: MeasurementFormInstanceStatus;
|
|
13367
|
+
schemas: MeasurementFormInstanceSchemaOverviewDto[];
|
|
13368
|
+
supplierData?: MeasurementFormInstanceSupplierDto | null;
|
|
13369
|
+
progress: MeasurementFormProgressDto;
|
|
13370
|
+
constructor(data?: IMeasurementFormInstanceOverviewDto);
|
|
13371
|
+
init(_data?: any): void;
|
|
13372
|
+
static fromJS(data: any): MeasurementFormInstanceOverviewDto;
|
|
13373
|
+
toJSON(data?: any): any;
|
|
13374
|
+
}
|
|
13375
|
+
export interface IMeasurementFormInstanceOverviewDto {
|
|
13376
|
+
id: string;
|
|
13377
|
+
readonly: boolean;
|
|
13378
|
+
partName?: string | null;
|
|
13379
|
+
partNumber?: string | null;
|
|
13380
|
+
partRevision?: string | null;
|
|
13381
|
+
drawing?: string | null;
|
|
13382
|
+
drawingRevision?: string | null;
|
|
13383
|
+
drawingUrl?: string | null;
|
|
13384
|
+
customerId?: string | null;
|
|
13385
|
+
customerName?: string | null;
|
|
13386
|
+
quantity: number;
|
|
13387
|
+
status: MeasurementFormInstanceStatus;
|
|
13388
|
+
schemas: MeasurementFormInstanceSchemaOverviewDto[];
|
|
13389
|
+
supplierData?: MeasurementFormInstanceSupplierDto | null;
|
|
13390
|
+
progress: MeasurementFormProgressDto;
|
|
13391
|
+
}
|
|
13392
|
+
export declare class MeasurementFormInstanceSchemaOverviewDto implements IMeasurementFormInstanceSchemaOverviewDto {
|
|
13393
|
+
id: string;
|
|
13394
|
+
constructor(data?: IMeasurementFormInstanceSchemaOverviewDto);
|
|
13395
|
+
init(_data?: any): void;
|
|
13396
|
+
static fromJS(data: any): MeasurementFormInstanceSchemaOverviewDto;
|
|
13397
|
+
toJSON(data?: any): any;
|
|
13398
|
+
}
|
|
13399
|
+
export interface IMeasurementFormInstanceSchemaOverviewDto {
|
|
13400
|
+
id: string;
|
|
13401
|
+
}
|
|
13402
|
+
export declare class MeasurementFormInstanceSupplierDto implements IMeasurementFormInstanceSupplierDto {
|
|
13403
|
+
supplierId: string;
|
|
13404
|
+
supplierName?: string | null;
|
|
13405
|
+
available?: boolean;
|
|
13406
|
+
procurementOrder?: string | null;
|
|
13407
|
+
procurementLine?: number | null;
|
|
13408
|
+
externalOrderNumber?: string | null;
|
|
13409
|
+
constructor(data?: IMeasurementFormInstanceSupplierDto);
|
|
13410
|
+
init(_data?: any): void;
|
|
13411
|
+
static fromJS(data: any): MeasurementFormInstanceSupplierDto;
|
|
13412
|
+
toJSON(data?: any): any;
|
|
13413
|
+
}
|
|
13414
|
+
export interface IMeasurementFormInstanceSupplierDto {
|
|
13415
|
+
supplierId: string;
|
|
13416
|
+
supplierName?: string | null;
|
|
13417
|
+
available?: boolean;
|
|
13418
|
+
procurementOrder?: string | null;
|
|
13419
|
+
procurementLine?: number | null;
|
|
13420
|
+
externalOrderNumber?: string | null;
|
|
13421
|
+
}
|
|
13422
|
+
export declare class ListMeasurementFormsRequest implements IListMeasurementFormsRequest {
|
|
13453
13423
|
pageSize?: number | null;
|
|
13454
13424
|
search?: string | null;
|
|
13455
13425
|
continuationToken?: string | null;
|
|
13456
|
-
|
|
13426
|
+
tenantId?: string | null;
|
|
13427
|
+
inactive?: boolean | null;
|
|
13428
|
+
includeInactiveSupplierAccess?: boolean | null;
|
|
13429
|
+
constructor(data?: IListMeasurementFormsRequest);
|
|
13457
13430
|
init(_data?: any): void;
|
|
13458
|
-
static fromJS(data: any):
|
|
13431
|
+
static fromJS(data: any): ListMeasurementFormsRequest;
|
|
13459
13432
|
toJSON(data?: any): any;
|
|
13460
13433
|
}
|
|
13461
|
-
export interface
|
|
13462
|
-
status?: MeasurementFormInstanceStatus | null;
|
|
13463
|
-
statusChangedSince?: Date | null;
|
|
13464
|
-
onlyWithReports?: boolean | null;
|
|
13434
|
+
export interface IListMeasurementFormsRequest {
|
|
13465
13435
|
pageSize?: number | null;
|
|
13466
13436
|
search?: string | null;
|
|
13467
13437
|
continuationToken?: string | null;
|
|
13438
|
+
tenantId?: string | null;
|
|
13439
|
+
inactive?: boolean | null;
|
|
13440
|
+
includeInactiveSupplierAccess?: boolean | null;
|
|
13468
13441
|
}
|
|
13469
13442
|
export declare class MeasurementFormInstanceFeedbackDto implements IMeasurementFormInstanceFeedbackDto {
|
|
13470
13443
|
id: string;
|
|
@@ -13494,64 +13467,6 @@ export interface IMeasurementFormInstanceFeedbackDto {
|
|
|
13494
13467
|
from: string;
|
|
13495
13468
|
created: Date;
|
|
13496
13469
|
}
|
|
13497
|
-
export declare class CreateMeasurementFormInstanceRequest implements ICreateMeasurementFormInstanceRequest {
|
|
13498
|
-
schemaId: string;
|
|
13499
|
-
customerId?: string | null;
|
|
13500
|
-
customerName?: string | null;
|
|
13501
|
-
purchaseOrder?: string | null;
|
|
13502
|
-
sequences?: CreateMeasurementFormInstanceRequestSequence[];
|
|
13503
|
-
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13504
|
-
constructor(data?: ICreateMeasurementFormInstanceRequest);
|
|
13505
|
-
init(_data?: any): void;
|
|
13506
|
-
static fromJS(data: any): CreateMeasurementFormInstanceRequest;
|
|
13507
|
-
toJSON(data?: any): any;
|
|
13508
|
-
}
|
|
13509
|
-
export interface ICreateMeasurementFormInstanceRequest {
|
|
13510
|
-
schemaId: string;
|
|
13511
|
-
customerId?: string | null;
|
|
13512
|
-
customerName?: string | null;
|
|
13513
|
-
purchaseOrder?: string | null;
|
|
13514
|
-
sequences?: CreateMeasurementFormInstanceRequestSequence[];
|
|
13515
|
-
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13516
|
-
}
|
|
13517
|
-
export declare class CreateMeasurementFormInstanceRequestSequence implements ICreateMeasurementFormInstanceRequestSequence {
|
|
13518
|
-
sequenceNumber: string;
|
|
13519
|
-
serialNumber?: string | null;
|
|
13520
|
-
constructor(data?: ICreateMeasurementFormInstanceRequestSequence);
|
|
13521
|
-
init(_data?: any): void;
|
|
13522
|
-
static fromJS(data: any): CreateMeasurementFormInstanceRequestSequence;
|
|
13523
|
-
toJSON(data?: any): any;
|
|
13524
|
-
}
|
|
13525
|
-
export interface ICreateMeasurementFormInstanceRequestSequence {
|
|
13526
|
-
sequenceNumber: string;
|
|
13527
|
-
serialNumber?: string | null;
|
|
13528
|
-
}
|
|
13529
|
-
export declare class CreateMeasurementFormInstanceRequestSerialNumber implements ICreateMeasurementFormInstanceRequestSerialNumber {
|
|
13530
|
-
serialNumber: string;
|
|
13531
|
-
customerSerialNumber?: string | null;
|
|
13532
|
-
constructor(data?: ICreateMeasurementFormInstanceRequestSerialNumber);
|
|
13533
|
-
init(_data?: any): void;
|
|
13534
|
-
static fromJS(data: any): CreateMeasurementFormInstanceRequestSerialNumber;
|
|
13535
|
-
toJSON(data?: any): any;
|
|
13536
|
-
}
|
|
13537
|
-
export interface ICreateMeasurementFormInstanceRequestSerialNumber {
|
|
13538
|
-
serialNumber: string;
|
|
13539
|
-
customerSerialNumber?: string | null;
|
|
13540
|
-
}
|
|
13541
|
-
export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeasurementFormInstanceRequest {
|
|
13542
|
-
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
13543
|
-
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13544
|
-
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13545
|
-
constructor(data?: IUpdateMeasurementFormInstanceRequest);
|
|
13546
|
-
init(_data?: any): void;
|
|
13547
|
-
static fromJS(data: any): UpdateMeasurementFormInstanceRequest;
|
|
13548
|
-
toJSON(data?: any): any;
|
|
13549
|
-
}
|
|
13550
|
-
export interface IUpdateMeasurementFormInstanceRequest {
|
|
13551
|
-
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
13552
|
-
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13553
|
-
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13554
|
-
}
|
|
13555
13470
|
export declare class MeasurementFormInstanceSchemaDto implements IMeasurementFormInstanceSchemaDto {
|
|
13556
13471
|
elements: MeasurementFormInstanceElementDto[];
|
|
13557
13472
|
isCompleted: boolean;
|
|
@@ -13999,6 +13914,106 @@ export interface IDimensionReportExtras {
|
|
|
13999
13914
|
workOrderNumber?: string | null;
|
|
14000
13915
|
comment?: string | null;
|
|
14001
13916
|
}
|
|
13917
|
+
export declare class PagedResultOfMeasurementFormInstanceDto implements IPagedResultOfMeasurementFormInstanceDto {
|
|
13918
|
+
results: MeasurementFormInstanceDto[];
|
|
13919
|
+
continuationToken?: string | null;
|
|
13920
|
+
constructor(data?: IPagedResultOfMeasurementFormInstanceDto);
|
|
13921
|
+
init(_data?: any): void;
|
|
13922
|
+
static fromJS(data: any): PagedResultOfMeasurementFormInstanceDto;
|
|
13923
|
+
toJSON(data?: any): any;
|
|
13924
|
+
}
|
|
13925
|
+
export interface IPagedResultOfMeasurementFormInstanceDto {
|
|
13926
|
+
results: MeasurementFormInstanceDto[];
|
|
13927
|
+
continuationToken?: string | null;
|
|
13928
|
+
}
|
|
13929
|
+
export declare class DeleteMeasurementFormsInstancesBulkRequest implements IDeleteMeasurementFormsInstancesBulkRequest {
|
|
13930
|
+
ids: string[];
|
|
13931
|
+
constructor(data?: IDeleteMeasurementFormsInstancesBulkRequest);
|
|
13932
|
+
init(_data?: any): void;
|
|
13933
|
+
static fromJS(data: any): DeleteMeasurementFormsInstancesBulkRequest;
|
|
13934
|
+
toJSON(data?: any): any;
|
|
13935
|
+
}
|
|
13936
|
+
export interface IDeleteMeasurementFormsInstancesBulkRequest {
|
|
13937
|
+
ids: string[];
|
|
13938
|
+
}
|
|
13939
|
+
export declare class ListMeasurementFormsByStatusRequest implements IListMeasurementFormsByStatusRequest {
|
|
13940
|
+
status?: MeasurementFormInstanceStatus | null;
|
|
13941
|
+
statusChangedSince?: Date | null;
|
|
13942
|
+
onlyWithReports?: boolean | null;
|
|
13943
|
+
pageSize?: number | null;
|
|
13944
|
+
search?: string | null;
|
|
13945
|
+
continuationToken?: string | null;
|
|
13946
|
+
constructor(data?: IListMeasurementFormsByStatusRequest);
|
|
13947
|
+
init(_data?: any): void;
|
|
13948
|
+
static fromJS(data: any): ListMeasurementFormsByStatusRequest;
|
|
13949
|
+
toJSON(data?: any): any;
|
|
13950
|
+
}
|
|
13951
|
+
export interface IListMeasurementFormsByStatusRequest {
|
|
13952
|
+
status?: MeasurementFormInstanceStatus | null;
|
|
13953
|
+
statusChangedSince?: Date | null;
|
|
13954
|
+
onlyWithReports?: boolean | null;
|
|
13955
|
+
pageSize?: number | null;
|
|
13956
|
+
search?: string | null;
|
|
13957
|
+
continuationToken?: string | null;
|
|
13958
|
+
}
|
|
13959
|
+
export declare class CreateMeasurementFormInstanceRequest implements ICreateMeasurementFormInstanceRequest {
|
|
13960
|
+
schemaId: string;
|
|
13961
|
+
customerId?: string | null;
|
|
13962
|
+
customerName?: string | null;
|
|
13963
|
+
purchaseOrder?: string | null;
|
|
13964
|
+
sequences?: CreateMeasurementFormInstanceRequestSequence[];
|
|
13965
|
+
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13966
|
+
constructor(data?: ICreateMeasurementFormInstanceRequest);
|
|
13967
|
+
init(_data?: any): void;
|
|
13968
|
+
static fromJS(data: any): CreateMeasurementFormInstanceRequest;
|
|
13969
|
+
toJSON(data?: any): any;
|
|
13970
|
+
}
|
|
13971
|
+
export interface ICreateMeasurementFormInstanceRequest {
|
|
13972
|
+
schemaId: string;
|
|
13973
|
+
customerId?: string | null;
|
|
13974
|
+
customerName?: string | null;
|
|
13975
|
+
purchaseOrder?: string | null;
|
|
13976
|
+
sequences?: CreateMeasurementFormInstanceRequestSequence[];
|
|
13977
|
+
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13978
|
+
}
|
|
13979
|
+
export declare class CreateMeasurementFormInstanceRequestSequence implements ICreateMeasurementFormInstanceRequestSequence {
|
|
13980
|
+
sequenceNumber: string;
|
|
13981
|
+
serialNumber?: string | null;
|
|
13982
|
+
constructor(data?: ICreateMeasurementFormInstanceRequestSequence);
|
|
13983
|
+
init(_data?: any): void;
|
|
13984
|
+
static fromJS(data: any): CreateMeasurementFormInstanceRequestSequence;
|
|
13985
|
+
toJSON(data?: any): any;
|
|
13986
|
+
}
|
|
13987
|
+
export interface ICreateMeasurementFormInstanceRequestSequence {
|
|
13988
|
+
sequenceNumber: string;
|
|
13989
|
+
serialNumber?: string | null;
|
|
13990
|
+
}
|
|
13991
|
+
export declare class CreateMeasurementFormInstanceRequestSerialNumber implements ICreateMeasurementFormInstanceRequestSerialNumber {
|
|
13992
|
+
serialNumber: string;
|
|
13993
|
+
customerSerialNumber?: string | null;
|
|
13994
|
+
constructor(data?: ICreateMeasurementFormInstanceRequestSerialNumber);
|
|
13995
|
+
init(_data?: any): void;
|
|
13996
|
+
static fromJS(data: any): CreateMeasurementFormInstanceRequestSerialNumber;
|
|
13997
|
+
toJSON(data?: any): any;
|
|
13998
|
+
}
|
|
13999
|
+
export interface ICreateMeasurementFormInstanceRequestSerialNumber {
|
|
14000
|
+
serialNumber: string;
|
|
14001
|
+
customerSerialNumber?: string | null;
|
|
14002
|
+
}
|
|
14003
|
+
export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeasurementFormInstanceRequest {
|
|
14004
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
14005
|
+
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
14006
|
+
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
14007
|
+
constructor(data?: IUpdateMeasurementFormInstanceRequest);
|
|
14008
|
+
init(_data?: any): void;
|
|
14009
|
+
static fromJS(data: any): UpdateMeasurementFormInstanceRequest;
|
|
14010
|
+
toJSON(data?: any): any;
|
|
14011
|
+
}
|
|
14012
|
+
export interface IUpdateMeasurementFormInstanceRequest {
|
|
14013
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
14014
|
+
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
14015
|
+
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
14016
|
+
}
|
|
14002
14017
|
export declare class ProductionCompanyDto implements IProductionCompanyDto {
|
|
14003
14018
|
id: string;
|
|
14004
14019
|
name: string;
|
|
@@ -14373,39 +14388,41 @@ export interface IResourceExistDto {
|
|
|
14373
14388
|
id?: string | null;
|
|
14374
14389
|
externalId?: string | null;
|
|
14375
14390
|
}
|
|
14376
|
-
export declare class
|
|
14377
|
-
|
|
14391
|
+
export declare class RegisterWorkorderOperationEventRequest implements IRegisterWorkorderOperationEventRequest {
|
|
14392
|
+
workorderDescription?: string | null;
|
|
14393
|
+
operationDescription?: string | null;
|
|
14394
|
+
isSetup: boolean;
|
|
14378
14395
|
employee?: EmployeeDto | null;
|
|
14379
14396
|
resourceId: string;
|
|
14380
14397
|
customerOrder?: CustomerOrderInfoDto | null;
|
|
14381
14398
|
part?: PartDto | null;
|
|
14382
14399
|
workorderQuantity?: number | null;
|
|
14383
|
-
|
|
14400
|
+
startTime: Date;
|
|
14401
|
+
endTime: Date;
|
|
14384
14402
|
materialPartNumber?: string | null;
|
|
14385
14403
|
materialPartName?: string | null;
|
|
14386
14404
|
materialItemGroup?: string | null;
|
|
14387
|
-
workorderDescription?: string | null;
|
|
14388
|
-
operationDescription?: string | null;
|
|
14389
14405
|
externalId?: string | null;
|
|
14390
14406
|
companyId?: string | null;
|
|
14391
|
-
constructor(data?:
|
|
14407
|
+
constructor(data?: IRegisterWorkorderOperationEventRequest);
|
|
14392
14408
|
init(_data?: any): void;
|
|
14393
|
-
static fromJS(data: any):
|
|
14409
|
+
static fromJS(data: any): RegisterWorkorderOperationEventRequest;
|
|
14394
14410
|
toJSON(data?: any): any;
|
|
14395
14411
|
}
|
|
14396
|
-
export interface
|
|
14397
|
-
|
|
14412
|
+
export interface IRegisterWorkorderOperationEventRequest {
|
|
14413
|
+
workorderDescription?: string | null;
|
|
14414
|
+
operationDescription?: string | null;
|
|
14415
|
+
isSetup: boolean;
|
|
14398
14416
|
employee?: EmployeeDto | null;
|
|
14399
14417
|
resourceId: string;
|
|
14400
14418
|
customerOrder?: CustomerOrderInfoDto | null;
|
|
14401
14419
|
part?: PartDto | null;
|
|
14402
14420
|
workorderQuantity?: number | null;
|
|
14403
|
-
|
|
14421
|
+
startTime: Date;
|
|
14422
|
+
endTime: Date;
|
|
14404
14423
|
materialPartNumber?: string | null;
|
|
14405
14424
|
materialPartName?: string | null;
|
|
14406
14425
|
materialItemGroup?: string | null;
|
|
14407
|
-
workorderDescription?: string | null;
|
|
14408
|
-
operationDescription?: string | null;
|
|
14409
14426
|
externalId?: string | null;
|
|
14410
14427
|
companyId?: string | null;
|
|
14411
14428
|
}
|
|
@@ -14423,12 +14440,49 @@ export interface ICustomerOrderInfoDto {
|
|
|
14423
14440
|
customerId?: string | null;
|
|
14424
14441
|
customerName?: string | null;
|
|
14425
14442
|
}
|
|
14443
|
+
export declare class StartWorkOperationRequest implements IStartWorkOperationRequest {
|
|
14444
|
+
isSetup?: boolean;
|
|
14445
|
+
employee?: EmployeeDto | null;
|
|
14446
|
+
resourceId: string;
|
|
14447
|
+
customerOrder?: CustomerOrderInfoDto | null;
|
|
14448
|
+
part?: PartDto | null;
|
|
14449
|
+
workorderQuantity?: number | null;
|
|
14450
|
+
time?: Date | null;
|
|
14451
|
+
materialPartNumber?: string | null;
|
|
14452
|
+
materialPartName?: string | null;
|
|
14453
|
+
materialItemGroup?: string | null;
|
|
14454
|
+
workorderDescription?: string | null;
|
|
14455
|
+
operationDescription?: string | null;
|
|
14456
|
+
externalId?: string | null;
|
|
14457
|
+
companyId?: string | null;
|
|
14458
|
+
constructor(data?: IStartWorkOperationRequest);
|
|
14459
|
+
init(_data?: any): void;
|
|
14460
|
+
static fromJS(data: any): StartWorkOperationRequest;
|
|
14461
|
+
toJSON(data?: any): any;
|
|
14462
|
+
}
|
|
14463
|
+
export interface IStartWorkOperationRequest {
|
|
14464
|
+
isSetup?: boolean;
|
|
14465
|
+
employee?: EmployeeDto | null;
|
|
14466
|
+
resourceId: string;
|
|
14467
|
+
customerOrder?: CustomerOrderInfoDto | null;
|
|
14468
|
+
part?: PartDto | null;
|
|
14469
|
+
workorderQuantity?: number | null;
|
|
14470
|
+
time?: Date | null;
|
|
14471
|
+
materialPartNumber?: string | null;
|
|
14472
|
+
materialPartName?: string | null;
|
|
14473
|
+
materialItemGroup?: string | null;
|
|
14474
|
+
workorderDescription?: string | null;
|
|
14475
|
+
operationDescription?: string | null;
|
|
14476
|
+
externalId?: string | null;
|
|
14477
|
+
companyId?: string | null;
|
|
14478
|
+
}
|
|
14426
14479
|
export declare class StopWorkOperationRequest implements IStopWorkOperationRequest {
|
|
14427
14480
|
isSetup?: boolean;
|
|
14428
14481
|
employee?: EmployeeDto | null;
|
|
14429
14482
|
time?: Date | null;
|
|
14430
14483
|
resourceId: string;
|
|
14431
14484
|
companyId?: string | null;
|
|
14485
|
+
ignoreNotFoundEvents?: boolean | null;
|
|
14432
14486
|
constructor(data?: IStopWorkOperationRequest);
|
|
14433
14487
|
init(_data?: any): void;
|
|
14434
14488
|
static fromJS(data: any): StopWorkOperationRequest;
|
|
@@ -14440,8 +14494,9 @@ export interface IStopWorkOperationRequest {
|
|
|
14440
14494
|
time?: Date | null;
|
|
14441
14495
|
resourceId: string;
|
|
14442
14496
|
companyId?: string | null;
|
|
14497
|
+
ignoreNotFoundEvents?: boolean | null;
|
|
14443
14498
|
}
|
|
14444
|
-
export declare class
|
|
14499
|
+
export declare class SyncWorkorderOperationRequest implements ISyncWorkorderOperationRequest {
|
|
14445
14500
|
workorderDescription?: string | null;
|
|
14446
14501
|
operationDescription?: string | null;
|
|
14447
14502
|
isSetup: boolean;
|
|
@@ -14451,18 +14506,18 @@ export declare class RegisterWorkorderOperationEventRequest implements IRegister
|
|
|
14451
14506
|
part?: PartDto | null;
|
|
14452
14507
|
workorderQuantity?: number | null;
|
|
14453
14508
|
startTime: Date;
|
|
14454
|
-
endTime
|
|
14509
|
+
endTime?: Date | null;
|
|
14455
14510
|
materialPartNumber?: string | null;
|
|
14456
14511
|
materialPartName?: string | null;
|
|
14457
14512
|
materialItemGroup?: string | null;
|
|
14458
14513
|
externalId?: string | null;
|
|
14459
14514
|
companyId?: string | null;
|
|
14460
|
-
constructor(data?:
|
|
14515
|
+
constructor(data?: ISyncWorkorderOperationRequest);
|
|
14461
14516
|
init(_data?: any): void;
|
|
14462
|
-
static fromJS(data: any):
|
|
14517
|
+
static fromJS(data: any): SyncWorkorderOperationRequest;
|
|
14463
14518
|
toJSON(data?: any): any;
|
|
14464
14519
|
}
|
|
14465
|
-
export interface
|
|
14520
|
+
export interface ISyncWorkorderOperationRequest {
|
|
14466
14521
|
workorderDescription?: string | null;
|
|
14467
14522
|
operationDescription?: string | null;
|
|
14468
14523
|
isSetup: boolean;
|
|
@@ -14472,7 +14527,7 @@ export interface IRegisterWorkorderOperationEventRequest {
|
|
|
14472
14527
|
part?: PartDto | null;
|
|
14473
14528
|
workorderQuantity?: number | null;
|
|
14474
14529
|
startTime: Date;
|
|
14475
|
-
endTime
|
|
14530
|
+
endTime?: Date | null;
|
|
14476
14531
|
materialPartNumber?: string | null;
|
|
14477
14532
|
materialPartName?: string | null;
|
|
14478
14533
|
materialItemGroup?: string | null;
|