@ignos/api-client 20260417.112.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,105 +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
- }
3356
- export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
3357
- private http;
3358
- private baseUrl;
3359
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3360
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3361
- });
3362
- listCompanies(): Promise<CompanyDto[]>;
3363
- protected processListCompanies(response: Response): Promise<CompanyDto[]>;
3364
- getCompany(id: string): Promise<CompanyDto>;
3365
- protected processGetCompany(response: Response): Promise<CompanyDto>;
3366
- getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3367
- protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3368
- acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
3369
- protected processAcceptSupplierInviteNewCompany(response: Response): Promise<SupplierInviteDto>;
3370
- acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
3371
- protected processAcceptSupplierInviteExistingCompany(response: Response): Promise<SupplierInviteDto>;
3372
- acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
3373
- protected processAcceptSupplierInviteCustomer(response: Response): Promise<SupplierInviteDto>;
3374
- }
3375
- export interface ISuppliersClient {
3376
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3377
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3378
- deleteSupplierInvite(id: string): Promise<void>;
3379
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3380
- deleteSupplier(id: string): Promise<void>;
3381
- /**
3382
- * Creates a mapping between old supplier id and new supplier id.
3383
- */
3384
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3385
- /**
3386
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3387
- */
3388
- deleteSupplierMappings(): Promise<void>;
3389
- }
3390
- export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
3391
- private http;
3392
- private baseUrl;
3393
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3394
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3395
- });
3396
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3397
- protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3398
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3399
- protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3400
- deleteSupplierInvite(id: string): Promise<void>;
3401
- protected processDeleteSupplierInvite(response: Response): Promise<void>;
3402
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3403
- protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3404
- deleteSupplier(id: string): Promise<void>;
3405
- protected processDeleteSupplier(response: Response): Promise<void>;
3406
- /**
3407
- * Creates a mapping between old supplier id and new supplier id.
3408
- */
3409
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3410
- protected processCreateSupplierMapping(response: Response): Promise<void>;
3411
- /**
3412
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3413
- */
3414
- deleteSupplierMappings(): Promise<void>;
3415
- protected processDeleteSupplierMappings(response: Response): Promise<void>;
3416
- }
3417
3420
  export interface AzureRegionDto {
3418
3421
  displayName: string;
3419
3422
  name: string;
@@ -3717,9 +3720,6 @@ export interface UserDetailsDto {
3717
3720
  isExternalUser?: boolean;
3718
3721
  isBetaTester?: boolean | null;
3719
3722
  hasAccessToIgnos?: boolean;
3720
- isInvitedUser?: boolean;
3721
- isSupplier?: boolean;
3722
- companyId?: string | null;
3723
3723
  }
3724
3724
  export interface UserDto {
3725
3725
  id?: string | null;
@@ -5595,41 +5595,132 @@ export interface DocumentGeneratorTypeDto {
5595
5595
  key: string;
5596
5596
  description: string;
5597
5597
  }
5598
- export interface CncMachineTransferDto {
5599
- id: string;
5600
- cncMachineOperationId?: string | null;
5601
- cncMachineId: string;
5602
- cncMachineName: string;
5603
- direction: FileTransferDirection;
5604
- files: string[];
5605
- status: FileTransferStatus;
5606
- statusMessage?: string | null;
5607
- timestamp: Date;
5598
+ export interface CompanyUserDto {
5599
+ companyId?: string | null;
5600
+ username?: string | null;
5601
+ name?: string | null;
5602
+ roles?: string[] | null;
5608
5603
  }
5609
- export type FileTransferDirection = "FromCloud" | "ToCloud";
5610
- export type FileTransferStatus = "InProgress" | "Success" | "Failed";
5611
- export interface TransferToMachineRequest {
5612
- programs?: ProgramSelectionRequest[] | null;
5604
+ export interface CreateCompanyUserRequest {
5605
+ username: string;
5606
+ name: string;
5607
+ roles: string[];
5608
+ companyId?: string | null;
5613
5609
  }
5614
- export interface ProgramSelectionRequest {
5615
- id?: string;
5616
- version?: number;
5610
+ export interface UpdateCompanyUserRequest {
5611
+ name: string;
5612
+ roles: string[];
5613
+ companyId?: string | null;
5617
5614
  }
5618
- export interface UploadCamFileDto {
5619
- uploadUrl: string;
5620
- path: string;
5621
- url: string;
5615
+ export interface ExternalRoleDto {
5616
+ id: string;
5617
+ name: string;
5622
5618
  }
5623
- export interface UploadCamFileRequest {
5624
- 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;
5625
5625
  }
5626
- export interface CamTransferDto {
5627
- path: string;
5628
- 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;
5629
5636
  }
5630
- export interface StartCamTransferToMachine {
5631
- path: string;
5632
- content: 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;
5723
+ content: string;
5633
5724
  cncMachineId: string;
5634
5725
  }
5635
5726
  export interface StartCamTransferToMachineFromTempUpload {
@@ -7556,438 +7647,87 @@ export interface WeldingIotConfigDto {
7556
7647
  }
7557
7648
  export interface CreateWeldingIotConfig {
7558
7649
  }
7559
- export interface ImaMaterialChecksPageDto {
7560
- items: ImaMaterialCheckLiteDto[];
7561
- continuationToken?: string | null;
7562
- }
7563
- export interface ImaMaterialCheckLiteDto {
7564
- materialCheckId: string;
7565
- originalMaterialCertificate: FileDto;
7566
- generatedMaterialCertificate?: FileDto | null;
7567
- customer?: string | null;
7568
- project?: string | null;
7569
- workOrder?: string | null;
7570
- certificateTypeId?: string | null;
7571
- certificateTypeVersion?: number | null;
7572
- certificateTypeName?: string | null;
7573
- specificationId: string;
7574
- specificationVersion: number;
7575
- specificationName: string;
7576
- purchaseOrder?: string | null;
7577
- purchaseOrderLine?: number | null;
7578
- purchaseOrderItem?: string | null;
7579
- purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
7580
- purchaseOrderLot?: string | null;
7581
- status: ImaMaterialCheckStatus;
7582
- created: Date;
7583
- createdBy: string;
7584
- createdById: string;
7585
- updatedBy?: string | null;
7586
- updatedById?: string | null;
7587
- isDeleted?: boolean;
7588
- }
7589
- export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
7590
- export interface ImaMaterialChecksPageRequestDto {
7591
- pageSize?: number | null;
7592
- orderBy?: ImaMaterialChecksOrderByColumn | null;
7593
- searchTerm?: string | null;
7594
- originalReportFilter?: string | null;
7595
- generatedReportFilter?: string | null;
7596
- customerFilter?: string | null;
7597
- projectFilter?: string | null;
7598
- purchaseOrderFilter?: string | null;
7599
- workOrderFilter?: string | null;
7600
- certificateTypeFilter?: string | null;
7601
- lineFilter?: string | null;
7602
- itemFilter?: string | null;
7603
- heatFilter?: string | null;
7604
- lotFilter?: string | null;
7605
- dateFromFilter?: Date | null;
7606
- dateToFilter?: Date | null;
7607
- statusFilter: ImaMaterialCheckStatus[];
7608
- continuationToken?: string | null;
7650
+ export interface ImaCdfEntityReadBase {
7609
7651
  }
7610
- export type ImaMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
7611
- export interface ImaMaterialCheckDto {
7612
- materialCheckId: string;
7613
- originalMaterialCertificate: FileDto;
7614
- generatedMaterialCertificate?: FileDto | null;
7615
- customer?: string | null;
7616
- project?: string | null;
7617
- workOrder?: string | null;
7618
- certificateTypeId?: string | null;
7619
- certificateTypeVersion?: number | null;
7620
- certificateTypeName?: string | null;
7621
- specificationId: string;
7622
- specificationVersion: number;
7623
- specificationName: string;
7624
- purchaseOrder?: string | null;
7625
- purchaseOrderLine?: number | null;
7626
- purchaseOrderItem?: string | null;
7627
- purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
7628
- purchaseOrderLot?: string | null;
7629
- 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;
7630
7661
  created: Date;
7631
7662
  createdBy: string;
7632
7663
  createdById: string;
7633
- updatedBy?: string | null;
7634
- updatedById?: string | null;
7635
- isDeleted?: boolean;
7636
- certificateTypeResults: ImaCertificateTypeResultsDto;
7637
- specificationChemistry: ImaSpecificationChemistryResultsDto;
7638
- specificationMechanical: ImaSpecificationMechanicalResultsDto;
7639
- specificationFerrite: ImaSpecificationFerriteResultsDto;
7640
- specificationHeatTreatments: ImaSpecificationHeatTreatmentResultDto[];
7664
+ createdByName: string;
7665
+ updatedBy: string;
7666
+ updatedById: string;
7667
+ updatedByName: string;
7668
+ updated: Date;
7669
+ isDeleted: boolean;
7670
+ requirements: ImaCertificateTypeRequirementsDto;
7641
7671
  }
7642
- export interface ImaCertificateTypeResultsDto {
7643
- manufacturer: ImaCertificateTypeManufacturerResultsDto;
7644
- signature: ImaCertificateTypeSignatureResultsDto;
7645
- thirdParty: ImaCertificateTypeThirdPartyResultsDto;
7646
- certification: ImaCertificateTypeCertificationResultsDto;
7647
- productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
7648
- testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
7649
- testResults: ImaCertificateTypeTestResultsResultsDto;
7650
- documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
7672
+ export interface ImaCertificateTypeVersionDto {
7673
+ version?: number;
7674
+ status?: ImaCertificateTypeStatus;
7651
7675
  }
7652
- export interface ImaCertificateTypeManufacturerResultsDto {
7653
- manufacturer?: ImaCertificateTypeResultLine | null;
7654
- address?: ImaCertificateTypeResultLine | null;
7655
- 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;
7656
7686
  }
7657
- export interface ImaCertificateTypeResultLine {
7658
- found?: boolean;
7659
- readValue?: string | null;
7660
- override?: ImaResultLineOverrideDto | null;
7687
+ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
7688
+ manufacturer?: boolean;
7689
+ address?: boolean;
7690
+ contact?: boolean;
7661
7691
  }
7662
- export interface ImaResultLineOverrideDto {
7663
- approved: boolean;
7664
- comment?: string | null;
7665
- updated: Date;
7666
- updatedBy: string;
7667
- updatedById: string;
7692
+ export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
7693
+ certifiedBy?: boolean;
7694
+ position?: boolean;
7695
+ signature?: boolean;
7696
+ date?: boolean;
7697
+ stamp?: boolean;
7668
7698
  }
7669
- export interface ImaCertificateTypeSignatureResultsDto {
7670
- certifiedBy?: ImaCertificateTypeResultLine | null;
7671
- position?: ImaCertificateTypeResultLine | null;
7672
- signature?: ImaCertificateTypeResultLine | null;
7673
- date?: ImaCertificateTypeResultLine | null;
7674
- 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;
7675
7707
  }
7676
- export interface ImaCertificateTypeThirdPartyResultsDto {
7677
- inspectionBody?: ImaCertificateTypeResultLine | null;
7678
- inspectorName?: ImaCertificateTypeResultLine | null;
7679
- position?: ImaCertificateTypeResultLine | null;
7680
- verificationMethod?: ImaCertificateTypeResultLine | null;
7681
- signature?: ImaCertificateTypeResultLine | null;
7682
- date?: ImaCertificateTypeResultLine | null;
7683
- stamp?: ImaCertificateTypeResultLine | null;
7708
+ export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
7709
+ certificateOfCompliance?: boolean;
7710
+ inspectionCertificate?: boolean;
7684
7711
  }
7685
- export interface ImaCertificateTypeCertificationResultsDto {
7686
- certificateOfCompliance?: ImaCertificateTypeResultLine | null;
7687
- 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;
7688
7721
  }
7689
- export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
7690
- productDescription?: ImaCertificateTypeResultLine | null;
7691
- materialGrade?: ImaCertificateTypeResultLine | null;
7692
- customer?: ImaCertificateTypeResultLine | null;
7693
- customerOrderNumber?: ImaCertificateTypeResultLine | null;
7694
- dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
7695
- batchNumber?: ImaCertificateTypeResultLine | null;
7696
- heatNumber?: ImaCertificateTypeResultLine | null;
7697
- relatedStandards?: ImaCertificateTypeResultLine | null;
7722
+ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
7723
+ usedStandards?: boolean;
7698
7724
  }
7699
- export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
7700
- usedStandards?: ImaCertificateTypeResultLine | null;
7701
- }
7702
- export interface ImaCertificateTypeTestResultsResultsDto {
7703
- mechanicalProperties?: ImaCertificateTypeResultLine | null;
7704
- chemicalAnalysis?: ImaCertificateTypeResultLine | null;
7705
- impactTests?: ImaCertificateTypeResultLine | null;
7706
- corrosionTests?: ImaCertificateTypeResultLine | null;
7707
- ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
7708
- }
7709
- export interface ImaCertificateTypeDocumentTypesResultsDto {
7710
- heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
7711
- ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
7712
- liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
7713
- testReport?: ImaCertificateTypeResultLine | null;
7714
- dimensionalReport?: ImaCertificateTypeResultLine | null;
7715
- dyePenetrantReport?: ImaCertificateTypeResultLine | null;
7716
- visualReport?: ImaCertificateTypeResultLine | null;
7717
- certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
7718
- certificateOfTest?: ImaCertificateTypeResultLine | null;
7719
- technicalReport?: ImaCertificateTypeResultLine | null;
7720
- microExaminationReport?: ImaCertificateTypeResultLine | null;
7721
- radiologicalReport?: ImaCertificateTypeResultLine | null;
7722
- }
7723
- export interface ImaSpecificationChemistryResultsDto {
7724
- carbon?: ImaSpecificationResultLineDto | null;
7725
- manganese?: ImaSpecificationResultLineDto | null;
7726
- silicon?: ImaSpecificationResultLineDto | null;
7727
- phosphorus?: ImaSpecificationResultLineDto | null;
7728
- sulfur?: ImaSpecificationResultLineDto | null;
7729
- chromium?: ImaSpecificationResultLineDto | null;
7730
- nickel?: ImaSpecificationResultLineDto | null;
7731
- molybdenum?: ImaSpecificationResultLineDto | null;
7732
- copper?: ImaSpecificationResultLineDto | null;
7733
- nitrogen?: ImaSpecificationResultLineDto | null;
7734
- wolfram?: ImaSpecificationResultLineDto | null;
7735
- iron?: ImaSpecificationResultLineDto | null;
7736
- }
7737
- export interface ImaSpecificationResultLineDto {
7738
- specificationOperator?: string | null;
7739
- specificationValue1?: number | null;
7740
- specificationValue2?: number | null;
7741
- specificationUnit?: ImaSpecificationUnit | null;
7742
- readValue?: string | null;
7743
- status: ImaSpecificationResultLineStatus;
7744
- override?: ImaResultLineOverrideDto | null;
7745
- }
7746
- export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenheit" | "Mpa" | "Hbw" | "Minutes" | "NotSet";
7747
- export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
7748
- export interface ImaSpecificationMechanicalResultsDto {
7749
- yieldStrength?: ImaSpecificationResultLineDto | null;
7750
- tensileStrength?: ImaSpecificationResultLineDto | null;
7751
- elongation?: ImaSpecificationResultLineDto | null;
7752
- reductionOfArea?: ImaSpecificationResultLineDto | null;
7753
- impactEnergy?: ImaSpecificationResultLineDto | null;
7754
- hardness?: ImaSpecificationResultLineDto | null;
7755
- }
7756
- export interface ImaSpecificationFerriteResultsDto {
7757
- ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
7758
- }
7759
- export interface ImaSpecificationFerriteResultLineDto {
7760
- specificationOperator?: string | null;
7761
- specificationValue1?: string | null;
7762
- specificationValue2?: string | null;
7763
- specificationSymbol?: string | null;
7764
- readValue?: string | null;
7765
- status: ImaSpecificationResultLineStatus;
7766
- override?: ImaResultLineOverrideDto | null;
7767
- measurementMethod?: string | null;
7768
- }
7769
- export interface ImaSpecificationHeatTreatmentResultDto {
7770
- step: number;
7771
- cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
7772
- heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
7773
- }
7774
- export interface ImaSpecificationHeatTreatmentCoolingResult {
7775
- coolingMethods?: string[] | null;
7776
- temperature?: ImaSpecificationResultLineDto | null;
7777
- duration?: ImaSpecificationResultLineDto | null;
7778
- }
7779
- export interface ImaSpecificationHeatTreatmentHeatingResult {
7780
- heatingMethod?: string | null;
7781
- temperature?: ImaSpecificationResultLineDto | null;
7782
- duration?: ImaSpecificationResultLineDto | null;
7783
- }
7784
- export interface ProcessMaterialCertificate {
7785
- files: UploadFileCdfDto[];
7786
- specificationId: string;
7787
- specificationVersion: number;
7788
- certificateTypeId?: string | null;
7789
- certificateTypeVersion?: number | null;
7790
- purchaseOrder?: string | null;
7791
- purchaseOrderLine?: number | null;
7792
- }
7793
- export interface UploadFileCdfDto {
7794
- id: number;
7795
- }
7796
- export interface ImaUpdateResultRequestDto {
7797
- certificateId: string;
7798
- project?: string | null;
7799
- purchaseOrder?: string | null;
7800
- workOrder?: string | null;
7801
- certificateTypeSection: ImaUpdateCertificateTypeResultsDto;
7802
- specificationChemistrySpecification: ImaUpdateSpecificationChemistryResultsDto;
7803
- specificationMechanicalSpecification: ImaUpdateSpecificationMechanicalResultsDto;
7804
- specificationFerriteSpecification: ImaUpdateSpecificationFerriteResultsDto;
7805
- specificationHeatSpecification: ImaUpdateSpecificationHeatTreatmentResultsDto;
7806
- }
7807
- export interface ImaUpdateCertificateTypeResultsDto {
7808
- manufacturer: ImaUpdateCertificateTypeManufacturerResultsDto;
7809
- signature: ImaUpdateCertificateTypeSignatureResultsDto;
7810
- thirdParty: ImaUpdateCertificateTypeThirdPartyResultsDto;
7811
- certification: ImaUpdateCertificateTypeCertificationResultsDto;
7812
- certificateTypeProductAndOrderInformation: ImaUpdateCertificateTypeProductAndOrderInformationResultsDto;
7813
- testMethodsAndReferences: ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto;
7814
- testResults: ImaUpdateCertificateTypeTestResultsResultsDto;
7815
- documentTypes: ImaUpdateCertificateTypeDocumentTypesResultsDto;
7816
- }
7817
- export interface ImaUpdateCertificateTypeManufacturerResultsDto {
7818
- manufacturer?: ImaUpdateCertificateTypeResultLine | null;
7819
- address?: ImaUpdateCertificateTypeResultLine | null;
7820
- contact?: ImaUpdateCertificateTypeResultLine | null;
7821
- }
7822
- export interface ImaUpdateCertificateTypeResultLine {
7823
- approved?: boolean | null;
7824
- comment?: string | null;
7825
- }
7826
- export interface ImaUpdateCertificateTypeSignatureResultsDto {
7827
- certifiedBy?: ImaUpdateCertificateTypeResultLine | null;
7828
- position?: ImaUpdateCertificateTypeResultLine | null;
7829
- signature?: ImaUpdateCertificateTypeResultLine | null;
7830
- date?: ImaUpdateCertificateTypeResultLine | null;
7831
- stamp?: ImaUpdateCertificateTypeResultLine | null;
7832
- }
7833
- export interface ImaUpdateCertificateTypeThirdPartyResultsDto {
7834
- inspectionBody?: ImaUpdateCertificateTypeResultLine | null;
7835
- inspectorName?: ImaUpdateCertificateTypeResultLine | null;
7836
- position?: ImaUpdateCertificateTypeResultLine | null;
7837
- verificationMethod?: ImaUpdateCertificateTypeResultLine | null;
7838
- signature?: ImaUpdateCertificateTypeResultLine | null;
7839
- date?: ImaUpdateCertificateTypeResultLine | null;
7840
- stamp?: ImaUpdateCertificateTypeResultLine | null;
7841
- }
7842
- export interface ImaUpdateCertificateTypeCertificationResultsDto {
7843
- certificateOfCompliance?: ImaUpdateCertificateTypeResultLine | null;
7844
- inspectionCertificate?: ImaUpdateCertificateTypeResultLine | null;
7845
- }
7846
- export interface ImaUpdateCertificateTypeProductAndOrderInformationResultsDto {
7847
- productDescription?: ImaUpdateCertificateTypeResultLine | null;
7848
- materialGrade?: ImaUpdateCertificateTypeResultLine | null;
7849
- customer?: ImaUpdateCertificateTypeResultLine | null;
7850
- customerOrderNumber?: ImaUpdateCertificateTypeResultLine | null;
7851
- dimensionsOrWeight?: ImaUpdateCertificateTypeResultLine | null;
7852
- batchNumber?: ImaUpdateCertificateTypeResultLine | null;
7853
- heatNumber?: ImaUpdateCertificateTypeResultLine | null;
7854
- relatedStandards?: ImaUpdateCertificateTypeResultLine | null;
7855
- }
7856
- export interface ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
7857
- usedStandards?: ImaUpdateCertificateTypeResultLine | null;
7858
- }
7859
- export interface ImaUpdateCertificateTypeTestResultsResultsDto {
7860
- mechanicalProperties?: ImaUpdateCertificateTypeResultLine | null;
7861
- chemicalAnalysis?: ImaUpdateCertificateTypeResultLine | null;
7862
- impactTests?: ImaUpdateCertificateTypeResultLine | null;
7863
- corrosionTests?: ImaUpdateCertificateTypeResultLine | null;
7864
- ferriteContentAndMicrostructure?: ImaUpdateCertificateTypeResultLine | null;
7865
- }
7866
- export interface ImaUpdateCertificateTypeDocumentTypesResultsDto {
7867
- heatTreatmentCertificate?: ImaUpdateCertificateTypeResultLine | null;
7868
- ultrasonicControlCertificate?: ImaUpdateCertificateTypeResultLine | null;
7869
- liquidPenetrantCertificate?: ImaUpdateCertificateTypeResultLine | null;
7870
- testReport?: ImaUpdateCertificateTypeResultLine | null;
7871
- dimensionalReport?: ImaUpdateCertificateTypeResultLine | null;
7872
- dyePenetrantReport?: ImaUpdateCertificateTypeResultLine | null;
7873
- visualReport?: ImaUpdateCertificateTypeResultLine | null;
7874
- certificateOfAnalyticalAndMechanicalTests?: ImaUpdateCertificateTypeResultLine | null;
7875
- certificateOfTest?: ImaUpdateCertificateTypeResultLine | null;
7876
- technicalReport?: ImaUpdateCertificateTypeResultLine | null;
7877
- microExaminationReport?: ImaUpdateCertificateTypeResultLine | null;
7878
- radiologicalReport?: ImaUpdateCertificateTypeResultLine | null;
7879
- }
7880
- export interface ImaUpdateSpecificationChemistryResultsDto {
7881
- carbon?: ImaUpdateSpecificationResultLineDto | null;
7882
- manganese?: ImaUpdateSpecificationResultLineDto | null;
7883
- silicon?: ImaUpdateSpecificationResultLineDto | null;
7884
- phosphorus?: ImaUpdateSpecificationResultLineDto | null;
7885
- sulfur?: ImaUpdateSpecificationResultLineDto | null;
7886
- chromium?: ImaUpdateSpecificationResultLineDto | null;
7887
- nickel?: ImaUpdateSpecificationResultLineDto | null;
7888
- molybdenum?: ImaUpdateSpecificationResultLineDto | null;
7889
- copper?: ImaUpdateSpecificationResultLineDto | null;
7890
- nitrogen?: ImaUpdateSpecificationResultLineDto | null;
7891
- wolfram?: ImaUpdateSpecificationResultLineDto | null;
7892
- iron?: ImaUpdateSpecificationResultLineDto | null;
7893
- }
7894
- export interface ImaUpdateSpecificationResultLineDto {
7895
- approved?: boolean;
7896
- comment?: string | null;
7897
- }
7898
- export interface ImaUpdateSpecificationMechanicalResultsDto {
7899
- yieldStrength?: ImaUpdateSpecificationResultLineDto | null;
7900
- tensileStrength?: ImaUpdateSpecificationResultLineDto | null;
7901
- elongation?: ImaUpdateSpecificationResultLineDto | null;
7902
- reductionOfArea?: ImaUpdateSpecificationResultLineDto | null;
7903
- impactEnergy?: ImaUpdateSpecificationResultLineDto | null;
7904
- hardness?: ImaUpdateSpecificationResultLineDto | null;
7905
- }
7906
- export interface ImaUpdateSpecificationFerriteResultsDto {
7907
- ferriteContent?: ImaUpdateSpecificationResultLineDto | null;
7908
- }
7909
- export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
7910
- heatTreatmentOverrides: (ImaUpdateSpecificationResultLineDto | null)[];
7911
- }
7912
- export interface ImaCdfEntityReadBase {
7913
- }
7914
- export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
7915
- certificateTypeId: string;
7916
- version: number;
7917
- allVersions: ImaCertificateTypeVersionDto[];
7918
- name: string;
7919
- revision: string;
7920
- status: ImaCertificateTypeStatus;
7921
- description?: string | null;
7922
- isStandardCertificateType: boolean;
7923
- created: Date;
7924
- createdBy: string;
7925
- createdById: string;
7926
- updatedBy?: string | null;
7927
- updatedById?: string | null;
7928
- updated: Date;
7929
- isDeleted: boolean;
7930
- requirements: ImaCertificateTypeRequirementsDto;
7931
- }
7932
- export interface ImaCertificateTypeVersionDto {
7933
- version?: number;
7934
- status?: ImaCertificateTypeStatus;
7935
- }
7936
- export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7937
- export interface ImaCertificateTypeRequirementsDto {
7938
- manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
7939
- signature: ImaCertificateTypeSignatureRequirementsDto;
7940
- thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
7941
- certification: ImaCertificateTypeCertificationRequirementsDto;
7942
- productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
7943
- testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
7944
- testResults: ImaCertificateTypeTestResultsRequirementsDto;
7945
- documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
7946
- }
7947
- export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
7948
- manufacturer?: boolean;
7949
- address?: boolean;
7950
- contact?: boolean;
7951
- }
7952
- export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
7953
- certifiedBy?: boolean;
7954
- position?: boolean;
7955
- signature?: boolean;
7956
- date?: boolean;
7957
- stamp?: boolean;
7958
- }
7959
- export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
7960
- inspectionBody?: boolean;
7961
- inspectorName?: boolean;
7962
- position?: boolean;
7963
- verificationMethod?: boolean;
7964
- signature?: boolean;
7965
- date?: boolean;
7966
- stamp?: boolean;
7967
- }
7968
- export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
7969
- certificateOfCompliance?: boolean;
7970
- inspectionCertificate?: boolean;
7971
- }
7972
- export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
7973
- productDescription?: boolean;
7974
- materialGrade?: boolean;
7975
- customer?: boolean;
7976
- customerOrderNumber?: boolean;
7977
- dimensionsOrWeight?: boolean;
7978
- batchNumber?: boolean;
7979
- heatNumber?: boolean;
7980
- relatedStandards?: boolean;
7981
- }
7982
- export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
7983
- usedStandards?: boolean;
7984
- }
7985
- export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
7986
- mechanicalProperties?: boolean;
7987
- chemicalAnalysis?: boolean;
7988
- impactTests?: boolean;
7989
- corrosionTests?: boolean;
7990
- ferriteContentAndMicrostructure?: boolean;
7725
+ export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
7726
+ mechanicalProperties?: boolean;
7727
+ chemicalAnalysis?: boolean;
7728
+ impactTests?: boolean;
7729
+ corrosionTests?: boolean;
7730
+ ferriteContentAndMicrostructure?: boolean;
7991
7731
  }
