@ignos/api-client 20260312.77.1-alpha → 20260318.79.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -124,7 +124,6 @@ export declare class CustomersClient extends AuthorizedApiBase implements ICusto
124
124
  }
125
125
  export interface IGuestsClient {
126
126
  getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
127
- getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
128
127
  }
129
128
  export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
130
129
  private http;
@@ -134,8 +133,6 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
134
133
  });
135
134
  getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
136
135
  protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
137
- getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
138
- protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
139
136
  }
140
137
  export interface IPresentationClient {
141
138
  getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
@@ -1428,6 +1425,99 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
1428
1425
  listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
1429
1426
  protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
1430
1427
  }
1428
+ export interface IExternalAccessClient {
1429
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1430
+ createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1431
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1432
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1433
+ listRoles(): Promise<ExternalRoleDto[]>;
1434
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1435
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
1436
+ }
1437
+ export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
1438
+ private http;
1439
+ private baseUrl;
1440
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1441
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1442
+ });
1443
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1444
+ protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
1445
+ createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1446
+ protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
1447
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1448
+ protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
1449
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1450
+ protected processDeleteCompanyUser(response: Response): Promise<void>;
1451
+ listRoles(): Promise<ExternalRoleDto[]>;
1452
+ protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
1453
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1454
+ protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
1455
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
1456
+ protected processDeleteCompanyCustomer(response: Response): Promise<void>;
1457
+ }
1458
+ export interface IExternalClient {
1459
+ listInvites(): Promise<InviteDto[]>;
1460
+ acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1461
+ listCompanies(): Promise<CompanyDto[]>;
1462
+ }
1463
+ export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
1464
+ private http;
1465
+ private baseUrl;
1466
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1467
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1468
+ });
1469
+ listInvites(): Promise<InviteDto[]>;
1470
+ protected processListInvites(response: Response): Promise<InviteDto[]>;
1471
+ acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1472
+ protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
1473
+ listCompanies(): Promise<CompanyDto[]>;
1474
+ protected processListCompanies(response: Response): Promise<CompanyDto[]>;
1475
+ }
1476
+ export interface ISuppliersClient {
1477
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
1478
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1479
+ deleteSupplierInvite(id: string): Promise<void>;
1480
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
1481
+ deleteSupplier(id: string): Promise<void>;
1482
+ importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1483
+ /**
1484
+ * Creates a mapping between old supplier id and new supplier id.
1485
+ */
1486
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1487
+ /**
1488
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
1489
+ */
1490
+ deleteSupplierMappings(): Promise<void>;
1491
+ }
1492
+ export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
1493
+ private http;
1494
+ private baseUrl;
1495
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1496
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1497
+ });
1498
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
1499
+ protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
1500
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1501
+ protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
1502
+ deleteSupplierInvite(id: string): Promise<void>;
1503
+ protected processDeleteSupplierInvite(response: Response): Promise<void>;
1504
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
1505
+ protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
1506
+ deleteSupplier(id: string): Promise<void>;
1507
+ protected processDeleteSupplier(response: Response): Promise<void>;
1508
+ importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1509
+ protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
1510
+ /**
1511
+ * Creates a mapping between old supplier id and new supplier id.
1512
+ */
1513
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1514
+ protected processCreateSupplierMapping(response: Response): Promise<void>;
1515
+ /**
1516
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
1517
+ */
1518
+ deleteSupplierMappings(): Promise<void>;
1519
+ protected processDeleteSupplierMappings(response: Response): Promise<void>;
1520
+ }
1431
1521
  export interface ICncFileTransferClient {
1432
1522
  startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1433
1523
  startCncMachineOperationTransferToMachine(id: string): Promise<CncMachineTransferDto>;
@@ -2420,13 +2510,13 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
2420
2510
  deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
2421
2511
  protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
2422
2512
  }
