@ignos/api-client 20260417.113.1-alpha → 20260420.114.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>;
@@ -1494,6 +1491,99 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
1494
1491
  listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
1495
1492
  protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
1496
1493
  }
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
+ }
1497
1587
  export interface ICncFileTransferClient {
1498
1588
  startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1499
1589
  startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
@@ -2489,30 +2579,6 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
2489
2579
  deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
2490
2580
  protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
2491
2581
  }
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
- }
2516
2582
  export interface IInspectMatchCertificateTypesAdminClient {
2517
2583
  createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2518
2584
  copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
@@ -2555,6 +2621,42 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
2555
2621
  listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
2556
2622
  protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
2557
2623
  }
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
+ }
2558
2660
  export interface IInspectMatchPurchaseOrderClient {
2559
2661
  searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto>;
2560
2662
  getPurchaseOrderLines(purchaseOrder: string): Promise<PurchaseOrderMaterialLinesDto>;
@@ -2865,22 +2967,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
2865
2967
  protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
2866
2968
  }
2867
2969
  export interface IMeasurementFormsInstancesClient {
2868
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
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>;
2869
2971
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2870
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2972
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2871
2973
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
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[]>;
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[]>;
2877
2979
  getValidationRules(): Promise<ValidationRuleDto[]>;
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>;
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>;
2884
2986
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2885
2987
  upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
2886
2988
  removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
@@ -2896,37 +2998,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
2896
2998
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2897
2999
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2898
3000
  });
2899
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
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>;
2900
3002
  protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2901
3003
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2902
3004
  protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2903
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3005
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2904
3006
  protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2905
3007
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
2906
3008
  protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
2907
- completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3009
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2908
3010
  protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2909
- completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
3011
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2910
3012
  protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
2911
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3013
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2912
3014
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
2913
- getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
3015
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2914
3016
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
2915
- getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3017
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2916
3018
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
2917
3019
  getValidationRules(): Promise<ValidationRuleDto[]>;
2918
3020
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
2919
- saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3021
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2920
3022
  protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
2921
- saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3023
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2922
3024
  protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
2923
- saveComment(id: string, request: SaveCommentRequest): Promise<void>;
3025
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2924
3026
  protected processSaveComment(response: Response): Promise<void>;
2925
- batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3027
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2926
3028
  protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
2927
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3029
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2928
3030
  protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
2929
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3031
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2930
3032
  protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
2931
3033
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2932
3034
  protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
@@ -2951,7 +3053,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
2951
3053
  createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
2952
3054
  reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2953
3055
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2954
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3056
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2955
3057
  }
2956
3058
  export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
2957
3059
  private http;
@@ -2975,7 +3077,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
2975
3077
  protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2976
3078
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2977
3079
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2978
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3080
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2979
3081
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
2980
3082
  }
2981
3083
  export interface ICompaniesClient {
@@ -3315,108 +3417,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3315
3417
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3316
3418
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3317
3419
  }
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: CreateSupplierInvite): 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: CreateSupplierInvite): 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,9 +3720,6 @@ 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;
3726
3723
  }
