@ignos/api-client 20260320.87.1-alpha → 20260323.89.1-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ignosportal-api.d.ts +258 -263
- package/lib/ignosportal-api.js +4142 -4095
- package/package.json +1 -1
- package/src/ignosportal-api.ts +5945 -5908
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -124,6 +124,7 @@ export declare class CustomersClient extends AuthorizedApiBase implements ICusto
|
|
|
124
124
|
}
|
|
125
125
|
export interface IGuestsClient {
|
|
126
126
|
getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
127
|
+
getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
127
128
|
}
|
|
128
129
|
export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
|
|
129
130
|
private http;
|
|
@@ -133,6 +134,8 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
|
|
|
133
134
|
});
|
|
134
135
|
getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
135
136
|
protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
137
|
+
getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
138
|
+
protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
136
139
|
}
|
|
137
140
|
export interface IPresentationClient {
|
|
138
141
|
getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
|
|
@@ -1425,99 +1428,6 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
|
|
|
1425
1428
|
listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
|
|
1426
1429
|
protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
|
|
1427
1430
|
}
|
|
1428
|
-
export interface IExternalAccessClient {
|
|
1429
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1430
|
-
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1431
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1432
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1433
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1434
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1435
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1436
|
-
}
|
|
1437
|
-
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
1438
|
-
private http;
|
|
1439
|
-
private baseUrl;
|
|
1440
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1441
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1442
|
-
});
|
|
1443
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1444
|
-
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
1445
|
-
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1446
|
-
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1447
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1448
|
-
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1449
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1450
|
-
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
1451
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1452
|
-
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
1453
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1454
|
-
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
1455
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1456
|
-
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
1457
|
-
}
|
|
1458
|
-
export interface IExternalClient {
|
|
1459
|
-
listInvites(): Promise<InviteDto[]>;
|
|
1460
|
-
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1461
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
1462
|
-
}
|
|
1463
|
-
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
1464
|
-
private http;
|
|
1465
|
-
private baseUrl;
|
|
1466
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1467
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1468
|
-
});
|
|
1469
|
-
listInvites(): Promise<InviteDto[]>;
|
|
1470
|
-
protected processListInvites(response: Response): Promise<InviteDto[]>;
|
|
1471
|
-
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1472
|
-
protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
|
|
1473
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
1474
|
-
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
1475
|
-
}
|
|
1476
|
-
export interface ISuppliersClient {
|
|
1477
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1478
|
-
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1479
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
1480
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1481
|
-
deleteSupplier(id: string): Promise<void>;
|
|
1482
|
-
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1483
|
-
/**
|
|
1484
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
1485
|
-
*/
|
|
1486
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1487
|
-
/**
|
|
1488
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1489
|
-
*/
|
|
1490
|
-
deleteSupplierMappings(): Promise<void>;
|
|
1491
|
-
}
|
|
1492
|
-
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
1493
|
-
private http;
|
|
1494
|
-
private baseUrl;
|
|
1495
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1496
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1497
|
-
});
|
|
1498
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1499
|
-
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
1500
|
-
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1501
|
-
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
1502
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
1503
|
-
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
1504
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1505
|
-
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
1506
|
-
deleteSupplier(id: string): Promise<void>;
|
|
1507
|
-
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
1508
|
-
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1509
|
-
protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
|
|
1510
|
-
/**
|
|
1511
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
1512
|
-
*/
|
|
1513
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1514
|
-
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
1515
|
-
/**
|
|
1516
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1517
|
-
*/
|
|
1518
|
-
deleteSupplierMappings(): Promise<void>;
|
|
1519
|
-
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
1520
|
-
}
|
|
1521
1431
|
export interface ICncFileTransferClient {
|
|
1522
1432
|
startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
|
|
1523
1433
|
startCncMachineOperationTransferToMachine(id: string): Promise<CncMachineTransferDto>;
|
|
@@ -2516,6 +2426,7 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
|
|
|
2516
2426
|
export interface IInspectMatchCertificateChecksClient {
|
|
2517
2427
|
listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
|
|
2518
2428
|
getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2429
|
+
deleteMaterialCheck(id: string): Promise<void>;
|
|
2519
2430
|
processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
|
|
2520
2431
|
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2521
2432
|
}
|
|
@@ -2529,6 +2440,8 @@ export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBa
|
|
|
2529
2440
|
protected processListMaterialCertificateChecks(response: Response): Promise<ImaMaterialChecksPageDto>;
|
|
2530
2441
|
getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2531
2442
|
protected processGetMaterialCertificateCheck(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2443
|
+
deleteMaterialCheck(id: string): Promise<void>;
|
|
2444
|
+
protected processDeleteMaterialCheck(response: Response): Promise<void>;
|
|
2532
2445
|
processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
|
|
2533
2446
|
protected processProcessMaterialCertificate(response: Response): Promise<void>;
|
|
2534
2447
|
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
@@ -2537,8 +2450,8 @@ export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBa
|
|
|
2537
2450
|
export interface IInspectMatchCertificateTypesClient {
|
|
2538
2451
|
listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2539
2452
|
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2540
|
-
|
|
2541
|
-
|
|
2453
|
+
updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2454
|
+
deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void>;
|
|
2542
2455
|
createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2543
2456
|
copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2544
2457
|
createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
@@ -2554,10 +2467,10 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
|
|
|
2554
2467
|
protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2555
2468
|
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2556
2469
|
protected processGetMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2557
|
-
|
|
2558
|
-
protected
|
|
2559
|
-
|
|
2560
|
-
protected
|
|
2470
|
+
updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2471
|
+
protected processUpdateMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2472
|
+
deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void>;
|
|
2473
|
+
protected processDeleteMaterialCertificateType(response: Response): Promise<void>;
|
|
2561
2474
|
createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2562
2475
|
protected processCreateMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2563
2476
|
copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
@@ -2570,9 +2483,9 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
|
|
|
2570
2483
|
export interface IInspectMatchSpecificationsClient {
|
|
2571
2484
|
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2572
2485
|
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2486
|
+
updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2487
|
+
deleteSpecification(id: string, version: number | null | undefined): Promise<void>;
|
|
2488
|
+
createSpecification(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2576
2489
|
copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2577
2490
|
createNewVersionForSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2578
2491
|
releaseSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
@@ -2587,12 +2500,12 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
|
|
|
2587
2500
|
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2588
2501
|
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2589
2502
|
protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2590
|
-
|
|
2591
|
-
protected
|
|
2592
|
-
|
|
2593
|
-
protected
|
|
2594
|
-
|
|
2595
|
-
protected
|
|
2503
|
+
updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2504
|
+
protected processUpdateSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2505
|
+
deleteSpecification(id: string, version: number | null | undefined): Promise<void>;
|
|
2506
|
+
protected processDeleteSpecification(response: Response): Promise<void>;
|
|
2507
|
+
createSpecification(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2508
|
+
protected processCreateSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2596
2509
|
copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2597
2510
|
protected processCopySpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2598
2511
|
createNewVersionForSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
@@ -2850,22 +2763,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
|
|
|
2850
2763
|
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
2851
2764
|
}
|
|
2852
2765
|
export interface IMeasurementFormsInstancesClient {
|
|
2853
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined,
|
|
2766
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2854
2767
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2855
|
-
getMeasurementFormInstance(id: string
|
|
2768
|
+
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2856
2769
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2857
|
-
completeMeasurementFormInstance(id: string
|
|
2858
|
-
completeMeasurementFormInstanceV2(id: string
|
|
2859
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined
|
|
2860
|
-
getWorkorderMeasurementFormProgress(id: string
|
|
2861
|
-
getAuditLog(id: string,
|
|
2770
|
+
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2771
|
+
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2772
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2773
|
+
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
2774
|
+
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2862
2775
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2863
|
-
saveValue(id: string,
|
|
2864
|
-
saveTool(id: string,
|
|
2865
|
-
saveComment(id: string,
|
|
2866
|
-
batchInsertValues(id: string,
|
|
2867
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string,
|
|
2868
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string,
|
|
2776
|
+
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2777
|
+
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2778
|
+
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
2779
|
+
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2780
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2781
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2869
2782
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
2870
2783
|
upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
|
|
2871
2784
|
removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
|
|
@@ -2881,37 +2794,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2881
2794
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2882
2795
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2883
2796
|
});
|
|
2884
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined,
|
|
2797
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2885
2798
|
protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2886
2799
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2887
2800
|
protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2888
|
-
getMeasurementFormInstance(id: string
|
|
2801
|
+
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2889
2802
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2890
2803
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2891
2804
|
protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2892
|
-
completeMeasurementFormInstance(id: string
|
|
2805
|
+
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2893
2806
|
protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2894
|
-
completeMeasurementFormInstanceV2(id: string
|
|
2807
|
+
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2895
2808
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2896
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined
|
|
2809
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2897
2810
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2898
|
-
getWorkorderMeasurementFormProgress(id: string
|
|
2811
|
+
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
2899
2812
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
2900
|
-
getAuditLog(id: string,
|
|
2813
|
+
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2901
2814
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2902
2815
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2903
2816
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
2904
|
-
saveValue(id: string,
|
|
2817
|
+
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2905
2818
|
protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
|
|
2906
|
-
saveTool(id: string,
|
|
2819
|
+
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2907
2820
|
protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
|
|
2908
|
-
saveComment(id: string,
|
|
2821
|
+
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
2909
2822
|
protected processSaveComment(response: Response): Promise<void>;
|
|
2910
|
-
batchInsertValues(id: string,
|
|
2823
|
+
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2911
2824
|
protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
|
|
2912
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string,
|
|
2825
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2913
2826
|
protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
|
|
2914
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string,
|
|
2827
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2915
2828
|
protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
|
|
2916
2829
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
2917
2830
|
protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
@@ -2936,7 +2849,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
2936
2849
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2937
2850
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2938
2851
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2939
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string
|
|
2852
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
2940
2853
|
}
|
|
2941
2854
|
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
2942
2855
|
private http;
|
|
@@ -2960,7 +2873,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
|
|
|
2960
2873
|
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2961
2874
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2962
2875
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2963
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string
|
|
2876
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
2964
2877
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
2965
2878
|
}
|
|
2966
2879
|
export interface ICompaniesClient {
|
|
@@ -3300,6 +3213,99 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3300
3213
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3301
3214
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3302
3215
|
}
|
|
3216
|
+
export interface IExternalAccessClient {
|
|
3217
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3218
|
+
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3219
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3220
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3221
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3222
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3223
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3224
|
+
}
|
|
3225
|
+
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3226
|
+
private http;
|
|
3227
|
+
private baseUrl;
|
|
3228
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3229
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3230
|
+
});
|
|
3231
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3232
|
+
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
3233
|
+
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3234
|
+
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3235
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3236
|
+
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3237
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3238
|
+
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
3239
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3240
|
+
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
3241
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3242
|
+
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
3243
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3244
|
+
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
3245
|
+
}
|
|
3246
|
+
export interface IExternalClient {
|
|
3247
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3248
|
+
getCompany(id: string): Promise<CompanyDto>;
|
|
3249
|
+
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3250
|
+
acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
|
|
3251
|
+
}
|
|
3252
|
+
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3253
|
+
private http;
|
|
3254
|
+
private baseUrl;
|
|
3255
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3256
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3257
|
+
});
|
|
3258
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3259
|
+
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3260
|
+
getCompany(id: string): Promise<CompanyDto>;
|
|
3261
|
+
protected processGetCompany(response: Response): Promise<CompanyDto>;
|
|
3262
|
+
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3263
|
+
protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3264
|
+
acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
|
|
3265
|
+
protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3266
|
+
}
|
|
3267
|
+
export interface ISuppliersClient {
|
|
3268
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3269
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3270
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
3271
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3272
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3273
|
+
/**
|
|
3274
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3275
|
+
*/
|
|
3276
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3277
|
+
/**
|
|
3278
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3279
|
+
*/
|
|
3280
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3281
|
+
}
|
|
3282
|
+
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3283
|
+
private http;
|
|
3284
|
+
private baseUrl;
|
|
3285
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3286
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3287
|
+
});
|
|
3288
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3289
|
+
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3290
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3291
|
+
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3292
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
3293
|
+
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
3294
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3295
|
+
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3296
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3297
|
+
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3298
|
+
/**
|
|
3299
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3300
|
+
*/
|
|
3301
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3302
|
+
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3303
|
+
/**
|
|
3304
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3305
|
+
*/
|
|
3306
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3307
|
+
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3308
|
+
}
|
|
3303
3309
|
export interface AzureRegionDto {
|
|
3304
3310
|
displayName: string;
|
|
3305
3311
|
name: string;
|
|
@@ -3533,6 +3539,8 @@ export interface UserDetailsDto {
|
|
|
3533
3539
|
isExternalUser?: boolean;
|
|
3534
3540
|
isBetaTester?: boolean | null;
|
|
3535
3541
|
hasAccessToIgnos?: boolean;
|
|
3542
|
+
isInvitedUser?: boolean;
|
|
3543
|
+
isSupplier?: boolean;
|
|
3536
3544
|
}
|
|
3537
3545
|
export interface UserDto {
|
|
3538
3546
|
id?: string | null;
|
|
@@ -5400,97 +5408,6 @@ export interface DocumentGeneratorTypeDto {
|
|
|
5400
5408
|
key: string;
|
|
5401
5409
|
description: string;
|
|
5402
5410
|
}
|
|
5403
|
-
export interface CompanyUserDto {
|
|
5404
|
-
companyId?: string | null;
|
|
5405
|
-
username?: string | null;
|
|
5406
|
-
name?: string | null;
|
|
5407
|
-
roles?: string[] | null;
|
|
5408
|
-
}
|
|
5409
|
-
export interface CreateCompanyUserRequest {
|
|
5410
|
-
username: string;
|
|
5411
|
-
name: string;
|
|
5412
|
-
roles: string[];
|
|
5413
|
-
companyId?: string | null;
|
|
5414
|
-
}
|
|
5415
|
-
export interface UpdateCompanyUserRequest {
|
|
5416
|
-
name: string;
|
|
5417
|
-
roles: string[];
|
|
5418
|
-
companyId?: string | null;
|
|
5419
|
-
}
|
|
5420
|
-
export interface ExternalRoleDto {
|
|
5421
|
-
id: string;
|
|
5422
|
-
name: string;
|
|
5423
|
-
}
|
|
5424
|
-
export interface CompanyCustomerDto {
|
|
5425
|
-
customerTenantId?: string | null;
|
|
5426
|
-
customerAzureAdTenantId?: string | null;
|
|
5427
|
-
customerName?: string | null;
|
|
5428
|
-
supplierId?: string | null;
|
|
5429
|
-
supplierName?: string | null;
|
|
5430
|
-
}
|
|
5431
|
-
export interface InviteDto {
|
|
5432
|
-
tenantId: string;
|
|
5433
|
-
companyName: string;
|
|
5434
|
-
id: string;
|
|
5435
|
-
supplierId: string;
|
|
5436
|
-
supplierName: string;
|
|
5437
|
-
username: string;
|
|
5438
|
-
deadline: Date;
|
|
5439
|
-
createdTime: Date;
|
|
5440
|
-
createdBy: string;
|
|
5441
|
-
}
|
|
5442
|
-
export interface CompanyDto {
|
|
5443
|
-
id?: string | null;
|
|
5444
|
-
name?: string | null;
|
|
5445
|
-
organizationNumber?: string | null;
|
|
5446
|
-
country?: string | null;
|
|
5447
|
-
tenantId?: string | null;
|
|
5448
|
-
}
|
|
5449
|
-
export interface AcceptSupplierInviteRequest {
|
|
5450
|
-
tenantId: string;
|
|
5451
|
-
existingCompanyId?: string | null;
|
|
5452
|
-
companyName?: string | null;
|
|
5453
|
-
organizationNumber?: string | null;
|
|
5454
|
-
threeLetterIsoCountry?: string | null;
|
|
5455
|
-
}
|
|
5456
|
-
export interface SupplierInviteDto {
|
|
5457
|
-
id: string;
|
|
5458
|
-
supplierId: string;
|
|
5459
|
-
name: string;
|
|
5460
|
-
username: string;
|
|
5461
|
-
deadline: Date;
|
|
5462
|
-
createdTime: Date;
|
|
5463
|
-
createdBy: string;
|
|
5464
|
-
}
|
|
5465
|
-
export interface CreateSupplierInvite {
|
|
5466
|
-
supplierId: string;
|
|
5467
|
-
name: string;
|
|
5468
|
-
username: string;
|
|
5469
|
-
deadline: Date;
|
|
5470
|
-
}
|
|
5471
|
-
export interface ExternalSupplierDto {
|
|
5472
|
-
id: string;
|
|
5473
|
-
name: string;
|
|
5474
|
-
companyId: string;
|
|
5475
|
-
active: boolean;
|
|
5476
|
-
}
|
|
5477
|
-
export interface ImportSupplier {
|
|
5478
|
-
supplierId: string;
|
|
5479
|
-
name: string;
|
|
5480
|
-
organizationNumber?: string | null;
|
|
5481
|
-
threeLetterIsoCountry: string;
|
|
5482
|
-
users: ImportSupplierUserDto[];
|
|
5483
|
-
}
|
|
5484
|
-
export interface ImportSupplierUserDto {
|
|
5485
|
-
username: string;
|
|
5486
|
-
name: string;
|
|
5487
|
-
roles: string[];
|
|
5488
|
-
}
|
|
5489
|
-
export interface CreateSupplierMapping {
|
|
5490
|
-
companyId: string;
|
|
5491
|
-
existingSupplierId: string;
|
|
5492
|
-
newSupplierId: string;
|
|
5493
|
-
}
|
|
5494
5411
|
export interface CncMachineTransferDto {
|
|
5495
5412
|
id: string;
|
|
5496
5413
|
cncMachineOperationId?: string | null;
|
|
@@ -6492,6 +6409,7 @@ export interface BookingRequestListDto {
|
|
|
6492
6409
|
createdByFilter?: BookingCreatedByDto | null;
|
|
6493
6410
|
bookingOrder?: BookingOrderDto;
|
|
6494
6411
|
includeMyLocation?: boolean | null;
|
|
6412
|
+
maxAgeOfBookingInDays?: number | null;
|
|
6495
6413
|
continuationToken?: string | null;
|
|
6496
6414
|
}
|
|
6497
6415
|
export type BookingTaskDto = "MyTasks" | "OthersTasks";
|
|
@@ -7468,6 +7386,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
7468
7386
|
createdById: string;
|
|
7469
7387
|
updatedBy?: string | null;
|
|
7470
7388
|
updatedById?: string | null;
|
|
7389
|
+
isDeleted?: boolean;
|
|
7471
7390
|
}
|
|
7472
7391
|
export type ImaMaterialCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
|
|
7473
7392
|
export interface ImaMaterialChecksPageRequestDto {
|
|
@@ -7515,11 +7434,12 @@ export interface ImaMaterialCheckDto {
|
|
|
7515
7434
|
createdById: string;
|
|
7516
7435
|
updatedBy?: string | null;
|
|
7517
7436
|
updatedById?: string | null;
|
|
7437
|
+
isDeleted?: boolean;
|
|
7518
7438
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
7519
7439
|
specificationChemistry: ImaSpecificationChemistryResultsDto;
|
|
7520
7440
|
specificationMechanical: ImaSpecificationMechanicalResultsDto;
|
|
7521
7441
|
specificationFerrite: ImaSpecificationFerriteResultsDto;
|
|
7522
|
-
|
|
7442
|
+
specificationHeatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
7523
7443
|
}
|
|
7524
7444
|
export interface ImaCertificateTypeResultsDto {
|
|
7525
7445
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
@@ -7620,11 +7540,12 @@ export interface ImaSpecificationResultLineDto {
|
|
|
7620
7540
|
specificationOperator?: string | null;
|
|
7621
7541
|
specificationValue1?: number | null;
|
|
7622
7542
|
specificationValue2?: number | null;
|
|
7623
|
-
|
|
7543
|
+
specificationUnit?: ImaSpecificationUnit | null;
|
|
7624
7544
|
readValue?: string | null;
|
|
7625
7545
|
status: ImaSpecificationResultLineStatus;
|
|
7626
7546
|
override?: ImaResultLineOverrideDto | null;
|
|
7627
7547
|
}
|
|
7548
|
+
export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenheit" | "Mpa" | "Hbw" | "NotSet";
|
|
7628
7549
|
export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
7629
7550
|
export interface ImaSpecificationMechanicalResultsDto {
|
|
7630
7551
|
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
@@ -7647,26 +7568,21 @@ export interface ImaSpecificationFerriteResultLineDto {
|
|
|
7647
7568
|
override?: ImaResultLineOverrideDto | null;
|
|
7648
7569
|
measurementMethod?: string | null;
|
|
7649
7570
|
}
|
|
7650
|
-
export interface
|
|
7651
|
-
|
|
7652
|
-
|
|
7653
|
-
|
|
7654
|
-
|
|
7655
|
-
|
|
7656
|
-
|
|
7657
|
-
|
|
7658
|
-
|
|
7659
|
-
|
|
7660
|
-
|
|
7661
|
-
|
|
7662
|
-
|
|
7663
|
-
|
|
7664
|
-
coolingHoldingTime?: number | null;
|
|
7665
|
-
status: ImaSpecificationResultLineStatus;
|
|
7666
|
-
override?: ImaResultLineOverrideDto | null;
|
|
7571
|
+
export interface ImaSpecificationHeatTreatmentResultDto {
|
|
7572
|
+
step: number;
|
|
7573
|
+
cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
|
|
7574
|
+
heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
|
|
7575
|
+
}
|
|
7576
|
+
export interface ImaSpecificationHeatTreatmentCoolingResult {
|
|
7577
|
+
coolingMethods?: string[] | null;
|
|
7578
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
7579
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
7580
|
+
}
|
|
7581
|
+
export interface ImaSpecificationHeatTreatmentHeatingResult {
|
|
7582
|
+
heatingMethod?: string | null;
|
|
7583
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
7584
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
7667
7585
|
}
|
|
7668
|
-
export type ImaHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
|
|
7669
|
-
export type ImaCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching" | "NotSet";
|
|
7670
7586
|
export interface ProcessImaCheckRequestDto {
|
|
7671
7587
|
files: UploadFileDto[];
|
|
7672
7588
|
specificationId: string;
|
|
@@ -7807,6 +7723,7 @@ export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
|
7807
7723
|
updatedBy?: string | null;
|
|
7808
7724
|
updatedById?: string | null;
|
|
7809
7725
|
updated: Date;
|
|
7726
|
+
isDeleted: boolean;
|
|
7810
7727
|
}
|
|
7811
7728
|
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7812
7729
|
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
@@ -7824,6 +7741,7 @@ export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
|
7824
7741
|
updatedBy?: string | null;
|
|
7825
7742
|
updatedById?: string | null;
|
|
7826
7743
|
updated: Date;
|
|
7744
|
+
isDeleted: boolean;
|
|
7827
7745
|
requirements: ImaCertificateTypeRequirementsDto;
|
|
7828
7746
|
}
|
|
7829
7747
|
export interface ImaCertificateTypeVersionDto {
|
|
@@ -7995,6 +7913,7 @@ export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
|
|
|
7995
7913
|
createdById: string;
|
|
7996
7914
|
updatedBy: string;
|
|
7997
7915
|
updatedById: string;
|
|
7916
|
+
isDeleted: boolean;
|
|
7998
7917
|
}
|
|
7999
7918
|
export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8000
7919
|
export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
@@ -8014,10 +7933,11 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8014
7933
|
updatedBy: string;
|
|
8015
7934
|
updatedById: string;
|
|
8016
7935
|
updated: Date;
|
|
7936
|
+
isDeleted: boolean;
|
|
8017
7937
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8018
7938
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8019
7939
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8020
|
-
|
|
7940
|
+
heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
|
|
8021
7941
|
}
|
|
8022
7942
|
export interface ImaSpecificationVersionDto {
|
|
8023
7943
|
version?: number;
|
|
@@ -8041,10 +7961,9 @@ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
|
8041
7961
|
operator: ImaSpecificationOperator;
|
|
8042
7962
|
value1: number;
|
|
8043
7963
|
value2?: number | null;
|
|
8044
|
-
|
|
7964
|
+
unit: ImaSpecificationUnit;
|
|
8045
7965
|
}
|
|
8046
7966
|
export type ImaSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
|
|
8047
|
-
export type ImaSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
|
|
8048
7967
|
export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
8049
7968
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8050
7969
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
@@ -8056,17 +7975,23 @@ export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8056
7975
|
export interface ImaFerriteSpecificationDto extends ImaCdfEntityReadBase {
|
|
8057
7976
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8058
7977
|
}
|
|
8059
|
-
export interface ImaHeatTreatmentSpecificationDto {
|
|
8060
|
-
|
|
7978
|
+
export interface ImaHeatTreatmentSpecificationDto extends ImaCdfEntityReadBase {
|
|
7979
|
+
step: number;
|
|
7980
|
+
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
7981
|
+
heating?: ImaHeatTreatmentSpecificationHeatingDto | null;
|
|
7982
|
+
}
|
|
7983
|
+
export interface ImaHeatTreatmentSpecificationCoolingDto extends ImaCdfEntityReadBase {
|
|
7984
|
+
coolingMethods: ImaHeatTreatmentCoolingMethod[];
|
|
7985
|
+
temperature?: ImaSpecificationLineDto | null;
|
|
7986
|
+
duration?: ImaSpecificationLineDto | null;
|
|
8061
7987
|
}
|
|
8062
|
-
export
|
|
8063
|
-
|
|
8064
|
-
|
|
8065
|
-
|
|
8066
|
-
|
|
8067
|
-
coolingTreatmentTemperature?: number | null;
|
|
8068
|
-
coolingHoldingTime?: number | null;
|
|
7988
|
+
export type ImaHeatTreatmentCoolingMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching" | "NotSet";
|
|
7989
|
+
export interface ImaHeatTreatmentSpecificationHeatingDto extends ImaCdfEntityReadBase {
|
|
7990
|
+
heatingMethod: ImaHeatTreatmentHeatingMethod;
|
|
7991
|
+
temperature?: ImaSpecificationLineDto | null;
|
|
7992
|
+
duration?: ImaSpecificationLineDto | null;
|
|
8069
7993
|
}
|
|
7994
|
+
export type ImaHeatTreatmentHeatingMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
|
|
8070
7995
|
export interface ImaCreateSpecificationRequestDto {
|
|
8071
7996
|
specificationName: string;
|
|
8072
7997
|
specificationNumber: string;
|
|
@@ -8089,7 +8014,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8089
8014
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
8090
8015
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
8091
8016
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8092
|
-
|
|
8017
|
+
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8093
8018
|
}
|
|
8094
8019
|
export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
8095
8020
|
export interface MeasurementFormSchemaDto {
|
|
@@ -8640,7 +8565,6 @@ export interface ListMeasurementFormsRequest {
|
|
|
8640
8565
|
pageSize?: number | null;
|
|
8641
8566
|
search?: string | null;
|
|
8642
8567
|
continuationToken?: string | null;
|
|
8643
|
-
tenantId?: string | null;
|
|
8644
8568
|
inactive?: boolean | null;
|
|
8645
8569
|
includeInactiveSupplierAccess?: boolean | null;
|
|
8646
8570
|
}
|
|
@@ -8836,7 +8760,6 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
|
|
|
8836
8760
|
externalOrderNumber?: string | null;
|
|
8837
8761
|
}
|
|
8838
8762
|
export interface ExportDimensionReportV2Request {
|
|
8839
|
-
tenantId?: string | null;
|
|
8840
8763
|
type: DimensionReportType;
|
|
8841
8764
|
extras?: DimensionReportExtras | null;
|
|
8842
8765
|
specificSerialNumbers?: string[] | null;
|
|
@@ -9177,6 +9100,78 @@ export interface SetDiscussionLastReadRequest {
|
|
|
9177
9100
|
operationId?: string | null;
|
|
9178
9101
|
resourceId?: string | null;
|
|
9179
9102
|
}
|
|
9103
|
+
export interface CompanyUserDto {
|
|
9104
|
+
companyId: string;
|
|
9105
|
+
userObjectId: string;
|
|
9106
|
+
username?: string | null;
|
|
9107
|
+
name?: string | null;
|
|
9108
|
+
roles: string[];
|
|
9109
|
+
}
|
|
9110
|
+
export interface CreateCompanyUser {
|
|
9111
|
+
username: string;
|
|
9112
|
+
name: string;
|
|
9113
|
+
roles: string[];
|
|
9114
|
+
companyId?: string | null;
|
|
9115
|
+
}
|
|
9116
|
+
export interface UpdateCompanyUserRequest {
|
|
9117
|
+
roles: string[];
|
|
9118
|
+
companyId?: string | null;
|
|
9119
|
+
}
|
|
9120
|
+
export interface ExternalRoleDto {
|
|
9121
|
+
id: string;
|
|
9122
|
+
name: string;
|
|
9123
|
+
}
|
|
9124
|
+
export interface CompanyCustomerDto {
|
|
9125
|
+
customerTenantId?: string | null;
|
|
9126
|
+
customerAzureAdTenantId?: string | null;
|
|
9127
|
+
customerName?: string | null;
|
|
9128
|
+
supplierId?: string | null;
|
|
9129
|
+
supplierName?: string | null;
|
|
9130
|
+
}
|
|
9131
|
+
export interface CompanyDto {
|
|
9132
|
+
id?: string;
|
|
9133
|
+
name?: string;
|
|
9134
|
+
organizationNumber?: string | null;
|
|
9135
|
+
country?: string;
|
|
9136
|
+
tenantId?: string | null;
|
|
9137
|
+
}
|
|
9138
|
+
export interface SupplierInviteDto {
|
|
9139
|
+
id: string;
|
|
9140
|
+
supplierId: string;
|
|
9141
|
+
supplierName?: string | null;
|
|
9142
|
+
customerName?: string | null;
|
|
9143
|
+
userId: string;
|
|
9144
|
+
userName?: string | null;
|
|
9145
|
+
companyId?: string | null;
|
|
9146
|
+
deadline: Date;
|
|
9147
|
+
acceptedTimestamp?: Date | null;
|
|
9148
|
+
createdTime: Date;
|
|
9149
|
+
createdBy: string;
|
|
9150
|
+
}
|
|
9151
|
+
export interface AcceptSupplierInvite {
|
|
9152
|
+
companyName?: string;
|
|
9153
|
+
organizationNumber?: string;
|
|
9154
|
+
threeLetterIsoCountry?: string;
|
|
9155
|
+
}
|
|
9156
|
+
export interface CreateSupplierInvite {
|
|
9157
|
+
supplierId: string;
|
|
9158
|
+
supplierName?: string | null;
|
|
9159
|
+
username: string;
|
|
9160
|
+
invitedName: string;
|
|
9161
|
+
deadline: Date;
|
|
9162
|
+
existingCompanyId?: string | null;
|
|
9163
|
+
}
|
|
9164
|
+
export interface ExternalSupplierDto {
|
|
9165
|
+
id: string;
|
|
9166
|
+
name: string;
|
|
9167
|
+
companyId: string;
|
|
9168
|
+
active: boolean;
|
|
9169
|
+
}
|
|
9170
|
+
export interface CreateSupplierMapping {
|
|
9171
|
+
companyId: string;
|
|
9172
|
+
existingSupplierId: string;
|
|
9173
|
+
newSupplierId: string;
|
|
9174
|
+
}
|
|
9180
9175
|
export interface FileParameter {
|
|
9181
9176
|
data: any;
|
|
9182
9177
|
fileName: string;
|