7992
7732
  export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
7993
7733
  heatTreatmentCertificate?: boolean;
@@ -8095,11 +7835,366 @@ export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
8095
7835
  created: Date;
8096
7836
  createdBy: string;
8097
7837
  createdById: string;
8098
- updatedBy?: string | null;
8099
- updatedById?: string | null;
7838
+ createdByName: string;
7839
+ updatedBy: string;
7840
+ updatedById: string;
7841
+ updatedByName: string;
8100
7842
  updated: Date;
8101
7843
  isDeleted: boolean;
8102
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
+ }
8103
8198
  export interface PurchaseOrderMaterialSearchResultsDto {
8104
8199
  purchaseOrders: string[];
8105
8200
  }
@@ -8153,8 +8248,10 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
8153
8248
  created: Date;
8154
8249
  createdBy: string;
8155
8250
  createdById: string;
8251
+ createdByName: string;
8156
8252
  updatedBy: string;
8157
8253
  updatedById: string;
8254
+ updatedByName: string;
8158
8255
  updated: Date;
8159
8256
  isDeleted: boolean;
8160
8257
  chemistrySpecification: ImaChemistrySpecificationDto;
@@ -8182,12 +8279,9 @@ export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
8182
8279
  iron?: ImaSpecificationLineDto | null;
