@ignos/api-client 20260416.108.1-alpha → 20260417.110.1-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -124,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,30 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
2555
2621
  listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
2556
2622
  protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
2557
2623
  }
2624
+ export interface IInspectMatchMaterialChecksClient {
2625
+ listMaterialChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
2626
+ getMaterialCheck(id: string): Promise<ImaMaterialCheckDto>;
2627
+ updateMaterialCheck(id: string, request: ImaUpdateMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
2628
+ deleteMaterialCheck(id: string): Promise<void>;
2629
+ processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
2630
+ }
2631
+ export declare class InspectMatchMaterialChecksClient extends AuthorizedApiBase implements IInspectMatchMaterialChecksClient {
2632
+ private http;
2633
+ private baseUrl;
2634
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2635
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2636
+ });
2637
+ listMaterialChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
2638
+ protected processListMaterialChecks(response: Response): Promise<ImaMaterialChecksPageDto>;
2639
+ getMaterialCheck(id: string): Promise<ImaMaterialCheckDto>;
2640
+ protected processGetMaterialCheck(response: Response): Promise<ImaMaterialCheckDto>;
2641
+ updateMaterialCheck(id: string, request: ImaUpdateMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
2642
+ protected processUpdateMaterialCheck(response: Response): Promise<ImaMaterialCheckDto>;
2643
+ deleteMaterialCheck(id: string): Promise<void>;
2644
+ protected processDeleteMaterialCheck(response: Response): Promise<void>;
2645
+ processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
2646
+ protected processProcessMaterialCertificate(response: Response): Promise<void>;
2647
+ }
2558
2648
  export interface IInspectMatchPurchaseOrderClient {
2559
2649
  searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto>;
2560
2650
  getPurchaseOrderLines(purchaseOrder: string): Promise<PurchaseOrderMaterialLinesDto>;
@@ -2865,22 +2955,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
2865
2955
  protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
2866
2956
  }
2867
2957
  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>;
2958
+ 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
2959
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2870
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2960
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2871
2961
  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[]>;
2962
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2963
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2964
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2965
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2966
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2877
2967
  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>;
2968
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2969
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2970
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2971
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2972
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2973
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2884
2974
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2885
2975
  upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
2886
2976
  removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
@@ -2896,37 +2986,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
2896
2986
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2897
2987
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2898
2988
  });
2899
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2989
+ 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
2990
  protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2901
2991
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2902
2992
  protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2903
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2993
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2904
2994
  protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2905
2995
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
2906
2996
  protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
2907
- completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2997
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2908
2998
  protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2909
- completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
2999
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2910
3000
  protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
2911
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3001
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2912
3002
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
2913
- getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
3003
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2914
3004
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
2915
- getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3005
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2916
3006
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
2917
3007
  getValidationRules(): Promise<ValidationRuleDto[]>;
2918
3008
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
2919
- saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3009
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2920
3010
  protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
2921
- saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3011
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2922
3012
  protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
2923
- saveComment(id: string, request: SaveCommentRequest): Promise<void>;
3013
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2924
3014
  protected processSaveComment(response: Response): Promise<void>;
2925
- batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3015
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2926
3016
  protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
2927
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3017
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2928
3018
  protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
2929
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3019
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2930
3020
  protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
2931
3021
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2932
3022
  protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
@@ -2951,7 +3041,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
2951
3041
  createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
2952
3042
  reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2953
3043
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2954
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3044
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2955
3045
  }
2956
3046
  export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
2957
3047
  private http;
@@ -2975,7 +3065,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
2975
3065
  protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2976
3066
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2977
3067
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2978
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3068
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2979
3069
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
2980
3070
  }
