@ignos/api-client 20260420.114.1 → 20260421.115.1-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -124,6 +124,7 @@ 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>;
127
128
  }
128
129
  export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
129
130
  private http;
@@ -133,6 +134,8 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
133
134
  });
134
135
  getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
135
136
  protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
137
+ getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
138
+ protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
136
139
  }
137
140
  export interface IPresentationClient {
138
141
  getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
@@ -1491,99 +1494,6 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
1491
1494
  listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
1492
1495
  protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
1493
1496
  }
1494
- export interface IExternalAccessClient {
1495
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1496
- createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1497
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1498
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1499
- listRoles(): Promise<ExternalRoleDto[]>;
1500
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1501
- deleteCompanyCustomer(tenantId: string): Promise<void>;
1502
- }
1503
- export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
1504
- private http;
1505
- private baseUrl;
1506
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1507
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1508
- });
1509
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1510
- protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
1511
- createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1512
- protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
1513
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1514
- protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
1515
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1516
- protected processDeleteCompanyUser(response: Response): Promise<void>;
1517
- listRoles(): Promise<ExternalRoleDto[]>;
1518
- protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
1519
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1520
- protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
1521
- deleteCompanyCustomer(tenantId: string): Promise<void>;
1522
- protected processDeleteCompanyCustomer(response: Response): Promise<void>;
1523
- }
1524
- export interface IExternalClient {
1525
- listInvites(): Promise<InviteDto[]>;
1526
- acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1527
- listCompanies(): Promise<CompanyDto[]>;
1528
- }
1529
- export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
1530
- private http;
1531
- private baseUrl;
1532
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1533
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1534
- });
1535
- listInvites(): Promise<InviteDto[]>;
1536
- protected processListInvites(response: Response): Promise<InviteDto[]>;
1537
- acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1538
- protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
1539
- listCompanies(): Promise<CompanyDto[]>;
1540
- protected processListCompanies(response: Response): Promise<CompanyDto[]>;
1541
- }
1542
- export interface ISuppliersClient {
1543
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
1544
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1545
- deleteSupplierInvite(id: string): Promise<void>;
1546
- listSuppliers(): Promise<ExternalSupplierDto[]>;
1547
- deleteSupplier(id: string): Promise<void>;
1548
- importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1549
- /**
1550
- * Creates a mapping between old supplier id and new supplier id.
1551
- */
1552
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1553
- /**
1554
- * Delete all supplier mappings between old supplier ids and new supplier ids.
1555
- */
1556
- deleteSupplierMappings(): Promise<void>;
1557
- }
1558
- export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
1559
- private http;
1560
- private baseUrl;
1561
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1562
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1563
- });
1564
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
1565
- protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
1566
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1567
- protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
1568
- deleteSupplierInvite(id: string): Promise<void>;
1569
- protected processDeleteSupplierInvite(response: Response): Promise<void>;
1570
- listSuppliers(): Promise<ExternalSupplierDto[]>;
1571
- protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
1572
- deleteSupplier(id: string): Promise<void>;
1573
- protected processDeleteSupplier(response: Response): Promise<void>;
1574
- importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1575
- protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
1576
- /**
1577
- * Creates a mapping between old supplier id and new supplier id.
1578
- */
1579
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1580
- protected processCreateSupplierMapping(response: Response): Promise<void>;
1581
- /**
1582
- * Delete all supplier mappings between old supplier ids and new supplier ids.
1583
- */
1584
- deleteSupplierMappings(): Promise<void>;
1585
- protected processDeleteSupplierMappings(response: Response): Promise<void>;
1586
- }
1587
1497
  export interface ICncFileTransferClient {
1588
1498
  startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1589
1499
  startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
@@ -2579,6 +2489,30 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
2579
2489
  deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
2580
2490
  protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
2581
2491
  }
2492
+ export interface IInspectMatchCertificateChecksClient {
2493
+ listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
2494
+ getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
2495
+ deleteMaterialCheck(id: string): Promise<void>;
2496
+ processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
2497
+ updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
2498
+ }
2499
+ export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBase implements IInspectMatchCertificateChecksClient {
2500
+ private http;
2501
+ private baseUrl;
2502
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2503
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2504
+ });
2505
+ listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
2506
+ protected processListMaterialCertificateChecks(response: Response): Promise<ImaMaterialChecksPageDto>;
2507
+ getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
2508
+ protected processGetMaterialCertificateCheck(response: Response): Promise<ImaMaterialCheckDto>;
2509
+ deleteMaterialCheck(id: string): Promise<void>;
2510
+ protected processDeleteMaterialCheck(response: Response): Promise<void>;
2511
+ processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
2512
+ protected processProcessMaterialCertificate(response: Response): Promise<void>;
2513
+ updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
2514
+ protected processUpdateMaterialCertificate(response: Response): Promise<ImaMaterialCheckDto>;
2515
+ }
2582
2516
  export interface IInspectMatchCertificateTypesAdminClient {
2583
2517
  createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2584
2518
  copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
@@ -2621,42 +2555,6 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
2621
2555
  listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
2622
2556
  protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
2623
2557
  }
2624
- export interface IInspectMatchMaterialChecksAdminClient {
2625
- updateMaterialCheckOverrides(id: string, request: ImaOverrideMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
2626
- updateMaterialCheckStatus(id: string, status: ImaMaterialCheckStatus | undefined): Promise<FileResponse>;
2627
- deleteMaterialCheck(id: string): Promise<void>;
2628
- }
2629
- export declare class InspectMatchMaterialChecksAdminClient extends AuthorizedApiBase implements IInspectMatchMaterialChecksAdminClient {
2630
- private http;
2631
- private baseUrl;
2632
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2633
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2634
- });
2635
- updateMaterialCheckOverrides(id: string, request: ImaOverrideMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
2636
- protected processUpdateMaterialCheckOverrides(response: Response): Promise<ImaMaterialCheckDto>;
2637
- updateMaterialCheckStatus(id: string, status: ImaMaterialCheckStatus | undefined): Promise<FileResponse>;
2638
- protected processUpdateMaterialCheckStatus(response: Response): Promise<FileResponse>;
2639
- deleteMaterialCheck(id: string): Promise<void>;
2640
- protected processDeleteMaterialCheck(response: Response): Promise<void>;
2641
- }
2642
- export interface IInspectMatchMaterialChecksClient {
2643
- getMaterialCheck(id: string): Promise<ImaMaterialCheckDto>;
2644
- listMaterialChecks(pageSize: number | null | undefined, continuationToken: string | null | undefined, request: ImaMaterialChecksPageRequestDto): Promise<PagedResultOfImaMaterialCheckLiteDto>;
2645
- processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
2646
- }
2647
- export declare class InspectMatchMaterialChecksClient extends AuthorizedApiBase implements IInspectMatchMaterialChecksClient {
2648
- private http;
2649
- private baseUrl;
2650
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2651
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2652
- });
2653
- getMaterialCheck(id: string): Promise<ImaMaterialCheckDto>;
2654
- protected processGetMaterialCheck(response: Response): Promise<ImaMaterialCheckDto>;
2655
- listMaterialChecks(pageSize: number | null | undefined, continuationToken: string | null | undefined, request: ImaMaterialChecksPageRequestDto): Promise<PagedResultOfImaMaterialCheckLiteDto>;
2656
- protected processListMaterialChecks(response: Response): Promise<PagedResultOfImaMaterialCheckLiteDto>;
2657
- processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
2658
- protected processProcessMaterialCertificate(response: Response): Promise<void>;
2659
- }
2660
2558
  export interface IInspectMatchPurchaseOrderClient {
2661
2559
  searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto>;
2662
2560
  getPurchaseOrderLines(purchaseOrder: string): Promise<PurchaseOrderMaterialLinesDto>;
@@ -2967,22 +2865,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
2967
2865
  protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
2968
2866
  }
2969
2867
  export interface IMeasurementFormsInstancesClient {
2970
- 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>;
2868
+ listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2971
2869
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2972
- getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2870
+ getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2973
2871
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
2974
- completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2975
- completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2976
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2977
- getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2978
- getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2872
+ completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2873
+ completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
2874
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2875
+ getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
2876
+ getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2979
2877
  getValidationRules(): Promise<ValidationRuleDto[]>;
2980
- saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2981
- saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2982
- saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2983
- batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2984
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2985
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2878
+ saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2879
+ saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2880
+ saveComment(id: string, request: SaveCommentRequest): Promise<void>;
2881
+ batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2882
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2883
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2986
2884
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2987
2885
  upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
2988
2886
  removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
@@ -2998,37 +2896,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
2998
2896
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2999
2897
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3000
2898
  });