8183
8280
  }
8184
8281
  export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
8185
- operator: ImaSpecificationOperator;
8186
- value1: number;
8187
- value2?: number | null;
8188
- unit: ImaSpecificationUnit;
8282
+ min?: number | null;
8283
+ max?: number | null;
8189
8284
  }
8190
- export type ImaSpecificationOperator = "Min" | "Max" | "Between" | "NotSet";
8191
8285
  export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
8192
8286
  yieldStrength?: ImaSpecificationLineDto | null;
8193
8287
  tensileStrength?: ImaSpecificationLineDto | null;
@@ -8217,22 +8311,22 @@ export interface ImaHeatTreatmentSpecificationHeatingDto extends ImaCdfEntityRea
8217
8311
  }
8218
8312
  export type ImaHeatTreatmentHeatingMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
8219
8313
  export interface ImaCreateSpecificationRequestDto {
8220
- specificationName: string;
8221
- specificationNumber: string;
8314
+ name: string;
8315
+ number: string;
8222
8316
  revision: string;
8223
8317
  date: Date;
8224
8318
  specificationFile?: UploadFileDto | null;
8225
8319
  }
8226
8320
  export interface ImaCopySpecificationRequestDto {
8227
- specificationName: string;
8228
- specificationNumber: string;
8321
+ name: string;
8322
+ number: string;
8229
8323
  revision: string;
8230
8324
  date: Date;
8231
8325
  }
