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