@ignos/api-client 20251112.0.13205 → 20251120.0.13297
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 +317 -317
- package/lib/ignosportal-api.js +1154 -1223
- package/package.json +1 -1
- package/src/ignosportal-api.ts +1441 -1507
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
|
*/
|
|
@@ -2756,18 +2766,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
2756
2766
|
protected processSetWorkorderCustomerOrderReference(response: Response): Promise<void>;
|
|
2757
2767
|
checkResourceStatus(id: string): Promise<ResourceExistDto>;
|
|
2758
2768
|
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
2769
|
/**
|
|
2772
2770
|
* Register a completed work order operation event
|
|
2773
2771
|
*/
|
|
@@ -13028,18 +13026,6 @@ export declare class AddResourceTypeForNeedsGenerator implements IAddResourceTyp
|
|
|
13028
13026
|
export interface IAddResourceTypeForNeedsGenerator {
|
|
13029
13027
|
resourceType: string;
|
|
13030
13028
|
}
|
|
13031
|
-
export declare class MeasurementFrequencyDto implements IMeasurementFrequencyDto {
|
|
13032
|
-
id: number;
|
|
13033
|
-
name: string;
|
|
13034
|
-
constructor(data?: IMeasurementFrequencyDto);
|
|
13035
|
-
init(_data?: any): void;
|
|
13036
|
-
static fromJS(data: any): MeasurementFrequencyDto;
|
|
13037
|
-
toJSON(data?: any): any;
|
|
13038
|
-
}
|
|
13039
|
-
export interface IMeasurementFrequencyDto {
|
|
13040
|
-
id: number;
|
|
13041
|
-
name: string;
|
|
13042
|
-
}
|
|
13043
13029
|
export declare class PagedResultOfSchemaFeedbackDto implements IPagedResultOfSchemaFeedbackDto {
|
|
13044
13030
|
results: SchemaFeedbackDto[];
|
|
13045
13031
|
continuationToken?: string | null;
|
|
@@ -13173,134 +13159,17 @@ export interface IListMeasurementFormSchemasRequest {
|
|
|
13173
13159
|
filter?: string | null;
|
|
13174
13160
|
continuationToken?: string | null;
|
|
13175
13161
|
}
|
|
13176
|
-
export declare class
|
|
13177
|
-
|
|
13178
|
-
|
|
13179
|
-
constructor(data?:
|
|
13180
|
-
init(_data?: any): void;
|
|
13181
|
-
static fromJS(data: any): PagedResultOfMeasurementFormInstanceOverviewDto;
|
|
13182
|
-
toJSON(data?: any): any;
|
|
13183
|
-
}
|
|
13184
|
-
export interface IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
13185
|
-
results: MeasurementFormInstanceOverviewDto[];
|
|
13186
|
-
continuationToken?: string | null;
|
|
13187
|
-
}
|
|
13188
|
-
export declare class MeasurementFormInstanceOverviewDto implements IMeasurementFormInstanceOverviewDto {
|
|
13189
|
-
id: string;
|
|
13190
|
-
readonly: boolean;
|
|
13191
|
-
partName?: string | null;
|
|
13192
|
-
partNumber?: string | null;
|
|
13193
|
-
partRevision?: string | null;
|
|
13194
|
-
drawing?: string | null;
|
|
13195
|
-
drawingRevision?: string | null;
|
|
13196
|
-
drawingUrl?: string | null;
|
|
13197
|
-
customerId?: string | null;
|
|
13198
|
-
customerName?: string | null;
|
|
13199
|
-
quantity: number;
|
|
13200
|
-
status: MeasurementFormInstanceStatus;
|
|
13201
|
-
schemas: MeasurementFormInstanceSchemaOverviewDto[];
|
|
13202
|
-
supplierData?: MeasurementFormInstanceSupplierDto | null;
|
|
13203
|
-
progress: MeasurementFormProgressDto;
|
|
13204
|
-
constructor(data?: IMeasurementFormInstanceOverviewDto);
|
|
13205
|
-
init(_data?: any): void;
|
|
13206
|
-
static fromJS(data: any): MeasurementFormInstanceOverviewDto;
|
|
13207
|
-
toJSON(data?: any): any;
|
|
13208
|
-
}
|
|
13209
|
-
export interface IMeasurementFormInstanceOverviewDto {
|
|
13210
|
-
id: string;
|
|
13211
|
-
readonly: boolean;
|
|
13212
|
-
partName?: string | null;
|
|
13213
|
-
partNumber?: string | null;
|
|
13214
|
-
partRevision?: string | null;
|
|
13215
|
-
drawing?: string | null;
|
|
13216
|
-
drawingRevision?: string | null;
|
|
13217
|
-
drawingUrl?: string | null;
|
|
13218
|
-
customerId?: string | null;
|
|
13219
|
-
customerName?: string | null;
|
|
13220
|
-
quantity: number;
|
|
13221
|
-
status: MeasurementFormInstanceStatus;
|
|
13222
|
-
schemas: MeasurementFormInstanceSchemaOverviewDto[];
|
|
13223
|
-
supplierData?: MeasurementFormInstanceSupplierDto | null;
|
|
13224
|
-
progress: MeasurementFormProgressDto;
|
|
13225
|
-
}
|
|
13226
|
-
export type MeasurementFormInstanceStatus = "Active" | "Cancelled" | "Completed" | "Approved" | "MissingCompletion";
|
|
13227
|
-
export declare class MeasurementFormInstanceSchemaOverviewDto implements IMeasurementFormInstanceSchemaOverviewDto {
|
|
13228
|
-
id: string;
|
|
13229
|
-
constructor(data?: IMeasurementFormInstanceSchemaOverviewDto);
|
|
13230
|
-
init(_data?: any): void;
|
|
13231
|
-
static fromJS(data: any): MeasurementFormInstanceSchemaOverviewDto;
|
|
13232
|
-
toJSON(data?: any): any;
|
|
13233
|
-
}
|
|
13234
|
-
export interface IMeasurementFormInstanceSchemaOverviewDto {
|
|
13235
|
-
id: string;
|
|
13236
|
-
}
|
|
13237
|
-
export declare class MeasurementFormInstanceSupplierDto implements IMeasurementFormInstanceSupplierDto {
|
|
13238
|
-
supplierId: string;
|
|
13239
|
-
supplierName?: string | null;
|
|
13240
|
-
available?: boolean;
|
|
13241
|
-
procurementOrder?: string | null;
|
|
13242
|
-
procurementLine?: number | null;
|
|
13243
|
-
externalOrderNumber?: string | null;
|
|
13244
|
-
constructor(data?: IMeasurementFormInstanceSupplierDto);
|
|
13245
|
-
init(_data?: any): void;
|
|
13246
|
-
static fromJS(data: any): MeasurementFormInstanceSupplierDto;
|
|
13247
|
-
toJSON(data?: any): any;
|
|
13248
|
-
}
|
|
13249
|
-
export interface IMeasurementFormInstanceSupplierDto {
|
|
13250
|
-
supplierId: string;
|
|
13251
|
-
supplierName?: string | null;
|
|
13252
|
-
available?: boolean;
|
|
13253
|
-
procurementOrder?: string | null;
|
|
13254
|
-
procurementLine?: number | null;
|
|
13255
|
-
externalOrderNumber?: string | null;
|
|
13256
|
-
}
|
|
13257
|
-
export declare class MeasurementFormProgressDto implements IMeasurementFormProgressDto {
|
|
13258
|
-
id: string;
|
|
13259
|
-
requiredValues: number;
|
|
13260
|
-
values: number;
|
|
13261
|
-
progress: number;
|
|
13262
|
-
constructor(data?: IMeasurementFormProgressDto);
|
|
13263
|
-
init(_data?: any): void;
|
|
13264
|
-
static fromJS(data: any): MeasurementFormProgressDto;
|
|
13265
|
-
toJSON(data?: any): any;
|
|
13266
|
-
}
|
|
13267
|
-
export interface IMeasurementFormProgressDto {
|
|
13268
|
-
id: string;
|
|
13269
|
-
requiredValues: number;
|
|
13270
|
-
values: number;
|
|
13271
|
-
progress: number;
|
|
13272
|
-
}
|
|
13273
|
-
export declare class ListMeasurementFormsRequest implements IListMeasurementFormsRequest {
|
|
13274
|
-
pageSize?: number | null;
|
|
13275
|
-
search?: string | null;
|
|
13276
|
-
continuationToken?: string | null;
|
|
13277
|
-
tenantId?: string | null;
|
|
13278
|
-
inactive?: boolean | null;
|
|
13279
|
-
includeInactiveSupplierAccess?: boolean | null;
|
|
13280
|
-
constructor(data?: IListMeasurementFormsRequest);
|
|
13281
|
-
init(_data?: any): void;
|
|
13282
|
-
static fromJS(data: any): ListMeasurementFormsRequest;
|
|
13283
|
-
toJSON(data?: any): any;
|
|
13284
|
-
}
|
|
13285
|
-
export interface IListMeasurementFormsRequest {
|
|
13286
|
-
pageSize?: number | null;
|
|
13287
|
-
search?: string | null;
|
|
13288
|
-
continuationToken?: string | null;
|
|
13289
|
-
tenantId?: string | null;
|
|
13290
|
-
inactive?: boolean | null;
|
|
13291
|
-
includeInactiveSupplierAccess?: boolean | null;
|
|
13292
|
-
}
|
|
13293
|
-
export declare class PagedResultOfMeasurementFormInstanceDto implements IPagedResultOfMeasurementFormInstanceDto {
|
|
13294
|
-
results: MeasurementFormInstanceDto[];
|
|
13295
|
-
continuationToken?: string | null;
|
|
13296
|
-
constructor(data?: IPagedResultOfMeasurementFormInstanceDto);
|
|
13162
|
+
export declare class MeasurementFrequencyDto implements IMeasurementFrequencyDto {
|
|
13163
|
+
id: number;
|
|
13164
|
+
name: string;
|
|
13165
|
+
constructor(data?: IMeasurementFrequencyDto);
|
|
13297
13166
|
init(_data?: any): void;
|
|
13298
|
-
static fromJS(data: any):
|
|
13167
|
+
static fromJS(data: any): MeasurementFrequencyDto;
|
|
13299
13168
|
toJSON(data?: any): any;
|
|
13300
13169
|
}
|
|
13301
|
-
export interface
|
|
13302
|
-
|
|
13303
|
-
|
|
13170
|
+
export interface IMeasurementFrequencyDto {
|
|
13171
|
+
id: number;
|
|
13172
|
+
name: string;
|
|
13304
13173
|
}
|
|
13305
13174
|
export declare class MeasurementFormInstanceDto implements IMeasurementFormInstanceDto {
|
|
13306
13175
|
id: string;
|
|
@@ -13348,6 +13217,7 @@ export interface IMeasurementFormInstanceDto {
|
|
|
13348
13217
|
approvedReportUrl?: string | null;
|
|
13349
13218
|
currentResource?: ResourceDto | null;
|
|
13350
13219
|
}
|
|
13220
|
+
export type MeasurementFormInstanceStatus = "Active" | "Cancelled" | "Completed" | "Approved" | "MissingCompletion";
|
|
13351
13221
|
export declare class MeasurementFormWorkorderSchemaDto implements IMeasurementFormWorkorderSchemaDto {
|
|
13352
13222
|
id: string;
|
|
13353
13223
|
partNumber?: string | null;
|
|
@@ -13380,10 +13250,26 @@ export interface IMeasurementFormWorkorderSchemaDto {
|
|
|
13380
13250
|
specification?: string | null;
|
|
13381
13251
|
progress: MeasurementFormProgressDto;
|
|
13382
13252
|
}
|
|
13383
|
-
export declare class
|
|
13384
|
-
|
|
13385
|
-
|
|
13386
|
-
|
|
13253
|
+
export declare class MeasurementFormProgressDto implements IMeasurementFormProgressDto {
|
|
13254
|
+
id: string;
|
|
13255
|
+
requiredValues: number;
|
|
13256
|
+
values: number;
|
|
13257
|
+
progress: number;
|
|
13258
|
+
constructor(data?: IMeasurementFormProgressDto);
|
|
13259
|
+
init(_data?: any): void;
|
|
13260
|
+
static fromJS(data: any): MeasurementFormProgressDto;
|
|
13261
|
+
toJSON(data?: any): any;
|
|
13262
|
+
}
|
|
13263
|
+
export interface IMeasurementFormProgressDto {
|
|
13264
|
+
id: string;
|
|
13265
|
+
requiredValues: number;
|
|
13266
|
+
values: number;
|
|
13267
|
+
progress: number;
|
|
13268
|
+
}
|
|
13269
|
+
export declare class MeasurementFormWorkorderSequenceDto implements IMeasurementFormWorkorderSequenceDto {
|
|
13270
|
+
lot?: string | null;
|
|
13271
|
+
sequence: string;
|
|
13272
|
+
serialNumber?: string | null;
|
|
13387
13273
|
constructor(data?: IMeasurementFormWorkorderSequenceDto);
|
|
13388
13274
|
init(_data?: any): void;
|
|
13389
13275
|
static fromJS(data: any): MeasurementFormWorkorderSequenceDto;
|
|
@@ -13428,35 +13314,105 @@ export interface IMeasurementFormWorkorderSupplierDto {
|
|
|
13428
13314
|
procurementLine?: number | null;
|
|
13429
13315
|
externalOrderNumber?: string | null;
|
|
13430
13316
|
}
|
|
13431
|
-
export declare class
|
|
13432
|
-
|
|
13433
|
-
|
|
13317
|
+
export declare class PagedResultOfMeasurementFormInstanceOverviewDto implements IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
13318
|
+
results: MeasurementFormInstanceOverviewDto[];
|
|
13319
|
+
continuationToken?: string | null;
|
|
13320
|
+
constructor(data?: IPagedResultOfMeasurementFormInstanceOverviewDto);
|
|
13434
13321
|
init(_data?: any): void;
|
|
13435
|
-
static fromJS(data: any):
|
|
13322
|
+
static fromJS(data: any): PagedResultOfMeasurementFormInstanceOverviewDto;
|
|
13436
13323
|
toJSON(data?: any): any;
|
|
13437
13324
|
}
|
|
13438
|
-
export interface
|
|
13439
|
-
|
|
13325
|
+
export interface IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
13326
|
+
results: MeasurementFormInstanceOverviewDto[];
|
|
13327
|
+
continuationToken?: string | null;
|
|
13440
13328
|
}
|
|
13441
|
-
export declare class
|
|
13442
|
-
|
|
13443
|
-
|
|
13444
|
-
|
|
13329
|
+
export declare class MeasurementFormInstanceOverviewDto implements IMeasurementFormInstanceOverviewDto {
|
|
13330
|
+
id: string;
|
|
13331
|
+
readonly: boolean;
|
|
13332
|
+
partName?: string | null;
|
|
13333
|
+
partNumber?: string | null;
|
|
13334
|
+
partRevision?: string | null;
|
|
13335
|
+
drawing?: string | null;
|
|
13336
|
+
drawingRevision?: string | null;
|
|
13337
|
+
drawingUrl?: string | null;
|
|
13338
|
+
customerId?: string | null;
|
|
13339
|
+
customerName?: string | null;
|
|
13340
|
+
quantity: number;
|
|
13341
|
+
status: MeasurementFormInstanceStatus;
|
|
13342
|
+
schemas: MeasurementFormInstanceSchemaOverviewDto[];
|
|
13343
|
+
supplierData?: MeasurementFormInstanceSupplierDto | null;
|
|
13344
|
+
progress: MeasurementFormProgressDto;
|
|
13345
|
+
constructor(data?: IMeasurementFormInstanceOverviewDto);
|
|
13346
|
+
init(_data?: any): void;
|
|
13347
|
+
static fromJS(data: any): MeasurementFormInstanceOverviewDto;
|
|
13348
|
+
toJSON(data?: any): any;
|
|
13349
|
+
}
|
|
13350
|
+
export interface IMeasurementFormInstanceOverviewDto {
|
|
13351
|
+
id: string;
|
|
13352
|
+
readonly: boolean;
|
|
13353
|
+
partName?: string | null;
|
|
13354
|
+
partNumber?: string | null;
|
|
13355
|
+
partRevision?: string | null;
|
|
13356
|
+
drawing?: string | null;
|
|
13357
|
+
drawingRevision?: string | null;
|
|
13358
|
+
drawingUrl?: string | null;
|
|
13359
|
+
customerId?: string | null;
|
|
13360
|
+
customerName?: string | null;
|
|
13361
|
+
quantity: number;
|
|
13362
|
+
status: MeasurementFormInstanceStatus;
|
|
13363
|
+
schemas: MeasurementFormInstanceSchemaOverviewDto[];
|
|
13364
|
+
supplierData?: MeasurementFormInstanceSupplierDto | null;
|
|
13365
|
+
progress: MeasurementFormProgressDto;
|
|
13366
|
+
}
|
|
13367
|
+
export declare class MeasurementFormInstanceSchemaOverviewDto implements IMeasurementFormInstanceSchemaOverviewDto {
|
|
13368
|
+
id: string;
|
|
13369
|
+
constructor(data?: IMeasurementFormInstanceSchemaOverviewDto);
|
|
13370
|
+
init(_data?: any): void;
|
|
13371
|
+
static fromJS(data: any): MeasurementFormInstanceSchemaOverviewDto;
|
|
13372
|
+
toJSON(data?: any): any;
|
|
13373
|
+
}
|
|
13374
|
+
export interface IMeasurementFormInstanceSchemaOverviewDto {
|
|
13375
|
+
id: string;
|
|
13376
|
+
}
|
|
13377
|
+
export declare class MeasurementFormInstanceSupplierDto implements IMeasurementFormInstanceSupplierDto {
|
|
13378
|
+
supplierId: string;
|
|
13379
|
+
supplierName?: string | null;
|
|
13380
|
+
available?: boolean;
|
|
13381
|
+
procurementOrder?: string | null;
|
|
13382
|
+
procurementLine?: number | null;
|
|
13383
|
+
externalOrderNumber?: string | null;
|
|
13384
|
+
constructor(data?: IMeasurementFormInstanceSupplierDto);
|
|
13385
|
+
init(_data?: any): void;
|
|
13386
|
+
static fromJS(data: any): MeasurementFormInstanceSupplierDto;
|
|
13387
|
+
toJSON(data?: any): any;
|
|
13388
|
+
}
|
|
13389
|
+
export interface IMeasurementFormInstanceSupplierDto {
|
|
13390
|
+
supplierId: string;
|
|
13391
|
+
supplierName?: string | null;
|
|
13392
|
+
available?: boolean;
|
|
13393
|
+
procurementOrder?: string | null;
|
|
13394
|
+
procurementLine?: number | null;
|
|
13395
|
+
externalOrderNumber?: string | null;
|
|
13396
|
+
}
|
|
13397
|
+
export declare class ListMeasurementFormsRequest implements IListMeasurementFormsRequest {
|
|
13445
13398
|
pageSize?: number | null;
|
|
13446
13399
|
search?: string | null;
|
|
13447
13400
|
continuationToken?: string | null;
|
|
13448
|
-
|
|
13401
|
+
tenantId?: string | null;
|
|
13402
|
+
inactive?: boolean | null;
|
|
13403
|
+
includeInactiveSupplierAccess?: boolean | null;
|
|
13404
|
+
constructor(data?: IListMeasurementFormsRequest);
|
|
13449
13405
|
init(_data?: any): void;
|
|
13450
|
-
static fromJS(data: any):
|
|
13406
|
+
static fromJS(data: any): ListMeasurementFormsRequest;
|
|
13451
13407
|
toJSON(data?: any): any;
|
|
13452
13408
|
}
|
|
13453
|
-
export interface
|
|
13454
|
-
status?: MeasurementFormInstanceStatus | null;
|
|
13455
|
-
statusChangedSince?: Date | null;
|
|
13456
|
-
onlyWithReports?: boolean | null;
|
|
13409
|
+
export interface IListMeasurementFormsRequest {
|
|
13457
13410
|
pageSize?: number | null;
|
|
13458
13411
|
search?: string | null;
|
|
13459
13412
|
continuationToken?: string | null;
|
|
13413
|
+
tenantId?: string | null;
|
|
13414
|
+
inactive?: boolean | null;
|
|
13415
|
+
includeInactiveSupplierAccess?: boolean | null;
|
|
13460
13416
|
}
|
|
13461
13417
|
export declare class MeasurementFormInstanceFeedbackDto implements IMeasurementFormInstanceFeedbackDto {
|
|
13462
13418
|
id: string;
|
|
@@ -13486,64 +13442,6 @@ export interface IMeasurementFormInstanceFeedbackDto {
|
|
|
13486
13442
|
from: string;
|
|
13487
13443
|
created: Date;
|
|
13488
13444
|
}
|
|
13489
|
-
export declare class CreateMeasurementFormInstanceRequest implements ICreateMeasurementFormInstanceRequest {
|
|
13490
|
-
schemaId: string;
|
|
13491
|
-
customerId?: string | null;
|
|
13492
|
-
customerName?: string | null;
|
|
13493
|
-
purchaseOrder?: string | null;
|
|
13494
|
-
sequences?: CreateMeasurementFormInstanceRequestSequence[];
|
|
13495
|
-
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13496
|
-
constructor(data?: ICreateMeasurementFormInstanceRequest);
|
|
13497
|
-
init(_data?: any): void;
|
|
13498
|
-
static fromJS(data: any): CreateMeasurementFormInstanceRequest;
|
|
13499
|
-
toJSON(data?: any): any;
|
|
13500
|
-
}
|
|
13501
|
-
export interface ICreateMeasurementFormInstanceRequest {
|
|
13502
|
-
schemaId: string;
|
|
13503
|
-
customerId?: string | null;
|
|
13504
|
-
customerName?: string | null;
|
|
13505
|
-
purchaseOrder?: string | null;
|
|
13506
|
-
sequences?: CreateMeasurementFormInstanceRequestSequence[];
|
|
13507
|
-
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13508
|
-
}
|
|
13509
|
-
export declare class CreateMeasurementFormInstanceRequestSequence implements ICreateMeasurementFormInstanceRequestSequence {
|
|
13510
|
-
sequenceNumber: string;
|
|
13511
|
-
serialNumber?: string | null;
|
|
13512
|
-
constructor(data?: ICreateMeasurementFormInstanceRequestSequence);
|
|
13513
|
-
init(_data?: any): void;
|
|
13514
|
-
static fromJS(data: any): CreateMeasurementFormInstanceRequestSequence;
|
|
13515
|
-
toJSON(data?: any): any;
|
|
13516
|
-
}
|
|
13517
|
-
export interface ICreateMeasurementFormInstanceRequestSequence {
|
|
13518
|
-
sequenceNumber: string;
|
|
13519
|
-
serialNumber?: string | null;
|
|
13520
|
-
}
|
|
13521
|
-
export declare class CreateMeasurementFormInstanceRequestSerialNumber implements ICreateMeasurementFormInstanceRequestSerialNumber {
|
|
13522
|
-
serialNumber: string;
|
|
13523
|
-
customerSerialNumber?: string | null;
|
|
13524
|
-
constructor(data?: ICreateMeasurementFormInstanceRequestSerialNumber);
|
|
13525
|
-
init(_data?: any): void;
|
|
13526
|
-
static fromJS(data: any): CreateMeasurementFormInstanceRequestSerialNumber;
|
|
13527
|
-
toJSON(data?: any): any;
|
|
13528
|
-
}
|
|
13529
|
-
export interface ICreateMeasurementFormInstanceRequestSerialNumber {
|
|
13530
|
-
serialNumber: string;
|
|
13531
|
-
customerSerialNumber?: string | null;
|
|
13532
|
-
}
|
|
13533
|
-
export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeasurementFormInstanceRequest {
|
|
13534
|
-
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
13535
|
-
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13536
|
-
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13537
|
-
constructor(data?: IUpdateMeasurementFormInstanceRequest);
|
|
13538
|
-
init(_data?: any): void;
|
|
13539
|
-
static fromJS(data: any): UpdateMeasurementFormInstanceRequest;
|
|
13540
|
-
toJSON(data?: any): any;
|
|
13541
|
-
}
|
|
13542
|
-
export interface IUpdateMeasurementFormInstanceRequest {
|
|
13543
|
-
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
13544
|
-
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13545
|
-
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13546
|
-
}
|
|
13547
13445
|
export declare class MeasurementFormInstanceSchemaDto implements IMeasurementFormInstanceSchemaDto {
|
|
13548
13446
|
elements: MeasurementFormInstanceElementDto[];
|
|
13549
13447
|
isCompleted: boolean;
|
|
@@ -13991,6 +13889,106 @@ export interface IDimensionReportExtras {
|
|
|
13991
13889
|
workOrderNumber?: string | null;
|
|
13992
13890
|
comment?: string | null;
|
|
13993
13891
|
}
|
|
13892
|
+
export declare class PagedResultOfMeasurementFormInstanceDto implements IPagedResultOfMeasurementFormInstanceDto {
|
|
13893
|
+
results: MeasurementFormInstanceDto[];
|
|
13894
|
+
continuationToken?: string | null;
|
|
13895
|
+
constructor(data?: IPagedResultOfMeasurementFormInstanceDto);
|
|
13896
|
+
init(_data?: any): void;
|
|
13897
|
+
static fromJS(data: any): PagedResultOfMeasurementFormInstanceDto;
|
|
13898
|
+
toJSON(data?: any): any;
|
|
13899
|
+
}
|
|
13900
|
+
export interface IPagedResultOfMeasurementFormInstanceDto {
|
|
13901
|
+
results: MeasurementFormInstanceDto[];
|
|
13902
|
+
continuationToken?: string | null;
|
|
13903
|
+
}
|
|
13904
|
+
export declare class DeleteMeasurementFormsInstancesBulkRequest implements IDeleteMeasurementFormsInstancesBulkRequest {
|
|
13905
|
+
ids: string[];
|
|
13906
|
+
constructor(data?: IDeleteMeasurementFormsInstancesBulkRequest);
|
|
13907
|
+
init(_data?: any): void;
|
|
13908
|
+
static fromJS(data: any): DeleteMeasurementFormsInstancesBulkRequest;
|
|
13909
|
+
toJSON(data?: any): any;
|
|
13910
|
+
}
|
|
13911
|
+
export interface IDeleteMeasurementFormsInstancesBulkRequest {
|
|
13912
|
+
ids: string[];
|
|
13913
|
+
}
|
|
13914
|
+
export declare class ListMeasurementFormsByStatusRequest implements IListMeasurementFormsByStatusRequest {
|
|
13915
|
+
status?: MeasurementFormInstanceStatus | null;
|
|
13916
|
+
statusChangedSince?: Date | null;
|
|
13917
|
+
onlyWithReports?: boolean | null;
|
|
13918
|
+
pageSize?: number | null;
|
|
13919
|
+
search?: string | null;
|
|
13920
|
+
continuationToken?: string | null;
|
|
13921
|
+
constructor(data?: IListMeasurementFormsByStatusRequest);
|
|
13922
|
+
init(_data?: any): void;
|
|
13923
|
+
static fromJS(data: any): ListMeasurementFormsByStatusRequest;
|
|
13924
|
+
toJSON(data?: any): any;
|
|
13925
|
+
}
|
|
13926
|
+
export interface IListMeasurementFormsByStatusRequest {
|
|
13927
|
+
status?: MeasurementFormInstanceStatus | null;
|
|
13928
|
+
statusChangedSince?: Date | null;
|
|
13929
|
+
onlyWithReports?: boolean | null;
|
|
13930
|
+
pageSize?: number | null;
|
|
13931
|
+
search?: string | null;
|
|
13932
|
+
continuationToken?: string | null;
|
|
13933
|
+
}
|
|
13934
|
+
export declare class CreateMeasurementFormInstanceRequest implements ICreateMeasurementFormInstanceRequest {
|
|
13935
|
+
schemaId: string;
|
|
13936
|
+
customerId?: string | null;
|
|
13937
|
+
customerName?: string | null;
|
|
13938
|
+
purchaseOrder?: string | null;
|
|
13939
|
+
sequences?: CreateMeasurementFormInstanceRequestSequence[];
|
|
13940
|
+
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13941
|
+
constructor(data?: ICreateMeasurementFormInstanceRequest);
|
|
13942
|
+
init(_data?: any): void;
|
|
13943
|
+
static fromJS(data: any): CreateMeasurementFormInstanceRequest;
|
|
13944
|
+
toJSON(data?: any): any;
|
|
13945
|
+
}
|
|
13946
|
+
export interface ICreateMeasurementFormInstanceRequest {
|
|
13947
|
+
schemaId: string;
|
|
13948
|
+
customerId?: string | null;
|
|
13949
|
+
customerName?: string | null;
|
|
13950
|
+
purchaseOrder?: string | null;
|
|
13951
|
+
sequences?: CreateMeasurementFormInstanceRequestSequence[];
|
|
13952
|
+
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13953
|
+
}
|
|
13954
|
+
export declare class CreateMeasurementFormInstanceRequestSequence implements ICreateMeasurementFormInstanceRequestSequence {
|
|
13955
|
+
sequenceNumber: string;
|
|
13956
|
+
serialNumber?: string | null;
|
|
13957
|
+
constructor(data?: ICreateMeasurementFormInstanceRequestSequence);
|
|
13958
|
+
init(_data?: any): void;
|
|
13959
|
+
static fromJS(data: any): CreateMeasurementFormInstanceRequestSequence;
|
|
13960
|
+
toJSON(data?: any): any;
|
|
13961
|
+
}
|
|
13962
|
+
export interface ICreateMeasurementFormInstanceRequestSequence {
|
|
13963
|
+
sequenceNumber: string;
|
|
13964
|
+
serialNumber?: string | null;
|
|
13965
|
+
}
|
|
13966
|
+
export declare class CreateMeasurementFormInstanceRequestSerialNumber implements ICreateMeasurementFormInstanceRequestSerialNumber {
|
|
13967
|
+
serialNumber: string;
|
|
13968
|
+
customerSerialNumber?: string | null;
|
|
13969
|
+
constructor(data?: ICreateMeasurementFormInstanceRequestSerialNumber);
|
|
13970
|
+
init(_data?: any): void;
|
|
13971
|
+
static fromJS(data: any): CreateMeasurementFormInstanceRequestSerialNumber;
|
|
13972
|
+
toJSON(data?: any): any;
|
|
13973
|
+
}
|
|
13974
|
+
export interface ICreateMeasurementFormInstanceRequestSerialNumber {
|
|
13975
|
+
serialNumber: string;
|
|
13976
|
+
customerSerialNumber?: string | null;
|
|
13977
|
+
}
|
|
13978
|
+
export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeasurementFormInstanceRequest {
|
|
13979
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
13980
|
+
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13981
|
+
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13982
|
+
constructor(data?: IUpdateMeasurementFormInstanceRequest);
|
|
13983
|
+
init(_data?: any): void;
|
|
13984
|
+
static fromJS(data: any): UpdateMeasurementFormInstanceRequest;
|
|
13985
|
+
toJSON(data?: any): any;
|
|
13986
|
+
}
|
|
13987
|
+
export interface IUpdateMeasurementFormInstanceRequest {
|
|
13988
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
13989
|
+
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13990
|
+
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13991
|
+
}
|
|
13994
13992
|
export declare class ProductionCompanyDto implements IProductionCompanyDto {
|
|
13995
13993
|
id: string;
|
|
13996
13994
|
name: string;
|
|
@@ -14365,39 +14363,41 @@ export interface IResourceExistDto {
|
|
|
14365
14363
|
id?: string | null;
|
|
14366
14364
|
externalId?: string | null;
|
|
14367
14365
|
}
|
|
14368
|
-
export declare class
|
|
14369
|
-
|
|
14366
|
+
export declare class RegisterWorkorderOperationEventRequest implements IRegisterWorkorderOperationEventRequest {
|
|
14367
|
+
workorderDescription?: string | null;
|
|
14368
|
+
operationDescription?: string | null;
|
|
14369
|
+
isSetup: boolean;
|
|
14370
14370
|
employee?: EmployeeDto | null;
|
|
14371
14371
|
resourceId: string;
|
|
14372
14372
|
customerOrder?: CustomerOrderInfoDto | null;
|
|
14373
14373
|
part?: PartDto | null;
|
|
14374
14374
|
workorderQuantity?: number | null;
|
|
14375
|
-
|
|
14375
|
+
startTime: Date;
|
|
14376
|
+
endTime: Date;
|
|
14376
14377
|
materialPartNumber?: string | null;
|
|
14377
14378
|
materialPartName?: string | null;
|
|
14378
14379
|
materialItemGroup?: string | null;
|
|
14379
|
-
workorderDescription?: string | null;
|
|
14380
|
-
operationDescription?: string | null;
|
|
14381
14380
|
externalId?: string | null;
|
|
14382
14381
|
companyId?: string | null;
|
|
14383
|
-
constructor(data?:
|
|
14382
|
+
constructor(data?: IRegisterWorkorderOperationEventRequest);
|
|
14384
14383
|
init(_data?: any): void;
|
|
14385
|
-
static fromJS(data: any):
|
|
14384
|
+
static fromJS(data: any): RegisterWorkorderOperationEventRequest;
|
|
14386
14385
|
toJSON(data?: any): any;
|
|
14387
14386
|
}
|
|
14388
|
-
export interface
|
|
14389
|
-
|
|
14387
|
+
export interface IRegisterWorkorderOperationEventRequest {
|
|
14388
|
+
workorderDescription?: string | null;
|
|
14389
|
+
operationDescription?: string | null;
|
|
14390
|
+
isSetup: boolean;
|
|
14390
14391
|
employee?: EmployeeDto | null;
|
|
14391
14392
|
resourceId: string;
|
|
14392
14393
|
customerOrder?: CustomerOrderInfoDto | null;
|
|
14393
14394
|
part?: PartDto | null;
|
|
14394
14395
|
workorderQuantity?: number | null;
|
|
14395
|
-
|
|
14396
|
+
startTime: Date;
|
|
14397
|
+
endTime: Date;
|
|
14396
14398
|
materialPartNumber?: string | null;
|
|
14397
14399
|
materialPartName?: string | null;
|
|
14398
14400
|
materialItemGroup?: string | null;
|
|
14399
|
-
workorderDescription?: string | null;
|
|
14400
|
-
operationDescription?: string | null;
|
|
14401
14401
|
externalId?: string | null;
|
|
14402
14402
|
companyId?: string | null;
|
|
14403
14403
|
}
|
|
@@ -14415,62 +14415,62 @@ export interface ICustomerOrderInfoDto {
|
|
|
14415
14415
|
customerId?: string | null;
|
|
14416
14416
|
customerName?: string | null;
|
|
14417
14417
|
}
|
|
14418
|
-
export declare class
|
|
14419
|
-
isSetup?: boolean;
|
|
14420
|
-
employee?: EmployeeDto | null;
|
|
14421
|
-
time?: Date | null;
|
|
14422
|
-
resourceId: string;
|
|
14423
|
-
companyId?: string | null;
|
|
14424
|
-
constructor(data?: IStopWorkOperationRequest);
|
|
14425
|
-
init(_data?: any): void;
|
|
14426
|
-
static fromJS(data: any): StopWorkOperationRequest;
|
|
14427
|
-
toJSON(data?: any): any;
|
|
14428
|
-
}
|
|
14429
|
-
export interface IStopWorkOperationRequest {
|
|
14418
|
+
export declare class StartWorkOperationRequest implements IStartWorkOperationRequest {
|
|
14430
14419
|
isSetup?: boolean;
|
|
14431
14420
|
employee?: EmployeeDto | null;
|
|
14432
|
-
time?: Date | null;
|
|
14433
|
-
resourceId: string;
|
|
14434
|
-
companyId?: string | null;
|
|
14435
|
-
}
|
|
14436
|
-
export declare class RegisterWorkorderOperationEventRequest implements IRegisterWorkorderOperationEventRequest {
|
|
14437
|
-
workorderDescription?: string | null;
|
|
14438
|
-
operationDescription?: string | null;
|
|
14439
|
-
isSetup: boolean;
|
|
14440
|
-
employee?: EmployeeDto | null;
|
|
14441
14421
|
resourceId: string;
|
|
14442
14422
|
customerOrder?: CustomerOrderInfoDto | null;
|
|
14443
14423
|
part?: PartDto | null;
|
|
14444
14424
|
workorderQuantity?: number | null;
|
|
14445
|
-
|
|
14446
|
-
endTime: Date;
|
|
14425
|
+
time?: Date | null;
|
|
14447
14426
|
materialPartNumber?: string | null;
|
|
14448
14427
|
materialPartName?: string | null;
|
|
14449
14428
|
materialItemGroup?: string | null;
|
|
14429
|
+
workorderDescription?: string | null;
|
|
14430
|
+
operationDescription?: string | null;
|
|
14450
14431
|
externalId?: string | null;
|
|
14451
14432
|
companyId?: string | null;
|
|
14452
|
-
constructor(data?:
|
|
14433
|
+
constructor(data?: IStartWorkOperationRequest);
|
|
14453
14434
|
init(_data?: any): void;
|
|
14454
|
-
static fromJS(data: any):
|
|
14435
|
+
static fromJS(data: any): StartWorkOperationRequest;
|
|
14455
14436
|
toJSON(data?: any): any;
|
|
14456
14437
|
}
|
|
14457
|
-
export interface
|
|
14458
|
-
|
|
14459
|
-
operationDescription?: string | null;
|
|
14460
|
-
isSetup: boolean;
|
|
14438
|
+
export interface IStartWorkOperationRequest {
|
|
14439
|
+
isSetup?: boolean;
|
|
14461
14440
|
employee?: EmployeeDto | null;
|
|
14462
14441
|
resourceId: string;
|
|
14463
14442
|
customerOrder?: CustomerOrderInfoDto | null;
|
|
14464
14443
|
part?: PartDto | null;
|
|
14465
14444
|
workorderQuantity?: number | null;
|
|
14466
|
-
|
|
14467
|
-
endTime: Date;
|
|
14445
|
+
time?: Date | null;
|
|
14468
14446
|
materialPartNumber?: string | null;
|
|
14469
14447
|
materialPartName?: string | null;
|
|
14470
14448
|
materialItemGroup?: string | null;
|
|
14449
|
+
workorderDescription?: string | null;
|
|
14450
|
+
operationDescription?: string | null;
|
|
14471
14451
|
externalId?: string | null;
|
|
14472
14452
|
companyId?: string | null;
|
|
14473
14453
|
}
|
|
14454
|
+
export declare class StopWorkOperationRequest implements IStopWorkOperationRequest {
|
|
14455
|
+
isSetup?: boolean;
|
|
14456
|
+
employee?: EmployeeDto | null;
|
|
14457
|
+
time?: Date | null;
|
|
14458
|
+
resourceId: string;
|
|
14459
|
+
companyId?: string | null;
|
|
14460
|
+
ignoreNotFoundEvents?: boolean | null;
|
|
14461
|
+
constructor(data?: IStopWorkOperationRequest);
|
|
14462
|
+
init(_data?: any): void;
|
|
14463
|
+
static fromJS(data: any): StopWorkOperationRequest;
|
|
14464
|
+
toJSON(data?: any): any;
|
|
14465
|
+
}
|
|
14466
|
+
export interface IStopWorkOperationRequest {
|
|
14467
|
+
isSetup?: boolean;
|
|
14468
|
+
employee?: EmployeeDto | null;
|
|
14469
|
+
time?: Date | null;
|
|
14470
|
+
resourceId: string;
|
|
14471
|
+
companyId?: string | null;
|
|
14472
|
+
ignoreNotFoundEvents?: boolean | null;
|
|
14473
|
+
}
|
|
14474
14474
|
export declare class PagedResultOfWorkorderListDto implements IPagedResultOfWorkorderListDto {
|
|
14475
14475
|
results: WorkorderListDto[];
|
|
14476
14476
|
continuationToken?: string | null;
|