3727
3724
  export interface UserDto {
3728
3725
  id?: string | null;
@@ -5598,40 +5595,131 @@ export interface DocumentGeneratorTypeDto {
5598
5595
  key: string;
5599
5596
  description: string;
5600
5597
  }
5601
- export interface CncMachineTransferDto {
5602
- id: 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;
5598
+ export interface CompanyUserDto {
5599
+ companyId?: string | null;
5600
+ username?: string | null;
5601
+ name?: string | null;
5602
+ roles?: string[] | null;
5611
5603
  }
5612
- export type FileTransferDirection = "FromCloud" | "ToCloud";
5613
- export type FileTransferStatus = "InProgress" | "Success" | "Failed";
5614
- export interface TransferToMachineRequest {
5615
- programs?: ProgramSelectionRequest[] | null;
5604
+ export interface CreateCompanyUserRequest {
5605
+ username: string;
5606
+ name: string;
5607
+ roles: string[];
5608
+ companyId?: string | null;
5616
5609
  }
5617
- export interface ProgramSelectionRequest {
5618
- id?: string;
5619
- version?: number;
5610
+ export interface UpdateCompanyUserRequest {
5611
+ name: string;
5612
+ roles: string[];
5613
+ companyId?: string | null;
5620
5614
  }
5621
- export interface UploadCamFileDto {
5622
- uploadUrl: string;
5623
- path: string;
5624
- url: string;
5615
+ export interface ExternalRoleDto {
5616
+ id: string;
5617
+ name: string;
5625
5618
  }
5626
- export interface UploadCamFileRequest {
5627
- filename: string;
5619
+ export interface CompanyCustomerDto {
5620
+ customerTenantId?: string | null;
5621
+ customerAzureAdTenantId?: string | null;
5622
+ customerName?: string | null;
5623
+ supplierId?: string | null;
5624
+ supplierName?: string | null;
5628
5625
  }
5629
- export interface CamTransferDto {
5630
- path: string;
5631
- content: string;
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;
5632
5636
  }
5633
- export interface StartCamTransferToMachine {
5634
- path: string;
5637
+ export interface CompanyDto {
5638
+ id?: string | null;
5639
+ name?: string | null;
5640
+ organizationNumber?: string | null;
5641
+ country?: string | null;
5642
+ tenantId?: string | null;
5643
+ }
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;
5716
+ }
5717
+ export interface CamTransferDto {
5718
+ path: string;
5719
+ content: string;
5720
+ }
5721
+ export interface StartCamTransferToMachine {
5722
+ path: string;
5635
5723
  content: string;
5636
5724
  cncMachineId: string;
5637
5725
  }
@@ -7559,438 +7647,87 @@ export interface WeldingIotConfigDto {
7559
7647
  }
7560
7648
  export interface CreateWeldingIotConfig {
7561
7649
  }
7562
- export interface ImaMaterialChecksPageDto {
7563
- items: ImaMaterialCheckLiteDto[];
7564
- continuationToken?: string | null;
7565
- }
7566
- export interface ImaMaterialCheckLiteDto {
7567
- materialCheckId: string;
7568
- originalMaterialCertificate: FileDto;
7569
- generatedMaterialCertificate?: FileDto | null;
7570
- customer?: string | null;
7571
- project?: string | null;
7572
- workOrder?: string | null;
7573
- certificateTypeId?: string | null;
7574
- certificateTypeVersion?: number | null;
7575
- certificateTypeName?: string | null;
7576
- specificationId: string;
7577
- specificationVersion: number;
7578
- specificationName: string;
7579
- purchaseOrder?: string | null;
7580
- purchaseOrderLine?: number | null;
7581
- purchaseOrderItem?: string | null;
7582
- purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
7583
- purchaseOrderLot?: string | null;
7584
- status: ImaMaterialCheckStatus;
7585
- created: Date;
7586
- createdBy: string;
7587
- createdById: string;
7588
- updatedBy?: string | null;
7589
- updatedById?: string | null;
7590
- isDeleted?: boolean;
7591
- }
7592
- export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
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;
7650
+ export interface ImaCdfEntityReadBase {
7612
7651
  }
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;
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;
7633
7661
  created: Date;
7634
7662
  createdBy: string;
7635
7663
  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[];
7664
+ createdByName: string;
7665
+ updatedBy: string;
7666
+ updatedById: string;
7667
+ updatedByName: string;
7668
+ updated: Date;
7669
+ isDeleted: boolean;
7670
+ requirements: ImaCertificateTypeRequirementsDto;
7644
7671
  }
7645
- export interface ImaCertificateTypeResultsDto {
7646
- manufacturer: ImaCertificateTypeManufacturerResultsDto;
7647
- signature: ImaCertificateTypeSignatureResultsDto;
7648
- thirdParty: ImaCertificateTypeThirdPartyResultsDto;
7649
- certification: ImaCertificateTypeCertificationResultsDto;
7650
- productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
7651
- testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
7652
- testResults: ImaCertificateTypeTestResultsResultsDto;
7653
- documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
7672
+ export interface ImaCertificateTypeVersionDto {
7673
+ version?: number;
7674
+ status?: ImaCertificateTypeStatus;
7654
7675
  }
7655
- export interface ImaCertificateTypeManufacturerResultsDto {
7656
- manufacturer?: ImaCertificateTypeResultLine | null;
7657
- address?: ImaCertificateTypeResultLine | null;
7658
- contact?: ImaCertificateTypeResultLine | null;
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;
7659
7686
  }
7660
- export interface ImaCertificateTypeResultLine {
7661
- found?: boolean;
7662
- readValue?: string | null;
7663
- override?: ImaResultLineOverrideDto | null;
7687
+ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
7688
+ manufacturer?: boolean;
7689
+ address?: boolean;
7690
+ contact?: boolean;
7664
7691
  }
7665
- export interface ImaResultLineOverrideDto {
7666
- approved: boolean;
7667
- comment?: string | null;
7668
- updated: Date;
7669
- updatedBy: string;
7670
- updatedById: string;
7692
+ export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
7693
+ certifiedBy?: boolean;
7694
+ position?: boolean;
7695
+ signature?: boolean;
7696
+ date?: boolean;
7697
+ stamp?: boolean;
7671
7698
  }
7672
- export interface ImaCertificateTypeSignatureResultsDto {
7673
- certifiedBy?: ImaCertificateTypeResultLine | null;
7674
- position?: ImaCertificateTypeResultLine | null;
7675
- signature?: ImaCertificateTypeResultLine | null;
7676
- date?: ImaCertificateTypeResultLine | null;
7677
- stamp?: ImaCertificateTypeResultLine | null;
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;
7678
7707
  }
7679
- export interface ImaCertificateTypeThirdPartyResultsDto {
7680
- inspectionBody?: ImaCertificateTypeResultLine | null;
7681
- inspectorName?: ImaCertificateTypeResultLine | null;
7682
- position?: ImaCertificateTypeResultLine | null;
7683
- verificationMethod?: ImaCertificateTypeResultLine | null;
7684
- signature?: ImaCertificateTypeResultLine | null;
7685
- date?: ImaCertificateTypeResultLine | null;
7686
- stamp?: ImaCertificateTypeResultLine | null;
7708
+ export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
7709
+ certificateOfCompliance?: boolean;
7710
+ inspectionCertificate?: boolean;
7687
7711
  }
7688
- export interface ImaCertificateTypeCertificationResultsDto {
7689
- certificateOfCompliance?: ImaCertificateTypeResultLine | null;
7690
- inspectionCertificate?: ImaCertificateTypeResultLine | null;
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;
7691
7721
  }
7692
- export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
7693
- productDescription?: ImaCertificateTypeResultLine | null;
7694
- materialGrade?: ImaCertificateTypeResultLine | null;
7695
- customer?: ImaCertificateTypeResultLine | null;
7696
- customerOrderNumber?: ImaCertificateTypeResultLine | null;
7697
- dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
7698
- batchNumber?: ImaCertificateTypeResultLine | null;
7699
- heatNumber?: ImaCertificateTypeResultLine | null;
7700
- relatedStandards?: ImaCertificateTypeResultLine | null;
7722
+ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
7723
+ usedStandards?: boolean;
7701
7724
  }
7702
- export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
7703
- usedStandards?: ImaCertificateTypeResultLine | null;
7704
- }
7705
- export interface ImaCertificateTypeTestResultsResultsDto {
7706
- mechanicalProperties?: ImaCertificateTypeResultLine | null;
7707
- chemicalAnalysis?: ImaCertificateTypeResultLine | null;
7708
- impactTests?: ImaCertificateTypeResultLine | null;
7709
- corrosionTests?: ImaCertificateTypeResultLine | null;
7710
- ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
7711
- }
7712
- export interface ImaCertificateTypeDocumentTypesResultsDto {
7713
- heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
7714
- ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
7715
- liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
7716
- testReport?: ImaCertificateTypeResultLine | null;
7717
- dimensionalReport?: ImaCertificateTypeResultLine | null;
7718
- dyePenetrantReport?: ImaCertificateTypeResultLine | null;
7719
- visualReport?: ImaCertificateTypeResultLine | null;
7720
- certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
7721
- certificateOfTest?: ImaCertificateTypeResultLine | null;
7722
- technicalReport?: ImaCertificateTypeResultLine | null;
7723
- microExaminationReport?: ImaCertificateTypeResultLine | null;
7724
- radiologicalReport?: ImaCertificateTypeResultLine | null;
7725
- }
7726
- export interface ImaSpecificationChemistryResultsDto {
7727
- carbon?: ImaSpecificationResultLineDto | null;
7728
- manganese?: ImaSpecificationResultLineDto | null;
7729
- silicon?: ImaSpecificationResultLineDto | null;
7730
- phosphorus?: ImaSpecificationResultLineDto | null;
7731
- sulfur?: ImaSpecificationResultLineDto | null;
7732
- chromium?: ImaSpecificationResultLineDto | null;
7733
- nickel?: ImaSpecificationResultLineDto | null;
7734
- molybdenum?: ImaSpecificationResultLineDto | null;
7735
- copper?: ImaSpecificationResultLineDto | null;
7736
- nitrogen?: ImaSpecificationResultLineDto | null;
7737
- wolfram?: ImaSpecificationResultLineDto | null;
7738
- iron?: ImaSpecificationResultLineDto | null;
7739
- }
7740
- export interface ImaSpecificationResultLineDto {
7741
- specificationOperator?: string | null;
7742
- specificationValue1?: number | null;
7743
- specificationValue2?: number | null;
7744
- specificationUnit?: ImaSpecificationUnit | null;
7745
- readValue?: string | null;
7746
- status: ImaSpecificationResultLineStatus;
7747
- override?: ImaResultLineOverrideDto | null;
7748
- }
7749
- export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenheit" | "Mpa" | "Hbw" | "Minutes" | "NotSet";
7750
- export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
7751
- export interface ImaSpecificationMechanicalResultsDto {
7752
- yieldStrength?: ImaSpecificationResultLineDto | null;
7753
- tensileStrength?: ImaSpecificationResultLineDto | null;
7754
- elongation?: ImaSpecificationResultLineDto | null;
7755
- reductionOfArea?: ImaSpecificationResultLineDto | null;
7756
- impactEnergy?: ImaSpecificationResultLineDto | null;
7757
- hardness?: ImaSpecificationResultLineDto | null;
7758
- }
7759
- export interface ImaSpecificationFerriteResultsDto {
7760
- ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
7761
- }
7762
- export interface ImaSpecificationFerriteResultLineDto {
7763
- specificationOperator?: string | null;
7764
- specificationValue1?: string | null;
7765
- specificationValue2?: string | null;
7766
- specificationSymbol?: string | null;
7767
- readValue?: string | null;
7768
- status: ImaSpecificationResultLineStatus;
7769
- override?: ImaResultLineOverrideDto | null;
7770
- measurementMethod?: string | null;
7771
- }
7772
- export interface ImaSpecificationHeatTreatmentResultDto {
7773
- step: number;
7774
- cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
7775
- heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
7776
- }
7777
- export interface ImaSpecificationHeatTreatmentCoolingResult {
7778
- coolingMethods?: string[] | null;
7779
- temperature?: ImaSpecificationResultLineDto | null;
7780
- duration?: ImaSpecificationResultLineDto | null;
7781
- }
7782
- export interface ImaSpecificationHeatTreatmentHeatingResult {
7783
- heatingMethod?: string | null;
7784
- temperature?: ImaSpecificationResultLineDto | null;
7785
- duration?: ImaSpecificationResultLineDto | null;
7786
- }
7787
- export interface ProcessMaterialCertificate {
7788
- files: UploadFileCdfDto[];
7789
- specificationId: string;
7790
- specificationVersion: number;
7791
- certificateTypeId?: string | null;
7792
- certificateTypeVersion?: number | null;
7793
- purchaseOrder?: string | null;
7794
- purchaseOrderLine?: number | null;
7795
- }
7796
- export interface UploadFileCdfDto {
7797
- id: number;
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;
7725
+ export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
7726
+ mechanicalProperties?: boolean;
7727
+ chemicalAnalysis?: boolean;
7728
+ impactTests?: boolean;
7729
+ corrosionTests?: boolean;
7730
+ ferriteContentAndMicrostructure?: boolean;
7994
7731
  }
7995
7732
  export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
7996
7733
  heatTreatmentCertificate?: boolean;
@@ -8098,11 +7835,366 @@ export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
8098
7835
  created: Date;
8099
7836
  createdBy: string;
8100
7837
  createdById: string;
8101
- updatedBy?: string | null;
8102
- updatedById?: string | null;
7838
+ createdByName: string;
7839
+ updatedBy: string;
7840
+ updatedById: string;
7841
+ updatedByName: string;
8103
7842
  updated: Date;
8104
7843
  isDeleted: boolean;
8105
7844
  }
7845
+ export interface ImaMaterialCheckDto {
7846
+ materialCheckId: string;
7847
+ originalMaterialCertificate: FileDto;
7848
+ generatedMaterialCertificate?: FileDto | null;
7849
+ customer?: string | null;
7850
+ project?: string | null;
7851
+ workOrder?: string | null;
7852
+ certificateTypeId?: string | null;
7853
+ certificateTypeVersion?: number | null;
7854
+ certificateTypeName?: string | null;
7855
+ specificationId: string;
7856
+ specificationVersion: number;
7857
+ specificationName: string;
7858
+ purchaseOrder?: string | null;
7859
+ purchaseOrderLine?: number | null;
7860
+ purchaseOrderVendorBatches?: string[] | null;
7861
+ purchaseOrderPartName?: string | null;
7862
+ purchaseOrderPartNumber?: string | null;
7863
+ purchaseOrderDrawing?: string | null;
7864
+ heatNumber?: string | null;
7865
+ status: ImaMaterialCheckStatus;
7866
+ created: Date;
7867
+ createdBy: string;
7868
+ createdById: string;
7869
+ createdByName: string;
7870
+ updatedBy: string;
7871
+ updatedById: string;
7872
+ updatedByName: string;
7873
+ isDeleted?: boolean;
7874
+ certificateTypeResults: ImaCertificateTypeResultsDto;
7875
+ specificationResults: ImaSpecificationResultsDto;
7876
+ }
7877
+ export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
7878
+ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
7879
+ manufacturer: ImaCertificateTypeManufacturerResultsDto;
7880
+ signature: ImaCertificateTypeSignatureResultsDto;
7881
+ thirdParty: ImaCertificateTypeThirdPartyResultsDto;
7882
+ certification: ImaCertificateTypeCertificationResultsDto;
7883
+ productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
7884
+ testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
7885
+ testResults: ImaCertificateTypeTestResultsResultsDto;
7886
+ documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
7887
+ }
7888
+ export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
7889
+ manufacturer?: ImaCertificateTypeResultLine | null;
7890
+ address?: ImaCertificateTypeResultLine | null;
7891
+ contact?: ImaCertificateTypeResultLine | null;
7892
+ }
7893
+ export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
7894
+ found?: boolean;
7895
+ readValue?: string | null;
7896
+ override?: ImaResultLineOverrideDto | null;
7897
+ }
7898
+ export interface ImaResultLineOverrideDto extends ImaCdfEntityReadBase {
7899
+ approved: boolean;
7900
+ comment?: string | null;
7901
+ updated: Date;
7902
+ updatedBy: string;
7903
+ updatedById: string;
7904
+ }
7905
+ export interface ImaCertificateTypeSignatureResultsDto extends ImaCdfEntityReadBase {
7906
+ certifiedBy?: ImaCertificateTypeResultLine | null;
7907
+ position?: ImaCertificateTypeResultLine | null;
7908
+ signature?: ImaCertificateTypeResultLine | null;
7909
+ date?: ImaCertificateTypeResultLine | null;
7910
+ stamp?: ImaCertificateTypeResultLine | null;
7911
+ }
7912
+ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityReadBase {
7913
+ inspectionBody?: ImaCertificateTypeResultLine | null;
7914
+ inspectorName?: ImaCertificateTypeResultLine | null;
7915
+ position?: ImaCertificateTypeResultLine | null;
7916
+ verificationMethod?: ImaCertificateTypeResultLine | null;
7917
+ signature?: ImaCertificateTypeResultLine | null;
7918
+ date?: ImaCertificateTypeResultLine | null;
7919
+ stamp?: ImaCertificateTypeResultLine | null;
7920
+ }
7921
+ export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
7922
+ certificateOfCompliance?: ImaCertificateTypeResultLine | null;
7923
+ inspectionCertificate?: ImaCertificateTypeResultLine | null;
7924
+ }
7925
+ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
7926
+ productDescription?: ImaCertificateTypeResultLine | null;
7927
+ materialGrade?: ImaCertificateTypeResultLine | null;
7928
+ customer?: ImaCertificateTypeResultLine | null;
7929
+ customerOrderNumber?: ImaCertificateTypeResultLine | null;
7930
+ dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
7931
+ batchNumber?: ImaCertificateTypeResultLine | null;
7932
+ heatNumber?: ImaCertificateTypeResultLine | null;
7933
+ relatedStandards?: ImaCertificateTypeResultLine | null;
7934
+ }
7935
+ export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
7936
+ usedStandards?: ImaCertificateTypeResultLine | null;
7937
+ }
7938
+ export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
7939
+ mechanicalProperties?: ImaCertificateTypeResultLine | null;
7940
+ chemicalAnalysis?: ImaCertificateTypeResultLine | null;
7941
+ impactTests?: ImaCertificateTypeResultLine | null;
7942
+ corrosionTests?: ImaCertificateTypeResultLine | null;
7943
+ ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
7944
+ }
7945
+ export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
7946
+ heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
7947
+ ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
7948
+ liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
7949
+ testReport?: ImaCertificateTypeResultLine | null;
7950
+ dimensionalReport?: ImaCertificateTypeResultLine | null;
7951
+ dyePenetrantReport?: ImaCertificateTypeResultLine | null;
7952
+ visualReport?: ImaCertificateTypeResultLine | null;
7953
+ certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
7954
+ certificateOfTest?: ImaCertificateTypeResultLine | null;
7955
+ technicalReport?: ImaCertificateTypeResultLine | null;
7956
+ microExaminationReport?: ImaCertificateTypeResultLine | null;
7957
+ radiologicalReport?: ImaCertificateTypeResultLine | null;
7958
+ }
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 {
7966
+ carbon?: ImaSpecificationResultLineDto | null;
7967
+ manganese?: ImaSpecificationResultLineDto | null;
7968
+ silicon?: ImaSpecificationResultLineDto | null;
7969
+ phosphorus?: ImaSpecificationResultLineDto | null;
7970
+ sulfur?: ImaSpecificationResultLineDto | null;
7971
+ chromium?: ImaSpecificationResultLineDto | null;
7972
+ nickel?: ImaSpecificationResultLineDto | null;
7973
+ molybdenum?: ImaSpecificationResultLineDto | null;
7974
+ copper?: ImaSpecificationResultLineDto | null;
7975
+ nitrogen?: ImaSpecificationResultLineDto | null;
7976
+ wolfram?: ImaSpecificationResultLineDto | null;
7977
+ iron?: ImaSpecificationResultLineDto | null;
7978
+ }
7979
+ export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
7980
+ specificationMin?: number | null;
7981
+ specificationMax?: number | null;
7982
+ readValue?: string | null;
7983
+ status: ImaSpecificationResultLineStatus;
7984
+ override?: ImaResultLineOverrideDto | null;
7985
+ }
7986
+ export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
7987
+ export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBase {
7988
+ yieldStrength?: ImaSpecificationResultLineDto | null;
7989
+ tensileStrength?: ImaSpecificationResultLineDto | null;
7990
+ elongation?: ImaSpecificationResultLineDto | null;
7991
+ reductionOfArea?: ImaSpecificationResultLineDto | null;
7992
+ impactEnergy?: ImaSpecificationResultLineDto | null;
7993
+ hardness?: ImaSpecificationResultLineDto | null;
7994
+ }
7995
+ export interface ImaSpecificationFerriteResultsDto extends ImaCdfEntityReadBase {
7996
+ ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
7997
+ }
7998
+ export interface ImaSpecificationFerriteResultLineDto {
7999
+ specificationOperator?: string | null;
8000
+ specificationValue1?: string | null;
8001
+ specificationValue2?: string | null;
8002
+ specificationSymbol?: string | null;
8003
+ readValue?: string | null;
8004
+ status: ImaSpecificationResultLineStatus;
8005
+ override?: ImaResultLineOverrideDto | null;
8006
+ measurementMethod?: string | null;
8007
+ }
8008
+ export interface ImaSpecificationHeatTreatmentResultDto extends ImaCdfEntityReadBase {
8009
+ step: number;
8010
+ cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
8011
+ heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
8012
+ }
8013
+ export interface ImaSpecificationHeatTreatmentCoolingResult extends ImaCdfEntityReadBase {
8014
+ coolingMethods?: string[] | null;
8015
+ temperature?: ImaSpecificationResultLineDto | null;
8016
+ duration?: ImaSpecificationResultLineDto | null;
8017
+ }
8018
+ export interface ImaSpecificationHeatTreatmentHeatingResult extends ImaCdfEntityReadBase {
8019
+ heatingMethod?: string | null;
8020
+ temperature?: ImaSpecificationResultLineDto | null;
8021
+ duration?: ImaSpecificationResultLineDto | null;
8022
+ }
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
+ export interface ProcessMaterialCertificate {
8187
+ files: UploadFileCdfDto[];
8188
+ specificationId: string;
8189
+ specificationVersion: number;
8190
+ certificateTypeId?: string | null;
8191
+ certificateTypeVersion?: number | null;
8192
+ purchaseOrder?: string | null;
8193
+ purchaseOrderLine?: number | null;
8194
+ }
8195
+ export interface UploadFileCdfDto {
8196
+ id: number;
8197
+ }
8106
8198
  export interface PurchaseOrderMaterialSearchResultsDto {
8107
8199
  purchaseOrders: string[];
8108
8200
  }
