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