@ignos/api-client 20260311.75.1-alpha → 20260312.76.1

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.
@@ -124,7 +124,6 @@ export declare class CustomersClient extends AuthorizedApiBase implements ICusto
124
124
  }
125
125
  export interface IGuestsClient {
126
126
  getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
127
- getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
128
127
  }
129
128
  export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
130
129
  private http;
@@ -134,8 +133,6 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
134
133
  });
135
134
  getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
136
135
  protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
137
- getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
138
- protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
139
136
  }
140
137
  export interface IPresentationClient {
141
138
  getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
@@ -1428,6 +1425,99 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
1428
1425
  listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
1429
1426
  protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
1430
1427
  }
1428
+ export interface IExternalAccessClient {
1429
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1430
+ createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1431
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1432
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1433
+ listRoles(): Promise<ExternalRoleDto[]>;
1434
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1435
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
1436
+ }
1437
+ export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
1438
+ private http;
1439
+ private baseUrl;
1440
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1441
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1442
+ });
1443
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1444
+ protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
1445
+ createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1446
+ protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
1447
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1448
+ protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
1449
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1450
+ protected processDeleteCompanyUser(response: Response): Promise<void>;
1451
+ listRoles(): Promise<ExternalRoleDto[]>;
1452
+ protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
1453
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1454
+ protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
1455
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
1456
+ protected processDeleteCompanyCustomer(response: Response): Promise<void>;
1457
+ }
1458
+ export interface IExternalClient {
1459
+ listInvites(): Promise<InviteDto[]>;
1460
+ acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1461
+ listCompanies(): Promise<CompanyDto[]>;
1462
+ }
1463
+ export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
1464
+ private http;
1465
+ private baseUrl;
1466
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1467
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1468
+ });
1469
+ listInvites(): Promise<InviteDto[]>;
1470
+ protected processListInvites(response: Response): Promise<InviteDto[]>;
1471
+ acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1472
+ protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
1473
+ listCompanies(): Promise<CompanyDto[]>;
1474
+ protected processListCompanies(response: Response): Promise<CompanyDto[]>;
1475
+ }
1476
+ export interface ISuppliersClient {
1477
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
1478
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1479
+ deleteSupplierInvite(id: string): Promise<void>;
1480
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
1481
+ deleteSupplier(id: string): Promise<void>;
1482
+ importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1483
+ /**
1484
+ * Creates a mapping between old supplier id and new supplier id.
1485
+ */
1486
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1487
+ /**
1488
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
1489
+ */
1490
+ deleteSupplierMappings(): Promise<void>;
1491
+ }
1492
+ export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
1493
+ private http;
1494
+ private baseUrl;
1495
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1496
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1497
+ });
1498
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
1499
+ protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
1500
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1501
+ protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
1502
+ deleteSupplierInvite(id: string): Promise<void>;
1503
+ protected processDeleteSupplierInvite(response: Response): Promise<void>;
1504
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
1505
+ protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
1506
+ deleteSupplier(id: string): Promise<void>;
1507
+ protected processDeleteSupplier(response: Response): Promise<void>;
1508
+ importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1509
+ protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
1510
+ /**
1511
+ * Creates a mapping between old supplier id and new supplier id.
1512
+ */
1513
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1514
+ protected processCreateSupplierMapping(response: Response): Promise<void>;
1515
+ /**
1516
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
1517
+ */
1518
+ deleteSupplierMappings(): Promise<void>;
1519
+ protected processDeleteSupplierMappings(response: Response): Promise<void>;
1520
+ }
1431
1521
  export interface ICncFileTransferClient {
1432
1522
  startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1433
1523
  startCncMachineOperationTransferToMachine(id: string): Promise<CncMachineTransferDto>;
@@ -1869,6 +1959,24 @@ export declare class CdfClient extends AuthorizedApiBase implements ICdfClient {
1869
1959
  updateCdfConfig(request: UpdateCdfConfig): Promise<CdfConfigDto>;
1870
1960
  protected processUpdateCdfConfig(response: Response): Promise<CdfConfigDto>;
1871
1961
  }
1962
+ export interface IWorkspaceDefaultsAdminClient {
1963
+ getDefaults(): Promise<WorkspaceDefaultsDto>;
1964
+ setMachineDefault(machineId: string, templateId: string): Promise<WorkspaceDefaultsDto>;
1965
+ deleteMachineDefault(machineId: string): Promise<void>;
1966
+ }
1967
+ export declare class WorkspaceDefaultsAdminClient extends AuthorizedApiBase implements IWorkspaceDefaultsAdminClient {
1968
+ private http;
1969
+ private baseUrl;
1970
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1971
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1972
+ });
1973
+ getDefaults(): Promise<WorkspaceDefaultsDto>;
1974
+ protected processGetDefaults(response: Response): Promise<WorkspaceDefaultsDto>;
1975
+ setMachineDefault(machineId: string, templateId: string): Promise<WorkspaceDefaultsDto>;
1976
+ protected processSetMachineDefault(response: Response): Promise<WorkspaceDefaultsDto>;
1977
+ deleteMachineDefault(machineId: string): Promise<void>;
1978
+ protected processDeleteMachineDefault(response: Response): Promise<void>;
1979
+ }
1872
1980
  export interface IWorkspacesClient {
1873
1981
  getMyWorkspaces(): Promise<WorkspaceListDto[]>;
1874
1982
  createWorkspace(createWorkspace: CreateWorkspace): Promise<WorkspaceDto>;
@@ -1879,6 +1987,7 @@ export interface IWorkspacesClient {
1879
1987
  updateWorkspaceWidgets(id: string, request: UpdateWorkspaceWidgetsRequest): Promise<WorkspaceDto>;
1880
1988
  updateWorkspaceWidgetSettings(id: string, widgetId: string, request: UpdateWorkspaceWidgetSettingsRequest): Promise<WorkspaceDto>;
1881
1989
  deleteWorkspaceWidget(id: string, widgetId: string): Promise<WorkspaceDto>;
1990
+ resolveDefault(request: ResolveDefaultWorkspaceRequestDto): Promise<ResolveDefaultWorkspaceDto>;
1882
1991
  }
1883
1992
  export declare class WorkspacesClient extends AuthorizedApiBase implements IWorkspacesClient {
1884
1993
  private http;
@@ -1904,6 +2013,8 @@ export declare class WorkspacesClient extends AuthorizedApiBase implements IWork
1904
2013
  protected processUpdateWorkspaceWidgetSettings(response: Response): Promise<WorkspaceDto>;
1905
2014
  deleteWorkspaceWidget(id: string, widgetId: string): Promise<WorkspaceDto>;
1906
2015
  protected processDeleteWorkspaceWidget(response: Response): Promise<WorkspaceDto>;
2016
+ resolveDefault(request: ResolveDefaultWorkspaceRequestDto): Promise<ResolveDefaultWorkspaceDto>;
2017
+ protected processResolveDefault(response: Response): Promise<ResolveDefaultWorkspaceDto>;
1907
2018
  }
1908
2019
  export interface IWorkspaceTemplatesAdminClient {
1909
2020
  createWorkspaceTemplate(createWorkspaceTemplate: CreateWorkspaceTemplate): Promise<WorkspaceDto>;
@@ -2399,6 +2510,84 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
2399
2510
  deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
2400
2511
  protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
2401
2512
  }
2513
+ export interface IMaterialCertificateChecksClient {
2514
+ listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
2515
+ getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
2516
+ processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
2517
+ updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
2518
+ }
2519
+ export declare class MaterialCertificateChecksClient extends AuthorizedApiBase implements IMaterialCertificateChecksClient {
2520
+ private http;
2521
+ private baseUrl;
2522
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2523
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2524
+ });
2525
+ listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
2526
+ protected processListMaterialCertificateChecks(response: Response): Promise<ImaMaterialChecksPageDto>;
2527
+ getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
2528
+ protected processGetMaterialCertificateCheck(response: Response): Promise<ImaMaterialCheckDto>;
2529
+ processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
2530
+ protected processProcessMaterialCertificate(response: Response): Promise<void>;
2531
+ updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
2532
+ protected processUpdateMaterialCertificate(response: Response): Promise<ImaMaterialCheckDto>;
2533
+ }
2534
+ export interface IMaterialCertificateSpecificationsClient {
2535
+ listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2536
+ getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2537
+ updateSpecifications(id: string, version: number | null | undefined, _: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2538
+ deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2539
+ createSpecifications(createDto: CreateImaSpecificationDto): Promise<ImaSpecificationDto>;
2540
+ }
2541
+ export declare class MaterialCertificateSpecificationsClient extends AuthorizedApiBase implements IMaterialCertificateSpecificationsClient {
2542
+ private http;
2543
+ private baseUrl;
2544
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2545
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2546
+ });
2547
+ listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2548
+ protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2549
+ getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2550
+ protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
2551
+ updateSpecifications(id: string, version: number | null | undefined, _: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2552
+ protected processUpdateSpecifications(response: Response): Promise<ImaSpecificationDto>;
2553
+ deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2554
+ protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
2555
+ createSpecifications(createDto: CreateImaSpecificationDto): Promise<ImaSpecificationDto>;
2556
+ protected processCreateSpecifications(response: Response): Promise<ImaSpecificationDto>;
2557
+ }
2558
+ export interface IMaterialCertificateTypesClient {
2559
+ listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
2560
+ getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2561
+ updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2562
+ deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2563
+ createMaterialCertificateTypes(payload: ImaCreateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2564
+ copyMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2565
+ createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2566
+ releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2567
+ }
2568
+ export declare class MaterialCertificateTypesClient extends AuthorizedApiBase implements IMaterialCertificateTypesClient {
2569
+ private http;
2570
+ private baseUrl;
2571
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2572
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2573
+ });
2574
+ listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
2575
+ protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
2576
+ getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2577
+ protected processGetMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
2578
+ updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2579
+ protected processUpdateMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
2580
+ deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2581
+ protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
2582
+ createMaterialCertificateTypes(payload: ImaCreateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2583
+ protected processCreateMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
2584
+ copyMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2585
+ protected processCopyMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
2586
+ createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2587
+ protected processCreateNewVersionForCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
2588
+ releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2589
+ protected processReleaseMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
2590
+ }
2402
2591
  export interface IMeasurementFormSchemasAdminClient {
2403
2592
  getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
2404
2593
  createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
@@ -2649,22 +2838,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
2649
2838
  protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
2650
2839
  }
2651
2840
  export interface IMeasurementFormsInstancesClient {
2652
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2841
+ 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>;
2653
2842
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2654
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2843
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2655
2844
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
2656
- completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2657
- completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
2658
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2659
- getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
2660
- getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2845
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2846
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2847
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2848
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2849
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2661
2850
  getValidationRules(): Promise<ValidationRuleDto[]>;
2662
- saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2663
- saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2664
- saveComment(id: string, request: SaveCommentRequest): Promise<void>;
2665
- batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2666
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2667
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2851
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2852
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2853
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2854
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2855
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2856
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2668
2857
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2669
2858
  upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
2670
2859
  removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
@@ -2680,37 +2869,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
2680
2869
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2681
2870
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2682
2871
  });
2683
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2872
+ 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>;
2684
2873
  protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2685
2874
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2686
2875
  protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2687
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2876
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2688
2877
  protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2689
2878
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
2690
2879
  protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
2691
- completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2880
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2692
2881
  protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2693
- completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
2882
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2694
2883
  protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
2695
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2884
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2696
2885
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
2697
- getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
2886
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2698
2887
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
2699
- getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2888
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2700
2889
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
2701
2890
  getValidationRules(): Promise<ValidationRuleDto[]>;
2702
2891
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
2703
- saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2892
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2704
2893
  protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
2705
- saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2894
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2706
2895
  protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
2707
- saveComment(id: string, request: SaveCommentRequest): Promise<void>;
2896
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2708
2897
  protected processSaveComment(response: Response): Promise<void>;
2709
- batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2898
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2710
2899
  protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
2711
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2900
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2712
2901
  protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
2713
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2902
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2714
2903
  protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
2715
2904
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2716
2905
  protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
@@ -2735,7 +2924,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
2735
2924
  createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
2736
2925
  reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2737
2926
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2738
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
2927
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2739
2928
  }
2740
2929
  export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
2741
2930
  private http;
@@ -2759,7 +2948,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
2759
2948
  protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2760
2949
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2761
2950
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2762
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
2951
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2763
2952
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
2764
2953
  }
2765
2954
  export interface ICompaniesClient {
@@ -3099,168 +3288,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3099
3288
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3100
3289
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3101
3290
  }