@@ -8156,8 +8248,10 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
8156
8248
  created: Date;
8157
8249
  createdBy: string;
8158
8250
  createdById: string;
8251
+ createdByName: string;
8159
8252
  updatedBy: string;
8160
8253
  updatedById: string;
8254
+ updatedByName: string;
8161
8255
  updated: Date;
8162
8256
  isDeleted: boolean;
8163
8257
  chemistrySpecification: ImaChemistrySpecificationDto;
@@ -8185,12 +8279,9 @@ export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
8185
8279
  iron?: ImaSpecificationLineDto | null;
8186
8280
  }
8187
8281
  export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
8188
- operator: ImaSpecificationOperator;
8189
- value1: number;
8190
- value2?: number | null;
8191
- unit: ImaSpecificationUnit;
8282
+ min?: number | null;
8283
+ max?: number | null;
8192
8284
  }
8193
- export type ImaSpecificationOperator = "Min" | "Max" | "Between" | "NotSet";
8194
8285
  export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
8195
8286
  yieldStrength?: ImaSpecificationLineDto | null;
8196
8287
  tensileStrength?: ImaSpecificationLineDto | null;
@@ -8220,22 +8311,22 @@ export interface ImaHeatTreatmentSpecificationHeatingDto extends ImaCdfEntityRea
8220
8311
  }