2423
- export interface IMaterialCertificateChecksClient {
2513
+ export interface IInspectMatchCertificateChecksClient {
2424
2514
  listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
2425
2515
  getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
2426
2516
  processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
2427
2517
  updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
2428
2518
  }
2429
- export declare class MaterialCertificateChecksClient extends AuthorizedApiBase implements IMaterialCertificateChecksClient {
2519
+ export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBase implements IInspectMatchCertificateChecksClient {
2430
2520
  private http;
2431
2521
  private baseUrl;
2432
2522
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
@@ -2441,41 +2531,17 @@ export declare class MaterialCertificateChecksClient extends AuthorizedApiBase i
2441
2531
  updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
2442
2532
  protected processUpdateMaterialCertificate(response: Response): Promise<ImaMaterialCheckDto>;
2443
2533
  }
2444
- export interface IMaterialCertificateSpecificationsClient {
2445
- listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2446
- getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2447
- updateSpecifications(id: string, version: number | null | undefined, _: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2448
- deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2449
- createSpecifications(createDto: CreateImaSpecificationDto): Promise<ImaSpecificationDto>;
2450
- }
2451
- export declare class MaterialCertificateSpecificationsClient extends AuthorizedApiBase implements IMaterialCertificateSpecificationsClient {
2452
- private http;
2453
- private baseUrl;
2454
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2455
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2456
- });
2457
- listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2458
- protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2459
- getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2460
- protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
2461
- updateSpecifications(id: string, version: number | null | undefined, _: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2462
- protected processUpdateSpecifications(response: Response): Promise<ImaSpecificationDto>;
2463
- deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2464
- protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
2465
- createSpecifications(createDto: CreateImaSpecificationDto): Promise<ImaSpecificationDto>;
2466
- protected processCreateSpecifications(response: Response): Promise<ImaSpecificationDto>;
2467
- }
2468
- export interface IMaterialCertificateTypesClient {
2534
+ export interface IInspectMatchCertificateTypesClient {
2469
2535
  listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
2470
2536
  getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2471
2537
  updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2472
2538
  deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2473
- createMaterialCertificateTypes(payload: ImaCreateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2474
- copyMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2539
+ createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2540
+ copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2475
2541
  createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2476
2542
  releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2477
2543
  }
2478
- export declare class MaterialCertificateTypesClient extends AuthorizedApiBase implements IMaterialCertificateTypesClient {
2544
+ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBase implements IInspectMatchCertificateTypesClient {
2479
2545
  private http;
2480
2546
  private baseUrl;
2481
2547
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
@@ -2489,15 +2555,48 @@ export declare class MaterialCertificateTypesClient extends AuthorizedApiBase im
2489
2555
  protected processUpdateMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
2490
2556
  deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2491
2557
  protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
2492
- createMaterialCertificateTypes(payload: ImaCreateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2558
+ createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2493
2559
  protected processCreateMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
2494
- copyMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2560
+ copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2495
2561
  protected processCopyMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
2496
2562
  createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2497
2563
  protected processCreateNewVersionForCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
2498
2564
  releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2499
2565
  protected processReleaseMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
2500
2566
  }
2567
+ export interface IInspectMatchSpecificationsClient {
2568
+ listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2569
+ getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2570
+ updateSpecifications(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2571
+ deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2572
+ createSpecifications(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
2573
+ copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
2574
+ createNewVersionForSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2575
+ releaseSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2576
+ }
2577
+ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase implements IInspectMatchSpecificationsClient {
2578
+ private http;
2579
+ private baseUrl;
2580
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2581
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2582
+ });
2583
+ listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2584
+ protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2585
+ getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2586
+ protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
2587
+ updateSpecifications(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2588
+ protected processUpdateSpecifications(response: Response): Promise<ImaSpecificationDto>;
2589
+ deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2590
+ protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
2591
+ createSpecifications(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
2592
+ protected processCreateSpecifications(response: Response): Promise<ImaSpecificationDto>;
2593
+ copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
2594
+ protected processCopySpecification(response: Response): Promise<ImaSpecificationDto>;
2595
+ createNewVersionForSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2596
+ protected processCreateNewVersionForSpecification(response: Response): Promise<ImaSpecificationDto>;
2597
+ releaseSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2598
+ protected processReleaseSpecification(response: Response): Promise<ImaSpecificationDto>;
2599
+ }
2501
2600
  export interface IMeasurementFormSchemasAdminClient {
2502
2601
  getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
2503
2602
  createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
@@ -2748,22 +2847,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
2748
2847
  protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
2749
2848
  }
2750
2849
  export interface IMeasurementFormsInstancesClient {
2751
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2850
+ 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>;
2752
2851
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2753
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2852
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2754
2853
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
2755
- completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2756
- completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
2757
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2758
- getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
2759
- getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2854
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2855
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2856
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2857
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2858
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2760
2859
  getValidationRules(): Promise<ValidationRuleDto[]>;
2761
- saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2762
- saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2763
- saveComment(id: string, request: SaveCommentRequest): Promise<void>;
2764
- batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2765
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2766
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2860
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2861
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2862
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2863
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2864
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2865
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2767
2866
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2768
2867
  upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
2769
2868
  removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
@@ -2779,37 +2878,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
2779
2878
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2780
2879
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2781
2880
  });
2782
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2881
+ 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>;
2783
2882
  protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2784
2883
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2785
2884
  protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2786
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2885
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2787
2886
  protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2788
2887
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
2789
2888
  protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
2790
- completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2889
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2791
2890
  protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2792
- completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
2891
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2793
2892
  protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
2794
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2893
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2795
2894
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
2796
- getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
2895
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2797
2896
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
2798
- getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2897
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2799
2898
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
2800
2899
  getValidationRules(): Promise<ValidationRuleDto[]>;
2801
2900
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
2802
- saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2901
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2803
2902
  protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
2804
- saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2903
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2805
2904
  protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
2806
- saveComment(id: string, request: SaveCommentRequest): Promise<void>;
2905
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2807
2906
  protected processSaveComment(response: Response): Promise<void>;
2808
- batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2907
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2809
2908
  protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
2810
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2909
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2811
2910
  protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
2812
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2911
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2813
2912
  protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
2814
2913
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2815
2914
  protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
@@ -2834,7 +2933,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
2834
2933
  createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
2835
2934
  reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2836
2935
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2837
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
2936
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2838
2937
  }
2839
2938
  export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
2840
2939
  private http;
@@ -2858,7 +2957,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
2858
2957
  protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2859
2958
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2860
2959
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2861
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
2960
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2862
2961
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
2863
2962
  }
2864
2963
  export interface ICompaniesClient {
@@ -3198,99 +3297,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3198
3297
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3199
3298
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3200
3299
  }
3201
- export interface IExternalAccessClient {
3202
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3203
- createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3204
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3205
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3206
- listRoles(): Promise<ExternalRoleDto[]>;
3207
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3208
- deleteCompanyCustomer(tenantId: string): Promise<void>;
3209
- }
3210
- export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
3211
- private http;
3212
- private baseUrl;
3213
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3214
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3215
- });
3216
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3217
- protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
3218
- createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3219
- protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
3220
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3221
- protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
3222
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3223
- protected processDeleteCompanyUser(response: Response): Promise<void>;
3224
- listRoles(): Promise<ExternalRoleDto[]>;
3225
- protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
3226
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3227
- protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
3228
- deleteCompanyCustomer(tenantId: string): Promise<void>;
3229
- protected processDeleteCompanyCustomer(response: Response): Promise<void>;
3230
- }
3231
- export interface IExternalClient {
3232
- listCompanies(): Promise<CompanyDto[]>;
3233
- getCompany(id: string): Promise<CompanyDto>;
3234
- getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3235
- acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3236
- }
3237
- export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
3238
- private http;
3239
- private baseUrl;
3240
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3241
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3242
- });
3243
- listCompanies(): Promise<CompanyDto[]>;
3244
- protected processListCompanies(response: Response): Promise<CompanyDto[]>;
3245
- getCompany(id: string): Promise<CompanyDto>;
3246
- protected processGetCompany(response: Response): Promise<CompanyDto>;
3247
- getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3248
- protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3249
- acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3250
- protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3251
- }
3252
- export interface ISuppliersClient {
3253
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3254
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3255
- deleteSupplierInvite(id: string): Promise<void>;
3256
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3257
- deleteSupplier(id: string): Promise<void>;
3258
- /**
3259
- * Creates a mapping between old supplier id and new supplier id.
3260
- */
3261
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3262
- /**
3263
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3264
- */
3265
- deleteSupplierMappings(): Promise<void>;
3266
- }
3267
- export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
3268
- private http;
3269
- private baseUrl;
3270
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3271
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3272
- });
3273
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3274
- protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3275
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3276
- protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3277
- deleteSupplierInvite(id: string): Promise<void>;
3278
- protected processDeleteSupplierInvite(response: Response): Promise<void>;
3279
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3280
- protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3281
- deleteSupplier(id: string): Promise<void>;
3282
- protected processDeleteSupplier(response: Response): Promise<void>;
3283
- /**
3284
- * Creates a mapping between old supplier id and new supplier id.
3285
- */
3286
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3287
- protected processCreateSupplierMapping(response: Response): Promise<void>;
3288
- /**
3289
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3290
- */
3291
- deleteSupplierMappings(): Promise<void>;
3292
- protected processDeleteSupplierMappings(response: Response): Promise<void>;
3293
- }
3294
3300
  export interface AzureRegionDto {
3295
3301
  displayName: string;
3296
3302
  name: string;
@@ -3524,8 +3530,6 @@ export interface UserDetailsDto {
3524
3530
  isExternalUser?: boolean;
3525
3531
  isBetaTester?: boolean | null;
3526
3532
  hasAccessToIgnos?: boolean;
3527
- isInvitedUser?: boolean;
3528
- isSupplier?: boolean;
3529
3533
  }
3530
3534
  export interface UserDto {
3531
3535
  id?: string | null;
@@ -5393,45 +5397,136 @@ export interface DocumentGeneratorTypeDto {
5393
5397
  key: string;
5394
5398
  description: string;
5395
5399
  }
5396
- export interface CncMachineTransferDto {
5397
- id: string;
5398
- cncMachineOperationId?: string | null;
5399
- cncMachineId: string;
5400
- cncMachineName: string;
5401
- direction: FileTransferDirection;
5402
- files: string[];
5403
- status: FileTransferStatus;
5404
- statusMessage?: string | null;
5405
- timestamp: Date;
5406
- }
5407
- export type FileTransferDirection = "FromCloud" | "ToCloud";
5408
- export type FileTransferStatus = "InProgress" | "Success" | "Failed";
5409
- export interface UploadCamFileDto {
5410
- uploadUrl: string;
5411
- path: string;
5412
- url: string;
5400
+ export interface CompanyUserDto {
5401
+ companyId?: string | null;
5402
+ username?: string | null;
5403
+ name?: string | null;
5404
+ roles?: string[] | null;
5413
5405
  }
5414
- export interface UploadCamFileRequest {
5415
- filename: string;
5406
+ export interface CreateCompanyUserRequest {
5407
+ username: string;
5408
+ name: string;
5409
+ roles: string[];
5410
+ companyId?: string | null;
5416
5411
  }
5417
- export interface CamTransferDto {
5418
- path: string;
5419
- content: string;
5412
+ export interface UpdateCompanyUserRequest {
5413
+ name: string;
5414
+ roles: string[];
5415
+ companyId?: string | null;
5420
5416
  }
5421
- export interface StartCamTransferToMachine {
5422
- path: string;
5423
- content: string;
5424
- cncMachineId: string;
5417
+ export interface ExternalRoleDto {
5418
+ id: string;
5419
+ name: string;
5425
5420
  }
5426
- export interface StartCamTransferToMachineFromTempUpload {
5427
- uploadKey: string;
5428
- filename: string;
5429
- cncMachineId: string;
5421
+ export interface CompanyCustomerDto {
5422
+ customerTenantId?: string | null;
5423
+ customerAzureAdTenantId?: string | null;
5424
+ customerName?: string | null;
5425
+ supplierId?: string | null;
5426
+ supplierName?: string | null;
5430
5427
  }
5431
- export interface AgentConfigDto {
5432
- serviceBusNamespace: string;
5433
- queueName: string;
5434
- sharedAccessSignature: string;
5428
+ export interface InviteDto {
5429
+ tenantId: string;
5430
+ companyName: string;
5431
+ id: string;
5432
+ supplierId: string;
5433
+ supplierName: string;
5434
+ username: string;
5435
+ deadline: Date;
5436
+ createdTime: Date;
5437
+ createdBy: string;
5438
+ }
5439
+ export interface CompanyDto {
5440
+ id?: string | null;
5441
+ name?: string | null;
5442
+ organizationNumber?: string | null;
5443
+ country?: string | null;
5444
+ tenantId?: string | null;
5445
+ }
5446
+ export interface AcceptSupplierInviteRequest {
5447
+ tenantId: string;
5448
+ existingCompanyId?: string | null;
5449
+ companyName?: string | null;
5450
+ organizationNumber?: string | null;
5451
+ threeLetterIsoCountry?: string | null;
5452
+ }
5453
+ export interface SupplierInviteDto {
5454
+ id: string;
5455
+ supplierId: string;
5456
+ name: string;
5457
+ username: string;
5458
+ deadline: Date;
5459
+ createdTime: Date;
5460
+ createdBy: string;
5461
+ }
5462
+ export interface CreateSupplierInvite {
5463
+ supplierId: string;
5464
+ name: string;
5465
+ username: string;
5466
+ deadline: Date;
5467
+ }
5468
+ export interface ExternalSupplierDto {
5469
+ id: string;
5470
+ name: string;
5471
+ companyId: string;
5472
+ active: boolean;
5473
+ }
5474
+ export interface ImportSupplier {
5475
+ supplierId: string;
5476
+ name: string;
5477
+ organizationNumber?: string | null;
5478
+ threeLetterIsoCountry: string;
5479
+ users: ImportSupplierUserDto[];
5480
+ }
5481
+ export interface ImportSupplierUserDto {
5482
+ username: string;
5483
+ name: string;
5484
+ roles: string[];
5485
+ }
5486
+ export interface CreateSupplierMapping {
5487
+ companyId: string;
5488
+ existingSupplierId: string;
5489
+ newSupplierId: string;
5490
+ }
5491
+ export interface CncMachineTransferDto {
5492
+ id: string;
5493
+ cncMachineOperationId?: string | null;
5494
+ cncMachineId: string;
5495
+ cncMachineName: string;
5496
+ direction: FileTransferDirection;
5497
+ files: string[];
5498
+ status: FileTransferStatus;
5499
+ statusMessage?: string | null;
5500
+ timestamp: Date;
5501
+ }
5502
+ export type FileTransferDirection = "FromCloud" | "ToCloud";
5503
+ export type FileTransferStatus = "InProgress" | "Success" | "Failed";
5504
+ export interface UploadCamFileDto {
5505
+ uploadUrl: string;
5506
+ path: string;
5507
+ url: string;
5508
+ }
5509
+ export interface UploadCamFileRequest {
5510
+ filename: string;
5511
+ }
5512
+ export interface CamTransferDto {
5513
+ path: string;
5514
+ content: string;
5515
+ }
5516
+ export interface StartCamTransferToMachine {
5517
+ path: string;
5518
+ content: string;
5519
+ cncMachineId: string;
5520
+ }
5521
+ export interface StartCamTransferToMachineFromTempUpload {
5522
+ uploadKey: string;
5523
+ filename: string;
5524
+ cncMachineId: string;
5525
+ }
5526
+ export interface AgentConfigDto {
5527
+ serviceBusNamespace: string;
5528
+ queueName: string;
5529
+ sharedAccessSignature: string;
5435
5530
  configurationRefreshTime: Date;
5436
5531
  }
5437
5532
  export interface UploadFileDto {
@@ -7677,112 +7772,6 @@ export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
7677
7772
  }
7678
7773
  export interface ImaCdfEntityReadBase {
7679
7774
  }
7680
- export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
7681
- specificationId: string;
7682
- version: number;
7683
- name: string;
7684
- number: string;
7685
- revision: string;
7686
- date: Date;
7687
- status: ImaSpecificationStatus;
7688
- summary?: string | null;
7689
- relatedStandards: string[];
7690
- created: Date;
7691
- createdBy: string;
7692
- createdById: string;
7693
- updatedBy: string;
7694
- updatedById: string;
7695
- }
7696
- export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7697
- export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
7698
- specificationId: string;
7699
- version: number;
7700
- allVersions: ImaSpecificationVersionDto[];
7701
- name: string;
7702
- number: string;
7703
- revision: string;
7704
- date: Date;
7705
- status: ImaSpecificationStatus;
7706
- summary?: string | null;
7707
- relatedStandards: string[];
7708
- created: Date;
7709
- createdBy: string;
7710
- createdById: string;
7711
- updatedBy: string;
7712
- updatedById: string;
7713
- updated: Date;
7714
- chemistrySpecification: ImaChemistrySpecificationDto;
7715
- mechanicalSpecification: ImaMechanicalSpecificationDto;
7716
- ferriteSpecification: ImaFerriteSpecificationDto;
7717
- heatSpecification: ImaHeatTreatmentSpecificationDto;
7718
- }
7719
- export interface ImaSpecificationVersionDto {
7720
- version?: number;
7721
- status?: ImaSpecificationStatus;
7722
- }
7723
- export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
7724
- carbon?: ImaSpecificationLineDto | null;
7725
- manganese?: ImaSpecificationLineDto | null;
7726
- silicon?: ImaSpecificationLineDto | null;
7727
- phosphorus?: ImaSpecificationLineDto | null;
7728
- sulfur?: ImaSpecificationLineDto | null;
7729
- chromium?: ImaSpecificationLineDto | null;
7730
- nickel?: ImaSpecificationLineDto | null;
7731
- molybdenum?: ImaSpecificationLineDto | null;
7732
- copper?: ImaSpecificationLineDto | null;
7733
- nitrogen?: ImaSpecificationLineDto | null;
7734
- wolfram?: ImaSpecificationLineDto | null;
7735
- iron?: ImaSpecificationLineDto | null;
7736
- }
7737
- export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
7738
- operator: ImaSpecificationOperator;
7739
- value1: number;
7740
- value2?: number | null;
7741
- symbol: ImaSpecificationSymbol;
7742
- }
7743
- export type ImaSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
7744
- export type ImaSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
7745
- export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
7746
- yieldStrength?: ImaSpecificationLineDto | null;
7747
- tensileStrength?: ImaSpecificationLineDto | null;
7748
- elongation?: ImaSpecificationLineDto | null;
7749
- reductionOfArea?: ImaSpecificationLineDto | null;
7750
- impactEnergy?: ImaSpecificationLineDto | null;
7751
- hardness?: ImaSpecificationLineDto | null;
7752
- }
7753
- export interface ImaFerriteSpecificationDto extends ImaCdfEntityReadBase {
7754
- ferriteContent?: ImaSpecificationLineDto | null;
7755
- }
7756
- export interface ImaHeatTreatmentSpecificationDto {
7757
- heatTreatments: ImaHeatTreatmentsSpecificationDto[];
7758
- }
7759
- export interface ImaHeatTreatmentsSpecificationDto {
7760
- heatingMethod: ImaHeatingTreatmentMethod;
7761
- heatingTreatmentTemperature?: number | null;
7762
- heatingHoldingTime?: number | null;
7763
- coolingMethods?: ImaCoolingTreatmentMethod[] | null;
7764
- coolingTreatmentTemperature?: number | null;
7765
- coolingHoldingTime?: number | null;
7766
- }
7767
- export interface CreateImaSpecificationDto {
7768
- specificationName: string;
7769
- specificationNumber: string;
7770
- revision: string;
7771
- date: Date;
7772
- specificationFile?: UploadFileDto | null;
7773
- }
7774
- export interface ImaUpdateSpecificationDto {
7775
- name?: string | null;
7776
- number?: string | null;
7777
- status?: ImaSpecificationStatusUpdate | null;
7778
- summary?: string | null;
7779
- relatedStandards?: string[] | null;
7780
- chemistrySpecification?: ImaChemistrySpecificationDto | null;
7781
- mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
7782
- ferriteSpecification?: ImaFerriteSpecificationDto | null;
7783
- heatSpecification?: ImaHeatTreatmentSpecificationDto | null;
7784
- }
7785
- export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
7786
7775
  export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
7787
7776
  certificateTypeId: string;
7788
7777
  version: number;
@@ -7889,7 +7878,7 @@ export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEn
7889
7878
  microExaminationReport?: boolean;
7890
7879
  radiologicalReport?: boolean;
7891
7880
  }
7892
- export interface ImaCreateImaCertificateTypeRequestDto {
7881
+ export interface ImaCreateOrCopyCertificateTypeRequestDto {
7893
7882
  name: string;
7894
7883
  revision: string;
7895
7884
  description?: string | null;
@@ -7970,6 +7959,118 @@ export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
7970
7959
  microExaminationReport?: boolean | null;
7971
7960
  radiologicalReport?: boolean | null;
7972
7961
  }
7962
+ export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
7963
+ specificationId: string;
7964
+ version: number;
7965
+ name: string;
7966
+ number: string;
7967
+ revision: string;
7968
+ date: Date;
7969
+ status: ImaSpecificationStatus;
7970
+ summary?: string | null;
7971
+ relatedStandards: string[];
7972
+ created: Date;
7973
+ createdBy: string;
7974
+ createdById: string;
7975
+ updatedBy: string;
7976
+ updatedById: string;
7977
+ }
7978
+ export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7979
+ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
7980
+ specificationId: string;
7981
+ version: number;
7982
+ allVersions: ImaSpecificationVersionDto[];
7983
+ name: string;
7984
+ number: string;
7985
+ revision: string;
7986
+ date: Date;
7987
+ status: ImaSpecificationStatus;
7988
+ summary?: string | null;
7989
+ relatedStandards: string[];
7990
+ created: Date;
7991
+ createdBy: string;
7992
+ createdById: string;
7993
+ updatedBy: string;
7994
+ updatedById: string;
7995
+ updated: Date;
7996
+ chemistrySpecification: ImaChemistrySpecificationDto;
7997
+ mechanicalSpecification: ImaMechanicalSpecificationDto;
7998
+ ferriteSpecification: ImaFerriteSpecificationDto;
7999
+ heatSpecification: ImaHeatTreatmentSpecificationDto;
8000
+ }
8001
+ export interface ImaSpecificationVersionDto {
8002
+ version?: number;
8003
+ status?: ImaSpecificationStatus;
8004
+ }
8005
+ export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
8006
+ carbon?: ImaSpecificationLineDto | null;
8007
+ manganese?: ImaSpecificationLineDto | null;
8008
+ silicon?: ImaSpecificationLineDto | null;
8009
+ phosphorus?: ImaSpecificationLineDto | null;
8010
+ sulfur?: ImaSpecificationLineDto | null;
8011
+ chromium?: ImaSpecificationLineDto | null;
8012
+ nickel?: ImaSpecificationLineDto | null;
8013
+ molybdenum?: ImaSpecificationLineDto | null;
8014
+ copper?: ImaSpecificationLineDto | null;
8015
+ nitrogen?: ImaSpecificationLineDto | null;
8016
+ wolfram?: ImaSpecificationLineDto | null;
8017
+ iron?: ImaSpecificationLineDto | null;
8018
+ }
8019
+ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
8020
+ operator: ImaSpecificationOperator;
8021
+ value1: number;
8022
+ value2?: number | null;
8023
+ symbol: ImaSpecificationSymbol;
8024
+ }
8025
+ export type ImaSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
8026
+ export type ImaSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
8027
+ export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
8028
+ yieldStrength?: ImaSpecificationLineDto | null;
8029
+ tensileStrength?: ImaSpecificationLineDto | null;
8030
+ elongation?: ImaSpecificationLineDto | null;
8031
+ reductionOfArea?: ImaSpecificationLineDto | null;
8032
+ impactEnergy?: ImaSpecificationLineDto | null;
8033
+ hardness?: ImaSpecificationLineDto | null;
8034
+ }
8035
+ export interface ImaFerriteSpecificationDto extends ImaCdfEntityReadBase {
8036
+ ferriteContent?: ImaSpecificationLineDto | null;
8037
+ }
8038
+ export interface ImaHeatTreatmentSpecificationDto {
8039
+ heatTreatments: ImaHeatTreatmentsSpecificationDto[];
8040
+ }
8041
+ export interface ImaHeatTreatmentsSpecificationDto {
8042
+ heatingMethod: ImaHeatingTreatmentMethod;
8043
+ heatingTreatmentTemperature?: number | null;
8044
+ heatingHoldingTime?: number | null;
8045
+ coolingMethods?: ImaCoolingTreatmentMethod[] | null;
8046
+ coolingTreatmentTemperature?: number | null;
8047
+ coolingHoldingTime?: number | null;
8048
+ }
8049
+ export interface ImaCreateSpecificationRequestDto {
8050
+ specificationName: string;
8051
+ specificationNumber: string;
8052
+ revision: string;
8053
+ date: Date;
8054
+ specificationFile?: UploadFileDto | null;
8055
+ }
8056
+ export interface ImaCopySpecificationRequestDto {
8057
+ specificationName: string;
8058
+ specificationNumber: string;
8059
+ revision: string;
8060
+ date: Date;
8061
+ }
8062
+ export interface ImaUpdateSpecificationDto {
8063
+ name?: string | null;
8064
+ number?: string | null;
8065
+ status?: ImaSpecificationStatusUpdate | null;
8066
+ summary?: string | null;
8067
+ relatedStandards?: string[] | null;
8068
+ chemistrySpecification?: ImaChemistrySpecificationDto | null;
8069
+ mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
8070
+ ferriteSpecification?: ImaFerriteSpecificationDto | null;
8071
+ heatSpecification?: ImaHeatTreatmentSpecificationDto | null;
8072
+ }
8073
+ export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
7973
8074
  export interface MeasurementFormSchemaDto {
7974
8075
  id: string;
7975
8076
  versionId: number;
@@ -8518,6 +8619,7 @@ export interface ListMeasurementFormsRequest {
8518
8619
  pageSize?: number | null;
8519
8620
  search?: string | null;
8520
8621
  continuationToken?: string | null;
8622
+ tenantId?: string | null;
8521
8623
  inactive?: boolean | null;
8522
8624
  includeInactiveSupplierAccess?: boolean | null;
8523
8625
  }
@@ -8713,6 +8815,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
8713
8815
  externalOrderNumber?: string | null;
8714
8816
  }
