@ignos/api-client 20260309.72.1-alpha → 20260311.75.1-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -124,6 +124,7 @@ export declare class CustomersClient extends AuthorizedApiBase implements ICusto
124
124
  }
125
125
  export interface IGuestsClient {
126
126
  getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
127
+ getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
127
128
  }
128
129
  export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
129
130
  private http;
@@ -133,6 +134,8 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
133
134
  });
134
135
  getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
135
136
  protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
137
+ getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
138
+ protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
136
139
  }
137
140
  export interface IPresentationClient {
138
141
  getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
@@ -1425,99 +1428,6 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
1425
1428
  listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
1426
1429
  protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
1427
1430
  }
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
- }
1521
1431
  export interface ICncFileTransferClient {
1522
1432
  startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1523
1433
  startCncMachineOperationTransferToMachine(id: string): Promise<CncMachineTransferDto>;
@@ -1959,24 +1869,6 @@ export declare class CdfClient extends AuthorizedApiBase implements ICdfClient {
1959
1869
  updateCdfConfig(request: UpdateCdfConfig): Promise<CdfConfigDto>;
1960
1870
  protected processUpdateCdfConfig(response: Response): Promise<CdfConfigDto>;
1961
1871
  }
1962
- export interface IWorkspaceDefaultsAdminClient {
1963
- getDefaults(): Promise<WorkspaceDefaultsDto>;
1964
- setMachineDefault(machineId: string, templateId: string): Promise<WorkspaceDefaultsDto>;
1965
- deleteMachineDefault(machineId: string): Promise<void>;
1966
- }
1967
- export declare class WorkspaceDefaultsAdminClient extends AuthorizedApiBase implements IWorkspaceDefaultsAdminClient {
1968
- private http;
1969
- private baseUrl;
1970
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1971
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1972
- });
1973
- getDefaults(): Promise<WorkspaceDefaultsDto>;
1974
- protected processGetDefaults(response: Response): Promise<WorkspaceDefaultsDto>;
1975
- setMachineDefault(machineId: string, templateId: string): Promise<WorkspaceDefaultsDto>;
1976
- protected processSetMachineDefault(response: Response): Promise<WorkspaceDefaultsDto>;
1977
- deleteMachineDefault(machineId: string): Promise<void>;
1978
- protected processDeleteMachineDefault(response: Response): Promise<void>;
1979
- }
1980
1872
  export interface IWorkspacesClient {
1981
1873
  getMyWorkspaces(): Promise<WorkspaceListDto[]>;
1982
1874
  createWorkspace(createWorkspace: CreateWorkspace): Promise<WorkspaceDto>;
@@ -1987,7 +1879,6 @@ export interface IWorkspacesClient {
1987
1879
  updateWorkspaceWidgets(id: string, request: UpdateWorkspaceWidgetsRequest): Promise<WorkspaceDto>;
1988
1880
  updateWorkspaceWidgetSettings(id: string, widgetId: string, request: UpdateWorkspaceWidgetSettingsRequest): Promise<WorkspaceDto>;
1989
1881
  deleteWorkspaceWidget(id: string, widgetId: string): Promise<WorkspaceDto>;
1990
- resolveDefault(request: ResolveDefaultWorkspaceRequestDto): Promise<ResolveDefaultWorkspaceDto>;
1991
1882
  }
1992
1883
  export declare class WorkspacesClient extends AuthorizedApiBase implements IWorkspacesClient {
1993
1884
  private http;
@@ -2013,8 +1904,6 @@ export declare class WorkspacesClient extends AuthorizedApiBase implements IWork
2013
1904
  protected processUpdateWorkspaceWidgetSettings(response: Response): Promise<WorkspaceDto>;
2014
1905
  deleteWorkspaceWidget(id: string, widgetId: string): Promise<WorkspaceDto>;
2015
1906
  protected processDeleteWorkspaceWidget(response: Response): Promise<WorkspaceDto>;
2016
- resolveDefault(request: ResolveDefaultWorkspaceRequestDto): Promise<ResolveDefaultWorkspaceDto>;
2017
- protected processResolveDefault(response: Response): Promise<ResolveDefaultWorkspaceDto>;
2018
1907
  }
2019
1908
  export interface IWorkspaceTemplatesAdminClient {
2020
1909
  createWorkspaceTemplate(createWorkspaceTemplate: CreateWorkspaceTemplate): Promise<WorkspaceDto>;
@@ -2760,22 +2649,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
2760
2649
  protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
2761
2650
  }
2762
2651
  export interface IMeasurementFormsInstancesClient {
2763
- 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>;
2652
+ listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2764
2653
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2765
- getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2654
+ getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2766
2655
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
2767
- completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2768
- completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2769
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2770
- getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2771
- getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2656
+ completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2657
+ completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
2658
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2659
+ getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
2660
+ getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2772
2661
  getValidationRules(): Promise<ValidationRuleDto[]>;
2773
- saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2774
- saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2775
- saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2776
- batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2777
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2778
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2662
+ saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2663
+ saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2664
+ saveComment(id: string, request: SaveCommentRequest): Promise<void>;
2665
+ batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2666
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2667
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2779
2668
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2780
2669
  upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
2781
2670
  removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
@@ -2791,37 +2680,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
2791
2680
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2792
2681
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2793
2682
  });
