@ignos/api-client 20260415.105.1-alpha → 20260416.107.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 +659 -666
- package/lib/ignosportal-api.js +4151 -4142
- package/package.json +1 -1
- package/src/ignosportal-api.ts +6462 -6466
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,99 @@ 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
|
+
acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
|
|
3353
|
+
}
|
|
3354
|
+
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3355
|
+
private http;
|
|
3356
|
+
private baseUrl;
|
|
3357
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3358
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3359
|
+
});
|
|
3360
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3361
|
+
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3362
|
+
getCompany(id: string): Promise<CompanyDto>;
|
|
3363
|
+
protected processGetCompany(response: Response): Promise<CompanyDto>;
|
|
3364
|
+
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3365
|
+
protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3366
|
+
acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
|
|
3367
|
+
protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3368
|
+
}
|
|
3369
|
+
export interface ISuppliersClient {
|
|
3370
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3371
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3372
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
3373
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3374
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3375
|
+
/**
|
|
3376
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3377
|
+
*/
|
|
3378
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3379
|
+
/**
|
|
3380
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3381
|
+
*/
|
|
3382
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3383
|
+
}
|
|
3384
|
+
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3385
|
+
private http;
|
|
3386
|
+
private baseUrl;
|
|
3387
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3388
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3389
|
+
});
|
|
3390
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3391
|
+
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3392
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3393
|
+
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3394
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
3395
|
+
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
3396
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3397
|
+
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3398
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3399
|
+
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3400
|
+
/**
|
|
3401
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3402
|
+
*/
|
|
3403
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3404
|
+
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3405
|
+
/**
|
|
3406
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3407
|
+
*/
|
|
3408
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3409
|
+
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3410
|
+
}
|
|
3408
3411
|
export interface AzureRegionDto {
|
|
3409
3412
|
displayName: string;
|
|
3410
3413
|
name: string;
|
|
@@ -3708,6 +3711,9 @@ export interface UserDetailsDto {
|
|
|
3708
3711
|
isExternalUser?: boolean;
|
|
3709
3712
|
isBetaTester?: boolean | null;
|
|
3710
3713
|
hasAccessToIgnos?: boolean;
|
|
3714
|
+
isInvitedUser?: boolean;
|
|
3715
|
+
isSupplier?: boolean;
|
|
3716
|
+
companyId?: string | null;
|
|
3711
3717
|
}
|
|
3712
3718
|
export interface UserDto {
|
|
3713
3719
|
id?: string | null;
|
|
@@ -4241,6 +4247,7 @@ export interface PartDto {
|
|
|
4241
4247
|
drawingRevision?: string | null;
|
|
4242
4248
|
material?: string | null;
|
|
4243
4249
|
planner?: UserDto | null;
|
|
4250
|
+
documentRequirements?: string[] | null;
|
|
4244
4251
|
}
|
|
4245
4252
|
export interface WorkorderCustomerOrderReferenceDto {
|
|
4246
4253
|
customerOrder?: string | null;
|
|
@@ -5582,133 +5589,42 @@ export interface DocumentGeneratorTypeDto {
|
|
|
5582
5589
|
key: string;
|
|
5583
5590
|
description: string;
|
|
5584
5591
|
}
|
|
5585
|
-
export interface
|
|
5586
|
-
|
|
5587
|
-
|
|
5588
|
-
|
|
5589
|
-
|
|
5592
|
+
export interface CncMachineTransferDto {
|
|
5593
|
+
id: string;
|
|
5594
|
+
cncMachineOperationId?: string | null;
|
|
5595
|
+
cncMachineId: string;
|
|
5596
|
+
cncMachineName: string;
|
|
5597
|
+
direction: FileTransferDirection;
|
|
5598
|
+
files: string[];
|
|
5599
|
+
status: FileTransferStatus;
|
|
5600
|
+
statusMessage?: string | null;
|
|
5601
|
+
timestamp: Date;
|
|
5590
5602
|
}
|
|
5591
|
-
export
|
|
5592
|
-
|
|
5593
|
-
|
|
5594
|
-
|
|
5595
|
-
companyId?: string | null;
|
|
5603
|
+
export type FileTransferDirection = "FromCloud" | "ToCloud";
|
|
5604
|
+
export type FileTransferStatus = "InProgress" | "Success" | "Failed";
|
|
5605
|
+
export interface TransferToMachineRequest {
|
|
5606
|
+
programs?: ProgramSelectionRequest[] | null;
|
|
5596
5607
|
}
|
|
5597
|
-
export interface
|
|
5598
|
-
|
|
5599
|
-
|
|
5600
|
-
companyId?: string | null;
|
|
5608
|
+
export interface ProgramSelectionRequest {
|
|
5609
|
+
id?: string;
|
|
5610
|
+
version?: number;
|
|
5601
5611
|
}
|
|
5602
|
-
export interface
|
|
5603
|
-
|
|
5604
|
-
|
|
5612
|
+
export interface UploadCamFileDto {
|
|
5613
|
+
uploadUrl: string;
|
|
5614
|
+
path: string;
|
|
5615
|
+
url: string;
|
|
5605
5616
|
}
|
|
5606
|
-
export interface
|
|
5607
|
-
|
|
5608
|
-
customerAzureAdTenantId?: string | null;
|
|
5609
|
-
customerName?: string | null;
|
|
5610
|
-
supplierId?: string | null;
|
|
5611
|
-
supplierName?: string | null;
|
|
5617
|
+
export interface UploadCamFileRequest {
|
|
5618
|
+
filename: string;
|
|
5612
5619
|
}
|
|
5613
|
-
export interface
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
id: string;
|
|
5617
|
-
supplierId: string;
|
|
5618
|
-
supplierName: string;
|
|
5619
|
-
username: string;
|
|
5620
|
-
deadline: Date;
|
|
5621
|
-
createdTime: Date;
|
|
5622
|
-
createdBy: string;
|
|
5620
|
+
export interface CamTransferDto {
|
|
5621
|
+
path: string;
|
|
5622
|
+
content: string;
|
|
5623
5623
|
}
|
|
5624
|
-
export interface
|
|
5625
|
-
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
country?: string | null;
|
|
5629
|
-
tenantId?: string | null;
|
|
5630
|
-
}
|
|
5631
|
-
export interface AcceptSupplierInviteRequest {
|
|
5632
|
-
tenantId: string;
|
|
5633
|
-
existingCompanyId?: string | null;
|
|
5634
|
-
companyName?: string | null;
|
|
5635
|
-
organizationNumber?: string | null;
|
|
5636
|
-
threeLetterIsoCountry?: string | null;
|
|
5637
|
-
}
|
|
5638
|
-
export interface SupplierInviteDto {
|
|
5639
|
-
id: string;
|
|
5640
|
-
supplierId: string;
|
|
5641
|
-
name: string;
|
|
5642
|
-
username: string;
|
|
5643
|
-
deadline: Date;
|
|
5644
|
-
createdTime: Date;
|
|
5645
|
-
createdBy: string;
|
|
5646
|
-
}
|
|
5647
|
-
export interface CreateSupplierInvite {
|
|
5648
|
-
supplierId: string;
|
|
5649
|
-
name: string;
|
|
5650
|
-
username: string;
|
|
5651
|
-
deadline: Date;
|
|
5652
|
-
}
|
|
5653
|
-
export interface ExternalSupplierDto {
|
|
5654
|
-
id: string;
|
|
5655
|
-
name: string;
|
|
5656
|
-
companyId: string;
|
|
5657
|
-
active: boolean;
|
|
5658
|
-
}
|
|
5659
|
-
export interface ImportSupplier {
|
|
5660
|
-
supplierId: string;
|
|
5661
|
-
name: string;
|
|
5662
|
-
organizationNumber?: string | null;
|
|
5663
|
-
threeLetterIsoCountry: string;
|
|
5664
|
-
users: ImportSupplierUserDto[];
|
|
5665
|
-
}
|
|
5666
|
-
export interface ImportSupplierUserDto {
|
|
5667
|
-
username: string;
|
|
5668
|
-
name: string;
|
|
5669
|
-
roles: string[];
|
|
5670
|
-
}
|
|
5671
|
-
export interface CreateSupplierMapping {
|
|
5672
|
-
companyId: string;
|
|
5673
|
-
existingSupplierId: string;
|
|
5674
|
-
newSupplierId: string;
|
|
5675
|
-
}
|
|
5676
|
-
export interface CncMachineTransferDto {
|
|
5677
|
-
id: string;
|
|
5678
|
-
cncMachineOperationId?: string | null;
|
|
5679
|
-
cncMachineId: string;
|
|
5680
|
-
cncMachineName: string;
|
|
5681
|
-
direction: FileTransferDirection;
|
|
5682
|
-
files: string[];
|
|
5683
|
-
status: FileTransferStatus;
|
|
5684
|
-
statusMessage?: string | null;
|
|
5685
|
-
timestamp: Date;
|
|
5686
|
-
}
|
|
5687
|
-
export type FileTransferDirection = "FromCloud" | "ToCloud";
|
|
5688
|
-
export type FileTransferStatus = "InProgress" | "Success" | "Failed";
|
|
5689
|
-
export interface TransferToMachineRequest {
|
|
5690
|
-
programs?: ProgramSelectionRequest[] | null;
|
|
5691
|
-
}
|
|
5692
|
-
export interface ProgramSelectionRequest {
|
|
5693
|
-
id?: string;
|
|
5694
|
-
version?: number;
|
|
5695
|
-
}
|
|
5696
|
-
export interface UploadCamFileDto {
|
|
5697
|
-
uploadUrl: string;
|
|
5698
|
-
path: string;
|
|
5699
|
-
url: string;
|
|
5700
|
-
}
|
|
5701
|
-
export interface UploadCamFileRequest {
|
|
5702
|
-
filename: string;
|
|
5703
|
-
}
|
|
5704
|
-
export interface CamTransferDto {
|
|
5705
|
-
path: string;
|
|
5706
|
-
content: string;
|
|
5707
|
-
}
|
|
5708
|
-
export interface StartCamTransferToMachine {
|
|
5709
|
-
path: string;
|
|
5710
|
-
content: string;
|
|
5711
|
-
cncMachineId: string;
|
|
5624
|
+
export interface StartCamTransferToMachine {
|
|
5625
|
+
path: string;
|
|
5626
|
+
content: string;
|
|
5627
|
+
cncMachineId: string;
|
|
5712
5628
|
}
|
|
5713
5629
|
export interface StartCamTransferToMachineFromTempUpload {
|
|
5714
5630
|
uploadKey: string;
|
|
@@ -7634,325 +7550,137 @@ export interface WeldingIotConfigDto {
|
|
|
7634
7550
|
}
|
|
7635
7551
|
export interface CreateWeldingIotConfig {
|
|
7636
7552
|
}
|
|
7637
|
-
export interface
|
|
7553
|
+
export interface ImaMaterialChecksPageDto {
|
|
7554
|
+
items: ImaMaterialCheckLiteDto[];
|
|
7555
|
+
continuationToken?: string | null;
|
|
7638
7556
|
}
|
|
7639
|
-
export interface
|
|
7640
|
-
|
|
7641
|
-
|
|
7642
|
-
|
|
7643
|
-
|
|
7644
|
-
|
|
7645
|
-
|
|
7646
|
-
|
|
7647
|
-
|
|
7557
|
+
export interface ImaMaterialCheckLiteDto {
|
|
7558
|
+
materialCheckId: string;
|
|
7559
|
+
originalMaterialCertificate: FileDto;
|
|
7560
|
+
generatedMaterialCertificate?: FileDto | null;
|
|
7561
|
+
customer?: string | null;
|
|
7562
|
+
project?: string | null;
|
|
7563
|
+
workOrder?: string | null;
|
|
7564
|
+
certificateTypeId?: string | null;
|
|
7565
|
+
certificateTypeVersion?: number | null;
|
|
7566
|
+
certificateTypeName?: string | null;
|
|
7567
|
+
specificationId: string;
|
|
7568
|
+
specificationVersion: number;
|
|
7569
|
+
specificationName: string;
|
|
7570
|
+
purchaseOrder?: string | null;
|
|
7571
|
+
purchaseOrderLine?: number | null;
|
|
7572
|
+
purchaseOrderItem?: string | null;
|
|
7573
|
+
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
7574
|
+
purchaseOrderLot?: string | null;
|
|
7575
|
+
status: ImaMaterialCheckStatus;
|
|
7648
7576
|
created: Date;
|
|
7649
7577
|
createdBy: string;
|
|
7650
7578
|
createdById: string;
|
|
7651
7579
|
updatedBy?: string | null;
|
|
7652
7580
|
updatedById?: string | null;
|
|
7653
|
-
|
|
7654
|
-
isDeleted: boolean;
|
|
7655
|
-
requirements: ImaCertificateTypeRequirementsDto;
|
|
7656
|
-
}
|
|
7657
|
-
export interface ImaCertificateTypeVersionDto {
|
|
7658
|
-
version?: number;
|
|
7659
|
-
status?: ImaCertificateTypeStatus;
|
|
7581
|
+
isDeleted?: boolean;
|
|
7660
7582
|
}
|
|
7661
|
-
export type
|
|
7662
|
-
export interface
|
|
7663
|
-
|
|
7664
|
-
|
|
7665
|
-
|
|
7666
|
-
|
|
7667
|
-
|
|
7668
|
-
|
|
7669
|
-
|
|
7670
|
-
|
|
7583
|
+
export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
|
|
7584
|
+
export interface ImaMaterialChecksPageRequestDto {
|
|
7585
|
+
pageSize?: number | null;
|
|
7586
|
+
orderBy?: ImaMaterialChecksOrderByColumn | null;
|
|
7587
|
+
searchTerm?: string | null;
|
|
7588
|
+
originalReportFilter?: string | null;
|
|
7589
|
+
generatedReportFilter?: string | null;
|
|
7590
|
+
customerFilter?: string | null;
|
|
7591
|
+
projectFilter?: string | null;
|
|
7592
|
+
purchaseOrderFilter?: string | null;
|
|
7593
|
+
workOrderFilter?: string | null;
|
|
7594
|
+
certificateTypeFilter?: string | null;
|
|
7595
|
+
lineFilter?: string | null;
|
|
7596
|
+
itemFilter?: string | null;
|
|
7597
|
+
heatFilter?: string | null;
|
|
7598
|
+
lotFilter?: string | null;
|
|
7599
|
+
dateFromFilter?: Date | null;
|
|
7600
|
+
dateToFilter?: Date | null;
|
|
7601
|
+
statusFilter: ImaMaterialCheckStatus[];
|
|
7602
|
+
continuationToken?: string | null;
|
|
7671
7603
|
}
|
|
7672
|
-
export
|
|
7673
|
-
|
|
7674
|
-
|
|
7675
|
-
|
|
7604
|
+
export type ImaMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
|
|
7605
|
+
export interface ImaMaterialCheckDto {
|
|
7606
|
+
materialCheckId: string;
|
|
7607
|
+
originalMaterialCertificate: FileDto;
|
|
7608
|
+
generatedMaterialCertificate?: FileDto | null;
|
|
7609
|
+
customer?: string | null;
|
|
7610
|
+
project?: string | null;
|
|
7611
|
+
workOrder?: string | null;
|
|
7612
|
+
certificateTypeId?: string | null;
|
|
7613
|
+
certificateTypeVersion?: number | null;
|
|
7614
|
+
certificateTypeName?: string | null;
|
|
7615
|
+
specificationId: string;
|
|
7616
|
+
specificationVersion: number;
|
|
7617
|
+
specificationName: string;
|
|
7618
|
+
purchaseOrder?: string | null;
|
|
7619
|
+
purchaseOrderLine?: number | null;
|
|
7620
|
+
purchaseOrderItem?: string | null;
|
|
7621
|
+
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
7622
|
+
purchaseOrderLot?: string | null;
|
|
7623
|
+
status: ImaMaterialCheckStatus;
|
|
7624
|
+
created: Date;
|
|
7625
|
+
createdBy: string;
|
|
7626
|
+
createdById: string;
|
|
7627
|
+
updatedBy?: string | null;
|
|
7628
|
+
updatedById?: string | null;
|
|
7629
|
+
isDeleted?: boolean;
|
|
7630
|
+
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
7631
|
+
specificationChemistry: ImaSpecificationChemistryResultsDto;
|
|
7632
|
+
specificationMechanical: ImaSpecificationMechanicalResultsDto;
|
|
7633
|
+
specificationFerrite: ImaSpecificationFerriteResultsDto;
|
|
7634
|
+
specificationHeatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
7676
7635
|
}
|
|
7677
|
-
export interface
|
|
7678
|
-
|
|
7679
|
-
|
|
7680
|
-
|
|
7681
|
-
|
|
7682
|
-
|
|
7636
|
+
export interface ImaCertificateTypeResultsDto {
|
|
7637
|
+
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
7638
|
+
signature: ImaCertificateTypeSignatureResultsDto;
|
|
7639
|
+
thirdParty: ImaCertificateTypeThirdPartyResultsDto;
|
|
7640
|
+
certification: ImaCertificateTypeCertificationResultsDto;
|
|
7641
|
+
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
7642
|
+
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
7643
|
+
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
7644
|
+
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
7683
7645
|
}
|
|
7684
|
-
export interface
|
|
7685
|
-
|
|
7686
|
-
|
|
7687
|
-
|
|
7688
|
-
verificationMethod?: boolean;
|
|
7689
|
-
signature?: boolean;
|
|
7690
|
-
date?: boolean;
|
|
7691
|
-
stamp?: boolean;
|
|
7646
|
+
export interface ImaCertificateTypeManufacturerResultsDto {
|
|
7647
|
+
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
7648
|
+
address?: ImaCertificateTypeResultLine | null;
|
|
7649
|
+
contact?: ImaCertificateTypeResultLine | null;
|
|
7692
7650
|
}
|
|
7693
|
-
export interface
|
|
7694
|
-
|
|
7695
|
-
|
|
7651
|
+
export interface ImaCertificateTypeResultLine {
|
|
7652
|
+
found?: boolean;
|
|
7653
|
+
readValue?: string | null;
|
|
7654
|
+
override?: ImaResultLineOverrideDto | null;
|
|
7696
7655
|
}
|
|
7697
|
-
export interface
|
|
7698
|
-
|
|
7699
|
-
|
|
7700
|
-
|
|
7701
|
-
|
|
7702
|
-
|
|
7703
|
-
batchNumber?: boolean;
|
|
7704
|
-
heatNumber?: boolean;
|
|
7705
|
-
relatedStandards?: boolean;
|
|
7656
|
+
export interface ImaResultLineOverrideDto {
|
|
7657
|
+
approved: boolean;
|
|
7658
|
+
comment?: string | null;
|
|
7659
|
+
updated: Date;
|
|
7660
|
+
updatedBy: string;
|
|
7661
|
+
updatedById: string;
|
|
7706
7662
|
}
|
|
7707
|
-
export interface
|
|
7708
|
-
|
|
7663
|
+
export interface ImaCertificateTypeSignatureResultsDto {
|
|
7664
|
+
certifiedBy?: ImaCertificateTypeResultLine | null;
|
|
7665
|
+
position?: ImaCertificateTypeResultLine | null;
|
|
7666
|
+
signature?: ImaCertificateTypeResultLine | null;
|
|
7667
|
+
date?: ImaCertificateTypeResultLine | null;
|
|
7668
|
+
stamp?: ImaCertificateTypeResultLine | null;
|
|
7709
7669
|
}
|
|
7710
|
-
export interface
|
|
7711
|
-
|
|
7712
|
-
|
|
7713
|
-
|
|
7714
|
-
|
|
7715
|
-
|
|
7670
|
+
export interface ImaCertificateTypeThirdPartyResultsDto {
|
|
7671
|
+
inspectionBody?: ImaCertificateTypeResultLine | null;
|
|
7672
|
+
inspectorName?: ImaCertificateTypeResultLine | null;
|
|
7673
|
+
position?: ImaCertificateTypeResultLine | null;
|
|
7674
|
+
verificationMethod?: ImaCertificateTypeResultLine | null;
|
|
7675
|
+
signature?: ImaCertificateTypeResultLine | null;
|
|
7676
|
+
date?: ImaCertificateTypeResultLine | null;
|
|
7677
|
+
stamp?: ImaCertificateTypeResultLine | null;
|
|
7716
7678
|
}
|
|
7717
|
-
export interface
|
|
7718
|
-
|
|
7719
|
-
|
|
7720
|
-
liquidPenetrantCertificate?: boolean;
|
|
7721
|
-
testReport?: boolean;
|
|
7722
|
-
dimensionalReport?: boolean;
|
|
7723
|
-
dyePenetrantReport?: boolean;
|
|
7724
|
-
visualReport?: boolean;
|
|
7725
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
7726
|
-
certificateOfTest?: boolean;
|
|
7727
|
-
technicalReport?: boolean;
|
|
7728
|
-
microExaminationReport?: boolean;
|
|
7729
|
-
radiologicalReport?: boolean;
|
|
7679
|
+
export interface ImaCertificateTypeCertificationResultsDto {
|
|
7680
|
+
certificateOfCompliance?: ImaCertificateTypeResultLine | null;
|
|
7681
|
+
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
7730
7682
|
}
|
|
7731
|
-
export interface
|
|
7732
|
-
name: string;
|
|
7733
|
-
revision: string;
|
|
7734
|
-
description?: string | null;
|
|
7735
|
-
}
|
|
7736
|
-
export interface ImaUpdateImaCertificateTypeRequestDto {
|
|
7737
|
-
name?: string | null;
|
|
7738
|
-
revision?: string | null;
|
|
7739
|
-
status?: ImaCertificateTypeStatus | null;
|
|
7740
|
-
description?: string | null;
|
|
7741
|
-
requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
|
|
7742
|
-
}
|
|
7743
|
-
export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
7744
|
-
manufacturer?: ImaCertificateTypeManufacturerRequirementsUpdateDto | null;
|
|
7745
|
-
signature?: ImaCertificateTypeSignatureRequirementsUpdateDto | null;
|
|
7746
|
-
thirdParty?: ImaCertificateTypeThirdPartyRequirementsUpdateDto | null;
|
|
7747
|
-
certification?: ImaCertificateTypeCertificationRequirementsUpdateDto | null;
|
|
7748
|
-
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
7749
|
-
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
7750
|
-
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
7751
|
-
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
7752
|
-
}
|
|
7753
|
-
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
7754
|
-
manufacturer?: boolean | null;
|
|
7755
|
-
address?: boolean | null;
|
|
7756
|
-
contact?: boolean | null;
|
|
7757
|
-
}
|
|
7758
|
-
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
7759
|
-
certifiedBy?: boolean | null;
|
|
7760
|
-
position?: boolean | null;
|
|
7761
|
-
signature?: boolean | null;
|
|
7762
|
-
date?: boolean | null;
|
|
7763
|
-
stamp?: boolean | null;
|
|
7764
|
-
}
|
|
7765
|
-
export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
7766
|
-
inspectionBody?: boolean | null;
|
|
7767
|
-
inspectorName?: boolean | null;
|
|
7768
|
-
position?: boolean | null;
|
|
7769
|
-
verificationMethod?: boolean | null;
|
|
7770
|
-
signature?: boolean | null;
|
|
7771
|
-
date?: boolean | null;
|
|
7772
|
-
stamp?: boolean | null;
|
|
7773
|
-
}
|
|
7774
|
-
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
7775
|
-
certificateOfCompliance?: boolean | null;
|
|
7776
|
-
inspectionCertificate?: boolean | null;
|
|
7777
|
-
}
|
|
7778
|
-
export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
|
|
7779
|
-
productDescription?: boolean | null;
|
|
7780
|
-
materialGrade?: boolean | null;
|
|
7781
|
-
customer?: boolean | null;
|
|
7782
|
-
customerOrderNumber?: boolean | null;
|
|
7783
|
-
dimensionsOrWeight?: boolean | null;
|
|
7784
|
-
batchNumber?: boolean | null;
|
|
7785
|
-
heatNumber?: boolean | null;
|
|
7786
|
-
relatedStandards?: boolean | null;
|
|
7787
|
-
}
|
|
7788
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
7789
|
-
usedStandards?: boolean | null;
|
|
7790
|
-
}
|
|
7791
|
-
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
7792
|
-
mechanicalProperties?: boolean | null;
|
|
7793
|
-
chemicalAnalysis?: boolean | null;
|
|
7794
|
-
impactTests?: boolean | null;
|
|
7795
|
-
corrosionTests?: boolean | null;
|
|
7796
|
-
ferriteContentAndMicrostructure?: boolean | null;
|
|
7797
|
-
}
|
|
7798
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
7799
|
-
heatTreatmentCertificate?: boolean | null;
|
|
7800
|
-
ultrasonicControlCertificate?: boolean | null;
|
|
7801
|
-
liquidPenetrantCertificate?: boolean | null;
|
|
7802
|
-
testReport?: boolean | null;
|
|
7803
|
-
dimensionalReport?: boolean | null;
|
|
7804
|
-
dyePenetrantReport?: boolean | null;
|
|
7805
|
-
visualReport?: boolean | null;
|
|
7806
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
7807
|
-
certificateOfTest?: boolean | null;
|
|
7808
|
-
technicalReport?: boolean | null;
|
|
7809
|
-
microExaminationReport?: boolean | null;
|
|
7810
|
-
radiologicalReport?: boolean | null;
|
|
7811
|
-
}
|
|
7812
|
-
export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
7813
|
-
certificateTypeId: string;
|
|
7814
|
-
version: number;
|
|
7815
|
-
name: string;
|
|
7816
|
-
revision: string;
|
|
7817
|
-
status: ImaCertificateTypeStatus;
|
|
7818
|
-
description?: string | null;
|
|
7819
|
-
isStandardCertificateType: boolean;
|
|
7820
|
-
created: Date;
|
|
7821
|
-
createdBy: string;
|
|
7822
|
-
createdById: string;
|
|
7823
|
-
updatedBy?: string | null;
|
|
7824
|
-
updatedById?: string | null;
|
|
7825
|
-
updated: Date;
|
|
7826
|
-
isDeleted: boolean;
|
|
7827
|
-
}
|
|
7828
|
-
export interface ImaMaterialChecksPageDto {
|
|
7829
|
-
items: ImaMaterialCheckLiteDto[];
|
|
7830
|
-
continuationToken?: string | null;
|
|
7831
|
-
}
|
|
7832
|
-
export interface ImaMaterialCheckLiteDto {
|
|
7833
|
-
materialCheckId: string;
|
|
7834
|
-
originalMaterialCertificate: FileDto;
|
|
7835
|
-
generatedMaterialCertificate?: FileDto | null;
|
|
7836
|
-
customer?: string | null;
|
|
7837
|
-
project?: string | null;
|
|
7838
|
-
workOrder?: string | null;
|
|
7839
|
-
certificateTypeId?: string | null;
|
|
7840
|
-
certificateTypeVersion?: number | null;
|
|
7841
|
-
certificateTypeName?: string | null;
|
|
7842
|
-
specificationId: string;
|
|
7843
|
-
specificationVersion: number;
|
|
7844
|
-
specificationName: string;
|
|
7845
|
-
purchaseOrder?: string | null;
|
|
7846
|
-
purchaseOrderLine?: number | null;
|
|
7847
|
-
purchaseOrderItem?: string | null;
|
|
7848
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
7849
|
-
purchaseOrderLot?: string | null;
|
|
7850
|
-
status: ImaMaterialCheckStatus;
|
|
7851
|
-
created: Date;
|
|
7852
|
-
createdBy: string;
|
|
7853
|
-
createdById: string;
|
|
7854
|
-
updatedBy?: string | null;
|
|
7855
|
-
updatedById?: string | null;
|
|
7856
|
-
isDeleted?: boolean;
|
|
7857
|
-
}
|
|
7858
|
-
export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
|
|
7859
|
-
export interface ImaMaterialChecksPageRequestDto {
|
|
7860
|
-
pageSize?: number | null;
|
|
7861
|
-
orderBy?: ImaMaterialChecksOrderByColumn | null;
|
|
7862
|
-
searchTerm?: string | null;
|
|
7863
|
-
originalReportFilter?: string | null;
|
|
7864
|
-
generatedReportFilter?: string | null;
|
|
7865
|
-
customerFilter?: string | null;
|
|
7866
|
-
projectFilter?: string | null;
|
|
7867
|
-
purchaseOrderFilter?: string | null;
|
|
7868
|
-
workOrderFilter?: string | null;
|
|
7869
|
-
certificateTypeFilter?: string | null;
|
|
7870
|
-
lineFilter?: string | null;
|
|
7871
|
-
itemFilter?: string | null;
|
|
7872
|
-
heatFilter?: string | null;
|
|
7873
|
-
lotFilter?: string | null;
|
|
7874
|
-
dateFromFilter?: Date | null;
|
|
7875
|
-
dateToFilter?: Date | null;
|
|
7876
|
-
statusFilter: ImaMaterialCheckStatus[];
|
|
7877
|
-
continuationToken?: string | null;
|
|
7878
|
-
}
|
|
7879
|
-
export type ImaMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
|
|
7880
|
-
export interface ImaMaterialCheckDto {
|
|
7881
|
-
materialCheckId: string;
|
|
7882
|
-
originalMaterialCertificate: FileDto;
|
|
7883
|
-
generatedMaterialCertificate?: FileDto | null;
|
|
7884
|
-
customer?: string | null;
|
|
7885
|
-
project?: string | null;
|
|
7886
|
-
workOrder?: string | null;
|
|
7887
|
-
certificateTypeId?: string | null;
|
|
7888
|
-
certificateTypeVersion?: number | null;
|
|
7889
|
-
certificateTypeName?: string | null;
|
|
7890
|
-
specificationId: string;
|
|
7891
|
-
specificationVersion: number;
|
|
7892
|
-
specificationName: string;
|
|
7893
|
-
purchaseOrder?: string | null;
|
|
7894
|
-
purchaseOrderLine?: number | null;
|
|
7895
|
-
purchaseOrderItem?: string | null;
|
|
7896
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
7897
|
-
purchaseOrderLot?: string | null;
|
|
7898
|
-
status: ImaMaterialCheckStatus;
|
|
7899
|
-
created: Date;
|
|
7900
|
-
createdBy: string;
|
|
7901
|
-
createdById: string;
|
|
7902
|
-
updatedBy?: string | null;
|
|
7903
|
-
updatedById?: string | null;
|
|
7904
|
-
isDeleted?: boolean;
|
|
7905
|
-
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
7906
|
-
specificationResults: ImaSpecificationResultsDto;
|
|
7907
|
-
}
|
|
7908
|
-
export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
7909
|
-
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
7910
|
-
signature: ImaCertificateTypeSignatureResultsDto;
|
|
7911
|
-
thirdParty: ImaCertificateTypeThirdPartyResultsDto;
|
|
7912
|
-
certification: ImaCertificateTypeCertificationResultsDto;
|
|
7913
|
-
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
7914
|
-
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
7915
|
-
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
7916
|
-
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
7917
|
-
}
|
|
7918
|
-
export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
|
|
7919
|
-
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
7920
|
-
address?: ImaCertificateTypeResultLine | null;
|
|
7921
|
-
contact?: ImaCertificateTypeResultLine | null;
|
|
7922
|
-
}
|
|
7923
|
-
export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
|
|
7924
|
-
found?: boolean;
|
|
7925
|
-
readValue?: string | null;
|
|
7926
|
-
override?: ImaResultLineOverrideDto | null;
|
|
7927
|
-
}
|
|
7928
|
-
export interface ImaResultLineOverrideDto extends ImaCdfEntityReadBase {
|
|
7929
|
-
approved: boolean;
|
|
7930
|
-
comment?: string | null;
|
|
7931
|
-
updated: Date;
|
|
7932
|
-
updatedBy: string;
|
|
7933
|
-
updatedById: string;
|
|
7934
|
-
}
|
|
7935
|
-
export interface ImaCertificateTypeSignatureResultsDto extends ImaCdfEntityReadBase {
|
|
7936
|
-
certifiedBy?: ImaCertificateTypeResultLine | null;
|
|
7937
|
-
position?: ImaCertificateTypeResultLine | null;
|
|
7938
|
-
signature?: ImaCertificateTypeResultLine | null;
|
|
7939
|
-
date?: ImaCertificateTypeResultLine | null;
|
|
7940
|
-
stamp?: ImaCertificateTypeResultLine | null;
|
|
7941
|
-
}
|
|
7942
|
-
export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityReadBase {
|
|
7943
|
-
inspectionBody?: ImaCertificateTypeResultLine | null;
|
|
7944
|
-
inspectorName?: ImaCertificateTypeResultLine | null;
|
|
7945
|
-
position?: ImaCertificateTypeResultLine | null;
|
|
7946
|
-
verificationMethod?: ImaCertificateTypeResultLine | null;
|
|
7947
|
-
signature?: ImaCertificateTypeResultLine | null;
|
|
7948
|
-
date?: ImaCertificateTypeResultLine | null;
|
|
7949
|
-
stamp?: ImaCertificateTypeResultLine | null;
|
|
7950
|
-
}
|
|
7951
|
-
export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
|
|
7952
|
-
certificateOfCompliance?: ImaCertificateTypeResultLine | null;
|
|
7953
|
-
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
7954
|
-
}
|
|
7955
|
-
export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
|
|
7683
|
+
export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
|
|
7956
7684
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
7957
7685
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
7958
7686
|
customer?: ImaCertificateTypeResultLine | null;
|
|
@@ -7962,17 +7690,17 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
7962
7690
|
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
7963
7691
|
relatedStandards?: ImaCertificateTypeResultLine | null;
|
|
7964
7692
|
}
|
|
7965
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto
|
|
7693
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
7966
7694
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
7967
7695
|
}
|
|
7968
|
-
export interface ImaCertificateTypeTestResultsResultsDto
|
|
7696
|
+
export interface ImaCertificateTypeTestResultsResultsDto {
|
|
7969
7697
|
mechanicalProperties?: ImaCertificateTypeResultLine | null;
|
|
7970
7698
|
chemicalAnalysis?: ImaCertificateTypeResultLine | null;
|
|
7971
7699
|
impactTests?: ImaCertificateTypeResultLine | null;
|
|
7972
7700
|
corrosionTests?: ImaCertificateTypeResultLine | null;
|
|
7973
7701
|
ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
|
|
7974
7702
|
}
|
|
7975
|
-
export interface ImaCertificateTypeDocumentTypesResultsDto
|
|
7703
|
+
export interface ImaCertificateTypeDocumentTypesResultsDto {
|
|
7976
7704
|
heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
|
|
7977
7705
|
ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
|
|
7978
7706
|
liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
|
|
@@ -7986,13 +7714,7 @@ export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityR
|
|
|
7986
7714
|
microExaminationReport?: ImaCertificateTypeResultLine | null;
|
|
7987
7715
|
radiologicalReport?: ImaCertificateTypeResultLine | null;
|
|
7988
7716
|
}
|
|
7989
|
-
export interface
|
|
7990
|
-
chemistry: ImaSpecificationChemistryResultsDto;
|
|
7991
|
-
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
7992
|
-
ferrite: ImaSpecificationFerriteResultsDto;
|
|
7993
|
-
heatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
7994
|
-
}
|
|
7995
|
-
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
7717
|
+
export interface ImaSpecificationChemistryResultsDto {
|
|
7996
7718
|
carbon?: ImaSpecificationResultLineDto | null;
|
|
7997
7719
|
manganese?: ImaSpecificationResultLineDto | null;
|
|
7998
7720
|
silicon?: ImaSpecificationResultLineDto | null;
|
|
@@ -8006,7 +7728,7 @@ export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBas
|
|
|
8006
7728
|
wolfram?: ImaSpecificationResultLineDto | null;
|
|
8007
7729
|
iron?: ImaSpecificationResultLineDto | null;
|
|
8008
7730
|
}
|
|
8009
|
-
export interface ImaSpecificationResultLineDto
|
|
7731
|
+
export interface ImaSpecificationResultLineDto {
|
|
8010
7732
|
specificationOperator?: string | null;
|
|
8011
7733
|
specificationValue1?: number | null;
|
|
8012
7734
|
specificationValue2?: number | null;
|
|
@@ -8017,7 +7739,7 @@ export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
|
|
|
8017
7739
|
}
|
|
8018
7740
|
export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenheit" | "Mpa" | "Hbw" | "Minutes" | "NotSet";
|
|
8019
7741
|
export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8020
|
-
export interface ImaSpecificationMechanicalResultsDto
|
|
7742
|
+
export interface ImaSpecificationMechanicalResultsDto {
|
|
8021
7743
|
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
8022
7744
|
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
8023
7745
|
elongation?: ImaSpecificationResultLineDto | null;
|
|
@@ -8025,7 +7747,7 @@ export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBa
|
|
|
8025
7747
|
impactEnergy?: ImaSpecificationResultLineDto | null;
|
|
8026
7748
|
hardness?: ImaSpecificationResultLineDto | null;
|
|
8027
7749
|
}
|
|
8028
|
-
export interface ImaSpecificationFerriteResultsDto
|
|
7750
|
+
export interface ImaSpecificationFerriteResultsDto {
|
|
8029
7751
|
ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
|
|
8030
7752
|
}
|
|
8031
7753
|
export interface ImaSpecificationFerriteResultLineDto {
|
|
@@ -8038,17 +7760,17 @@ export interface ImaSpecificationFerriteResultLineDto {
|
|
|
8038
7760
|
override?: ImaResultLineOverrideDto | null;
|
|
8039
7761
|
measurementMethod?: string | null;
|
|
8040
7762
|
}
|
|
8041
|
-
export interface ImaSpecificationHeatTreatmentResultDto
|
|
7763
|
+
export interface ImaSpecificationHeatTreatmentResultDto {
|
|
8042
7764
|
step: number;
|
|
8043
7765
|
cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
|
|
8044
7766
|
heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
|
|
8045
7767
|
}
|
|
8046
|
-
export interface ImaSpecificationHeatTreatmentCoolingResult
|
|
7768
|
+
export interface ImaSpecificationHeatTreatmentCoolingResult {
|
|
8047
7769
|
coolingMethods?: string[] | null;
|
|
8048
7770
|
temperature?: ImaSpecificationResultLineDto | null;
|
|
8049
7771
|
duration?: ImaSpecificationResultLineDto | null;
|
|
8050
7772
|
}
|
|
8051
|
-
export interface ImaSpecificationHeatTreatmentHeatingResult
|
|
7773
|
+
export interface ImaSpecificationHeatTreatmentHeatingResult {
|
|
8052
7774
|
heatingMethod?: string | null;
|
|
8053
7775
|
temperature?: ImaSpecificationResultLineDto | null;
|
|
8054
7776
|
duration?: ImaSpecificationResultLineDto | null;
|
|
@@ -8065,113 +7787,312 @@ export interface ProcessMaterialCertificate {
|
|
|
8065
7787
|
export interface UploadFileCdfDto {
|
|
8066
7788
|
id: number;
|
|
8067
7789
|
}
|
|
8068
|
-
export interface
|
|
8069
|
-
|
|
8070
|
-
|
|
8071
|
-
|
|
8072
|
-
|
|
8073
|
-
|
|
7790
|
+
export interface ImaUpdateResultRequestDto {
|
|
7791
|
+
certificateId: string;
|
|
7792
|
+
project?: string | null;
|
|
7793
|
+
purchaseOrder?: string | null;
|
|
7794
|
+
workOrder?: string | null;
|
|
7795
|
+
certificateTypeSection: ImaUpdateCertificateTypeResultsDto;
|
|
7796
|
+
specificationChemistrySpecification: ImaUpdateSpecificationChemistryResultsDto;
|
|
7797
|
+
specificationMechanicalSpecification: ImaUpdateSpecificationMechanicalResultsDto;
|
|
7798
|
+
specificationFerriteSpecification: ImaUpdateSpecificationFerriteResultsDto;
|
|
7799
|
+
specificationHeatSpecification: ImaUpdateSpecificationHeatTreatmentResultsDto;
|
|
8074
7800
|
}
|
|
8075
7801
|
export interface ImaUpdateCertificateTypeResultsDto {
|
|
8076
|
-
manufacturer
|
|
8077
|
-
signature
|
|
8078
|
-
thirdParty
|
|
8079
|
-
certification
|
|
8080
|
-
certificateTypeProductAndOrderInformation
|
|
8081
|
-
testMethodsAndReferences
|
|
8082
|
-
testResults
|
|
8083
|
-
documentTypes
|
|
7802
|
+
manufacturer: ImaUpdateCertificateTypeManufacturerResultsDto;
|
|
7803
|
+
signature: ImaUpdateCertificateTypeSignatureResultsDto;
|
|
7804
|
+
thirdParty: ImaUpdateCertificateTypeThirdPartyResultsDto;
|
|
7805
|
+
certification: ImaUpdateCertificateTypeCertificationResultsDto;
|
|
7806
|
+
certificateTypeProductAndOrderInformation: ImaUpdateCertificateTypeProductAndOrderInformationResultsDto;
|
|
7807
|
+
testMethodsAndReferences: ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
7808
|
+
testResults: ImaUpdateCertificateTypeTestResultsResultsDto;
|
|
7809
|
+
documentTypes: ImaUpdateCertificateTypeDocumentTypesResultsDto;
|
|
8084
7810
|
}
|
|
8085
7811
|
export interface ImaUpdateCertificateTypeManufacturerResultsDto {
|
|
8086
|
-
manufacturer?:
|
|
8087
|
-
address?:
|
|
8088
|
-
contact?:
|
|
7812
|
+
manufacturer?: ImaUpdateCertificateTypeResultLine | null;
|
|
7813
|
+
address?: ImaUpdateCertificateTypeResultLine | null;
|
|
7814
|
+
contact?: ImaUpdateCertificateTypeResultLine | null;
|
|
8089
7815
|
}
|
|
8090
|
-
export interface
|
|
8091
|
-
approved?: boolean;
|
|
7816
|
+
export interface ImaUpdateCertificateTypeResultLine {
|
|
7817
|
+
approved?: boolean | null;
|
|
8092
7818
|
comment?: string | null;
|
|
8093
7819
|
}
|
|
8094
7820
|
export interface ImaUpdateCertificateTypeSignatureResultsDto {
|
|
8095
|
-
certifiedBy?:
|
|
8096
|
-
position?:
|
|
8097
|
-
signature?:
|
|
8098
|
-
date?:
|
|
8099
|
-
stamp?:
|
|
7821
|
+
certifiedBy?: ImaUpdateCertificateTypeResultLine | null;
|
|
7822
|
+
position?: ImaUpdateCertificateTypeResultLine | null;
|
|
7823
|
+
signature?: ImaUpdateCertificateTypeResultLine | null;
|
|
7824
|
+
date?: ImaUpdateCertificateTypeResultLine | null;
|
|
7825
|
+
stamp?: ImaUpdateCertificateTypeResultLine | null;
|
|
8100
7826
|
}
|
|
8101
7827
|
export interface ImaUpdateCertificateTypeThirdPartyResultsDto {
|
|
8102
|
-
inspectionBody?:
|
|
8103
|
-
inspectorName?:
|
|
8104
|
-
position?:
|
|
8105
|
-
verificationMethod?:
|
|
8106
|
-
signature?:
|
|
8107
|
-
date?:
|
|
8108
|
-
stamp?:
|
|
7828
|
+
inspectionBody?: ImaUpdateCertificateTypeResultLine | null;
|
|
7829
|
+
inspectorName?: ImaUpdateCertificateTypeResultLine | null;
|
|
7830
|
+
position?: ImaUpdateCertificateTypeResultLine | null;
|
|
7831
|
+
verificationMethod?: ImaUpdateCertificateTypeResultLine | null;
|
|
7832
|
+
signature?: ImaUpdateCertificateTypeResultLine | null;
|
|
7833
|
+
date?: ImaUpdateCertificateTypeResultLine | null;
|
|
7834
|
+
stamp?: ImaUpdateCertificateTypeResultLine | null;
|
|
8109
7835
|
}
|
|
8110
7836
|
export interface ImaUpdateCertificateTypeCertificationResultsDto {
|
|
8111
|
-
certificateOfCompliance?:
|
|
8112
|
-
inspectionCertificate?:
|
|
7837
|
+
certificateOfCompliance?: ImaUpdateCertificateTypeResultLine | null;
|
|
7838
|
+
inspectionCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
8113
7839
|
}
|
|
8114
7840
|
export interface ImaUpdateCertificateTypeProductAndOrderInformationResultsDto {
|
|
8115
|
-
productDescription?:
|
|
8116
|
-
materialGrade?:
|
|
8117
|
-
customer?:
|
|
8118
|
-
customerOrderNumber?:
|
|
8119
|
-
dimensionsOrWeight?:
|
|
8120
|
-
batchNumber?:
|
|
8121
|
-
heatNumber?:
|
|
8122
|
-
relatedStandards?:
|
|
7841
|
+
productDescription?: ImaUpdateCertificateTypeResultLine | null;
|
|
7842
|
+
materialGrade?: ImaUpdateCertificateTypeResultLine | null;
|
|
7843
|
+
customer?: ImaUpdateCertificateTypeResultLine | null;
|
|
7844
|
+
customerOrderNumber?: ImaUpdateCertificateTypeResultLine | null;
|
|
7845
|
+
dimensionsOrWeight?: ImaUpdateCertificateTypeResultLine | null;
|
|
7846
|
+
batchNumber?: ImaUpdateCertificateTypeResultLine | null;
|
|
7847
|
+
heatNumber?: ImaUpdateCertificateTypeResultLine | null;
|
|
7848
|
+
relatedStandards?: ImaUpdateCertificateTypeResultLine | null;
|
|
8123
7849
|
}
|
|
8124
7850
|
export interface ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8125
|
-
usedStandards?:
|
|
7851
|
+
usedStandards?: ImaUpdateCertificateTypeResultLine | null;
|
|
8126
7852
|
}
|
|
8127
7853
|
export interface ImaUpdateCertificateTypeTestResultsResultsDto {
|
|
8128
|
-
mechanicalProperties?:
|
|
8129
|
-
chemicalAnalysis?:
|
|
8130
|
-
impactTests?:
|
|
8131
|
-
corrosionTests?:
|
|
8132
|
-
ferriteContentAndMicrostructure?:
|
|
7854
|
+
mechanicalProperties?: ImaUpdateCertificateTypeResultLine | null;
|
|
7855
|
+
chemicalAnalysis?: ImaUpdateCertificateTypeResultLine | null;
|
|
7856
|
+
impactTests?: ImaUpdateCertificateTypeResultLine | null;
|
|
7857
|
+
corrosionTests?: ImaUpdateCertificateTypeResultLine | null;
|
|
7858
|
+
ferriteContentAndMicrostructure?: ImaUpdateCertificateTypeResultLine | null;
|
|
8133
7859
|
}
|
|
8134
7860
|
export interface ImaUpdateCertificateTypeDocumentTypesResultsDto {
|
|
8135
|
-
heatTreatmentCertificate?:
|
|
8136
|
-
ultrasonicControlCertificate?:
|
|
8137
|
-
liquidPenetrantCertificate?:
|
|
8138
|
-
testReport?:
|
|
8139
|
-
dimensionalReport?:
|
|
8140
|
-
dyePenetrantReport?:
|
|
8141
|
-
visualReport?:
|
|
8142
|
-
certificateOfAnalyticalAndMechanicalTests?:
|
|
8143
|
-
certificateOfTest?:
|
|
8144
|
-
technicalReport?:
|
|
8145
|
-
microExaminationReport?:
|
|
8146
|
-
radiologicalReport?:
|
|
7861
|
+
heatTreatmentCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7862
|
+
ultrasonicControlCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7863
|
+
liquidPenetrantCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7864
|
+
testReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7865
|
+
dimensionalReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7866
|
+
dyePenetrantReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7867
|
+
visualReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7868
|
+
certificateOfAnalyticalAndMechanicalTests?: ImaUpdateCertificateTypeResultLine | null;
|
|
7869
|
+
certificateOfTest?: ImaUpdateCertificateTypeResultLine | null;
|
|
7870
|
+
technicalReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7871
|
+
microExaminationReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7872
|
+
radiologicalReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
8147
7873
|
}
|
|
8148
7874
|
export interface ImaUpdateSpecificationChemistryResultsDto {
|
|
8149
|
-
carbon?:
|
|
8150
|
-
manganese?:
|
|
8151
|
-
silicon?:
|
|
8152
|
-
phosphorus?:
|
|
8153
|
-
sulfur?:
|
|
8154
|
-
chromium?:
|
|
8155
|
-
nickel?:
|
|
8156
|
-
molybdenum?:
|
|
8157
|
-
copper?:
|
|
8158
|
-
nitrogen?:
|
|
8159
|
-
wolfram?:
|
|
8160
|
-
iron?:
|
|
7875
|
+
carbon?: ImaUpdateSpecificationResultLineDto | null;
|
|
7876
|
+
manganese?: ImaUpdateSpecificationResultLineDto | null;
|
|
7877
|
+
silicon?: ImaUpdateSpecificationResultLineDto | null;
|
|
7878
|
+
phosphorus?: ImaUpdateSpecificationResultLineDto | null;
|
|
7879
|
+
sulfur?: ImaUpdateSpecificationResultLineDto | null;
|
|
7880
|
+
chromium?: ImaUpdateSpecificationResultLineDto | null;
|
|
7881
|
+
nickel?: ImaUpdateSpecificationResultLineDto | null;
|
|
7882
|
+
molybdenum?: ImaUpdateSpecificationResultLineDto | null;
|
|
7883
|
+
copper?: ImaUpdateSpecificationResultLineDto | null;
|
|
7884
|
+
nitrogen?: ImaUpdateSpecificationResultLineDto | null;
|
|
7885
|
+
wolfram?: ImaUpdateSpecificationResultLineDto | null;
|
|
7886
|
+
iron?: ImaUpdateSpecificationResultLineDto | null;
|
|
7887
|
+
}
|
|
7888
|
+
export interface ImaUpdateSpecificationResultLineDto {
|
|
7889
|
+
approved?: boolean;
|
|
7890
|
+
comment?: string | null;
|
|
8161
7891
|
}
|
|
8162
7892
|
export interface ImaUpdateSpecificationMechanicalResultsDto {
|
|
8163
|
-
yieldStrength?:
|
|
8164
|
-
tensileStrength?:
|
|
8165
|
-
elongation?:
|
|
8166
|
-
reductionOfArea?:
|
|
8167
|
-
impactEnergy?:
|
|
8168
|
-
hardness?:
|
|
7893
|
+
yieldStrength?: ImaUpdateSpecificationResultLineDto | null;
|
|
7894
|
+
tensileStrength?: ImaUpdateSpecificationResultLineDto | null;
|
|
7895
|
+
elongation?: ImaUpdateSpecificationResultLineDto | null;
|
|
7896
|
+
reductionOfArea?: ImaUpdateSpecificationResultLineDto | null;
|
|
7897
|
+
impactEnergy?: ImaUpdateSpecificationResultLineDto | null;
|
|
7898
|
+
hardness?: ImaUpdateSpecificationResultLineDto | null;
|
|
8169
7899
|
}
|
|
8170
7900
|
export interface ImaUpdateSpecificationFerriteResultsDto {
|
|
8171
|
-
ferriteContent?:
|
|
7901
|
+
ferriteContent?: ImaUpdateSpecificationResultLineDto | null;
|
|
8172
7902
|
}
|
|
8173
7903
|
export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
|
|
8174
|
-
heatTreatmentOverrides
|
|
7904
|
+
heatTreatmentOverrides: (ImaUpdateSpecificationResultLineDto | null)[];
|
|
7905
|
+
}
|
|
7906
|
+
export interface ImaCdfEntityReadBase {
|
|
7907
|
+
}
|
|
7908
|
+
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
7909
|
+
certificateTypeId: string;
|
|
7910
|
+
version: number;
|
|
7911
|
+
allVersions: ImaCertificateTypeVersionDto[];
|
|
7912
|
+
name: string;
|
|
7913
|
+
revision: string;
|
|
7914
|
+
status: ImaCertificateTypeStatus;
|
|
7915
|
+
description?: string | null;
|
|
7916
|
+
isStandardCertificateType: boolean;
|
|
7917
|
+
created: Date;
|
|
7918
|
+
createdBy: string;
|
|
7919
|
+
createdById: string;
|
|
7920
|
+
updatedBy?: string | null;
|
|
7921
|
+
updatedById?: string | null;
|
|
7922
|
+
updated: Date;
|
|
7923
|
+
isDeleted: boolean;
|
|
7924
|
+
requirements: ImaCertificateTypeRequirementsDto;
|
|
7925
|
+
}
|
|
7926
|
+
export interface ImaCertificateTypeVersionDto {
|
|
7927
|
+
version?: number;
|
|
7928
|
+
status?: ImaCertificateTypeStatus;
|
|
7929
|
+
}
|
|
7930
|
+
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7931
|
+
export interface ImaCertificateTypeRequirementsDto {
|
|
7932
|
+
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
7933
|
+
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
7934
|
+
thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
|
|
7935
|
+
certification: ImaCertificateTypeCertificationRequirementsDto;
|
|
7936
|
+
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
7937
|
+
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
7938
|
+
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
7939
|
+
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
7940
|
+
}
|
|
7941
|
+
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
7942
|
+
manufacturer?: boolean;
|
|
7943
|
+
address?: boolean;
|
|
7944
|
+
contact?: boolean;
|
|
7945
|
+
}
|
|
7946
|
+
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
7947
|
+
certifiedBy?: boolean;
|
|
7948
|
+
position?: boolean;
|
|
7949
|
+
signature?: boolean;
|
|
7950
|
+
date?: boolean;
|
|
7951
|
+
stamp?: boolean;
|
|
7952
|
+
}
|
|
7953
|
+
export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
|
|
7954
|
+
inspectionBody?: boolean;
|
|
7955
|
+
inspectorName?: boolean;
|
|
7956
|
+
position?: boolean;
|
|
7957
|
+
verificationMethod?: boolean;
|
|
7958
|
+
signature?: boolean;
|
|
7959
|
+
date?: boolean;
|
|
7960
|
+
stamp?: boolean;
|
|
7961
|
+
}
|
|
7962
|
+
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
7963
|
+
certificateOfCompliance?: boolean;
|
|
7964
|
+
inspectionCertificate?: boolean;
|
|
7965
|
+
}
|
|
7966
|
+
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
|
|
7967
|
+
productDescription?: boolean;
|
|
7968
|
+
materialGrade?: boolean;
|
|
7969
|
+
customer?: boolean;
|
|
7970
|
+
customerOrderNumber?: boolean;
|
|
7971
|
+
dimensionsOrWeight?: boolean;
|
|
7972
|
+
batchNumber?: boolean;
|
|
7973
|
+
heatNumber?: boolean;
|
|
7974
|
+
relatedStandards?: boolean;
|
|
7975
|
+
}
|
|
7976
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
7977
|
+
usedStandards?: boolean;
|
|
7978
|
+
}
|
|
7979
|
+
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
7980
|
+
mechanicalProperties?: boolean;
|
|
7981
|
+
chemicalAnalysis?: boolean;
|
|
7982
|
+
impactTests?: boolean;
|
|
7983
|
+
corrosionTests?: boolean;
|
|
7984
|
+
ferriteContentAndMicrostructure?: boolean;
|
|
7985
|
+
}
|
|
7986
|
+
export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
|
|
7987
|
+
heatTreatmentCertificate?: boolean;
|
|
7988
|
+
ultrasonicControlCertificate?: boolean;
|
|
7989
|
+
liquidPenetrantCertificate?: boolean;
|
|
7990
|
+
testReport?: boolean;
|
|
7991
|
+
dimensionalReport?: boolean;
|
|
7992
|
+
dyePenetrantReport?: boolean;
|
|
7993
|
+
visualReport?: boolean;
|
|
7994
|
+
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
7995
|
+
certificateOfTest?: boolean;
|
|
7996
|
+
technicalReport?: boolean;
|
|
7997
|
+
microExaminationReport?: boolean;
|
|
7998
|
+
radiologicalReport?: boolean;
|
|
7999
|
+
}
|
|
8000
|
+
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
8001
|
+
name: string;
|
|
8002
|
+
revision: string;
|
|
8003
|
+
description?: string | null;
|
|
8004
|
+
}
|
|
8005
|
+
export interface ImaUpdateImaCertificateTypeRequestDto {
|
|
8006
|
+
name?: string | null;
|
|
8007
|
+
revision?: string | null;
|
|
8008
|
+
status?: ImaCertificateTypeStatus | null;
|
|
8009
|
+
description?: string | null;
|
|
8010
|
+
requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
|
|
8011
|
+
}
|
|
8012
|
+
export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
8013
|
+
manufacturer?: ImaCertificateTypeManufacturerRequirementsUpdateDto | null;
|
|
8014
|
+
signature?: ImaCertificateTypeSignatureRequirementsUpdateDto | null;
|
|
8015
|
+
thirdParty?: ImaCertificateTypeThirdPartyRequirementsUpdateDto | null;
|
|
8016
|
+
certification?: ImaCertificateTypeCertificationRequirementsUpdateDto | null;
|
|
8017
|
+
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
8018
|
+
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
8019
|
+
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
8020
|
+
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
8021
|
+
}
|
|
8022
|
+
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
8023
|
+
manufacturer?: boolean | null;
|
|
8024
|
+
address?: boolean | null;
|
|
8025
|
+
contact?: boolean | null;
|
|
8026
|
+
}
|
|
8027
|
+
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
8028
|
+
certifiedBy?: boolean | null;
|
|
8029
|
+
position?: boolean | null;
|
|
8030
|
+
signature?: boolean | null;
|
|
8031
|
+
date?: boolean | null;
|
|
8032
|
+
stamp?: boolean | null;
|
|
8033
|
+
}
|
|
8034
|
+
export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
8035
|
+
inspectionBody?: boolean | null;
|
|
8036
|
+
inspectorName?: boolean | null;
|
|
8037
|
+
position?: boolean | null;
|
|
8038
|
+
verificationMethod?: boolean | null;
|
|
8039
|
+
signature?: boolean | null;
|
|
8040
|
+
date?: boolean | null;
|
|
8041
|
+
stamp?: boolean | null;
|
|
8042
|
+
}
|
|
8043
|
+
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
8044
|
+
certificateOfCompliance?: boolean | null;
|
|
8045
|
+
inspectionCertificate?: boolean | null;
|
|
8046
|
+
}
|
|
8047
|
+
export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
|
|
8048
|
+
productDescription?: boolean | null;
|
|
8049
|
+
materialGrade?: boolean | null;
|
|
8050
|
+
customer?: boolean | null;
|
|
8051
|
+
customerOrderNumber?: boolean | null;
|
|
8052
|
+
dimensionsOrWeight?: boolean | null;
|
|
8053
|
+
batchNumber?: boolean | null;
|
|
8054
|
+
heatNumber?: boolean | null;
|
|
8055
|
+
relatedStandards?: boolean | null;
|
|
8056
|
+
}
|
|
8057
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
8058
|
+
usedStandards?: boolean | null;
|
|
8059
|
+
}
|
|
8060
|
+
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
8061
|
+
mechanicalProperties?: boolean | null;
|
|
8062
|
+
chemicalAnalysis?: boolean | null;
|
|
8063
|
+
impactTests?: boolean | null;
|
|
8064
|
+
corrosionTests?: boolean | null;
|
|
8065
|
+
ferriteContentAndMicrostructure?: boolean | null;
|
|
8066
|
+
}
|
|
8067
|
+
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
8068
|
+
heatTreatmentCertificate?: boolean | null;
|
|
8069
|
+
ultrasonicControlCertificate?: boolean | null;
|
|
8070
|
+
liquidPenetrantCertificate?: boolean | null;
|
|
8071
|
+
testReport?: boolean | null;
|
|
8072
|
+
dimensionalReport?: boolean | null;
|
|
8073
|
+
dyePenetrantReport?: boolean | null;
|
|
8074
|
+
visualReport?: boolean | null;
|
|
8075
|
+
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
8076
|
+
certificateOfTest?: boolean | null;
|
|
8077
|
+
technicalReport?: boolean | null;
|
|
8078
|
+
microExaminationReport?: boolean | null;
|
|
8079
|
+
radiologicalReport?: boolean | null;
|
|
8080
|
+
}
|
|
8081
|
+
export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
8082
|
+
certificateTypeId: string;
|
|
8083
|
+
version: number;
|
|
8084
|
+
name: string;
|
|
8085
|
+
revision: string;
|
|
8086
|
+
status: ImaCertificateTypeStatus;
|
|
8087
|
+
description?: string | null;
|
|
8088
|
+
isStandardCertificateType: boolean;
|
|
8089
|
+
created: Date;
|
|
8090
|
+
createdBy: string;
|
|
8091
|
+
createdById: string;
|
|
8092
|
+
updatedBy?: string | null;
|
|
8093
|
+
updatedById?: string | null;
|
|
8094
|
+
updated: Date;
|
|
8095
|
+
isDeleted: boolean;
|
|
8175
8096
|
}
|
|
8176
8097
|
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
8177
8098
|
purchaseOrders: string[];
|
|
@@ -8204,6 +8125,7 @@ export interface Part {
|
|
|
8204
8125
|
drawingReference?: string | null;
|
|
8205
8126
|
material?: string | null;
|
|
8206
8127
|
planner?: User | null;
|
|
8128
|
+
documentRequirements?: string[];
|
|
8207
8129
|
}
|
|
8208
8130
|
export interface User {
|
|
8209
8131
|
id?: string | null;
|
|
@@ -8878,7 +8800,6 @@ export interface ListMeasurementFormsRequest {
|
|
|
8878
8800
|
pageSize?: number | null;
|
|
8879
8801
|
search?: string | null;
|
|
8880
8802
|
continuationToken?: string | null;
|
|
8881
|
-
tenantId?: string | null;
|
|
8882
8803
|
inactive?: boolean | null;
|
|
8883
8804
|
includeInactiveSupplierAccess?: boolean | null;
|
|
8884
8805
|
}
|
|
@@ -9074,7 +8995,6 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
|
|
|
9074
8995
|
externalOrderNumber?: string | null;
|
|
9075
8996
|
}
|
|
9076
8997
|
export interface ExportDimensionReportV2Request {
|
|
9077
|
-
tenantId?: string | null;
|
|
9078
8998
|
type: DimensionReportType;
|
|
9079
8999
|
extras?: DimensionReportExtras | null;
|
|
9080
9000
|
specificSerialNumbers?: string[] | null;
|
|
@@ -9415,6 +9335,79 @@ export interface SetDiscussionLastReadRequest {
|
|
|
9415
9335
|
operationId?: string | null;
|
|
9416
9336
|
resourceId?: string | null;
|
|
9417
9337
|
}
|
|
9338
|
+
export interface CompanyUserDto {
|
|
9339
|
+
companyId: string;
|
|
9340
|
+
userObjectId: string;
|
|
9341
|
+
username?: string | null;
|
|
9342
|
+
name?: string | null;
|
|
9343
|
+
roles: string[];
|
|
9344
|
+
}
|
|
9345
|
+
export interface CreateCompanyUser {
|
|
9346
|
+
username: string;
|
|
9347
|
+
name: string;
|
|
9348
|
+
roles: string[];
|
|
9349
|
+
companyId?: string | null;
|
|
9350
|
+
}
|
|
9351
|
+
export interface UpdateCompanyUserRequest {
|
|
9352
|
+
roles: string[];
|
|
9353
|
+
companyId?: string | null;
|
|
9354
|
+
}
|
|
9355
|
+
export interface ExternalRoleDto {
|
|
9356
|
+
id: string;
|
|
9357
|
+
name: string;
|
|
9358
|
+
}
|
|
9359
|
+
export interface CompanyCustomerDto {
|
|
9360
|
+
customerTenantId?: string | null;
|
|
9361
|
+
customerAzureAdTenantId?: string | null;
|
|
9362
|
+
customerName?: string | null;
|
|
9363
|
+
supplierId?: string | null;
|
|
9364
|
+
supplierName?: string | null;
|
|
9365
|
+
customerIgnosPortalPrefix?: string | null;
|
|
9366
|
+
}
|
|
9367
|
+
export interface CompanyDto {
|
|
9368
|
+
id?: string;
|
|
9369
|
+
name?: string;
|
|
9370
|
+
organizationNumber?: string | null;
|
|
9371
|
+
country?: string;
|
|
9372
|
+
tenantId?: string | null;
|
|
9373
|
+
}
|
|
9374
|
+
export interface SupplierInviteDto {
|
|
9375
|
+
id: string;
|
|
9376
|
+
supplierId: string;
|
|
9377
|
+
supplierName?: string | null;
|
|
9378
|
+
customerName?: string | null;
|
|
9379
|
+
userId: string;
|
|
9380
|
+
userName?: string | null;
|
|
9381
|
+
companyId?: string | null;
|
|
9382
|
+
deadline: Date;
|
|
9383
|
+
acceptedTimestamp?: Date | null;
|
|
9384
|
+
createdTime: Date;
|
|
9385
|
+
createdBy: string;
|
|
9386
|
+
}
|
|
9387
|
+
export interface AcceptSupplierInvite {
|
|
9388
|
+
companyName?: string;
|
|
9389
|
+
organizationNumber?: string;
|
|
9390
|
+
threeLetterIsoCountry?: string;
|
|
9391
|
+
}
|
|
9392
|
+
export interface CreateSupplierInvite {
|
|
9393
|
+
supplierId: string;
|
|
9394
|
+
supplierName?: string | null;
|
|
9395
|
+
username: string;
|
|
9396
|
+
invitedName: string;
|
|
9397
|
+
deadline: Date;
|
|
9398
|
+
existingCompanyId?: string | null;
|
|
9399
|
+
}
|
|
9400
|
+
export interface ExternalSupplierDto {
|
|
9401
|
+
id: string;
|
|
9402
|
+
name: string;
|
|
9403
|
+
companyId: string;
|
|
9404
|
+
active: boolean;
|
|
9405
|
+
}
|
|
9406
|
+
export interface CreateSupplierMapping {
|
|
9407
|
+
companyId: string;
|
|
9408
|
+
existingSupplierId: string;
|
|
9409
|
+
newSupplierId: string;
|
|
9410
|
+
}
|
|
9418
9411
|
export type FeatureCollectionType = "FeatureCollection";
|
|
9419
9412
|
export interface Features {
|
|
9420
9413
|
type: FeaturesType;
|