3001
- 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>;
2899
+ listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3002
2900
  protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3003
2901
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3004
2902
  protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3005
- getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2903
+ getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3006
2904
  protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3007
2905
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
3008
2906
  protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
3009
- completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2907
+ completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3010
2908
  protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3011
- completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2909
+ completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
3012
2910
  protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
3013
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2911
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3014
2912
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
3015
- getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2913
+ getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
3016
2914
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
3017
- getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2915
+ getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3018
2916
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
3019
2917
  getValidationRules(): Promise<ValidationRuleDto[]>;
3020
2918
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
3021
- saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2919
+ saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3022
2920
  protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
3023
- saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2921
+ saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3024
2922
  protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
3025
- saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2923
+ saveComment(id: string, request: SaveCommentRequest): Promise<void>;
3026
2924
  protected processSaveComment(response: Response): Promise<void>;
3027
- batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2925
+ batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3028
2926
  protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
3029
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2927
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3030
2928
  protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
3031
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2929
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3032
2930
  protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
3033
2931
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
3034
2932
  protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
@@ -3053,7 +2951,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
3053
2951
  createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
3054
2952
  reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3055
2953
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3056
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2954
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3057
2955
  }
3058
2956
  export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
3059
2957
  private http;
@@ -3077,7 +2975,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
3077
2975
  protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3078
2976
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3079
2977
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3080
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2978
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3081
2979
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
3082
2980
  }
3083
2981
  export interface ICompaniesClient {
@@ -3417,6 +3315,108 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3417
3315
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3418
3316
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3419
3317
  }