2981
3071
  export interface ICompaniesClient {
@@ -3315,99 +3405,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3315
3405
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3316
3406
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3317
3407
  }
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
- acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3353
- }
3354
- export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
3355
- private http;
3356
- private baseUrl;
3357
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3358
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3359
- });
3360
- listCompanies(): Promise<CompanyDto[]>;
3361
- protected processListCompanies(response: Response): Promise<CompanyDto[]>;
3362
- getCompany(id: string): Promise<CompanyDto>;
3363
- protected processGetCompany(response: Response): Promise<CompanyDto>;
3364
- getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3365
- protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3366
- acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3367
- protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3368
- }
3369
- export interface ISuppliersClient {
3370
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3371
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3372
- deleteSupplierInvite(id: string): Promise<void>;
3373
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3374
- deleteSupplier(id: string): Promise<void>;
3375
- /**
3376
- * Creates a mapping between old supplier id and new supplier id.
3377
- */
3378
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3379
- /**
3380
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3381
- */
3382
- deleteSupplierMappings(): Promise<void>;
3383
- }
3384
- export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
3385
- private http;
3386
- private baseUrl;
3387
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3388
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3389
- });
3390
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3391
- protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3392
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3393
- protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3394
- deleteSupplierInvite(id: string): Promise<void>;
3395
- protected processDeleteSupplierInvite(response: Response): Promise<void>;
3396
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3397
- protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3398
- deleteSupplier(id: string): Promise<void>;
3399
- protected processDeleteSupplier(response: Response): Promise<void>;
3400
- /**
3401
- * Creates a mapping between old supplier id and new supplier id.
3402
- */
3403
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3404
- protected processCreateSupplierMapping(response: Response): Promise<void>;
3405
- /**
3406
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3407
- */
3408
- deleteSupplierMappings(): Promise<void>;
3409
- protected processDeleteSupplierMappings(response: Response): Promise<void>;
3410
- }
3411
3408
  export interface AzureRegionDto {
3412
3409
  displayName: string;
3413
3410
  name: string;
@@ -3711,9 +3708,6 @@ export interface UserDetailsDto {
3711
3708
  isExternalUser?: boolean;
3712
3709
  isBetaTester?: boolean | null;
3713
3710
  hasAccessToIgnos?: boolean;
3714
- isInvitedUser?: boolean;
3715
- isSupplier?: boolean;
3716
- companyId?: string | null;
3717
3711
  }
3718
3712
  export interface UserDto {
3719
3713
  id?: string | null;
@@ -5589,42 +5583,133 @@ export interface DocumentGeneratorTypeDto {
5589
5583
  key: string;
5590
5584
  description: string;
5591
5585
  }
5592
- export interface CncMachineTransferDto {
5593
- id: string;
5594
- cncMachineOperationId?: string | null;
5595
- cncMachineId: string;
5596
- cncMachineName: string;
5597
- direction: FileTransferDirection;
5598
- files: string[];
5599
- status: FileTransferStatus;
5600
- statusMessage?: string | null;
5601
- timestamp: Date;
5586
+ export interface CompanyUserDto {
5587
+ companyId?: string | null;
5588
+ username?: string | null;
5589
+ name?: string | null;
5590
+ roles?: string[] | null;
5602
5591
  }
5603
- export type FileTransferDirection = "FromCloud" | "ToCloud";
5604
- export type FileTransferStatus = "InProgress" | "Success" | "Failed";
5605
- export interface TransferToMachineRequest {
5606
- programs?: ProgramSelectionRequest[] | null;
5592
+ export interface CreateCompanyUserRequest {
5593
+ username: string;
5594
+ name: string;
5595
+ roles: string[];
5596
+ companyId?: string | null;
5607
5597
  }
5608
- export interface ProgramSelectionRequest {
5609
- id?: string;
5610
- version?: number;
5598
+ export interface UpdateCompanyUserRequest {
5599
+ name: string;
5600
+ roles: string[];
5601
+ companyId?: string | null;
5611
5602
  }
5612
- export interface UploadCamFileDto {
5613
- uploadUrl: string;
5614
- path: string;
5615
- url: string;
5603
+ export interface ExternalRoleDto {
5604
+ id: string;
5605
+ name: string;
5616
5606
  }
5617
- export interface UploadCamFileRequest {
5618
- filename: string;
5607
+ export interface CompanyCustomerDto {
5608
+ customerTenantId?: string | null;
5609
+ customerAzureAdTenantId?: string | null;
5610
+ customerName?: string | null;
5611
+ supplierId?: string | null;
5612
+ supplierName?: string | null;
5619
5613
  }
5620
- export interface CamTransferDto {
5621
- path: string;
5622
- content: string;
5614
+ export interface InviteDto {
5615
+ tenantId: string;
5616
+ companyName: string;
5617
+ id: string;
5618
+ supplierId: string;
5619
+ supplierName: string;
5620
+ username: string;
5621
+ deadline: Date;
5622
+ createdTime: Date;
5623
+ createdBy: string;
5623
5624
  }
5624
- export interface StartCamTransferToMachine {
5625
- path: string;
5626
- content: string;
5627
- cncMachineId: string;
5625
+ export interface CompanyDto {
5626
+ id?: string | null;
5627
+ name?: string | null;
5628
+ organizationNumber?: string | null;
5629
+ country?: string | null;
5630
+ tenantId?: string | null;
5631
+ }
5632
+ export interface AcceptSupplierInviteRequest {
5633
+ tenantId: string;
5634
+ existingCompanyId?: string | null;
5635
+ companyName?: string | null;
5636
+ organizationNumber?: string | null;
5637
+ threeLetterIsoCountry?: string | null;
5638
+ }
5639
+ export interface SupplierInviteDto {
5640
+ id: string;
5641
+ supplierId: string;
5642
+ name: string;
5643
+ username: string;
5644
+ deadline: Date;
5645
+ createdTime: Date;
5646
+ createdBy: string;
5647
+ }
5648
+ export interface CreateSupplierInvite {
5649
+ supplierId: string;
5650
+ name: string;
5651
+ username: string;
5652
+ deadline: Date;
5653
+ }
5654
+ export interface ExternalSupplierDto {
5655
+ id: string;
5656
+ name: string;
5657
+ companyId: string;
5658
+ active: boolean;
5659
+ }
5660
+ export interface ImportSupplier {
5661
+ supplierId: string;
5662
+ name: string;
5663
+ organizationNumber?: string | null;
5664
+ threeLetterIsoCountry: string;
5665
+ users: ImportSupplierUserDto[];
5666
+ }
5667
+ export interface ImportSupplierUserDto {
5668
+ username: string;
5669
+ name: string;
5670
+ roles: string[];
5671
+ }
5672
+ export interface CreateSupplierMapping {
5673
+ companyId: string;
5674
+ existingSupplierId: string;
5675
+ newSupplierId: string;
5676
+ }
5677
+ export interface CncMachineTransferDto {
5678
+ id: string;
5679
+ cncMachineOperationId?: string | null;
5680
+ cncMachineId: string;
5681
+ cncMachineName: string;
5682
+ direction: FileTransferDirection;
5683
+ files: string[];
5684
+ status: FileTransferStatus;
5685
+ statusMessage?: string | null;
5686
+ timestamp: Date;
5687
+ }
5688
+ export type FileTransferDirection = "FromCloud" | "ToCloud";
5689
+ export type FileTransferStatus = "InProgress" | "Success" | "Failed";
5690
+ export interface TransferToMachineRequest {
5691
+ programs?: ProgramSelectionRequest[] | null;
5692
+ }
5693
+ export interface ProgramSelectionRequest {
5694
+ id?: string;
5695
+ version?: number;
5696
+ }
5697
+ export interface UploadCamFileDto {
5698
+ uploadUrl: string;
5699
+ path: string;
5700
+ url: string;
5701
+ }
5702
+ export interface UploadCamFileRequest {
5703
+ filename: string;
5704
+ }
5705
+ export interface CamTransferDto {
5706
+ path: string;
5707
+ content: string;
5708
+ }
5709
+ export interface StartCamTransferToMachine {
5710
+ path: string;
5711
+ content: string;
5712
+ cncMachineId: string;
5628
5713
  }
5629
5714
  export interface StartCamTransferToMachineFromTempUpload {
5630
5715
  uploadKey: string;
@@ -7550,438 +7635,87 @@ export interface WeldingIotConfigDto {
7550
7635
  }
7551
7636
  export interface CreateWeldingIotConfig {
7552
7637
  }
7553
- export interface ImaMaterialChecksPageDto {
7554
- items: ImaMaterialCheckLiteDto[];
7555
- continuationToken?: string | null;
7556
- }
7557
- export interface ImaMaterialCheckLiteDto {
7558
- materialCheckId: string;
7559
- originalMaterialCertificate: FileDto;
7560
- generatedMaterialCertificate?: FileDto | null;
7561
- customer?: string | null;
7562
- project?: string | null;
7563
- workOrder?: string | null;
7564
- certificateTypeId?: string | null;
7565
- certificateTypeVersion?: number | null;
7566
- certificateTypeName?: string | null;
7567
- specificationId: string;
7568
- specificationVersion: number;
7569
- specificationName: string;
7570
- purchaseOrder?: string | null;
7571
- purchaseOrderLine?: number | null;
7572
- purchaseOrderItem?: string | null;
7573
- purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
7574
- purchaseOrderLot?: string | null;
7575
- status: ImaMaterialCheckStatus;
7576
- created: Date;
7577
- createdBy: string;
7578
- createdById: string;
7579
- updatedBy?: string | null;
7580
- updatedById?: string | null;
7581
- isDeleted?: boolean;
7582
- }
7583
- export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
7584
- export interface ImaMaterialChecksPageRequestDto {
7585
- pageSize?: number | null;
7586
- orderBy?: ImaMaterialChecksOrderByColumn | null;
7587
- searchTerm?: string | null;
7588
- originalReportFilter?: string | null;
7589
- generatedReportFilter?: string | null;
7590
- customerFilter?: string | null;
7591
- projectFilter?: string | null;
7592
- purchaseOrderFilter?: string | null;
7593
- workOrderFilter?: string | null;
7594
- certificateTypeFilter?: string | null;
7595
- lineFilter?: string | null;
7596
- itemFilter?: string | null;
7597
- heatFilter?: string | null;
7598
- lotFilter?: string | null;
7599
- dateFromFilter?: Date | null;
7600
- dateToFilter?: Date | null;
7601
- statusFilter: ImaMaterialCheckStatus[];
7602
- continuationToken?: string | null;
7638
+ export interface ImaCdfEntityReadBase {
7603
7639
  }
7604
- export type ImaMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
7605
- export interface ImaMaterialCheckDto {
7606
- materialCheckId: string;
7607
- originalMaterialCertificate: FileDto;
7608
- generatedMaterialCertificate?: FileDto | null;
7609
- customer?: string | null;
7610
- project?: string | null;
7611
- workOrder?: string | null;
7612
- certificateTypeId?: string | null;
7613
- certificateTypeVersion?: number | null;
7614
- certificateTypeName?: string | null;
7615
- specificationId: string;
7616
- specificationVersion: number;
7617
- specificationName: string;
7618
- purchaseOrder?: string | null;
7619
- purchaseOrderLine?: number | null;
7620
- purchaseOrderItem?: string | null;
7621
- purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
7622
- purchaseOrderLot?: string | null;
7623
- status: ImaMaterialCheckStatus;
7640
+ export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
7641
+ certificateTypeId: string;
7642
+ version: number;
7643
+ allVersions: ImaCertificateTypeVersionDto[];
7644
+ name: string;
7645
+ revision: string;
7646
+ status: ImaCertificateTypeStatus;
7647
+ description?: string | null;
7648
+ isStandardCertificateType: boolean;
7624
7649
  created: Date;
7625
7650
  createdBy: string;
7626
7651
  createdById: string;
7627
- updatedBy?: string | null;
7628
- updatedById?: string | null;
7629
- isDeleted?: boolean;
7630
- certificateTypeResults: ImaCertificateTypeResultsDto;
7631
- specificationChemistry: ImaSpecificationChemistryResultsDto;
7632
- specificationMechanical: ImaSpecificationMechanicalResultsDto;
7633
- specificationFerrite: ImaSpecificationFerriteResultsDto;
7634
- specificationHeatTreatments: ImaSpecificationHeatTreatmentResultDto[];
7635
- }
7636
- export interface ImaCertificateTypeResultsDto {
7637
- manufacturer: ImaCertificateTypeManufacturerResultsDto;
7638
- signature: ImaCertificateTypeSignatureResultsDto;
7639
- thirdParty: ImaCertificateTypeThirdPartyResultsDto;
7640
- certification: ImaCertificateTypeCertificationResultsDto;
7641
- productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
7642
- testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
7643
- testResults: ImaCertificateTypeTestResultsResultsDto;
7644
- documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
7652
+ createdByName: string;
7653
+ updatedBy: string;
7654
+ updatedById: string;
7655
+ updatedByName: string;
7656
+ updated: Date;
7657
+ isDeleted: boolean;
7658
+ requirements: ImaCertificateTypeRequirementsDto;
7645
7659
  }
7646
- export interface ImaCertificateTypeManufacturerResultsDto {
7647
- manufacturer?: ImaCertificateTypeResultLine | null;
7648
- address?: ImaCertificateTypeResultLine | null;
7649
- contact?: ImaCertificateTypeResultLine | null;
7660
+ export interface ImaCertificateTypeVersionDto {
7661
+ version?: number;
7662
+ status?: ImaCertificateTypeStatus;
7650
7663
  }
7651
- export interface ImaCertificateTypeResultLine {
7652
- found?: boolean;
7653
- readValue?: string | null;
7654
- override?: ImaResultLineOverrideDto | null;
7664
+ export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7665
+ export interface ImaCertificateTypeRequirementsDto {
7666
+ manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
7667
+ signature: ImaCertificateTypeSignatureRequirementsDto;
7668
+ thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
7669
+ certification: ImaCertificateTypeCertificationRequirementsDto;
7670
+ productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
7671
+ testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
7672
+ testResults: ImaCertificateTypeTestResultsRequirementsDto;
7673
+ documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
7655
7674
  }
7656
- export interface ImaResultLineOverrideDto {
7657
- approved: boolean;
7658
- comment?: string | null;
7659
- updated: Date;
7660
- updatedBy: string;
7661
- updatedById: string;
7675
+ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
7676
+ manufacturer?: boolean;
7677
+ address?: boolean;
7678
+ contact?: boolean;
7662
7679
  }
7663
- export interface ImaCertificateTypeSignatureResultsDto {
7664
- certifiedBy?: ImaCertificateTypeResultLine | null;
7665
- position?: ImaCertificateTypeResultLine | null;
7666
- signature?: ImaCertificateTypeResultLine | null;
7667
- date?: ImaCertificateTypeResultLine | null;
7668
- stamp?: ImaCertificateTypeResultLine | null;
7680
+ export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
7681
+ certifiedBy?: boolean;
7682
+ position?: boolean;
7683
+ signature?: boolean;
7684
+ date?: boolean;
7685
+ stamp?: boolean;
7669
7686
  }
7670
- export interface ImaCertificateTypeThirdPartyResultsDto {
7671
- inspectionBody?: ImaCertificateTypeResultLine | null;
7672
- inspectorName?: ImaCertificateTypeResultLine | null;
7673
- position?: ImaCertificateTypeResultLine | null;
7674
- verificationMethod?: ImaCertificateTypeResultLine | null;
7675
- signature?: ImaCertificateTypeResultLine | null;
7676
- date?: ImaCertificateTypeResultLine | null;
7677
- stamp?: ImaCertificateTypeResultLine | null;
7687
+ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
7688
+ inspectionBody?: boolean;
7689
+ inspectorName?: boolean;
7690
+ position?: boolean;
7691
+ verificationMethod?: boolean;
7692
+ signature?: boolean;
7693
+ date?: boolean;
7694
+ stamp?: boolean;
7678
7695
  }
7679
- export interface ImaCertificateTypeCertificationResultsDto {
7680
- certificateOfCompliance?: ImaCertificateTypeResultLine | null;
7681
- inspectionCertificate?: ImaCertificateTypeResultLine | null;
7696
+ export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
7697
+ certificateOfCompliance?: boolean;
7698
+ inspectionCertificate?: boolean;
7682
7699
  }
7683
- export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
7684
- productDescription?: ImaCertificateTypeResultLine | null;
7685
- materialGrade?: ImaCertificateTypeResultLine | null;
7686
- customer?: ImaCertificateTypeResultLine | null;
7687
- customerOrderNumber?: ImaCertificateTypeResultLine | null;
7688
- dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
7689
- batchNumber?: ImaCertificateTypeResultLine | null;
7690
- heatNumber?: ImaCertificateTypeResultLine | null;
7691
- relatedStandards?: ImaCertificateTypeResultLine | null;
7700
+ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
7701
+ productDescription?: boolean;
7702
+ materialGrade?: boolean;
7703
+ customer?: boolean;
7704
+ customerOrderNumber?: boolean;
7705
+ dimensionsOrWeight?: boolean;
7706
+ batchNumber?: boolean;
7707
+ heatNumber?: boolean;
7708
+ relatedStandards?: boolean;
7692
7709
  }
7693
- export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
7694
- usedStandards?: ImaCertificateTypeResultLine | null;
7710
+ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
7711
+ usedStandards?: boolean;
7695
7712
  }
7696
- export interface ImaCertificateTypeTestResultsResultsDto {
7697
- mechanicalProperties?: ImaCertificateTypeResultLine | null;
7698
- chemicalAnalysis?: ImaCertificateTypeResultLine | null;
7699
- impactTests?: ImaCertificateTypeResultLine | null;
7700
- corrosionTests?: ImaCertificateTypeResultLine | null;
7701
- ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
7702
- }
7703
- export interface ImaCertificateTypeDocumentTypesResultsDto {
7704
- heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
7705
- ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
7706
- liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
7707
- testReport?: ImaCertificateTypeResultLine | null;
7708
- dimensionalReport?: ImaCertificateTypeResultLine | null;
7709
- dyePenetrantReport?: ImaCertificateTypeResultLine | null;
7710
- visualReport?: ImaCertificateTypeResultLine | null;
7711
- certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
7712
- certificateOfTest?: ImaCertificateTypeResultLine | null;
7713
- technicalReport?: ImaCertificateTypeResultLine | null;
7714
- microExaminationReport?: ImaCertificateTypeResultLine | null;
7715
- radiologicalReport?: ImaCertificateTypeResultLine | null;
7716
- }
7717
- export interface ImaSpecificationChemistryResultsDto {
7718
- carbon?: ImaSpecificationResultLineDto | null;
7719
- manganese?: ImaSpecificationResultLineDto | null;
7720
- silicon?: ImaSpecificationResultLineDto | null;
7721
- phosphorus?: ImaSpecificationResultLineDto | null;
7722
- sulfur?: ImaSpecificationResultLineDto | null;
7723
- chromium?: ImaSpecificationResultLineDto | null;
7724
- nickel?: ImaSpecificationResultLineDto | null;
7725
- molybdenum?: ImaSpecificationResultLineDto | null;
7726
- copper?: ImaSpecificationResultLineDto | null;
7727
- nitrogen?: ImaSpecificationResultLineDto | null;
7728
- wolfram?: ImaSpecificationResultLineDto | null;
7729
- iron?: ImaSpecificationResultLineDto | null;
7730
- }
7731
- export interface ImaSpecificationResultLineDto {
7732
- specificationOperator?: string | null;
7733
- specificationValue1?: number | null;
7734
- specificationValue2?: number | null;
7735
- specificationUnit?: ImaSpecificationUnit | null;
7736
- readValue?: string | null;
7737
- status: ImaSpecificationResultLineStatus;
7738
- override?: ImaResultLineOverrideDto | null;
7739
- }
7740
- export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenheit" | "Mpa" | "Hbw" | "Minutes" | "NotSet";
7741
- export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
7742
- export interface ImaSpecificationMechanicalResultsDto {
7743
- yieldStrength?: ImaSpecificationResultLineDto | null;
7744
- tensileStrength?: ImaSpecificationResultLineDto | null;
7745
- elongation?: ImaSpecificationResultLineDto | null;
7746
- reductionOfArea?: ImaSpecificationResultLineDto | null;
7747
- impactEnergy?: ImaSpecificationResultLineDto | null;
7748
- hardness?: ImaSpecificationResultLineDto | null;
7749
- }
7750
- export interface ImaSpecificationFerriteResultsDto {
7751
- ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
7752
- }
7753
- export interface ImaSpecificationFerriteResultLineDto {
7754
- specificationOperator?: string | null;
7755
- specificationValue1?: string | null;
7756
- specificationValue2?: string | null;
7757
- specificationSymbol?: string | null;
7758
- readValue?: string | null;
7759
- status: ImaSpecificationResultLineStatus;
7760
- override?: ImaResultLineOverrideDto | null;
7761
- measurementMethod?: string | null;
7762
- }
7763
- export interface ImaSpecificationHeatTreatmentResultDto {
7764
- step: number;
7765
- cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
7766
- heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
7767
- }
7768
- export interface ImaSpecificationHeatTreatmentCoolingResult {
7769
- coolingMethods?: string[] | null;
7770
- temperature?: ImaSpecificationResultLineDto | null;
7771
- duration?: ImaSpecificationResultLineDto | null;
7772
- }
7773
- export interface ImaSpecificationHeatTreatmentHeatingResult {
7774
- heatingMethod?: string | null;
7775
- temperature?: ImaSpecificationResultLineDto | null;
7776
- duration?: ImaSpecificationResultLineDto | null;
7777
- }
7778
- export interface ProcessMaterialCertificate {
7779
- files: UploadFileCdfDto[];
7780
- specificationId: string;
7781
- specificationVersion: number;
7782
- certificateTypeId?: string | null;
7783
- certificateTypeVersion?: number | null;
7784
- purchaseOrder?: string | null;
7785
- purchaseOrderLine?: number | null;
7786
- }
7787
- export interface UploadFileCdfDto {
7788
- id: number;
7789
- }
7790
- export interface ImaUpdateResultRequestDto {
7791
- certificateId: string;
7792
- project?: string | null;
7793
- purchaseOrder?: string | null;
7794
- workOrder?: string | null;
7795
- certificateTypeSection: ImaUpdateCertificateTypeResultsDto;
7796
- specificationChemistrySpecification: ImaUpdateSpecificationChemistryResultsDto;
7797
- specificationMechanicalSpecification: ImaUpdateSpecificationMechanicalResultsDto;
7798
- specificationFerriteSpecification: ImaUpdateSpecificationFerriteResultsDto;
7799
- specificationHeatSpecification: ImaUpdateSpecificationHeatTreatmentResultsDto;
7800
- }
7801
- export interface ImaUpdateCertificateTypeResultsDto {
7802
- manufacturer: ImaUpdateCertificateTypeManufacturerResultsDto;
7803
- signature: ImaUpdateCertificateTypeSignatureResultsDto;
7804
- thirdParty: ImaUpdateCertificateTypeThirdPartyResultsDto;
7805
- certification: ImaUpdateCertificateTypeCertificationResultsDto;
7806
- certificateTypeProductAndOrderInformation: ImaUpdateCertificateTypeProductAndOrderInformationResultsDto;
7807
- testMethodsAndReferences: ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto;
7808
- testResults: ImaUpdateCertificateTypeTestResultsResultsDto;
7809
- documentTypes: ImaUpdateCertificateTypeDocumentTypesResultsDto;
7810
- }
7811
- export interface ImaUpdateCertificateTypeManufacturerResultsDto {
7812
- manufacturer?: ImaUpdateCertificateTypeResultLine | null;
7813
- address?: ImaUpdateCertificateTypeResultLine | null;
7814
- contact?: ImaUpdateCertificateTypeResultLine | null;
7815
- }
7816
- export interface ImaUpdateCertificateTypeResultLine {
7817
- approved?: boolean | null;
7818
- comment?: string | null;
7819
- }
7820
- export interface ImaUpdateCertificateTypeSignatureResultsDto {
7821
- certifiedBy?: ImaUpdateCertificateTypeResultLine | null;
7822
- position?: ImaUpdateCertificateTypeResultLine | null;
7823
- signature?: ImaUpdateCertificateTypeResultLine | null;
7824
- date?: ImaUpdateCertificateTypeResultLine | null;
7825
- stamp?: ImaUpdateCertificateTypeResultLine | null;
7826
- }
7827
- export interface ImaUpdateCertificateTypeThirdPartyResultsDto {
7828
- inspectionBody?: ImaUpdateCertificateTypeResultLine | null;
7829
- inspectorName?: ImaUpdateCertificateTypeResultLine | null;
7830
- position?: ImaUpdateCertificateTypeResultLine | null;
7831
- verificationMethod?: ImaUpdateCertificateTypeResultLine | null;
7832
- signature?: ImaUpdateCertificateTypeResultLine | null;
7833
- date?: ImaUpdateCertificateTypeResultLine | null;
7834
- stamp?: ImaUpdateCertificateTypeResultLine | null;
7835
- }
7836
- export interface ImaUpdateCertificateTypeCertificationResultsDto {
7837
- certificateOfCompliance?: ImaUpdateCertificateTypeResultLine | null;
7838
- inspectionCertificate?: ImaUpdateCertificateTypeResultLine | null;
7839
- }
7840
- export interface ImaUpdateCertificateTypeProductAndOrderInformationResultsDto {
7841
- productDescription?: ImaUpdateCertificateTypeResultLine | null;
7842
- materialGrade?: ImaUpdateCertificateTypeResultLine | null;
7843
- customer?: ImaUpdateCertificateTypeResultLine | null;
7844
- customerOrderNumber?: ImaUpdateCertificateTypeResultLine | null;
7845
- dimensionsOrWeight?: ImaUpdateCertificateTypeResultLine | null;
7846
- batchNumber?: ImaUpdateCertificateTypeResultLine | null;
7847
- heatNumber?: ImaUpdateCertificateTypeResultLine | null;
7848
- relatedStandards?: ImaUpdateCertificateTypeResultLine | null;
7849
- }
7850
- export interface ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
7851
- usedStandards?: ImaUpdateCertificateTypeResultLine | null;
7852
- }
7853
- export interface ImaUpdateCertificateTypeTestResultsResultsDto {
7854
- mechanicalProperties?: ImaUpdateCertificateTypeResultLine | null;
7855
- chemicalAnalysis?: ImaUpdateCertificateTypeResultLine | null;
7856
- impactTests?: ImaUpdateCertificateTypeResultLine | null;
7857
- corrosionTests?: ImaUpdateCertificateTypeResultLine | null;
7858
- ferriteContentAndMicrostructure?: ImaUpdateCertificateTypeResultLine | null;
7859
- }
7860
- export interface ImaUpdateCertificateTypeDocumentTypesResultsDto {
7861
- heatTreatmentCertificate?: ImaUpdateCertificateTypeResultLine | null;
7862
- ultrasonicControlCertificate?: ImaUpdateCertificateTypeResultLine | null;
7863
- liquidPenetrantCertificate?: ImaUpdateCertificateTypeResultLine | null;
7864
- testReport?: ImaUpdateCertificateTypeResultLine | null;
7865
- dimensionalReport?: ImaUpdateCertificateTypeResultLine | null;
7866
- dyePenetrantReport?: ImaUpdateCertificateTypeResultLine | null;
7867
- visualReport?: ImaUpdateCertificateTypeResultLine | null;
7868
- certificateOfAnalyticalAndMechanicalTests?: ImaUpdateCertificateTypeResultLine | null;
7869
- certificateOfTest?: ImaUpdateCertificateTypeResultLine | null;
7870
- technicalReport?: ImaUpdateCertificateTypeResultLine | null;
7871
- microExaminationReport?: ImaUpdateCertificateTypeResultLine | null;
7872
- radiologicalReport?: ImaUpdateCertificateTypeResultLine | null;
7873
- }
7874
- export interface ImaUpdateSpecificationChemistryResultsDto {
7875
- carbon?: ImaUpdateSpecificationResultLineDto | null;
7876
- manganese?: ImaUpdateSpecificationResultLineDto | null;
7877
- silicon?: ImaUpdateSpecificationResultLineDto | null;
7878
- phosphorus?: ImaUpdateSpecificationResultLineDto | null;
7879
- sulfur?: ImaUpdateSpecificationResultLineDto | null;
7880
- chromium?: ImaUpdateSpecificationResultLineDto | null;
7881
- nickel?: ImaUpdateSpecificationResultLineDto | null;
7882
- molybdenum?: ImaUpdateSpecificationResultLineDto | null;
7883
- copper?: ImaUpdateSpecificationResultLineDto | null;
7884
- nitrogen?: ImaUpdateSpecificationResultLineDto | null;
7885
- wolfram?: ImaUpdateSpecificationResultLineDto | null;
7886
- iron?: ImaUpdateSpecificationResultLineDto | null;
7887
- }
7888
- export interface ImaUpdateSpecificationResultLineDto {
7889
- approved?: boolean;
7890
- comment?: string | null;
7891
- }
7892
- export interface ImaUpdateSpecificationMechanicalResultsDto {
7893
- yieldStrength?: ImaUpdateSpecificationResultLineDto | null;
7894
- tensileStrength?: ImaUpdateSpecificationResultLineDto | null;
7895
- elongation?: ImaUpdateSpecificationResultLineDto | null;
7896
- reductionOfArea?: ImaUpdateSpecificationResultLineDto | null;
7897
- impactEnergy?: ImaUpdateSpecificationResultLineDto | null;
7898
- hardness?: ImaUpdateSpecificationResultLineDto | null;
7899
- }
7900
- export interface ImaUpdateSpecificationFerriteResultsDto {
7901
- ferriteContent?: ImaUpdateSpecificationResultLineDto | null;
7902
- }
7903
- export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
7904
- heatTreatmentOverrides: (ImaUpdateSpecificationResultLineDto | null)[];
7905
- }
7906
- export interface ImaCdfEntityReadBase {
7907
- }
7908
- export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
7909
- certificateTypeId: string;
7910
- version: number;
7911
- allVersions: ImaCertificateTypeVersionDto[];
7912
- name: string;
7913
- revision: string;
7914
- status: ImaCertificateTypeStatus;
7915
- description?: string | null;
7916
- isStandardCertificateType: boolean;
7917
- created: Date;
7918
- createdBy: string;
7919
- createdById: string;
7920
- updatedBy?: string | null;
7921
- updatedById?: string | null;
7922
- updated: Date;
7923
- isDeleted: boolean;
7924
- requirements: ImaCertificateTypeRequirementsDto;
7925
- }
7926
- export interface ImaCertificateTypeVersionDto {
7927
- version?: number;
7928
- status?: ImaCertificateTypeStatus;
7929
- }
7930
- export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7931
- export interface ImaCertificateTypeRequirementsDto {
7932
- manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
7933
- signature: ImaCertificateTypeSignatureRequirementsDto;
7934
- thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
7935
- certification: ImaCertificateTypeCertificationRequirementsDto;
7936
- productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
7937
- testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
7938
- testResults: ImaCertificateTypeTestResultsRequirementsDto;
7939
- documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
7940
- }
7941
- export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
7942
- manufacturer?: boolean;
7943
- address?: boolean;
7944
- contact?: boolean;
7945
- }
7946
- export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
7947
- certifiedBy?: boolean;
7948
- position?: boolean;
7949
- signature?: boolean;
7950
- date?: boolean;
7951
- stamp?: boolean;
7952
- }
7953
- export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
7954
- inspectionBody?: boolean;
7955
- inspectorName?: boolean;
7956
- position?: boolean;
7957
- verificationMethod?: boolean;
7958
- signature?: boolean;
7959
- date?: boolean;
7960
- stamp?: boolean;
7961
- }
7962
- export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
7963
- certificateOfCompliance?: boolean;
7964
- inspectionCertificate?: boolean;
7965
- }
7966
- export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
7967
- productDescription?: boolean;
7968
- materialGrade?: boolean;
7969
- customer?: boolean;
7970
- customerOrderNumber?: boolean;
7971
- dimensionsOrWeight?: boolean;
7972
- batchNumber?: boolean;
7973
- heatNumber?: boolean;
7974
- relatedStandards?: boolean;
7975
- }
7976
- export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
7977
- usedStandards?: boolean;
7978
- }
7979
- export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
7980
- mechanicalProperties?: boolean;
7981
- chemicalAnalysis?: boolean;
7982
- impactTests?: boolean;
7983
- corrosionTests?: boolean;
7984
- ferriteContentAndMicrostructure?: boolean;
7713
+ export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
7714
+ mechanicalProperties?: boolean;
7715
+ chemicalAnalysis?: boolean;
7716
+ impactTests?: boolean;
7717
+ corrosionTests?: boolean;
7718
+ ferriteContentAndMicrostructure?: boolean;
7985
7719
  }
7986
7720
  export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
7987
7721
  heatTreatmentCertificate?: boolean;
@@ -8089,11 +7823,366 @@ export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
8089
7823
  created: Date;
8090
7824
  createdBy: string;
8091
7825
  createdById: string;
8092
- updatedBy?: string | null;
8093
- updatedById?: string | null;
7826
+ createdByName: string;
7827
+ updatedBy: string;
7828
+ updatedById: string;
7829
+ updatedByName: string;
8094
7830
  updated: Date;
8095
7831
  isDeleted: boolean;
8096
7832
  }