8715
8817
  export interface ExportDimensionReportV2Request {
8818
+ tenantId?: string | null;
8716
8819
  type: DimensionReportType;
8717
8820
  extras?: DimensionReportExtras | null;
8718
8821
  specificSerialNumbers?: string[] | null;
@@ -9053,78 +9156,6 @@ export interface SetDiscussionLastReadRequest {
9053
9156
  operationId?: string | null;
9054
9157
  resourceId?: string | null;
9055
9158
  }
9056
- export interface CompanyUserDto {
9057
- companyId: string;
9058
- userObjectId: string;
9059
- username?: string | null;
9060
- name?: string | null;
9061
- roles: string[];
9062
- }
9063
- export interface CreateCompanyUser {
9064
- username: string;
9065
- name: string;
9066
- roles: string[];
9067
- companyId?: string | null;
9068
- }
9069
- export interface UpdateCompanyUserRequest {
9070
- roles: string[];
9071
- companyId?: string | null;
9072
- }
9073
- export interface ExternalRoleDto {
9074
- id: string;
9075
- name: string;
9076
- }
9077
- export interface CompanyCustomerDto {
9078
- customerTenantId?: string | null;
9079
- customerAzureAdTenantId?: string | null;
9080
- customerName?: string | null;
9081
- supplierId?: string | null;
9082
- supplierName?: string | null;
9083
- }
9084
- export interface CompanyDto {
9085
- id?: string;
9086
- name?: string;
9087
- organizationNumber?: string | null;
9088
- country?: string;
9089
- tenantId?: string | null;
9090
- }
9091
- export interface SupplierInviteDto {
9092
- id: string;
9093
- supplierId: string;
9094
- supplierName?: string | null;
9095
- customerName?: string | null;
9096
- userId: string;
9097
- userName?: string | null;
9098
- companyId?: string | null;
9099
- deadline: Date;
9100
- acceptedTimestamp?: Date | null;
9101
- createdTime: Date;
9102
- createdBy: string;
9103
- }
9104
- export interface AcceptSupplierInvite {
9105
- companyName?: string;
9106
- organizationNumber?: string;
9107
- threeLetterIsoCountry?: string;
9108
- }
9109
- export interface CreateSupplierInvite {
9110
- supplierId: string;
9111
- supplierName?: string | null;
9112
- username: string;
9113
- invitedName: string;
9114
- deadline: Date;
9115
- existingCompanyId?: string | null;
9116
- }
9117
- export interface ExternalSupplierDto {
9118
- id: string;
9119
- name: string;
9120
- companyId: string;
9121
- active: boolean;
9122
- }
9123
- export interface CreateSupplierMapping {
9124
- companyId: string;
9125
- existingSupplierId: string;
9126
- newSupplierId: string;
9127
- }
9128
9159
  export interface FileParameter {
9129
9160
  data: any;
9130
9161
  fileName: string;