3318
+ export interface IExternalAccessClient {
3319
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3320
+ createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3321
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3322
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3323
+ listRoles(): Promise<ExternalRoleDto[]>;
3324
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3325
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
3326
+ }
3327
+ export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
3328
+ private http;
3329
+ private baseUrl;
3330
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3331
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3332
+ });
3333
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3334
+ protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
3335
+ createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3336
+ protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
3337
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3338
+ protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
3339
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3340
+ protected processDeleteCompanyUser(response: Response): Promise<void>;
3341
+ listRoles(): Promise<ExternalRoleDto[]>;
3342
+ protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
3343
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3344
+ protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
3345
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
3346
+ protected processDeleteCompanyCustomer(response: Response): Promise<void>;
3347
+ }
3348
+ export interface IExternalClient {
3349
+ listCompanies(): Promise<CompanyDto[]>;
3350
+ getCompany(id: string): Promise<CompanyDto>;
3351
+ getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3352
+ acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
3353
+ acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
3354
+ acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
3355
+ listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
3356
+ }
3357
+ export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
3358
+ private http;
3359
+ private baseUrl;
3360
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3361
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3362
+ });
3363
+ listCompanies(): Promise<CompanyDto[]>;
3364
+ protected processListCompanies(response: Response): Promise<CompanyDto[]>;
3365
+ getCompany(id: string): Promise<CompanyDto>;
3366
+ protected processGetCompany(response: Response): Promise<CompanyDto>;
3367
+ getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3368
+ protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3369
+ acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
3370
+ protected processAcceptSupplierInviteNewCompany(response: Response): Promise<SupplierInviteDto>;
3371
+ acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
3372
+ protected processAcceptSupplierInviteExistingCompany(response: Response): Promise<SupplierInviteDto>;
3373
+ acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
3374
+ protected processAcceptSupplierInviteCustomer(response: Response): Promise<SupplierInviteDto>;
3375
+ listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
3376
+ protected processListTenantsWithSuppliers(response: Response): Promise<TenantWithSupplierDto[]>;
3377
+ }
3378
+ export interface ISuppliersClient {
3379
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
3380
+ createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
3381
+ deleteSupplierInvite(id: string): Promise<void>;
3382
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
3383
+ deleteSupplier(id: string): Promise<void>;
3384
+ /**
3385
+ * Creates a mapping between old supplier id and new supplier id.
3386
+ */
3387
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3388
+ /**
3389
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
3390
+ */
3391
+ deleteSupplierMappings(): Promise<void>;
3392
+ }
3393
+ export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
3394
+ private http;
3395
+ private baseUrl;
3396
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3397
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3398
+ });
3399
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
3400
+ protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3401
+ createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
3402
+ protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3403
+ deleteSupplierInvite(id: string): Promise<void>;
3404
+ protected processDeleteSupplierInvite(response: Response): Promise<void>;
3405
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
3406
+ protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3407
+ deleteSupplier(id: string): Promise<void>;
3408
+ protected processDeleteSupplier(response: Response): Promise<void>;
3409
+ /**
3410
+ * Creates a mapping between old supplier id and new supplier id.
3411
+ */
3412
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3413
+ protected processCreateSupplierMapping(response: Response): Promise<void>;
3414
+ /**
3415
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
3416
+ */
3417
+ deleteSupplierMappings(): Promise<void>;
3418
+ protected processDeleteSupplierMappings(response: Response): Promise<void>;
3419
+ }
3420
3420
  export interface AzureRegionDto {
3421
3421
  displayName: string;
3422
3422
  name: string;
@@ -3720,6 +3720,9 @@ export interface UserDetailsDto {
3720
3720
  isExternalUser?: boolean;
3721
3721
  isBetaTester?: boolean | null;
3722
3722
  hasAccessToIgnos?: boolean;
3723
+ isInvitedUser?: boolean;
3724
+ isSupplier?: boolean;
3725
+ companyId?: string | null;
3723
3726
  }
3724
3727
  export interface UserDto {
3725
3728
  id?: string | null;
@@ -5595,124 +5598,33 @@ export interface DocumentGeneratorTypeDto {
5595
5598
  key: string;
5596
5599
  description: string;
5597
5600
  }
5598
- export interface CompanyUserDto {
5599
- companyId?: string | null;
5600
- username?: string | null;
5601
- name?: string | null;
5602
- roles?: string[] | null;
5603
- }
5604
- export interface CreateCompanyUserRequest {
5605
- username: string;
5606
- name: string;
5607
- roles: string[];
5608
- companyId?: string | null;
5609
- }
5610
- export interface UpdateCompanyUserRequest {
5611
- name: string;
5612
- roles: string[];
5613
- companyId?: string | null;
5614
- }
5615
- export interface ExternalRoleDto {
5601
+ export interface CncMachineTransferDto {
5616
5602
  id: string;
5617
- name: string;
5603
+ cncMachineOperationId?: string | null;
5604
+ cncMachineId: string;
5605
+ cncMachineName: string;
5606
+ direction: FileTransferDirection;
5607
+ files: string[];
5608
+ status: FileTransferStatus;
5609
+ statusMessage?: string | null;
5610
+ timestamp: Date;
5618
5611
  }
5619
- export interface CompanyCustomerDto {
5620
- customerTenantId?: string | null;
5621
- customerAzureAdTenantId?: string | null;
5622
- customerName?: string | null;
5623
- supplierId?: string | null;
5624
- supplierName?: string | null;
5612
+ export type FileTransferDirection = "FromCloud" | "ToCloud";
5613
+ export type FileTransferStatus = "InProgress" | "Success" | "Failed";
5614
+ export interface TransferToMachineRequest {
5615
+ programs?: ProgramSelectionRequest[] | null;
5625
5616
  }
5626
- export interface InviteDto {
5627
- tenantId: string;
5628
- companyName: string;
5629
- id: string;
5630
- supplierId: string;
5631
- supplierName: string;
5632
- username: string;
5633
- deadline: Date;
5634
- createdTime: Date;
5635
- createdBy: string;
5617
+ export interface ProgramSelectionRequest {
5618
+ id?: string;
5619
+ version?: number;
5636
5620
  }
5637
- export interface CompanyDto {
5638
- id?: string | null;
5639
- name?: string | null;
5640
- organizationNumber?: string | null;
5641
- country?: string | null;
5642
- tenantId?: string | null;
5621
+ export interface UploadCamFileDto {
5622
+ uploadUrl: string;
5623
+ path: string;
5624
+ url: string;
5643
5625
  }
5644
- export interface AcceptSupplierInviteRequest {
5645
- tenantId: string;
5646
- existingCompanyId?: string | null;
5647
- companyName?: string | null;
5648
- organizationNumber?: string | null;
5649
- threeLetterIsoCountry?: string | null;
5650
- }
5651
- export interface SupplierInviteDto {
5652
- id: string;
5653
- supplierId: string;
5654
- name: string;
5655
- username: string;
5656
- deadline: Date;
5657
- createdTime: Date;
5658
- createdBy: string;
5659
- }
5660
- export interface CreateSupplierInvite {
5661
- supplierId: string;
5662
- name: string;
5663
- username: string;
5664
- deadline: Date;
5665
- }
5666
- export interface ExternalSupplierDto {
5667
- id: string;
5668
- name: string;
5669
- companyId: string;
5670
- active: boolean;
5671
- }
5672
- export interface ImportSupplier {
5673
- supplierId: string;
5674
- name: string;
5675
- organizationNumber?: string | null;
5676
- threeLetterIsoCountry: string;
5677
- users: ImportSupplierUserDto[];
5678
- }
5679
- export interface ImportSupplierUserDto {
5680
- username: string;
5681
- name: string;
5682
- roles: string[];
5683
- }
5684
- export interface CreateSupplierMapping {
5685
- companyId: string;
5686
- existingSupplierId: string;
5687
- newSupplierId: string;
5688
- }
5689
- export interface CncMachineTransferDto {
5690
- id: string;
5691
- cncMachineOperationId?: string | null;
5692
- cncMachineId: string;
5693
- cncMachineName: string;
5694
- direction: FileTransferDirection;
5695
- files: string[];
5696
- status: FileTransferStatus;
5697
- statusMessage?: string | null;
5698
- timestamp: Date;
5699
- }
5700
- export type FileTransferDirection = "FromCloud" | "ToCloud";
5701
- export type FileTransferStatus = "InProgress" | "Success" | "Failed";
5702
- export interface TransferToMachineRequest {
5703
- programs?: ProgramSelectionRequest[] | null;
5704
- }
5705
- export interface ProgramSelectionRequest {
5706
- id?: string;
5707
- version?: number;
5708
- }
5709
- export interface UploadCamFileDto {
5710
- uploadUrl: string;
5711
- path: string;
5712
- url: string;
5713
- }
5714
- export interface UploadCamFileRequest {
5715
- filename: string;
5626
+ export interface UploadCamFileRequest {
5627
+ filename: string;
5716
5628
  }
5717
5629
  export interface CamTransferDto {
5718
5630
  path: string;
@@ -7647,202 +7559,11 @@ export interface WeldingIotConfigDto {
7647
7559
  }
7648
7560
  export interface CreateWeldingIotConfig {
7649
7561
  }
7650
- export interface ImaCdfEntityReadBase {
7651
- }
7652
- export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
7653
- certificateTypeId: string;
7654
- version: number;
7655
- allVersions: ImaCertificateTypeVersionDto[];
7656
- name: string;
7657
- revision: string;
7658
- status: ImaCertificateTypeStatus;
7659
- description?: string | null;
7660
- isStandardCertificateType: boolean;
7661
- created: Date;
7662
- createdBy: string;
7663
- createdById: string;
7664
- createdByName: string;
7665
- updatedBy: string;
7666
- updatedById: string;
7667
- updatedByName: string;
7668
- updated: Date;
7669
- isDeleted: boolean;
7670
- requirements: ImaCertificateTypeRequirementsDto;
7671
- }
7672
- export interface ImaCertificateTypeVersionDto {
7673
- version?: number;
7674
- status?: ImaCertificateTypeStatus;
7675
- }
7676
- export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7677
- export interface ImaCertificateTypeRequirementsDto {
7678
- manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
7679
- signature: ImaCertificateTypeSignatureRequirementsDto;
7680
- thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
7681
- certification: ImaCertificateTypeCertificationRequirementsDto;
7682
- productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
7683
- testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
7684
- testResults: ImaCertificateTypeTestResultsRequirementsDto;
7685
- documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
7686
- }
7687
- export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
7688
- manufacturer?: boolean;
7689
- address?: boolean;
7690
- contact?: boolean;
7691
- }
7692
- export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
7693
- certifiedBy?: boolean;
7694
- position?: boolean;
7695
- signature?: boolean;
7696
- date?: boolean;
7697
- stamp?: boolean;
7698
- }
7699
- export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
7700
- inspectionBody?: boolean;
7701
- inspectorName?: boolean;
7702
- position?: boolean;
7703
- verificationMethod?: boolean;
7704
- signature?: boolean;
7705
- date?: boolean;
7706
- stamp?: boolean;
7707
- }
7708
- export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
7709
- certificateOfCompliance?: boolean;
7710
- inspectionCertificate?: boolean;
7711
- }
7712
- export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
7713
- productDescription?: boolean;
7714
- materialGrade?: boolean;
7715
- customer?: boolean;
7716
- customerOrderNumber?: boolean;
7717
- dimensionsOrWeight?: boolean;
7718
- batchNumber?: boolean;
7719
- heatNumber?: boolean;
7720
- relatedStandards?: boolean;
7721
- }
7722
- export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
7723
- usedStandards?: boolean;
7724
- }
7725
- export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
7726
- mechanicalProperties?: boolean;
7727
- chemicalAnalysis?: boolean;
7728
- impactTests?: boolean;
7729
- corrosionTests?: boolean;
7730
- ferriteContentAndMicrostructure?: boolean;
7731
- }
7732
- export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
7733
- heatTreatmentCertificate?: boolean;
7734
- ultrasonicControlCertificate?: boolean;
7735
- liquidPenetrantCertificate?: boolean;
7736
- testReport?: boolean;
7737
- dimensionalReport?: boolean;
7738
- dyePenetrantReport?: boolean;
7739
- visualReport?: boolean;
7740
- certificateOfAnalyticalAndMechanicalTests?: boolean;
7741
- certificateOfTest?: boolean;
7742
- technicalReport?: boolean;
7743
- microExaminationReport?: boolean;
7744
- radiologicalReport?: boolean;
7745
- }
7746
- export interface ImaCreateOrCopyCertificateTypeRequestDto {
7747
- name: string;
7748
- revision: string;
7749
- description?: string | null;
7750
- }
7751
- export interface ImaUpdateImaCertificateTypeRequestDto {
7752
- name?: string | null;
7753
- revision?: string | null;
7754
- status?: ImaCertificateTypeStatus | null;
7755
- description?: string | null;
7756
- requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
7757
- }
7758
- export interface ImaCertificateTypeRequirementsUpdateDto {
7759
- manufacturer?: ImaCertificateTypeManufacturerRequirementsUpdateDto | null;
7760
- signature?: ImaCertificateTypeSignatureRequirementsUpdateDto | null;
7761
- thirdParty?: ImaCertificateTypeThirdPartyRequirementsUpdateDto | null;
7762
- certification?: ImaCertificateTypeCertificationRequirementsUpdateDto | null;
7763
- productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
7764
- testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
7765
- testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
7766
- documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
7767
- }
7768
- export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
7769
- manufacturer?: boolean | null;
7770
- address?: boolean | null;
7771
- contact?: boolean | null;
7772
- }
7773
- export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
7774
- certifiedBy?: boolean | null;
7775
- position?: boolean | null;
7776
- signature?: boolean | null;
7777
- date?: boolean | null;
7778
- stamp?: boolean | null;
7779
- }
7780
- export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
7781
- inspectionBody?: boolean | null;
7782
- inspectorName?: boolean | null;
7783
- position?: boolean | null;
7784
- verificationMethod?: boolean | null;
7785
- signature?: boolean | null;
7786
- date?: boolean | null;
7787
- stamp?: boolean | null;
7788
- }
7789
- export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
7790
- certificateOfCompliance?: boolean | null;
7791
- inspectionCertificate?: boolean | null;
7792
- }
7793
- export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
7794
- productDescription?: boolean | null;
7795
- materialGrade?: boolean | null;
7796
- customer?: boolean | null;
7797
- customerOrderNumber?: boolean | null;
7798
- dimensionsOrWeight?: boolean | null;
7799
- batchNumber?: boolean | null;
7800
- heatNumber?: boolean | null;
7801
- relatedStandards?: boolean | null;
7802
- }
7803
- export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
7804
- usedStandards?: boolean | null;
7805
- }
7806
- export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
7807
- mechanicalProperties?: boolean | null;
7808
- chemicalAnalysis?: boolean | null;
7809
- impactTests?: boolean | null;
7810
- corrosionTests?: boolean | null;
7811
- ferriteContentAndMicrostructure?: boolean | null;
7812
- }
7813
- export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
7814
- heatTreatmentCertificate?: boolean | null;
7815
- ultrasonicControlCertificate?: boolean | null;
7816
- liquidPenetrantCertificate?: boolean | null;
7817
- testReport?: boolean | null;
7818
- dimensionalReport?: boolean | null;
7819
- dyePenetrantReport?: boolean | null;
7820
- visualReport?: boolean | null;
7821
- certificateOfAnalyticalAndMechanicalTests?: boolean | null;
7822
- certificateOfTest?: boolean | null;
7823
- technicalReport?: boolean | null;
7824
- microExaminationReport?: boolean | null;
7825
- radiologicalReport?: boolean | null;
7826
- }
7827
- export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
7828
- certificateTypeId: string;
7829
- version: number;
7830
- name: string;
7831
- revision: string;
7832
- status: ImaCertificateTypeStatus;
7833
- description?: string | null;
7834
- isStandardCertificateType: boolean;
7835
- created: Date;
7836
- createdBy: string;
7837
- createdById: string;
7838
- createdByName: string;
7839
- updatedBy: string;
7840
- updatedById: string;
7841
- updatedByName: string;
7842
- updated: Date;
7843
- isDeleted: boolean;
7562
+ export interface ImaMaterialChecksPageDto {
7563
+ items: ImaMaterialCheckLiteDto[];
7564
+ continuationToken?: string | null;
7844
7565
  }