8232
8326
  export interface ImaUpdateSpecificationDto {
8233
8327
  name?: string | null;
8234
8328
  number?: string | null;
8235
- status?: ImaSpecificationStatusUpdate | null;
8329
+ status?: ImaSpecificationStatus | null;
8236
8330
  summary?: string | null;
8237
8331
  relatedStandards?: string[] | null;
8238
8332
  chemistrySpecification?: ImaChemistrySpecificationDto | null;
@@ -8240,7 +8334,6 @@ export interface ImaUpdateSpecificationDto {
8240
8334
  ferriteSpecification?: ImaFerriteSpecificationDto | null;
8241
8335
  heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
8242
8336
  }
8243
- export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
8244
8337
  export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
8245
8338
  specificationId: string;
8246
8339
  version: number;
@@ -8254,8 +8347,10 @@ export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
8254
8347
  created: Date;
8255
8348
  createdBy: string;
8256
8349
  createdById: string;
8350
+ createdByName: string;
8257
8351
  updatedBy: string;
8258
8352
  updatedById: string;
8353
+ updatedByName: string;
8259
8354
  isDeleted: boolean;
8260
8355
  }
8261
8356
  export interface MeasurementFormSchemaDto {
@@ -8806,6 +8901,7 @@ export interface ListMeasurementFormsRequest {
8806
8901
  pageSize?: number | null;
8807
8902
  search?: string | null;
8808
8903
  continuationToken?: string | null;
8904
+ tenantId?: string | null;
8809
8905
  inactive?: boolean | null;
8810
8906
  includeInactiveSupplierAccess?: boolean | null;
8811
8907
  }
@@ -9001,6 +9097,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
9001
9097
  externalOrderNumber?: string | null;
9002
9098
  }