3102
- export interface IExternalAccessClient {
3103
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3104
- createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3105
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3106
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3107
- listRoles(): Promise<ExternalRoleDto[]>;
3108
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3109
- deleteCompanyCustomer(tenantId: string): Promise<void>;
3110
- }
3111
- export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
3112
- private http;
3113
- private baseUrl;
3114
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3115
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3116
- });
3117
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3118
- protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
3119
- createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3120
- protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
3121
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3122
- protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
3123
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3124
- protected processDeleteCompanyUser(response: Response): Promise<void>;
3125
- listRoles(): Promise<ExternalRoleDto[]>;
3126
- protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
3127
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3128
- protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
3129
- deleteCompanyCustomer(tenantId: string): Promise<void>;
3130
- protected processDeleteCompanyCustomer(response: Response): Promise<void>;
3131
- }
3132
- export interface IExternalClient {
3133
- listCompanies(): Promise<CompanyDto[]>;
3134
- getCompany(id: string): Promise<CompanyDto>;
3135
- getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3136
- acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3137
- }
3138
- export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
3139
- private http;
3140
- private baseUrl;
3141
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3142
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3143
- });
3144
- listCompanies(): Promise<CompanyDto[]>;
3145
- protected processListCompanies(response: Response): Promise<CompanyDto[]>;
3146
- getCompany(id: string): Promise<CompanyDto>;
3147
- protected processGetCompany(response: Response): Promise<CompanyDto>;
3148
- getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3149
- protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3150
- acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3151
- protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3152
- }
3153
- export interface ISuppliersClient {
3154
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3155
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3156
- deleteSupplierInvite(id: string): Promise<void>;
3157
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3158
- deleteSupplier(id: string): Promise<void>;
3159
- /**
3160
- * Creates a mapping between old supplier id and new supplier id.
3161
- */
3162
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3163
- /**
3164
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3165
- */
3166
- deleteSupplierMappings(): Promise<void>;
3167
- }
3168
- export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
3169
- private http;
3170
- private baseUrl;
3171
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3172
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3173
- });
3174
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3175
- protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3176
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3177
- protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3178
- deleteSupplierInvite(id: string): Promise<void>;
3179
- protected processDeleteSupplierInvite(response: Response): Promise<void>;
3180
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3181
- protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3182
- deleteSupplier(id: string): Promise<void>;
3183
- protected processDeleteSupplier(response: Response): Promise<void>;
3184
- /**
3185
- * Creates a mapping between old supplier id and new supplier id.
3186
- */
3187
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3188
- protected processCreateSupplierMapping(response: Response): Promise<void>;
3189
- /**
3190
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3191
- */
3192
- deleteSupplierMappings(): Promise<void>;
3193
- protected processDeleteSupplierMappings(response: Response): Promise<void>;
3194
- }
3195
- export interface IMaterialCertificateChecksClient {
3196
- listMaterialCertificateChecks(request: AmcMaterialChecksPageRequestDto): Promise<AmcMaterialChecksPageDto>;
3197
- getMaterialCertificateCheck(id: string): Promise<AmcMaterialCheckDto>;
3198
- processMaterialCertificate(certificatesRequest: ProcessAmcCheckRequestDto): Promise<void>;
3199
- updateMaterialCertificate(certificatesRequest: AmcUpdateResultRequestDto): Promise<AmcMaterialCheckDto>;
3200
- }
3201
- export declare class MaterialCertificateChecksClient extends AuthorizedApiBase implements IMaterialCertificateChecksClient {
3202
- private http;
3203
- private baseUrl;
3204
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3205
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3206
- });
3207
- listMaterialCertificateChecks(request: AmcMaterialChecksPageRequestDto): Promise<AmcMaterialChecksPageDto>;
3208
- protected processListMaterialCertificateChecks(response: Response): Promise<AmcMaterialChecksPageDto>;
3209
- getMaterialCertificateCheck(id: string): Promise<AmcMaterialCheckDto>;
3210
- protected processGetMaterialCertificateCheck(response: Response): Promise<AmcMaterialCheckDto>;
3211
- processMaterialCertificate(certificatesRequest: ProcessAmcCheckRequestDto): Promise<void>;
3212
- protected processProcessMaterialCertificate(response: Response): Promise<void>;
3213
- updateMaterialCertificate(certificatesRequest: AmcUpdateResultRequestDto): Promise<AmcMaterialCheckDto>;
3214
- protected processUpdateMaterialCertificate(response: Response): Promise<AmcMaterialCheckDto>;
3215
- }
3216
- export interface IMaterialCertificateSpecificationsClient {
3217
- listSpecifications(): Promise<AmcSpecificationLiteDto[]>;
3218
- getSpecification(id: string, version: number | null | undefined): Promise<AmcSpecificationDto>;
3219
- createSpecifications(specificationsRequest: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
3220
- updateSpecifications(specificationsRequest: UpdateAmcSpecificationDto): Promise<AmcSpecificationDto>;
3221
- deleteMaterialCertificateTypes(materialCertificateSpecificationId: string, version: string): Promise<void>;
3222
- }
3223
- export declare class MaterialCertificateSpecificationsClient extends AuthorizedApiBase implements IMaterialCertificateSpecificationsClient {
3224
- private http;
3225
- private baseUrl;
3226
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3227
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3228
- });
3229
- listSpecifications(): Promise<AmcSpecificationLiteDto[]>;
3230
- protected processListSpecifications(response: Response): Promise<AmcSpecificationLiteDto[]>;
3231
- getSpecification(id: string, version: number | null | undefined): Promise<AmcSpecificationDto>;
3232
- protected processGetSpecification(response: Response): Promise<AmcSpecificationDto>;
3233
- createSpecifications(specificationsRequest: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
3234
- protected processCreateSpecifications(response: Response): Promise<AmcSpecificationDto>;
3235
- updateSpecifications(specificationsRequest: UpdateAmcSpecificationDto): Promise<AmcSpecificationDto>;
3236
- protected processUpdateSpecifications(response: Response): Promise<AmcSpecificationDto>;
3237
- deleteMaterialCertificateTypes(materialCertificateSpecificationId: string, version: string): Promise<void>;
3238
- protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
3239
- }
3240
- export interface IMaterialCertificateTypesClient {
3241
- listMaterialCertificateTypes(): Promise<AmcCertificateTypeLiteDto[]>;
3242
- getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<AmcCertificateTypeDto>;
3243
- updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: AmcUpdateAmcCertificateTypeRequestDto): Promise<AmcCertificateTypeDto>;
3244
- deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
3245
- createMaterialCertificateTypes(payload: AmcCreateAmcCertificateTypeRequestDto): Promise<AmcCertificateTypeDto>;
3246
- }
3247
- export declare class MaterialCertificateTypesClient extends AuthorizedApiBase implements IMaterialCertificateTypesClient {
3248
- private http;
3249
- private baseUrl;
3250
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3251
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3252
- });
3253
- listMaterialCertificateTypes(): Promise<AmcCertificateTypeLiteDto[]>;
3254
- protected processListMaterialCertificateTypes(response: Response): Promise<AmcCertificateTypeLiteDto[]>;
3255
- getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<AmcCertificateTypeDto>;
3256
- protected processGetMaterialCertificateTypes(response: Response): Promise<AmcCertificateTypeDto>;
3257
- updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: AmcUpdateAmcCertificateTypeRequestDto): Promise<AmcCertificateTypeDto>;
3258
- protected processUpdateMaterialCertificateTypes(response: Response): Promise<AmcCertificateTypeDto>;
3259
- deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
3260
- protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
3261
- createMaterialCertificateTypes(payload: AmcCreateAmcCertificateTypeRequestDto): Promise<AmcCertificateTypeDto>;
3262
- protected processCreateMaterialCertificateTypes(response: Response): Promise<AmcCertificateTypeDto>;
3263
- }
3264
3291
  export interface AzureRegionDto {
3265
3292
  displayName: string;
3266
3293
  name: string;
@@ -3494,8 +3521,6 @@ export interface UserDetailsDto {
3494
3521
  isExternalUser?: boolean;
3495
3522
  isBetaTester?: boolean | null;
3496
3523
  hasAccessToIgnos?: boolean;
3497
- isInvitedUser?: boolean;
3498
- isSupplier?: boolean;
3499
3524
  }
3500
3525
  export interface UserDto {
3501
3526
  id?: string | null;
@@ -3904,6 +3929,7 @@ export interface UpdateCalendarSettingsCommand {
3904
3929
  };
3905
3930
  halfDayHours?: number;
3906
3931
  holidayHours?: number;
3932
+ defaultPerformancePercent?: number | null;
3907
3933
  }
3908
3934
  export interface ResourceKpiDto {
3909
3935
  uptimeToNow: number;
@@ -4217,6 +4243,7 @@ export interface UtilizationDetailsV2Dto {
4217
4243
  uptimeInMilliseconds?: number | null;
4218
4244
  downtimeInMilliseconds?: number | null;
4219
4245
  totalTimeInMilliseconds?: number | null;
4246
+ performancePercent?: number | null;
4220
4247
  }
4221
4248
  export interface MachineGroupUtilizationV2Dto {
4222
4249
  name: string;
@@ -5361,21 +5388,112 @@ export interface DocumentGeneratorTypeDto {
5361
5388
  key: string;
5362
5389
  description: string;
5363
5390
  }
5364
- export interface CncMachineTransferDto {
5365
- id: string;
5366
- cncMachineOperationId?: string | null;
5367
- cncMachineId: string;
5368
- cncMachineName: string;
5369
- direction: FileTransferDirection;
5370
- files: string[];
5371
- status: FileTransferStatus;
5372
- statusMessage?: string | null;
5373
- timestamp: Date;
5391
+ export interface CompanyUserDto {
5392
+ companyId?: string | null;
5393
+ username?: string | null;
5394
+ name?: string | null;
5395
+ roles?: string[] | null;
5374
5396
  }
5375
- export type FileTransferDirection = "FromCloud" | "ToCloud";
5376
- export type FileTransferStatus = "InProgress" | "Success" | "Failed";
5377
- export interface UploadCamFileDto {
5378
- uploadUrl: string;
5397
+ export interface CreateCompanyUserRequest {
5398
+ username: string;
5399
+ name: string;
5400
+ roles: string[];
5401
+ companyId?: string | null;
5402
+ }
5403
+ export interface UpdateCompanyUserRequest {
5404
+ name: string;
5405
+ roles: string[];
5406
+ companyId?: string | null;
5407
+ }
5408
+ export interface ExternalRoleDto {
5409
+ id: string;
5410
+ name: string;
5411
+ }
5412
+ export interface CompanyCustomerDto {
5413
+ customerTenantId?: string | null;
5414
+ customerAzureAdTenantId?: string | null;
5415
+ customerName?: string | null;
5416
+ supplierId?: string | null;
5417
+ supplierName?: string | null;
5418
+ }
5419
+ export interface InviteDto {
5420
+ tenantId: string;
5421
+ companyName: string;
5422
+ id: string;
5423
+ supplierId: string;
5424
+ supplierName: string;
5425
+ username: string;
5426
+ deadline: Date;
5427
+ createdTime: Date;
5428
+ createdBy: string;
5429
+ }
5430
+ export interface CompanyDto {
5431
+ id?: string | null;
5432
+ name?: string | null;
5433
+ organizationNumber?: string | null;
5434
+ country?: string | null;
5435
+ tenantId?: string | null;
5436
+ }
5437
+ export interface AcceptSupplierInviteRequest {
5438
+ tenantId: string;
5439
+ existingCompanyId?: string | null;
5440
+ companyName?: string | null;
5441
+ organizationNumber?: string | null;
5442
+ threeLetterIsoCountry?: string | null;
5443
+ }
5444
+ export interface SupplierInviteDto {
5445
+ id: string;
5446
+ supplierId: string;
5447
+ name: string;
5448
+ username: string;
5449
+ deadline: Date;
5450
+ createdTime: Date;
5451
+ createdBy: string;
5452
+ }
5453
+ export interface CreateSupplierInvite {
5454
+ supplierId: string;
5455
+ name: string;
5456
+ username: string;
5457
+ deadline: Date;
5458
+ }
5459
+ export interface ExternalSupplierDto {
5460
+ id: string;
5461
+ name: string;
5462
+ companyId: string;
5463
+ active: boolean;
5464
+ }
5465
+ export interface ImportSupplier {
5466
+ supplierId: string;
5467
+ name: string;
5468
+ organizationNumber?: string | null;
5469
+ threeLetterIsoCountry: string;
5470
+ users: ImportSupplierUserDto[];
5471
+ }
5472
+ export interface ImportSupplierUserDto {
5473
+ username: string;
5474
+ name: string;
5475
+ roles: string[];
5476
+ }
5477
+ export interface CreateSupplierMapping {
5478
+ companyId: string;
5479
+ existingSupplierId: string;
5480
+ newSupplierId: string;
5481
+ }
5482
+ export interface CncMachineTransferDto {
5483
+ id: string;
5484
+ cncMachineOperationId?: string | null;
5485
+ cncMachineId: string;
5486
+ cncMachineName: string;
5487
+ direction: FileTransferDirection;
5488
+ files: string[];
5489
+ status: FileTransferStatus;
5490
+ statusMessage?: string | null;
5491
+ timestamp: Date;
5492
+ }
5493
+ export type FileTransferDirection = "FromCloud" | "ToCloud";
5494
+ export type FileTransferStatus = "InProgress" | "Success" | "Failed";
5495
+ export interface UploadCamFileDto {
5496
+ uploadUrl: string;
5379
5497
  path: string;
5380
5498
  url: string;
5381
5499
  }
@@ -5528,6 +5646,7 @@ export interface ListCncPartsRequest {
5528
5646
  operationMaxCreatedDate?: Date | null;
5529
5647
  operationMinUpdatedDate?: Date | null;
5530
5648
  operationMaxUpdatedDate?: Date | null;
5649
+ utcOffset?: number | null;
5531
5650
  }
5532
5651
  export type CncFilterDeletedDto = "NoneDeleted" | "OnlyDeleted" | "All";
5533
5652
  export interface CncPartMaterialListDto {
@@ -5637,6 +5756,7 @@ export interface ListCncMachineOperationsRequest {
5637
5756
  maxCreatedDate?: Date | null;
5638
5757
  minUpdatedDate?: Date | null;
5639
5758
  maxUpdatedDate?: Date | null;
5759
+ utcOffset?: number | null;
5640
5760
  }
5641
5761
  export interface UpdateCncMachineOperationRequest {
5642
5762
  operation?: number | null;
@@ -6213,6 +6333,11 @@ export interface UpdateCdfConfig {
6213
6333
  clientId: string;
6214
6334
  clientSecret?: string | null;
6215
6335
  }
6336
+ export interface WorkspaceDefaultsDto {
6337
+ machineTemplateOverrides?: {
6338
+ [key: string]: string;
6339
+ };
6340
+ }
6216
6341
  export interface WorkspaceListDto {
6217
6342
  id: string;
6218
6343
  name: string;
@@ -6262,6 +6387,12 @@ export interface UpdateWorkspaceWidgetsRequest {
6262
6387
  export interface UpdateWorkspaceWidgetSettingsRequest {
6263
6388
  settings: string;
6264
6389
  }
6390
+ export interface ResolveDefaultWorkspaceDto {
6391
+ workspaceId?: string | null;
6392
+ }
6393
+ export interface ResolveDefaultWorkspaceRequestDto {
6394
+ machineId: string;
6395
+ }
6265
6396
  export interface CreateWorkspaceTemplate {
6266
6397
  name: string;
6267
6398
  description?: string | null;
@@ -7279,442 +7410,994 @@ export interface WeldingIotConfigDto {
7279
7410
  }
7280
7411
  export interface CreateWeldingIotConfig {
7281
7412
  }
7282
- export interface MeasurementFormSchemaDto {
7283
- id: string;
7284
- versionId: number;
7285
- partNumber?: string | null;
7286
- partRevision?: string | null;
7287
- partName?: string | null;
7288
- drawing?: string | null;
7289
- drawingRevision?: string | null;
7290
- drawingUrl?: string | null;
7291
- customerId?: string | null;
7292
- customerName?: string | null;
7293
- excludeFromCustomerDocumentation: boolean;
7294
- excludeDrawingFromCustomerDocumentation: boolean;
7295
- specification?: string | null;
7296
- isUsed: boolean;
7297
- status: MeasurementFormStatus;
7298
- source: MeasurementFormSource;
7299
- unitOfMeasure?: UnitOfMeasureDto;
7300
- dimensionSetting?: DimensionSettingDto;
7301
- generalTolerance?: GeneralToleranceDto;
7302
- markedDrawingUrl?: string | null;
7303
- sourceFileUrl?: string | null;
7304
- projectFileUrl?: string | null;
7413
+ export interface ImaMaterialChecksPageDto {
7414
+ items: ImaMaterialCheckLiteDto[];
7415
+ continuationToken?: string | null;
7416
+ }
7417
+ export interface ImaMaterialCheckLiteDto {
7418
+ materialCheckId: string;
7419
+ originalMaterialCertificate: FileDto;
7420
+ generatedMaterialCertificate?: FileDto | null;
7421
+ customer?: string | null;
7422
+ project?: string | null;
7423
+ workOrder?: string | null;
7424
+ certificateTypeId?: string | null;
7425
+ certificateTypeVersion?: number | null;
7426
+ certificateTypeName?: string | null;
7427
+ specificationId: string;
7428
+ specificationVersion: number;
7429
+ specificationName: string;
7430
+ purchaseOrder?: string | null;
7431
+ purchaseOrderLine?: string | null;
7432
+ purchaseOrderItem?: string | null;
7433
+ purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
7434
+ purchaseOrderLot?: string | null;
7435
+ status: ImaMaterialCheckStatus;
7436
+ created: Date;
7437
+ createdBy: string;
7438
+ createdById: string;
7305
7439
  updatedBy?: string | null;
7306
- updatedDate?: Date;
7307
- attachments: MeasurementFormSchemaAttachmentDto[];
7308
- groupedElements: MeasurementFormGroupedElementDto[];
7309
- extraSchemas: MeasurementFormLinkedSchemaDto[];
7440
+ updatedById?: string | null;
7310
7441
  }
7311
- export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
7312
- export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
7313
- export type UnitOfMeasureDto = "Millimeter" | "Inch";
7314
- export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
7315
- export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
7316
- export interface MeasurementFormSchemaAttachmentDto {
7317
- url: string;
7318
- title: string;
7442
+ export type ImaMaterialCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
7443
+ export interface ImaMaterialChecksPageRequestDto {
7444
+ pageSize?: number | null;
7445
+ orderBy?: ImaMaterialChecksOrderByColumn | null;
7446
+ searchTerm?: string | null;
7447
+ originalReportFilter?: string | null;
7448
+ generatedReportFilter?: string | null;
7449
+ customerFilter?: string | null;
7450
+ projectFilter?: string | null;
7451
+ purchaseOrderFilter?: string | null;
7452
+ workOrderFilter?: string | null;
7453
+ certificateTypeFilter?: string | null;
7454
+ lineFilter?: string | null;
7455
+ itemFilter?: string | null;
7456
+ heatFilter?: string | null;
7457
+ lotFilter?: string | null;
7458
+ dateFromFilter?: Date | null;
7459
+ dateToFilter?: Date | null;
7460
+ statusFilter: ImaMaterialCheckStatus[];
7461
+ continuationToken?: string | null;
7319
7462
  }
7320
- export interface MeasurementFormGroupedElementDto {
7321
- id: string;
7322
- balloonId?: string | null;
7323
- reference: number;
7324
- imageUrl?: string | null;
7325
- thumbnailUrl?: string | null;
7326
- section?: string | null;
7327
- pageNumber?: number | null;
7328
- sheetZone?: string | null;
7329
- places?: number | null;
7330
- nominal?: number | null;
7331
- nominalText?: string | null;
7332
- type?: string | null;
7333
- subType?: string | null;
7334
- unitOfMeasure?: string | null;
7335
- typeCharacter?: string | null;
7336
- plusTolerance?: number | null;
7337
- minusTolerance?: number | null;
7338
- upperLimit?: number | null;
7339
- lowerLimit?: number | null;
7340
- comments?: string | null;
7341
- updatedByUser?: string | null;
7342
- updatedDate?: Date | null;
7343
- createdByUser?: string | null;
7344
- createdDate?: Date;
7345
- frequency: MeasurementFrequency;
7346
- frequencyParameter?: number | null;
7347
- includeInCustomerDocumentation: boolean;
7348
- isDocumentedExternally: boolean;
7349
- balloonQuantity?: number | null;
7350
- referenceQuantity?: number | null;
7351
- plusToleranceText?: string | null;
7352
- minusToleranceText?: string | null;
7353
- coatingThickness?: number | null;
7354
- canCopy: boolean;
7355
- valueType?: MeasurementFormValueType;
7356
- bonusType?: BonusType;
7357
- lowerWarningThreshold?: number | null;
7358
- upperWarningThreshold?: number | null;
7359
- machiningDimension?: number | null;
7360
- nominalInch?: number | null;
7361
- isValid: boolean;
7362
- validationErrorMessage?: string | null;
7463
+ export type ImaMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
7464
+ export interface ImaMaterialCheckDto {
7465
+ materialCheckId: string;
7466
+ originalMaterialCertificate: FileDto;
7467
+ generatedMaterialCertificate?: FileDto | null;
7468
+ customer?: string | null;
7469
+ project?: string | null;
7470
+ workOrder?: string | null;
7471
+ certificateTypeId?: string | null;
7472
+ certificateTypeVersion?: number | null;
7473
+ certificateTypeName?: string | null;
7474
+ specificationId: string;
7475
+ specificationVersion: number;
7476
+ specificationName: string;
7477
+ purchaseOrder?: string | null;
7478
+ purchaseOrderLine?: string | null;
7479
+ purchaseOrderItem?: string | null;
7480
+ purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
7481
+ purchaseOrderLot?: string | null;
7482
+ status: ImaMaterialCheckStatus;
7483
+ created: Date;
7484
+ createdBy: string;
7485
+ createdById: string;
7486
+ updatedBy?: string | null;
7487
+ updatedById?: string | null;
7488
+ certificateTypeResults: ImaCertificateTypeResultsDto;
7489
+ specificationChemistry: ImaSpecificationChemistryResultsDto;
7490
+ specificationMechanical: ImaSpecificationMechanicalResultsDto;
7491
+ specificationFerrite: ImaSpecificationFerriteResultsDto;
7492
+ specificationHeat: ImaSpecificationHeatTreatmentResultsDto;
7493
+ }
7494
+ export interface ImaCertificateTypeResultsDto {
7495
+ manufacturer: ImaCertificateTypeManufacturerResultsDto;
7496
+ signature: ImaCertificateTypeSignatureResultsDto;
7497
+ thirdParty: ImaCertificateTypeThirdPartyResultsDto;
7498
+ certification: ImaCertificateTypeCertificationResultsDto;
7499
+ productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
7500
+ testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
7501
+ testResults: ImaCertificateTypeTestResultsResultsDto;
7502
+ documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
7503
+ }
7504
+ export interface ImaCertificateTypeManufacturerResultsDto {
7505
+ manufacturer?: ImaCertificateTypeResultLine | null;
7506
+ address?: ImaCertificateTypeResultLine | null;
7507
+ contact?: ImaCertificateTypeResultLine | null;
7508
+ }
7509
+ export interface ImaCertificateTypeResultLine {
7510
+ found?: boolean;
7511
+ readValue?: string | null;
7512
+ override?: ImaResultLineOverrideDto | null;
7363
7513
  }
7364
- export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
7365
- export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
7366
- export type BonusType = "None" | "Positive" | "PositiveAndNegative";
7367
- export interface MeasurementFormLinkedSchemaDto {
7368
- customerId?: string | null;
7369
- partNumber?: string | null;
7370
- partRevision?: string | null;
7371
- drawing: string;
7372
- drawingRevision?: string | null;
7373
- schemaId: string;
7374
- latestReleasedSchemaId: string;
7514
+ export interface ImaResultLineOverrideDto {
7515
+ approved: boolean;
7516
+ comment?: string | null;
7517
+ updated: Date;
7518
+ updatedBy: string;
7519
+ updatedById: string;
7375
7520
  }
7376
- export interface MeasurementFormDto {
7377
- id: string;
7378
- schemaId: string;
7379
- versionId: number;
7380
- customerId?: string | null;
7381
- customerName?: string | null;
7382
- partNumber?: string | null;
7383
- partRevision?: string | null;
7384
- partName?: string | null;
7385
- drawing: string;
7386
- drawingRevision?: string | null;
7387
- createdBy: string;
7388
- created: Date;
7389
- status: MeasurementFormStatus;
7390
- source: MeasurementFormSource;
7391
- extraSchemas: MeasurementFormLinkedSchemaDto[];
7521
+ export interface ImaCertificateTypeSignatureResultsDto {
7522
+ certifiedBy?: ImaCertificateTypeResultLine | null;
7523
+ position?: ImaCertificateTypeResultLine | null;
7524
+ signature?: ImaCertificateTypeResultLine | null;
7525
+ date?: ImaCertificateTypeResultLine | null;
7526
+ stamp?: ImaCertificateTypeResultLine | null;
7527
+ }
7528
+ export interface ImaCertificateTypeThirdPartyResultsDto {
7529
+ inspectionBody?: ImaCertificateTypeResultLine | null;
7530
+ inspectorName?: ImaCertificateTypeResultLine | null;
7531
+ position?: ImaCertificateTypeResultLine | null;
7532
+ verificationMethod?: ImaCertificateTypeResultLine | null;
7533
+ signature?: ImaCertificateTypeResultLine | null;
7534
+ date?: ImaCertificateTypeResultLine | null;
7535
+ stamp?: ImaCertificateTypeResultLine | null;
7536
+ }
7537
+ export interface ImaCertificateTypeCertificationResultsDto {
7538
+ certificateOfCompliance?: ImaCertificateTypeResultLine | null;
7539
+ inspectionCertificate?: ImaCertificateTypeResultLine | null;
7540
+ }
7541
+ export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
7542
+ productDescription?: ImaCertificateTypeResultLine | null;
7543
+ materialGrade?: ImaCertificateTypeResultLine | null;
7544
+ customer?: ImaCertificateTypeResultLine | null;
7545
+ customerOrderNumber?: ImaCertificateTypeResultLine | null;
7546
+ dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
7547
+ batchNumber?: ImaCertificateTypeResultLine | null;
7548
+ heatNumber?: ImaCertificateTypeResultLine | null;
7549
+ relatedStandards?: ImaCertificateTypeResultLine | null;
7550
+ }
7551
+ export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
7552
+ usedStandards?: ImaCertificateTypeResultLine | null;
7553
+ }
7554
+ export interface ImaCertificateTypeTestResultsResultsDto {
7555
+ mechanicalProperties?: ImaCertificateTypeResultLine | null;
7556
+ chemicalAnalysis?: ImaCertificateTypeResultLine | null;
7557
+ impactTests?: ImaCertificateTypeResultLine | null;
7558
+ corrosionTests?: ImaCertificateTypeResultLine | null;
7559
+ ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
7560
+ }
7561
+ export interface ImaCertificateTypeDocumentTypesResultsDto {
7562
+ heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
7563
+ ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
7564
+ liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
7565
+ testReport?: ImaCertificateTypeResultLine | null;
7566
+ dimensionalReport?: ImaCertificateTypeResultLine | null;
7567
+ dyePenetrantReport?: ImaCertificateTypeResultLine | null;
7568
+ visualReport?: ImaCertificateTypeResultLine | null;
7569
+ certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
7570
+ certificateOfTest?: ImaCertificateTypeResultLine | null;
7571
+ technicalReport?: ImaCertificateTypeResultLine | null;
7572
+ microExaminationReport?: ImaCertificateTypeResultLine | null;
7573
+ radiologicalReport?: ImaCertificateTypeResultLine | null;
7574
+ }
7575
+ export interface ImaSpecificationChemistryResultsDto {
7576
+ carbon?: ImaSpecificationResultLineDto | null;
7577
+ manganese?: ImaSpecificationResultLineDto | null;
7578
+ silicon?: ImaSpecificationResultLineDto | null;
7579
+ phosphorus?: ImaSpecificationResultLineDto | null;
7580
+ sulfur?: ImaSpecificationResultLineDto | null;
7581
+ chromium?: ImaSpecificationResultLineDto | null;
7582
+ nickel?: ImaSpecificationResultLineDto | null;
7583
+ molybdenum?: ImaSpecificationResultLineDto | null;
7584
+ copper?: ImaSpecificationResultLineDto | null;
7585
+ nitrogen?: ImaSpecificationResultLineDto | null;
7586
+ wolfram?: ImaSpecificationResultLineDto | null;
7587
+ iron?: ImaSpecificationResultLineDto | null;
7588
+ }
7589
+ export interface ImaSpecificationResultLineDto {
7590
+ specificationOperator?: string | null;
7591
+ specificationValue1?: number | null;
7592
+ specificationValue2?: number | null;
7593
+ specificationSymbol?: string | null;
7594
+ readValue?: string | null;
7595
+ status: ImaSpecificationResultLineStatus;
7596
+ override?: ImaResultLineOverrideDto | null;
7597
+ }
7598
+ export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
7599
+ export interface ImaSpecificationMechanicalResultsDto {
7600
+ yieldStrength?: ImaSpecificationResultLineDto | null;
7601
+ tensileStrength?: ImaSpecificationResultLineDto | null;
7602
+ elongation?: ImaSpecificationResultLineDto | null;
7603
+ reductionOfArea?: ImaSpecificationResultLineDto | null;
7604
+ impactEnergy?: ImaSpecificationResultLineDto | null;
7605
+ hardness?: ImaSpecificationResultLineDto | null;
7606
+ }
7607
+ export interface ImaSpecificationFerriteResultsDto {
7608
+ ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
7609
+ }
7610
+ export interface ImaSpecificationFerriteResultLineDto {
7611
+ specificationOperator?: string | null;
7612
+ specificationValue1?: string | null;
7613
+ specificationValue2?: string | null;
7614
+ specificationSymbol?: string | null;
7615
+ readValue?: string | null;
7616
+ status: ImaSpecificationResultLineStatus;
7617
+ override?: ImaResultLineOverrideDto | null;
7618
+ measurementMethod?: string | null;
7392
7619
  }
7393
- export interface CreateMeasurementFormSchema {
7394
- customerId?: string | null;
7395
- customerName?: string | null;
7396
- partNumber?: string | null;
7397
- partRevision?: string | null;
7398
- partName?: string | null;
7399
- drawing: string;
7400
- drawingRevision?: string | null;
7620
+ export interface ImaSpecificationHeatTreatmentResultsDto {
7621
+ heatTreatments: ImaSpecificationHeatTreatmentsResultLineDto[];
7401
7622
  }
7402
- export interface UpdateMeasurementFormSchemaRequest {
7403
- excludeFromCustomerDocumentation: boolean;
7404
- excludeDrawingFromCustomerDocumentation?: boolean | null;
7405
- specification?: string | null;
7623
+ export interface ImaSpecificationHeatTreatmentsResultLineDto {
7624
+ heatingMethod: ImaHeatingTreatmentMethod;
7625
+ specificationHeatingTreatmentTemperature?: number | null;
7626
+ specificationHeatingHoldingTime?: number | null;
7627
+ heatingTreatmentTemperature?: number | null;
7628
+ heatingHoldingTime?: number | null;
7629
+ specificationCoolingMethods?: ImaCoolingTreatmentMethod[] | null;
7630
+ specificationCoolingTreatmentTemperature?: number | null;
7631
+ specificationCoolingHoldingTime?: number | null;
7632
+ coolingMethod?: ImaCoolingTreatmentMethod | null;
7633
+ coolingTreatmentTemperature?: number | null;
7634
+ coolingHoldingTime?: number | null;
7635
+ status: ImaSpecificationResultLineStatus;
7636
+ override?: ImaResultLineOverrideDto | null;
7406
7637
  }
7407
- export interface CopyMeasurementFormSchema {
7408
- customerId?: string | null;
7409
- customerName?: string | null;
7410
- partNumber?: string | null;
7411
- partRevision?: string | null;
7412
- partName?: string | null;
7413
- drawing: string;
7414
- drawingRevision?: string | null;
7415
- includeFiles: boolean;
7416
- includeLinkedSchemas: boolean;
7417
- includeMeasurementForm: boolean;
7638
+ export type ImaHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
7639
+ export type ImaCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching" | "NotSet";
7640
+ export interface ProcessImaCheckRequestDto {
7641
+ files: UploadFileDto[];
7642
+ specificationId: string;
7643
+ specificationVersion: string;
7644
+ certificateTypeId?: string | null;
7645
+ certificateTypeVersion?: string | null;
7646
+ purchaseOrder?: string | null;
7418
7647
  }
7419
- export interface UpdateSchemaGroupedElementsRequest {
7420
- groupedElements: UpdateSchemaGroupedElementDto[];
7648
+ export interface ImaUpdateResultRequestDto {
7649
+ certificateId: string;
7650
+ project?: string | null;
7651
+ purchaseOrder?: string | null;
7652
+ workOrder?: string | null;
7653
+ certificateTypeSection: ImaUpdateCertificateTypeResultsDto;
7654
+ specificationChemistrySpecification: ImaUpdateSpecificationChemistryResultsDto;
7655
+ specificationMechanicalSpecification: ImaUpdateSpecificationMechanicalResultsDto;
7656
+ specificationFerriteSpecification: ImaUpdateSpecificationFerriteResultsDto;
7657
+ specificationHeatSpecification: ImaUpdateSpecificationHeatTreatmentResultsDto;
7658
+ }
7659
+ export interface ImaUpdateCertificateTypeResultsDto {
7660
+ manufacturer: ImaUpdateCertificateTypeManufacturerResultsDto;
7661
+ signature: ImaUpdateCertificateTypeSignatureResultsDto;
7662
+ thirdParty: ImaUpdateCertificateTypeThirdPartyResultsDto;
7663
+ certification: ImaUpdateCertificateTypeCertificationResultsDto;
7664
+ certificateTypeProductAndOrderInformation: ImaUpdateCertificateTypeProductAndOrderInformationResultsDto;
7665
+ testMethodsAndReferences: ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto;
7666
+ testResults: ImaUpdateCertificateTypeTestResultsResultsDto;
7667
+ documentTypes: ImaUpdateCertificateTypeDocumentTypesResultsDto;
7668
+ }
7669
+ export interface ImaUpdateCertificateTypeManufacturerResultsDto {
7670
+ manufacturer?: ImaUpdateCertificateTypeResultLine | null;
7671
+ address?: ImaUpdateCertificateTypeResultLine | null;
7672
+ contact?: ImaUpdateCertificateTypeResultLine | null;
7673
+ }
7674
+ export interface ImaUpdateCertificateTypeResultLine {
7675
+ approved?: boolean | null;
7676
+ comment?: string | null;
7421
7677
  }
7422
- export interface UpdateSchemaGroupedElementDto {
7423
- balloonId?: string | null;
7424
- reference: number;
7425
- frequency: MeasurementFrequency;
7426
- frequencyParameter?: number | null;
7427
- includeInCustomerDocumentation: boolean;
7428
- canCopy?: boolean | null;
7429
- isDocumentedExternally: boolean;
7430
- coatingThickness?: number | null;
7678
+ export interface ImaUpdateCertificateTypeSignatureResultsDto {
7679
+ certifiedBy?: ImaUpdateCertificateTypeResultLine | null;
7680
+ position?: ImaUpdateCertificateTypeResultLine | null;
7681
+ signature?: ImaUpdateCertificateTypeResultLine | null;
7682
+ date?: ImaUpdateCertificateTypeResultLine | null;
7683
+ stamp?: ImaUpdateCertificateTypeResultLine | null;
7684
+ }
7685
+ export interface ImaUpdateCertificateTypeThirdPartyResultsDto {
7686
+ inspectionBody?: ImaUpdateCertificateTypeResultLine | null;
7687
+ inspectorName?: ImaUpdateCertificateTypeResultLine | null;
7688
+ position?: ImaUpdateCertificateTypeResultLine | null;
7689
+ verificationMethod?: ImaUpdateCertificateTypeResultLine | null;
7690
+ signature?: ImaUpdateCertificateTypeResultLine | null;
7691
+ date?: ImaUpdateCertificateTypeResultLine | null;
7692
+ stamp?: ImaUpdateCertificateTypeResultLine | null;
7693
+ }
7694
+ export interface ImaUpdateCertificateTypeCertificationResultsDto {
7695
+ certificateOfCompliance?: ImaUpdateCertificateTypeResultLine | null;
7696
+ inspectionCertificate?: ImaUpdateCertificateTypeResultLine | null;
7697
+ }
7698
+ export interface ImaUpdateCertificateTypeProductAndOrderInformationResultsDto {
7699
+ productDescription?: ImaUpdateCertificateTypeResultLine | null;
7700
+ materialGrade?: ImaUpdateCertificateTypeResultLine | null;
7701
+ customer?: ImaUpdateCertificateTypeResultLine | null;
7702
+ customerOrderNumber?: ImaUpdateCertificateTypeResultLine | null;
7703
+ dimensionsOrWeight?: ImaUpdateCertificateTypeResultLine | null;
7704
+ batchNumber?: ImaUpdateCertificateTypeResultLine | null;
7705
+ heatNumber?: ImaUpdateCertificateTypeResultLine | null;
7706
+ relatedStandards?: ImaUpdateCertificateTypeResultLine | null;
7707
+ }
7708
+ export interface ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
7709
+ usedStandards?: ImaUpdateCertificateTypeResultLine | null;
7710
+ }
7711
+ export interface ImaUpdateCertificateTypeTestResultsResultsDto {
7712
+ mechanicalProperties?: ImaUpdateCertificateTypeResultLine | null;
7713
+ chemicalAnalysis?: ImaUpdateCertificateTypeResultLine | null;
7714
+ impactTests?: ImaUpdateCertificateTypeResultLine | null;
7715
+ corrosionTests?: ImaUpdateCertificateTypeResultLine | null;
7716
+ ferriteContentAndMicrostructure?: ImaUpdateCertificateTypeResultLine | null;
7717
+ }
7718
+ export interface ImaUpdateCertificateTypeDocumentTypesResultsDto {
7719
+ heatTreatmentCertificate?: ImaUpdateCertificateTypeResultLine | null;
7720
+ ultrasonicControlCertificate?: ImaUpdateCertificateTypeResultLine | null;
7721
+ liquidPenetrantCertificate?: ImaUpdateCertificateTypeResultLine | null;
7722
+ testReport?: ImaUpdateCertificateTypeResultLine | null;
7723
+ dimensionalReport?: ImaUpdateCertificateTypeResultLine | null;
7724
+ dyePenetrantReport?: ImaUpdateCertificateTypeResultLine | null;
7725
+ visualReport?: ImaUpdateCertificateTypeResultLine | null;
7726
+ certificateOfAnalyticalAndMechanicalTests?: ImaUpdateCertificateTypeResultLine | null;
7727
+ certificateOfTest?: ImaUpdateCertificateTypeResultLine | null;
7728
+ technicalReport?: ImaUpdateCertificateTypeResultLine | null;
7729
+ microExaminationReport?: ImaUpdateCertificateTypeResultLine | null;
7730
+ radiologicalReport?: ImaUpdateCertificateTypeResultLine | null;
7731
+ }
7732
+ export interface ImaUpdateSpecificationChemistryResultsDto {
7733
+ carbon?: ImaUpdateSpecificationResultLineDto | null;
7734
+ manganese?: ImaUpdateSpecificationResultLineDto | null;
7735
+ silicon?: ImaUpdateSpecificationResultLineDto | null;
7736
+ phosphorus?: ImaUpdateSpecificationResultLineDto | null;
7737
+ sulfur?: ImaUpdateSpecificationResultLineDto | null;
7738
+ chromium?: ImaUpdateSpecificationResultLineDto | null;
7739
+ nickel?: ImaUpdateSpecificationResultLineDto | null;
7740
+ molybdenum?: ImaUpdateSpecificationResultLineDto | null;
7741
+ copper?: ImaUpdateSpecificationResultLineDto | null;
7742
+ nitrogen?: ImaUpdateSpecificationResultLineDto | null;
7743
+ wolfram?: ImaUpdateSpecificationResultLineDto | null;
7744
+ iron?: ImaUpdateSpecificationResultLineDto | null;
7745
+ }
7746
+ export interface ImaUpdateSpecificationResultLineDto {
7747
+ approved?: boolean;
7748
+ comment?: string | null;
7431
7749
  }
7432
- export interface UpdateSchemaGroupedElementRowDto {
7433
- id?: string | null;
7434
- balloonId?: string | null;
7435
- oldReference: number;
7436
- newReference: number;
7437
- section?: string | null;
7438
- pageNumber?: number | null;
7439
- measurements?: number | null;
7440
- nominalText?: string | null;
7441
- type?: string | null;
7442
- subType?: string | null;
7443
- plusTolerance?: string | null;
7444
- minusTolerance?: string | null;
7445
- upperLimit?: string | null;
7446
- lowerLimit?: string | null;
7447
- coatingThickness?: number | null;
7448
- comments?: string | null;
7449
- frequency: MeasurementFrequency;
7450
- frequencyParameter?: number | null;
7451
- includeInCustomerDocumentation: boolean;
7452
- canCopy?: boolean | null;
7453
- isDocumentedExternally: boolean;
7750
+ export interface ImaUpdateSpecificationMechanicalResultsDto {
7751
+ yieldStrength?: ImaUpdateSpecificationResultLineDto | null;
7752
+ tensileStrength?: ImaUpdateSpecificationResultLineDto | null;
7753
+ elongation?: ImaUpdateSpecificationResultLineDto | null;
7754
+ reductionOfArea?: ImaUpdateSpecificationResultLineDto | null;
7755
+ impactEnergy?: ImaUpdateSpecificationResultLineDto | null;
7756
+ hardness?: ImaUpdateSpecificationResultLineDto | null;
7454
7757
  }
7455
- export interface DeleteSchemaGroupedElementRowsDto {
7456
- balloonIds?: string[];
7457
- references?: number[];
7758
+ export interface ImaUpdateSpecificationFerriteResultsDto {
7759
+ ferriteContent?: ImaUpdateSpecificationResultLineDto | null;
7458
7760
  }
7459
- export interface UploadMeasurementImageRequest {
7460
- uploadKey: string;
7461
- filename: string;
7462
- ballonId?: string | null;
7463
- reference: number;
7761
+ export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
7762
+ heatTreatmentOverrides: (ImaUpdateSpecificationResultLineDto | null)[];
7464
7763
  }
7465
- export interface UpdateSchemaSettingsRequest {
7466
- unitOfMeasure: UnitOfMeasureDto;
7467
- dimensionSetting: DimensionSettingDto;
7468
- generalTolerance: GeneralToleranceDto;
7764
+ export interface ImaCdfEntityReadBase {
7469
7765
  }
7470
- export interface UploadDrawingRequest {
7471
- uploadKey: string;
7472
- filename: string;
7766
+ export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
7767
+ specificationId: string;
7768
+ version: number;
7769
+ name: string;
7770
+ number: string;
7771
+ revision: string;
7772
+ date: Date;
7773
+ status: ImaSpecificationStatus;
7774
+ summary?: string | null;
7775
+ relatedStandards: string[];
7776
+ created: Date;
7777
+ createdBy: string;
7778
+ createdById: string;
7779
+ updatedBy: string;
7780
+ updatedById: string;
7473
7781
  }
7474
- export interface UploadRequest {
7475
- uploadKey: string;
7476
- filename: string;
7782
+ export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7783
+ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
7784
+ specificationId: string;
7785
+ version: number;
7786
+ allVersions: ImaSpecificationVersionDto[];
7787
+ name: string;
7788
+ number: string;
7789
+ revision: string;
7790
+ date: Date;
7791
+ status: ImaSpecificationStatus;
7792
+ summary?: string | null;
7793
+ relatedStandards: string[];
7794
+ created: Date;
7795
+ createdBy: string;
7796
+ createdById: string;
7797
+ updatedBy: string;
7798
+ updatedById: string;
7799
+ updated: Date;
7800
+ chemistrySpecification: ImaChemistrySpecificationDto;
7801
+ mechanicalSpecification: ImaMechanicalSpecificationDto;
7802
+ ferriteSpecification: ImaFerriteSpecificationDto;
7803
+ heatSpecification: ImaHeatTreatmentSpecificationDto;
7477
7804
  }
7478
- export interface MeasurementFormImportStatusDto {
7479
- progress: number;
7480
- totalElements: number;
7481
- errorMessage: string;
7482
- timestamp: Date;
7805
+ export interface ImaSpecificationVersionDto {
7806
+ version?: number;
7807
+ status?: ImaSpecificationStatus;
7808
+ }
7809
+ export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
7810
+ carbon?: ImaSpecificationLineDto | null;
7811
+ manganese?: ImaSpecificationLineDto | null;
7812
+ silicon?: ImaSpecificationLineDto | null;
7813
+ phosphorus?: ImaSpecificationLineDto | null;
7814
+ sulfur?: ImaSpecificationLineDto | null;
7815
+ chromium?: ImaSpecificationLineDto | null;
7816
+ nickel?: ImaSpecificationLineDto | null;
7817
+ molybdenum?: ImaSpecificationLineDto | null;
7818
+ copper?: ImaSpecificationLineDto | null;
7819
+ nitrogen?: ImaSpecificationLineDto | null;
7820
+ wolfram?: ImaSpecificationLineDto | null;
7821
+ iron?: ImaSpecificationLineDto | null;
7822
+ }
7823
+ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
7824
+ operator: ImaSpecificationOperator;
7825
+ value1: number;
7826
+ value2?: number | null;
7827
+ symbol: ImaSpecificationSymbol;
7828
+ }
7829
+ export type ImaSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
7830
+ export type ImaSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
7831
+ export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
7832
+ yieldStrength?: ImaSpecificationLineDto | null;
7833
+ tensileStrength?: ImaSpecificationLineDto | null;
7834
+ elongation?: ImaSpecificationLineDto | null;
7835
+ reductionOfArea?: ImaSpecificationLineDto | null;
7836
+ impactEnergy?: ImaSpecificationLineDto | null;
7837
+ hardness?: ImaSpecificationLineDto | null;
7838
+ }
7839
+ export interface ImaFerriteSpecificationDto extends ImaCdfEntityReadBase {
7840
+ ferriteContent?: ImaSpecificationLineDto | null;
7841
+ }
7842
+ export interface ImaHeatTreatmentSpecificationDto {
7843
+ heatTreatments: ImaHeatTreatmentsSpecificationDto[];
7844
+ }
7845
+ export interface ImaHeatTreatmentsSpecificationDto {
7846
+ heatingMethod: ImaHeatingTreatmentMethod;
7847
+ heatingTreatmentTemperature?: number | null;
7848
+ heatingHoldingTime?: number | null;
7849
+ coolingMethods?: ImaCoolingTreatmentMethod[] | null;
7850
+ coolingTreatmentTemperature?: number | null;
7851
+ coolingHoldingTime?: number | null;
7483
7852
  }
7484
- export interface PagedResultOfMeasurementFormListDto {
7485
- results: MeasurementFormListDto[];
7486
- continuationToken?: string | null;
7853
+ export interface CreateImaSpecificationDto {
7854
+ specificationName: string;
7855
+ specificationNumber: string;
7856
+ revision: string;
7857
+ date: Date;
7858
+ specificationFile?: UploadFileDto | null;
7487
7859
  }
7488
- export interface MeasurementFormListDto {
7489
- id: string;
7490
- schemaId: string;
7491
- versionId: number;
7492
- customerId?: string | null;
7493
- customerName?: string | null;
7494
- partNumber?: string | null;
7495
- partRevision?: string | null;
7496
- partName?: string | null;
7497
- drawing: string;
7498
- drawingRevision?: string | null;
7860
+ export interface ImaUpdateSpecificationDto {
7861
+ name?: string | null;
7862
+ number?: string | null;
7863
+ status?: ImaSpecificationStatusUpdate | null;
7864
+ summary?: string | null;
7865
+ relatedStandards?: string[] | null;
7866
+ chemistrySpecification?: ImaChemistrySpecificationDto | null;
7867
+ mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
7868
+ ferriteSpecification?: ImaFerriteSpecificationDto | null;
7869
+ heatSpecification?: ImaHeatTreatmentSpecificationDto | null;
7870
+ }
7871
+ export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
7872
+ export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
7873
+ certificateTypeId: string;
7874
+ version: number;
7875
+ name: string;
7876
+ revision: string;
7877
+ status: ImaCertificateTypeStatus;
7878
+ description?: string | null;
7879
+ isStandardCertificateType: boolean;
7880
+ created: Date;
7499
7881
  createdBy: string;
7882
+ createdById: string;
7883
+ updatedBy?: string | null;
7884
+ updatedById?: string | null;
7885
+ updated: Date;
7886
+ }
7887
+ export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7888
+ export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
7889
+ certificateTypeId: string;
7890
+ version: number;
7891
+ allVersions: ImaCertificateTypeVersionDto[];
7892
+ name: string;
7893
+ revision: string;
7894
+ status: ImaCertificateTypeStatus;
7895
+ description?: string | null;
7896
+ isStandardCertificateType: boolean;
7500
7897
  created: Date;
7501
- status: MeasurementFormStatus;
7502
- source: MeasurementFormSource;
7898
+ createdBy: string;
7899
+ createdById: string;
7900
+ updatedBy?: string | null;
7901
+ updatedById?: string | null;
7902
+ updated: Date;
7903
+ requirements: ImaCertificateTypeRequirementsDto;
7503
7904
  }
7504
- export interface ListLinkableMeasurementFormSchemasRequest {
7505
- schemaId: string;
7506
- pageSize?: number | null;
7507
- filter?: string | null;
7508
- continuationToken?: string | null;
7905
+ export interface ImaCertificateTypeVersionDto {
7906
+ version?: number;
7907
+ status?: ImaCertificateTypeStatus;
7908
+ }
7909
+ export interface ImaCertificateTypeRequirementsDto {
7910
+ manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
7911
+ signature: ImaCertificateTypeSignatureRequirementsDto;
7912
+ thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
7913
+ certification: ImaCertificateTypeCertificationRequirementsDto;
7914
+ productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
7915
+ testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
7916
+ testResults: ImaCertificateTypeTestResultsRequirementsDto;
7917
+ documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
7918
+ }
7919
+ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
7920
+ manufacturer?: boolean;
7921
+ address?: boolean;
7922
+ contact?: boolean;
7509
7923
  }
7510
- export interface CreateMeasurementFormSchemaLinkRequest {
7511
- linkSchemaId: string;
7924
+ export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
7925
+ certifiedBy?: boolean;
7926
+ position?: boolean;
7927
+ signature?: boolean;
7928
+ date?: boolean;
7929
+ stamp?: boolean;
7512
7930
  }
7513
- export interface InspectCompanySettingsDto {
7514
- convertInchToMm: boolean;
7515
- convertMicroInchToMicroMeter: boolean;
7516
- validateMeasuringTools: boolean;
7517
- validateMeasuringToolsForSuppliers: boolean;
7518
- generateSchemaRequirements: boolean;
7519
- generateSchemaInstances: boolean;
7520
- autoCompleteSchemaInstances: boolean;
7521
- autoApproveSchemaInstances: boolean;
7522
- generateReportForApprovedInstances: boolean;
7523
- includeMeasuringToolsInReportAsDefault: boolean;
7524
- requireCustomerOnWorkOrders: boolean;
7525
- allowSchemaUpdates: boolean;
7526
- allowCreateInstances: boolean;
7527
- resourceTypesBlockingAutoWorkflow?: string[] | null;
7931
+ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
7932
+ inspectionBody?: boolean;
7933
+ inspectorName?: boolean;
7934
+ position?: boolean;
7935
+ verificationMethod?: boolean;
7936
+ signature?: boolean;
7937
+ date?: boolean;
7938
+ stamp?: boolean;
7528
7939
  }
7529
- export interface UpdateMeasurementFormSettings {
7530
- convertInchToMm: boolean;
7531
- convertMicroInchToMicroMeter: boolean;
7532
- validateMeasuringTools: boolean;
7533
- validateMeasuringToolsForSuppliers: boolean;
7534
- generateSchemaRequirements: boolean;
7535
- generateSchemaInstances: boolean;
7536
- autoCompleteSchemaInstances: boolean;
7537
- autoApproveSchemaInstances: boolean;
7538
- generateReportForApprovedInstances: boolean;
7539
- includeMeasuringToolsInReportAsDefault: boolean;
7540
- requireCustomerOnWorkOrders: boolean;
7541
- allowSchemaUpdates: boolean;
7542
- allowCreateInstances: boolean;
7543
- resourceTypesBlockingAutoWorkflow: string[];
7940
+ export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
7941
+ certificateOfCompliance?: boolean;
7942
+ inspectionCertificate?: boolean;
7544
7943
  }
7545
- export interface MeasurementFormCustomerSettingsDto {
7546
- customerId: string;
7547
- customerName?: string | null;
7548
- includeToolsInReport: boolean;
7549
- validationRuleId?: string | null;
7550
- requireCalibratedTools: boolean;
7551
- allowEmptyToolListInValue: boolean;
7944
+ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
7945
+ productDescription?: boolean;
7946
+ materialGrade?: boolean;
7947
+ customer?: boolean;
7948
+ customerOrderNumber?: boolean;
7949
+ dimensionsOrWeight?: boolean;
7950
+ batchNumber?: boolean;
7951
+ heatNumber?: boolean;
7952
+ relatedStandards?: boolean;
7552
7953
  }
7553
- export interface UpdateMeasurementFormCustomerSettings {
7554
- customerId: string;
7555
- customerName: string;
7556
- includeToolsInReport: boolean;
7557
- validationRuleId?: string | null;
7558
- requireCalibratedTools: boolean;
7559
- allowEmptyToolListInValue: boolean;
7954
+ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
7955
+ usedStandards?: boolean;
7560
7956
  }
7561
- export interface MeasurementFormMappingDto {
7562
- id: string;
7563
- measurementSchemaSourceId: string;
7564
- measurementSchemaTargetId: string;
7565
- sourceBalloons?: MeasurementFormReferenceMappingDto[];
7566
- targetBalloons?: MeasurementFormReferenceMappingDto[];
7567
- sourceReferences: MeasurementFormReferenceMappingDto[];
7568
- targetReferences: MeasurementFormReferenceMappingDto[];
7957
+ export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
7958
+ mechanicalProperties?: boolean;
7959
+ chemicalAnalysis?: boolean;
7960
+ impactTests?: boolean;
7961
+ corrosionTests?: boolean;
7962
+ ferriteContentAndMicrostructure?: boolean;
7569
7963
  }
7570
- export interface MeasurementFormReferenceMappingDto {
7571
- balloon?: MeasurementFormGroupedElementDto | null;
7572
- mappedBalloonId?: string | null;
7573
- reference: MeasurementFormGroupedElementDto;
7574
- mappedReference?: number;
7575
- mappingScorePercent?: number | null;
7964
+ export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
7965
+ heatTreatmentCertificate?: boolean;
7966
+ ultrasonicControlCertificate?: boolean;
7967
+ liquidPenetrantCertificate?: boolean;
7968
+ testReport?: boolean;
7969
+ dimensionalReport?: boolean;
7970
+ dyePenetrantReport?: boolean;
7971
+ visualReport?: boolean;
7972
+ certificateOfAnalyticalAndMechanicalTests?: boolean;
7973
+ certificateOfTest?: boolean;
7974
+ technicalReport?: boolean;
7975
+ microExaminationReport?: boolean;
7976
+ radiologicalReport?: boolean;
7576
7977
  }
7577
- export interface CreateMeasurementFormMapping {
7578
- sourceId: string;
7579
- targetId: string;
7978
+ export interface ImaCreateImaCertificateTypeRequestDto {
7979
+ name: string;
7980
+ revision: string;
7981
+ description?: string | null;
7580
7982
  }
7581
- export interface SetMeasurementFormReferencesMappingRequest {
7582
- mappings: MeasurementFormReferenceMappingRequestDto[];
7983
+ export interface ImaUpdateImaCertificateTypeRequestDto {
7984
+ name?: string | null;
7985
+ revision?: string | null;
7986
+ status?: ImaCertificateTypeStatus | null;
7987
+ description?: string | null;
7988
+ requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
7989
+ }
7990
+ export interface ImaCertificateTypeRequirementsUpdateDto {
7991
+ manufacturer?: ImaCertificateTypeManufacturerRequirementsUpdateDto | null;
7992
+ signature?: ImaCertificateTypeSignatureRequirementsUpdateDto | null;
7993
+ thirdParty?: ImaCertificateTypeThirdPartyRequirementsUpdateDto | null;
7994
+ certification?: ImaCertificateTypeCertificationRequirementsUpdateDto | null;
7995
+ productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
7996
+ testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
7997
+ testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
7998
+ documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
7999
+ }
8000
+ export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
8001
+ manufacturer?: boolean | null;
8002
+ address?: boolean | null;
8003
+ contact?: boolean | null;
7583
8004
  }
7584
- export interface MeasurementFormReferenceMappingRequestDto {
7585
- sourceBalloonId?: string | null;
7586
- targetBalloonId?: string | null;
7587
- sourceReference: number;
7588
- targetReference: number;
7589
- mappingScorePercent?: number | null;
8005
+ export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
8006
+ certifiedBy?: boolean | null;
8007
+ position?: boolean | null;
8008
+ signature?: boolean | null;
8009
+ date?: boolean | null;
8010
+ stamp?: boolean | null;
7590
8011
  }
7591
- export interface MeasurementFormMappingSuggestionDto {
7592
- measurementSchemaSourceId: string;
7593
- measurementSchemaTargetId: string;
7594
- sourceBalloons?: MeasurementFormReferenceMappingDto[];
7595
- targetBalloons?: MeasurementFormReferenceMappingDto[];
7596
- sourceReferences: MeasurementFormReferenceMappingDto[];
7597
- targetReferences: MeasurementFormReferenceMappingDto[];
8012
+ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
8013
+ inspectionBody?: boolean | null;
8014
+ inspectorName?: boolean | null;
8015
+ position?: boolean | null;
8016
+ verificationMethod?: boolean | null;
8017
+ signature?: boolean | null;
8018
+ date?: boolean | null;
8019
+ stamp?: boolean | null;
7598
8020
  }
7599
- export interface PagedResultOfMeasurementFormNeedDto {
7600
- results: MeasurementFormNeedDto[];
7601
- continuationToken?: string | null;
8021
+ export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
8022
+ certificateOfCompliance?: boolean | null;
8023
+ inspectionCertificate?: boolean | null;
7602
8024
  }
7603
- export interface MeasurementFormNeedDto {
8025
+ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
8026
+ productDescription?: boolean | null;
8027
+ materialGrade?: boolean | null;
8028
+ customer?: boolean | null;
8029
+ customerOrderNumber?: boolean | null;
8030
+ dimensionsOrWeight?: boolean | null;
8031
+ batchNumber?: boolean | null;
8032
+ heatNumber?: boolean | null;
8033
+ relatedStandards?: boolean | null;
8034
+ }
8035
+ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
8036
+ usedStandards?: boolean | null;
8037
+ }
8038
+ export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
8039
+ mechanicalProperties?: boolean | null;
8040
+ chemicalAnalysis?: boolean | null;
8041
+ impactTests?: boolean | null;
8042
+ corrosionTests?: boolean | null;
8043
+ ferriteContentAndMicrostructure?: boolean | null;
8044
+ }
8045
+ export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
8046
+ heatTreatmentCertificate?: boolean | null;
8047
+ ultrasonicControlCertificate?: boolean | null;
8048
+ liquidPenetrantCertificate?: boolean | null;
8049
+ testReport?: boolean | null;
8050
+ dimensionalReport?: boolean | null;
8051
+ dyePenetrantReport?: boolean | null;
8052
+ visualReport?: boolean | null;
8053
+ certificateOfAnalyticalAndMechanicalTests?: boolean | null;
8054
+ certificateOfTest?: boolean | null;
8055
+ technicalReport?: boolean | null;
8056
+ microExaminationReport?: boolean | null;
8057
+ radiologicalReport?: boolean | null;
8058
+ }
8059
+ export interface MeasurementFormSchemaDto {
7604
8060
  id: string;
7605
- requirementDate: Date;
7606
- customerId?: string | null;
7607
- customerName?: string | null;
8061
+ versionId: number;
7608
8062
  partNumber?: string | null;
7609
8063
  partRevision?: string | null;
7610
8064
  partName?: string | null;
7611
8065
  drawing?: string | null;
7612
8066
  drawingRevision?: string | null;
7613
- workorder?: string | null;
7614
- operation?: number | null;
7615
- resource?: string | null;
7616
- resourceId?: string | null;
7617
- resourceName?: string | null;
7618
- assignedTo?: UserDto | null;
7619
- isGeneratedRequirement: boolean;
7620
- measurementSchemaId?: string | null;
7621
8067
  drawingUrl?: string | null;
7622
- }
7623
- export interface ListMeasurementFormNeedsRequest {
7624
- pageSize?: number | null;
7625
8068
  customerId?: string | null;
7626
8069
  customerName?: string | null;
7627
- partName?: string | null;
8070
+ excludeFromCustomerDocumentation: boolean;
8071
+ excludeDrawingFromCustomerDocumentation: boolean;
8072
+ specification?: string | null;
8073
+ isUsed: boolean;
8074
+ status: MeasurementFormStatus;
8075
+ source: MeasurementFormSource;
8076
+ unitOfMeasure?: UnitOfMeasureDto;
8077
+ dimensionSetting?: DimensionSettingDto;
8078
+ generalTolerance?: GeneralToleranceDto;
8079
+ markedDrawingUrl?: string | null;
8080
+ sourceFileUrl?: string | null;
8081
+ projectFileUrl?: string | null;
8082
+ updatedBy?: string | null;
8083
+ updatedDate?: Date;
8084
+ attachments: MeasurementFormSchemaAttachmentDto[];
8085
+ groupedElements: MeasurementFormGroupedElementDto[];
8086
+ extraSchemas: MeasurementFormLinkedSchemaDto[];
8087
+ }
8088
+ export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
8089
+ export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
8090
+ export type UnitOfMeasureDto = "Millimeter" | "Inch";
8091
+ export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
8092
+ export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
8093
+ export interface MeasurementFormSchemaAttachmentDto {
8094
+ url: string;
8095
+ title: string;
8096
+ }
8097
+ export interface MeasurementFormGroupedElementDto {
8098
+ id: string;
8099
+ balloonId?: string | null;
8100
+ reference: number;
8101
+ imageUrl?: string | null;
8102
+ thumbnailUrl?: string | null;
8103
+ section?: string | null;
8104
+ pageNumber?: number | null;
8105
+ sheetZone?: string | null;
8106
+ places?: number | null;
8107
+ nominal?: number | null;
8108
+ nominalText?: string | null;
8109
+ type?: string | null;
8110
+ subType?: string | null;
8111
+ unitOfMeasure?: string | null;
8112
+ typeCharacter?: string | null;
8113
+ plusTolerance?: number | null;
8114
+ minusTolerance?: number | null;
8115
+ upperLimit?: number | null;
8116
+ lowerLimit?: number | null;
8117
+ comments?: string | null;
8118
+ updatedByUser?: string | null;
8119
+ updatedDate?: Date | null;
8120
+ createdByUser?: string | null;
8121
+ createdDate?: Date;
8122
+ frequency: MeasurementFrequency;
8123
+ frequencyParameter?: number | null;
8124
+ includeInCustomerDocumentation: boolean;
8125
+ isDocumentedExternally: boolean;
8126
+ balloonQuantity?: number | null;
8127
+ referenceQuantity?: number | null;
8128
+ plusToleranceText?: string | null;
8129
+ minusToleranceText?: string | null;
8130
+ coatingThickness?: number | null;
8131
+ canCopy: boolean;
8132
+ valueType?: MeasurementFormValueType;
8133
+ bonusType?: BonusType;
8134
+ lowerWarningThreshold?: number | null;
8135
+ upperWarningThreshold?: number | null;
8136
+ machiningDimension?: number | null;
8137
+ nominalInch?: number | null;
8138
+ isValid: boolean;
8139
+ validationErrorMessage?: string | null;
8140
+ }
8141
+ export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
8142
+ export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
8143
+ export type BonusType = "None" | "Positive" | "PositiveAndNegative";
8144
+ export interface MeasurementFormLinkedSchemaDto {
8145
+ customerId?: string | null;
7628
8146
  partNumber?: string | null;
7629
8147
  partRevision?: string | null;
7630
- drawing?: string | null;
8148
+ drawing: string;
7631
8149
  drawingRevision?: string | null;
7632
- filter?: string | null;
7633
- continuationToken?: string | null;
7634
- onlyWithoutDrawingUrl?: boolean | null;
7635
- }
7636
- export interface SetMeasurementFormNeedUserRequest {
7637
- userId: string;
8150
+ schemaId: string;
8151
+ latestReleasedSchemaId: string;
7638
8152
  }
7639
- export interface MeasurementFormSchemaNotNeededDto {
8153
+ export interface MeasurementFormDto {
7640
8154
  id: string;
8155
+ schemaId: string;
8156
+ versionId: number;
7641
8157
  customerId?: string | null;
7642
8158
  customerName?: string | null;
7643
8159
  partNumber?: string | null;
7644
8160
  partRevision?: string | null;
7645
- drawing?: string | null;
8161
+ partName?: string | null;
8162
+ drawing: string;
7646
8163
  drawingRevision?: string | null;
7647
- comment?: string | null;
7648
- }
7649
- export interface SetMeasurementFormNeedAsNotNeededRequest {
7650
- comment?: string | null;
7651
- }
7652
- export interface PagedResultOfMeasurementFormSchemaNotNeededDto {
7653
- results: MeasurementFormSchemaNotNeededDto[];
7654
- continuationToken?: string | null;
8164
+ createdBy: string;
8165
+ created: Date;
8166
+ status: MeasurementFormStatus;
8167
+ source: MeasurementFormSource;
8168
+ extraSchemas: MeasurementFormLinkedSchemaDto[];
7655
8169
  }
7656
- export interface ListMeasurementFormSchemasNotNeededRequest {
7657
- pageSize?: number | null;
8170
+ export interface CreateMeasurementFormSchema {
7658
8171
  customerId?: string | null;
7659
8172
  customerName?: string | null;
7660
8173
  partNumber?: string | null;
7661
- partName?: string | null;
7662
8174
  partRevision?: string | null;
7663
- drawing?: string | null;
8175
+ partName?: string | null;
8176
+ drawing: string;
7664
8177
  drawingRevision?: string | null;
7665
- filter?: string | null;
7666
- continuationToken?: string | null;
7667
8178
  }
7668
- export interface MeasurementFormResourceTypeGeneratorDto {
7669
- resourceType: string;
8179
+ export interface UpdateMeasurementFormSchemaRequest {
8180
+ excludeFromCustomerDocumentation: boolean;
8181
+ excludeDrawingFromCustomerDocumentation?: boolean | null;
8182
+ specification?: string | null;
7670
8183
  }
7671
- export interface AddResourceTypeForNeedsGenerator {
7672
- resourceType: string;
8184
+ export interface CopyMeasurementFormSchema {
8185
+ customerId?: string | null;
8186
+ customerName?: string | null;
8187
+ partNumber?: string | null;
8188
+ partRevision?: string | null;
8189
+ partName?: string | null;
8190
+ drawing: string;
8191
+ drawingRevision?: string | null;
8192
+ includeFiles: boolean;
8193
+ includeLinkedSchemas: boolean;
8194
+ includeMeasurementForm: boolean;
7673
8195
  }
7674
- export interface PagedResultOfSchemaFeedbackDto {
7675
- results: SchemaFeedbackDto[];
8196
+ export interface UpdateSchemaGroupedElementsRequest {
8197
+ groupedElements: UpdateSchemaGroupedElementDto[];
8198
+ }
8199
+ export interface UpdateSchemaGroupedElementDto {
8200
+ balloonId?: string | null;
8201
+ reference: number;
8202
+ frequency: MeasurementFrequency;
8203
+ frequencyParameter?: number | null;
8204
+ includeInCustomerDocumentation: boolean;
8205
+ canCopy?: boolean | null;
8206
+ isDocumentedExternally: boolean;
8207
+ coatingThickness?: number | null;
8208
+ }
8209
+ export interface UpdateSchemaGroupedElementRowDto {
8210
+ id?: string | null;
8211
+ balloonId?: string | null;
8212
+ oldReference: number;
8213
+ newReference: number;
8214
+ section?: string | null;
8215
+ pageNumber?: number | null;
8216
+ measurements?: number | null;
8217
+ nominalText?: string | null;
8218
+ type?: string | null;
8219
+ subType?: string | null;
8220
+ plusTolerance?: string | null;
8221
+ minusTolerance?: string | null;
8222
+ upperLimit?: string | null;
8223
+ lowerLimit?: string | null;
8224
+ coatingThickness?: number | null;
8225
+ comments?: string | null;
8226
+ frequency: MeasurementFrequency;
8227
+ frequencyParameter?: number | null;
8228
+ includeInCustomerDocumentation: boolean;
8229
+ canCopy?: boolean | null;
8230
+ isDocumentedExternally: boolean;
8231
+ }
8232
+ export interface DeleteSchemaGroupedElementRowsDto {
8233
+ balloonIds?: string[];
8234
+ references?: number[];
8235
+ }
8236
+ export interface UploadMeasurementImageRequest {
8237
+ uploadKey: string;
8238
+ filename: string;
8239
+ ballonId?: string | null;
8240
+ reference: number;
8241
+ }
8242
+ export interface UpdateSchemaSettingsRequest {
8243
+ unitOfMeasure: UnitOfMeasureDto;
8244
+ dimensionSetting: DimensionSettingDto;
8245
+ generalTolerance: GeneralToleranceDto;
8246
+ }
8247
+ export interface UploadDrawingRequest {
8248
+ uploadKey: string;
8249
+ filename: string;
8250
+ }
8251
+ export interface UploadRequest {
8252
+ uploadKey: string;
8253
+ filename: string;
8254
+ }
8255
+ export interface MeasurementFormImportStatusDto {
8256
+ progress: number;
8257
+ totalElements: number;
8258
+ errorMessage: string;
8259
+ timestamp: Date;
8260
+ }
8261
+ export interface PagedResultOfMeasurementFormListDto {
8262
+ results: MeasurementFormListDto[];
7676
8263
  continuationToken?: string | null;
7677
8264
  }
7678
- export interface SchemaFeedbackDto {
8265
+ export interface MeasurementFormListDto {
7679
8266
  id: string;
7680
- workOrder: string;
7681
8267
  schemaId: string;
7682
- versionId?: number;
7683
- schemaInstanceId: string;
7684
- balloonId?: string | null;
7685
- reference?: number;
7686
- feedback: string;
7687
- from: string;
7688
- created: Date;
7689
- assignedTo?: UserDto | null;
7690
- status?: SchemaFeedbackStatus;
7691
- latestSchemaDefinitionId?: string | null;
8268
+ versionId: number;
8269
+ customerId?: string | null;
8270
+ customerName?: string | null;
7692
8271
  partNumber?: string | null;
7693
8272
  partRevision?: string | null;
7694
8273
  partName?: string | null;
7695
- drawing?: string | null;
8274
+ drawing: string;
7696
8275
  drawingRevision?: string | null;
8276
+ createdBy: string;
8277
+ created: Date;
8278
+ status: MeasurementFormStatus;
8279
+ source: MeasurementFormSource;
7697
8280
  }
7698
- export type SchemaFeedbackStatus = "New" | "InProgress";
7699
- export interface ListMeasurementFormInstanceSchemaFeedbackRequest {
8281
+ export interface ListLinkableMeasurementFormSchemasRequest {
8282
+ schemaId: string;
7700
8283
  pageSize?: number | null;
7701
- search?: string | null;
8284
+ filter?: string | null;
7702
8285
  continuationToken?: string | null;
7703
8286
  }
7704
- export interface SetMeasurementFormSchemaFeedbackUserRequest {
7705
- userId?: string | null;
8287
+ export interface CreateMeasurementFormSchemaLinkRequest {
8288
+ linkSchemaId: string;
7706
8289
  }
7707
- export interface ListMeasurementFormSchemasWithHistoryRequest {
7708
- pageSize?: number | null;
8290
+ export interface InspectCompanySettingsDto {
8291
+ convertInchToMm: boolean;
8292
+ convertMicroInchToMicroMeter: boolean;
8293
+ validateMeasuringTools: boolean;
8294
+ validateMeasuringToolsForSuppliers: boolean;
8295
+ generateSchemaRequirements: boolean;
8296
+ generateSchemaInstances: boolean;
8297
+ autoCompleteSchemaInstances: boolean;
8298
+ autoApproveSchemaInstances: boolean;
8299
+ generateReportForApprovedInstances: boolean;
8300
+ includeMeasuringToolsInReportAsDefault: boolean;
8301
+ requireCustomerOnWorkOrders: boolean;
8302
+ allowSchemaUpdates: boolean;
8303
+ allowCreateInstances: boolean;
8304
+ resourceTypesBlockingAutoWorkflow?: string[] | null;
8305
+ }
8306
+ export interface UpdateMeasurementFormSettings {
8307
+ convertInchToMm: boolean;
8308
+ convertMicroInchToMicroMeter: boolean;
8309
+ validateMeasuringTools: boolean;
8310
+ validateMeasuringToolsForSuppliers: boolean;
8311
+ generateSchemaRequirements: boolean;
8312
+ generateSchemaInstances: boolean;
8313
+ autoCompleteSchemaInstances: boolean;
8314
+ autoApproveSchemaInstances: boolean;
8315
+ generateReportForApprovedInstances: boolean;
8316
+ includeMeasuringToolsInReportAsDefault: boolean;
8317
+ requireCustomerOnWorkOrders: boolean;
8318
+ allowSchemaUpdates: boolean;
8319
+ allowCreateInstances: boolean;
8320
+ resourceTypesBlockingAutoWorkflow: string[];
8321
+ }
8322
+ export interface MeasurementFormCustomerSettingsDto {
8323
+ customerId: string;
8324
+ customerName?: string | null;
8325
+ includeToolsInReport: boolean;
8326
+ validationRuleId?: string | null;
8327
+ requireCalibratedTools: boolean;
8328
+ allowEmptyToolListInValue: boolean;
8329
+ }
8330
+ export interface UpdateMeasurementFormCustomerSettings {
8331
+ customerId: string;
8332
+ customerName: string;
8333
+ includeToolsInReport: boolean;
8334
+ validationRuleId?: string | null;
8335
+ requireCalibratedTools: boolean;
8336
+ allowEmptyToolListInValue: boolean;
8337
+ }
8338
+ export interface MeasurementFormMappingDto {
8339
+ id: string;
8340
+ measurementSchemaSourceId: string;
8341
+ measurementSchemaTargetId: string;
8342
+ sourceBalloons?: MeasurementFormReferenceMappingDto[];
8343
+ targetBalloons?: MeasurementFormReferenceMappingDto[];
8344
+ sourceReferences: MeasurementFormReferenceMappingDto[];
8345
+ targetReferences: MeasurementFormReferenceMappingDto[];
8346
+ }
8347
+ export interface MeasurementFormReferenceMappingDto {
8348
+ balloon?: MeasurementFormGroupedElementDto | null;
8349
+ mappedBalloonId?: string | null;
8350
+ reference: MeasurementFormGroupedElementDto;
8351
+ mappedReference?: number;
8352
+ mappingScorePercent?: number | null;
8353
+ }
8354
+ export interface CreateMeasurementFormMapping {
8355
+ sourceId: string;
8356
+ targetId: string;
8357
+ }
8358
+ export interface SetMeasurementFormReferencesMappingRequest {
8359
+ mappings: MeasurementFormReferenceMappingRequestDto[];
8360
+ }
8361
+ export interface MeasurementFormReferenceMappingRequestDto {
8362
+ sourceBalloonId?: string | null;
8363
+ targetBalloonId?: string | null;
8364
+ sourceReference: number;
8365
+ targetReference: number;
8366
+ mappingScorePercent?: number | null;
8367
+ }
8368
+ export interface MeasurementFormMappingSuggestionDto {
8369
+ measurementSchemaSourceId: string;
8370
+ measurementSchemaTargetId: string;
8371
+ sourceBalloons?: MeasurementFormReferenceMappingDto[];
8372
+ targetBalloons?: MeasurementFormReferenceMappingDto[];
8373
+ sourceReferences: MeasurementFormReferenceMappingDto[];
8374
+ targetReferences: MeasurementFormReferenceMappingDto[];
8375
+ }
8376
+ export interface PagedResultOfMeasurementFormNeedDto {
8377
+ results: MeasurementFormNeedDto[];
8378
+ continuationToken?: string | null;
8379
+ }
8380
+ export interface MeasurementFormNeedDto {
8381
+ id: string;
8382
+ requirementDate: Date;
7709
8383
  customerId?: string | null;
8384
+ customerName?: string | null;
7710
8385
  partNumber?: string | null;
7711
8386
  partRevision?: string | null;
8387
+ partName?: string | null;
7712
8388
  drawing?: string | null;
7713
8389
  drawingRevision?: string | null;
7714
- version?: number | null;
7715
- continuationToken?: string | null;
8390
+ workorder?: string | null;
8391
+ operation?: number | null;
8392
+ resource?: string | null;
8393
+ resourceId?: string | null;
8394
+ resourceName?: string | null;
8395
+ assignedTo?: UserDto | null;
8396
+ isGeneratedRequirement: boolean;
8397
+ measurementSchemaId?: string | null;
8398
+ drawingUrl?: string | null;
7716
8399
  }
7717
- export interface ListMeasurementFormSchemasRequest {
8400
+ export interface ListMeasurementFormNeedsRequest {
7718
8401
  pageSize?: number | null;
7719
8402
  customerId?: string | null;
7720
8403
  customerName?: string | null;
@@ -7725,28 +8408,122 @@ export interface ListMeasurementFormSchemasRequest {
7725
8408
  drawingRevision?: string | null;
7726
8409
  filter?: string | null;
7727
8410
  continuationToken?: string | null;
8411
+ onlyWithoutDrawingUrl?: boolean | null;
7728
8412
  }
7729
- export interface MeasurementFrequencyDto {
7730
- id: number;
7731
- name: string;
8413
+ export interface SetMeasurementFormNeedUserRequest {
8414
+ userId: string;
7732
8415
  }
7733
- export interface MeasurementFormInstanceDto {
8416
+ export interface MeasurementFormSchemaNotNeededDto {
7734
8417
  id: string;
7735
- readonly: boolean;
8418
+ customerId?: string | null;
8419
+ customerName?: string | null;
7736
8420
  partNumber?: string | null;
7737
- partName?: string | null;
7738
8421
  partRevision?: string | null;
7739
8422
  drawing?: string | null;
7740
8423
  drawingRevision?: string | null;
7741
- customerId?: string | null;
7742
- customerName?: string | null;
7743
- quantity: number;
7744
- status: MeasurementFormInstanceStatus;
7745
- statusChangedDate?: Date | null;
7746
- schemas: MeasurementFormWorkorderSchemaDto[];
7747
- sequences?: MeasurementFormWorkorderSequenceDto[] | null;
7748
- serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
7749
- suppliers: MeasurementFormWorkorderSupplierDto[];
8424
+ comment?: string | null;
8425
+ }
8426
+ export interface SetMeasurementFormNeedAsNotNeededRequest {
8427
+ comment?: string | null;
8428
+ }
8429
+ export interface PagedResultOfMeasurementFormSchemaNotNeededDto {
8430
+ results: MeasurementFormSchemaNotNeededDto[];
8431
+ continuationToken?: string | null;
8432
+ }
8433
+ export interface ListMeasurementFormSchemasNotNeededRequest {
8434
+ pageSize?: number | null;
8435
+ customerId?: string | null;
8436
+ customerName?: string | null;
8437
+ partNumber?: string | null;
8438
+ partName?: string | null;
8439
+ partRevision?: string | null;
8440
+ drawing?: string | null;
8441
+ drawingRevision?: string | null;
8442
+ filter?: string | null;
8443
+ continuationToken?: string | null;
8444
+ }
8445
+ export interface MeasurementFormResourceTypeGeneratorDto {
8446
+ resourceType: string;
8447
+ }
8448
+ export interface AddResourceTypeForNeedsGenerator {
8449
+ resourceType: string;
8450
+ }
8451
+ export interface PagedResultOfSchemaFeedbackDto {
8452
+ results: SchemaFeedbackDto[];
8453
+ continuationToken?: string | null;
8454
+ }
8455
+ export interface SchemaFeedbackDto {
8456
+ id: string;
8457
+ workOrder: string;
8458
+ schemaId: string;
8459
+ versionId?: number;
8460
+ schemaInstanceId: string;
8461
+ balloonId?: string | null;
8462
+ reference?: number;
8463
+ feedback: string;
8464
+ from: string;
8465
+ created: Date;
8466
+ assignedTo?: UserDto | null;
8467
+ status?: SchemaFeedbackStatus;
8468
+ latestSchemaDefinitionId?: string | null;
8469
+ partNumber?: string | null;
8470
+ partRevision?: string | null;
8471
+ partName?: string | null;
8472
+ drawing?: string | null;
8473
+ drawingRevision?: string | null;
8474
+ }
8475
+ export type SchemaFeedbackStatus = "New" | "InProgress";
8476
+ export interface ListMeasurementFormInstanceSchemaFeedbackRequest {
8477
+ pageSize?: number | null;
8478
+ search?: string | null;
8479
+ continuationToken?: string | null;
8480
+ }
8481
+ export interface SetMeasurementFormSchemaFeedbackUserRequest {
8482
+ userId?: string | null;
8483
+ }
8484
+ export interface ListMeasurementFormSchemasWithHistoryRequest {
8485
+ pageSize?: number | null;
8486
+ customerId?: string | null;
8487
+ partNumber?: string | null;
8488
+ partRevision?: string | null;
8489
+ drawing?: string | null;
8490
+ drawingRevision?: string | null;
8491
+ version?: number | null;
8492
+ continuationToken?: string | null;
8493
+ }
8494
+ export interface ListMeasurementFormSchemasRequest {
8495
+ pageSize?: number | null;
8496
+ customerId?: string | null;
8497
+ customerName?: string | null;
8498
+ partName?: string | null;
8499
+ partNumber?: string | null;
8500
+ partRevision?: string | null;
8501
+ drawing?: string | null;
8502
+ drawingRevision?: string | null;
8503
+ filter?: string | null;
8504
+ continuationToken?: string | null;
8505
+ }
8506
+ export interface MeasurementFrequencyDto {
8507
+ id: number;
8508
+ name: string;
8509
+ }
8510
+ export interface MeasurementFormInstanceDto {
8511
+ id: string;
8512
+ readonly: boolean;
8513
+ partNumber?: string | null;
8514
+ partName?: string | null;
8515
+ partRevision?: string | null;
8516
+ drawing?: string | null;
8517
+ drawingRevision?: string | null;
8518
+ customerId?: string | null;
8519
+ customerName?: string | null;
8520
+ quantity: number;
8521
+ status: MeasurementFormInstanceStatus;
8522
+ statusChangedDate?: Date | null;
8523
+ schemas: MeasurementFormWorkorderSchemaDto[];
8524
+ sequences?: MeasurementFormWorkorderSequenceDto[] | null;
8525
+ serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
8526
+ suppliers: MeasurementFormWorkorderSupplierDto[];
7750
8527
  progress: MeasurementFormProgressDto;
7751
8528
  approvedReportUrl?: string | null;
7752
8529
  currentResource?: ResourceDto | null;
@@ -7827,6 +8604,7 @@ export interface ListMeasurementFormsRequest {
7827
8604
  pageSize?: number | null;
7828
8605
  search?: string | null;
7829
8606
  continuationToken?: string | null;
8607
+ tenantId?: string | null;
7830
8608
  inactive?: boolean | null;
7831
8609
  includeInactiveSupplierAccess?: boolean | null;
7832
8610
  }
@@ -8022,6 +8800,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
8022
8800
  externalOrderNumber?: string | null;
8023
8801
  }
8024
8802
  export interface ExportDimensionReportV2Request {
8803
+ tenantId?: string | null;
8025
8804
  type: DimensionReportType;
8026
8805
  extras?: DimensionReportExtras | null;
8027
8806
  specificSerialNumbers?: string[] | null;
@@ -8362,726 +9141,6 @@ export interface SetDiscussionLastReadRequest {
8362
9141
  operationId?: string | null;
8363
9142
  resourceId?: string | null;
8364
9143
  }
8365
- export interface CompanyUserDto {
8366
- companyId: string;
8367
- userObjectId: string;
8368
- username?: string | null;
8369
- name?: string | null;
8370
- roles: string[];
8371
- }
8372
- export interface CreateCompanyUser {
8373
- username: string;
8374
- name: string;
8375
- roles: string[];
8376
- companyId?: string | null;
8377
- }
8378
- export interface UpdateCompanyUserRequest {
8379
- roles: string[];
8380
- companyId?: string | null;
8381
- }
8382
- export interface ExternalRoleDto {
8383
- id: string;
8384
- name: string;
8385
- }
8386
- export interface CompanyCustomerDto {
8387
- customerTenantId?: string | null;
8388
- customerAzureAdTenantId?: string | null;
8389
- customerName?: string | null;
8390
- supplierId?: string | null;
8391
- supplierName?: string | null;
8392
- }
8393
- export interface CompanyDto {
8394
- id?: string;
8395
- name?: string;
8396
- organizationNumber?: string | null;
8397
- country?: string;
8398
- tenantId?: string | null;
8399
- }
8400
- export interface SupplierInviteDto {
8401
- id: string;
8402
- supplierId: string;
8403
- supplierName?: string | null;
8404
- customerName?: string | null;
8405
- userId: string;
8406
- userName?: string | null;
8407
- companyId?: string | null;
8408
- deadline: Date;
8409
- acceptedTimestamp?: Date | null;
8410
- createdTime: Date;
8411
- createdBy: string;
8412
- }
8413
- export interface AcceptSupplierInvite {
8414
- companyName?: string;
8415
- organizationNumber?: string;
8416
- threeLetterIsoCountry?: string;
8417
- }
8418
- export interface CreateSupplierInvite {
8419
- supplierId: string;
8420
- supplierName?: string | null;
8421
- username: string;
8422
- invitedName: string;
8423
- deadline: Date;
8424
- existingCompanyId?: string | null;
8425
- }
8426
- export interface ExternalSupplierDto {
8427
- id: string;
8428
- name: string;
8429
- companyId: string;
8430
- active: boolean;
8431
- }
8432
- export interface CreateSupplierMapping {
8433
- companyId: string;
8434
- existingSupplierId: string;
8435
- newSupplierId: string;
8436
- }
8437
- export interface AmcMaterialChecksPageDto {
8438
- items: AmcMaterialCheckLiteDto[];
8439
- continuationToken?: string | null;
8440
- }
8441
- export interface AmcMaterialCheckLiteDto {
8442
- materialCheckId: string;
8443
- originalMaterialCertificate: FileDto;
8444
- generatedMaterialCertificate?: FileDto | null;
8445
- customer?: string | null;
8446
- project?: string | null;
8447
- workOrder?: string | null;
8448
- certificateTypeId?: string | null;
8449
- certificateTypeVersion?: number | null;
8450
- certificateTypeName?: string | null;
8451
- specificationId: string;
8452
- specificationVersion: number;
8453
- specificationName: string;
8454
- purchaseOrder?: string | null;
8455
- purchaseOrderLine?: string | null;
8456
- purchaseOrderItem?: string | null;
8457
- purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
8458
- purchaseOrderLot?: string | null;
8459
- status: AmcMaterialCheckStatus;
8460
- created: Date;
8461
- createdBy: string;
8462
- createdById: string;
8463
- updatedBy?: string | null;
8464
- updatedById?: string | null;
8465
- }
8466
- export type AmcMaterialCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
8467
- export interface AmcMaterialChecksPageRequestDto {
8468
- pageSize?: number | null;
8469
- orderBy?: AmcMaterialChecksOrderByColumn | null;
8470
- searchTerm?: string | null;
8471
- originalReportFilter?: string | null;
8472
- generatedReportFilter?: string | null;
8473
- customerFilter?: string | null;
8474
- projectFilter?: string | null;
8475
- purchaseOrderFilter?: string | null;
8476
- workOrderFilter?: string | null;
8477
- certificateTypeFilter?: string | null;
8478
- lineFilter?: string | null;
8479
- itemFilter?: string | null;
8480
- heatFilter?: string | null;
8481
- lotFilter?: string | null;
8482
- dateFromFilter?: Date | null;
8483
- dateToFilter?: Date | null;
8484
- statusFilter: AmcMaterialCheckStatus[];
8485
- continuationToken?: string | null;
8486
- }
8487
- export type AmcMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status";
8488
- export interface AmcMaterialCheckDto {
8489
- materialCheckId: string;
8490
- originalMaterialCertificate: FileDto;
8491
- generatedMaterialCertificate?: FileDto | null;
8492
- customer?: string | null;
8493
- project?: string | null;
8494
- workOrder?: string | null;
8495
- certificateTypeId?: string | null;
8496
- certificateTypeVersion?: number | null;
8497
- certificateTypeName?: string | null;
8498
- specificationId: string;
8499
- specificationVersion: number;
8500
- specificationName: string;
8501
- purchaseOrder?: string | null;
8502
- purchaseOrderLine?: string | null;
8503
- purchaseOrderItem?: string | null;
8504
- purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
8505
- purchaseOrderLot?: string | null;
8506
- status: AmcMaterialCheckStatus;
8507
- created: Date;
8508
- createdBy: string;
8509
- createdById: string;
8510
- updatedBy?: string | null;
8511
- updatedById?: string | null;
8512
- certificateTypeResults: AmcCertificateTypeResultsDto;
8513
- specificationChemistry: AmcSpecificationChemistryResultsDto;
8514
- specificationMechanical: AmcSpecificationMechanicalResultsDto;
8515
- specificationFerrite: AmcSpecificationFerriteResultsDto;
8516
- specificationHeat: AmcSpecificationHeatTreatmentResultsDto;
8517
- }
8518
- export interface AmcCertificateTypeResultsDto {
8519
- manufacturer: AmcCertificateTypeManufacturerResultsDto;
8520
- signature: AmcCertificateTypeSignatureResultsDto;
8521
- thirdParty: AmcCertificateTypeThirdPartyResultsDto;
8522
- certification: AmcCertificateTypeCertificationResultsDto;
8523
- productAndOrderInformation: AmcCertificateTypeProductAndOrderInformationResultsDto;
8524
- testMethodsAndReferences: AmcCertificateTypeTestMethodsAndReferencesResultsDto;
8525
- testResults: AmcCertificateTypeTestResultsResultsDto;
8526
- documentTypes: AmcCertificateTypeDocumentTypesResultsDto;
8527
- }
8528
- export interface AmcCertificateTypeManufacturerResultsDto {
8529
- manufacturer?: AmcCertificateTypeResultLine | null;
8530
- address?: AmcCertificateTypeResultLine | null;
8531
- contact?: AmcCertificateTypeResultLine | null;
8532
- }
8533
- export interface AmcCertificateTypeResultLine {
8534
- found?: boolean;
8535
- readValue?: string | null;
8536
- override?: AmcResultLineOverrideDto | null;
8537
- }
8538
- export interface AmcResultLineOverrideDto {
8539
- approved: boolean;
8540
- comment?: string | null;
8541
- updated: Date;
8542
- updatedBy: string;
8543
- updatedById: string;
8544
- }
8545
- export interface AmcCertificateTypeSignatureResultsDto {
8546
- certifiedBy?: AmcCertificateTypeResultLine | null;
8547
- position?: AmcCertificateTypeResultLine | null;
8548
- signature?: AmcCertificateTypeResultLine | null;
8549
- date?: AmcCertificateTypeResultLine | null;
8550
- stamp?: AmcCertificateTypeResultLine | null;
8551
- }
8552
- export interface AmcCertificateTypeThirdPartyResultsDto {
8553
- inspectionBody?: AmcCertificateTypeResultLine | null;
8554
- inspectorName?: AmcCertificateTypeResultLine | null;
8555
- position?: AmcCertificateTypeResultLine | null;
8556
- verificationMethod?: AmcCertificateTypeResultLine | null;
8557
- signature?: AmcCertificateTypeResultLine | null;
8558
- date?: AmcCertificateTypeResultLine | null;
8559
- stamp?: AmcCertificateTypeResultLine | null;
8560
- }
8561
- export interface AmcCertificateTypeCertificationResultsDto {
8562
- certificateOfCompliance?: AmcCertificateTypeResultLine | null;
8563
- inspectionCertificate?: AmcCertificateTypeResultLine | null;
8564
- }
8565
- export interface AmcCertificateTypeProductAndOrderInformationResultsDto {
8566
- productDescription?: AmcCertificateTypeResultLine | null;
8567
- materialGrade?: AmcCertificateTypeResultLine | null;
8568
- customer?: AmcCertificateTypeResultLine | null;
8569
- customerOrderNumber?: AmcCertificateTypeResultLine | null;
8570
- dimensionsOrWeight?: AmcCertificateTypeResultLine | null;
8571
- batchNumber?: AmcCertificateTypeResultLine | null;
8572
- heatNumber?: AmcCertificateTypeResultLine | null;
8573
- relatedStandards?: AmcCertificateTypeResultLine | null;
8574
- }
8575
- export interface AmcCertificateTypeTestMethodsAndReferencesResultsDto {
8576
- usedStandards?: AmcCertificateTypeResultLine | null;
8577
- }
8578
- export interface AmcCertificateTypeTestResultsResultsDto {
8579
- mechanicalProperties?: AmcCertificateTypeResultLine | null;
8580
- chemicalAnalysis?: AmcCertificateTypeResultLine | null;
8581
- impactTests?: AmcCertificateTypeResultLine | null;
8582
- corrosionTests?: AmcCertificateTypeResultLine | null;
8583
- ferriteContentAndMicrostructure?: AmcCertificateTypeResultLine | null;
8584
- }
8585
- export interface AmcCertificateTypeDocumentTypesResultsDto {
8586
- heatTreatmentCertificate?: AmcCertificateTypeResultLine | null;
8587
- ultrasonicControlCertificate?: AmcCertificateTypeResultLine | null;
8588
- liquidPenetrantCertificate?: AmcCertificateTypeResultLine | null;
8589
- testReport?: AmcCertificateTypeResultLine | null;
8590
- dimensionalReport?: AmcCertificateTypeResultLine | null;
8591
- dyePenetrantReport?: AmcCertificateTypeResultLine | null;
8592
- visualReport?: AmcCertificateTypeResultLine | null;
8593
- certificateOfAnalyticalAndMechanicalTests?: AmcCertificateTypeResultLine | null;
8594
- certificateOfTest?: AmcCertificateTypeResultLine | null;
8595
- technicalReport?: AmcCertificateTypeResultLine | null;
8596
- microExaminationReport?: AmcCertificateTypeResultLine | null;
8597
- radiologicalReport?: AmcCertificateTypeResultLine | null;
8598
- }
8599
- export interface AmcSpecificationChemistryResultsDto {
8600
- carbon?: AmcSpecificationResultLineDto | null;
8601
- manganese?: AmcSpecificationResultLineDto | null;
8602
- silicon?: AmcSpecificationResultLineDto | null;
8603
- phosphorus?: AmcSpecificationResultLineDto | null;
8604
- sulfur?: AmcSpecificationResultLineDto | null;
8605
- chromium?: AmcSpecificationResultLineDto | null;
8606
- nickel?: AmcSpecificationResultLineDto | null;
8607
- molybdenum?: AmcSpecificationResultLineDto | null;
8608
- copper?: AmcSpecificationResultLineDto | null;
8609
- nitrogen?: AmcSpecificationResultLineDto | null;
8610
- wolfram?: AmcSpecificationResultLineDto | null;
8611
- iron?: AmcSpecificationResultLineDto | null;
8612
- }
8613
- export interface AmcSpecificationResultLineDto {
8614
- specificationOperator?: string | null;
8615
- specificationValue1?: number | null;
8616
- specificationValue2?: number | null;
8617
- specificationSymbol?: string | null;
8618
- readValue?: string | null;
8619
- status: AmcSpecificationResultLineStatus;
8620
- override?: AmcResultLineOverrideDto | null;
8621
- }
8622
- export type AmcSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
8623
- export interface AmcSpecificationMechanicalResultsDto {
8624
- yieldStrength?: AmcSpecificationResultLineDto | null;
8625
- tensileStrength?: AmcSpecificationResultLineDto | null;
8626
- elongation?: AmcSpecificationResultLineDto | null;
8627
- reductionOfArea?: AmcSpecificationResultLineDto | null;
8628
- impactEnergy?: AmcSpecificationResultLineDto | null;
8629
- hardness?: AmcSpecificationResultLineDto | null;
8630
- }
8631
- export interface AmcSpecificationFerriteResultsDto {
8632
- ferriteContent?: AmcSpecificationFerriteResultLineDto | null;
8633
- }
8634
- export interface AmcSpecificationFerriteResultLineDto {
8635
- specificationOperator?: string | null;
8636
- specificationValue1?: string | null;
8637
- specificationValue2?: string | null;
8638
- specificationSymbol?: string | null;
8639
- readValue?: string | null;
8640
- status: AmcSpecificationResultLineStatus;
8641
- override?: AmcResultLineOverrideDto | null;
8642
- measurementMethod?: string | null;
8643
- }
8644
- export interface AmcSpecificationHeatTreatmentResultsDto {
8645
- heatTreatments: AmcSpecificationHeatTreatmentsResultLineDto[];
8646
- }
8647
- export interface AmcSpecificationHeatTreatmentsResultLineDto {
8648
- heatingMethod: AmcHeatingTreatmentMethod;
8649
- specificationHeatingTreatmentTemperature?: number | null;
8650
- specificationHeatingHoldingTime?: number | null;
8651
- heatingTreatmentTemperature?: number | null;
8652
- heatingHoldingTime?: number | null;
8653
- specificationCoolingMethods?: AmcCoolingTreatmentMethod[] | null;
8654
- specificationCoolingTreatmentTemperature?: number | null;
8655
- specificationCoolingHoldingTime?: number | null;
8656
- coolingMethod?: AmcCoolingTreatmentMethod | null;
8657
- coolingTreatmentTemperature?: number | null;
8658
- coolingHoldingTime?: number | null;
8659
- status: AmcSpecificationResultLineStatus;
8660
- override?: AmcResultLineOverrideDto | null;
8661
- }
8662
- export type AmcHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering";
8663
- export type AmcCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching";
8664
- export interface ProcessAmcCheckRequestDto {
8665
- files: UploadFileDto[];
8666
- specificationId: string;
8667
- specificationVersion: string;
8668
- certificateTypeId?: string | null;
8669
- certificateTypeVersion?: string | null;
8670
- purchaseOrder?: string | null;
8671
- }
8672
- export interface AmcUpdateResultRequestDto {
8673
- certificateId: string;
8674
- project?: string | null;
8675
- purchaseOrder?: string | null;
8676
- workOrder?: string | null;
8677
- certificateTypeSection: AmcUpdateCertificateTypeResultsDto;
8678
- specificationChemistrySpecification: AmcUpdateSpecificationChemistryResultsDto;
8679
- specificationMechanicalSpecification: AmcUpdateSpecificationMechanicalResultsDto;
8680
- specificationFerriteSpecification: AmcUpdateSpecificationFerriteResultsDto;
8681
- specificationHeatSpecification: AmcUpdateSpecificationHeatTreatmentResultsDto;
8682
- }
8683
- export interface AmcUpdateCertificateTypeResultsDto {
8684
- manufacturer: AmcUpdateCertificateTypeManufacturerResultsDto;
8685
- signature: AmcUpdateCertificateTypeSignatureResultsDto;
8686
- thirdParty: AmcUpdateCertificateTypeThirdPartyResultsDto;
8687
- certification: AmcUpdateCertificateTypeCertificationResultsDto;
8688
- certificateTypeProductAndOrderInformation: AmcUpdateCertificateTypeProductAndOrderInformationResultsDto;
8689
- testMethodsAndReferences: AmcUpdateCertificateTypeTestMethodsAndReferencesResultsDto;
8690
- testResults: AmcUpdateCertificateTypeTestResultsResultsDto;
8691
- documentTypes: AmcUpdateCertificateTypeDocumentTypesResultsDto;
8692
- }
8693
- export interface AmcUpdateCertificateTypeManufacturerResultsDto {
8694
- manufacturer?: AmcUpdateCertificateTypeResultLine | null;
8695
- address?: AmcUpdateCertificateTypeResultLine | null;
8696
- contact?: AmcUpdateCertificateTypeResultLine | null;
8697
- }
8698
- export interface AmcUpdateCertificateTypeResultLine {
8699
- approved?: boolean | null;
8700
- comment?: string | null;
8701
- }
8702
- export interface AmcUpdateCertificateTypeSignatureResultsDto {
8703
- certifiedBy?: AmcUpdateCertificateTypeResultLine | null;
8704
- position?: AmcUpdateCertificateTypeResultLine | null;
8705
- signature?: AmcUpdateCertificateTypeResultLine | null;
8706
- date?: AmcUpdateCertificateTypeResultLine | null;
8707
- stamp?: AmcUpdateCertificateTypeResultLine | null;
8708
- }
8709
- export interface AmcUpdateCertificateTypeThirdPartyResultsDto {
8710
- inspectionBody?: AmcUpdateCertificateTypeResultLine | null;
8711
- inspectorName?: AmcUpdateCertificateTypeResultLine | null;
8712
- position?: AmcUpdateCertificateTypeResultLine | null;
8713
- verificationMethod?: AmcUpdateCertificateTypeResultLine | null;
8714
- signature?: AmcUpdateCertificateTypeResultLine | null;
8715
- date?: AmcUpdateCertificateTypeResultLine | null;
8716
- stamp?: AmcUpdateCertificateTypeResultLine | null;
8717
- }
8718
- export interface AmcUpdateCertificateTypeCertificationResultsDto {
8719
- certificateOfCompliance?: AmcUpdateCertificateTypeResultLine | null;
8720
- inspectionCertificate?: AmcUpdateCertificateTypeResultLine | null;
8721
- }
8722
- export interface AmcUpdateCertificateTypeProductAndOrderInformationResultsDto {
8723
- productDescription?: AmcUpdateCertificateTypeResultLine | null;
8724
- materialGrade?: AmcUpdateCertificateTypeResultLine | null;
8725
- customer?: AmcUpdateCertificateTypeResultLine | null;
8726
- customerOrderNumber?: AmcUpdateCertificateTypeResultLine | null;
8727
- dimensionsOrWeight?: AmcUpdateCertificateTypeResultLine | null;
8728
- batchNumber?: AmcUpdateCertificateTypeResultLine | null;
8729
- heatNumber?: AmcUpdateCertificateTypeResultLine | null;
8730
- relatedStandards?: AmcUpdateCertificateTypeResultLine | null;
8731
- }
8732
- export interface AmcUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
8733
- usedStandards?: AmcUpdateCertificateTypeResultLine | null;
8734
- }
8735
- export interface AmcUpdateCertificateTypeTestResultsResultsDto {
8736
- mechanicalProperties?: AmcUpdateCertificateTypeResultLine | null;
8737
- chemicalAnalysis?: AmcUpdateCertificateTypeResultLine | null;
8738
- impactTests?: AmcUpdateCertificateTypeResultLine | null;
8739
- corrosionTests?: AmcUpdateCertificateTypeResultLine | null;
8740
- ferriteContentAndMicrostructure?: AmcUpdateCertificateTypeResultLine | null;
8741
- }
8742
- export interface AmcUpdateCertificateTypeDocumentTypesResultsDto {
8743
- heatTreatmentCertificate?: AmcUpdateCertificateTypeResultLine | null;
8744
- ultrasonicControlCertificate?: AmcUpdateCertificateTypeResultLine | null;
8745
- liquidPenetrantCertificate?: AmcUpdateCertificateTypeResultLine | null;
8746
- testReport?: AmcUpdateCertificateTypeResultLine | null;
8747
- dimensionalReport?: AmcUpdateCertificateTypeResultLine | null;
8748
- dyePenetrantReport?: AmcUpdateCertificateTypeResultLine | null;
8749
- visualReport?: AmcUpdateCertificateTypeResultLine | null;
8750
- certificateOfAnalyticalAndMechanicalTests?: AmcUpdateCertificateTypeResultLine | null;
8751
- certificateOfTest?: AmcUpdateCertificateTypeResultLine | null;
8752
- technicalReport?: AmcUpdateCertificateTypeResultLine | null;
8753
- microExaminationReport?: AmcUpdateCertificateTypeResultLine | null;
8754
- radiologicalReport?: AmcUpdateCertificateTypeResultLine | null;
8755
- }
8756
- export interface AmcUpdateSpecificationChemistryResultsDto {
8757
- carbon?: AmcUpdateSpecificationResultLineDto | null;
8758
- manganese?: AmcUpdateSpecificationResultLineDto | null;
8759
- silicon?: AmcUpdateSpecificationResultLineDto | null;
8760
- phosphorus?: AmcUpdateSpecificationResultLineDto | null;
8761
- sulfur?: AmcUpdateSpecificationResultLineDto | null;
8762
- chromium?: AmcUpdateSpecificationResultLineDto | null;
8763
- nickel?: AmcUpdateSpecificationResultLineDto | null;
8764
- molybdenum?: AmcUpdateSpecificationResultLineDto | null;
8765
- copper?: AmcUpdateSpecificationResultLineDto | null;
8766
- nitrogen?: AmcUpdateSpecificationResultLineDto | null;
8767
- wolfram?: AmcUpdateSpecificationResultLineDto | null;
8768
- iron?: AmcUpdateSpecificationResultLineDto | null;
8769
- }
8770
- export interface AmcUpdateSpecificationResultLineDto {
8771
- approved?: boolean;
8772
- comment?: string | null;
8773
- }
8774
- export interface AmcUpdateSpecificationMechanicalResultsDto {
8775
- yieldStrength?: AmcUpdateSpecificationResultLineDto | null;
8776
- tensileStrength?: AmcUpdateSpecificationResultLineDto | null;
8777
- elongation?: AmcUpdateSpecificationResultLineDto | null;
8778
- reductionOfArea?: AmcUpdateSpecificationResultLineDto | null;
8779
- impactEnergy?: AmcUpdateSpecificationResultLineDto | null;
8780
- hardness?: AmcUpdateSpecificationResultLineDto | null;
8781
- }
8782
- export interface AmcUpdateSpecificationFerriteResultsDto {
8783
- ferriteContent?: AmcUpdateSpecificationResultLineDto | null;
8784
- }
8785
- export interface AmcUpdateSpecificationHeatTreatmentResultsDto {
8786
- heatTreatmentOverrides: (AmcUpdateSpecificationResultLineDto | null)[];
8787
- }
8788
- export interface AmcSpecificationLiteDto {
8789
- specificationId: string;
8790
- version: number;
8791
- name: string;
8792
- number: string;
8793
- revision: string;
8794
- date: Date;
8795
- status: AmcSpecificationStatus;
8796
- summary?: string | null;
8797
- relatedStandards: string[];
8798
- created: Date;
8799
- createdBy: string;
8800
- createdById: string;
8801
- updatedBy?: string | null;
8802
- updatedById?: string | null;
8803
- }
8804
- export type AmcSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
8805
- export interface AmcSpecificationDto {
8806
- specificationId: string;
8807
- version: number;
8808
- allVersions: AmcSpecificationVersionDto[];
8809
- name: string;
8810
- number: string;
8811
- revision: string;
8812
- date: Date;
8813
- status: AmcSpecificationStatus;
8814
- summary?: string | null;
8815
- relatedStandards: string[];
8816
- created: Date;
8817
- createdBy: string;
8818
- createdById: string;
8819
- updatedBy?: string | null;
8820
- updatedById?: string | null;
8821
- chemistrySpecification: AmcChemistrySpecificationDto;
8822
- mechanicalSpecification: AmcMechanicalSpecificationDto;
8823
- ferriteSpecification: AmcFerriteSpecificationDto;
8824
- heatSpecification: AmcHeatTreatmentSpecificationDto;
8825
- }
8826
- export interface AmcSpecificationVersionDto {
8827
- version?: number;
8828
- status?: AmcSpecificationStatus;
8829
- }
8830
- export interface AmcChemistrySpecificationDto {
8831
- carbon?: AmcSpecificationLineDto | null;
8832
- manganese?: AmcSpecificationLineDto | null;
8833
- silicon?: AmcSpecificationLineDto | null;
8834
- phosphorus?: AmcSpecificationLineDto | null;
8835
- sulfur?: AmcSpecificationLineDto | null;
8836
- chromium?: AmcSpecificationLineDto | null;
8837
- nickel?: AmcSpecificationLineDto | null;
8838
- molybdenum?: AmcSpecificationLineDto | null;
8839
- copper?: AmcSpecificationLineDto | null;
8840
- nitrogen?: AmcSpecificationLineDto | null;
8841
- wolfram?: AmcSpecificationLineDto | null;
8842
- iron?: AmcSpecificationLineDto | null;
8843
- }
8844
- export interface AmcSpecificationLineDto {
8845
- operator: AmcSpecificationOperator;
8846
- value1?: number | null;
8847
- value2?: number | null;
8848
- symbol: AmcSpecificationSymbol;
8849
- }
8850
- export type AmcSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
8851
- export type AmcSpecificationSymbol = "None" | "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw";
8852
- export interface AmcMechanicalSpecificationDto {
8853
- yieldStrength?: AmcSpecificationLineDto | null;
8854
- tensileStrength?: AmcSpecificationLineDto | null;
8855
- elongation?: AmcSpecificationLineDto | null;
8856
- reductionOfArea?: AmcSpecificationLineDto | null;
8857
- impactEnergy?: AmcSpecificationLineDto | null;
8858
- hardness?: AmcSpecificationLineDto | null;
8859
- }
8860
- export interface AmcFerriteSpecificationDto {
8861
- ferriteContent?: AmcSpecificationLineDto | null;
8862
- }
8863
- export interface AmcHeatTreatmentSpecificationDto {
8864
- heatTreatments: AmcHeatTreatmentsSpecificationDto[];
8865
- }
8866
- export interface AmcHeatTreatmentsSpecificationDto {
8867
- heatingMethod: AmcHeatingTreatmentMethod;
8868
- heatingTreatmentTemperature?: number | null;
8869
- heatingHoldingTime?: number | null;
8870
- coolingMethods?: AmcCoolingTreatmentMethod[] | null;
8871
- coolingTreatmentTemperature?: number | null;
8872
- coolingHoldingTime?: number | null;
8873
- }
8874
- export interface CreateAmcSpecificationDto {
8875
- name: string;
8876
- number: string;
8877
- revision: string;
8878
- date: Date;
8879
- createCopy: boolean;
8880
- specificationId?: string | null;
8881
- specificationVersion?: string | null;
8882
- specificationFile?: UploadFileDto | null;
8883
- }
8884
- export interface UpdateAmcSpecificationDto {
8885
- specificationId: string;
8886
- version: number;
8887
- status: AmcSpecificationStatusUpdate;
8888
- summary?: string | null;
8889
- relatedStandards: string[];
8890
- chemistrySpecification: AmcChemistrySpecificationDto;
8891
- mechanicalSpecification: AmcMechanicalSpecificationDto;
8892
- ferriteSpecification: AmcFerriteSpecificationDto;
8893
- heatSpecification: AmcHeatTreatmentSpecificationDto;
8894
- }
8895
- export type AmcSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
8896
- export interface AmcCdfEntityReadBase {
8897
- }
8898
- export interface AmcCertificateTypeLiteDto extends AmcCdfEntityReadBase {
8899
- certificateTypeId: string;
8900
- version: number;
8901
- name: string;
8902
- revision: string;
8903
- status: AmcCertificateTypeStatus;
8904
- description?: string | null;
8905
- isStandardCertificateType: boolean;
8906
- created: Date;
8907
- createdBy: string;
8908
- createdById: string;
8909
- updatedBy?: string | null;
8910
- updatedById?: string | null;
8911
- updated: Date;
8912
- }
8913
- export type AmcCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
8914
- export interface AmcCertificateTypeDto extends AmcCdfEntityReadBase {
8915
- certificateTypeId: string;
8916
- version: number;
8917
- allVersions: AmcCertificateTypeVersionDto[];
8918
- name: string;
8919
- revision: string;
8920
- status: AmcCertificateTypeStatus;
8921
- description?: string | null;
8922
- isStandardCertificateType: boolean;
8923
- created: Date;
8924
- createdBy: string;
8925
- createdById: string;
8926
- updatedBy?: string | null;
8927
- updatedById?: string | null;
8928
- updated: Date;
8929
- requirements: AmcCertificateTypeRequirementsDto;
8930
- }
8931
- export interface AmcCertificateTypeVersionDto {
8932
- version?: number;
8933
- status?: AmcCertificateTypeStatus;
8934
- }
8935
- export interface AmcCertificateTypeRequirementsDto {
8936
- manufacturer: AmcCertificateTypeManufacturerRequirementsDto;
8937
- signature: AmcCertificateTypeSignatureRequirementsDto;
8938
- thirdParty: AmcCertificateTypeThirdPartyRequirementsDto;
8939
- certification: AmcCertificateTypeCertificationRequirementsDto;
8940
- productAndOrderInformation: AmcCertificateTypeProductAndOrderInformationRequirementsDto;
8941
- testMethodsAndReferences: AmcCertificateTypeTestMethodsAndReferencesRequirementsDto;
8942
- testResults: AmcCertificateTypeTestResultsRequirementsDto;
8943
- documentTypes: AmcCertificateTypeDocumentTypesRequirementsDto;
8944
- }
8945
- export interface AmcCertificateTypeManufacturerRequirementsDto extends AmcCdfEntityReadBase {
8946
- manufacturer?: boolean;
8947
- address?: boolean;
8948
- contact?: boolean;
8949
- }
8950
- export interface AmcCertificateTypeSignatureRequirementsDto extends AmcCdfEntityReadBase {
8951
- certifiedBy?: boolean;
8952
- position?: boolean;
8953
- signature?: boolean;
8954
- date?: boolean;
8955
- stamp?: boolean;
8956
- }
8957
- export interface AmcCertificateTypeThirdPartyRequirementsDto extends AmcCdfEntityReadBase {
8958
- inspectionBody?: boolean;
8959
- inspectorName?: boolean;
8960
- position?: boolean;
8961
- verificationMethod?: boolean;
8962
- signature?: boolean;
8963
- date?: boolean;
8964
- stamp?: boolean;
8965
- }
8966
- export interface AmcCertificateTypeCertificationRequirementsDto extends AmcCdfEntityReadBase {
8967
- certificateOfCompliance?: boolean;
8968
- inspectionCertificate?: boolean;
8969
- }
8970
- export interface AmcCertificateTypeProductAndOrderInformationRequirementsDto extends AmcCdfEntityReadBase {
8971
- productDescription?: boolean;
8972
- materialGrade?: boolean;
8973
- customer?: boolean;
8974
- customerOrderNumber?: boolean;
8975
- dimensionsOrWeight?: boolean;
8976
- batchNumber?: boolean;
8977
- heatNumber?: boolean;
8978
- relatedStandards?: boolean;
8979
- }
8980
- export interface AmcCertificateTypeTestMethodsAndReferencesRequirementsDto extends AmcCdfEntityReadBase {
8981
- usedStandards?: boolean;
8982
- }
8983
- export interface AmcCertificateTypeTestResultsRequirementsDto extends AmcCdfEntityReadBase {
8984
- mechanicalProperties?: boolean;
8985
- chemicalAnalysis?: boolean;
8986
- impactTests?: boolean;
8987
- corrosionTests?: boolean;
8988
- ferriteContentAndMicrostructure?: boolean;
8989
- }
8990
- export interface AmcCertificateTypeDocumentTypesRequirementsDto extends AmcCdfEntityReadBase {
8991
- heatTreatmentCertificate?: boolean;
8992
- ultrasonicControlCertificate?: boolean;
8993
- liquidPenetrantCertificate?: boolean;
8994
- testReport?: boolean;
8995
- dimensionalReport?: boolean;
8996
- dyePenetrantReport?: boolean;
8997
- visualReport?: boolean;
8998
- certificateOfAnalyticalAndMechanicalTests?: boolean;
8999
- certificateOfTest?: boolean;
9000
- technicalReport?: boolean;
9001
- microExaminationReport?: boolean;
9002
- radiologicalReport?: boolean;
9003
- }
9004
- export interface AmcCreateAmcCertificateTypeRequestDto {
9005
- name: string;
9006
- revision: string;
9007
- description?: string | null;
9008
- }
9009
- export interface AmcUpdateAmcCertificateTypeRequestDto {
9010
- name?: string | null;
9011
- revision?: string | null;
9012
- status?: AmcCertificateTypeStatus | null;
9013
- description?: string | null;
9014
- requirements?: AmcCertificateTypeRequirementsUpdateDto | null;
9015
- }
9016
- export interface AmcCertificateTypeRequirementsUpdateDto {
9017
- manufacturer?: AmcCertificateTypeManufacturerRequirementsUpdateDto | null;
9018
- signature?: AmcCertificateTypeSignatureRequirementsUpdateDto | null;
9019
- thirdParty?: AmcCertificateTypeThirdPartyRequirementsUpdateDto | null;
9020
- certification?: AmcCertificateTypeCertificationRequirementsUpdateDto | null;
9021
- productAndOrderInformation?: AmcCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
9022
- testMethodsAndReferences?: AmcCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
9023
- testResults?: AmcCertificateTypeTestResultsRequirementsUpdateDto | null;
9024
- documentTypes?: AmcCertificateTypeDocumentTypesRequirementsUpdateDto | null;
9025
- }
9026
- export interface AmcCertificateTypeManufacturerRequirementsUpdateDto {
9027
- manufacturer?: boolean | null;
9028
- address?: boolean | null;
9029
- contact?: boolean | null;
9030
- }
9031
- export interface AmcCertificateTypeSignatureRequirementsUpdateDto {
9032
- certifiedBy?: boolean | null;
9033
- position?: boolean | null;
9034
- signature?: boolean | null;
9035
- date?: boolean | null;
9036
- stamp?: boolean | null;
9037
- }
9038
- export interface AmcCertificateTypeThirdPartyRequirementsUpdateDto {
9039
- inspectionBody?: boolean | null;
9040
- inspectorName?: boolean | null;
9041
- position?: boolean | null;
9042
- verificationMethod?: boolean | null;
9043
- signature?: boolean | null;
9044
- date?: boolean | null;
9045
- stamp?: boolean | null;
9046
- }
9047
- export interface AmcCertificateTypeCertificationRequirementsUpdateDto {
9048
- certificateOfCompliance?: boolean | null;
9049
- inspectionCertificate?: boolean | null;
9050
- }
9051
- export interface AmcCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
9052
- productDescription?: boolean | null;
9053
- materialGrade?: boolean | null;
9054
- customer?: boolean | null;
9055
- customerOrderNumber?: boolean | null;
9056
- dimensionsOrWeight?: boolean | null;
9057
- batchNumber?: boolean | null;
9058
- heatNumber?: boolean | null;
9059
- relatedStandards?: boolean | null;
9060
- }
9061
- export interface AmcCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
9062
- usedStandards?: boolean | null;
9063
- }
9064
- export interface AmcCertificateTypeTestResultsRequirementsUpdateDto {
9065
- mechanicalProperties?: boolean | null;
9066
- chemicalAnalysis?: boolean | null;
9067
- impactTests?: boolean | null;
9068
- corrosionTests?: boolean | null;
9069
- ferriteContentAndMicrostructure?: boolean | null;
9070
- }
9071
- export interface AmcCertificateTypeDocumentTypesRequirementsUpdateDto {
9072
- heatTreatmentCertificate?: boolean | null;
9073
- ultrasonicControlCertificate?: boolean | null;
9074
- liquidPenetrantCertificate?: boolean | null;
9075
- testReport?: boolean | null;
9076
- dimensionalReport?: boolean | null;
9077
- dyePenetrantReport?: boolean | null;
9078
- visualReport?: boolean | null;
9079
- certificateOfAnalyticalAndMechanicalTests?: boolean | null;
9080
- certificateOfTest?: boolean | null;
9081
- technicalReport?: boolean | null;
9082
- microExaminationReport?: boolean | null;
9083
- radiologicalReport?: boolean | null;
9084
- }
9085
9144
  export interface FileParameter {
9086
9145
  data: any;
9087
9146
  fileName: string;