@ignos/api-client 20260421.115.1-alpha → 20260422.117.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.
- package/lib/ignosportal-api.d.ts +719 -727
- package/lib/ignosportal-api.js +4148 -4243
- package/package.json +1 -1
- package/src/ignosportal-api.ts +6431 -6518
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -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>;
|
|
@@ -751,14 +748,7 @@ export declare class PulseClient extends AuthorizedApiBase implements IPulseClie
|
|
|
751
748
|
protected processUpdatePulseSettingsResource(response: Response): Promise<PulseSettingsResourceDto>;
|
|
752
749
|
}
|
|
753
750
|
export interface IUtilizationClient {
|
|
754
|
-
|
|
755
|
-
* @param utilizationType (optional)
|
|
756
|
-
* @param startTime (optional)
|
|
757
|
-
* @param endTime (optional)
|
|
758
|
-
* @param ianaTimeZone (optional)
|
|
759
|
-
* @deprecated
|
|
760
|
-
*/
|
|
761
|
-
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
|
|
751
|
+
getCompanyUtilization(request: UtilizationInputRequest): Promise<CompanyResourceUtilizationDto>;
|
|
762
752
|
/**
|
|
763
753
|
* @param utilizationType (optional)
|
|
764
754
|
* @param startTime (optional)
|
|
@@ -777,14 +767,7 @@ export interface IUtilizationClient {
|
|
|
777
767
|
* @deprecated
|
|
778
768
|
*/
|
|
779
769
|
getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<MachineUtilizationDatapointListDto>;
|
|
780
|
-
|
|
781
|
-
* @param utilizationType (optional)
|
|
782
|
-
* @param startTime (optional)
|
|
783
|
-
* @param endTime (optional)
|
|
784
|
-
* @param ianaTimeZone (optional)
|
|
785
|
-
* @deprecated
|
|
786
|
-
*/
|
|
787
|
-
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
|
|
770
|
+
getCompanyUtilizationDatapoints(request: UtilizationInputRequest): Promise<CompanyResourceUtilizationDatapointListDto>;
|
|
788
771
|
/**
|
|
789
772
|
* @param utilizationType (optional)
|
|
790
773
|
* @param startTime (optional)
|
|
@@ -805,15 +788,8 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
|
|
|
805
788
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
806
789
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
807
790
|
});
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
* @param startTime (optional)
|
|
811
|
-
* @param endTime (optional)
|
|
812
|
-
* @param ianaTimeZone (optional)
|
|
813
|
-
* @deprecated
|
|
814
|
-
*/
|
|
815
|
-
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
|
|
816
|
-
protected processGetCompanyUtilization(response: Response): Promise<CompanyUtilizationDto>;
|
|
791
|
+
getCompanyUtilization(request: UtilizationInputRequest): Promise<CompanyResourceUtilizationDto>;
|
|
792
|
+
protected processGetCompanyUtilization(response: Response): Promise<CompanyResourceUtilizationDto>;
|
|
817
793
|
/**
|
|
818
794
|
* @param utilizationType (optional)
|
|
819
795
|
* @param startTime (optional)
|
|
@@ -834,15 +810,8 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
|
|
|
834
810
|
*/
|
|
835
811
|
getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<MachineUtilizationDatapointListDto>;
|
|
836
812
|
protected processGetUtilizationDatapoints(response: Response): Promise<MachineUtilizationDatapointListDto>;
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
* @param startTime (optional)
|
|
840
|
-
* @param endTime (optional)
|
|
841
|
-
* @param ianaTimeZone (optional)
|
|
842
|
-
* @deprecated
|
|
843
|
-
*/
|
|
844
|
-
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
|
|
845
|
-
protected processGetCompanyUtilizationDatapoints(response: Response): Promise<CompanyUtilizationDatapointListDto>;
|
|
813
|
+
getCompanyUtilizationDatapoints(request: UtilizationInputRequest): Promise<CompanyResourceUtilizationDatapointListDto>;
|
|
814
|
+
protected processGetCompanyUtilizationDatapoints(response: Response): Promise<CompanyResourceUtilizationDatapointListDto>;
|
|
846
815
|
/**
|
|
847
816
|
* @param utilizationType (optional)
|
|
848
817
|
* @param startTime (optional)
|
|
@@ -1494,6 +1463,99 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
|
|
|
1494
1463
|
listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
|
|
1495
1464
|
protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
|
|
1496
1465
|
}
|
|
1466
|
+
export interface IExternalAccessClient {
|
|
1467
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1468
|
+
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1469
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1470
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1471
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1472
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1473
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1474
|
+
}
|
|
1475
|
+
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
1476
|
+
private http;
|
|
1477
|
+
private baseUrl;
|
|
1478
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1479
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1480
|
+
});
|
|
1481
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1482
|
+
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
1483
|
+
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1484
|
+
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1485
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1486
|
+
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1487
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1488
|
+
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
1489
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1490
|
+
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
1491
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1492
|
+
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
1493
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1494
|
+
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
1495
|
+
}
|
|
1496
|
+
export interface IExternalClient {
|
|
1497
|
+
listInvites(): Promise<InviteDto[]>;
|
|
1498
|
+
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1499
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
1500
|
+
}
|
|
1501
|
+
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
1502
|
+
private http;
|
|
1503
|
+
private baseUrl;
|
|
1504
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1505
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1506
|
+
});
|
|
1507
|
+
listInvites(): Promise<InviteDto[]>;
|
|
1508
|
+
protected processListInvites(response: Response): Promise<InviteDto[]>;
|
|
1509
|
+
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1510
|
+
protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
|
|
1511
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
1512
|
+
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
1513
|
+
}
|
|
1514
|
+
export interface ISuppliersClient {
|
|
1515
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1516
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1517
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
1518
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1519
|
+
deleteSupplier(id: string): Promise<void>;
|
|
1520
|
+
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1521
|
+
/**
|
|
1522
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
1523
|
+
*/
|
|
1524
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1525
|
+
/**
|
|
1526
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1527
|
+
*/
|
|
1528
|
+
deleteSupplierMappings(): Promise<void>;
|
|
1529
|
+
}
|
|
1530
|
+
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
1531
|
+
private http;
|
|
1532
|
+
private baseUrl;
|
|
1533
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1534
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1535
|
+
});
|
|
1536
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1537
|
+
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
1538
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1539
|
+
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
1540
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
1541
|
+
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
1542
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1543
|
+
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
1544
|
+
deleteSupplier(id: string): Promise<void>;
|
|
1545
|
+
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
1546
|
+
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1547
|
+
protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
|
|
1548
|
+
/**
|
|
1549
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
1550
|
+
*/
|
|
1551
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1552
|
+
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
1553
|
+
/**
|
|
1554
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1555
|
+
*/
|
|
1556
|
+
deleteSupplierMappings(): Promise<void>;
|
|
1557
|
+
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
1558
|
+
}
|
|
1497
1559
|
export interface ICncFileTransferClient {
|
|
1498
1560
|
startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
|
|
1499
1561
|
startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
|
|
@@ -2489,30 +2551,6 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
|
|
|
2489
2551
|
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2490
2552
|
protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
|
|
2491
2553
|
}
|
|
2492
|
-
export interface IInspectMatchCertificateChecksClient {
|
|
2493
|
-
listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
|
|
2494
|
-
getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2495
|
-
deleteMaterialCheck(id: string): Promise<void>;
|
|
2496
|
-
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
|
|
2497
|
-
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2498
|
-
}
|
|
2499
|
-
export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBase implements IInspectMatchCertificateChecksClient {
|
|
2500
|
-
private http;
|
|
2501
|
-
private baseUrl;
|
|
2502
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2503
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2504
|
-
});
|
|
2505
|
-
listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
|
|
2506
|
-
protected processListMaterialCertificateChecks(response: Response): Promise<ImaMaterialChecksPageDto>;
|
|
2507
|
-
getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2508
|
-
protected processGetMaterialCertificateCheck(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2509
|
-
deleteMaterialCheck(id: string): Promise<void>;
|
|
2510
|
-
protected processDeleteMaterialCheck(response: Response): Promise<void>;
|
|
2511
|
-
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
|
|
2512
|
-
protected processProcessMaterialCertificate(response: Response): Promise<void>;
|
|
2513
|
-
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2514
|
-
protected processUpdateMaterialCertificate(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2515
|
-
}
|
|
2516
2554
|
export interface IInspectMatchCertificateTypesAdminClient {
|
|
2517
2555
|
createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2518
2556
|
copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
@@ -2555,6 +2593,42 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
|
|
|
2555
2593
|
listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2556
2594
|
protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2557
2595
|
}
|
|
2596
|
+
export interface IInspectMatchMaterialChecksAdminClient {
|
|
2597
|
+
updateMaterialCheckOverrides(id: string, request: ImaOverrideMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2598
|
+
updateMaterialCheckStatus(id: string, status: ImaMaterialCheckStatus | undefined): Promise<FileResponse>;
|
|
2599
|
+
deleteMaterialCheck(id: string): Promise<void>;
|
|
2600
|
+
}
|
|
2601
|
+
export declare class InspectMatchMaterialChecksAdminClient extends AuthorizedApiBase implements IInspectMatchMaterialChecksAdminClient {
|
|
2602
|
+
private http;
|
|
2603
|
+
private baseUrl;
|
|
2604
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2605
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2606
|
+
});
|
|
2607
|
+
updateMaterialCheckOverrides(id: string, request: ImaOverrideMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2608
|
+
protected processUpdateMaterialCheckOverrides(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2609
|
+
updateMaterialCheckStatus(id: string, status: ImaMaterialCheckStatus | undefined): Promise<FileResponse>;
|
|
2610
|
+
protected processUpdateMaterialCheckStatus(response: Response): Promise<FileResponse>;
|
|
2611
|
+
deleteMaterialCheck(id: string): Promise<void>;
|
|
2612
|
+
protected processDeleteMaterialCheck(response: Response): Promise<void>;
|
|
2613
|
+
}
|
|
2614
|
+
export interface IInspectMatchMaterialChecksClient {
|
|
2615
|
+
getMaterialCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2616
|
+
listMaterialChecks(pageSize: number | null | undefined, continuationToken: string | null | undefined, request: ImaMaterialChecksPageRequestDto): Promise<PagedResultOfImaMaterialCheckLiteDto>;
|
|
2617
|
+
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
|
|
2618
|
+
}
|
|
2619
|
+
export declare class InspectMatchMaterialChecksClient extends AuthorizedApiBase implements IInspectMatchMaterialChecksClient {
|
|
2620
|
+
private http;
|
|
2621
|
+
private baseUrl;
|
|
2622
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2623
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2624
|
+
});
|
|
2625
|
+
getMaterialCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2626
|
+
protected processGetMaterialCheck(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2627
|
+
listMaterialChecks(pageSize: number | null | undefined, continuationToken: string | null | undefined, request: ImaMaterialChecksPageRequestDto): Promise<PagedResultOfImaMaterialCheckLiteDto>;
|
|
2628
|
+
protected processListMaterialChecks(response: Response): Promise<PagedResultOfImaMaterialCheckLiteDto>;
|
|
2629
|
+
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
|
|
2630
|
+
protected processProcessMaterialCertificate(response: Response): Promise<void>;
|
|
2631
|
+
}
|
|
2558
2632
|
export interface IInspectMatchPurchaseOrderClient {
|
|
2559
2633
|
searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto>;
|
|
2560
2634
|
getPurchaseOrderLines(purchaseOrder: string): Promise<PurchaseOrderMaterialLinesDto>;
|
|
@@ -2865,22 +2939,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
|
|
|
2865
2939
|
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
2866
2940
|
}
|
|
2867
2941
|
export interface IMeasurementFormsInstancesClient {
|
|
2868
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2942
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, tenantId: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2869
2943
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2870
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2944
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2871
2945
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2872
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2873
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2874
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2875
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
2876
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2946
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2947
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2948
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2949
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2950
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2877
2951
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2878
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2879
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2880
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
2881
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2882
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2883
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2952
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2953
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2954
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
2955
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2956
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2957
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2884
2958
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
2885
2959
|
upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
|
|
2886
2960
|
removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
|
|
@@ -2896,37 +2970,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2896
2970
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2897
2971
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2898
2972
|
});
|
|
2899
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2973
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, tenantId: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2900
2974
|
protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2901
2975
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2902
2976
|
protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2903
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2977
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2904
2978
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2905
2979
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2906
2980
|
protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2907
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2981
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2908
2982
|
protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2909
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2983
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2910
2984
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2911
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2985
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2912
2986
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2913
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
2987
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2914
2988
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
2915
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2989
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2916
2990
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2917
2991
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2918
2992
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
2919
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2993
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2920
2994
|
protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
|
|
2921
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2995
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2922
2996
|
protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
|
|
2923
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
2997
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
2924
2998
|
protected processSaveComment(response: Response): Promise<void>;
|
|
2925
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2999
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2926
3000
|
protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
|
|
2927
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3001
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2928
3002
|
protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
|
|
2929
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3003
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2930
3004
|
protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
|
|
2931
3005
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
2932
3006
|
protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
@@ -2951,7 +3025,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
2951
3025
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2952
3026
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2953
3027
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2954
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3028
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2955
3029
|
}
|
|
2956
3030
|
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
2957
3031
|
private http;
|
|
@@ -2975,7 +3049,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
|
|
|
2975
3049
|
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2976
3050
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2977
3051
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2978
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3052
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2979
3053
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
2980
3054
|
}
|
|
2981
3055
|
export interface ICompaniesClient {
|
|
@@ -3315,108 +3389,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3315
3389
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3316
3390
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3317
3391
|
}
|
|
3318
|
-
export interface IExternalAccessClient {
|
|
3319
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3320
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3321
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3322
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3323
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3324
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3325
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3326
|
-
}
|
|
3327
|
-
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3328
|
-
private http;
|
|
3329
|
-
private baseUrl;
|
|
3330
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3331
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3332
|
-
});
|
|
3333
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3334
|
-
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
3335
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3336
|
-
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3337
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3338
|
-
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3339
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3340
|
-
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
3341
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3342
|
-
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
3343
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3344
|
-
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
3345
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3346
|
-
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
3347
|
-
}
|
|
3348
|
-
export interface IExternalClient {
|
|
3349
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3350
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3351
|
-
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3352
|
-
acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
|
|
3353
|
-
acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
|
|
3354
|
-
acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
|
|
3355
|
-
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3356
|
-
}
|
|
3357
|
-
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3358
|
-
private http;
|
|
3359
|
-
private baseUrl;
|
|
3360
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3361
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3362
|
-
});
|
|
3363
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3364
|
-
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3365
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3366
|
-
protected processGetCompany(response: Response): Promise<CompanyDto>;
|
|
3367
|
-
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3368
|
-
protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3369
|
-
acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
|
|
3370
|
-
protected processAcceptSupplierInviteNewCompany(response: Response): Promise<SupplierInviteDto>;
|
|
3371
|
-
acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
|
|
3372
|
-
protected processAcceptSupplierInviteExistingCompany(response: Response): Promise<SupplierInviteDto>;
|
|
3373
|
-
acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
|
|
3374
|
-
protected processAcceptSupplierInviteCustomer(response: Response): Promise<SupplierInviteDto>;
|
|
3375
|
-
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3376
|
-
protected processListTenantsWithSuppliers(response: Response): Promise<TenantWithSupplierDto[]>;
|
|
3377
|
-
}
|
|
3378
|
-
export interface ISuppliersClient {
|
|
3379
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3380
|
-
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3381
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3382
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3383
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3384
|
-
/**
|
|
3385
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3386
|
-
*/
|
|
3387
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3388
|
-
/**
|
|
3389
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3390
|
-
*/
|
|
3391
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3392
|
-
}
|
|
3393
|
-
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3394
|
-
private http;
|
|
3395
|
-
private baseUrl;
|
|
3396
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3397
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3398
|
-
});
|
|
3399
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3400
|
-
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3401
|
-
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3402
|
-
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3403
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3404
|
-
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
3405
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3406
|
-
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3407
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3408
|
-
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3409
|
-
/**
|
|
3410
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3411
|
-
*/
|
|
3412
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3413
|
-
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3414
|
-
/**
|
|
3415
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3416
|
-
*/
|
|
3417
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3418
|
-
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3419
|
-
}
|
|
3420
3392
|
export interface AzureRegionDto {
|
|
3421
3393
|
displayName: string;
|
|
3422
3394
|
name: string;
|
|
@@ -3720,9 +3692,6 @@ export interface UserDetailsDto {
|
|
|
3720
3692
|
isExternalUser?: boolean;
|
|
3721
3693
|
isBetaTester?: boolean | null;
|
|
3722
3694
|
hasAccessToIgnos?: boolean;
|
|
3723
|
-
isInvitedUser?: boolean;
|
|
3724
|
-
isSupplier?: boolean;
|
|
3725
|
-
companyId?: string | null;
|
|
3726
3695
|
}
|
|
3727
3696
|
export interface UserDto {
|
|
3728
3697
|
id?: string | null;
|
|
@@ -4438,11 +4407,11 @@ export interface UpdatePulseSettingsResource {
|
|
|
4438
4407
|
resourceCalendarEnabled: boolean;
|
|
4439
4408
|
factoryCalendarEnabled: boolean;
|
|
4440
4409
|
}
|
|
4441
|
-
export interface
|
|
4442
|
-
utilizationType:
|
|
4410
|
+
export interface CompanyResourceUtilizationDto {
|
|
4411
|
+
utilizationType: ResourceUtilizationTypeDto;
|
|
4443
4412
|
companyUtilization: UtilizationDetailsV2Dto;
|
|
4444
|
-
groups:
|
|
4445
|
-
|
|
4413
|
+
groups: ResourceGroupUtilizationV2Dto[];
|
|
4414
|
+
ungroupedResources: ResourceUtilizationV3Dto[];
|
|
4446
4415
|
}
|
|
4447
4416
|
export interface UtilizationDetailsV2Dto {
|
|
4448
4417
|
utilizationPercent?: number | null;
|
|
@@ -4455,69 +4424,92 @@ export interface UtilizationDetailsV2Dto {
|
|
|
4455
4424
|
totalTimeInMilliseconds?: number | null;
|
|
4456
4425
|
performancePercent?: number | null;
|
|
4457
4426
|
}
|
|
4458
|
-
export interface
|
|
4427
|
+
export interface ResourceGroupUtilizationV2Dto {
|
|
4459
4428
|
name: string;
|
|
4460
4429
|
utilization: UtilizationDetailsV2Dto;
|
|
4461
|
-
|
|
4430
|
+
resources: ResourceUtilizationV3Dto[];
|
|
4462
4431
|
}
|
|
4463
|
-
export interface
|
|
4432
|
+
export interface ResourceUtilizationV3Dto {
|
|
4464
4433
|
id?: number;
|
|
4465
4434
|
name: string;
|
|
4466
4435
|
description?: string | null;
|
|
4467
4436
|
utilization: UtilizationDetailsV2Dto;
|
|
4468
4437
|
}
|
|
4438
|
+
export interface UtilizationInputRequest {
|
|
4439
|
+
utilizationType?: ResourceUtilizationTypeDto;
|
|
4440
|
+
startTime: Date;
|
|
4441
|
+
endTime?: Date | null;
|
|
4442
|
+
ianaTimeZone?: string | null;
|
|
4443
|
+
resourceExternalIds?: string[] | null;
|
|
4444
|
+
resourceGroupNames?: string[] | null;
|
|
4445
|
+
}
|
|
4469
4446
|
export interface CrossCompanyUtilizationDto {
|
|
4470
4447
|
utilizationType: UtilizationTypeDto;
|
|
4471
4448
|
crossCompanyUtilization: UtilizationDetailsV2Dto;
|
|
4472
4449
|
companies: NamedCompanyUtilizationDto[];
|
|
4473
4450
|
}
|
|
4451
|
+
export interface CompanyUtilizationDto {
|
|
4452
|
+
utilizationType: UtilizationTypeDto;
|
|
4453
|
+
companyUtilization: UtilizationDetailsV2Dto;
|
|
4454
|
+
groups: MachineGroupUtilizationV2Dto[];
|
|
4455
|
+
ungroupedMachines: MachineUtilizationV3Dto[];
|
|
4456
|
+
}
|
|
4474
4457
|
export interface NamedCompanyUtilizationDto extends CompanyUtilizationDto {
|
|
4475
4458
|
companyId: string;
|
|
4476
4459
|
companyName: string;
|
|
4477
4460
|
}
|
|
4478
|
-
export interface
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
4482
|
-
}
|
|
4483
|
-
export interface
|
|
4484
|
-
|
|
4485
|
-
id: number;
|
|
4461
|
+
export interface MachineGroupUtilizationV2Dto {
|
|
4462
|
+
name: string;
|
|
4463
|
+
utilization: UtilizationDetailsV2Dto;
|
|
4464
|
+
machines: MachineUtilizationV3Dto[];
|
|
4465
|
+
}
|
|
4466
|
+
export interface MachineUtilizationV3Dto {
|
|
4467
|
+
id?: number;
|
|
4486
4468
|
name: string;
|
|
4487
4469
|
description?: string | null;
|
|
4470
|
+
utilization: UtilizationDetailsV2Dto;
|
|
4488
4471
|
}
|
|
4489
|
-
export interface
|
|
4490
|
-
|
|
4491
|
-
|
|
4472
|
+
export interface UtilizationDatapointListDto {
|
|
4473
|
+
datapoints?: NumericNullableValueWithTimestamp[];
|
|
4474
|
+
trendDatapoints?: NumericNullableValueWithTimestamp[];
|
|
4475
|
+
linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
|
|
4492
4476
|
}
|
|
4493
|
-
export interface
|
|
4477
|
+
export interface MachineUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4478
|
+
externalId: string;
|
|
4479
|
+
id: number;
|
|
4480
|
+
name: string;
|
|
4481
|
+
description?: string | null;
|
|
4482
|
+
}
|
|
4483
|
+
export interface CompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4484
|
+
groups?: ResourceGroupUtilizationDatapointListDto[];
|
|
4485
|
+
ungroupedResources?: ResourceUtilizationDatapointListDto[];
|
|
4486
|
+
}
|
|
4487
|
+
export interface ResourceGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4494
4488
|
groupId: string;
|
|
4495
4489
|
groupName: string;
|
|
4496
|
-
|
|
4490
|
+
resources?: ResourceUtilizationDatapointListDto[];
|
|
4491
|
+
}
|
|
4492
|
+
export interface ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4493
|
+
externalId: string;
|
|
4494
|
+
id: number;
|
|
4495
|
+
name: string;
|
|
4496
|
+
description?: string | null;
|
|
4497
4497
|
}
|
|
4498
4498
|
export interface CrossCompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4499
4499
|
companies?: NamedCompanyUtilizationDatapointListDto[];
|
|
4500
4500
|
}
|
|
4501
|
+
export interface CompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4502
|
+
groups?: MachineGroupUtilizationDatapointListDto[];
|
|
4503
|
+
ungroupedMachines?: MachineUtilizationDatapointListDto[];
|
|
4504
|
+
}
|
|
4501
4505
|
export interface NamedCompanyUtilizationDatapointListDto extends CompanyUtilizationDatapointListDto {
|
|
4502
4506
|
companyId: string;
|
|
4503
4507
|
companyName: string;
|
|
4504
4508
|
}
|
|
4505
|
-
export interface
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
ungroupedResources: ResourceUtilizationV3Dto[];
|
|
4510
|
-
}
|
|
4511
|
-
export interface ResourceGroupUtilizationV2Dto {
|
|
4512
|
-
name: string;
|
|
4513
|
-
utilization: UtilizationDetailsV2Dto;
|
|
4514
|
-
resources: ResourceUtilizationV3Dto[];
|
|
4515
|
-
}
|
|
4516
|
-
export interface ResourceUtilizationV3Dto {
|
|
4517
|
-
id?: number;
|
|
4518
|
-
name: string;
|
|
4519
|
-
description?: string | null;
|
|
4520
|
-
utilization: UtilizationDetailsV2Dto;
|
|
4509
|
+
export interface MachineGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4510
|
+
groupId: string;
|
|
4511
|
+
groupName: string;
|
|
4512
|
+
machines?: MachineUtilizationDatapointListDto[];
|
|
4521
4513
|
}
|
|
4522
4514
|
export interface CrossCompanyResourceUtilizationDto {
|
|
4523
4515
|
utilizationType: ResourceUtilizationTypeDto;
|
|
@@ -4528,21 +4520,6 @@ export interface NamedCompanyResourceUtilizationDto extends CompanyResourceUtili
|
|
|
4528
4520
|
companyId: string;
|
|
4529
4521
|
companyName: string;
|
|
4530
4522
|
}
|
|
4531
|
-
export interface ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4532
|
-
externalId: string;
|
|
4533
|
-
id: number;
|
|
4534
|
-
name: string;
|
|
4535
|
-
description?: string | null;
|
|
4536
|
-
}
|
|
4537
|
-
export interface CompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4538
|
-
groups?: ResourceGroupUtilizationDatapointListDto[];
|
|
4539
|
-
ungroupedResources?: ResourceUtilizationDatapointListDto[];
|
|
4540
|
-
}
|
|
4541
|
-
export interface ResourceGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4542
|
-
groupId: string;
|
|
4543
|
-
groupName: string;
|
|
4544
|
-
resources?: ResourceUtilizationDatapointListDto[];
|
|
4545
|
-
}
|
|
4546
4523
|
export interface CrossCompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4547
4524
|
companies?: NamedCompanyResourceUtilizationDatapointListDto[];
|
|
4548
4525
|
}
|
|
@@ -5598,6 +5575,97 @@ export interface DocumentGeneratorTypeDto {
|
|
|
5598
5575
|
key: string;
|
|
5599
5576
|
description: string;
|
|
5600
5577
|
}
|
|
5578
|
+
export interface CompanyUserDto {
|
|
5579
|
+
companyId?: string | null;
|
|
5580
|
+
username?: string | null;
|
|
5581
|
+
name?: string | null;
|
|
5582
|
+
roles?: string[] | null;
|
|
5583
|
+
}
|
|
5584
|
+
export interface CreateCompanyUserRequest {
|
|
5585
|
+
username: string;
|
|
5586
|
+
name: string;
|
|
5587
|
+
roles: string[];
|
|
5588
|
+
companyId?: string | null;
|
|
5589
|
+
}
|
|
5590
|
+
export interface UpdateCompanyUserRequest {
|
|
5591
|
+
name: string;
|
|
5592
|
+
roles: string[];
|
|
5593
|
+
companyId?: string | null;
|
|
5594
|
+
}
|
|
5595
|
+
export interface ExternalRoleDto {
|
|
5596
|
+
id: string;
|
|
5597
|
+
name: string;
|
|
5598
|
+
}
|
|
5599
|
+
export interface CompanyCustomerDto {
|
|
5600
|
+
customerTenantId?: string | null;
|
|
5601
|
+
customerAzureAdTenantId?: string | null;
|
|
5602
|
+
customerName?: string | null;
|
|
5603
|
+
supplierId?: string | null;
|
|
5604
|
+
supplierName?: string | null;
|
|
5605
|
+
}
|
|
5606
|
+
export interface InviteDto {
|
|
5607
|
+
tenantId: string;
|
|
5608
|
+
companyName: string;
|
|
5609
|
+
id: string;
|
|
5610
|
+
supplierId: string;
|
|
5611
|
+
supplierName: string;
|
|
5612
|
+
username: string;
|
|
5613
|
+
deadline: Date;
|
|
5614
|
+
createdTime: Date;
|
|
5615
|
+
createdBy: string;
|
|
5616
|
+
}
|
|
5617
|
+
export interface CompanyDto {
|
|
5618
|
+
id?: string | null;
|
|
5619
|
+
name?: string | null;
|
|
5620
|
+
organizationNumber?: string | null;
|
|
5621
|
+
country?: string | null;
|
|
5622
|
+
tenantId?: string | null;
|
|
5623
|
+
}
|
|
5624
|
+
export interface AcceptSupplierInviteRequest {
|
|
5625
|
+
tenantId: string;
|
|
5626
|
+
existingCompanyId?: string | null;
|
|
5627
|
+
companyName?: string | null;
|
|
5628
|
+
organizationNumber?: string | null;
|
|
5629
|
+
threeLetterIsoCountry?: string | null;
|
|
5630
|
+
}
|
|
5631
|
+
export interface SupplierInviteDto {
|
|
5632
|
+
id: string;
|
|
5633
|
+
supplierId: string;
|
|
5634
|
+
name: string;
|
|
5635
|
+
username: string;
|
|
5636
|
+
deadline: Date;
|
|
5637
|
+
createdTime: Date;
|
|
5638
|
+
createdBy: string;
|
|
5639
|
+
}
|
|
5640
|
+
export interface CreateSupplierInvite {
|
|
5641
|
+
supplierId: string;
|
|
5642
|
+
name: string;
|
|
5643
|
+
username: string;
|
|
5644
|
+
deadline: Date;
|
|
5645
|
+
}
|
|
5646
|
+
export interface ExternalSupplierDto {
|
|
5647
|
+
id: string;
|
|
5648
|
+
name: string;
|
|
5649
|
+
companyId: string;
|
|
5650
|
+
active: boolean;
|
|
5651
|
+
}
|
|
5652
|
+
export interface ImportSupplier {
|
|
5653
|
+
supplierId: string;
|
|
5654
|
+
name: string;
|
|
5655
|
+
organizationNumber?: string | null;
|
|
5656
|
+
threeLetterIsoCountry: string;
|
|
5657
|
+
users: ImportSupplierUserDto[];
|
|
5658
|
+
}
|
|
5659
|
+
export interface ImportSupplierUserDto {
|
|
5660
|
+
username: string;
|
|
5661
|
+
name: string;
|
|
5662
|
+
roles: string[];
|
|
5663
|
+
}
|
|
5664
|
+
export interface CreateSupplierMapping {
|
|
5665
|
+
companyId: string;
|
|
5666
|
+
existingSupplierId: string;
|
|
5667
|
+
newSupplierId: string;
|
|
5668
|
+
}
|
|
5601
5669
|
export interface CncMachineTransferDto {
|
|
5602
5670
|
id: string;
|
|
5603
5671
|
cncMachineOperationId?: string | null;
|
|
@@ -7559,398 +7627,48 @@ export interface WeldingIotConfigDto {
|
|
|
7559
7627
|
}
|
|
7560
7628
|
export interface CreateWeldingIotConfig {
|
|
7561
7629
|
}
|
|
7562
|
-
export interface
|
|
7563
|
-
items: ImaMaterialCheckLiteDto[];
|
|
7564
|
-
continuationToken?: string | null;
|
|
7630
|
+
export interface ImaCdfEntityReadBase {
|
|
7565
7631
|
}
|
|
7566
|
-
export interface
|
|
7567
|
-
|
|
7568
|
-
|
|
7569
|
-
|
|
7570
|
-
|
|
7571
|
-
|
|
7572
|
-
|
|
7573
|
-
|
|
7574
|
-
|
|
7575
|
-
|
|
7576
|
-
specificationId: string;
|
|
7577
|
-
specificationVersion: number;
|
|
7578
|
-
specificationName: string;
|
|
7579
|
-
purchaseOrder?: string | null;
|
|
7580
|
-
purchaseOrderLine?: number | null;
|
|
7581
|
-
purchaseOrderItem?: string | null;
|
|
7582
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
7583
|
-
purchaseOrderLot?: string | null;
|
|
7584
|
-
status: ImaMaterialCheckStatus;
|
|
7632
|
+
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
7633
|
+
companyId: string;
|
|
7634
|
+
certificateTypeId: string;
|
|
7635
|
+
version: number;
|
|
7636
|
+
allVersions: ImaCertificateTypeVersionDto[];
|
|
7637
|
+
name: string;
|
|
7638
|
+
revision: string;
|
|
7639
|
+
status: ImaCertificateTypeStatus;
|
|
7640
|
+
description?: string | null;
|
|
7641
|
+
isStandardCertificateType: boolean;
|
|
7585
7642
|
created: Date;
|
|
7586
7643
|
createdBy: string;
|
|
7587
7644
|
createdById: string;
|
|
7588
|
-
|
|
7589
|
-
|
|
7590
|
-
|
|
7645
|
+
createdByName: string;
|
|
7646
|
+
updatedBy: string;
|
|
7647
|
+
updatedById: string;
|
|
7648
|
+
updatedByName: string;
|
|
7649
|
+
updated: Date;
|
|
7650
|
+
isDeleted: boolean;
|
|
7651
|
+
requirements: ImaCertificateTypeRequirementsDto;
|
|
7591
7652
|
}
|
|
7592
|
-
export
|
|
7593
|
-
|
|
7594
|
-
|
|
7595
|
-
orderBy?: ImaMaterialChecksOrderByColumn | null;
|
|
7596
|
-
searchTerm?: string | null;
|
|
7597
|
-
originalReportFilter?: string | null;
|
|
7598
|
-
generatedReportFilter?: string | null;
|
|
7599
|
-
customerFilter?: string | null;
|
|
7600
|
-
projectFilter?: string | null;
|
|
7601
|
-
purchaseOrderFilter?: string | null;
|
|
7602
|
-
workOrderFilter?: string | null;
|
|
7603
|
-
certificateTypeFilter?: string | null;
|
|
7604
|
-
lineFilter?: string | null;
|
|
7605
|
-
itemFilter?: string | null;
|
|
7606
|
-
heatFilter?: string | null;
|
|
7607
|
-
lotFilter?: string | null;
|
|
7608
|
-
dateFromFilter?: Date | null;
|
|
7609
|
-
dateToFilter?: Date | null;
|
|
7610
|
-
statusFilter: ImaMaterialCheckStatus[];
|
|
7611
|
-
continuationToken?: string | null;
|
|
7653
|
+
export interface ImaCertificateTypeVersionDto {
|
|
7654
|
+
version?: number;
|
|
7655
|
+
status?: ImaCertificateTypeStatus;
|
|
7612
7656
|
}
|
|
7613
|
-
export type
|
|
7614
|
-
export interface
|
|
7615
|
-
|
|
7616
|
-
|
|
7617
|
-
|
|
7618
|
-
|
|
7619
|
-
|
|
7620
|
-
|
|
7621
|
-
|
|
7622
|
-
|
|
7623
|
-
certificateTypeName?: string | null;
|
|
7624
|
-
specificationId: string;
|
|
7625
|
-
specificationVersion: number;
|
|
7626
|
-
specificationName: string;
|
|
7627
|
-
purchaseOrder?: string | null;
|
|
7628
|
-
purchaseOrderLine?: number | null;
|
|
7629
|
-
purchaseOrderItem?: string | null;
|
|
7630
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
7631
|
-
purchaseOrderLot?: string | null;
|
|
7632
|
-
status: ImaMaterialCheckStatus;
|
|
7633
|
-
created: Date;
|
|
7634
|
-
createdBy: string;
|
|
7635
|
-
createdById: string;
|
|
7636
|
-
updatedBy?: string | null;
|
|
7637
|
-
updatedById?: string | null;
|
|
7638
|
-
isDeleted?: boolean;
|
|
7639
|
-
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
7640
|
-
specificationChemistry: ImaSpecificationChemistryResultsDto;
|
|
7641
|
-
specificationMechanical: ImaSpecificationMechanicalResultsDto;
|
|
7642
|
-
specificationFerrite: ImaSpecificationFerriteResultsDto;
|
|
7643
|
-
specificationHeatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
7657
|
+
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7658
|
+
export interface ImaCertificateTypeRequirementsDto {
|
|
7659
|
+
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
7660
|
+
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
7661
|
+
thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
|
|
7662
|
+
certification: ImaCertificateTypeCertificationRequirementsDto;
|
|
7663
|
+
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
7664
|
+
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
7665
|
+
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
7666
|
+
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
7644
7667
|
}
|
|
7645
|
-
export interface
|
|
7646
|
-
manufacturer
|
|
7647
|
-
|
|
7648
|
-
|
|
7649
|
-
certification: ImaCertificateTypeCertificationResultsDto;
|
|
7650
|
-
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
7651
|
-
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
7652
|
-
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
7653
|
-
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
7654
|
-
}
|
|
7655
|
-
export interface ImaCertificateTypeManufacturerResultsDto {
|
|
7656
|
-
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
7657
|
-
address?: ImaCertificateTypeResultLine | null;
|
|
7658
|
-
contact?: ImaCertificateTypeResultLine | null;
|
|
7659
|
-
}
|
|
7660
|
-
export interface ImaCertificateTypeResultLine {
|
|
7661
|
-
found?: boolean;
|
|
7662
|
-
readValue?: string | null;
|
|
7663
|
-
override?: ImaResultLineOverrideDto | null;
|
|
7664
|
-
}
|
|
7665
|
-
export interface ImaResultLineOverrideDto {
|
|
7666
|
-
approved: boolean;
|
|
7667
|
-
comment?: string | null;
|
|
7668
|
-
updated: Date;
|
|
7669
|
-
updatedBy: string;
|
|
7670
|
-
updatedById: string;
|
|
7671
|
-
}
|
|
7672
|
-
export interface ImaCertificateTypeSignatureResultsDto {
|
|
7673
|
-
certifiedBy?: ImaCertificateTypeResultLine | null;
|
|
7674
|
-
position?: ImaCertificateTypeResultLine | null;
|
|
7675
|
-
signature?: ImaCertificateTypeResultLine | null;
|
|
7676
|
-
date?: ImaCertificateTypeResultLine | null;
|
|
7677
|
-
stamp?: ImaCertificateTypeResultLine | null;
|
|
7678
|
-
}
|
|
7679
|
-
export interface ImaCertificateTypeThirdPartyResultsDto {
|
|
7680
|
-
inspectionBody?: ImaCertificateTypeResultLine | null;
|
|
7681
|
-
inspectorName?: ImaCertificateTypeResultLine | null;
|
|
7682
|
-
position?: ImaCertificateTypeResultLine | null;
|
|
7683
|
-
verificationMethod?: ImaCertificateTypeResultLine | null;
|
|
7684
|
-
signature?: ImaCertificateTypeResultLine | null;
|
|
7685
|
-
date?: ImaCertificateTypeResultLine | null;
|
|
7686
|
-
stamp?: ImaCertificateTypeResultLine | null;
|
|
7687
|
-
}
|
|
7688
|
-
export interface ImaCertificateTypeCertificationResultsDto {
|
|
7689
|
-
certificateOfCompliance?: ImaCertificateTypeResultLine | null;
|
|
7690
|
-
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
7691
|
-
}
|
|
7692
|
-
export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
|
|
7693
|
-
productDescription?: ImaCertificateTypeResultLine | null;
|
|
7694
|
-
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
7695
|
-
customer?: ImaCertificateTypeResultLine | null;
|
|
7696
|
-
customerOrderNumber?: ImaCertificateTypeResultLine | null;
|
|
7697
|
-
dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
|
|
7698
|
-
batchNumber?: ImaCertificateTypeResultLine | null;
|
|
7699
|
-
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
7700
|
-
relatedStandards?: ImaCertificateTypeResultLine | null;
|
|
7701
|
-
}
|
|
7702
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
7703
|
-
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
7704
|
-
}
|
|
7705
|
-
export interface ImaCertificateTypeTestResultsResultsDto {
|
|
7706
|
-
mechanicalProperties?: ImaCertificateTypeResultLine | null;
|
|
7707
|
-
chemicalAnalysis?: ImaCertificateTypeResultLine | null;
|
|
7708
|
-
impactTests?: ImaCertificateTypeResultLine | null;
|
|
7709
|
-
corrosionTests?: ImaCertificateTypeResultLine | null;
|
|
7710
|
-
ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
|
|
7711
|
-
}
|
|
7712
|
-
export interface ImaCertificateTypeDocumentTypesResultsDto {
|
|
7713
|
-
heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
|
|
7714
|
-
ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
|
|
7715
|
-
liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
|
|
7716
|
-
testReport?: ImaCertificateTypeResultLine | null;
|
|
7717
|
-
dimensionalReport?: ImaCertificateTypeResultLine | null;
|
|
7718
|
-
dyePenetrantReport?: ImaCertificateTypeResultLine | null;
|
|
7719
|
-
visualReport?: ImaCertificateTypeResultLine | null;
|
|
7720
|
-
certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
|
|
7721
|
-
certificateOfTest?: ImaCertificateTypeResultLine | null;
|
|
7722
|
-
technicalReport?: ImaCertificateTypeResultLine | null;
|
|
7723
|
-
microExaminationReport?: ImaCertificateTypeResultLine | null;
|
|
7724
|
-
radiologicalReport?: ImaCertificateTypeResultLine | null;
|
|
7725
|
-
}
|
|
7726
|
-
export interface ImaSpecificationChemistryResultsDto {
|
|
7727
|
-
carbon?: ImaSpecificationResultLineDto | null;
|
|
7728
|
-
manganese?: ImaSpecificationResultLineDto | null;
|
|
7729
|
-
silicon?: ImaSpecificationResultLineDto | null;
|
|
7730
|
-
phosphorus?: ImaSpecificationResultLineDto | null;
|
|
7731
|
-
sulfur?: ImaSpecificationResultLineDto | null;
|
|
7732
|
-
chromium?: ImaSpecificationResultLineDto | null;
|
|
7733
|
-
nickel?: ImaSpecificationResultLineDto | null;
|
|
7734
|
-
molybdenum?: ImaSpecificationResultLineDto | null;
|
|
7735
|
-
copper?: ImaSpecificationResultLineDto | null;
|
|
7736
|
-
nitrogen?: ImaSpecificationResultLineDto | null;
|
|
7737
|
-
wolfram?: ImaSpecificationResultLineDto | null;
|
|
7738
|
-
iron?: ImaSpecificationResultLineDto | null;
|
|
7739
|
-
}
|
|
7740
|
-
export interface ImaSpecificationResultLineDto {
|
|
7741
|
-
specificationOperator?: string | null;
|
|
7742
|
-
specificationValue1?: number | null;
|
|
7743
|
-
specificationValue2?: number | null;
|
|
7744
|
-
specificationUnit?: ImaSpecificationUnit | null;
|
|
7745
|
-
readValue?: string | null;
|
|
7746
|
-
status: ImaSpecificationResultLineStatus;
|
|
7747
|
-
override?: ImaResultLineOverrideDto | null;
|
|
7748
|
-
}
|
|
7749
|
-
export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenheit" | "Mpa" | "Hbw" | "Minutes" | "NotSet";
|
|
7750
|
-
export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
7751
|
-
export interface ImaSpecificationMechanicalResultsDto {
|
|
7752
|
-
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
7753
|
-
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
7754
|
-
elongation?: ImaSpecificationResultLineDto | null;
|
|
7755
|
-
reductionOfArea?: ImaSpecificationResultLineDto | null;
|
|
7756
|
-
impactEnergy?: ImaSpecificationResultLineDto | null;
|
|
7757
|
-
hardness?: ImaSpecificationResultLineDto | null;
|
|
7758
|
-
}
|
|
7759
|
-
export interface ImaSpecificationFerriteResultsDto {
|
|
7760
|
-
ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
|
|
7761
|
-
}
|
|
7762
|
-
export interface ImaSpecificationFerriteResultLineDto {
|
|
7763
|
-
specificationOperator?: string | null;
|
|
7764
|
-
specificationValue1?: string | null;
|
|
7765
|
-
specificationValue2?: string | null;
|
|
7766
|
-
specificationSymbol?: string | null;
|
|
7767
|
-
readValue?: string | null;
|
|
7768
|
-
status: ImaSpecificationResultLineStatus;
|
|
7769
|
-
override?: ImaResultLineOverrideDto | null;
|
|
7770
|
-
measurementMethod?: string | null;
|
|
7771
|
-
}
|
|
7772
|
-
export interface ImaSpecificationHeatTreatmentResultDto {
|
|
7773
|
-
step: number;
|
|
7774
|
-
cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
|
|
7775
|
-
heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
|
|
7776
|
-
}
|
|
7777
|
-
export interface ImaSpecificationHeatTreatmentCoolingResult {
|
|
7778
|
-
coolingMethods?: string[] | null;
|
|
7779
|
-
temperature?: ImaSpecificationResultLineDto | null;
|
|
7780
|
-
duration?: ImaSpecificationResultLineDto | null;
|
|
7781
|
-
}
|
|
7782
|
-
export interface ImaSpecificationHeatTreatmentHeatingResult {
|
|
7783
|
-
heatingMethod?: string | null;
|
|
7784
|
-
temperature?: ImaSpecificationResultLineDto | null;
|
|
7785
|
-
duration?: ImaSpecificationResultLineDto | null;
|
|
7786
|
-
}
|
|
7787
|
-
export interface ProcessMaterialCertificate {
|
|
7788
|
-
files: UploadFileCdfDto[];
|
|
7789
|
-
specificationId: string;
|
|
7790
|
-
specificationVersion: number;
|
|
7791
|
-
certificateTypeId?: string | null;
|
|
7792
|
-
certificateTypeVersion?: number | null;
|
|
7793
|
-
purchaseOrder?: string | null;
|
|
7794
|
-
purchaseOrderLine?: number | null;
|
|
7795
|
-
}
|
|
7796
|
-
export interface UploadFileCdfDto {
|
|
7797
|
-
id: number;
|
|
7798
|
-
}
|
|
7799
|
-
export interface ImaUpdateResultRequestDto {
|
|
7800
|
-
certificateId: string;
|
|
7801
|
-
project?: string | null;
|
|
7802
|
-
purchaseOrder?: string | null;
|
|
7803
|
-
workOrder?: string | null;
|
|
7804
|
-
certificateTypeSection: ImaUpdateCertificateTypeResultsDto;
|
|
7805
|
-
specificationChemistrySpecification: ImaUpdateSpecificationChemistryResultsDto;
|
|
7806
|
-
specificationMechanicalSpecification: ImaUpdateSpecificationMechanicalResultsDto;
|
|
7807
|
-
specificationFerriteSpecification: ImaUpdateSpecificationFerriteResultsDto;
|
|
7808
|
-
specificationHeatSpecification: ImaUpdateSpecificationHeatTreatmentResultsDto;
|
|
7809
|
-
}
|
|
7810
|
-
export interface ImaUpdateCertificateTypeResultsDto {
|
|
7811
|
-
manufacturer: ImaUpdateCertificateTypeManufacturerResultsDto;
|
|
7812
|
-
signature: ImaUpdateCertificateTypeSignatureResultsDto;
|
|
7813
|
-
thirdParty: ImaUpdateCertificateTypeThirdPartyResultsDto;
|
|
7814
|
-
certification: ImaUpdateCertificateTypeCertificationResultsDto;
|
|
7815
|
-
certificateTypeProductAndOrderInformation: ImaUpdateCertificateTypeProductAndOrderInformationResultsDto;
|
|
7816
|
-
testMethodsAndReferences: ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
7817
|
-
testResults: ImaUpdateCertificateTypeTestResultsResultsDto;
|
|
7818
|
-
documentTypes: ImaUpdateCertificateTypeDocumentTypesResultsDto;
|
|
7819
|
-
}
|
|
7820
|
-
export interface ImaUpdateCertificateTypeManufacturerResultsDto {
|
|
7821
|
-
manufacturer?: ImaUpdateCertificateTypeResultLine | null;
|
|
7822
|
-
address?: ImaUpdateCertificateTypeResultLine | null;
|
|
7823
|
-
contact?: ImaUpdateCertificateTypeResultLine | null;
|
|
7824
|
-
}
|
|
7825
|
-
export interface ImaUpdateCertificateTypeResultLine {
|
|
7826
|
-
approved?: boolean | null;
|
|
7827
|
-
comment?: string | null;
|
|
7828
|
-
}
|
|
7829
|
-
export interface ImaUpdateCertificateTypeSignatureResultsDto {
|
|
7830
|
-
certifiedBy?: ImaUpdateCertificateTypeResultLine | null;
|
|
7831
|
-
position?: ImaUpdateCertificateTypeResultLine | null;
|
|
7832
|
-
signature?: ImaUpdateCertificateTypeResultLine | null;
|
|
7833
|
-
date?: ImaUpdateCertificateTypeResultLine | null;
|
|
7834
|
-
stamp?: ImaUpdateCertificateTypeResultLine | null;
|
|
7835
|
-
}
|
|
7836
|
-
export interface ImaUpdateCertificateTypeThirdPartyResultsDto {
|
|
7837
|
-
inspectionBody?: ImaUpdateCertificateTypeResultLine | null;
|
|
7838
|
-
inspectorName?: ImaUpdateCertificateTypeResultLine | null;
|
|
7839
|
-
position?: ImaUpdateCertificateTypeResultLine | null;
|
|
7840
|
-
verificationMethod?: ImaUpdateCertificateTypeResultLine | null;
|
|
7841
|
-
signature?: ImaUpdateCertificateTypeResultLine | null;
|
|
7842
|
-
date?: ImaUpdateCertificateTypeResultLine | null;
|
|
7843
|
-
stamp?: ImaUpdateCertificateTypeResultLine | null;
|
|
7844
|
-
}
|
|
7845
|
-
export interface ImaUpdateCertificateTypeCertificationResultsDto {
|
|
7846
|
-
certificateOfCompliance?: ImaUpdateCertificateTypeResultLine | null;
|
|
7847
|
-
inspectionCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7848
|
-
}
|
|
7849
|
-
export interface ImaUpdateCertificateTypeProductAndOrderInformationResultsDto {
|
|
7850
|
-
productDescription?: ImaUpdateCertificateTypeResultLine | null;
|
|
7851
|
-
materialGrade?: ImaUpdateCertificateTypeResultLine | null;
|
|
7852
|
-
customer?: ImaUpdateCertificateTypeResultLine | null;
|
|
7853
|
-
customerOrderNumber?: ImaUpdateCertificateTypeResultLine | null;
|
|
7854
|
-
dimensionsOrWeight?: ImaUpdateCertificateTypeResultLine | null;
|
|
7855
|
-
batchNumber?: ImaUpdateCertificateTypeResultLine | null;
|
|
7856
|
-
heatNumber?: ImaUpdateCertificateTypeResultLine | null;
|
|
7857
|
-
relatedStandards?: ImaUpdateCertificateTypeResultLine | null;
|
|
7858
|
-
}
|
|
7859
|
-
export interface ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
7860
|
-
usedStandards?: ImaUpdateCertificateTypeResultLine | null;
|
|
7861
|
-
}
|
|
7862
|
-
export interface ImaUpdateCertificateTypeTestResultsResultsDto {
|
|
7863
|
-
mechanicalProperties?: ImaUpdateCertificateTypeResultLine | null;
|
|
7864
|
-
chemicalAnalysis?: ImaUpdateCertificateTypeResultLine | null;
|
|
7865
|
-
impactTests?: ImaUpdateCertificateTypeResultLine | null;
|
|
7866
|
-
corrosionTests?: ImaUpdateCertificateTypeResultLine | null;
|
|
7867
|
-
ferriteContentAndMicrostructure?: ImaUpdateCertificateTypeResultLine | null;
|
|
7868
|
-
}
|
|
7869
|
-
export interface ImaUpdateCertificateTypeDocumentTypesResultsDto {
|
|
7870
|
-
heatTreatmentCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7871
|
-
ultrasonicControlCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7872
|
-
liquidPenetrantCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7873
|
-
testReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7874
|
-
dimensionalReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7875
|
-
dyePenetrantReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7876
|
-
visualReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7877
|
-
certificateOfAnalyticalAndMechanicalTests?: ImaUpdateCertificateTypeResultLine | null;
|
|
7878
|
-
certificateOfTest?: ImaUpdateCertificateTypeResultLine | null;
|
|
7879
|
-
technicalReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7880
|
-
microExaminationReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7881
|
-
radiologicalReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7882
|
-
}
|
|
7883
|
-
export interface ImaUpdateSpecificationChemistryResultsDto {
|
|
7884
|
-
carbon?: ImaUpdateSpecificationResultLineDto | null;
|
|
7885
|
-
manganese?: ImaUpdateSpecificationResultLineDto | null;
|
|
7886
|
-
silicon?: ImaUpdateSpecificationResultLineDto | null;
|
|
7887
|
-
phosphorus?: ImaUpdateSpecificationResultLineDto | null;
|
|
7888
|
-
sulfur?: ImaUpdateSpecificationResultLineDto | null;
|
|
7889
|
-
chromium?: ImaUpdateSpecificationResultLineDto | null;
|
|
7890
|
-
nickel?: ImaUpdateSpecificationResultLineDto | null;
|
|
7891
|
-
molybdenum?: ImaUpdateSpecificationResultLineDto | null;
|
|
7892
|
-
copper?: ImaUpdateSpecificationResultLineDto | null;
|
|
7893
|
-
nitrogen?: ImaUpdateSpecificationResultLineDto | null;
|
|
7894
|
-
wolfram?: ImaUpdateSpecificationResultLineDto | null;
|
|
7895
|
-
iron?: ImaUpdateSpecificationResultLineDto | null;
|
|
7896
|
-
}
|
|
7897
|
-
export interface ImaUpdateSpecificationResultLineDto {
|
|
7898
|
-
approved?: boolean;
|
|
7899
|
-
comment?: string | null;
|
|
7900
|
-
}
|
|
7901
|
-
export interface ImaUpdateSpecificationMechanicalResultsDto {
|
|
7902
|
-
yieldStrength?: ImaUpdateSpecificationResultLineDto | null;
|
|
7903
|
-
tensileStrength?: ImaUpdateSpecificationResultLineDto | null;
|
|
7904
|
-
elongation?: ImaUpdateSpecificationResultLineDto | null;
|
|
7905
|
-
reductionOfArea?: ImaUpdateSpecificationResultLineDto | null;
|
|
7906
|
-
impactEnergy?: ImaUpdateSpecificationResultLineDto | null;
|
|
7907
|
-
hardness?: ImaUpdateSpecificationResultLineDto | null;
|
|
7908
|
-
}
|
|
7909
|
-
export interface ImaUpdateSpecificationFerriteResultsDto {
|
|
7910
|
-
ferriteContent?: ImaUpdateSpecificationResultLineDto | null;
|
|
7911
|
-
}
|
|
7912
|
-
export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
|
|
7913
|
-
heatTreatmentOverrides: (ImaUpdateSpecificationResultLineDto | null)[];
|
|
7914
|
-
}
|
|
7915
|
-
export interface ImaCdfEntityReadBase {
|
|
7916
|
-
}
|
|
7917
|
-
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
7918
|
-
certificateTypeId: string;
|
|
7919
|
-
version: number;
|
|
7920
|
-
allVersions: ImaCertificateTypeVersionDto[];
|
|
7921
|
-
name: string;
|
|
7922
|
-
revision: string;
|
|
7923
|
-
status: ImaCertificateTypeStatus;
|
|
7924
|
-
description?: string | null;
|
|
7925
|
-
isStandardCertificateType: boolean;
|
|
7926
|
-
created: Date;
|
|
7927
|
-
createdBy: string;
|
|
7928
|
-
createdById: string;
|
|
7929
|
-
updatedBy?: string | null;
|
|
7930
|
-
updatedById?: string | null;
|
|
7931
|
-
updated: Date;
|
|
7932
|
-
isDeleted: boolean;
|
|
7933
|
-
requirements: ImaCertificateTypeRequirementsDto;
|
|
7934
|
-
}
|
|
7935
|
-
export interface ImaCertificateTypeVersionDto {
|
|
7936
|
-
version?: number;
|
|
7937
|
-
status?: ImaCertificateTypeStatus;
|
|
7938
|
-
}
|
|
7939
|
-
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7940
|
-
export interface ImaCertificateTypeRequirementsDto {
|
|
7941
|
-
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
7942
|
-
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
7943
|
-
thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
|
|
7944
|
-
certification: ImaCertificateTypeCertificationRequirementsDto;
|
|
7945
|
-
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
7946
|
-
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
7947
|
-
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
7948
|
-
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
7949
|
-
}
|
|
7950
|
-
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
7951
|
-
manufacturer?: boolean;
|
|
7952
|
-
address?: boolean;
|
|
7953
|
-
contact?: boolean;
|
|
7668
|
+
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
7669
|
+
manufacturer?: boolean;
|
|
7670
|
+
address?: boolean;
|
|
7671
|
+
contact?: boolean;
|
|
7954
7672
|
}
|
|
7955
7673
|
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
7956
7674
|
certifiedBy?: boolean;
|
|
@@ -8098,11 +7816,367 @@ export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
|
8098
7816
|
created: Date;
|
|
8099
7817
|
createdBy: string;
|
|
8100
7818
|
createdById: string;
|
|
8101
|
-
|
|
8102
|
-
|
|
7819
|
+
createdByName: string;
|
|
7820
|
+
updatedBy: string;
|
|
7821
|
+
updatedById: string;
|
|
7822
|
+
updatedByName: string;
|
|
8103
7823
|
updated: Date;
|
|
8104
7824
|
isDeleted: boolean;
|
|
8105
7825
|
}
|
|
7826
|
+
export interface ImaMaterialCheckDto {
|
|
7827
|
+
materialCheckId: string;
|
|
7828
|
+
originalMaterialCertificate: FileDto;
|
|
7829
|
+
generatedMaterialCertificate?: FileDto | null;
|
|
7830
|
+
customer?: string | null;
|
|
7831
|
+
project?: string | null;
|
|
7832
|
+
workOrder?: string | null;
|
|
7833
|
+
certificateTypeId?: string | null;
|
|
7834
|
+
certificateTypeVersion?: number | null;
|
|
7835
|
+
certificateTypeName?: string | null;
|
|
7836
|
+
specificationId: string;
|
|
7837
|
+
specificationVersion: number;
|
|
7838
|
+
specificationName: string;
|
|
7839
|
+
purchaseOrder?: string | null;
|
|
7840
|
+
purchaseOrderLine?: number | null;
|
|
7841
|
+
purchaseOrderVendorBatches?: string[] | null;
|
|
7842
|
+
purchaseOrderPartName?: string | null;
|
|
7843
|
+
purchaseOrderPartNumber?: string | null;
|
|
7844
|
+
purchaseOrderDrawing?: string | null;
|
|
7845
|
+
heatNumber?: string | null;
|
|
7846
|
+
status: ImaMaterialCheckStatus;
|
|
7847
|
+
created: Date;
|
|
7848
|
+
createdBy: string;
|
|
7849
|
+
createdById: string;
|
|
7850
|
+
createdByName: string;
|
|
7851
|
+
updatedBy: string;
|
|
7852
|
+
updatedById: string;
|
|
7853
|
+
updatedByName: string;
|
|
7854
|
+
isDeleted?: boolean;
|
|
7855
|
+
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
7856
|
+
specificationResults: ImaSpecificationResultsDto;
|
|
7857
|
+
}
|
|
7858
|
+
export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
|
|
7859
|
+
export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
7860
|
+
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
7861
|
+
signature: ImaCertificateTypeSignatureResultsDto;
|
|
7862
|
+
thirdParty: ImaCertificateTypeThirdPartyResultsDto;
|
|
7863
|
+
certification: ImaCertificateTypeCertificationResultsDto;
|
|
7864
|
+
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
7865
|
+
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
7866
|
+
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
7867
|
+
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
7868
|
+
}
|
|
7869
|
+
export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
|
|
7870
|
+
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
7871
|
+
address?: ImaCertificateTypeResultLine | null;
|
|
7872
|
+
contact?: ImaCertificateTypeResultLine | null;
|
|
7873
|
+
}
|
|
7874
|
+
export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
|
|
7875
|
+
found?: boolean;
|
|
7876
|
+
readValue?: string | null;
|
|
7877
|
+
override?: ImaResultLineOverrideDto | null;
|
|
7878
|
+
}
|
|
7879
|
+
export interface ImaResultLineOverrideDto extends ImaCdfEntityReadBase {
|
|
7880
|
+
approved?: boolean | null;
|
|
7881
|
+
comment?: string | null;
|
|
7882
|
+
updated: Date;
|
|
7883
|
+
updatedBy: string;
|
|
7884
|
+
updatedById: string;
|
|
7885
|
+
updatedByName?: string | null;
|
|
7886
|
+
}
|
|
7887
|
+
export interface ImaCertificateTypeSignatureResultsDto extends ImaCdfEntityReadBase {
|
|
7888
|
+
certifiedBy?: ImaCertificateTypeResultLine | null;
|
|
7889
|
+
position?: ImaCertificateTypeResultLine | null;
|
|
7890
|
+
signature?: ImaCertificateTypeResultLine | null;
|
|
7891
|
+
date?: ImaCertificateTypeResultLine | null;
|
|
7892
|
+
stamp?: ImaCertificateTypeResultLine | null;
|
|
7893
|
+
}
|
|
7894
|
+
export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityReadBase {
|
|
7895
|
+
inspectionBody?: ImaCertificateTypeResultLine | null;
|
|
7896
|
+
inspectorName?: ImaCertificateTypeResultLine | null;
|
|
7897
|
+
position?: ImaCertificateTypeResultLine | null;
|
|
7898
|
+
verificationMethod?: ImaCertificateTypeResultLine | null;
|
|
7899
|
+
signature?: ImaCertificateTypeResultLine | null;
|
|
7900
|
+
date?: ImaCertificateTypeResultLine | null;
|
|
7901
|
+
stamp?: ImaCertificateTypeResultLine | null;
|
|
7902
|
+
}
|
|
7903
|
+
export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
|
|
7904
|
+
certificateOfCompliance?: ImaCertificateTypeResultLine | null;
|
|
7905
|
+
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
7906
|
+
}
|
|
7907
|
+
export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
|
|
7908
|
+
productDescription?: ImaCertificateTypeResultLine | null;
|
|
7909
|
+
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
7910
|
+
customer?: ImaCertificateTypeResultLine | null;
|
|
7911
|
+
customerOrderNumber?: ImaCertificateTypeResultLine | null;
|
|
7912
|
+
dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
|
|
7913
|
+
batchNumber?: ImaCertificateTypeResultLine | null;
|
|
7914
|
+
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
7915
|
+
relatedStandards?: ImaCertificateTypeResultLine | null;
|
|
7916
|
+
}
|
|
7917
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
|
|
7918
|
+
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
7919
|
+
}
|
|
7920
|
+
export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
|
|
7921
|
+
mechanicalProperties?: ImaCertificateTypeResultLine | null;
|
|
7922
|
+
chemicalAnalysis?: ImaCertificateTypeResultLine | null;
|
|
7923
|
+
impactTests?: ImaCertificateTypeResultLine | null;
|
|
7924
|
+
corrosionTests?: ImaCertificateTypeResultLine | null;
|
|
7925
|
+
ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
|
|
7926
|
+
}
|
|
7927
|
+
export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
|
|
7928
|
+
heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
|
|
7929
|
+
ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
|
|
7930
|
+
liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
|
|
7931
|
+
testReport?: ImaCertificateTypeResultLine | null;
|
|
7932
|
+
dimensionalReport?: ImaCertificateTypeResultLine | null;
|
|
7933
|
+
dyePenetrantReport?: ImaCertificateTypeResultLine | null;
|
|
7934
|
+
visualReport?: ImaCertificateTypeResultLine | null;
|
|
7935
|
+
certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
|
|
7936
|
+
certificateOfTest?: ImaCertificateTypeResultLine | null;
|
|
7937
|
+
technicalReport?: ImaCertificateTypeResultLine | null;
|
|
7938
|
+
microExaminationReport?: ImaCertificateTypeResultLine | null;
|
|
7939
|
+
radiologicalReport?: ImaCertificateTypeResultLine | null;
|
|
7940
|
+
}
|
|
7941
|
+
export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
7942
|
+
chemistry: ImaSpecificationChemistryResultsDto;
|
|
7943
|
+
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
7944
|
+
ferrite: ImaSpecificationFerriteResultsDto;
|
|
7945
|
+
heatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
7946
|
+
}
|
|
7947
|
+
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
7948
|
+
carbon?: ImaSpecificationResultLineDto | null;
|
|
7949
|
+
manganese?: ImaSpecificationResultLineDto | null;
|
|
7950
|
+
silicon?: ImaSpecificationResultLineDto | null;
|
|
7951
|
+
phosphorus?: ImaSpecificationResultLineDto | null;
|
|
7952
|
+
sulfur?: ImaSpecificationResultLineDto | null;
|
|
7953
|
+
chromium?: ImaSpecificationResultLineDto | null;
|
|
7954
|
+
nickel?: ImaSpecificationResultLineDto | null;
|
|
7955
|
+
molybdenum?: ImaSpecificationResultLineDto | null;
|
|
7956
|
+
copper?: ImaSpecificationResultLineDto | null;
|
|
7957
|
+
nitrogen?: ImaSpecificationResultLineDto | null;
|
|
7958
|
+
wolfram?: ImaSpecificationResultLineDto | null;
|
|
7959
|
+
iron?: ImaSpecificationResultLineDto | null;
|
|
7960
|
+
}
|
|
7961
|
+
export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
|
|
7962
|
+
specificationMin?: number | null;
|
|
7963
|
+
specificationMax?: number | null;
|
|
7964
|
+
readValue?: string | null;
|
|
7965
|
+
status: ImaSpecificationResultLineStatus;
|
|
7966
|
+
override?: ImaResultLineOverrideDto | null;
|
|
7967
|
+
}
|
|
7968
|
+
export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
7969
|
+
export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBase {
|
|
7970
|
+
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
7971
|
+
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
7972
|
+
elongation?: ImaSpecificationResultLineDto | null;
|
|
7973
|
+
reductionOfArea?: ImaSpecificationResultLineDto | null;
|
|
7974
|
+
impactEnergy?: ImaSpecificationResultLineDto | null;
|
|
7975
|
+
hardness?: ImaSpecificationResultLineDto | null;
|
|
7976
|
+
}
|
|
7977
|
+
export interface ImaSpecificationFerriteResultsDto extends ImaCdfEntityReadBase {
|
|
7978
|
+
ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
|
|
7979
|
+
}
|
|
7980
|
+
export interface ImaSpecificationFerriteResultLineDto {
|
|
7981
|
+
specificationOperator?: string | null;
|
|
7982
|
+
specificationValue1?: string | null;
|
|
7983
|
+
specificationValue2?: string | null;
|
|
7984
|
+
specificationSymbol?: string | null;
|
|
7985
|
+
readValue?: string | null;
|
|
7986
|
+
status: ImaSpecificationResultLineStatus;
|
|
7987
|
+
override?: ImaResultLineOverrideDto | null;
|
|
7988
|
+
measurementMethod?: string | null;
|
|
7989
|
+
}
|
|
7990
|
+
export interface ImaSpecificationHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
7991
|
+
step: number;
|
|
7992
|
+
cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
|
|
7993
|
+
heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
|
|
7994
|
+
}
|
|
7995
|
+
export interface ImaSpecificationHeatTreatmentCoolingResult extends ImaCdfEntityReadBase {
|
|
7996
|
+
coolingMethods?: string[] | null;
|
|
7997
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
7998
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
7999
|
+
}
|
|
8000
|
+
export interface ImaSpecificationHeatTreatmentHeatingResult extends ImaCdfEntityReadBase {
|
|
8001
|
+
heatingMethod?: string | null;
|
|
8002
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
8003
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
8004
|
+
}
|
|
8005
|
+
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8006
|
+
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8007
|
+
chemistrySpecificationSection?: ImaOverrideSpecificationChemistryResultsDto | null;
|
|
8008
|
+
mechanicalSpecificationSection?: ImaOverrideSpecificationMechanicalResultsDto | null;
|
|
8009
|
+
ferriteSpecificationSection?: ImaOverrideSpecificationFerriteResultsDto | null;
|
|
8010
|
+
heatSpecificationSection?: ImaOverrideSpecificationHeatTreatmentResultsDto | null;
|
|
8011
|
+
}
|
|
8012
|
+
export interface ImaOverrideCertificateTypeResultsDto {
|
|
8013
|
+
manufacturer?: ImaOverrideCertificateTypeManufacturerResultsDto | null;
|
|
8014
|
+
signature?: ImaOverrideCertificateTypeSignatureResultsDto | null;
|
|
8015
|
+
thirdParty?: ImaOverrideCertificateTypeThirdPartyResultsDto | null;
|
|
8016
|
+
certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
|
|
8017
|
+
productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
|
|
8018
|
+
testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
|
|
8019
|
+
testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
|
|
8020
|
+
documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
|
|
8021
|
+
}
|
|
8022
|
+
export interface ImaOverrideCertificateTypeManufacturerResultsDto {
|
|
8023
|
+
manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8024
|
+
address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8025
|
+
contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8026
|
+
}
|
|
8027
|
+
export interface ImaOverrideUpdateMaterialCheckResultLineDto {
|
|
8028
|
+
approved?: boolean | null;
|
|
8029
|
+
comment?: string | null;
|
|
8030
|
+
}
|
|
8031
|
+
export interface ImaOverrideCertificateTypeSignatureResultsDto {
|
|
8032
|
+
certifiedBy?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8033
|
+
position?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8034
|
+
signature?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8035
|
+
date?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8036
|
+
stamp?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8037
|
+
}
|
|
8038
|
+
export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
|
|
8039
|
+
inspectionBody?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8040
|
+
inspectorName?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8041
|
+
position?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8042
|
+
verificationMethod?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8043
|
+
signature?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8044
|
+
date?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8045
|
+
stamp?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8046
|
+
}
|
|
8047
|
+
export interface ImaOverrideCertificateTypeCertificationResultsDto {
|
|
8048
|
+
certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8049
|
+
inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8050
|
+
}
|
|
8051
|
+
export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto {
|
|
8052
|
+
productDescription?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8053
|
+
materialGrade?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8054
|
+
customer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8055
|
+
customerOrderNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8056
|
+
dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8057
|
+
batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8058
|
+
heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8059
|
+
relatedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8060
|
+
}
|
|
8061
|
+
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8062
|
+
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8063
|
+
}
|
|
8064
|
+
export interface ImaOverrideCertificateTypeTestResultsResultsDto {
|
|
8065
|
+
mechanicalProperties?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8066
|
+
chemicalAnalysis?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8067
|
+
impactTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8068
|
+
corrosionTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8069
|
+
ferriteContentAndMicrostructure?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8070
|
+
}
|
|
8071
|
+
export interface ImaOverrideCertificateTypeDocumentTypesResultsDto {
|
|
8072
|
+
heatTreatmentCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8073
|
+
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8074
|
+
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8075
|
+
testReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8076
|
+
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8077
|
+
dyePenetrantReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8078
|
+
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8079
|
+
certificateOfAnalyticalAndMechanicalTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8080
|
+
certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8081
|
+
technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8082
|
+
microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8083
|
+
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8084
|
+
}
|
|
8085
|
+
export interface ImaOverrideSpecificationChemistryResultsDto {
|
|
8086
|
+
carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8087
|
+
manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8088
|
+
silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8089
|
+
phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8090
|
+
sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8091
|
+
chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8092
|
+
nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8093
|
+
molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8094
|
+
copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8095
|
+
nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8096
|
+
wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8097
|
+
iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8098
|
+
}
|
|
8099
|
+
export interface ImaOverrideSpecificationMechanicalResultsDto {
|
|
8100
|
+
yieldStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8101
|
+
tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8102
|
+
elongation?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8103
|
+
reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8104
|
+
impactEnergy?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8105
|
+
hardness?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8106
|
+
}
|
|
8107
|
+
export interface ImaOverrideSpecificationFerriteResultsDto {
|
|
8108
|
+
ferriteContent?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8109
|
+
}
|
|
8110
|
+
export interface ImaOverrideSpecificationHeatTreatmentResultsDto {
|
|
8111
|
+
heatTreatmentOverrides?: ImaOverrideUpdateMaterialCheckResultLineDto[] | null;
|
|
8112
|
+
}
|
|
8113
|
+
export interface PagedResultOfImaMaterialCheckLiteDto {
|
|
8114
|
+
results: ImaMaterialCheckLiteDto[];
|
|
8115
|
+
continuationToken?: string | null;
|
|
8116
|
+
}
|
|
8117
|
+
export interface ImaMaterialCheckLiteDto {
|
|
8118
|
+
materialCheckId: string;
|
|
8119
|
+
originalMaterialCertificate: FileDto;
|
|
8120
|
+
generatedMaterialCertificate?: FileDto | null;
|
|
8121
|
+
customer?: string | null;
|
|
8122
|
+
project?: string | null;
|
|
8123
|
+
workOrder?: string | null;
|
|
8124
|
+
certificateTypeId?: string | null;
|
|
8125
|
+
certificateTypeVersion?: number | null;
|
|
8126
|
+
certificateTypeName?: string | null;
|
|
8127
|
+
specificationId: string;
|
|
8128
|
+
specificationVersion: number;
|
|
8129
|
+
specificationName: string;
|
|
8130
|
+
purchaseOrder?: string | null;
|
|
8131
|
+
purchaseOrderLine?: number | null;
|
|
8132
|
+
purchaseOrderVendorBatches?: string[] | null;
|
|
8133
|
+
purchaseOrderPartName?: string | null;
|
|
8134
|
+
purchaseOrderPartNumber?: string | null;
|
|
8135
|
+
purchaseOrderDrawing?: string | null;
|
|
8136
|
+
heatNumber?: string | null;
|
|
8137
|
+
status: ImaMaterialCheckStatus;
|
|
8138
|
+
created: Date;
|
|
8139
|
+
createdBy: string;
|
|
8140
|
+
createdById: string;
|
|
8141
|
+
createdByName: string;
|
|
8142
|
+
updatedBy: string;
|
|
8143
|
+
updatedById: string;
|
|
8144
|
+
updatedByName: string;
|
|
8145
|
+
isDeleted?: boolean;
|
|
8146
|
+
}
|
|
8147
|
+
export interface ImaMaterialChecksPageRequestDto {
|
|
8148
|
+
pageSize?: number | null;
|
|
8149
|
+
orderBy?: ImaMaterialChecksOrderByColumn | null;
|
|
8150
|
+
searchTerm?: string | null;
|
|
8151
|
+
originalReportFilter?: string | null;
|
|
8152
|
+
generatedReportFilter?: string | null;
|
|
8153
|
+
customerFilter?: string | null;
|
|
8154
|
+
projectFilter?: string | null;
|
|
8155
|
+
purchaseOrderFilter?: string | null;
|
|
8156
|
+
workOrderFilter?: string | null;
|
|
8157
|
+
certificateTypeFilter?: string | null;
|
|
8158
|
+
lineFilter?: string | null;
|
|
8159
|
+
itemFilter?: string | null;
|
|
8160
|
+
heatFilter?: string | null;
|
|
8161
|
+
lotFilter?: string | null;
|
|
8162
|
+
dateFromFilter?: Date | null;
|
|
8163
|
+
dateToFilter?: Date | null;
|
|
8164
|
+
statusFilter?: ImaMaterialCheckStatus[] | null;
|
|
8165
|
+
continuationToken?: string | null;
|
|
8166
|
+
}
|
|
8167
|
+
export type ImaMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
|
|
8168
|
+
export interface ProcessMaterialCertificate {
|
|
8169
|
+
files: UploadFileCdfDto[];
|
|
8170
|
+
specificationId: string;
|
|
8171
|
+
specificationVersion: number;
|
|
8172
|
+
certificateTypeId?: string | null;
|
|
8173
|
+
certificateTypeVersion?: number | null;
|
|
8174
|
+
purchaseOrder?: string | null;
|
|
8175
|
+
purchaseOrderLine?: number | null;
|
|
8176
|
+
}
|
|
8177
|
+
export interface UploadFileCdfDto {
|
|
8178
|
+
id: number;
|
|
8179
|
+
}
|
|
8106
8180
|
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
8107
8181
|
purchaseOrders: string[];
|
|
8108
8182
|
}
|
|
@@ -8156,8 +8230,10 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8156
8230
|
created: Date;
|
|
8157
8231
|
createdBy: string;
|
|
8158
8232
|
createdById: string;
|
|
8233
|
+
createdByName: string;
|
|
8159
8234
|
updatedBy: string;
|
|
8160
8235
|
updatedById: string;
|
|
8236
|
+
updatedByName: string;
|
|
8161
8237
|
updated: Date;
|
|
8162
8238
|
isDeleted: boolean;
|
|
8163
8239
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
@@ -8185,12 +8261,9 @@ export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8185
8261
|
iron?: ImaSpecificationLineDto | null;
|
|
8186
8262
|
}
|
|
8187
8263
|
export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
8188
|
-
|
|
8189
|
-
|
|
8190
|
-
value2?: number | null;
|
|
8191
|
-
unit: ImaSpecificationUnit;
|
|
8264
|
+
min?: number | null;
|
|
8265
|
+
max?: number | null;
|
|
8192
8266
|
}
|
|
8193
|
-
export type ImaSpecificationOperator = "Min" | "Max" | "Between" | "NotSet";
|
|
8194
8267
|
export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
8195
8268
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8196
8269
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
@@ -8220,22 +8293,22 @@ export interface ImaHeatTreatmentSpecificationHeatingDto extends ImaCdfEntityRea
|
|
|
8220
8293
|
}
|
|
8221
8294
|
export type ImaHeatTreatmentHeatingMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
|
|
8222
8295
|
export interface ImaCreateSpecificationRequestDto {
|
|
8223
|
-
|
|
8224
|
-
|
|
8296
|
+
name: string;
|
|
8297
|
+
number: string;
|
|
8225
8298
|
revision: string;
|
|
8226
8299
|
date: Date;
|
|
8227
8300
|
specificationFile?: UploadFileDto | null;
|
|
8228
8301
|
}
|
|
8229
8302
|
export interface ImaCopySpecificationRequestDto {
|
|
8230
|
-
|
|
8231
|
-
|
|
8303
|
+
name: string;
|
|
8304
|
+
number: string;
|
|
8232
8305
|
revision: string;
|
|
8233
8306
|
date: Date;
|
|
8234
8307
|
}
|
|
8235
8308
|
export interface ImaUpdateSpecificationDto {
|
|
8236
8309
|
name?: string | null;
|
|
8237
8310
|
number?: string | null;
|
|
8238
|
-
status?:
|
|
8311
|
+
status?: ImaSpecificationStatus | null;
|
|
8239
8312
|
summary?: string | null;
|
|
8240
8313
|
relatedStandards?: string[] | null;
|
|
8241
8314
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
@@ -8243,7 +8316,6 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8243
8316
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8244
8317
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8245
8318
|
}
|
|
8246
|
-
export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
8247
8319
|
export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
|
|
8248
8320
|
specificationId: string;
|
|
8249
8321
|
version: number;
|
|
@@ -8257,8 +8329,10 @@ export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
|
|
|
8257
8329
|
created: Date;
|
|
8258
8330
|
createdBy: string;
|
|
8259
8331
|
createdById: string;
|
|
8332
|
+
createdByName: string;
|
|
8260
8333
|
updatedBy: string;
|
|
8261
8334
|
updatedById: string;
|
|
8335
|
+
updatedByName: string;
|
|
8262
8336
|
isDeleted: boolean;
|
|
8263
8337
|
}
|
|
8264
8338
|
export interface MeasurementFormSchemaDto {
|
|
@@ -8809,6 +8883,7 @@ export interface ListMeasurementFormsRequest {
|
|
|
8809
8883
|
pageSize?: number | null;
|
|
8810
8884
|
search?: string | null;
|
|
8811
8885
|
continuationToken?: string | null;
|
|
8886
|
+
tenantId?: string | null;
|
|
8812
8887
|
inactive?: boolean | null;
|
|
8813
8888
|
includeInactiveSupplierAccess?: boolean | null;
|
|
8814
8889
|
}
|
|
@@ -9004,6 +9079,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
|
|
|
9004
9079
|
externalOrderNumber?: string | null;
|
|
9005
9080
|
}
|
|
9006
9081
|
export interface ExportDimensionReportV2Request {
|
|
9082
|
+
tenantId?: string | null;
|
|
9007
9083
|
type: DimensionReportType;
|
|
9008
9084
|
extras?: DimensionReportExtras | null;
|
|
9009
9085
|
specificSerialNumbers?: string[] | null;
|
|
@@ -9344,90 +9420,6 @@ export interface SetDiscussionLastReadRequest {
|
|
|
9344
9420
|
operationId?: string | null;
|
|
9345
9421
|
resourceId?: string | null;
|
|
9346
9422
|
}
|
|
9347
|
-
export interface CompanyUserDto {
|
|
9348
|
-
companyId: string;
|
|
9349
|
-
userObjectId: string;
|
|
9350
|
-
username?: string | null;
|
|
9351
|
-
name?: string | null;
|
|
9352
|
-
roles: string[];
|
|
9353
|
-
}
|
|
9354
|
-
export interface CreateCompanyUser {
|
|
9355
|
-
username: string;
|
|
9356
|
-
name: string;
|
|
9357
|
-
roles: string[];
|
|
9358
|
-
companyId?: string | null;
|
|
9359
|
-
}
|
|
9360
|
-
export interface UpdateCompanyUserRequest {
|
|
9361
|
-
roles: string[];
|
|
9362
|
-
companyId?: string | null;
|
|
9363
|
-
}
|
|
9364
|
-
export interface ExternalRoleDto {
|
|
9365
|
-
id: string;
|
|
9366
|
-
name: string;
|
|
9367
|
-
}
|
|
9368
|
-
export interface CompanyCustomerDto {
|
|
9369
|
-
customerTenantId?: string | null;
|
|
9370
|
-
customerAzureAdTenantId?: string | null;
|
|
9371
|
-
customerName?: string | null;
|
|
9372
|
-
supplierId?: string | null;
|
|
9373
|
-
supplierName?: string | null;
|
|
9374
|
-
customerIgnosPortalPrefix?: string | null;
|
|
9375
|
-
}
|
|
9376
|
-
export interface CompanyDto {
|
|
9377
|
-
id?: string;
|
|
9378
|
-
name?: string;
|
|
9379
|
-
organizationNumber?: string | null;
|
|
9380
|
-
country?: string;
|
|
9381
|
-
tenantId?: string | null;
|
|
9382
|
-
}
|
|
9383
|
-
export interface SupplierInviteDto {
|
|
9384
|
-
id: string;
|
|
9385
|
-
supplierId: string;
|
|
9386
|
-
supplierName?: string | null;
|
|
9387
|
-
customerName?: string | null;
|
|
9388
|
-
userId: string;
|
|
9389
|
-
userName?: string | null;
|
|
9390
|
-
deadline: Date;
|
|
9391
|
-
acceptedTimestamp?: Date | null;
|
|
9392
|
-
createdTime: Date;
|
|
9393
|
-
createdBy: string;
|
|
9394
|
-
}
|
|
9395
|
-
export interface AcceptSupplierInviteNewCompany {
|
|
9396
|
-
companyName?: string;
|
|
9397
|
-
organizationNumber?: string;
|
|
9398
|
-
threeLetterIsoCountry?: string;
|
|
9399
|
-
}
|
|
9400
|
-
export interface AcceptSupplierInviteExistingCompany {
|
|
9401
|
-
companyId?: string;
|
|
9402
|
-
}
|
|
9403
|
-
export interface AcceptSupplierInviteCustomer {
|
|
9404
|
-
tenantId?: string;
|
|
9405
|
-
organizationNumber?: string;
|
|
9406
|
-
}
|
|
9407
|
-
export interface TenantWithSupplierDto {
|
|
9408
|
-
tenantId: string;
|
|
9409
|
-
customerName: string;
|
|
9410
|
-
supplierTenantEntraId: string;
|
|
9411
|
-
}
|
|
9412
|
-
export interface CreateSupplierInviteRequest {
|
|
9413
|
-
supplierId: string;
|
|
9414
|
-
supplierName?: string | null;
|
|
9415
|
-
username: string;
|
|
9416
|
-
invitedName: string;
|
|
9417
|
-
deadline: Date;
|
|
9418
|
-
utcOffset?: number;
|
|
9419
|
-
}
|
|
9420
|
-
export interface ExternalSupplierDto {
|
|
9421
|
-
id: string;
|
|
9422
|
-
name: string;
|
|
9423
|
-
companyId: string;
|
|
9424
|
-
active: boolean;
|
|
9425
|
-
}
|
|
9426
|
-
export interface CreateSupplierMapping {
|
|
9427
|
-
companyId: string;
|
|
9428
|
-
existingSupplierId: string;
|
|
9429
|
-
newSupplierId: string;
|
|
9430
|
-
}
|
|
9431
9423
|
export type FeatureCollectionType = "FeatureCollection";
|
|
9432
9424
|
export interface Features {
|
|
9433
9425
|
type: FeaturesType;
|