7833
+ export interface ImaMaterialChecksPageDto {
7834
+ items: ImaMaterialCheckLiteDto[];
7835
+ continuationToken?: string | null;
7836
+ }
7837
+ export interface ImaMaterialCheckLiteDto {
7838
+ materialCheckId: string;
7839
+ originalMaterialCertificate: FileDto;
7840
+ generatedMaterialCertificate?: FileDto | null;
7841
+ customer?: string | null;
7842
+ project?: string | null;
7843
+ workOrder?: string | null;
7844
+ certificateTypeId?: string | null;
7845
+ certificateTypeVersion?: number | null;
7846
+ certificateTypeName?: string | null;
7847
+ specificationId: string;
7848
+ specificationVersion: number;
7849
+ specificationName: string;
7850
+ purchaseOrder?: string | null;
7851
+ purchaseOrderLine?: number | null;
7852
+ purchaseOrderVendorBatches?: string[] | null;
7853
+ purchaseOrderPartName?: string | null;
7854
+ purchaseOrderPartNumber?: string | null;
7855
+ purchaseOrderDrawing?: string | null;
7856
+ heatNumber?: string | null;
7857
+ status: ImaMaterialCheckStatus;
7858
+ created: Date;
7859
+ createdBy: string;
7860
+ createdById: string;
7861
+ createdByName: string;
7862
+ updatedBy: string;
7863
+ updatedById: string;
7864
+ updatedByName: string;
7865
+ isDeleted?: boolean;
7866
+ }
7867
+ export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
7868
+ export interface ImaMaterialChecksPageRequestDto {
7869
+ pageSize?: number | null;
7870
+ orderBy?: ImaMaterialChecksOrderByColumn | null;
7871
+ searchTerm?: string | null;
7872
+ originalReportFilter?: string | null;
7873
+ generatedReportFilter?: string | null;
7874
+ customerFilter?: string | null;
7875
+ projectFilter?: string | null;
7876
+ purchaseOrderFilter?: string | null;
7877
+ workOrderFilter?: string | null;
7878
+ certificateTypeFilter?: string | null;
7879
+ lineFilter?: string | null;
7880
+ itemFilter?: string | null;
7881
+ heatFilter?: string | null;
7882
+ lotFilter?: string | null;
7883
+ dateFromFilter?: Date | null;
7884
+ dateToFilter?: Date | null;
7885
+ statusFilter?: ImaMaterialCheckStatus[] | null;
7886
+ continuationToken?: string | null;
7887
+ }
7888
+ export type ImaMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
7889
+ export interface ImaMaterialCheckDto {
7890
+ materialCheckId: string;
7891
+ originalMaterialCertificate: FileDto;
7892
+ generatedMaterialCertificate?: FileDto | null;
7893
+ customer?: string | null;
7894
+ project?: string | null;
7895
+ workOrder?: string | null;
7896
+ certificateTypeId?: string | null;
7897
+ certificateTypeVersion?: number | null;
7898
+ certificateTypeName?: string | null;
7899
+ specificationId: string;
7900
+ specificationVersion: number;
7901
+ specificationName: string;
7902
+ purchaseOrder?: string | null;
7903
+ purchaseOrderLine?: number | null;
7904
+ purchaseOrderVendorBatches?: string[] | null;
7905
+ purchaseOrderPartName?: string | null;
7906
+ purchaseOrderPartNumber?: string | null;
7907
+ purchaseOrderDrawing?: string | null;
7908
+ heatNumber?: string | null;
7909
+ status: ImaMaterialCheckStatus;
7910
+ created: Date;
7911
+ createdBy: string;
7912
+ createdById: string;
7913
+ createdByName: string;
7914
+ updatedBy: string;
7915
+ updatedById: string;
7916
+ updatedByName: string;
7917
+ isDeleted?: boolean;
7918
+ certificateTypeResults: ImaCertificateTypeResultsDto;
7919
+ specificationResults: ImaSpecificationResultsDto;
7920
+ }
7921
+ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
7922
+ manufacturer: ImaCertificateTypeManufacturerResultsDto;
7923
+ signature: ImaCertificateTypeSignatureResultsDto;
7924
+ thirdParty: ImaCertificateTypeThirdPartyResultsDto;
7925
+ certification: ImaCertificateTypeCertificationResultsDto;
7926
+ productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
7927
+ testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
7928
+ testResults: ImaCertificateTypeTestResultsResultsDto;
7929
+ documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
7930
+ }
7931
+ export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
7932
+ manufacturer?: ImaCertificateTypeResultLine | null;
7933
+ address?: ImaCertificateTypeResultLine | null;
7934
+ contact?: ImaCertificateTypeResultLine | null;
7935
+ }
7936
+ export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
7937
+ found?: boolean;
7938
+ readValue?: string | null;
7939
+ override?: ImaResultLineOverrideDto | null;
7940
+ }
7941
+ export interface ImaResultLineOverrideDto extends ImaCdfEntityReadBase {
7942
+ approved: boolean;
7943
+ comment?: string | null;
7944
+ updated: Date;
7945
+ updatedBy: string;
7946
+ updatedById: string;
7947
+ }
7948
+ export interface ImaCertificateTypeSignatureResultsDto extends ImaCdfEntityReadBase {
7949
+ certifiedBy?: ImaCertificateTypeResultLine | null;
7950
+ position?: ImaCertificateTypeResultLine | null;
7951
+ signature?: ImaCertificateTypeResultLine | null;
7952
+ date?: ImaCertificateTypeResultLine | null;
7953
+ stamp?: ImaCertificateTypeResultLine | null;
7954
+ }
7955
+ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityReadBase {
7956
+ inspectionBody?: ImaCertificateTypeResultLine | null;
7957
+ inspectorName?: ImaCertificateTypeResultLine | null;
7958
+ position?: ImaCertificateTypeResultLine | null;
7959
+ verificationMethod?: ImaCertificateTypeResultLine | null;
7960
+ signature?: ImaCertificateTypeResultLine | null;
7961
+ date?: ImaCertificateTypeResultLine | null;
7962
+ stamp?: ImaCertificateTypeResultLine | null;
7963
+ }
7964
+ export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
7965
+ certificateOfCompliance?: ImaCertificateTypeResultLine | null;
7966
+ inspectionCertificate?: ImaCertificateTypeResultLine | null;
7967
+ }
7968
+ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
7969
+ productDescription?: ImaCertificateTypeResultLine | null;
7970
+ materialGrade?: ImaCertificateTypeResultLine | null;
7971
+ customer?: ImaCertificateTypeResultLine | null;
7972
+ customerOrderNumber?: ImaCertificateTypeResultLine | null;
7973
+ dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
7974
+ batchNumber?: ImaCertificateTypeResultLine | null;
7975
+ heatNumber?: ImaCertificateTypeResultLine | null;
7976
+ relatedStandards?: ImaCertificateTypeResultLine | null;
7977
+ }
7978
+ export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
7979
+ usedStandards?: ImaCertificateTypeResultLine | null;
7980
+ }
7981
+ export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
7982
+ mechanicalProperties?: ImaCertificateTypeResultLine | null;
7983
+ chemicalAnalysis?: ImaCertificateTypeResultLine | null;
7984
+ impactTests?: ImaCertificateTypeResultLine | null;
7985
+ corrosionTests?: ImaCertificateTypeResultLine | null;
7986
+ ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
7987
+ }
7988
+ export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
7989
+ heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
7990
+ ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
7991
+ liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
7992
+ testReport?: ImaCertificateTypeResultLine | null;
7993
+ dimensionalReport?: ImaCertificateTypeResultLine | null;
7994
+ dyePenetrantReport?: ImaCertificateTypeResultLine | null;
7995
+ visualReport?: ImaCertificateTypeResultLine | null;
7996
+ certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
7997
+ certificateOfTest?: ImaCertificateTypeResultLine | null;
7998
+ technicalReport?: ImaCertificateTypeResultLine | null;
7999
+ microExaminationReport?: ImaCertificateTypeResultLine | null;
8000
+ radiologicalReport?: ImaCertificateTypeResultLine | null;
8001
+ }
8002
+ export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
8003
+ chemistry: ImaSpecificationChemistryResultsDto;
8004
+ mechanical: ImaSpecificationMechanicalResultsDto;
8005
+ ferrite: ImaSpecificationFerriteResultsDto;
8006
+ heatTreatments: ImaSpecificationHeatTreatmentResultDto[];
8007
+ }
8008
+ export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
8009
+ carbon?: ImaSpecificationResultLineDto | null;
8010
+ manganese?: ImaSpecificationResultLineDto | null;
8011
+ silicon?: ImaSpecificationResultLineDto | null;
8012
+ phosphorus?: ImaSpecificationResultLineDto | null;
8013
+ sulfur?: ImaSpecificationResultLineDto | null;
8014
+ chromium?: ImaSpecificationResultLineDto | null;
8015
+ nickel?: ImaSpecificationResultLineDto | null;
8016
+ molybdenum?: ImaSpecificationResultLineDto | null;
8017
+ copper?: ImaSpecificationResultLineDto | null;
8018
+ nitrogen?: ImaSpecificationResultLineDto | null;
8019
+ wolfram?: ImaSpecificationResultLineDto | null;
8020
+ iron?: ImaSpecificationResultLineDto | null;
8021
+ }
8022
+ export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
8023
+ specificationMin?: number | null;
8024
+ specificationMax?: number | null;
8025
+ readValue?: string | null;
8026
+ status: ImaSpecificationResultLineStatus;
8027
+ override?: ImaResultLineOverrideDto | null;
8028
+ }
8029
+ export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
8030
+ export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBase {
8031
+ yieldStrength?: ImaSpecificationResultLineDto | null;
8032
+ tensileStrength?: ImaSpecificationResultLineDto | null;
8033
+ elongation?: ImaSpecificationResultLineDto | null;
8034
+ reductionOfArea?: ImaSpecificationResultLineDto | null;
8035
+ impactEnergy?: ImaSpecificationResultLineDto | null;
8036
+ hardness?: ImaSpecificationResultLineDto | null;
8037
+ }
8038
+ export interface ImaSpecificationFerriteResultsDto extends ImaCdfEntityReadBase {
8039
+ ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
8040
+ }
8041
+ export interface ImaSpecificationFerriteResultLineDto {
8042
+ specificationOperator?: string | null;
8043
+ specificationValue1?: string | null;
8044
+ specificationValue2?: string | null;
8045
+ specificationSymbol?: string | null;
8046
+ readValue?: string | null;
8047
+ status: ImaSpecificationResultLineStatus;
8048
+ override?: ImaResultLineOverrideDto | null;
8049
+ measurementMethod?: string | null;
8050
+ }
8051
+ export interface ImaSpecificationHeatTreatmentResultDto extends ImaCdfEntityReadBase {
8052
+ step: number;
8053
+ cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
8054
+ heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
8055
+ }
8056
+ export interface ImaSpecificationHeatTreatmentCoolingResult extends ImaCdfEntityReadBase {
8057
+ coolingMethods?: string[] | null;
8058
+ temperature?: ImaSpecificationResultLineDto | null;
8059
+ duration?: ImaSpecificationResultLineDto | null;
8060
+ }
8061
+ export interface ImaSpecificationHeatTreatmentHeatingResult extends ImaCdfEntityReadBase {
8062
+ heatingMethod?: string | null;
8063
+ temperature?: ImaSpecificationResultLineDto | null;
8064
+ duration?: ImaSpecificationResultLineDto | null;
8065
+ }
8066
+ export interface ProcessMaterialCertificate {
8067
+ files: UploadFileCdfDto[];
8068
+ specificationId: string;
8069
+ specificationVersion: number;
8070
+ certificateTypeId?: string | null;
8071
+ certificateTypeVersion?: number | null;
8072
+ purchaseOrder?: string | null;
8073
+ purchaseOrderLine?: number | null;
8074
+ }
8075
+ export interface UploadFileCdfDto {
8076
+ id: number;
8077
+ }
8078
+ export interface ImaUpdateMaterialCheckRequestDto {
8079
+ certificateTypeSection?: ImaUpdateCertificateTypeResultsDto | null;
8080
+ chemistrySpecificationSection?: ImaUpdateSpecificationChemistryResultsDto | null;
8081
+ mechanicalSpecificationSection?: ImaUpdateSpecificationMechanicalResultsDto | null;
8082
+ ferriteSpecificationSection?: ImaUpdateSpecificationFerriteResultsDto | null;
8083
+ heatSpecificationSection?: ImaUpdateSpecificationHeatTreatmentResultsDto | null;
8084
+ }
8085
+ export interface ImaUpdateCertificateTypeResultsDto {
8086
+ manufacturer?: ImaUpdateCertificateTypeManufacturerResultsDto | null;
8087
+ signature?: ImaUpdateCertificateTypeSignatureResultsDto | null;
8088
+ thirdParty?: ImaUpdateCertificateTypeThirdPartyResultsDto | null;
8089
+ certification?: ImaUpdateCertificateTypeCertificationResultsDto | null;
8090
+ certificateTypeProductAndOrderInformation?: ImaUpdateCertificateTypeProductAndOrderInformationResultsDto | null;
8091
+ testMethodsAndReferences?: ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto | null;
8092
+ testResults?: ImaUpdateCertificateTypeTestResultsResultsDto | null;
8093
+ documentTypes?: ImaUpdateCertificateTypeDocumentTypesResultsDto | null;
8094
+ }
8095
+ export interface ImaUpdateCertificateTypeManufacturerResultsDto {
8096
+ manufacturer?: ImaUpdateMaterialCheckResultLineDto | null;
8097
+ address?: ImaUpdateMaterialCheckResultLineDto | null;
8098
+ contact?: ImaUpdateMaterialCheckResultLineDto | null;
8099
+ }
8100
+ export interface ImaUpdateMaterialCheckResultLineDto {
8101
+ approved?: boolean;
8102
+ comment?: string | null;
8103
+ }
8104
+ export interface ImaUpdateCertificateTypeSignatureResultsDto {
8105
+ certifiedBy?: ImaUpdateMaterialCheckResultLineDto | null;
8106
+ position?: ImaUpdateMaterialCheckResultLineDto | null;
8107
+ signature?: ImaUpdateMaterialCheckResultLineDto | null;
8108
+ date?: ImaUpdateMaterialCheckResultLineDto | null;
8109
+ stamp?: ImaUpdateMaterialCheckResultLineDto | null;
8110
+ }
8111
+ export interface ImaUpdateCertificateTypeThirdPartyResultsDto {
8112
+ inspectionBody?: ImaUpdateMaterialCheckResultLineDto | null;
8113
+ inspectorName?: ImaUpdateMaterialCheckResultLineDto | null;
8114
+ position?: ImaUpdateMaterialCheckResultLineDto | null;
8115
+ verificationMethod?: ImaUpdateMaterialCheckResultLineDto | null;
8116
+ signature?: ImaUpdateMaterialCheckResultLineDto | null;
8117
+ date?: ImaUpdateMaterialCheckResultLineDto | null;
8118
+ stamp?: ImaUpdateMaterialCheckResultLineDto | null;
8119
+ }
8120
+ export interface ImaUpdateCertificateTypeCertificationResultsDto {
8121
+ certificateOfCompliance?: ImaUpdateMaterialCheckResultLineDto | null;
8122
+ inspectionCertificate?: ImaUpdateMaterialCheckResultLineDto | null;
8123
+ }
8124
+ export interface ImaUpdateCertificateTypeProductAndOrderInformationResultsDto {
8125
+ productDescription?: ImaUpdateMaterialCheckResultLineDto | null;
8126
+ materialGrade?: ImaUpdateMaterialCheckResultLineDto | null;
8127
+ customer?: ImaUpdateMaterialCheckResultLineDto | null;
8128
+ customerOrderNumber?: ImaUpdateMaterialCheckResultLineDto | null;
8129
+ dimensionsOrWeight?: ImaUpdateMaterialCheckResultLineDto | null;
8130
+ batchNumber?: ImaUpdateMaterialCheckResultLineDto | null;
8131
+ heatNumber?: ImaUpdateMaterialCheckResultLineDto | null;
8132
+ relatedStandards?: ImaUpdateMaterialCheckResultLineDto | null;
8133
+ }
8134
+ export interface ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
8135
+ usedStandards?: ImaUpdateMaterialCheckResultLineDto | null;
8136
+ }
8137
+ export interface ImaUpdateCertificateTypeTestResultsResultsDto {
8138
+ mechanicalProperties?: ImaUpdateMaterialCheckResultLineDto | null;
8139
+ chemicalAnalysis?: ImaUpdateMaterialCheckResultLineDto | null;
8140
+ impactTests?: ImaUpdateMaterialCheckResultLineDto | null;
8141
+ corrosionTests?: ImaUpdateMaterialCheckResultLineDto | null;
8142
+ ferriteContentAndMicrostructure?: ImaUpdateMaterialCheckResultLineDto | null;
8143
+ }
8144
+ export interface ImaUpdateCertificateTypeDocumentTypesResultsDto {
8145
+ heatTreatmentCertificate?: ImaUpdateMaterialCheckResultLineDto | null;
8146
+ ultrasonicControlCertificate?: ImaUpdateMaterialCheckResultLineDto | null;
8147
+ liquidPenetrantCertificate?: ImaUpdateMaterialCheckResultLineDto | null;
8148
+ testReport?: ImaUpdateMaterialCheckResultLineDto | null;
8149
+ dimensionalReport?: ImaUpdateMaterialCheckResultLineDto | null;
8150
+ dyePenetrantReport?: ImaUpdateMaterialCheckResultLineDto | null;
8151
+ visualReport?: ImaUpdateMaterialCheckResultLineDto | null;
8152
+ certificateOfAnalyticalAndMechanicalTests?: ImaUpdateMaterialCheckResultLineDto | null;
8153
+ certificateOfTest?: ImaUpdateMaterialCheckResultLineDto | null;
8154
+ technicalReport?: ImaUpdateMaterialCheckResultLineDto | null;
8155
+ microExaminationReport?: ImaUpdateMaterialCheckResultLineDto | null;
8156
+ radiologicalReport?: ImaUpdateMaterialCheckResultLineDto | null;
8157
+ }
8158
+ export interface ImaUpdateSpecificationChemistryResultsDto {
8159
+ carbon?: ImaUpdateMaterialCheckResultLineDto | null;
8160
+ manganese?: ImaUpdateMaterialCheckResultLineDto | null;
8161
+ silicon?: ImaUpdateMaterialCheckResultLineDto | null;
8162
+ phosphorus?: ImaUpdateMaterialCheckResultLineDto | null;
8163
+ sulfur?: ImaUpdateMaterialCheckResultLineDto | null;
8164
+ chromium?: ImaUpdateMaterialCheckResultLineDto | null;
8165
+ nickel?: ImaUpdateMaterialCheckResultLineDto | null;
8166
+ molybdenum?: ImaUpdateMaterialCheckResultLineDto | null;
8167
+ copper?: ImaUpdateMaterialCheckResultLineDto | null;
8168
+ nitrogen?: ImaUpdateMaterialCheckResultLineDto | null;
8169
+ wolfram?: ImaUpdateMaterialCheckResultLineDto | null;
8170
+ iron?: ImaUpdateMaterialCheckResultLineDto | null;
8171
+ }
8172
+ export interface ImaUpdateSpecificationMechanicalResultsDto {
8173
+ yieldStrength?: ImaUpdateMaterialCheckResultLineDto | null;
8174
+ tensileStrength?: ImaUpdateMaterialCheckResultLineDto | null;
8175
+ elongation?: ImaUpdateMaterialCheckResultLineDto | null;
8176
+ reductionOfArea?: ImaUpdateMaterialCheckResultLineDto | null;
8177
+ impactEnergy?: ImaUpdateMaterialCheckResultLineDto | null;
8178
+ hardness?: ImaUpdateMaterialCheckResultLineDto | null;
8179
+ }
8180
+ export interface ImaUpdateSpecificationFerriteResultsDto {
8181
+ ferriteContent?: ImaUpdateMaterialCheckResultLineDto | null;
8182
+ }
8183
+ export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
8184
+ heatTreatmentOverrides?: ImaUpdateMaterialCheckResultLineDto[] | null;
8185
+ }
8097
8186
  export interface PurchaseOrderMaterialSearchResultsDto {
8098
8187
  purchaseOrders: string[];
8099
8188
  }