7845
- export interface ImaMaterialCheckDto {
7566
+ export interface ImaMaterialCheckLiteDto {
7846
7567
  materialCheckId: string;
7847
7568
  originalMaterialCertificate: FileDto;
7848
7569
  generatedMaterialCertificate?: FileDto | null;
@@ -7857,25 +7578,71 @@ export interface ImaMaterialCheckDto {
7857
7578
  specificationName: string;
7858
7579
  purchaseOrder?: string | null;
7859
7580
  purchaseOrderLine?: number | null;
7860
- purchaseOrderVendorBatches?: string[] | null;
7861
- purchaseOrderPartName?: string | null;
7862
- purchaseOrderPartNumber?: string | null;
7863
- purchaseOrderDrawing?: string | null;
7864
- heatNumber?: string | null;
7581
+ purchaseOrderItem?: string | null;
7582
+ purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
7583
+ purchaseOrderLot?: string | null;
7865
7584
  status: ImaMaterialCheckStatus;
7866
7585
  created: Date;
7867
7586
  createdBy: string;
7868
7587
  createdById: string;
7869
- createdByName: string;
7870
- updatedBy: string;
7871
- updatedById: string;
7872
- updatedByName: string;
7588
+ updatedBy?: string | null;
7589
+ updatedById?: string | null;
7873
7590
  isDeleted?: boolean;
7874
- certificateTypeResults: ImaCertificateTypeResultsDto;
7875
- specificationResults: ImaSpecificationResultsDto;
7876
7591
  }
7877
7592
  export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
7878
- export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
7593
+ export interface ImaMaterialChecksPageRequestDto {
7594
+ pageSize?: number | null;
7595
+ orderBy?: ImaMaterialChecksOrderByColumn | null;
7596
+ searchTerm?: string | null;
7597
+ originalReportFilter?: string | null;
7598
+ generatedReportFilter?: string | null;
7599
+ customerFilter?: string | null;
7600
+ projectFilter?: string | null;
7601
+ purchaseOrderFilter?: string | null;
7602
+ workOrderFilter?: string | null;
7603
+ certificateTypeFilter?: string | null;
7604
+ lineFilter?: string | null;
7605
+ itemFilter?: string | null;
7606
+ heatFilter?: string | null;
7607
+ lotFilter?: string | null;
7608
+ dateFromFilter?: Date | null;
7609
+ dateToFilter?: Date | null;
7610
+ statusFilter: ImaMaterialCheckStatus[];
7611
+ continuationToken?: string | null;
7612
+ }
7613
+ export type ImaMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
7614
+ export interface ImaMaterialCheckDto {
7615
+ materialCheckId: string;
7616
+ originalMaterialCertificate: FileDto;
7617
+ generatedMaterialCertificate?: FileDto | null;
7618
+ customer?: string | null;
7619
+ project?: string | null;
7620
+ workOrder?: string | null;
7621
+ certificateTypeId?: string | null;
7622
+ certificateTypeVersion?: number | null;
7623
+ certificateTypeName?: string | null;
7624
+ specificationId: string;
7625
+ specificationVersion: number;
7626
+ specificationName: string;
7627
+ purchaseOrder?: string | null;
7628
+ purchaseOrderLine?: number | null;
7629
+ purchaseOrderItem?: string | null;
7630
+ purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
7631
+ purchaseOrderLot?: string | null;
7632
+ status: ImaMaterialCheckStatus;
7633
+ created: Date;
7634
+ createdBy: string;
7635
+ createdById: string;
7636
+ updatedBy?: string | null;
7637
+ updatedById?: string | null;
7638
+ isDeleted?: boolean;
7639
+ certificateTypeResults: ImaCertificateTypeResultsDto;
7640
+ specificationChemistry: ImaSpecificationChemistryResultsDto;
7641
+ specificationMechanical: ImaSpecificationMechanicalResultsDto;
7642
+ specificationFerrite: ImaSpecificationFerriteResultsDto;
7643
+ specificationHeatTreatments: ImaSpecificationHeatTreatmentResultDto[];
7644
+ }
7645
+ export interface ImaCertificateTypeResultsDto {
7879
7646
  manufacturer: ImaCertificateTypeManufacturerResultsDto;
7880
7647
  signature: ImaCertificateTypeSignatureResultsDto;
7881
7648
  thirdParty: ImaCertificateTypeThirdPartyResultsDto;
@@ -7885,31 +7652,31 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
7885
7652
  testResults: ImaCertificateTypeTestResultsResultsDto;
7886
7653
  documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
7887
7654
  }
7888
- export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
7655
+ export interface ImaCertificateTypeManufacturerResultsDto {
7889
7656
  manufacturer?: ImaCertificateTypeResultLine | null;
7890
7657
  address?: ImaCertificateTypeResultLine | null;
7891
7658
  contact?: ImaCertificateTypeResultLine | null;
7892
7659
  }
7893
- export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
7660
+ export interface ImaCertificateTypeResultLine {
7894
7661
  found?: boolean;
7895
7662
  readValue?: string | null;
7896
7663
  override?: ImaResultLineOverrideDto | null;
7897
7664
  }
7898
- export interface ImaResultLineOverrideDto extends ImaCdfEntityReadBase {
7665
+ export interface ImaResultLineOverrideDto {
7899
7666
  approved: boolean;
7900
7667
  comment?: string | null;
7901
7668
  updated: Date;
7902
7669
  updatedBy: string;
7903
7670
  updatedById: string;
7904
7671
  }
7905
- export interface ImaCertificateTypeSignatureResultsDto extends ImaCdfEntityReadBase {
7672
+ export interface ImaCertificateTypeSignatureResultsDto {
7906
7673
  certifiedBy?: ImaCertificateTypeResultLine | null;
7907
7674
  position?: ImaCertificateTypeResultLine | null;
7908
7675
  signature?: ImaCertificateTypeResultLine | null;
7909
7676
  date?: ImaCertificateTypeResultLine | null;
7910
7677
  stamp?: ImaCertificateTypeResultLine | null;
7911
7678
  }
7912
- export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityReadBase {
7679
+ export interface ImaCertificateTypeThirdPartyResultsDto {
7913
7680
  inspectionBody?: ImaCertificateTypeResultLine | null;
7914
7681
  inspectorName?: ImaCertificateTypeResultLine | null;
7915
7682
  position?: ImaCertificateTypeResultLine | null;
@@ -7918,11 +7685,11 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
7918
7685
  date?: ImaCertificateTypeResultLine | null;
7919
7686
  stamp?: ImaCertificateTypeResultLine | null;
7920
7687
  }
7921
- export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
7688
+ export interface ImaCertificateTypeCertificationResultsDto {
7922
7689
  certificateOfCompliance?: ImaCertificateTypeResultLine | null;
7923
7690
  inspectionCertificate?: ImaCertificateTypeResultLine | null;
7924
7691
  }
7925
- export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
7692
+ export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
7926
7693
  productDescription?: ImaCertificateTypeResultLine | null;
7927
7694
  materialGrade?: ImaCertificateTypeResultLine | null;
7928
7695
  customer?: ImaCertificateTypeResultLine | null;
@@ -7932,17 +7699,17 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
7932
7699
  heatNumber?: ImaCertificateTypeResultLine | null;
7933
7700
  relatedStandards?: ImaCertificateTypeResultLine | null;
7934
7701
  }
7935
- export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
7702
+ export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
7936
7703
  usedStandards?: ImaCertificateTypeResultLine | null;
7937
7704
  }
7938
- export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
7705
+ export interface ImaCertificateTypeTestResultsResultsDto {
7939
7706
  mechanicalProperties?: ImaCertificateTypeResultLine | null;
7940
7707
  chemicalAnalysis?: ImaCertificateTypeResultLine | null;
7941
7708
  impactTests?: ImaCertificateTypeResultLine | null;
7942
7709
  corrosionTests?: ImaCertificateTypeResultLine | null;
7943
7710
  ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
7944
7711
  }
7945
- export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
7712
+ export interface ImaCertificateTypeDocumentTypesResultsDto {
7946
7713
  heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
7947
7714
  ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
7948
7715
  liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
@@ -7956,13 +7723,7 @@ export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityR
7956
7723
  microExaminationReport?: ImaCertificateTypeResultLine | null;
7957
7724
  radiologicalReport?: ImaCertificateTypeResultLine | null;
7958
7725
  }
7959
- export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
7960
- chemistry: ImaSpecificationChemistryResultsDto;
7961
- mechanical: ImaSpecificationMechanicalResultsDto;
7962
- ferrite: ImaSpecificationFerriteResultsDto;
7963
- heatTreatments: ImaSpecificationHeatTreatmentResultDto[];
7964
- }
7965
- export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
7726
+ export interface ImaSpecificationChemistryResultsDto {
7966
7727
  carbon?: ImaSpecificationResultLineDto | null;
7967
7728
  manganese?: ImaSpecificationResultLineDto | null;
7968
7729
  silicon?: ImaSpecificationResultLineDto | null;
@@ -7976,15 +7737,18 @@ export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBas
7976
7737
  wolfram?: ImaSpecificationResultLineDto | null;
7977
7738
  iron?: ImaSpecificationResultLineDto | null;
7978
7739
  }
7979
- export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
7980
- specificationMin?: number | null;
7981
- specificationMax?: number | null;
7740
+ export interface ImaSpecificationResultLineDto {
7741
+ specificationOperator?: string | null;
7742
+ specificationValue1?: number | null;
7743
+ specificationValue2?: number | null;
7744
+ specificationUnit?: ImaSpecificationUnit | null;
7982
7745
  readValue?: string | null;
7983
7746
  status: ImaSpecificationResultLineStatus;
7984
7747
  override?: ImaResultLineOverrideDto | null;
7985
7748
  }
7749
+ export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenheit" | "Mpa" | "Hbw" | "Minutes" | "NotSet";
7986
7750
  export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
7987
- export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBase {
7751
+ export interface ImaSpecificationMechanicalResultsDto {
7988
7752
  yieldStrength?: ImaSpecificationResultLineDto | null;
7989
7753
  tensileStrength?: ImaSpecificationResultLineDto | null;
7990
7754
  elongation?: ImaSpecificationResultLineDto | null;
@@ -7992,7 +7756,7 @@ export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBa
7992
7756
  impactEnergy?: ImaSpecificationResultLineDto | null;
7993
7757
  hardness?: ImaSpecificationResultLineDto | null;
7994
7758
  }
7995
- export interface ImaSpecificationFerriteResultsDto extends ImaCdfEntityReadBase {
7759
+ export interface ImaSpecificationFerriteResultsDto {
7996
7760
  ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
7997
7761
  }
7998
7762
  export interface ImaSpecificationFerriteResultLineDto {
@@ -8005,184 +7769,21 @@ export interface ImaSpecificationFerriteResultLineDto {
8005
7769
  override?: ImaResultLineOverrideDto | null;
8006
7770
  measurementMethod?: string | null;
8007
7771
  }
8008
- export interface ImaSpecificationHeatTreatmentResultDto extends ImaCdfEntityReadBase {
7772
+ export interface ImaSpecificationHeatTreatmentResultDto {
8009
7773
  step: number;
8010
7774
  cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
8011
7775
  heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
8012
7776
  }
8013
- export interface ImaSpecificationHeatTreatmentCoolingResult extends ImaCdfEntityReadBase {
7777
+ export interface ImaSpecificationHeatTreatmentCoolingResult {
8014
7778
  coolingMethods?: string[] | null;
8015
7779
  temperature?: ImaSpecificationResultLineDto | null;
8016
7780
  duration?: ImaSpecificationResultLineDto | null;
8017
7781
  }
8018
- export interface ImaSpecificationHeatTreatmentHeatingResult extends ImaCdfEntityReadBase {
7782
+ export interface ImaSpecificationHeatTreatmentHeatingResult {
8019
7783
  heatingMethod?: string | null;
8020
7784
  temperature?: ImaSpecificationResultLineDto | null;
8021
7785
  duration?: ImaSpecificationResultLineDto | null;
8022
7786
  }
8023
- export interface ImaOverrideMaterialCheckRequestDto {
8024
- certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
8025
- chemistrySpecificationSection?: ImaOverrideSpecificationChemistryResultsDto | null;
8026
- mechanicalSpecificationSection?: ImaOverrideSpecificationMechanicalResultsDto | null;
8027
- ferriteSpecificationSection?: ImaOverrideSpecificationFerriteResultsDto | null;
8028
- heatSpecificationSection?: ImaOverrideSpecificationHeatTreatmentResultsDto | null;
8029
- }
8030
- export interface ImaOverrideCertificateTypeResultsDto {
8031
- manufacturer?: ImaOverrideCertificateTypeManufacturerResultsDto | null;
8032
- signature?: ImaOverrideCertificateTypeSignatureResultsDto | null;
8033
- thirdParty?: ImaOverrideCertificateTypeThirdPartyResultsDto | null;
8034
- certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
8035
- productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
8036
- testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
8037
- testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
8038
- documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
8039
- }
8040
- export interface ImaOverrideCertificateTypeManufacturerResultsDto {
8041
- manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8042
- address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8043
- contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8044
- }
8045
- export interface ImaOverrideUpdateMaterialCheckResultLineDto {
8046
- approved?: boolean;
8047
- comment?: string | null;
8048
- }
8049
- export interface ImaOverrideCertificateTypeSignatureResultsDto {
8050
- certifiedBy?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8051
- position?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8052
- signature?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8053
- date?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8054
- stamp?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8055
- }
8056
- export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
8057
- inspectionBody?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8058
- inspectorName?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8059
- position?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8060
- verificationMethod?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8061
- signature?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8062
- date?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8063
- stamp?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8064
- }
8065
- export interface ImaOverrideCertificateTypeCertificationResultsDto {
8066
- certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8067
- inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8068
- }
8069
- export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto {
8070
- productDescription?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8071
- materialGrade?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8072
- customer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8073
- customerOrderNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8074
- dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8075
- batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8076
- heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8077
- relatedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8078
- }
8079
- export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
8080
- usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8081
- }
8082
- export interface ImaOverrideCertificateTypeTestResultsResultsDto {
8083
- mechanicalProperties?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8084
- chemicalAnalysis?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8085
- impactTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8086
- corrosionTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8087
- ferriteContentAndMicrostructure?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8088
- }
8089
- export interface ImaOverrideCertificateTypeDocumentTypesResultsDto {
8090
- heatTreatmentCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8091
- ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8092
- liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8093
- testReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8094
- dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8095
- dyePenetrantReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8096
- visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8097
- certificateOfAnalyticalAndMechanicalTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8098
- certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8099
- technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8100
- microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8101
- radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8102
- }
8103
- export interface ImaOverrideSpecificationChemistryResultsDto {
8104
- carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8105
- manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8106
- silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8107
- phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8108
- sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8109
- chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8110
- nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8111
- molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8112
- copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8113
- nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8114
- wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8115
- iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8116
- }
8117
- export interface ImaOverrideSpecificationMechanicalResultsDto {
8118
- yieldStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8119
- tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8120
- elongation?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8121
- reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8122
- impactEnergy?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8123
- hardness?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8124
- }
8125
- export interface ImaOverrideSpecificationFerriteResultsDto {
8126
- ferriteContent?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8127
- }
8128
- export interface ImaOverrideSpecificationHeatTreatmentResultsDto {
8129
- heatTreatmentOverrides?: ImaOverrideUpdateMaterialCheckResultLineDto[] | null;
8130
- }
8131
- export interface PagedResultOfImaMaterialCheckLiteDto {
8132
- results: ImaMaterialCheckLiteDto[];
8133
- continuationToken?: string | null;
8134
- }
8135
- export interface ImaMaterialCheckLiteDto {
8136
- materialCheckId: string;
8137
- originalMaterialCertificate: FileDto;
8138
- generatedMaterialCertificate?: FileDto | null;
8139
- customer?: string | null;
8140
- project?: string | null;
8141
- workOrder?: string | null;
8142
- certificateTypeId?: string | null;
8143
- certificateTypeVersion?: number | null;
8144
- certificateTypeName?: string | null;
8145
- specificationId: string;
8146
- specificationVersion: number;
8147
- specificationName: string;
8148
- purchaseOrder?: string | null;
8149
- purchaseOrderLine?: number | null;
8150
- purchaseOrderVendorBatches?: string[] | null;
8151
- purchaseOrderPartName?: string | null;
8152
- purchaseOrderPartNumber?: string | null;
8153
- purchaseOrderDrawing?: string | null;
8154
- heatNumber?: string | null;
8155
- status: ImaMaterialCheckStatus;
8156
- created: Date;
8157
- createdBy: string;
8158
- createdById: string;
8159
- createdByName: string;
8160
- updatedBy: string;
8161
- updatedById: string;
8162
- updatedByName: string;
8163
- isDeleted?: boolean;
8164
- }
8165
- export interface ImaMaterialChecksPageRequestDto {
8166
- pageSize?: number | null;
8167
- orderBy?: ImaMaterialChecksOrderByColumn | null;
8168
- searchTerm?: string | null;
8169
- originalReportFilter?: string | null;
8170
- generatedReportFilter?: string | null;
8171
- customerFilter?: string | null;
8172
- projectFilter?: string | null;
8173
- purchaseOrderFilter?: string | null;
8174
- workOrderFilter?: string | null;
8175
- certificateTypeFilter?: string | null;
8176
- lineFilter?: string | null;
8177
- itemFilter?: string | null;
8178
- heatFilter?: string | null;
8179
- lotFilter?: string | null;
8180
- dateFromFilter?: Date | null;
8181
- dateToFilter?: Date | null;
8182
- statusFilter?: ImaMaterialCheckStatus[] | null;
8183
- continuationToken?: string | null;
8184
- }
8185
- export type ImaMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
8186
7787
  export interface ProcessMaterialCertificate {
8187
7788
  files: UploadFileCdfDto[];
8188
7789
  specificationId: string;
@@ -8195,6 +7796,313 @@ export interface ProcessMaterialCertificate {
8195
7796
  export interface UploadFileCdfDto {
8196
7797
  id: number;
8197
7798
  }
7799
+ export interface ImaUpdateResultRequestDto {
7800
+ certificateId: string;
7801
+ project?: string | null;
7802
+ purchaseOrder?: string | null;
7803
+ workOrder?: string | null;
7804
+ certificateTypeSection: ImaUpdateCertificateTypeResultsDto;
7805
+ specificationChemistrySpecification: ImaUpdateSpecificationChemistryResultsDto;
7806
+ specificationMechanicalSpecification: ImaUpdateSpecificationMechanicalResultsDto;
7807
+ specificationFerriteSpecification: ImaUpdateSpecificationFerriteResultsDto;
7808
+ specificationHeatSpecification: ImaUpdateSpecificationHeatTreatmentResultsDto;
7809
+ }
7810
+ export interface ImaUpdateCertificateTypeResultsDto {
7811
+ manufacturer: ImaUpdateCertificateTypeManufacturerResultsDto;
7812
+ signature: ImaUpdateCertificateTypeSignatureResultsDto;
7813
+ thirdParty: ImaUpdateCertificateTypeThirdPartyResultsDto;
7814
+ certification: ImaUpdateCertificateTypeCertificationResultsDto;
7815
+ certificateTypeProductAndOrderInformation: ImaUpdateCertificateTypeProductAndOrderInformationResultsDto;
7816
+ testMethodsAndReferences: ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto;
7817
+ testResults: ImaUpdateCertificateTypeTestResultsResultsDto;
7818
+ documentTypes: ImaUpdateCertificateTypeDocumentTypesResultsDto;
7819
+ }
7820
+ export interface ImaUpdateCertificateTypeManufacturerResultsDto {
7821
+ manufacturer?: ImaUpdateCertificateTypeResultLine | null;
7822
+ address?: ImaUpdateCertificateTypeResultLine | null;
7823
+ contact?: ImaUpdateCertificateTypeResultLine | null;
7824
+ }
7825
+ export interface ImaUpdateCertificateTypeResultLine {
7826
+ approved?: boolean | null;
7827
+ comment?: string | null;
7828
+ }
7829
+ export interface ImaUpdateCertificateTypeSignatureResultsDto {
7830
+ certifiedBy?: ImaUpdateCertificateTypeResultLine | null;
7831
+ position?: ImaUpdateCertificateTypeResultLine | null;
7832
+ signature?: ImaUpdateCertificateTypeResultLine | null;
7833
+ date?: ImaUpdateCertificateTypeResultLine | null;
7834
+ stamp?: ImaUpdateCertificateTypeResultLine | null;
7835
+ }
7836
+ export interface ImaUpdateCertificateTypeThirdPartyResultsDto {
7837
+ inspectionBody?: ImaUpdateCertificateTypeResultLine | null;
7838
+ inspectorName?: ImaUpdateCertificateTypeResultLine | null;
7839
+ position?: ImaUpdateCertificateTypeResultLine | null;
7840
+ verificationMethod?: ImaUpdateCertificateTypeResultLine | null;
7841
+ signature?: ImaUpdateCertificateTypeResultLine | null;
7842
+ date?: ImaUpdateCertificateTypeResultLine | null;
7843
+ stamp?: ImaUpdateCertificateTypeResultLine | null;
7844
+ }
7845
+ export interface ImaUpdateCertificateTypeCertificationResultsDto {
7846
+ certificateOfCompliance?: ImaUpdateCertificateTypeResultLine | null;
7847
+ inspectionCertificate?: ImaUpdateCertificateTypeResultLine | null;
7848
+ }
7849
+ export interface ImaUpdateCertificateTypeProductAndOrderInformationResultsDto {
7850
+ productDescription?: ImaUpdateCertificateTypeResultLine | null;
7851
+ materialGrade?: ImaUpdateCertificateTypeResultLine | null;
7852
+ customer?: ImaUpdateCertificateTypeResultLine | null;
7853
+ customerOrderNumber?: ImaUpdateCertificateTypeResultLine | null;
7854
+ dimensionsOrWeight?: ImaUpdateCertificateTypeResultLine | null;
7855
+ batchNumber?: ImaUpdateCertificateTypeResultLine | null;
7856
+ heatNumber?: ImaUpdateCertificateTypeResultLine | null;
7857
+ relatedStandards?: ImaUpdateCertificateTypeResultLine | null;
7858
+ }
7859
+ export interface ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
7860
+ usedStandards?: ImaUpdateCertificateTypeResultLine | null;
7861
+ }
7862
+ export interface ImaUpdateCertificateTypeTestResultsResultsDto {
7863
+ mechanicalProperties?: ImaUpdateCertificateTypeResultLine | null;
7864
+ chemicalAnalysis?: ImaUpdateCertificateTypeResultLine | null;
7865
+ impactTests?: ImaUpdateCertificateTypeResultLine | null;
7866
+ corrosionTests?: ImaUpdateCertificateTypeResultLine | null;
7867
+ ferriteContentAndMicrostructure?: ImaUpdateCertificateTypeResultLine | null;
7868
+ }
7869
+ export interface ImaUpdateCertificateTypeDocumentTypesResultsDto {
7870
+ heatTreatmentCertificate?: ImaUpdateCertificateTypeResultLine | null;
7871
+ ultrasonicControlCertificate?: ImaUpdateCertificateTypeResultLine | null;
7872
+ liquidPenetrantCertificate?: ImaUpdateCertificateTypeResultLine | null;
7873
+ testReport?: ImaUpdateCertificateTypeResultLine | null;
7874
+ dimensionalReport?: ImaUpdateCertificateTypeResultLine | null;
7875
+ dyePenetrantReport?: ImaUpdateCertificateTypeResultLine | null;
7876
+ visualReport?: ImaUpdateCertificateTypeResultLine | null;
7877
+ certificateOfAnalyticalAndMechanicalTests?: ImaUpdateCertificateTypeResultLine | null;
7878
+ certificateOfTest?: ImaUpdateCertificateTypeResultLine | null;
7879
+ technicalReport?: ImaUpdateCertificateTypeResultLine | null;
7880
+ microExaminationReport?: ImaUpdateCertificateTypeResultLine | null;
7881
+ radiologicalReport?: ImaUpdateCertificateTypeResultLine | null;
7882
+ }
7883
+ export interface ImaUpdateSpecificationChemistryResultsDto {
7884
+ carbon?: ImaUpdateSpecificationResultLineDto | null;
7885
+ manganese?: ImaUpdateSpecificationResultLineDto | null;
7886
+ silicon?: ImaUpdateSpecificationResultLineDto | null;
7887
+ phosphorus?: ImaUpdateSpecificationResultLineDto | null;
7888
+ sulfur?: ImaUpdateSpecificationResultLineDto | null;
7889
+ chromium?: ImaUpdateSpecificationResultLineDto | null;
7890
+ nickel?: ImaUpdateSpecificationResultLineDto | null;
7891
+ molybdenum?: ImaUpdateSpecificationResultLineDto | null;
7892
+ copper?: ImaUpdateSpecificationResultLineDto | null;
7893
+ nitrogen?: ImaUpdateSpecificationResultLineDto | null;
7894
+ wolfram?: ImaUpdateSpecificationResultLineDto | null;
7895
+ iron?: ImaUpdateSpecificationResultLineDto | null;
7896
+ }
7897
+ export interface ImaUpdateSpecificationResultLineDto {
7898
+ approved?: boolean;
7899
+ comment?: string | null;
7900
+ }
7901
+ export interface ImaUpdateSpecificationMechanicalResultsDto {
7902
+ yieldStrength?: ImaUpdateSpecificationResultLineDto | null;
7903
+ tensileStrength?: ImaUpdateSpecificationResultLineDto | null;
7904
+ elongation?: ImaUpdateSpecificationResultLineDto | null;
7905
+ reductionOfArea?: ImaUpdateSpecificationResultLineDto | null;
7906
+ impactEnergy?: ImaUpdateSpecificationResultLineDto | null;
7907
+ hardness?: ImaUpdateSpecificationResultLineDto | null;
7908
+ }
7909
+ export interface ImaUpdateSpecificationFerriteResultsDto {
7910
+ ferriteContent?: ImaUpdateSpecificationResultLineDto | null;
7911
+ }
7912
+ export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
7913
+ heatTreatmentOverrides: (ImaUpdateSpecificationResultLineDto | null)[];
7914
+ }
7915
+ export interface ImaCdfEntityReadBase {
7916
+ }
7917
+ export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
7918
+ certificateTypeId: string;
7919
+ version: number;
7920
+ allVersions: ImaCertificateTypeVersionDto[];
7921
+ name: string;
7922
+ revision: string;
7923
+ status: ImaCertificateTypeStatus;
7924
+ description?: string | null;
7925
+ isStandardCertificateType: boolean;
7926
+ created: Date;
7927
+ createdBy: string;
7928
+ createdById: string;
7929
+ updatedBy?: string | null;
7930
+ updatedById?: string | null;
7931
+ updated: Date;
7932
+ isDeleted: boolean;
7933
+ requirements: ImaCertificateTypeRequirementsDto;
7934
+ }
7935
+ export interface ImaCertificateTypeVersionDto {
7936
+ version?: number;
7937
+ status?: ImaCertificateTypeStatus;
7938
+ }
7939
+ export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7940
+ export interface ImaCertificateTypeRequirementsDto {
7941
+ manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
7942
+ signature: ImaCertificateTypeSignatureRequirementsDto;
7943
+ thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
7944
+ certification: ImaCertificateTypeCertificationRequirementsDto;
7945
+ productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
7946
+ testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
7947
+ testResults: ImaCertificateTypeTestResultsRequirementsDto;
7948
+ documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
7949
+ }
7950
+ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
7951
+ manufacturer?: boolean;
7952
+ address?: boolean;
7953
+ contact?: boolean;
7954
+ }
7955
+ export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
7956
+ certifiedBy?: boolean;
7957
+ position?: boolean;
7958
+ signature?: boolean;
7959
+ date?: boolean;
7960
+ stamp?: boolean;
7961
+ }
7962
+ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
7963
+ inspectionBody?: boolean;
7964
+ inspectorName?: boolean;
7965
+ position?: boolean;
7966
+ verificationMethod?: boolean;
7967
+ signature?: boolean;
7968
+ date?: boolean;
7969
+ stamp?: boolean;
7970
+ }
7971
+ export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
7972
+ certificateOfCompliance?: boolean;
7973
+ inspectionCertificate?: boolean;
7974
+ }
7975
+ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
7976
+ productDescription?: boolean;
7977
+ materialGrade?: boolean;
7978
+ customer?: boolean;
7979
+ customerOrderNumber?: boolean;
7980
+ dimensionsOrWeight?: boolean;
7981
+ batchNumber?: boolean;
7982
+ heatNumber?: boolean;
7983
+ relatedStandards?: boolean;
7984
+ }
7985
+ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
7986
+ usedStandards?: boolean;
7987
+ }
7988
+ export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
7989
+ mechanicalProperties?: boolean;
7990
+ chemicalAnalysis?: boolean;
7991
+ impactTests?: boolean;
7992
+ corrosionTests?: boolean;
7993
+ ferriteContentAndMicrostructure?: boolean;
7994
+ }
7995
+ export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
7996
+ heatTreatmentCertificate?: boolean;
7997
+ ultrasonicControlCertificate?: boolean;
7998
+ liquidPenetrantCertificate?: boolean;
7999
+ testReport?: boolean;
8000
+ dimensionalReport?: boolean;
8001
+ dyePenetrantReport?: boolean;
8002
+ visualReport?: boolean;
8003
+ certificateOfAnalyticalAndMechanicalTests?: boolean;
8004
+ certificateOfTest?: boolean;
8005
+ technicalReport?: boolean;
8006
+ microExaminationReport?: boolean;
8007
+ radiologicalReport?: boolean;
8008
+ }
8009
+ export interface ImaCreateOrCopyCertificateTypeRequestDto {
8010
+ name: string;
8011
+ revision: string;
8012
+ description?: string | null;
8013
+ }
8014
+ export interface ImaUpdateImaCertificateTypeRequestDto {
8015
+ name?: string | null;
8016
+ revision?: string | null;
8017
+ status?: ImaCertificateTypeStatus | null;
8018
+ description?: string | null;
8019
+ requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
8020
+ }
8021
+ export interface ImaCertificateTypeRequirementsUpdateDto {
8022
+ manufacturer?: ImaCertificateTypeManufacturerRequirementsUpdateDto | null;
8023
+ signature?: ImaCertificateTypeSignatureRequirementsUpdateDto | null;
8024
+ thirdParty?: ImaCertificateTypeThirdPartyRequirementsUpdateDto | null;
8025
+ certification?: ImaCertificateTypeCertificationRequirementsUpdateDto | null;
8026
+ productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
8027
+ testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
8028
+ testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
8029
+ documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
8030
+ }
8031
+ export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
8032
+ manufacturer?: boolean | null;
8033
+ address?: boolean | null;
8034
+ contact?: boolean | null;
8035
+ }
8036
+ export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
8037
+ certifiedBy?: boolean | null;
8038
+ position?: boolean | null;
8039
+ signature?: boolean | null;
8040
+ date?: boolean | null;
8041
+ stamp?: boolean | null;
8042
+ }
8043
+ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
8044
+ inspectionBody?: boolean | null;
8045
+ inspectorName?: boolean | null;
8046
+ position?: boolean | null;
8047
+ verificationMethod?: boolean | null;
8048
+ signature?: boolean | null;
8049
+ date?: boolean | null;
8050
+ stamp?: boolean | null;
8051
+ }
8052
+ export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
8053
+ certificateOfCompliance?: boolean | null;
8054
+ inspectionCertificate?: boolean | null;
8055
+ }
8056
+ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
8057
+ productDescription?: boolean | null;
8058
+ materialGrade?: boolean | null;
8059
+ customer?: boolean | null;
8060
+ customerOrderNumber?: boolean | null;
8061
+ dimensionsOrWeight?: boolean | null;
8062
+ batchNumber?: boolean | null;
8063
+ heatNumber?: boolean | null;
8064
+ relatedStandards?: boolean | null;
8065
+ }
8066
+ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
8067
+ usedStandards?: boolean | null;
8068
+ }
8069
+ export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
8070
+ mechanicalProperties?: boolean | null;
8071
+ chemicalAnalysis?: boolean | null;
8072
+ impactTests?: boolean | null;
8073
+ corrosionTests?: boolean | null;
8074
+ ferriteContentAndMicrostructure?: boolean | null;
8075
+ }
8076
+ export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
8077
+ heatTreatmentCertificate?: boolean | null;
8078
+ ultrasonicControlCertificate?: boolean | null;
8079
+ liquidPenetrantCertificate?: boolean | null;
8080
+ testReport?: boolean | null;
8081
+ dimensionalReport?: boolean | null;
8082
+ dyePenetrantReport?: boolean | null;
8083
+ visualReport?: boolean | null;
8084
+ certificateOfAnalyticalAndMechanicalTests?: boolean | null;
8085
+ certificateOfTest?: boolean | null;
8086
+ technicalReport?: boolean | null;
8087
+ microExaminationReport?: boolean | null;
8088
+ radiologicalReport?: boolean | null;
8089
+ }
8090
+ export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
8091
+ certificateTypeId: string;
8092
+ version: number;
8093
+ name: string;
8094
+ revision: string;
8095
+ status: ImaCertificateTypeStatus;
8096
+ description?: string | null;
8097
+ isStandardCertificateType: boolean;
8098
+ created: Date;
8099
+ createdBy: string;
8100
+ createdById: string;
8101
+ updatedBy?: string | null;
8102
+ updatedById?: string | null;
8103
+ updated: Date;
8104
+ isDeleted: boolean;
8105
+ }
8198
8106
  export interface PurchaseOrderMaterialSearchResultsDto {
8199
8107
  purchaseOrders: string[];
8200
8108
  }
