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