@@ -8147,8 +8236,10 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
8147
8236
  created: Date;
8148
8237
  createdBy: string;
8149
8238
  createdById: string;
8239
+ createdByName: string;
8150
8240
  updatedBy: string;
8151
8241
  updatedById: string;
8242
+ updatedByName: string;
8152
8243
  updated: Date;
8153
8244
  isDeleted: boolean;
8154
8245
  chemistrySpecification: ImaChemistrySpecificationDto;
@@ -8176,12 +8267,9 @@ export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
8176
8267
  iron?: ImaSpecificationLineDto | null;
8177
8268
  }
8178
8269
  export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
8179
- operator: ImaSpecificationOperator;
8180
- value1: number;
8181
- value2?: number | null;
8182
- unit: ImaSpecificationUnit;
8270
+ min?: number | null;
8271
+ max?: number | null;
8183
8272
  }
8184
- export type ImaSpecificationOperator = "Min" | "Max" | "Between" | "NotSet";
8185
8273
  export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
8186
8274
  yieldStrength?: ImaSpecificationLineDto | null;
8187
8275
  tensileStrength?: ImaSpecificationLineDto | null;
@@ -8211,15 +8299,15 @@ export interface ImaHeatTreatmentSpecificationHeatingDto extends ImaCdfEntityRea
8211
8299
  }