@@ -8248,10 +8156,8 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
8248
8156
  created: Date;
8249
8157
  createdBy: string;
8250
8158
  createdById: string;
8251
- createdByName: string;
8252
8159
  updatedBy: string;
8253
8160
  updatedById: string;
8254
- updatedByName: string;
8255
8161
  updated: Date;
8256
8162
  isDeleted: boolean;
8257
8163
  chemistrySpecification: ImaChemistrySpecificationDto;
@@ -8279,9 +8185,12 @@ export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
8279
8185
  iron?: ImaSpecificationLineDto | null;
8280
8186
  }
8281
8187
  export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
8282
- min?: number | null;
8283
- max?: number | null;
8188
+ operator: ImaSpecificationOperator;
8189
+ value1: number;
8190
+ value2?: number | null;
8191
+ unit: ImaSpecificationUnit;
8284
8192
  }
8193
+ export type ImaSpecificationOperator = "Min" | "Max" | "Between" | "NotSet";
8285
8194
  export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
8286
8195
  yieldStrength?: ImaSpecificationLineDto | null;
8287
8196
  tensileStrength?: ImaSpecificationLineDto | null;
@@ -8311,22 +8220,22 @@ export interface ImaHeatTreatmentSpecificationHeatingDto extends ImaCdfEntityRea
8311
8220
  }
