@ignos/api-client 20260417.110.1-alpha → 20260417.112.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 +684 -692
- package/lib/ignosportal-api.js +4269 -4182
- package/package.json +1 -1
- package/src/ignosportal-api.ts +6375 -6300
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -124,6 +124,7 @@ export declare class CustomersClient extends AuthorizedApiBase implements ICusto
|
|
|
124
124
|
}
|
|
125
125
|
export interface IGuestsClient {
|
|
126
126
|
getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
127
|
+
getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
127
128
|
}
|
|
128
129
|
export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
|
|
129
130
|
private http;
|
|
@@ -133,6 +134,8 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
|
|
|
133
134
|
});
|
|
134
135
|
getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
135
136
|
protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
137
|
+
getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
138
|
+
protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
136
139
|
}
|
|
137
140
|
export interface IPresentationClient {
|
|
138
141
|
getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
|
|
@@ -1491,99 +1494,6 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
|
|
|
1491
1494
|
listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
|
|
1492
1495
|
protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
|
|
1493
1496
|
}
|
|
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
|
-
}
|
|
1587
1497
|
export interface ICncFileTransferClient {
|
|
1588
1498
|
startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
|
|
1589
1499
|
startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
|
|
@@ -2579,6 +2489,30 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
|
|
|
2579
2489
|
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2580
2490
|
protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
|
|
2581
2491
|
}
|
|
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
|
+
}
|
|
2582
2516
|
export interface IInspectMatchCertificateTypesAdminClient {
|
|
2583
2517
|
createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2584
2518
|
copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
@@ -2621,30 +2555,6 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
|
|
|
2621
2555
|
listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2622
2556
|
protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2623
2557
|
}
|
|
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
|
-
}
|
|
2648
2558
|
export interface IInspectMatchPurchaseOrderClient {
|
|
2649
2559
|
searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto>;
|
|
2650
2560
|
getPurchaseOrderLines(purchaseOrder: string): Promise<PurchaseOrderMaterialLinesDto>;
|
|
@@ -2955,22 +2865,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
|
|
|
2955
2865
|
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
2956
2866
|
}
|
|
2957
2867
|
export interface IMeasurementFormsInstancesClient {
|
|
2958
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined,
|
|
2868
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2959
2869
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2960
|
-
getMeasurementFormInstance(id: string
|
|
2870
|
+
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2961
2871
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2962
|
-
completeMeasurementFormInstance(id: string
|
|
2963
|
-
completeMeasurementFormInstanceV2(id: string
|
|
2964
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined
|
|
2965
|
-
getWorkorderMeasurementFormProgress(id: string
|
|
2966
|
-
getAuditLog(id: string,
|
|
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[]>;
|
|
2967
2877
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2968
|
-
saveValue(id: string,
|
|
2969
|
-
saveTool(id: string,
|
|
2970
|
-
saveComment(id: string,
|
|
2971
|
-
batchInsertValues(id: string,
|
|
2972
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string,
|
|
2973
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string,
|
|
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>;
|
|
2974
2884
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
2975
2885
|
upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
|
|
2976
2886
|
removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
|
|
@@ -2986,37 +2896,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2986
2896
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2987
2897
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2988
2898
|
});
|
|
2989
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined,
|
|
2899
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2990
2900
|
protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2991
2901
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2992
2902
|
protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2993
|
-
getMeasurementFormInstance(id: string
|
|
2903
|
+
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2994
2904
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2995
2905
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2996
2906
|
protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2997
|
-
completeMeasurementFormInstance(id: string
|
|
2907
|
+
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2998
2908
|
protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2999
|
-
completeMeasurementFormInstanceV2(id: string
|
|
2909
|
+
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3000
2910
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3001
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined
|
|
2911
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3002
2912
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3003
|
-
getWorkorderMeasurementFormProgress(id: string
|
|
2913
|
+
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
3004
2914
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
3005
|
-
getAuditLog(id: string,
|
|
2915
|
+
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3006
2916
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3007
2917
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
3008
2918
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
3009
|
-
saveValue(id: string,
|
|
2919
|
+
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3010
2920
|
protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
|
|
3011
|
-
saveTool(id: string,
|
|
2921
|
+
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3012
2922
|
protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
|
|
3013
|
-
saveComment(id: string,
|
|
2923
|
+
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
3014
2924
|
protected processSaveComment(response: Response): Promise<void>;
|
|
3015
|
-
batchInsertValues(id: string,
|
|
2925
|
+
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3016
2926
|
protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
|
|
3017
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string,
|
|
2927
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3018
2928
|
protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
|
|
3019
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string,
|
|
2929
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3020
2930
|
protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
|
|
3021
2931
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
3022
2932
|
protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
@@ -3041,7 +2951,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
3041
2951
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
3042
2952
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3043
2953
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3044
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string
|
|
2954
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3045
2955
|
}
|
|
3046
2956
|
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
3047
2957
|
private http;
|
|
@@ -3065,7 +2975,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
|
|
|
3065
2975
|
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3066
2976
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3067
2977
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3068
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string
|
|
2978
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3069
2979
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
3070
2980
|
}
|
|
3071
2981
|
export interface ICompaniesClient {
|
|
@@ -3405,6 +3315,105 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3405
3315
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3406
3316
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3407
3317
|
}
|
|
3318
|
+
export interface IExternalAccessClient {
|
|
3319
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3320
|
+
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3321
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3322
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3323
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3324
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3325
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3326
|
+
}
|
|
3327
|
+
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3328
|
+
private http;
|
|
3329
|
+
private baseUrl;
|
|
3330
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3331
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3332
|
+
});
|
|
3333
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3334
|
+
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
3335
|
+
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3336
|
+
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3337
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3338
|
+
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3339
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3340
|
+
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
3341
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3342
|
+
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
3343
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3344
|
+
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
3345
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3346
|
+
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
3347
|
+
}
|
|
3348
|
+
export interface IExternalClient {
|
|
3349
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3350
|
+
getCompany(id: string): Promise<CompanyDto>;
|
|
3351
|
+
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3352
|
+
acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
|
|
3353
|
+
acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
|
|
3354
|
+
acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
|
|
3355
|
+
}
|
|
3356
|
+
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3357
|
+
private http;
|
|
3358
|
+
private baseUrl;
|
|
3359
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3360
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3361
|
+
});
|
|
3362
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3363
|
+
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3364
|
+
getCompany(id: string): Promise<CompanyDto>;
|
|
3365
|
+
protected processGetCompany(response: Response): Promise<CompanyDto>;
|
|
3366
|
+
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3367
|
+
protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3368
|
+
acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
|
|
3369
|
+
protected processAcceptSupplierInviteNewCompany(response: Response): Promise<SupplierInviteDto>;
|
|
3370
|
+
acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
|
|
3371
|
+
protected processAcceptSupplierInviteExistingCompany(response: Response): Promise<SupplierInviteDto>;
|
|
3372
|
+
acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
|
|
3373
|
+
protected processAcceptSupplierInviteCustomer(response: Response): Promise<SupplierInviteDto>;
|
|
3374
|
+
}
|
|
3375
|
+
export interface ISuppliersClient {
|
|
3376
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3377
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3378
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
3379
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3380
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3381
|
+
/**
|
|
3382
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3383
|
+
*/
|
|
3384
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3385
|
+
/**
|
|
3386
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3387
|
+
*/
|
|
3388
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3389
|
+
}
|
|
3390
|
+
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3391
|
+
private http;
|
|
3392
|
+
private baseUrl;
|
|
3393
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3394
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3395
|
+
});
|
|
3396
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3397
|
+
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3398
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3399
|
+
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3400
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
3401
|
+
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
3402
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3403
|
+
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3404
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3405
|
+
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3406
|
+
/**
|
|
3407
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3408
|
+
*/
|
|
3409
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3410
|
+
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3411
|
+
/**
|
|
3412
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3413
|
+
*/
|
|
3414
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3415
|
+
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3416
|
+
}
|
|
3408
3417
|
export interface AzureRegionDto {
|
|
3409
3418
|
displayName: string;
|
|
3410
3419
|
name: string;
|
|
@@ -3708,6 +3717,9 @@ export interface UserDetailsDto {
|
|
|
3708
3717
|
isExternalUser?: boolean;
|
|
3709
3718
|
isBetaTester?: boolean | null;
|
|
3710
3719
|
hasAccessToIgnos?: boolean;
|
|
3720
|
+
isInvitedUser?: boolean;
|
|
3721
|
+
isSupplier?: boolean;
|
|
3722
|
+
companyId?: string | null;
|
|
3711
3723
|
}
|
|
3712
3724
|
export interface UserDto {
|
|
3713
3725
|
id?: string | null;
|
|
@@ -5583,133 +5595,42 @@ export interface DocumentGeneratorTypeDto {
|
|
|
5583
5595
|
key: string;
|
|
5584
5596
|
description: string;
|
|
5585
5597
|
}
|
|
5586
|
-
export interface
|
|
5587
|
-
|
|
5588
|
-
|
|
5589
|
-
|
|
5590
|
-
|
|
5598
|
+
export interface CncMachineTransferDto {
|
|
5599
|
+
id: string;
|
|
5600
|
+
cncMachineOperationId?: string | null;
|
|
5601
|
+
cncMachineId: string;
|
|
5602
|
+
cncMachineName: string;
|
|
5603
|
+
direction: FileTransferDirection;
|
|
5604
|
+
files: string[];
|
|
5605
|
+
status: FileTransferStatus;
|
|
5606
|
+
statusMessage?: string | null;
|
|
5607
|
+
timestamp: Date;
|
|
5591
5608
|
}
|
|
5592
|
-
export
|
|
5593
|
-
|
|
5594
|
-
|
|
5595
|
-
|
|
5596
|
-
companyId?: string | null;
|
|
5609
|
+
export type FileTransferDirection = "FromCloud" | "ToCloud";
|
|
5610
|
+
export type FileTransferStatus = "InProgress" | "Success" | "Failed";
|
|
5611
|
+
export interface TransferToMachineRequest {
|
|
5612
|
+
programs?: ProgramSelectionRequest[] | null;
|
|
5597
5613
|
}
|
|
5598
|
-
export interface
|
|
5599
|
-
|
|
5600
|
-
|
|
5601
|
-
companyId?: string | null;
|
|
5614
|
+
export interface ProgramSelectionRequest {
|
|
5615
|
+
id?: string;
|
|
5616
|
+
version?: number;
|
|
5602
5617
|
}
|
|
5603
|
-
export interface
|
|
5604
|
-
|
|
5605
|
-
|
|
5618
|
+
export interface UploadCamFileDto {
|
|
5619
|
+
uploadUrl: string;
|
|
5620
|
+
path: string;
|
|
5621
|
+
url: string;
|
|
5606
5622
|
}
|
|
5607
|
-
export interface
|
|
5608
|
-
|
|
5609
|
-
customerAzureAdTenantId?: string | null;
|
|
5610
|
-
customerName?: string | null;
|
|
5611
|
-
supplierId?: string | null;
|
|
5612
|
-
supplierName?: string | null;
|
|
5623
|
+
export interface UploadCamFileRequest {
|
|
5624
|
+
filename: string;
|
|
5613
5625
|
}
|
|
5614
|
-
export interface
|
|
5615
|
-
|
|
5616
|
-
|
|
5617
|
-
id: string;
|
|
5618
|
-
supplierId: string;
|
|
5619
|
-
supplierName: string;
|
|
5620
|
-
username: string;
|
|
5621
|
-
deadline: Date;
|
|
5622
|
-
createdTime: Date;
|
|
5623
|
-
createdBy: string;
|
|
5626
|
+
export interface CamTransferDto {
|
|
5627
|
+
path: string;
|
|
5628
|
+
content: string;
|
|
5624
5629
|
}
|
|
5625
|
-
export interface
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
|
|
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;
|
|
5630
|
+
export interface StartCamTransferToMachine {
|
|
5631
|
+
path: string;
|
|
5632
|
+
content: string;
|
|
5633
|
+
cncMachineId: string;
|
|
5713
5634
|
}
|
|
5714
5635
|
export interface StartCamTransferToMachineFromTempUpload {
|
|
5715
5636
|
uploadKey: string;
|
|
@@ -7635,337 +7556,137 @@ export interface WeldingIotConfigDto {
|
|
|
7635
7556
|
}
|
|
7636
7557
|
export interface CreateWeldingIotConfig {
|
|
7637
7558
|
}
|
|
7638
|
-
export interface
|
|
7559
|
+
export interface ImaMaterialChecksPageDto {
|
|
7560
|
+
items: ImaMaterialCheckLiteDto[];
|
|
7561
|
+
continuationToken?: string | null;
|
|
7639
7562
|
}
|
|
7640
|
-
export interface
|
|
7641
|
-
|
|
7642
|
-
|
|
7643
|
-
|
|
7644
|
-
|
|
7645
|
-
|
|
7646
|
-
|
|
7647
|
-
|
|
7648
|
-
|
|
7563
|
+
export interface ImaMaterialCheckLiteDto {
|
|
7564
|
+
materialCheckId: string;
|
|
7565
|
+
originalMaterialCertificate: FileDto;
|
|
7566
|
+
generatedMaterialCertificate?: FileDto | null;
|
|
7567
|
+
customer?: string | null;
|
|
7568
|
+
project?: string | null;
|
|
7569
|
+
workOrder?: string | null;
|
|
7570
|
+
certificateTypeId?: string | null;
|
|
7571
|
+
certificateTypeVersion?: number | null;
|
|
7572
|
+
certificateTypeName?: string | null;
|
|
7573
|
+
specificationId: string;
|
|
7574
|
+
specificationVersion: number;
|
|
7575
|
+
specificationName: string;
|
|
7576
|
+
purchaseOrder?: string | null;
|
|
7577
|
+
purchaseOrderLine?: number | null;
|
|
7578
|
+
purchaseOrderItem?: string | null;
|
|
7579
|
+
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
7580
|
+
purchaseOrderLot?: string | null;
|
|
7581
|
+
status: ImaMaterialCheckStatus;
|
|
7649
7582
|
created: Date;
|
|
7650
7583
|
createdBy: string;
|
|
7651
7584
|
createdById: string;
|
|
7652
|
-
|
|
7653
|
-
|
|
7654
|
-
|
|
7655
|
-
updatedByName: string;
|
|
7656
|
-
updated: Date;
|
|
7657
|
-
isDeleted: boolean;
|
|
7658
|
-
requirements: ImaCertificateTypeRequirementsDto;
|
|
7659
|
-
}
|
|
7660
|
-
export interface ImaCertificateTypeVersionDto {
|
|
7661
|
-
version?: number;
|
|
7662
|
-
status?: ImaCertificateTypeStatus;
|
|
7663
|
-
}
|
|
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;
|
|
7585
|
+
updatedBy?: string | null;
|
|
7586
|
+
updatedById?: string | null;
|
|
7587
|
+
isDeleted?: boolean;
|
|
7674
7588
|
}
|
|
7675
|
-
export
|
|
7676
|
-
|
|
7677
|
-
|
|
7678
|
-
|
|
7589
|
+
export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
|
|
7590
|
+
export interface ImaMaterialChecksPageRequestDto {
|
|
7591
|
+
pageSize?: number | null;
|
|
7592
|
+
orderBy?: ImaMaterialChecksOrderByColumn | null;
|
|
7593
|
+
searchTerm?: string | null;
|
|
7594
|
+
originalReportFilter?: string | null;
|
|
7595
|
+
generatedReportFilter?: string | null;
|
|
7596
|
+
customerFilter?: string | null;
|
|
7597
|
+
projectFilter?: string | null;
|
|
7598
|
+
purchaseOrderFilter?: string | null;
|
|
7599
|
+
workOrderFilter?: string | null;
|
|
7600
|
+
certificateTypeFilter?: string | null;
|
|
7601
|
+
lineFilter?: string | null;
|
|
7602
|
+
itemFilter?: string | null;
|
|
7603
|
+
heatFilter?: string | null;
|
|
7604
|
+
lotFilter?: string | null;
|
|
7605
|
+
dateFromFilter?: Date | null;
|
|
7606
|
+
dateToFilter?: Date | null;
|
|
7607
|
+
statusFilter: ImaMaterialCheckStatus[];
|
|
7608
|
+
continuationToken?: string | null;
|
|
7679
7609
|
}
|
|
7680
|
-
export
|
|
7681
|
-
|
|
7682
|
-
|
|
7683
|
-
|
|
7684
|
-
|
|
7685
|
-
|
|
7610
|
+
export type ImaMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
|
|
7611
|
+
export interface ImaMaterialCheckDto {
|
|
7612
|
+
materialCheckId: string;
|
|
7613
|
+
originalMaterialCertificate: FileDto;
|
|
7614
|
+
generatedMaterialCertificate?: FileDto | null;
|
|
7615
|
+
customer?: string | null;
|
|
7616
|
+
project?: string | null;
|
|
7617
|
+
workOrder?: string | null;
|
|
7618
|
+
certificateTypeId?: string | null;
|
|
7619
|
+
certificateTypeVersion?: number | null;
|
|
7620
|
+
certificateTypeName?: string | null;
|
|
7621
|
+
specificationId: string;
|
|
7622
|
+
specificationVersion: number;
|
|
7623
|
+
specificationName: string;
|
|
7624
|
+
purchaseOrder?: string | null;
|
|
7625
|
+
purchaseOrderLine?: number | null;
|
|
7626
|
+
purchaseOrderItem?: string | null;
|
|
7627
|
+
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
7628
|
+
purchaseOrderLot?: string | null;
|
|
7629
|
+
status: ImaMaterialCheckStatus;
|
|
7630
|
+
created: Date;
|
|
7631
|
+
createdBy: string;
|
|
7632
|
+
createdById: string;
|
|
7633
|
+
updatedBy?: string | null;
|
|
7634
|
+
updatedById?: string | null;
|
|
7635
|
+
isDeleted?: boolean;
|
|
7636
|
+
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
7637
|
+
specificationChemistry: ImaSpecificationChemistryResultsDto;
|
|
7638
|
+
specificationMechanical: ImaSpecificationMechanicalResultsDto;
|
|
7639
|
+
specificationFerrite: ImaSpecificationFerriteResultsDto;
|
|
7640
|
+
specificationHeatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
7686
7641
|
}
|
|
7687
|
-
export interface
|
|
7688
|
-
|
|
7689
|
-
|
|
7690
|
-
|
|
7691
|
-
|
|
7692
|
-
|
|
7693
|
-
|
|
7694
|
-
|
|
7642
|
+
export interface ImaCertificateTypeResultsDto {
|
|
7643
|
+
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
7644
|
+
signature: ImaCertificateTypeSignatureResultsDto;
|
|
7645
|
+
thirdParty: ImaCertificateTypeThirdPartyResultsDto;
|
|
7646
|
+
certification: ImaCertificateTypeCertificationResultsDto;
|
|
7647
|
+
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
7648
|
+
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
7649
|
+
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
7650
|
+
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
7695
7651
|
}
|
|
7696
|
-
export interface
|
|
7697
|
-
|
|
7698
|
-
|
|
7652
|
+
export interface ImaCertificateTypeManufacturerResultsDto {
|
|
7653
|
+
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
7654
|
+
address?: ImaCertificateTypeResultLine | null;
|
|
7655
|
+
contact?: ImaCertificateTypeResultLine | null;
|
|
7699
7656
|
}
|
|
7700
|
-
export interface
|
|
7701
|
-
|
|
7702
|
-
|
|
7703
|
-
|
|
7704
|
-
customerOrderNumber?: boolean;
|
|
7705
|
-
dimensionsOrWeight?: boolean;
|
|
7706
|
-
batchNumber?: boolean;
|
|
7707
|
-
heatNumber?: boolean;
|
|
7708
|
-
relatedStandards?: boolean;
|
|
7657
|
+
export interface ImaCertificateTypeResultLine {
|
|
7658
|
+
found?: boolean;
|
|
7659
|
+
readValue?: string | null;
|
|
7660
|
+
override?: ImaResultLineOverrideDto | null;
|
|
7709
7661
|
}
|
|
7710
|
-
export interface
|
|
7711
|
-
|
|
7662
|
+
export interface ImaResultLineOverrideDto {
|
|
7663
|
+
approved: boolean;
|
|
7664
|
+
comment?: string | null;
|
|
7665
|
+
updated: Date;
|
|
7666
|
+
updatedBy: string;
|
|
7667
|
+
updatedById: string;
|
|
7712
7668
|
}
|
|
7713
|
-
export interface
|
|
7714
|
-
|
|
7715
|
-
|
|
7716
|
-
|
|
7717
|
-
|
|
7718
|
-
|
|
7669
|
+
export interface ImaCertificateTypeSignatureResultsDto {
|
|
7670
|
+
certifiedBy?: ImaCertificateTypeResultLine | null;
|
|
7671
|
+
position?: ImaCertificateTypeResultLine | null;
|
|
7672
|
+
signature?: ImaCertificateTypeResultLine | null;
|
|
7673
|
+
date?: ImaCertificateTypeResultLine | null;
|
|
7674
|
+
stamp?: ImaCertificateTypeResultLine | null;
|
|
7719
7675
|
}
|
|
7720
|
-
export interface
|
|
7721
|
-
|
|
7722
|
-
|
|
7723
|
-
|
|
7724
|
-
|
|
7725
|
-
|
|
7726
|
-
|
|
7727
|
-
|
|
7728
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
7729
|
-
certificateOfTest?: boolean;
|
|
7730
|
-
technicalReport?: boolean;
|
|
7731
|
-
microExaminationReport?: boolean;
|
|
7732
|
-
radiologicalReport?: boolean;
|
|
7676
|
+
export interface ImaCertificateTypeThirdPartyResultsDto {
|
|
7677
|
+
inspectionBody?: ImaCertificateTypeResultLine | null;
|
|
7678
|
+
inspectorName?: ImaCertificateTypeResultLine | null;
|
|
7679
|
+
position?: ImaCertificateTypeResultLine | null;
|
|
7680
|
+
verificationMethod?: ImaCertificateTypeResultLine | null;
|
|
7681
|
+
signature?: ImaCertificateTypeResultLine | null;
|
|
7682
|
+
date?: ImaCertificateTypeResultLine | null;
|
|
7683
|
+
stamp?: ImaCertificateTypeResultLine | null;
|
|
7733
7684
|
}
|
|
7734
|
-
export interface
|
|
7735
|
-
|
|
7736
|
-
|
|
7737
|
-
description?: string | null;
|
|
7685
|
+
export interface ImaCertificateTypeCertificationResultsDto {
|
|
7686
|
+
certificateOfCompliance?: ImaCertificateTypeResultLine | null;
|
|
7687
|
+
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
7738
7688
|
}
|
|
7739
|
-
export interface
|
|
7740
|
-
name?: string | null;
|
|
7741
|
-
revision?: string | null;
|
|
7742
|
-
status?: ImaCertificateTypeStatus | null;
|
|
7743
|
-
description?: string | null;
|
|
7744
|
-
requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
|
|
7745
|
-
}
|
|
7746
|
-
export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
7747
|
-
manufacturer?: ImaCertificateTypeManufacturerRequirementsUpdateDto | null;
|
|
7748
|
-
signature?: ImaCertificateTypeSignatureRequirementsUpdateDto | null;
|
|
7749
|
-
thirdParty?: ImaCertificateTypeThirdPartyRequirementsUpdateDto | null;
|
|
7750
|
-
certification?: ImaCertificateTypeCertificationRequirementsUpdateDto | null;
|
|
7751
|
-
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
7752
|
-
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
7753
|
-
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
7754
|
-
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
7755
|
-
}
|
|
7756
|
-
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
7757
|
-
manufacturer?: boolean | null;
|
|
7758
|
-
address?: boolean | null;
|
|
7759
|
-
contact?: boolean | null;
|
|
7760
|
-
}
|
|
7761
|
-
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
7762
|
-
certifiedBy?: boolean | null;
|
|
7763
|
-
position?: boolean | null;
|
|
7764
|
-
signature?: boolean | null;
|
|
7765
|
-
date?: boolean | null;
|
|
7766
|
-
stamp?: boolean | null;
|
|
7767
|
-
}
|
|
7768
|
-
export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
7769
|
-
inspectionBody?: boolean | null;
|
|
7770
|
-
inspectorName?: boolean | null;
|
|
7771
|
-
position?: boolean | null;
|
|
7772
|
-
verificationMethod?: boolean | null;
|
|
7773
|
-
signature?: boolean | null;
|
|
7774
|
-
date?: boolean | null;
|
|
7775
|
-
stamp?: boolean | null;
|
|
7776
|
-
}
|
|
7777
|
-
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
7778
|
-
certificateOfCompliance?: boolean | null;
|
|
7779
|
-
inspectionCertificate?: boolean | null;
|
|
7780
|
-
}
|
|
7781
|
-
export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
|
|
7782
|
-
productDescription?: boolean | null;
|
|
7783
|
-
materialGrade?: boolean | null;
|
|
7784
|
-
customer?: boolean | null;
|
|
7785
|
-
customerOrderNumber?: boolean | null;
|
|
7786
|
-
dimensionsOrWeight?: boolean | null;
|
|
7787
|
-
batchNumber?: boolean | null;
|
|
7788
|
-
heatNumber?: boolean | null;
|
|
7789
|
-
relatedStandards?: boolean | null;
|
|
7790
|
-
}
|
|
7791
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
7792
|
-
usedStandards?: boolean | null;
|
|
7793
|
-
}
|
|
7794
|
-
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
7795
|
-
mechanicalProperties?: boolean | null;
|
|
7796
|
-
chemicalAnalysis?: boolean | null;
|
|
7797
|
-
impactTests?: boolean | null;
|
|
7798
|
-
corrosionTests?: boolean | null;
|
|
7799
|
-
ferriteContentAndMicrostructure?: boolean | null;
|
|
7800
|
-
}
|
|
7801
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
7802
|
-
heatTreatmentCertificate?: boolean | null;
|
|
7803
|
-
ultrasonicControlCertificate?: boolean | null;
|
|
7804
|
-
liquidPenetrantCertificate?: boolean | null;
|
|
7805
|
-
testReport?: boolean | null;
|
|
7806
|
-
dimensionalReport?: boolean | null;
|
|
7807
|
-
dyePenetrantReport?: boolean | null;
|
|
7808
|
-
visualReport?: boolean | null;
|
|
7809
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
7810
|
-
certificateOfTest?: boolean | null;
|
|
7811
|
-
technicalReport?: boolean | null;
|
|
7812
|
-
microExaminationReport?: boolean | null;
|
|
7813
|
-
radiologicalReport?: boolean | null;
|
|
7814
|
-
}
|
|
7815
|
-
export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
7816
|
-
certificateTypeId: string;
|
|
7817
|
-
version: number;
|
|
7818
|
-
name: string;
|
|
7819
|
-
revision: string;
|
|
7820
|
-
status: ImaCertificateTypeStatus;
|
|
7821
|
-
description?: string | null;
|
|
7822
|
-
isStandardCertificateType: boolean;
|
|
7823
|
-
created: Date;
|
|
7824
|
-
createdBy: string;
|
|
7825
|
-
createdById: string;
|
|
7826
|
-
createdByName: string;
|
|
7827
|
-
updatedBy: string;
|
|
7828
|
-
updatedById: string;
|
|
7829
|
-
updatedByName: string;
|
|
7830
|
-
updated: Date;
|
|
7831
|
-
isDeleted: boolean;
|
|
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 {
|
|
7689
|
+
export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
|
|
7969
7690
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
7970
7691
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
7971
7692
|
customer?: ImaCertificateTypeResultLine | null;
|
|
@@ -7975,17 +7696,17 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
7975
7696
|
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
7976
7697
|
relatedStandards?: ImaCertificateTypeResultLine | null;
|
|
7977
7698
|
}
|
|
7978
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto
|
|
7699
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
7979
7700
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
7980
7701
|
}
|
|
7981
|
-
export interface ImaCertificateTypeTestResultsResultsDto
|
|
7702
|
+
export interface ImaCertificateTypeTestResultsResultsDto {
|
|
7982
7703
|
mechanicalProperties?: ImaCertificateTypeResultLine | null;
|
|
7983
7704
|
chemicalAnalysis?: ImaCertificateTypeResultLine | null;
|
|
7984
7705
|
impactTests?: ImaCertificateTypeResultLine | null;
|
|
7985
7706
|
corrosionTests?: ImaCertificateTypeResultLine | null;
|
|
7986
7707
|
ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
|
|
7987
7708
|
}
|
|
7988
|
-
export interface ImaCertificateTypeDocumentTypesResultsDto
|
|
7709
|
+
export interface ImaCertificateTypeDocumentTypesResultsDto {
|
|
7989
7710
|
heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
|
|
7990
7711
|
ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
|
|
7991
7712
|
liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
|
|
@@ -7999,13 +7720,7 @@ export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityR
|
|
|
7999
7720
|
microExaminationReport?: ImaCertificateTypeResultLine | null;
|
|
8000
7721
|
radiologicalReport?: ImaCertificateTypeResultLine | null;
|
|
8001
7722
|
}
|
|
8002
|
-
export interface
|
|
8003
|
-
chemistry: ImaSpecificationChemistryResultsDto;
|
|
8004
|
-
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
8005
|
-
ferrite: ImaSpecificationFerriteResultsDto;
|
|
8006
|
-
heatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
8007
|
-
}
|
|
8008
|
-
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
7723
|
+
export interface ImaSpecificationChemistryResultsDto {
|
|
8009
7724
|
carbon?: ImaSpecificationResultLineDto | null;
|
|
8010
7725
|
manganese?: ImaSpecificationResultLineDto | null;
|
|
8011
7726
|
silicon?: ImaSpecificationResultLineDto | null;
|
|
@@ -8019,15 +7734,18 @@ export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBas
|
|
|
8019
7734
|
wolfram?: ImaSpecificationResultLineDto | null;
|
|
8020
7735
|
iron?: ImaSpecificationResultLineDto | null;
|
|
8021
7736
|
}
|
|
8022
|
-
export interface ImaSpecificationResultLineDto
|
|
8023
|
-
|
|
8024
|
-
|
|
7737
|
+
export interface ImaSpecificationResultLineDto {
|
|
7738
|
+
specificationOperator?: string | null;
|
|
7739
|
+
specificationValue1?: number | null;
|
|
7740
|
+
specificationValue2?: number | null;
|
|
7741
|
+
specificationUnit?: ImaSpecificationUnit | null;
|
|
8025
7742
|
readValue?: string | null;
|
|
8026
7743
|
status: ImaSpecificationResultLineStatus;
|
|
8027
7744
|
override?: ImaResultLineOverrideDto | null;
|
|
8028
7745
|
}
|
|
7746
|
+
export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenheit" | "Mpa" | "Hbw" | "Minutes" | "NotSet";
|
|
8029
7747
|
export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8030
|
-
export interface ImaSpecificationMechanicalResultsDto
|
|
7748
|
+
export interface ImaSpecificationMechanicalResultsDto {
|
|
8031
7749
|
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
8032
7750
|
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
8033
7751
|
elongation?: ImaSpecificationResultLineDto | null;
|
|
@@ -8035,7 +7753,7 @@ export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBa
|
|
|
8035
7753
|
impactEnergy?: ImaSpecificationResultLineDto | null;
|
|
8036
7754
|
hardness?: ImaSpecificationResultLineDto | null;
|
|
8037
7755
|
}
|
|
8038
|
-
export interface ImaSpecificationFerriteResultsDto
|
|
7756
|
+
export interface ImaSpecificationFerriteResultsDto {
|
|
8039
7757
|
ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
|
|
8040
7758
|
}
|
|
8041
7759
|
export interface ImaSpecificationFerriteResultLineDto {
|
|
@@ -8048,17 +7766,17 @@ export interface ImaSpecificationFerriteResultLineDto {
|
|
|
8048
7766
|
override?: ImaResultLineOverrideDto | null;
|
|
8049
7767
|
measurementMethod?: string | null;
|
|
8050
7768
|
}
|
|
8051
|
-
export interface ImaSpecificationHeatTreatmentResultDto
|
|
7769
|
+
export interface ImaSpecificationHeatTreatmentResultDto {
|
|
8052
7770
|
step: number;
|
|
8053
7771
|
cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
|
|
8054
7772
|
heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
|
|
8055
7773
|
}
|
|
8056
|
-
export interface ImaSpecificationHeatTreatmentCoolingResult
|
|
7774
|
+
export interface ImaSpecificationHeatTreatmentCoolingResult {
|
|
8057
7775
|
coolingMethods?: string[] | null;
|
|
8058
7776
|
temperature?: ImaSpecificationResultLineDto | null;
|
|
8059
7777
|
duration?: ImaSpecificationResultLineDto | null;
|
|
8060
7778
|
}
|
|
8061
|
-
export interface ImaSpecificationHeatTreatmentHeatingResult
|
|
7779
|
+
export interface ImaSpecificationHeatTreatmentHeatingResult {
|
|
8062
7780
|
heatingMethod?: string | null;
|
|
8063
7781
|
temperature?: ImaSpecificationResultLineDto | null;
|
|
8064
7782
|
duration?: ImaSpecificationResultLineDto | null;
|
|
@@ -8075,113 +7793,312 @@ export interface ProcessMaterialCertificate {
|
|
|
8075
7793
|
export interface UploadFileCdfDto {
|
|
8076
7794
|
id: number;
|
|
8077
7795
|
}
|
|
8078
|
-
export interface
|
|
8079
|
-
|
|
8080
|
-
|
|
8081
|
-
|
|
8082
|
-
|
|
8083
|
-
|
|
7796
|
+
export interface ImaUpdateResultRequestDto {
|
|
7797
|
+
certificateId: string;
|
|
7798
|
+
project?: string | null;
|
|
7799
|
+
purchaseOrder?: string | null;
|
|
7800
|
+
workOrder?: string | null;
|
|
7801
|
+
certificateTypeSection: ImaUpdateCertificateTypeResultsDto;
|
|
7802
|
+
specificationChemistrySpecification: ImaUpdateSpecificationChemistryResultsDto;
|
|
7803
|
+
specificationMechanicalSpecification: ImaUpdateSpecificationMechanicalResultsDto;
|
|
7804
|
+
specificationFerriteSpecification: ImaUpdateSpecificationFerriteResultsDto;
|
|
7805
|
+
specificationHeatSpecification: ImaUpdateSpecificationHeatTreatmentResultsDto;
|
|
8084
7806
|
}
|
|
8085
7807
|
export interface ImaUpdateCertificateTypeResultsDto {
|
|
8086
|
-
manufacturer
|
|
8087
|
-
signature
|
|
8088
|
-
thirdParty
|
|
8089
|
-
certification
|
|
8090
|
-
certificateTypeProductAndOrderInformation
|
|
8091
|
-
testMethodsAndReferences
|
|
8092
|
-
testResults
|
|
8093
|
-
documentTypes
|
|
7808
|
+
manufacturer: ImaUpdateCertificateTypeManufacturerResultsDto;
|
|
7809
|
+
signature: ImaUpdateCertificateTypeSignatureResultsDto;
|
|
7810
|
+
thirdParty: ImaUpdateCertificateTypeThirdPartyResultsDto;
|
|
7811
|
+
certification: ImaUpdateCertificateTypeCertificationResultsDto;
|
|
7812
|
+
certificateTypeProductAndOrderInformation: ImaUpdateCertificateTypeProductAndOrderInformationResultsDto;
|
|
7813
|
+
testMethodsAndReferences: ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
7814
|
+
testResults: ImaUpdateCertificateTypeTestResultsResultsDto;
|
|
7815
|
+
documentTypes: ImaUpdateCertificateTypeDocumentTypesResultsDto;
|
|
8094
7816
|
}
|
|
8095
7817
|
export interface ImaUpdateCertificateTypeManufacturerResultsDto {
|
|
8096
|
-
manufacturer?:
|
|
8097
|
-
address?:
|
|
8098
|
-
contact?:
|
|
7818
|
+
manufacturer?: ImaUpdateCertificateTypeResultLine | null;
|
|
7819
|
+
address?: ImaUpdateCertificateTypeResultLine | null;
|
|
7820
|
+
contact?: ImaUpdateCertificateTypeResultLine | null;
|
|
8099
7821
|
}
|
|
8100
|
-
export interface
|
|
8101
|
-
approved?: boolean;
|
|
7822
|
+
export interface ImaUpdateCertificateTypeResultLine {
|
|
7823
|
+
approved?: boolean | null;
|
|
8102
7824
|
comment?: string | null;
|
|
8103
7825
|
}
|
|
8104
7826
|
export interface ImaUpdateCertificateTypeSignatureResultsDto {
|
|
8105
|
-
certifiedBy?:
|
|
8106
|
-
position?:
|
|
8107
|
-
signature?:
|
|
8108
|
-
date?:
|
|
8109
|
-
stamp?:
|
|
7827
|
+
certifiedBy?: ImaUpdateCertificateTypeResultLine | null;
|
|
7828
|
+
position?: ImaUpdateCertificateTypeResultLine | null;
|
|
7829
|
+
signature?: ImaUpdateCertificateTypeResultLine | null;
|
|
7830
|
+
date?: ImaUpdateCertificateTypeResultLine | null;
|
|
7831
|
+
stamp?: ImaUpdateCertificateTypeResultLine | null;
|
|
8110
7832
|
}
|
|
8111
7833
|
export interface ImaUpdateCertificateTypeThirdPartyResultsDto {
|
|
8112
|
-
inspectionBody?:
|
|
8113
|
-
inspectorName?:
|
|
8114
|
-
position?:
|
|
8115
|
-
verificationMethod?:
|
|
8116
|
-
signature?:
|
|
8117
|
-
date?:
|
|
8118
|
-
stamp?:
|
|
7834
|
+
inspectionBody?: ImaUpdateCertificateTypeResultLine | null;
|
|
7835
|
+
inspectorName?: ImaUpdateCertificateTypeResultLine | null;
|
|
7836
|
+
position?: ImaUpdateCertificateTypeResultLine | null;
|
|
7837
|
+
verificationMethod?: ImaUpdateCertificateTypeResultLine | null;
|
|
7838
|
+
signature?: ImaUpdateCertificateTypeResultLine | null;
|
|
7839
|
+
date?: ImaUpdateCertificateTypeResultLine | null;
|
|
7840
|
+
stamp?: ImaUpdateCertificateTypeResultLine | null;
|
|
8119
7841
|
}
|
|
8120
7842
|
export interface ImaUpdateCertificateTypeCertificationResultsDto {
|
|
8121
|
-
certificateOfCompliance?:
|
|
8122
|
-
inspectionCertificate?:
|
|
7843
|
+
certificateOfCompliance?: ImaUpdateCertificateTypeResultLine | null;
|
|
7844
|
+
inspectionCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
8123
7845
|
}
|
|
8124
7846
|
export interface ImaUpdateCertificateTypeProductAndOrderInformationResultsDto {
|
|
8125
|
-
productDescription?:
|
|
8126
|
-
materialGrade?:
|
|
8127
|
-
customer?:
|
|
8128
|
-
customerOrderNumber?:
|
|
8129
|
-
dimensionsOrWeight?:
|
|
8130
|
-
batchNumber?:
|
|
8131
|
-
heatNumber?:
|
|
8132
|
-
relatedStandards?:
|
|
7847
|
+
productDescription?: ImaUpdateCertificateTypeResultLine | null;
|
|
7848
|
+
materialGrade?: ImaUpdateCertificateTypeResultLine | null;
|
|
7849
|
+
customer?: ImaUpdateCertificateTypeResultLine | null;
|
|
7850
|
+
customerOrderNumber?: ImaUpdateCertificateTypeResultLine | null;
|
|
7851
|
+
dimensionsOrWeight?: ImaUpdateCertificateTypeResultLine | null;
|
|
7852
|
+
batchNumber?: ImaUpdateCertificateTypeResultLine | null;
|
|
7853
|
+
heatNumber?: ImaUpdateCertificateTypeResultLine | null;
|
|
7854
|
+
relatedStandards?: ImaUpdateCertificateTypeResultLine | null;
|
|
8133
7855
|
}
|
|
8134
7856
|
export interface ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8135
|
-
usedStandards?:
|
|
7857
|
+
usedStandards?: ImaUpdateCertificateTypeResultLine | null;
|
|
8136
7858
|
}
|
|
8137
7859
|
export interface ImaUpdateCertificateTypeTestResultsResultsDto {
|
|
8138
|
-
mechanicalProperties?:
|
|
8139
|
-
chemicalAnalysis?:
|
|
8140
|
-
impactTests?:
|
|
8141
|
-
corrosionTests?:
|
|
8142
|
-
ferriteContentAndMicrostructure?:
|
|
7860
|
+
mechanicalProperties?: ImaUpdateCertificateTypeResultLine | null;
|
|
7861
|
+
chemicalAnalysis?: ImaUpdateCertificateTypeResultLine | null;
|
|
7862
|
+
impactTests?: ImaUpdateCertificateTypeResultLine | null;
|
|
7863
|
+
corrosionTests?: ImaUpdateCertificateTypeResultLine | null;
|
|
7864
|
+
ferriteContentAndMicrostructure?: ImaUpdateCertificateTypeResultLine | null;
|
|
8143
7865
|
}
|
|
8144
7866
|
export interface ImaUpdateCertificateTypeDocumentTypesResultsDto {
|
|
8145
|
-
heatTreatmentCertificate?:
|
|
8146
|
-
ultrasonicControlCertificate?:
|
|
8147
|
-
liquidPenetrantCertificate?:
|
|
8148
|
-
testReport?:
|
|
8149
|
-
dimensionalReport?:
|
|
8150
|
-
dyePenetrantReport?:
|
|
8151
|
-
visualReport?:
|
|
8152
|
-
certificateOfAnalyticalAndMechanicalTests?:
|
|
8153
|
-
certificateOfTest?:
|
|
8154
|
-
technicalReport?:
|
|
8155
|
-
microExaminationReport?:
|
|
8156
|
-
radiologicalReport?:
|
|
7867
|
+
heatTreatmentCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7868
|
+
ultrasonicControlCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7869
|
+
liquidPenetrantCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7870
|
+
testReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7871
|
+
dimensionalReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7872
|
+
dyePenetrantReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7873
|
+
visualReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7874
|
+
certificateOfAnalyticalAndMechanicalTests?: ImaUpdateCertificateTypeResultLine | null;
|
|
7875
|
+
certificateOfTest?: ImaUpdateCertificateTypeResultLine | null;
|
|
7876
|
+
technicalReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7877
|
+
microExaminationReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7878
|
+
radiologicalReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
8157
7879
|
}
|
|
8158
7880
|
export interface ImaUpdateSpecificationChemistryResultsDto {
|
|
8159
|
-
carbon?:
|
|
8160
|
-
manganese?:
|
|
8161
|
-
silicon?:
|
|
8162
|
-
phosphorus?:
|
|
8163
|
-
sulfur?:
|
|
8164
|
-
chromium?:
|
|
8165
|
-
nickel?:
|
|
8166
|
-
molybdenum?:
|
|
8167
|
-
copper?:
|
|
8168
|
-
nitrogen?:
|
|
8169
|
-
wolfram?:
|
|
8170
|
-
iron?:
|
|
7881
|
+
carbon?: ImaUpdateSpecificationResultLineDto | null;
|
|
7882
|
+
manganese?: ImaUpdateSpecificationResultLineDto | null;
|
|
7883
|
+
silicon?: ImaUpdateSpecificationResultLineDto | null;
|
|
7884
|
+
phosphorus?: ImaUpdateSpecificationResultLineDto | null;
|
|
7885
|
+
sulfur?: ImaUpdateSpecificationResultLineDto | null;
|
|
7886
|
+
chromium?: ImaUpdateSpecificationResultLineDto | null;
|
|
7887
|
+
nickel?: ImaUpdateSpecificationResultLineDto | null;
|
|
7888
|
+
molybdenum?: ImaUpdateSpecificationResultLineDto | null;
|
|
7889
|
+
copper?: ImaUpdateSpecificationResultLineDto | null;
|
|
7890
|
+
nitrogen?: ImaUpdateSpecificationResultLineDto | null;
|
|
7891
|
+
wolfram?: ImaUpdateSpecificationResultLineDto | null;
|
|
7892
|
+
iron?: ImaUpdateSpecificationResultLineDto | null;
|
|
7893
|
+
}
|
|
7894
|
+
export interface ImaUpdateSpecificationResultLineDto {
|
|
7895
|
+
approved?: boolean;
|
|
7896
|
+
comment?: string | null;
|
|
8171
7897
|
}
|
|
8172
7898
|
export interface ImaUpdateSpecificationMechanicalResultsDto {
|
|
8173
|
-
yieldStrength?:
|
|
8174
|
-
tensileStrength?:
|
|
8175
|
-
elongation?:
|
|
8176
|
-
reductionOfArea?:
|
|
8177
|
-
impactEnergy?:
|
|
8178
|
-
hardness?:
|
|
7899
|
+
yieldStrength?: ImaUpdateSpecificationResultLineDto | null;
|
|
7900
|
+
tensileStrength?: ImaUpdateSpecificationResultLineDto | null;
|
|
7901
|
+
elongation?: ImaUpdateSpecificationResultLineDto | null;
|
|
7902
|
+
reductionOfArea?: ImaUpdateSpecificationResultLineDto | null;
|
|
7903
|
+
impactEnergy?: ImaUpdateSpecificationResultLineDto | null;
|
|
7904
|
+
hardness?: ImaUpdateSpecificationResultLineDto | null;
|
|
8179
7905
|
}
|
|
8180
7906
|
export interface ImaUpdateSpecificationFerriteResultsDto {
|
|
8181
|
-
ferriteContent?:
|
|
7907
|
+
ferriteContent?: ImaUpdateSpecificationResultLineDto | null;
|
|
8182
7908
|
}
|
|
8183
7909
|
export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
|
|
8184
|
-
heatTreatmentOverrides
|
|
7910
|
+
heatTreatmentOverrides: (ImaUpdateSpecificationResultLineDto | null)[];
|
|
7911
|
+
}
|
|
7912
|
+
export interface ImaCdfEntityReadBase {
|
|
7913
|
+
}
|
|
7914
|
+
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
7915
|
+
certificateTypeId: string;
|
|
7916
|
+
version: number;
|
|
7917
|
+
allVersions: ImaCertificateTypeVersionDto[];
|
|
7918
|
+
name: string;
|
|
7919
|
+
revision: string;
|
|
7920
|
+
status: ImaCertificateTypeStatus;
|
|
7921
|
+
description?: string | null;
|
|
7922
|
+
isStandardCertificateType: boolean;
|
|
7923
|
+
created: Date;
|
|
7924
|
+
createdBy: string;
|
|
7925
|
+
createdById: string;
|
|
7926
|
+
updatedBy?: string | null;
|
|
7927
|
+
updatedById?: string | null;
|
|
7928
|
+
updated: Date;
|
|
7929
|
+
isDeleted: boolean;
|
|
7930
|
+
requirements: ImaCertificateTypeRequirementsDto;
|
|
7931
|
+
}
|
|
7932
|
+
export interface ImaCertificateTypeVersionDto {
|
|
7933
|
+
version?: number;
|
|
7934
|
+
status?: ImaCertificateTypeStatus;
|
|
7935
|
+
}
|
|
7936
|
+
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7937
|
+
export interface ImaCertificateTypeRequirementsDto {
|
|
7938
|
+
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
7939
|
+
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
7940
|
+
thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
|
|
7941
|
+
certification: ImaCertificateTypeCertificationRequirementsDto;
|
|
7942
|
+
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
7943
|
+
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
7944
|
+
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
7945
|
+
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
7946
|
+
}
|
|
7947
|
+
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
7948
|
+
manufacturer?: boolean;
|
|
7949
|
+
address?: boolean;
|
|
7950
|
+
contact?: boolean;
|
|
7951
|
+
}
|
|
7952
|
+
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
7953
|
+
certifiedBy?: boolean;
|
|
7954
|
+
position?: boolean;
|
|
7955
|
+
signature?: boolean;
|
|
7956
|
+
date?: boolean;
|
|
7957
|
+
stamp?: boolean;
|
|
7958
|
+
}
|
|
7959
|
+
export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
|
|
7960
|
+
inspectionBody?: boolean;
|
|
7961
|
+
inspectorName?: boolean;
|
|
7962
|
+
position?: boolean;
|
|
7963
|
+
verificationMethod?: boolean;
|
|
7964
|
+
signature?: boolean;
|
|
7965
|
+
date?: boolean;
|
|
7966
|
+
stamp?: boolean;
|
|
7967
|
+
}
|
|
7968
|
+
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
7969
|
+
certificateOfCompliance?: boolean;
|
|
7970
|
+
inspectionCertificate?: boolean;
|
|
7971
|
+
}
|
|
7972
|
+
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
|
|
7973
|
+
productDescription?: boolean;
|
|
7974
|
+
materialGrade?: boolean;
|
|
7975
|
+
customer?: boolean;
|
|
7976
|
+
customerOrderNumber?: boolean;
|
|
7977
|
+
dimensionsOrWeight?: boolean;
|
|
7978
|
+
batchNumber?: boolean;
|
|
7979
|
+
heatNumber?: boolean;
|
|
7980
|
+
relatedStandards?: boolean;
|
|
7981
|
+
}
|
|
7982
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
7983
|
+
usedStandards?: boolean;
|
|
7984
|
+
}
|
|
7985
|
+
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
7986
|
+
mechanicalProperties?: boolean;
|
|
7987
|
+
chemicalAnalysis?: boolean;
|
|
7988
|
+
impactTests?: boolean;
|
|
7989
|
+
corrosionTests?: boolean;
|
|
7990
|
+
ferriteContentAndMicrostructure?: boolean;
|
|
7991
|
+
}
|
|
7992
|
+
export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
|
|
7993
|
+
heatTreatmentCertificate?: boolean;
|
|
7994
|
+
ultrasonicControlCertificate?: boolean;
|
|
7995
|
+
liquidPenetrantCertificate?: boolean;
|
|
7996
|
+
testReport?: boolean;
|
|
7997
|
+
dimensionalReport?: boolean;
|
|
7998
|
+
dyePenetrantReport?: boolean;
|
|
7999
|
+
visualReport?: boolean;
|
|
8000
|
+
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
8001
|
+
certificateOfTest?: boolean;
|
|
8002
|
+
technicalReport?: boolean;
|
|
8003
|
+
microExaminationReport?: boolean;
|
|
8004
|
+
radiologicalReport?: boolean;
|
|
8005
|
+
}
|
|
8006
|
+
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
8007
|
+
name: string;
|
|
8008
|
+
revision: string;
|
|
8009
|
+
description?: string | null;
|
|
8010
|
+
}
|
|
8011
|
+
export interface ImaUpdateImaCertificateTypeRequestDto {
|
|
8012
|
+
name?: string | null;
|
|
8013
|
+
revision?: string | null;
|
|
8014
|
+
status?: ImaCertificateTypeStatus | null;
|
|
8015
|
+
description?: string | null;
|
|
8016
|
+
requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
|
|
8017
|
+
}
|
|
8018
|
+
export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
8019
|
+
manufacturer?: ImaCertificateTypeManufacturerRequirementsUpdateDto | null;
|
|
8020
|
+
signature?: ImaCertificateTypeSignatureRequirementsUpdateDto | null;
|
|
8021
|
+
thirdParty?: ImaCertificateTypeThirdPartyRequirementsUpdateDto | null;
|
|
8022
|
+
certification?: ImaCertificateTypeCertificationRequirementsUpdateDto | null;
|
|
8023
|
+
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
8024
|
+
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
8025
|
+
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
8026
|
+
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
8027
|
+
}
|
|
8028
|
+
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
8029
|
+
manufacturer?: boolean | null;
|
|
8030
|
+
address?: boolean | null;
|
|
8031
|
+
contact?: boolean | null;
|
|
8032
|
+
}
|
|
8033
|
+
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
8034
|
+
certifiedBy?: boolean | null;
|
|
8035
|
+
position?: boolean | null;
|
|
8036
|
+
signature?: boolean | null;
|
|
8037
|
+
date?: boolean | null;
|
|
8038
|
+
stamp?: boolean | null;
|
|
8039
|
+
}
|
|
8040
|
+
export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
8041
|
+
inspectionBody?: boolean | null;
|
|
8042
|
+
inspectorName?: boolean | null;
|
|
8043
|
+
position?: boolean | null;
|
|
8044
|
+
verificationMethod?: boolean | null;
|
|
8045
|
+
signature?: boolean | null;
|
|
8046
|
+
date?: boolean | null;
|
|
8047
|
+
stamp?: boolean | null;
|
|
8048
|
+
}
|
|
8049
|
+
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
8050
|
+
certificateOfCompliance?: boolean | null;
|
|
8051
|
+
inspectionCertificate?: boolean | null;
|
|
8052
|
+
}
|
|
8053
|
+
export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
|
|
8054
|
+
productDescription?: boolean | null;
|
|
8055
|
+
materialGrade?: boolean | null;
|
|
8056
|
+
customer?: boolean | null;
|
|
8057
|
+
customerOrderNumber?: boolean | null;
|
|
8058
|
+
dimensionsOrWeight?: boolean | null;
|
|
8059
|
+
batchNumber?: boolean | null;
|
|
8060
|
+
heatNumber?: boolean | null;
|
|
8061
|
+
relatedStandards?: boolean | null;
|
|
8062
|
+
}
|
|
8063
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
8064
|
+
usedStandards?: boolean | null;
|
|
8065
|
+
}
|
|
8066
|
+
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
8067
|
+
mechanicalProperties?: boolean | null;
|
|
8068
|
+
chemicalAnalysis?: boolean | null;
|
|
8069
|
+
impactTests?: boolean | null;
|
|
8070
|
+
corrosionTests?: boolean | null;
|
|
8071
|
+
ferriteContentAndMicrostructure?: boolean | null;
|
|
8072
|
+
}
|
|
8073
|
+
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
8074
|
+
heatTreatmentCertificate?: boolean | null;
|
|
8075
|
+
ultrasonicControlCertificate?: boolean | null;
|
|
8076
|
+
liquidPenetrantCertificate?: boolean | null;
|
|
8077
|
+
testReport?: boolean | null;
|
|
8078
|
+
dimensionalReport?: boolean | null;
|
|
8079
|
+
dyePenetrantReport?: boolean | null;
|
|
8080
|
+
visualReport?: boolean | null;
|
|
8081
|
+
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
8082
|
+
certificateOfTest?: boolean | null;
|
|
8083
|
+
technicalReport?: boolean | null;
|
|
8084
|
+
microExaminationReport?: boolean | null;
|
|
8085
|
+
radiologicalReport?: boolean | null;
|
|
8086
|
+
}
|
|
8087
|
+
export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
8088
|
+
certificateTypeId: string;
|
|
8089
|
+
version: number;
|
|
8090
|
+
name: string;
|
|
8091
|
+
revision: string;
|
|
8092
|
+
status: ImaCertificateTypeStatus;
|
|
8093
|
+
description?: string | null;
|
|
8094
|
+
isStandardCertificateType: boolean;
|
|
8095
|
+
created: Date;
|
|
8096
|
+
createdBy: string;
|
|
8097
|
+
createdById: string;
|
|
8098
|
+
updatedBy?: string | null;
|
|
8099
|
+
updatedById?: string | null;
|
|
8100
|
+
updated: Date;
|
|
8101
|
+
isDeleted: boolean;
|
|
8185
8102
|
}
|
|
8186
8103
|
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
8187
8104
|
purchaseOrders: string[];
|
|
@@ -8236,10 +8153,8 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8236
8153
|
created: Date;
|
|
8237
8154
|
createdBy: string;
|
|
8238
8155
|
createdById: string;
|
|
8239
|
-
createdByName: string;
|
|
8240
8156
|
updatedBy: string;
|
|
8241
8157
|
updatedById: string;
|
|
8242
|
-
updatedByName: string;
|
|
8243
8158
|
updated: Date;
|
|
8244
8159
|
isDeleted: boolean;
|
|
8245
8160
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
@@ -8267,9 +8182,12 @@ export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8267
8182
|
iron?: ImaSpecificationLineDto | null;
|
|
8268
8183
|
}
|
|
8269
8184
|
export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
8270
|
-
|
|
8271
|
-
|
|
8185
|
+
operator: ImaSpecificationOperator;
|
|
8186
|
+
value1: number;
|
|
8187
|
+
value2?: number | null;
|
|
8188
|
+
unit: ImaSpecificationUnit;
|
|
8272
8189
|
}
|
|
8190
|
+
export type ImaSpecificationOperator = "Min" | "Max" | "Between" | "NotSet";
|
|
8273
8191
|
export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
8274
8192
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8275
8193
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
@@ -8299,15 +8217,15 @@ export interface ImaHeatTreatmentSpecificationHeatingDto extends ImaCdfEntityRea
|
|
|
8299
8217
|
}
|
|
8300
8218
|
export type ImaHeatTreatmentHeatingMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
|
|
8301
8219
|
export interface ImaCreateSpecificationRequestDto {
|
|
8302
|
-
|
|
8303
|
-
|
|
8220
|
+
specificationName: string;
|
|
8221
|
+
specificationNumber: string;
|
|
8304
8222
|
revision: string;
|
|
8305
8223
|
date: Date;
|
|
8306
8224
|
specificationFile?: UploadFileDto | null;
|
|
8307
8225
|
}
|
|
8308
8226
|
export interface ImaCopySpecificationRequestDto {
|
|
8309
|
-
|
|
8310
|
-
|
|
8227
|
+
specificationName: string;
|
|
8228
|
+
specificationNumber: string;
|
|
8311
8229
|
revision: string;
|
|
8312
8230
|
date: Date;
|
|
8313
8231
|
}
|
|
@@ -8336,10 +8254,8 @@ export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
|
|
|
8336
8254
|
created: Date;
|
|
8337
8255
|
createdBy: string;
|
|
8338
8256
|
createdById: string;
|
|
8339
|
-
createdByName: string;
|
|
8340
8257
|
updatedBy: string;
|
|
8341
8258
|
updatedById: string;
|
|
8342
|
-
updatedByName: string;
|
|
8343
8259
|
isDeleted: boolean;
|
|
8344
8260
|
}
|
|
8345
8261
|
export interface MeasurementFormSchemaDto {
|
|
@@ -8890,7 +8806,6 @@ export interface ListMeasurementFormsRequest {
|
|
|
8890
8806
|
pageSize?: number | null;
|
|
8891
8807
|
search?: string | null;
|
|
8892
8808
|
continuationToken?: string | null;
|
|
8893
|
-
tenantId?: string | null;
|
|
8894
8809
|
inactive?: boolean | null;
|
|
8895
8810
|
includeInactiveSupplierAccess?: boolean | null;
|
|
8896
8811
|
}
|
|
@@ -9086,7 +9001,6 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
|
|
|
9086
9001
|
externalOrderNumber?: string | null;
|
|
9087
9002
|
}
|
|
9088
9003
|
export interface ExportDimensionReportV2Request {
|
|
9089
|
-
tenantId?: string | null;
|
|
9090
9004
|
type: DimensionReportType;
|
|
9091
9005
|
extras?: DimensionReportExtras | null;
|
|
9092
9006
|
specificSerialNumbers?: string[] | null;
|
|
@@ -9427,6 +9341,84 @@ export interface SetDiscussionLastReadRequest {
|
|
|
9427
9341
|
operationId?: string | null;
|
|
9428
9342
|
resourceId?: string | null;
|
|
9429
9343
|
}
|
|
9344
|
+
export interface CompanyUserDto {
|
|
9345
|
+
companyId: string;
|
|
9346
|
+
userObjectId: string;
|
|
9347
|
+
username?: string | null;
|
|
9348
|
+
name?: string | null;
|
|
9349
|
+
roles: string[];
|
|
9350
|
+
}
|
|
9351
|
+
export interface CreateCompanyUser {
|
|
9352
|
+
username: string;
|
|
9353
|
+
name: string;
|
|
9354
|
+
roles: string[];
|
|
9355
|
+
companyId?: string | null;
|
|
9356
|
+
}
|
|
9357
|
+
export interface UpdateCompanyUserRequest {
|
|
9358
|
+
roles: string[];
|
|
9359
|
+
companyId?: string | null;
|
|
9360
|
+
}
|
|
9361
|
+
export interface ExternalRoleDto {
|
|
9362
|
+
id: string;
|
|
9363
|
+
name: string;
|
|
9364
|
+
}
|
|
9365
|
+
export interface CompanyCustomerDto {
|
|
9366
|
+
customerTenantId?: string | null;
|
|
9367
|
+
customerAzureAdTenantId?: string | null;
|
|
9368
|
+
customerName?: string | null;
|
|
9369
|
+
supplierId?: string | null;
|
|
9370
|
+
supplierName?: string | null;
|
|
9371
|
+
customerIgnosPortalPrefix?: string | null;
|
|
9372
|
+
}
|
|
9373
|
+
export interface CompanyDto {
|
|
9374
|
+
id?: string;
|
|
9375
|
+
name?: string;
|
|
9376
|
+
organizationNumber?: string | null;
|
|
9377
|
+
country?: string;
|
|
9378
|
+
tenantId?: string | null;
|
|
9379
|
+
}
|
|
9380
|
+
export interface SupplierInviteDto {
|
|
9381
|
+
id: string;
|
|
9382
|
+
supplierId: string;
|
|
9383
|
+
supplierName?: string | null;
|
|
9384
|
+
customerName?: string | null;
|
|
9385
|
+
userId: string;
|
|
9386
|
+
userName?: string | null;
|
|
9387
|
+
deadline: Date;
|
|
9388
|
+
acceptedTimestamp?: Date | null;
|
|
9389
|
+
createdTime: Date;
|
|
9390
|
+
createdBy: string;
|
|
9391
|
+
}
|
|
9392
|
+
export interface AcceptSupplierInviteNewCompany {
|
|
9393
|
+
companyName?: string;
|
|
9394
|
+
organizationNumber?: string;
|
|
9395
|
+
threeLetterIsoCountry?: string;
|
|
9396
|
+
}
|
|
9397
|
+
export interface AcceptSupplierInviteExistingCompany {
|
|
9398
|
+
companyId?: string;
|
|
9399
|
+
}
|
|
9400
|
+
export interface AcceptSupplierInviteCustomer {
|
|
9401
|
+
tenantId?: string;
|
|
9402
|
+
organizationNumber?: string;
|
|
9403
|
+
}
|
|
9404
|
+
export interface CreateSupplierInvite {
|
|
9405
|
+
supplierId: string;
|
|
9406
|
+
supplierName?: string | null;
|
|
9407
|
+
username: string;
|
|
9408
|
+
invitedName: string;
|
|
9409
|
+
deadline: Date;
|
|
9410
|
+
}
|
|
9411
|
+
export interface ExternalSupplierDto {
|
|
9412
|
+
id: string;
|
|
9413
|
+
name: string;
|
|
9414
|
+
companyId: string;
|
|
9415
|
+
active: boolean;
|
|
9416
|
+
}
|
|
9417
|
+
export interface CreateSupplierMapping {
|
|
9418
|
+
companyId: string;
|
|
9419
|
+
existingSupplierId: string;
|
|
9420
|
+
newSupplierId: string;
|
|
9421
|
+
}
|
|
9430
9422
|
export type FeatureCollectionType = "FeatureCollection";
|
|
9431
9423
|
export interface Features {
|
|
9432
9424
|
type: FeaturesType;
|