8221
8312
  export type ImaHeatTreatmentHeatingMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
8222
8313
  export interface ImaCreateSpecificationRequestDto {
8223
- specificationName: string;
8224
- specificationNumber: string;
8314
+ name: string;
8315
+ number: string;
8225
8316
  revision: string;
8226
8317
  date: Date;
8227
8318
  specificationFile?: UploadFileDto | null;
8228
8319
  }
8229
8320
  export interface ImaCopySpecificationRequestDto {
8230
- specificationName: string;
8231
- specificationNumber: string;
8321
+ name: string;
8322
+ number: string;
8232
8323
  revision: string;
8233
8324
  date: Date;
8234
8325
  }
8235
8326
  export interface ImaUpdateSpecificationDto {
8236
8327
  name?: string | null;
8237
8328
  number?: string | null;
8238
- status?: ImaSpecificationStatusUpdate | null;
8329
+ status?: ImaSpecificationStatus | null;
8239
8330
  summary?: string | null;
8240
8331
  relatedStandards?: string[] | null;
8241
8332
  chemistrySpecification?: ImaChemistrySpecificationDto | null;
@@ -8243,7 +8334,6 @@ export interface ImaUpdateSpecificationDto {
8243
8334
  ferriteSpecification?: ImaFerriteSpecificationDto | null;
8244
8335
  heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
8245
8336
  }
8246
- export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
8247
8337
  export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
8248
8338
  specificationId: string;
8249
8339
  version: number;
@@ -8257,8 +8347,10 @@ export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
8257
8347
  created: Date;
8258
8348
  createdBy: string;
8259
8349
  createdById: string;
8350
+ createdByName: string;
8260
8351
  updatedBy: string;
8261
8352
  updatedById: string;
8353
+ updatedByName: string;
8262
8354
  isDeleted: boolean;
8263
8355
  }