8312
8221
  export type ImaHeatTreatmentHeatingMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
8313
8222
  export interface ImaCreateSpecificationRequestDto {
8314
- name: string;
8315
- number: string;
8223
+ specificationName: string;
8224
+ specificationNumber: string;
8316
8225
  revision: string;
8317
8226
  date: Date;
8318
8227
  specificationFile?: UploadFileDto | null;
8319
8228
  }
8320
8229
  export interface ImaCopySpecificationRequestDto {
8321
- name: string;
8322
- number: string;
8230
+ specificationName: string;
8231
+ specificationNumber: string;
8323
8232
  revision: string;
8324
8233
  date: Date;
8325
8234
  }
8326
8235
  export interface ImaUpdateSpecificationDto {
8327
8236
  name?: string | null;
8328
8237
  number?: string | null;
8329
- status?: ImaSpecificationStatus | null;
8238
+ status?: ImaSpecificationStatusUpdate | null;
8330
8239
  summary?: string | null;
8331
8240
  relatedStandards?: string[] | null;
8332
8241
  chemistrySpecification?: ImaChemistrySpecificationDto | null;
@@ -8334,6 +8243,7 @@ export interface ImaUpdateSpecificationDto {
8334
8243
  ferriteSpecification?: ImaFerriteSpecificationDto | null;
8335
8244
  heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
8336
8245
  }
8246
+ export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
8337
8247
  export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
8338
8248
  specificationId: string;
8339
8249
  version: number;
@@ -8347,10 +8257,8 @@ export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
8347
8257
  created: Date;
8348
8258
  createdBy: string;
8349
8259
  createdById: string;
8350
- createdByName: string;
8351
8260
  updatedBy: string;
8352
8261
  updatedById: string;
8353
- updatedByName: string;
8354
8262
  isDeleted: boolean;
8355
8263
  }