2794
- 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>;
2683
+ listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2795
2684
  protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2796
2685
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2797
2686
  protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2798
- getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2687
+ getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2799
2688
  protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2800
2689
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
2801
2690
  protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
2802
- completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2691
+ completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2803
2692
  protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2804
- completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2693
+ completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
2805
2694
  protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
2806
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2695
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2807
2696
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
2808
- getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2697
+ getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
2809
2698
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
2810
- getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2699
+ getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2811
2700
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
2812
2701
  getValidationRules(): Promise<ValidationRuleDto[]>;
2813
2702
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
2814
- saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2703
+ saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2815
2704
  protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
2816
- saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2705
+ saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2817
2706
  protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
2818
- saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2707
+ saveComment(id: string, request: SaveCommentRequest): Promise<void>;
2819
2708
  protected processSaveComment(response: Response): Promise<void>;
2820
- batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2709
+ batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2821
2710
  protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
2822
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2711
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2823
2712
  protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
2824
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2713
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2825
2714
  protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
2826
2715
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2827
2716
  protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
@@ -2846,7 +2735,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
2846
2735
  createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
2847
2736
  reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2848
2737
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2849
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2738
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
2850
2739
  }
2851
2740
  export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
2852
2741
  private http;
@@ -2870,7 +2759,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
2870
2759
  protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2871
2760
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2872
2761
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2873
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2762
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
2874
2763
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
2875
2764
  }
2876
2765
  export interface ICompaniesClient {
@@ -3210,6 +3099,99 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3210
3099
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3211
3100
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3212
3101
  }