8212
8300
  export type ImaHeatTreatmentHeatingMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
8213
8301
  export interface ImaCreateSpecificationRequestDto {
8214
- specificationName: string;
8215
- specificationNumber: string;
8302
+ name: string;
8303
+ number: string;
8216
8304
  revision: string;
8217
8305
  date: Date;
8218
8306
  specificationFile?: UploadFileDto | null;
8219
8307
  }
8220
8308
  export interface ImaCopySpecificationRequestDto {
8221
- specificationName: string;
8222
- specificationNumber: string;
8309
+ name: string;
8310
+ number: string;
8223
8311
  revision: string;
8224
8312
  date: Date;
8225
8313
  }
@@ -8248,8 +8336,10 @@ export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
8248
8336
  created: Date;
8249
8337
  createdBy: string;
8250
8338
  createdById: string;
8339
+ createdByName: string;
8251
8340
  updatedBy: string;
8252
8341
  updatedById: string;
8342
+ updatedByName: string;
8253
8343
  isDeleted: boolean;
8254
8344
  }
8255
8345
  export interface MeasurementFormSchemaDto {
@@ -8800,6 +8890,7 @@ export interface ListMeasurementFormsRequest {
8800
8890
  pageSize?: number | null;
8801
8891
  search?: string | null;
8802
8892
  continuationToken?: string | null;
8893
+ tenantId?: string | null;
8803
8894
  inactive?: boolean | null;
8804
8895
  includeInactiveSupplierAccess?: boolean | null;
8805
8896
  }
@@ -8995,6 +9086,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
8995
9086
  externalOrderNumber?: string | null;
8996
9087
  }