9003
9099
  export interface ExportDimensionReportV2Request {
9100
+ tenantId?: string | null;
9004
9101
  type: DimensionReportType;
9005
9102
  extras?: DimensionReportExtras | null;
9006
9103
  specificSerialNumbers?: string[] | null;
@@ -9341,84 +9438,6 @@ export interface SetDiscussionLastReadRequest {
9341
9438
  operationId?: string | null;
9342
9439
  resourceId?: string | null;
9343
9440
  }
9344
- export interface CompanyUserDto {
9345
- companyId: string;
9346
- userObjectId: string;
9347
- username?: string | null;
9348
- name?: string | null;
9349
- roles: string[];
9350
- }
9351
- export interface CreateCompanyUser {
9352
- username: string;
9353
- name: string;
9354
- roles: string[];
9355
- companyId?: string | null;
9356
- }
9357
- export interface UpdateCompanyUserRequest {
9358
- roles: string[];
9359
- companyId?: string | null;
9360
- }
9361
- export interface ExternalRoleDto {
9362
- id: string;
9363
- name: string;
9364
- }
9365
- export interface CompanyCustomerDto {
9366
- customerTenantId?: string | null;
9367
- customerAzureAdTenantId?: string | null;
9368
- customerName?: string | null;
9369
- supplierId?: string | null;
9370
- supplierName?: string | null;
9371
- customerIgnosPortalPrefix?: string | null;
9372
- }
9373
- export interface CompanyDto {
9374
- id?: string;
9375
- name?: string;
9376
- organizationNumber?: string | null;
9377
- country?: string;
9378
- tenantId?: string | null;
9379
- }
9380
- export interface SupplierInviteDto {
9381
- id: string;
9382
- supplierId: string;
9383
- supplierName?: string | null;
9384
- customerName?: string | null;
9385
- userId: string;
9386
- userName?: string | null;
9387
- deadline: Date;
9388
- acceptedTimestamp?: Date | null;
9389
- createdTime: Date;
9390
- createdBy: string;
9391
- }
9392
- export interface AcceptSupplierInviteNewCompany {
9393
- companyName?: string;
9394
- organizationNumber?: string;
9395
- threeLetterIsoCountry?: string;
9396
- }
9397
- export interface AcceptSupplierInviteExistingCompany {
9398
- companyId?: string;
9399
- }
9400
- export interface AcceptSupplierInviteCustomer {
9401
- tenantId?: string;
9402
- organizationNumber?: string;
9403
- }
9404
- export interface CreateSupplierInvite {
9405
- supplierId: string;
9406
- supplierName?: string | null;
9407
- username: string;
9408
- invitedName: string;
9409
- deadline: Date;
9410
- }
9411
- export interface ExternalSupplierDto {
9412
- id: string;
9413
- name: string;
9414
- companyId: string;
9415
- active: boolean;
9416
- }
9417
- export interface CreateSupplierMapping {
9418
- companyId: string;
9419
- existingSupplierId: string;
9420
- newSupplierId: string;
9421
- }
9422
9441
  export type FeatureCollectionType = "FeatureCollection";
9423
9442
  export interface Features {
9424
9443
  type: FeaturesType;