3102
+ export interface IExternalAccessClient {
3103
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3104
+ createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3105
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3106
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3107
+ listRoles(): Promise<ExternalRoleDto[]>;
3108
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3109
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
3110
+ }
3111
+ export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
3112
+ private http;
3113
+ private baseUrl;
3114
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3115
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3116
+ });
3117
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3118
+ protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
3119
+ createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3120
+ protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
3121
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3122
+ protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
3123
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3124
+ protected processDeleteCompanyUser(response: Response): Promise<void>;
3125
+ listRoles(): Promise<ExternalRoleDto[]>;
3126
+ protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
3127
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3128
+ protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
3129
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
3130
+ protected processDeleteCompanyCustomer(response: Response): Promise<void>;
3131
+ }
3132
+ export interface IExternalClient {
3133
+ listCompanies(): Promise<CompanyDto[]>;
3134
+ getCompany(id: string): Promise<CompanyDto>;
3135
+ getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3136
+ acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3137
+ }
3138
+ export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
3139
+ private http;
3140
+ private baseUrl;
3141
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3142
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3143
+ });
3144
+ listCompanies(): Promise<CompanyDto[]>;
3145
+ protected processListCompanies(response: Response): Promise<CompanyDto[]>;
3146
+ getCompany(id: string): Promise<CompanyDto>;
3147
+ protected processGetCompany(response: Response): Promise<CompanyDto>;
3148
+ getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3149
+ protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3150
+ acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3151
+ protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3152
+ }
3153
+ export interface ISuppliersClient {
3154
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
3155
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3156
+ deleteSupplierInvite(id: string): Promise<void>;
3157
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
3158
+ deleteSupplier(id: string): Promise<void>;
3159
+ /**
3160
+ * Creates a mapping between old supplier id and new supplier id.
3161
+ */
3162
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3163
+ /**
3164
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
3165
+ */
3166
+ deleteSupplierMappings(): Promise<void>;
3167
+ }
3168
+ export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
3169
+ private http;
3170
+ private baseUrl;
3171
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3172
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3173
+ });
3174
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
3175
+ protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3176
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3177
+ protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3178
+ deleteSupplierInvite(id: string): Promise<void>;
3179
+ protected processDeleteSupplierInvite(response: Response): Promise<void>;
3180
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
3181
+ protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3182
+ deleteSupplier(id: string): Promise<void>;
3183
+ protected processDeleteSupplier(response: Response): Promise<void>;
3184
+ /**
3185
+ * Creates a mapping between old supplier id and new supplier id.
3186
+ */
3187
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3188
+ protected processCreateSupplierMapping(response: Response): Promise<void>;
3189
+ /**
3190
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
3191
+ */
3192
+ deleteSupplierMappings(): Promise<void>;
3193
+ protected processDeleteSupplierMappings(response: Response): Promise<void>;
3194
+ }
3213
3195
  export interface IMaterialCertificateChecksClient {
3214
3196
  listMaterialCertificateChecks(request: AmcMaterialChecksPageRequestDto): Promise<AmcMaterialChecksPageDto>;
3215
3197
  getMaterialCertificateCheck(id: string): Promise<AmcMaterialCheckDto>;
@@ -3234,9 +3216,9 @@ export declare class MaterialCertificateChecksClient extends AuthorizedApiBase i
3234
3216
  export interface IMaterialCertificateSpecificationsClient {
3235
3217
  listSpecifications(): Promise<AmcSpecificationLiteDto[]>;
3236
3218
  getSpecification(id: string, version: number | null | undefined): Promise<AmcSpecificationDto>;
3237
- updateSpecifications(id: string, version: number | null | undefined, _: AmcUpdateSpecificationDto): Promise<AmcSpecificationDto>;
3238
- deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
3239
- createSpecifications(createDto: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
3219
+ createSpecifications(specificationsRequest: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
3220
+ updateSpecifications(specificationsRequest: UpdateAmcSpecificationDto): Promise<AmcSpecificationDto>;
3221
+ deleteMaterialCertificateTypes(materialCertificateSpecificationId: string, version: string): Promise<void>;
3240
3222
  }
3241
3223
  export declare class MaterialCertificateSpecificationsClient extends AuthorizedApiBase implements IMaterialCertificateSpecificationsClient {
3242
3224
  private http;
@@ -3248,12 +3230,12 @@ export declare class MaterialCertificateSpecificationsClient extends AuthorizedA
3248
3230
  protected processListSpecifications(response: Response): Promise<AmcSpecificationLiteDto[]>;
3249
3231
  getSpecification(id: string, version: number | null | undefined): Promise<AmcSpecificationDto>;
3250
3232
  protected processGetSpecification(response: Response): Promise<AmcSpecificationDto>;
3251
- updateSpecifications(id: string, version: number | null | undefined, _: AmcUpdateSpecificationDto): Promise<AmcSpecificationDto>;
3233
+ createSpecifications(specificationsRequest: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
3234
+ protected processCreateSpecifications(response: Response): Promise<AmcSpecificationDto>;
3235
+ updateSpecifications(specificationsRequest: UpdateAmcSpecificationDto): Promise<AmcSpecificationDto>;
3252
3236
  protected processUpdateSpecifications(response: Response): Promise<AmcSpecificationDto>;
3253
- deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
3237
+ deleteMaterialCertificateTypes(materialCertificateSpecificationId: string, version: string): Promise<void>;
3254
3238
  protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
3255
- createSpecifications(createDto: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
3256
- protected processCreateSpecifications(response: Response): Promise<AmcSpecificationDto>;
3257
3239
  }
3258
3240
  export interface IMaterialCertificateTypesClient {
3259
3241
  listMaterialCertificateTypes(): Promise<AmcCertificateTypeLiteDto[]>;
@@ -3512,6 +3494,8 @@ export interface UserDetailsDto {
3512
3494
  isExternalUser?: boolean;
3513
3495
  isBetaTester?: boolean | null;
3514
3496
  hasAccessToIgnos?: boolean;
3497
+ isInvitedUser?: boolean;
3498
+ isSupplier?: boolean;
3515
3499
  }
3516
3500
  export interface UserDto {
3517
3501
  id?: string | null;
@@ -3920,7 +3904,6 @@ export interface UpdateCalendarSettingsCommand {
3920
3904
  };
3921
3905
  halfDayHours?: number;
3922
3906
  holidayHours?: number;
3923
- defaultPerformancePercent?: number | null;
3924
3907
  }
3925
3908
  export interface ResourceKpiDto {
3926
3909
  uptimeToNow: number;
@@ -4234,7 +4217,6 @@ export interface UtilizationDetailsV2Dto {
4234
4217
  uptimeInMilliseconds?: number | null;
4235
4218
  downtimeInMilliseconds?: number | null;
4236
4219
  totalTimeInMilliseconds?: number | null;
4237
- performancePercent?: number | null;
4238
4220
  }
4239
4221
  export interface MachineGroupUtilizationV2Dto {
4240
4222
  name: string;
@@ -5379,97 +5361,6 @@ export interface DocumentGeneratorTypeDto {
5379
5361
  key: string;
5380
5362
  description: string;
5381
5363
  }
5382
- export interface CompanyUserDto {
5383
- companyId?: string | null;
5384
- username?: string | null;
5385
- name?: string | null;
5386
- roles?: string[] | null;
5387
- }
5388
- export interface CreateCompanyUserRequest {
5389
- username: string;
5390
- name: string;
5391
- roles: string[];
5392
- companyId?: string | null;
5393
- }
5394
- export interface UpdateCompanyUserRequest {
5395
- name: string;
5396
- roles: string[];
5397
- companyId?: string | null;
5398
- }
5399
- export interface ExternalRoleDto {
5400
- id: string;
5401
- name: string;
5402
- }
5403
- export interface CompanyCustomerDto {
5404
- customerTenantId?: string | null;
5405
- customerAzureAdTenantId?: string | null;
5406
- customerName?: string | null;
5407
- supplierId?: string | null;
5408
- supplierName?: string | null;
5409
- }
5410
- export interface InviteDto {
5411
- tenantId: string;
5412
- companyName: string;
5413
- id: string;
5414
- supplierId: string;
5415
- supplierName: string;
5416
- username: string;
5417
- deadline: Date;
5418
- createdTime: Date;
5419
- createdBy: string;
5420
- }
5421
- export interface CompanyDto {
5422
- id?: string | null;
5423
- name?: string | null;
5424
- organizationNumber?: string | null;
5425
- country?: string | null;
5426
- tenantId?: string | null;
5427
- }
5428
- export interface AcceptSupplierInviteRequest {
5429
- tenantId: string;
5430
- existingCompanyId?: string | null;
5431
- companyName?: string | null;
5432
- organizationNumber?: string | null;
5433
- threeLetterIsoCountry?: string | null;
5434
- }
5435
- export interface SupplierInviteDto {
5436
- id: string;
5437
- supplierId: string;
5438
- name: string;
5439
- username: string;
5440
- deadline: Date;
5441
- createdTime: Date;
5442
- createdBy: string;
5443
- }
5444
- export interface CreateSupplierInvite {
5445
- supplierId: string;
5446
- name: string;
5447
- username: string;
5448
- deadline: Date;
5449
- }
5450
- export interface ExternalSupplierDto {
5451
- id: string;
5452
- name: string;
5453
- companyId: string;
5454
- active: boolean;
5455
- }
5456
- export interface ImportSupplier {
5457
- supplierId: string;
5458
- name: string;
5459
- organizationNumber?: string | null;
5460
- threeLetterIsoCountry: string;
5461
- users: ImportSupplierUserDto[];
5462
- }
5463
- export interface ImportSupplierUserDto {
5464
- username: string;
5465
- name: string;
5466
- roles: string[];
5467
- }
5468
- export interface CreateSupplierMapping {
5469
- companyId: string;
5470
- existingSupplierId: string;
5471
- newSupplierId: string;
5472
- }
5473
5364
  export interface CncMachineTransferDto {
5474
5365
  id: string;
5475
5366
  cncMachineOperationId?: string | null;
@@ -5637,7 +5528,6 @@ export interface ListCncPartsRequest {
5637
5528
  operationMaxCreatedDate?: Date | null;
5638
5529
  operationMinUpdatedDate?: Date | null;
5639
5530
  operationMaxUpdatedDate?: Date | null;
5640
- utcOffset?: number | null;
5641
5531
  }
5642
5532
  export type CncFilterDeletedDto = "NoneDeleted" | "OnlyDeleted" | "All";
5643
5533
  export interface CncPartMaterialListDto {
@@ -5747,7 +5637,6 @@ export interface ListCncMachineOperationsRequest {
5747
5637
  maxCreatedDate?: Date | null;
5748
5638
  minUpdatedDate?: Date | null;
5749
5639
  maxUpdatedDate?: Date | null;
5750
- utcOffset?: number | null;
5751
5640
  }
5752
5641
  export interface UpdateCncMachineOperationRequest {
5753
5642
  operation?: number | null;
@@ -6324,11 +6213,6 @@ export interface UpdateCdfConfig {
6324
6213
  clientId: string;
6325
6214
  clientSecret?: string | null;
6326
6215
  }
6327
- export interface WorkspaceDefaultsDto {
6328
- machineTemplateOverrides?: {
6329
- [key: string]: string;
6330
- };
6331
- }
6332
6216
  export interface WorkspaceListDto {
6333
6217
  id: string;
6334
6218
  name: string;
@@ -6378,12 +6262,6 @@ export interface UpdateWorkspaceWidgetsRequest {
6378
6262
  export interface UpdateWorkspaceWidgetSettingsRequest {
6379
6263
  settings: string;
6380
6264
  }
6381
- export interface ResolveDefaultWorkspaceDto {
6382
- workspaceId?: string | null;
6383
- }
6384
- export interface ResolveDefaultWorkspaceRequestDto {
6385
- machineId: string;
6386
- }
6387
6265
  export interface CreateWorkspaceTemplate {
6388
6266
  name: string;
6389
6267
  description?: string | null;
@@ -7949,7 +7827,6 @@ export interface ListMeasurementFormsRequest {
7949
7827
  pageSize?: number | null;
7950
7828
  search?: string | null;
7951
7829
  continuationToken?: string | null;
7952
- tenantId?: string | null;
7953
7830
  inactive?: boolean | null;
7954
7831
  includeInactiveSupplierAccess?: boolean | null;
7955
7832
  }
@@ -8145,7 +8022,6 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
8145
8022
  externalOrderNumber?: string | null;
8146
8023
  }
8147
8024
  export interface ExportDimensionReportV2Request {
8148
- tenantId?: string | null;
8149
8025
  type: DimensionReportType;
8150
8026
  extras?: DimensionReportExtras | null;
8151
8027
  specificSerialNumbers?: string[] | null;
@@ -8486,6 +8362,78 @@ export interface SetDiscussionLastReadRequest {
8486
8362
  operationId?: string | null;
8487
8363
  resourceId?: string | null;
8488
8364
  }
8365
+ export interface CompanyUserDto {
8366
+ companyId: string;
8367
+ userObjectId: string;
8368
+ username?: string | null;
8369
+ name?: string | null;
8370
+ roles: string[];
8371
+ }
8372
+ export interface CreateCompanyUser {
8373
+ username: string;
8374
+ name: string;
8375
+ roles: string[];
8376
+ companyId?: string | null;
8377
+ }
8378
+ export interface UpdateCompanyUserRequest {
8379
+ roles: string[];
8380
+ companyId?: string | null;
8381
+ }
8382
+ export interface ExternalRoleDto {
8383
+ id: string;
8384
+ name: string;
8385
+ }
8386
+ export interface CompanyCustomerDto {
8387
+ customerTenantId?: string | null;
8388
+ customerAzureAdTenantId?: string | null;
8389
+ customerName?: string | null;
8390
+ supplierId?: string | null;
8391
+ supplierName?: string | null;
8392
+ }
8393
+ export interface CompanyDto {
8394
+ id?: string;
8395
+ name?: string;
8396
+ organizationNumber?: string | null;
8397
+ country?: string;
8398
+ tenantId?: string | null;
8399
+ }
8400
+ export interface SupplierInviteDto {
8401
+ id: string;
8402
+ supplierId: string;
8403
+ supplierName?: string | null;
8404
+ customerName?: string | null;
8405
+ userId: string;
8406
+ userName?: string | null;
8407
+ companyId?: string | null;
8408
+ deadline: Date;
8409
+ acceptedTimestamp?: Date | null;
8410
+ createdTime: Date;
8411
+ createdBy: string;
8412
+ }
8413
+ export interface AcceptSupplierInvite {
8414
+ companyName?: string;
8415
+ organizationNumber?: string;
8416
+ threeLetterIsoCountry?: string;
8417
+ }
8418
+ export interface CreateSupplierInvite {
8419
+ supplierId: string;
8420
+ supplierName?: string | null;
8421
+ username: string;
8422
+ invitedName: string;
8423
+ deadline: Date;
8424
+ existingCompanyId?: string | null;
8425
+ }
8426
+ export interface ExternalSupplierDto {
8427
+ id: string;
8428
+ name: string;
8429
+ companyId: string;
8430
+ active: boolean;
8431
+ }
8432
+ export interface CreateSupplierMapping {
8433
+ companyId: string;
8434
+ existingSupplierId: string;
8435
+ newSupplierId: string;
8436
+ }
8489
8437
  export interface AmcMaterialChecksPageDto {
8490
8438
  items: AmcMaterialCheckLiteDto[];
8491
8439
  continuationToken?: string | null;
@@ -8536,7 +8484,7 @@ export interface AmcMaterialChecksPageRequestDto {
8536
8484
  statusFilter: AmcMaterialCheckStatus[];
8537
8485
  continuationToken?: string | null;
8538
8486
  }
8539
- export type AmcMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
8487
+ export type AmcMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status";
8540
8488
  export interface AmcMaterialCheckDto {
8541
8489
  materialCheckId: string;
8542
8490
  originalMaterialCertificate: FileDto;
@@ -8711,8 +8659,8 @@ export interface AmcSpecificationHeatTreatmentsResultLineDto {
8711
8659
  status: AmcSpecificationResultLineStatus;
8712
8660
  override?: AmcResultLineOverrideDto | null;
8713
8661
  }
8714
- export type AmcHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
8715
- export type AmcCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching" | "NotSet";
8662
+ export type AmcHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering";
8663
+ export type AmcCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching";
8716
8664
  export interface ProcessAmcCheckRequestDto {
8717
8665
  files: UploadFileDto[];
8718
8666
  specificationId: string;
@@ -8837,9 +8785,7 @@ export interface AmcUpdateSpecificationFerriteResultsDto {
8837
8785
  export interface AmcUpdateSpecificationHeatTreatmentResultsDto {
8838
8786
  heatTreatmentOverrides: (AmcUpdateSpecificationResultLineDto | null)[];
8839
8787
  }
8840
- export interface AmcCdfEntityReadBase {
8841
- }
8842
- export interface AmcSpecificationLiteDto extends AmcCdfEntityReadBase {
8788
+ export interface AmcSpecificationLiteDto {
8843
8789
  specificationId: string;
8844
8790
  version: number;
8845
8791
  name: string;
@@ -8852,11 +8798,11 @@ export interface AmcSpecificationLiteDto extends AmcCdfEntityReadBase {
8852
8798
  created: Date;
8853
8799
  createdBy: string;
8854
8800
  createdById: string;
8855
- updatedBy: string;
8856
- updatedById: string;
8801
+ updatedBy?: string | null;
8802
+ updatedById?: string | null;
8857
8803
  }
8858
8804
  export type AmcSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
8859
- export interface AmcSpecificationDto extends AmcCdfEntityReadBase {
8805
+ export interface AmcSpecificationDto {
8860
8806
  specificationId: string;
8861
8807
  version: number;
8862
8808
  allVersions: AmcSpecificationVersionDto[];
@@ -8870,9 +8816,8 @@ export interface AmcSpecificationDto extends AmcCdfEntityReadBase {
8870
8816
  created: Date;
8871
8817
  createdBy: string;
8872
8818
  createdById: string;
8873
- updatedBy: string;
8874
- updatedById: string;
8875
- updated: Date;
8819
+ updatedBy?: string | null;
8820
+ updatedById?: string | null;
8876
8821
  chemistrySpecification: AmcChemistrySpecificationDto;
8877
8822
  mechanicalSpecification: AmcMechanicalSpecificationDto;
8878
8823
  ferriteSpecification: AmcFerriteSpecificationDto;
@@ -8882,7 +8827,7 @@ export interface AmcSpecificationVersionDto {
8882
8827
  version?: number;
8883
8828
  status?: AmcSpecificationStatus;
8884
8829
  }
8885
- export interface AmcChemistrySpecificationDto extends AmcCdfEntityReadBase {
8830
+ export interface AmcChemistrySpecificationDto {
8886
8831
  carbon?: AmcSpecificationLineDto | null;
8887
8832
  manganese?: AmcSpecificationLineDto | null;
8888
8833
  silicon?: AmcSpecificationLineDto | null;
@@ -8896,15 +8841,15 @@ export interface AmcChemistrySpecificationDto extends AmcCdfEntityReadBase {
8896
8841
  wolfram?: AmcSpecificationLineDto | null;
8897
8842
  iron?: AmcSpecificationLineDto | null;
8898
8843
  }
8899
- export interface AmcSpecificationLineDto extends AmcCdfEntityReadBase {
8844
+ export interface AmcSpecificationLineDto {
8900
8845
  operator: AmcSpecificationOperator;
8901
- value1: number;
8846
+ value1?: number | null;
8902
8847
  value2?: number | null;
8903
8848
  symbol: AmcSpecificationSymbol;
8904
8849
  }
8905
8850
  export type AmcSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
8906
- export type AmcSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
8907
- export interface AmcMechanicalSpecificationDto extends AmcCdfEntityReadBase {
8851
+ export type AmcSpecificationSymbol = "None" | "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw";
8852
+ export interface AmcMechanicalSpecificationDto {
8908
8853
  yieldStrength?: AmcSpecificationLineDto | null;
8909
8854
  tensileStrength?: AmcSpecificationLineDto | null;
8910
8855
  elongation?: AmcSpecificationLineDto | null;
@@ -8912,7 +8857,7 @@ export interface AmcMechanicalSpecificationDto extends AmcCdfEntityReadBase {
8912
8857
  impactEnergy?: AmcSpecificationLineDto | null;
8913
8858
  hardness?: AmcSpecificationLineDto | null;
8914
8859
  }
8915
- export interface AmcFerriteSpecificationDto extends AmcCdfEntityReadBase {
8860
+ export interface AmcFerriteSpecificationDto {
8916
8861
  ferriteContent?: AmcSpecificationLineDto | null;
8917
8862
  }
8918
8863
  export interface AmcHeatTreatmentSpecificationDto {
@@ -8927,24 +8872,29 @@ export interface AmcHeatTreatmentsSpecificationDto {
8927
8872
  coolingHoldingTime?: number | null;
8928
8873
  }
8929
8874
  export interface CreateAmcSpecificationDto {
8930
- specificationName: string;
8931
- specificationNumber: string;
8875
+ name: string;
8876
+ number: string;
8932
8877
  revision: string;
8933
8878
  date: Date;
8879
+ createCopy: boolean;
8880
+ specificationId?: string | null;
8881
+ specificationVersion?: string | null;
8934
8882
  specificationFile?: UploadFileDto | null;
8935
8883
  }
8936
- export interface AmcUpdateSpecificationDto {
8937
- name?: string | null;
8938
- number?: string | null;
8939
- status?: AmcSpecificationStatusUpdate | null;
8884
+ export interface UpdateAmcSpecificationDto {
8885
+ specificationId: string;
8886
+ version: number;
8887
+ status: AmcSpecificationStatusUpdate;
8940
8888
  summary?: string | null;
8941
- relatedStandards?: string[] | null;
8942
- chemistrySpecification?: AmcChemistrySpecificationDto | null;
8943
- mechanicalSpecification?: AmcMechanicalSpecificationDto | null;
8944
- ferriteSpecification?: AmcFerriteSpecificationDto | null;
8945
- heatSpecification?: AmcHeatTreatmentSpecificationDto | null;
8889
+ relatedStandards: string[];
8890
+ chemistrySpecification: AmcChemistrySpecificationDto;
8891
+ mechanicalSpecification: AmcMechanicalSpecificationDto;
8892
+ ferriteSpecification: AmcFerriteSpecificationDto;
8893
+ heatSpecification: AmcHeatTreatmentSpecificationDto;
8946
8894
  }
8947
8895
  export type AmcSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
8896
+ export interface AmcCdfEntityReadBase {
8897
+ }
8948
8898
  export interface AmcCertificateTypeLiteDto extends AmcCdfEntityReadBase {
8949
8899
  certificateTypeId: string;
8950
8900
  version: number;