@ignos/api-client 20260407.101.1-alpha → 20260410.103.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 +309 -263
- package/lib/ignosportal-api.js +4164 -4123
- package/package.json +1 -1
- package/src/ignosportal-api.ts +5972 -5881
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>;
|
|
@@ -422,6 +419,7 @@ export declare class UserAppSettingsClient extends AuthorizedApiBase implements
|
|
|
422
419
|
}
|
|
423
420
|
export interface IUploadClient {
|
|
424
421
|
createUploadInfo(): Promise<UploadInfoDto>;
|
|
422
|
+
createUploadInfoCdf(request: CreateUploadInfoCdf): Promise<UploadInfoCdfDto>;
|
|
425
423
|
}
|
|
426
424
|
export declare class UploadClient extends AuthorizedApiBase implements IUploadClient {
|
|
427
425
|
private http;
|
|
@@ -431,6 +429,8 @@ export declare class UploadClient extends AuthorizedApiBase implements IUploadCl
|
|
|
431
429
|
});
|
|
432
430
|
createUploadInfo(): Promise<UploadInfoDto>;
|
|
433
431
|
protected processCreateUploadInfo(response: Response): Promise<UploadInfoDto>;
|
|
432
|
+
createUploadInfoCdf(request: CreateUploadInfoCdf): Promise<UploadInfoCdfDto>;
|
|
433
|
+
protected processCreateUploadInfoCdf(response: Response): Promise<UploadInfoCdfDto>;
|
|
434
434
|
}
|
|
435
435
|
export interface ISystemHealthDashboardClient {
|
|
436
436
|
getMachineDataHealth(assetId: number | null | undefined): Promise<DataHealthDto>;
|
|
@@ -1491,6 +1491,99 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
|
|
|
1491
1491
|
listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
|
|
1492
1492
|
protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
|
|
1493
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
|
+
}
|
|
1494
1587
|
export interface ICncFileTransferClient {
|
|
1495
1588
|
startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
|
|
1496
1589
|
startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
|
|
@@ -2510,30 +2603,20 @@ export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBa
|
|
|
2510
2603
|
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2511
2604
|
protected processUpdateMaterialCertificate(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2512
2605
|
}
|
|
2513
|
-
export interface
|
|
2514
|
-
listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2515
|
-
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2516
|
-
updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2517
|
-
deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void>;
|
|
2606
|
+
export interface IInspectMatchCertificateTypesAdminClient {
|
|
2518
2607
|
createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2519
2608
|
copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2520
2609
|
createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2521
2610
|
releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2611
|
+
updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2612
|
+
deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void>;
|
|
2522
2613
|
}
|
|
2523
|
-
export declare class
|
|
2614
|
+
export declare class InspectMatchCertificateTypesAdminClient extends AuthorizedApiBase implements IInspectMatchCertificateTypesAdminClient {
|
|
2524
2615
|
private http;
|
|
2525
2616
|
private baseUrl;
|
|
2526
2617
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2527
2618
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2528
2619
|
});
|
|
2529
|
-
listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2530
|
-
protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2531
|
-
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2532
|
-
protected processGetMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2533
|
-
updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2534
|
-
protected processUpdateMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2535
|
-
deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void>;
|
|
2536
|
-
protected processDeleteMaterialCertificateType(response: Response): Promise<void>;
|
|
2537
2620
|
createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2538
2621
|
protected processCreateMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2539
2622
|
copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
@@ -2542,6 +2625,25 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
|
|
|
2542
2625
|
protected processCreateNewVersionForCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2543
2626
|
releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2544
2627
|
protected processReleaseMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2628
|
+
updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2629
|
+
protected processUpdateMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2630
|
+
deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void>;
|
|
2631
|
+
protected processDeleteMaterialCertificateType(response: Response): Promise<void>;
|
|
2632
|
+
}
|
|
2633
|
+
export interface IInspectMatchCertificateTypesClient {
|
|
2634
|
+
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2635
|
+
listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2636
|
+
}
|
|
2637
|
+
export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBase implements IInspectMatchCertificateTypesClient {
|
|
2638
|
+
private http;
|
|
2639
|
+
private baseUrl;
|
|
2640
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2641
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2642
|
+
});
|
|
2643
|
+
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2644
|
+
protected processGetMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2645
|
+
listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2646
|
+
protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2545
2647
|
}
|
|
2546
2648
|
export interface IInspectMatchPurchaseOrderClient {
|
|
2547
2649
|
searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto>;
|
|
@@ -2561,30 +2663,20 @@ export declare class InspectMatchPurchaseOrderClient extends AuthorizedApiBase i
|
|
|
2561
2663
|
getPurchaseOrderLineDetails(purchaseOrder: string, lineNumber: number): Promise<PurchaseOrderMaterialLineDetailsDto>;
|
|
2562
2664
|
protected processGetPurchaseOrderLineDetails(response: Response): Promise<PurchaseOrderMaterialLineDetailsDto>;
|
|
2563
2665
|
}
|
|
2564
|
-
export interface
|
|
2565
|
-
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2566
|
-
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2567
|
-
updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2568
|
-
deleteSpecification(id: string, version: number | null | undefined): Promise<void>;
|
|
2666
|
+
export interface IInspectMatchSpecificationsAdminClient {
|
|
2569
2667
|
createSpecification(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2570
2668
|
copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2571
2669
|
createNewVersionForSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2572
2670
|
releaseSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2671
|
+
updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2672
|
+
deleteSpecification(id: string, version: number | null | undefined): Promise<void>;
|
|
2573
2673
|
}
|
|
2574
|
-
export declare class
|
|
2674
|
+
export declare class InspectMatchSpecificationsAdminClient extends AuthorizedApiBase implements IInspectMatchSpecificationsAdminClient {
|
|
2575
2675
|
private http;
|
|
2576
2676
|
private baseUrl;
|
|
2577
2677
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2578
2678
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2579
2679
|
});
|
|
2580
|
-
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2581
|
-
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2582
|
-
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2583
|
-
protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2584
|
-
updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2585
|
-
protected processUpdateSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2586
|
-
deleteSpecification(id: string, version: number | null | undefined): Promise<void>;
|
|
2587
|
-
protected processDeleteSpecification(response: Response): Promise<void>;
|
|
2588
2680
|
createSpecification(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2589
2681
|
protected processCreateSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2590
2682
|
copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
@@ -2593,6 +2685,25 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
|
|
|
2593
2685
|
protected processCreateNewVersionForSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2594
2686
|
releaseSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2595
2687
|
protected processReleaseSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2688
|
+
updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2689
|
+
protected processUpdateSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2690
|
+
deleteSpecification(id: string, version: number | null | undefined): Promise<void>;
|
|
2691
|
+
protected processDeleteSpecification(response: Response): Promise<void>;
|
|
2692
|
+
}
|
|
2693
|
+
export interface IInspectMatchSpecificationsClient {
|
|
2694
|
+
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2695
|
+
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2696
|
+
}
|
|
2697
|
+
export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase implements IInspectMatchSpecificationsClient {
|
|
2698
|
+
private http;
|
|
2699
|
+
private baseUrl;
|
|
2700
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2701
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2702
|
+
});
|
|
2703
|
+
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2704
|
+
protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2705
|
+
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2706
|
+
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2596
2707
|
}
|
|
2597
2708
|
export interface IMeasurementFormSchemasAdminClient {
|
|
2598
2709
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
@@ -2844,22 +2955,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
|
|
|
2844
2955
|
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
2845
2956
|
}
|
|
2846
2957
|
export interface IMeasurementFormsInstancesClient {
|
|
2847
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2958
|
+
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>;
|
|
2848
2959
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2849
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2960
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2850
2961
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2851
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2852
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2853
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2854
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
2855
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2962
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2963
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2964
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2965
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2966
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2856
2967
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2857
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2858
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2859
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
2860
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2861
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2862
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2968
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2969
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2970
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
2971
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2972
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2973
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2863
2974
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
2864
2975
|
upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
|
|
2865
2976
|
removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
|
|
@@ -2875,37 +2986,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2875
2986
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2876
2987
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2877
2988
|
});
|
|
2878
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2989
|
+
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>;
|
|
2879
2990
|
protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2880
2991
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2881
2992
|
protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2882
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2993
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2883
2994
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2884
2995
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2885
2996
|
protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2886
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2997
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2887
2998
|
protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2888
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2999
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2889
3000
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2890
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3001
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2891
3002
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2892
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
3003
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2893
3004
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
2894
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3005
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2895
3006
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2896
3007
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2897
3008
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
2898
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3009
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2899
3010
|
protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
|
|
2900
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3011
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2901
3012
|
protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
|
|
2902
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
3013
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
2903
3014
|
protected processSaveComment(response: Response): Promise<void>;
|
|
2904
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3015
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2905
3016
|
protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
|
|
2906
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3017
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2907
3018
|
protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
|
|
2908
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3019
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2909
3020
|
protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
|
|
2910
3021
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
2911
3022
|
protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
@@ -2930,7 +3041,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
2930
3041
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2931
3042
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2932
3043
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2933
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3044
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2934
3045
|
}
|
|
2935
3046
|
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
2936
3047
|
private http;
|
|
@@ -2954,7 +3065,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
|
|
|
2954
3065
|
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2955
3066
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2956
3067
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2957
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3068
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2958
3069
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
2959
3070
|
}
|
|
2960
3071
|
export interface ICompaniesClient {
|
|
@@ -3294,99 +3405,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3294
3405
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3295
3406
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3296
3407
|
}
|
|
3297
|
-
export interface IExternalAccessClient {
|
|
3298
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3299
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3300
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3301
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3302
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3303
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3304
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3305
|
-
}
|
|
3306
|
-
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3307
|
-
private http;
|
|
3308
|
-
private baseUrl;
|
|
3309
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3310
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3311
|
-
});
|
|
3312
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3313
|
-
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
3314
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3315
|
-
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3316
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3317
|
-
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3318
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3319
|
-
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
3320
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3321
|
-
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
3322
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3323
|
-
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
3324
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3325
|
-
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
3326
|
-
}
|
|
3327
|
-
export interface IExternalClient {
|
|
3328
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3329
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3330
|
-
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3331
|
-
acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
|
|
3332
|
-
}
|
|
3333
|
-
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3334
|
-
private http;
|
|
3335
|
-
private baseUrl;
|
|
3336
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3337
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3338
|
-
});
|
|
3339
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3340
|
-
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3341
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3342
|
-
protected processGetCompany(response: Response): Promise<CompanyDto>;
|
|
3343
|
-
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3344
|
-
protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3345
|
-
acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
|
|
3346
|
-
protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3347
|
-
}
|
|
3348
|
-
export interface ISuppliersClient {
|
|
3349
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3350
|
-
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3351
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3352
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3353
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3354
|
-
/**
|
|
3355
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3356
|
-
*/
|
|
3357
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3358
|
-
/**
|
|
3359
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3360
|
-
*/
|
|
3361
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3362
|
-
}
|
|
3363
|
-
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3364
|
-
private http;
|
|
3365
|
-
private baseUrl;
|
|
3366
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3367
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3368
|
-
});
|
|
3369
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3370
|
-
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3371
|
-
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3372
|
-
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3373
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3374
|
-
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
3375
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3376
|
-
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3377
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3378
|
-
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3379
|
-
/**
|
|
3380
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3381
|
-
*/
|
|
3382
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3383
|
-
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3384
|
-
/**
|
|
3385
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3386
|
-
*/
|
|
3387
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3388
|
-
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3389
|
-
}
|
|
3390
3408
|
export interface AzureRegionDto {
|
|
3391
3409
|
displayName: string;
|
|
3392
3410
|
name: string;
|
|
@@ -3690,8 +3708,6 @@ export interface UserDetailsDto {
|
|
|
3690
3708
|
isExternalUser?: boolean;
|
|
3691
3709
|
isBetaTester?: boolean | null;
|
|
3692
3710
|
hasAccessToIgnos?: boolean;
|
|
3693
|
-
isInvitedUser?: boolean;
|
|
3694
|
-
isSupplier?: boolean;
|
|
3695
3711
|
}
|
|
3696
3712
|
export interface UserDto {
|
|
3697
3713
|
id?: string | null;
|
|
@@ -3734,6 +3750,13 @@ export interface UploadInfoDto {
|
|
|
3734
3750
|
key?: string | null;
|
|
3735
3751
|
accessKey?: string | null;
|
|
3736
3752
|
}
|
|
3753
|
+
export interface UploadInfoCdfDto {
|
|
3754
|
+
id: number;
|
|
3755
|
+
url: string;
|
|
3756
|
+
}
|
|
3757
|
+
export interface CreateUploadInfoCdf {
|
|
3758
|
+
name: string;
|
|
3759
|
+
}
|
|
3737
3760
|
export interface DataHealthDto {
|
|
3738
3761
|
machines?: MachineDataHealthDto[] | null;
|
|
3739
3762
|
}
|
|
@@ -5559,6 +5582,97 @@ export interface DocumentGeneratorTypeDto {
|
|
|
5559
5582
|
key: string;
|
|
5560
5583
|
description: string;
|
|
5561
5584
|
}
|
|
5585
|
+
export interface CompanyUserDto {
|
|
5586
|
+
companyId?: string | null;
|
|
5587
|
+
username?: string | null;
|
|
5588
|
+
name?: string | null;
|
|
5589
|
+
roles?: string[] | null;
|
|
5590
|
+
}
|
|
5591
|
+
export interface CreateCompanyUserRequest {
|
|
5592
|
+
username: string;
|
|
5593
|
+
name: string;
|
|
5594
|
+
roles: string[];
|
|
5595
|
+
companyId?: string | null;
|
|
5596
|
+
}
|
|
5597
|
+
export interface UpdateCompanyUserRequest {
|
|
5598
|
+
name: string;
|
|
5599
|
+
roles: string[];
|
|
5600
|
+
companyId?: string | null;
|
|
5601
|
+
}
|
|
5602
|
+
export interface ExternalRoleDto {
|
|
5603
|
+
id: string;
|
|
5604
|
+
name: string;
|
|
5605
|
+
}
|
|
5606
|
+
export interface CompanyCustomerDto {
|
|
5607
|
+
customerTenantId?: string | null;
|
|
5608
|
+
customerAzureAdTenantId?: string | null;
|
|
5609
|
+
customerName?: string | null;
|
|
5610
|
+
supplierId?: string | null;
|
|
5611
|
+
supplierName?: string | null;
|
|
5612
|
+
}
|
|
5613
|
+
export interface InviteDto {
|
|
5614
|
+
tenantId: string;
|
|
5615
|
+
companyName: string;
|
|
5616
|
+
id: string;
|
|
5617
|
+
supplierId: string;
|
|
5618
|
+
supplierName: string;
|
|
5619
|
+
username: string;
|
|
5620
|
+
deadline: Date;
|
|
5621
|
+
createdTime: Date;
|
|
5622
|
+
createdBy: string;
|
|
5623
|
+
}
|
|
5624
|
+
export interface CompanyDto {
|
|
5625
|
+
id?: string | null;
|
|
5626
|
+
name?: string | null;
|
|
5627
|
+
organizationNumber?: string | null;
|
|
5628
|
+
country?: string | null;
|
|
5629
|
+
tenantId?: string | null;
|
|
5630
|
+
}
|
|
5631
|
+
export interface AcceptSupplierInviteRequest {
|
|
5632
|
+
tenantId: string;
|
|
5633
|
+
existingCompanyId?: string | null;
|
|
5634
|
+
companyName?: string | null;
|
|
5635
|
+
organizationNumber?: string | null;
|
|
5636
|
+
threeLetterIsoCountry?: string | null;
|
|
5637
|
+
}
|
|
5638
|
+
export interface SupplierInviteDto {
|
|
5639
|
+
id: string;
|
|
5640
|
+
supplierId: string;
|
|
5641
|
+
name: string;
|
|
5642
|
+
username: string;
|
|
5643
|
+
deadline: Date;
|
|
5644
|
+
createdTime: Date;
|
|
5645
|
+
createdBy: string;
|
|
5646
|
+
}
|
|
5647
|
+
export interface CreateSupplierInvite {
|
|
5648
|
+
supplierId: string;
|
|
5649
|
+
name: string;
|
|
5650
|
+
username: string;
|
|
5651
|
+
deadline: Date;
|
|
5652
|
+
}
|
|
5653
|
+
export interface ExternalSupplierDto {
|
|
5654
|
+
id: string;
|
|
5655
|
+
name: string;
|
|
5656
|
+
companyId: string;
|
|
5657
|
+
active: boolean;
|
|
5658
|
+
}
|
|
5659
|
+
export interface ImportSupplier {
|
|
5660
|
+
supplierId: string;
|
|
5661
|
+
name: string;
|
|
5662
|
+
organizationNumber?: string | null;
|
|
5663
|
+
threeLetterIsoCountry: string;
|
|
5664
|
+
users: ImportSupplierUserDto[];
|
|
5665
|
+
}
|
|
5666
|
+
export interface ImportSupplierUserDto {
|
|
5667
|
+
username: string;
|
|
5668
|
+
name: string;
|
|
5669
|
+
roles: string[];
|
|
5670
|
+
}
|
|
5671
|
+
export interface CreateSupplierMapping {
|
|
5672
|
+
companyId: string;
|
|
5673
|
+
existingSupplierId: string;
|
|
5674
|
+
newSupplierId: string;
|
|
5675
|
+
}
|
|
5562
5676
|
export interface CncMachineTransferDto {
|
|
5563
5677
|
id: string;
|
|
5564
5678
|
cncMachineOperationId?: string | null;
|
|
@@ -7746,13 +7860,16 @@ export interface ImaSpecificationHeatTreatmentHeatingResult {
|
|
|
7746
7860
|
duration?: ImaSpecificationResultLineDto | null;
|
|
7747
7861
|
}
|
|
7748
7862
|
export interface ProcessImaCheckRequestDto {
|
|
7749
|
-
files:
|
|
7863
|
+
files: UploadFileCdfDto[];
|
|
7750
7864
|
specificationId: string;
|
|
7751
7865
|
specificationVersion: string;
|
|
7752
7866
|
certificateTypeId?: string | null;
|
|
7753
7867
|
certificateTypeVersion?: string | null;
|
|
7754
7868
|
purchaseOrder?: string | null;
|
|
7755
7869
|
}
|
|
7870
|
+
export interface UploadFileCdfDto {
|
|
7871
|
+
id: number;
|
|
7872
|
+
}
|
|
7756
7873
|
export interface ImaUpdateResultRequestDto {
|
|
7757
7874
|
certificateId: string;
|
|
7758
7875
|
project?: string | null;
|
|
@@ -7871,23 +7988,6 @@ export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
|
|
|
7871
7988
|
}
|
|
7872
7989
|
export interface ImaCdfEntityReadBase {
|
|
7873
7990
|
}
|
|
7874
|
-
export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
7875
|
-
certificateTypeId: string;
|
|
7876
|
-
version: number;
|
|
7877
|
-
name: string;
|
|
7878
|
-
revision: string;
|
|
7879
|
-
status: ImaCertificateTypeStatus;
|
|
7880
|
-
description?: string | null;
|
|
7881
|
-
isStandardCertificateType: boolean;
|
|
7882
|
-
created: Date;
|
|
7883
|
-
createdBy: string;
|
|
7884
|
-
createdById: string;
|
|
7885
|
-
updatedBy?: string | null;
|
|
7886
|
-
updatedById?: string | null;
|
|
7887
|
-
updated: Date;
|
|
7888
|
-
isDeleted: boolean;
|
|
7889
|
-
}
|
|
7890
|
-
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7891
7991
|
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
7892
7992
|
certificateTypeId: string;
|
|
7893
7993
|
version: number;
|
|
@@ -7910,6 +8010,7 @@ export interface ImaCertificateTypeVersionDto {
|
|
|
7910
8010
|
version?: number;
|
|
7911
8011
|
status?: ImaCertificateTypeStatus;
|
|
7912
8012
|
}
|
|
8013
|
+
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7913
8014
|
export interface ImaCertificateTypeRequirementsDto {
|
|
7914
8015
|
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
7915
8016
|
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
@@ -8060,6 +8161,22 @@ export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
|
8060
8161
|
microExaminationReport?: boolean | null;
|
|
8061
8162
|
radiologicalReport?: boolean | null;
|
|
8062
8163
|
}
|
|
8164
|
+
export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
8165
|
+
certificateTypeId: string;
|
|
8166
|
+
version: number;
|
|
8167
|
+
name: string;
|
|
8168
|
+
revision: string;
|
|
8169
|
+
status: ImaCertificateTypeStatus;
|
|
8170
|
+
description?: string | null;
|
|
8171
|
+
isStandardCertificateType: boolean;
|
|
8172
|
+
created: Date;
|
|
8173
|
+
createdBy: string;
|
|
8174
|
+
createdById: string;
|
|
8175
|
+
updatedBy?: string | null;
|
|
8176
|
+
updatedById?: string | null;
|
|
8177
|
+
updated: Date;
|
|
8178
|
+
isDeleted: boolean;
|
|
8179
|
+
}
|
|
8063
8180
|
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
8064
8181
|
purchaseOrders: string[];
|
|
8065
8182
|
}
|
|
@@ -8098,24 +8215,6 @@ export interface User {
|
|
|
8098
8215
|
upn?: string | null;
|
|
8099
8216
|
email?: string | null;
|
|
8100
8217
|
}
|
|
8101
|
-
export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
|
|
8102
|
-
specificationId: string;
|
|
8103
|
-
version: number;
|
|
8104
|
-
name: string;
|
|
8105
|
-
number: string;
|
|
8106
|
-
revision: string;
|
|
8107
|
-
date: Date;
|
|
8108
|
-
status: ImaSpecificationStatus;
|
|
8109
|
-
summary?: string | null;
|
|
8110
|
-
relatedStandards: string[];
|
|
8111
|
-
created: Date;
|
|
8112
|
-
createdBy: string;
|
|
8113
|
-
createdById: string;
|
|
8114
|
-
updatedBy: string;
|
|
8115
|
-
updatedById: string;
|
|
8116
|
-
isDeleted: boolean;
|
|
8117
|
-
}
|
|
8118
|
-
export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8119
8218
|
export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
8120
8219
|
specificationId: string;
|
|
8121
8220
|
version: number;
|
|
@@ -8143,6 +8242,7 @@ export interface ImaSpecificationVersionDto {
|
|
|
8143
8242
|
version?: number;
|
|
8144
8243
|
status?: ImaSpecificationStatus;
|
|
8145
8244
|
}
|
|
8245
|
+
export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8146
8246
|
export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
|
|
8147
8247
|
carbon?: ImaSpecificationLineDto | null;
|
|
8148
8248
|
manganese?: ImaSpecificationLineDto | null;
|
|
@@ -8217,6 +8317,23 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8217
8317
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8218
8318
|
}
|
|
8219
8319
|
export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
8320
|
+
export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
|
|
8321
|
+
specificationId: string;
|
|
8322
|
+
version: number;
|
|
8323
|
+
name: string;
|
|
8324
|
+
number: string;
|
|
8325
|
+
revision: string;
|
|
8326
|
+
date: Date;
|
|
8327
|
+
status: ImaSpecificationStatus;
|
|
8328
|
+
summary?: string | null;
|
|
8329
|
+
relatedStandards: string[];
|
|
8330
|
+
created: Date;
|
|
8331
|
+
createdBy: string;
|
|
8332
|
+
createdById: string;
|
|
8333
|
+
updatedBy: string;
|
|
8334
|
+
updatedById: string;
|
|
8335
|
+
isDeleted: boolean;
|
|
8336
|
+
}
|
|
8220
8337
|
export interface MeasurementFormSchemaDto {
|
|
8221
8338
|
id: string;
|
|
8222
8339
|
versionId: number;
|
|
@@ -8765,6 +8882,7 @@ export interface ListMeasurementFormsRequest {
|
|
|
8765
8882
|
pageSize?: number | null;
|
|
8766
8883
|
search?: string | null;
|
|
8767
8884
|
continuationToken?: string | null;
|
|
8885
|
+
tenantId?: string | null;
|
|
8768
8886
|
inactive?: boolean | null;
|
|
8769
8887
|
includeInactiveSupplierAccess?: boolean | null;
|
|
8770
8888
|
}
|
|
@@ -8960,6 +9078,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
|
|
|
8960
9078
|
externalOrderNumber?: string | null;
|
|
8961
9079
|
}
|
|
8962
9080
|
export interface ExportDimensionReportV2Request {
|
|
9081
|
+
tenantId?: string | null;
|
|
8963
9082
|
type: DimensionReportType;
|
|
8964
9083
|
extras?: DimensionReportExtras | null;
|
|
8965
9084
|
specificSerialNumbers?: string[] | null;
|
|
@@ -9300,79 +9419,6 @@ export interface SetDiscussionLastReadRequest {
|
|
|
9300
9419
|
operationId?: string | null;
|
|
9301
9420
|
resourceId?: string | null;
|
|
9302
9421
|
}
|
|
9303
|
-
export interface CompanyUserDto {
|
|
9304
|
-
companyId: string;
|
|
9305
|
-
userObjectId: string;
|
|
9306
|
-
username?: string | null;
|
|
9307
|
-
name?: string | null;
|
|
9308
|
-
roles: string[];
|
|
9309
|
-
}
|
|
9310
|
-
export interface CreateCompanyUser {
|
|
9311
|
-
username: string;
|
|
9312
|
-
name: string;
|
|
9313
|
-
roles: string[];
|
|
9314
|
-
companyId?: string | null;
|
|
9315
|
-
}
|
|
9316
|
-
export interface UpdateCompanyUserRequest {
|
|
9317
|
-
roles: string[];
|
|
9318
|
-
companyId?: string | null;
|
|
9319
|
-
}
|
|
9320
|
-
export interface ExternalRoleDto {
|
|
9321
|
-
id: string;
|
|
9322
|
-
name: string;
|
|
9323
|
-
}
|
|
9324
|
-
export interface CompanyCustomerDto {
|
|
9325
|
-
customerTenantId?: string | null;
|
|
9326
|
-
customerAzureAdTenantId?: string | null;
|
|
9327
|
-
customerName?: string | null;
|
|
9328
|
-
supplierId?: string | null;
|
|
9329
|
-
supplierName?: string | null;
|
|
9330
|
-
customerIgnosPortalPrefix?: string | null;
|
|
9331
|
-
}
|
|
9332
|
-
export interface CompanyDto {
|
|
9333
|
-
id?: string;
|
|
9334
|
-
name?: string;
|
|
9335
|
-
organizationNumber?: string | null;
|
|
9336
|
-
country?: string;
|
|
9337
|
-
tenantId?: string | null;
|
|
9338
|
-
}
|
|
9339
|
-
export interface SupplierInviteDto {
|
|
9340
|
-
id: string;
|
|
9341
|
-
supplierId: string;
|
|
9342
|
-
supplierName?: string | null;
|
|
9343
|
-
customerName?: string | null;
|
|
9344
|
-
userId: string;
|
|
9345
|
-
userName?: string | null;
|
|
9346
|
-
companyId?: string | null;
|
|
9347
|
-
deadline: Date;
|
|
9348
|
-
acceptedTimestamp?: Date | null;
|
|
9349
|
-
createdTime: Date;
|
|
9350
|
-
createdBy: string;
|
|
9351
|
-
}
|
|
9352
|
-
export interface AcceptSupplierInvite {
|
|
9353
|
-
companyName?: string;
|
|
9354
|
-
organizationNumber?: string;
|
|
9355
|
-
threeLetterIsoCountry?: string;
|
|
9356
|
-
}
|
|
9357
|
-
export interface CreateSupplierInvite {
|
|
9358
|
-
supplierId: string;
|
|
9359
|
-
supplierName?: string | null;
|
|
9360
|
-
username: string;
|
|
9361
|
-
invitedName: string;
|
|
9362
|
-
deadline: Date;
|
|
9363
|
-
existingCompanyId?: string | null;
|
|
9364
|
-
}
|
|
9365
|
-
export interface ExternalSupplierDto {
|
|
9366
|
-
id: string;
|
|
9367
|
-
name: string;
|
|
9368
|
-
companyId: string;
|
|
9369
|
-
active: boolean;
|
|
9370
|
-
}
|
|
9371
|
-
export interface CreateSupplierMapping {
|
|
9372
|
-
companyId: string;
|
|
9373
|
-
existingSupplierId: string;
|
|
9374
|
-
newSupplierId: string;
|
|
9375
|
-
}
|
|
9376
9422
|
export type FeatureCollectionType = "FeatureCollection";
|
|
9377
9423
|
export interface Features {
|
|
9378
9424
|
type: FeaturesType;
|