8997
9088
  export interface ExportDimensionReportV2Request {
9089
+ tenantId?: string | null;
8998
9090
  type: DimensionReportType;
8999
9091
  extras?: DimensionReportExtras | null;
9000
9092
  specificSerialNumbers?: string[] | null;
@@ -9335,78 +9427,6 @@ export interface SetDiscussionLastReadRequest {
9335
9427
  operationId?: string | null;
9336
9428
  resourceId?: string | null;
9337
9429
  }
9338
- export interface CompanyUserDto {
9339
- companyId: string;
9340
- userObjectId: string;
9341
- username?: string | null;
9342
- name?: string | null;
9343
- roles: string[];
9344
- }
9345
- export interface CreateCompanyUser {
9346
- username: string;
9347
- name: string;
9348
- roles: string[];
9349
- companyId?: string | null;
9350
- }
9351
- export interface UpdateCompanyUserRequest {
9352
- roles: string[];
9353
- companyId?: string | null;
9354
- }
9355
- export interface ExternalRoleDto {
9356
- id: string;
9357
- name: string;
9358
- }
9359
- export interface CompanyCustomerDto {
9360
- customerTenantId?: string | null;
9361
- customerAzureAdTenantId?: string | null;
9362
- customerName?: string | null;
9363
- supplierId?: string | null;
9364
- supplierName?: string | null;
9365
- customerIgnosPortalPrefix?: string | null;
9366
- }
9367
- export interface CompanyDto {
9368
- id?: string;
9369
- name?: string;
9370
- organizationNumber?: string | null;
9371
- country?: string;
9372
- tenantId?: string | null;
9373
- }
9374
- export interface SupplierInviteDto {
9375
- id: string;
9376
- supplierId: string;
9377
- supplierName?: string | null;
9378
- customerName?: string | null;
9379
- userId: string;
9380
- userName?: string | null;
9381
- deadline: Date;
9382
- acceptedTimestamp?: Date | null;
9383
- createdTime: Date;
9384
- createdBy: string;
9385
- }
9386
- export interface AcceptSupplierInvite {
9387
- companyName?: string | null;
9388
- companyId?: string | null;
9389
- organizationNumber?: string;
9390
- threeLetterIsoCountry?: string;
9391
- }
9392
- export interface CreateSupplierInvite {
9393
- supplierId: string;
9394
- supplierName?: string | null;
9395
- username: string;
9396
- invitedName: string;
9397
- deadline: Date;
9398
- }
9399
- export interface ExternalSupplierDto {
9400
- id: string;
9401
- name: string;
9402
- companyId: string;
9403
- active: boolean;
9404
- }
9405
- export interface CreateSupplierMapping {
9406
- companyId: string;
9407
- existingSupplierId: string;
9408
- newSupplierId: string;
9409
- }
9410
9430
  export type FeatureCollectionType = "FeatureCollection";
9411
9431
  export interface Features {
9412
9432
  type: FeaturesType;