8264
8356
  export interface MeasurementFormSchemaDto {
@@ -8809,6 +8901,7 @@ export interface ListMeasurementFormsRequest {
8809
8901
  pageSize?: number | null;
8810
8902
  search?: string | null;
8811
8903
  continuationToken?: string | null;
8904
+ tenantId?: string | null;
8812
8905
  inactive?: boolean | null;
8813
8906
  includeInactiveSupplierAccess?: boolean | null;
8814
8907
  }
@@ -9004,6 +9097,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
9004
9097
  externalOrderNumber?: string | null;
9005
9098
  }
9006
9099
  export interface ExportDimensionReportV2Request {
9100
+ tenantId?: string | null;
9007
9101
  type: DimensionReportType;
9008
9102
  extras?: DimensionReportExtras | null;
9009
9103
  specificSerialNumbers?: string[] | null;
@@ -9344,89 +9438,6 @@ export interface SetDiscussionLastReadRequest {
9344
9438
  operationId?: string | null;
9345
9439
  resourceId?: string | null;
9346
9440
  }
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 CreateSupplierInvite {
9413
- supplierId: string;
9414
- supplierName?: string | null;
9415
- username: string;
9416
- invitedName: string;
9417
- deadline: Date;
9418
- }
9419
- export interface ExternalSupplierDto {
9420
- id: string;
9421
- name: string;
9422
- companyId: string;
9423
- active: boolean;
9424
- }
9425
- export interface CreateSupplierMapping {
9426
- companyId: string;
9427
- existingSupplierId: string;
9428
- newSupplierId: string;
9429
- }
9430
9441
  export type FeatureCollectionType = "FeatureCollection";
9431
9442
  export interface Features {
9432
9443
  type: FeaturesType;