8356
8264
  export interface MeasurementFormSchemaDto {
@@ -8901,7 +8809,6 @@ export interface ListMeasurementFormsRequest {
8901
8809
  pageSize?: number | null;
8902
8810
  search?: string | null;
8903
8811
  continuationToken?: string | null;
8904
- tenantId?: string | null;
8905
8812
  inactive?: boolean | null;
8906
8813
  includeInactiveSupplierAccess?: boolean | null;
8907
8814
  }
@@ -9097,7 +9004,6 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
9097
9004
  externalOrderNumber?: string | null;
9098
9005
  }
9099
9006
  export interface ExportDimensionReportV2Request {
9100
- tenantId?: string | null;
9101
9007
  type: DimensionReportType;
9102
9008
  extras?: DimensionReportExtras | null;
9103
9009
  specificSerialNumbers?: string[] | null;
@@ -9438,6 +9344,90 @@ export interface SetDiscussionLastReadRequest {
9438
9344
  operationId?: string | null;
9439
9345
  resourceId?: string | null;
9440
9346
  }
9347
+ export interface CompanyUserDto {
9348
+ companyId: string;
9349
+ userObjectId: string;
9350
+ username?: string | null;
9351
+ name?: string | null;
9352
+ roles: string[];
9353
+ }
9354
+ export interface CreateCompanyUser {
9355
+ username: string;
9356
+ name: string;
9357
+ roles: string[];
9358
+ companyId?: string | null;
9359
+ }
9360
+ export interface UpdateCompanyUserRequest {
9361
+ roles: string[];
9362
+ companyId?: string | null;
9363
+ }
9364
+ export interface ExternalRoleDto {
9365
+ id: string;
9366
+ name: string;
9367
+ }
9368
+ export interface CompanyCustomerDto {
9369
+ customerTenantId?: string | null;
9370
+ customerAzureAdTenantId?: string | null;
9371
+ customerName?: string | null;
9372
+ supplierId?: string | null;
9373
+ supplierName?: string | null;
9374
+ customerIgnosPortalPrefix?: string | null;
9375
+ }
9376
+ export interface CompanyDto {
9377
+ id?: string;
9378
+ name?: string;
9379
+ organizationNumber?: string | null;
9380
+ country?: string;
9381
+ tenantId?: string | null;
9382
+ }
9383
+ export interface SupplierInviteDto {
9384
+ id: string;
9385
+ supplierId: string;
9386
+ supplierName?: string | null;
9387
+ customerName?: string | null;
9388
+ userId: string;
9389
+ userName?: string | null;
9390
+ deadline: Date;
9391
+ acceptedTimestamp?: Date | null;
9392
+ createdTime: Date;
9393
+ createdBy: string;
9394
+ }
9395
+ export interface AcceptSupplierInviteNewCompany {
9396
+ companyName?: string;
9397
+ organizationNumber?: string;
9398
+ threeLetterIsoCountry?: string;
9399
+ }
9400
+ export interface AcceptSupplierInviteExistingCompany {
9401
+ companyId?: string;
9402
+ }
9403
+ export interface AcceptSupplierInviteCustomer {
9404
+ tenantId?: string;
9405
+ organizationNumber?: string;
9406
+ }
9407
+ export interface TenantWithSupplierDto {
9408
+ tenantId: string;
9409
+ customerName: string;
9410
+ supplierTenantEntraId: string;
9411
+ }
9412
+ export interface CreateSupplierInviteRequest {
9413
+ supplierId: string;
9414
+ supplierName?: string | null;
9415
+ username: string;
9416
+ invitedName: string;
9417
+ deadline: Date;
9418
+ utcOffset?: number;
9419
+ }
9420
+ export interface ExternalSupplierDto {
9421
+ id: string;
9422
+ name: string;
9423
+ companyId: string;
9424
+ active: boolean;
9425
+ }
9426
+ export interface CreateSupplierMapping {
9427
+ companyId: string;
9428
+ existingSupplierId: string;
9429
+ newSupplierId: string;
9430
+ }
9441
9431
  export type FeatureCollectionType = "FeatureCollection";
9442
9432
  export interface Features {
9443
9433
  type: FeaturesType;