@ignos/api-client 20260312.77.1-alpha → 20260317.78.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 +219 -203
- package/lib/ignosportal-api.js +4043 -4052
- package/package.json +1 -1
- package/src/ignosportal-api.ts +5888 -5874
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>;
|
|
@@ -1428,6 +1425,99 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
|
|
|
1428
1425
|
listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
|
|
1429
1426
|
protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
|
|
1430
1427
|
}
|
|
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
|
+
}
|
|
1431
1521
|
export interface ICncFileTransferClient {
|
|
1432
1522
|
startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
|
|
1433
1523
|
startCncMachineOperationTransferToMachine(id: string): Promise<CncMachineTransferDto>;
|
|
@@ -2470,8 +2560,8 @@ export interface IMaterialCertificateTypesClient {
|
|
|
2470
2560
|
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2471
2561
|
updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2472
2562
|
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
2473
|
-
createMaterialCertificateTypes(payload:
|
|
2474
|
-
copyMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2563
|
+
createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2564
|
+
copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2475
2565
|
createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2476
2566
|
releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2477
2567
|
}
|
|
@@ -2489,9 +2579,9 @@ export declare class MaterialCertificateTypesClient extends AuthorizedApiBase im
|
|
|
2489
2579
|
protected processUpdateMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2490
2580
|
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
2491
2581
|
protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
|
|
2492
|
-
createMaterialCertificateTypes(payload:
|
|
2582
|
+
createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2493
2583
|
protected processCreateMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2494
|
-
copyMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2584
|
+
copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2495
2585
|
protected processCopyMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2496
2586
|
createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2497
2587
|
protected processCreateNewVersionForCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
|
|
@@ -2748,22 +2838,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
|
|
|
2748
2838
|
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
2749
2839
|
}
|
|
2750
2840
|
export interface IMeasurementFormsInstancesClient {
|
|
2751
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2841
|
+
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>;
|
|
2752
2842
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2753
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2843
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2754
2844
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2755
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2756
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2757
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2758
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
2759
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2845
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2846
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2847
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2848
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2849
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2760
2850
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2761
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2762
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2763
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
2764
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2765
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2766
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2851
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2852
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2853
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
2854
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2855
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2856
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2767
2857
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
2768
2858
|
upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
|
|
2769
2859
|
removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
|
|
@@ -2779,37 +2869,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2779
2869
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2780
2870
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2781
2871
|
});
|
|
2782
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2872
|
+
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>;
|
|
2783
2873
|
protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2784
2874
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2785
2875
|
protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2786
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2876
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2787
2877
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2788
2878
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2789
2879
|
protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2790
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2880
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2791
2881
|
protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2792
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2882
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2793
2883
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2794
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2884
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2795
2885
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2796
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
2886
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2797
2887
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
2798
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2888
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2799
2889
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2800
2890
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2801
2891
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
2802
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2892
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2803
2893
|
protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
|
|
2804
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2894
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2805
2895
|
protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
|
|
2806
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
2896
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
2807
2897
|
protected processSaveComment(response: Response): Promise<void>;
|
|
2808
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2898
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2809
2899
|
protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
|
|
2810
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2900
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2811
2901
|
protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
|
|
2812
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2902
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2813
2903
|
protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
|
|
2814
2904
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
2815
2905
|
protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
@@ -2834,7 +2924,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
2834
2924
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2835
2925
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2836
2926
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2837
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
2927
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2838
2928
|
}
|
|
2839
2929
|
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
2840
2930
|
private http;
|
|
@@ -2858,7 +2948,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
|
|
|
2858
2948
|
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2859
2949
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2860
2950
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2861
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
2951
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2862
2952
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
2863
2953
|
}
|
|
2864
2954
|
export interface ICompaniesClient {
|
|
@@ -3198,99 +3288,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3198
3288
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3199
3289
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3200
3290
|
}
|
|
3201
|
-
export interface IExternalAccessClient {
|
|
3202
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3203
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3204
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3205
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3206
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3207
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3208
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3209
|
-
}
|
|
3210
|
-
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3211
|
-
private http;
|
|
3212
|
-
private baseUrl;
|
|
3213
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3214
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3215
|
-
});
|
|
3216
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3217
|
-
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
3218
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3219
|
-
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3220
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3221
|
-
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3222
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3223
|
-
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
3224
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3225
|
-
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
3226
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3227
|
-
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
3228
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3229
|
-
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
3230
|
-
}
|
|
3231
|
-
export interface IExternalClient {
|
|
3232
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3233
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3234
|
-
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3235
|
-
acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
|
|
3236
|
-
}
|
|
3237
|
-
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3238
|
-
private http;
|
|
3239
|
-
private baseUrl;
|
|
3240
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3241
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3242
|
-
});
|
|
3243
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3244
|
-
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3245
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3246
|
-
protected processGetCompany(response: Response): Promise<CompanyDto>;
|
|
3247
|
-
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3248
|
-
protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3249
|
-
acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
|
|
3250
|
-
protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3251
|
-
}
|
|
3252
|
-
export interface ISuppliersClient {
|
|
3253
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3254
|
-
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3255
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3256
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3257
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3258
|
-
/**
|
|
3259
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3260
|
-
*/
|
|
3261
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3262
|
-
/**
|
|
3263
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3264
|
-
*/
|
|
3265
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3266
|
-
}
|
|
3267
|
-
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3268
|
-
private http;
|
|
3269
|
-
private baseUrl;
|
|
3270
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3271
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3272
|
-
});
|
|
3273
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3274
|
-
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3275
|
-
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3276
|
-
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3277
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3278
|
-
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
3279
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3280
|
-
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3281
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3282
|
-
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3283
|
-
/**
|
|
3284
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3285
|
-
*/
|
|
3286
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3287
|
-
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3288
|
-
/**
|
|
3289
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3290
|
-
*/
|
|
3291
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3292
|
-
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3293
|
-
}
|
|
3294
3291
|
export interface AzureRegionDto {
|
|
3295
3292
|
displayName: string;
|
|
3296
3293
|
name: string;
|
|
@@ -3524,8 +3521,6 @@ export interface UserDetailsDto {
|
|
|
3524
3521
|
isExternalUser?: boolean;
|
|
3525
3522
|
isBetaTester?: boolean | null;
|
|
3526
3523
|
hasAccessToIgnos?: boolean;
|
|
3527
|
-
isInvitedUser?: boolean;
|
|
3528
|
-
isSupplier?: boolean;
|
|
3529
3524
|
}
|
|
3530
3525
|
export interface UserDto {
|
|
3531
3526
|
id?: string | null;
|
|
@@ -5393,6 +5388,97 @@ export interface DocumentGeneratorTypeDto {
|
|
|
5393
5388
|
key: string;
|
|
5394
5389
|
description: string;
|
|
5395
5390
|
}
|
|
5391
|
+
export interface CompanyUserDto {
|
|
5392
|
+
companyId?: string | null;
|
|
5393
|
+
username?: string | null;
|
|
5394
|
+
name?: string | null;
|
|
5395
|
+
roles?: string[] | null;
|
|
5396
|
+
}
|
|
5397
|
+
export interface CreateCompanyUserRequest {
|
|
5398
|
+
username: string;
|
|
5399
|
+
name: string;
|
|
5400
|
+
roles: string[];
|
|
5401
|
+
companyId?: string | null;
|
|
5402
|
+
}
|
|
5403
|
+
export interface UpdateCompanyUserRequest {
|
|
5404
|
+
name: string;
|
|
5405
|
+
roles: string[];
|
|
5406
|
+
companyId?: string | null;
|
|
5407
|
+
}
|
|
5408
|
+
export interface ExternalRoleDto {
|
|
5409
|
+
id: string;
|
|
5410
|
+
name: string;
|
|
5411
|
+
}
|
|
5412
|
+
export interface CompanyCustomerDto {
|
|
5413
|
+
customerTenantId?: string | null;
|
|
5414
|
+
customerAzureAdTenantId?: string | null;
|
|
5415
|
+
customerName?: string | null;
|
|
5416
|
+
supplierId?: string | null;
|
|
5417
|
+
supplierName?: string | null;
|
|
5418
|
+
}
|
|
5419
|
+
export interface InviteDto {
|
|
5420
|
+
tenantId: string;
|
|
5421
|
+
companyName: string;
|
|
5422
|
+
id: string;
|
|
5423
|
+
supplierId: string;
|
|
5424
|
+
supplierName: string;
|
|
5425
|
+
username: string;
|
|
5426
|
+
deadline: Date;
|
|
5427
|
+
createdTime: Date;
|
|
5428
|
+
createdBy: string;
|
|
5429
|
+
}
|
|
5430
|
+
export interface CompanyDto {
|
|
5431
|
+
id?: string | null;
|
|
5432
|
+
name?: string | null;
|
|
5433
|
+
organizationNumber?: string | null;
|
|
5434
|
+
country?: string | null;
|
|
5435
|
+
tenantId?: string | null;
|
|
5436
|
+
}
|
|
5437
|
+
export interface AcceptSupplierInviteRequest {
|
|
5438
|
+
tenantId: string;
|
|
5439
|
+
existingCompanyId?: string | null;
|
|
5440
|
+
companyName?: string | null;
|
|
5441
|
+
organizationNumber?: string | null;
|
|
5442
|
+
threeLetterIsoCountry?: string | null;
|
|
5443
|
+
}
|
|
5444
|
+
export interface SupplierInviteDto {
|
|
5445
|
+
id: string;
|
|
5446
|
+
supplierId: string;
|
|
5447
|
+
name: string;
|
|
5448
|
+
username: string;
|
|
5449
|
+
deadline: Date;
|
|
5450
|
+
createdTime: Date;
|
|
5451
|
+
createdBy: string;
|
|
5452
|
+
}
|
|
5453
|
+
export interface CreateSupplierInvite {
|
|
5454
|
+
supplierId: string;
|
|
5455
|
+
name: string;
|
|
5456
|
+
username: string;
|
|
5457
|
+
deadline: Date;
|
|
5458
|
+
}
|
|
5459
|
+
export interface ExternalSupplierDto {
|
|
5460
|
+
id: string;
|
|
5461
|
+
name: string;
|
|
5462
|
+
companyId: string;
|
|
5463
|
+
active: boolean;
|
|
5464
|
+
}
|
|
5465
|
+
export interface ImportSupplier {
|
|
5466
|
+
supplierId: string;
|
|
5467
|
+
name: string;
|
|
5468
|
+
organizationNumber?: string | null;
|
|
5469
|
+
threeLetterIsoCountry: string;
|
|
5470
|
+
users: ImportSupplierUserDto[];
|
|
5471
|
+
}
|
|
5472
|
+
export interface ImportSupplierUserDto {
|
|
5473
|
+
username: string;
|
|
5474
|
+
name: string;
|
|
5475
|
+
roles: string[];
|
|
5476
|
+
}
|
|
5477
|
+
export interface CreateSupplierMapping {
|
|
5478
|
+
companyId: string;
|
|
5479
|
+
existingSupplierId: string;
|
|
5480
|
+
newSupplierId: string;
|
|
5481
|
+
}
|
|
5396
5482
|
export interface CncMachineTransferDto {
|
|
5397
5483
|
id: string;
|
|
5398
5484
|
cncMachineOperationId?: string | null;
|
|
@@ -7889,7 +7975,7 @@ export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEn
|
|
|
7889
7975
|
microExaminationReport?: boolean;
|
|
7890
7976
|
radiologicalReport?: boolean;
|
|
7891
7977
|
}
|
|
7892
|
-
export interface
|
|
7978
|
+
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
7893
7979
|
name: string;
|
|
7894
7980
|
revision: string;
|
|
7895
7981
|
description?: string | null;
|
|
@@ -8518,6 +8604,7 @@ export interface ListMeasurementFormsRequest {
|
|
|
8518
8604
|
pageSize?: number | null;
|
|
8519
8605
|
search?: string | null;
|
|
8520
8606
|
continuationToken?: string | null;
|
|
8607
|
+
tenantId?: string | null;
|
|
8521
8608
|
inactive?: boolean | null;
|
|
8522
8609
|
includeInactiveSupplierAccess?: boolean | null;
|
|
8523
8610
|
}
|
|
@@ -8713,6 +8800,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
|
|
|
8713
8800
|
externalOrderNumber?: string | null;
|
|
8714
8801
|
}
|
|
8715
8802
|
export interface ExportDimensionReportV2Request {
|
|
8803
|
+
tenantId?: string | null;
|
|
8716
8804
|
type: DimensionReportType;
|
|
8717
8805
|
extras?: DimensionReportExtras | null;
|
|
8718
8806
|
specificSerialNumbers?: string[] | null;
|
|
@@ -9053,78 +9141,6 @@ export interface SetDiscussionLastReadRequest {
|
|
|
9053
9141
|
operationId?: string | null;
|
|
9054
9142
|
resourceId?: string | null;
|
|
9055
9143
|
}
|
|
9056
|
-
export interface CompanyUserDto {
|
|
9057
|
-
companyId: string;
|
|
9058
|
-
userObjectId: string;
|
|
9059
|
-
username?: string | null;
|
|
9060
|
-
name?: string | null;
|
|
9061
|
-
roles: string[];
|
|
9062
|
-
}
|
|
9063
|
-
export interface CreateCompanyUser {
|
|
9064
|
-
username: string;
|
|
9065
|
-
name: string;
|
|
9066
|
-
roles: string[];
|
|
9067
|
-
companyId?: string | null;
|
|
9068
|
-
}
|
|
9069
|
-
export interface UpdateCompanyUserRequest {
|
|
9070
|
-
roles: string[];
|
|
9071
|
-
companyId?: string | null;
|
|
9072
|
-
}
|
|
9073
|
-
export interface ExternalRoleDto {
|
|
9074
|
-
id: string;
|
|
9075
|
-
name: string;
|
|
9076
|
-
}
|
|
9077
|
-
export interface CompanyCustomerDto {
|
|
9078
|
-
customerTenantId?: string | null;
|
|
9079
|
-
customerAzureAdTenantId?: string | null;
|
|
9080
|
-
customerName?: string | null;
|
|
9081
|
-
supplierId?: string | null;
|
|
9082
|
-
supplierName?: string | null;
|
|
9083
|
-
}
|
|
9084
|
-
export interface CompanyDto {
|
|
9085
|
-
id?: string;
|
|
9086
|
-
name?: string;
|
|
9087
|
-
organizationNumber?: string | null;
|
|
9088
|
-
country?: string;
|
|
9089
|
-
tenantId?: string | null;
|
|
9090
|
-
}
|
|
9091
|
-
export interface SupplierInviteDto {
|
|
9092
|
-
id: string;
|
|
9093
|
-
supplierId: string;
|
|
9094
|
-
supplierName?: string | null;
|
|
9095
|
-
customerName?: string | null;
|
|
9096
|
-
userId: string;
|
|
9097
|
-
userName?: string | null;
|
|
9098
|
-
companyId?: string | null;
|
|
9099
|
-
deadline: Date;
|
|
9100
|
-
acceptedTimestamp?: Date | null;
|
|
9101
|
-
createdTime: Date;
|
|
9102
|
-
createdBy: string;
|
|
9103
|
-
}
|
|
9104
|
-
export interface AcceptSupplierInvite {
|
|
9105
|
-
companyName?: string;
|
|
9106
|
-
organizationNumber?: string;
|
|
9107
|
-
threeLetterIsoCountry?: string;
|
|
9108
|
-
}
|
|
9109
|
-
export interface CreateSupplierInvite {
|
|
9110
|
-
supplierId: string;
|
|
9111
|
-
supplierName?: string | null;
|
|
9112
|
-
username: string;
|
|
9113
|
-
invitedName: string;
|
|
9114
|
-
deadline: Date;
|
|
9115
|
-
existingCompanyId?: string | null;
|
|
9116
|
-
}
|
|
9117
|
-
export interface ExternalSupplierDto {
|
|
9118
|
-
id: string;
|
|
9119
|
-
name: string;
|
|
9120
|
-
companyId: string;
|
|
9121
|
-
active: boolean;
|
|
9122
|
-
}
|
|
9123
|
-
export interface CreateSupplierMapping {
|
|
9124
|
-
companyId: string;
|
|
9125
|
-
existingSupplierId: string;
|
|
9126
|
-
newSupplierId: string;
|
|
9127
|
-
}
|
|
9128
9144
|
export interface FileParameter {
|
|
9129
9145
|
data: any;
|
|
9130
9146
|
fileName: string;
|