@ignos/api-client 20260615.158.1-alpha → 20260626.160.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 +359 -291
- package/lib/ignosportal-api.js +4383 -4367
- package/package.json +1 -1
- package/src/ignosportal-api.ts +6693 -6601
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -127,7 +127,6 @@ export declare class CustomersClient extends AuthorizedApiBase implements ICusto
|
|
|
127
127
|
}
|
|
128
128
|
export interface IGuestsClient {
|
|
129
129
|
getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
130
|
-
getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
131
130
|
}
|
|
132
131
|
export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
|
|
133
132
|
private http;
|
|
@@ -137,8 +136,6 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
|
|
|
137
136
|
});
|
|
138
137
|
getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
139
138
|
protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
140
|
-
getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
141
|
-
protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
142
139
|
}
|
|
143
140
|
export interface IPresentationClient {
|
|
144
141
|
getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
|
|
@@ -1392,6 +1389,24 @@ export declare class MachinesClient extends AuthorizedApiBase implements IMachin
|
|
|
1392
1389
|
deleteMachine(id: number): Promise<void>;
|
|
1393
1390
|
protected processDeleteMachine(response: Response): Promise<void>;
|
|
1394
1391
|
}
|
|
1392
|
+
export interface IMachineDataClient {
|
|
1393
|
+
getLiveMachineData(assetId: number, externalIds: string[] | undefined): Promise<LiveMachineDataDto>;
|
|
1394
|
+
getTimeseriesGraph(assetId: number, externalIds: string[] | undefined, startTime: Date | undefined, endTime: Date | undefined): Promise<TimeseriesGraphDto>;
|
|
1395
|
+
exportTimeseriesGraph(assetId: number, request: ExportTimeseriesGraphRequest): Promise<DownloadDto>;
|
|
1396
|
+
}
|
|
1397
|
+
export declare class MachineDataClient extends AuthorizedApiBase implements IMachineDataClient {
|
|
1398
|
+
private http;
|
|
1399
|
+
private baseUrl;
|
|
1400
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
1401
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1402
|
+
});
|
|
1403
|
+
getLiveMachineData(assetId: number, externalIds: string[] | undefined): Promise<LiveMachineDataDto>;
|
|
1404
|
+
protected processGetLiveMachineData(response: Response): Promise<LiveMachineDataDto>;
|
|
1405
|
+
getTimeseriesGraph(assetId: number, externalIds: string[] | undefined, startTime: Date | undefined, endTime: Date | undefined): Promise<TimeseriesGraphDto>;
|
|
1406
|
+
protected processGetTimeseriesGraph(response: Response): Promise<TimeseriesGraphDto>;
|
|
1407
|
+
exportTimeseriesGraph(assetId: number, request: ExportTimeseriesGraphRequest): Promise<DownloadDto>;
|
|
1408
|
+
protected processExportTimeseriesGraph(response: Response): Promise<DownloadDto>;
|
|
1409
|
+
}
|
|
1395
1410
|
export interface ILinksClient {
|
|
1396
1411
|
getAllLinks(scope: string | null | undefined): Promise<LinkDto[]>;
|
|
1397
1412
|
createLink(request: CreateLinkRequest): Promise<LinkDto>;
|
|
@@ -1502,6 +1517,99 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
|
|
|
1502
1517
|
listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
|
|
1503
1518
|
protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
|
|
1504
1519
|
}
|
|
1520
|
+
export interface IExternalAccessClient {
|
|
1521
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1522
|
+
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1523
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1524
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1525
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1526
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1527
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1528
|
+
}
|
|
1529
|
+
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
1530
|
+
private http;
|
|
1531
|
+
private baseUrl;
|
|
1532
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
1533
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1534
|
+
});
|
|
1535
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1536
|
+
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
1537
|
+
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1538
|
+
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1539
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1540
|
+
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1541
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1542
|
+
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
1543
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1544
|
+
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
1545
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1546
|
+
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
1547
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1548
|
+
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
1549
|
+
}
|
|
1550
|
+
export interface IExternalClient {
|
|
1551
|
+
listInvites(): Promise<InviteDto[]>;
|
|
1552
|
+
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1553
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
1554
|
+
}
|
|
1555
|
+
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
1556
|
+
private http;
|
|
1557
|
+
private baseUrl;
|
|
1558
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
1559
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1560
|
+
});
|
|
1561
|
+
listInvites(): Promise<InviteDto[]>;
|
|
1562
|
+
protected processListInvites(response: Response): Promise<InviteDto[]>;
|
|
1563
|
+
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1564
|
+
protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
|
|
1565
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
1566
|
+
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
1567
|
+
}
|
|
1568
|
+
export interface ISuppliersClient {
|
|
1569
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1570
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1571
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
1572
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1573
|
+
deleteSupplier(id: string): Promise<void>;
|
|
1574
|
+
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1575
|
+
/**
|
|
1576
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
1577
|
+
*/
|
|
1578
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1579
|
+
/**
|
|
1580
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1581
|
+
*/
|
|
1582
|
+
deleteSupplierMappings(): Promise<void>;
|
|
1583
|
+
}
|
|
1584
|
+
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
1585
|
+
private http;
|
|
1586
|
+
private baseUrl;
|
|
1587
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
1588
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1589
|
+
});
|
|
1590
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1591
|
+
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
1592
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1593
|
+
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
1594
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
1595
|
+
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
1596
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1597
|
+
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
1598
|
+
deleteSupplier(id: string): Promise<void>;
|
|
1599
|
+
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
1600
|
+
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1601
|
+
protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
|
|
1602
|
+
/**
|
|
1603
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
1604
|
+
*/
|
|
1605
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1606
|
+
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
1607
|
+
/**
|
|
1608
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1609
|
+
*/
|
|
1610
|
+
deleteSupplierMappings(): Promise<void>;
|
|
1611
|
+
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
1612
|
+
}
|
|
1505
1613
|
export interface ICncFileTransferClient {
|
|
1506
1614
|
startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
|
|
1507
1615
|
startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
|
|
@@ -2305,6 +2413,24 @@ export declare class MesEngineeringChangeOrdersClient extends AuthorizedApiBase
|
|
|
2305
2413
|
getEngineeringChangeOrderDetails(partNumber: string | undefined): Promise<EngineeringChangeOrdersDto>;
|
|
2306
2414
|
protected processGetEngineeringChangeOrderDetails(response: Response): Promise<EngineeringChangeOrdersDto>;
|
|
2307
2415
|
}
|
|
2416
|
+
export interface IMesIndirectActivitiesClient {
|
|
2417
|
+
listIndirectActivities(): Promise<IndirectActivityDto[]>;
|
|
2418
|
+
getMyActiveIndirectActivity(): Promise<CurrentIndirectActivityDto>;
|
|
2419
|
+
startIndirectActivity(request: StartIndirectActivity): Promise<void>;
|
|
2420
|
+
}
|
|
2421
|
+
export declare class MesIndirectActivitiesClient extends AuthorizedApiBase implements IMesIndirectActivitiesClient {
|
|
2422
|
+
private http;
|
|
2423
|
+
private baseUrl;
|
|
2424
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2425
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2426
|
+
});
|
|
2427
|
+
listIndirectActivities(): Promise<IndirectActivityDto[]>;
|
|
2428
|
+
protected processListIndirectActivities(response: Response): Promise<IndirectActivityDto[]>;
|
|
2429
|
+
getMyActiveIndirectActivity(): Promise<CurrentIndirectActivityDto>;
|
|
2430
|
+
protected processGetMyActiveIndirectActivity(response: Response): Promise<CurrentIndirectActivityDto>;
|
|
2431
|
+
startIndirectActivity(request: StartIndirectActivity): Promise<void>;
|
|
2432
|
+
protected processStartIndirectActivity(response: Response): Promise<void>;
|
|
2433
|
+
}
|
|
2308
2434
|
export interface IMesLinksClient {
|
|
2309
2435
|
addMesLink(request: AddMesLink): Promise<void>;
|
|
2310
2436
|
listMesLinks(types: MesLinkTypeDto[] | null | undefined, workOrderId: string | null | undefined, operation: number | null | undefined): Promise<MesLinkDto[]>;
|
|
@@ -2541,7 +2667,7 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
|
|
|
2541
2667
|
}
|
|
2542
2668
|
export interface IInspectMatchMaterialChecksAdminClient {
|
|
2543
2669
|
updateMaterialCheckOverrides(id: string, request: ImaOverrideMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2544
|
-
updateMaterialCheckStatus(id: string, status:
|
|
2670
|
+
updateMaterialCheckStatus(id: string, status: ImaMaterialCheckStatusDto | undefined): Promise<ImaMaterialCheckDto>;
|
|
2545
2671
|
updateMaterialCheckMetadata(id: string, metadataRequest: ImaUpdateMaterialCheckMetadataRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2546
2672
|
deleteMaterialCheck(id: string): Promise<void>;
|
|
2547
2673
|
}
|
|
@@ -2553,7 +2679,7 @@ export declare class InspectMatchMaterialChecksAdminClient extends AuthorizedApi
|
|
|
2553
2679
|
});
|
|
2554
2680
|
updateMaterialCheckOverrides(id: string, request: ImaOverrideMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2555
2681
|
protected processUpdateMaterialCheckOverrides(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2556
|
-
updateMaterialCheckStatus(id: string, status:
|
|
2682
|
+
updateMaterialCheckStatus(id: string, status: ImaMaterialCheckStatusDto | undefined): Promise<ImaMaterialCheckDto>;
|
|
2557
2683
|
protected processUpdateMaterialCheckStatus(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2558
2684
|
updateMaterialCheckMetadata(id: string, metadataRequest: ImaUpdateMaterialCheckMetadataRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2559
2685
|
protected processUpdateMaterialCheckMetadata(response: Response): Promise<ImaMaterialCheckDto>;
|
|
@@ -2906,22 +3032,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
|
|
|
2906
3032
|
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
2907
3033
|
}
|
|
2908
3034
|
export interface IMeasurementFormsInstancesClient {
|
|
2909
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3035
|
+
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>;
|
|
2910
3036
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2911
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3037
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2912
3038
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2913
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2914
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2915
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2916
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
2917
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3039
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
3040
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3041
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3042
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
3043
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2918
3044
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2919
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2920
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2921
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
2922
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2923
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2924
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3045
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3046
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3047
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
3048
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3049
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3050
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2925
3051
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
2926
3052
|
upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
|
|
2927
3053
|
removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
|
|
@@ -2937,37 +3063,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2937
3063
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2938
3064
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2939
3065
|
});
|
|
2940
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3066
|
+
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>;
|
|
2941
3067
|
protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2942
3068
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2943
3069
|
protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2944
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3070
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2945
3071
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2946
3072
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2947
3073
|
protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2948
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3074
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2949
3075
|
protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2950
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3076
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2951
3077
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2952
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3078
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2953
3079
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2954
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
3080
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2955
3081
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
2956
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3082
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2957
3083
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2958
3084
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2959
3085
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
2960
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3086
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2961
3087
|
protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
|
|
2962
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3088
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2963
3089
|
protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
|
|
2964
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
3090
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
2965
3091
|
protected processSaveComment(response: Response): Promise<void>;
|
|
2966
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3092
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2967
3093
|
protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
|
|
2968
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3094
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2969
3095
|
protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
|
|
2970
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3096
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2971
3097
|
protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
|
|
2972
3098
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
2973
3099
|
protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
@@ -2992,7 +3118,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
2992
3118
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2993
3119
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2994
3120
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2995
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3121
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2996
3122
|
}
|
|
2997
3123
|
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
2998
3124
|
private http;
|
|
@@ -3016,7 +3142,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
|
|
|
3016
3142
|
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3017
3143
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3018
3144
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3019
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3145
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
3020
3146
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
3021
3147
|
}
|
|
3022
3148
|
export interface ICompaniesClient {
|
|
@@ -3356,117 +3482,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3356
3482
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3357
3483
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3358
3484
|
}
|
|
3359
|
-
export interface IExternalAccessClient {
|
|
3360
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3361
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3362
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3363
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3364
|
-
migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
|
|
3365
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3366
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3367
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3368
|
-
}
|
|
3369
|
-
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3370
|
-
private http;
|
|
3371
|
-
private baseUrl;
|
|
3372
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3373
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3374
|
-
});
|
|
3375
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3376
|
-
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
3377
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3378
|
-
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3379
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3380
|
-
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3381
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3382
|
-
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
3383
|
-
migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
|
|
3384
|
-
protected processMigrateLegacyCompanyUsersToEntra(response: Response): Promise<CompanyUserDto[]>;
|
|
3385
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3386
|
-
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
3387
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3388
|
-
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
3389
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3390
|
-
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
3391
|
-
}
|
|
3392
|
-
export interface IExternalClient {
|
|
3393
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3394
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3395
|
-
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3396
|
-
acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
|
|
3397
|
-
acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
|
|
3398
|
-
acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
|
|
3399
|
-
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3400
|
-
}
|
|
3401
|
-
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3402
|
-
private http;
|
|
3403
|
-
private baseUrl;
|
|
3404
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3405
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3406
|
-
});
|
|
3407
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3408
|
-
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3409
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3410
|
-
protected processGetCompany(response: Response): Promise<CompanyDto>;
|
|
3411
|
-
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3412
|
-
protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3413
|
-
acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
|
|
3414
|
-
protected processAcceptSupplierInviteNewCompany(response: Response): Promise<SupplierInviteDto>;
|
|
3415
|
-
acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
|
|
3416
|
-
protected processAcceptSupplierInviteExistingCompany(response: Response): Promise<SupplierInviteDto>;
|
|
3417
|
-
acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
|
|
3418
|
-
protected processAcceptSupplierInviteCustomer(response: Response): Promise<SupplierInviteDto>;
|
|
3419
|
-
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3420
|
-
protected processListTenantsWithSuppliers(response: Response): Promise<TenantWithSupplierDto[]>;
|
|
3421
|
-
}
|
|
3422
|
-
export interface ISuppliersClient {
|
|
3423
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3424
|
-
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3425
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3426
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3427
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3428
|
-
/**
|
|
3429
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3430
|
-
*/
|
|
3431
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3432
|
-
/**
|
|
3433
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3434
|
-
*/
|
|
3435
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3436
|
-
lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
|
|
3437
|
-
getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
|
|
3438
|
-
}
|
|
3439
|
-
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3440
|
-
private http;
|
|
3441
|
-
private baseUrl;
|
|
3442
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3443
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3444
|
-
});
|
|
3445
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3446
|
-
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3447
|
-
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3448
|
-
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3449
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3450
|
-
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
3451
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3452
|
-
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3453
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3454
|
-
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3455
|
-
/**
|
|
3456
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3457
|
-
*/
|
|
3458
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3459
|
-
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3460
|
-
/**
|
|
3461
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3462
|
-
*/
|
|
3463
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3464
|
-
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3465
|
-
lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
|
|
3466
|
-
protected processLookupOrganization(response: Response): Promise<OrganizationDto>;
|
|
3467
|
-
getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
|
|
3468
|
-
protected processGetOrganizationLookupSupportedCountries(response: Response): Promise<CountryDto[]>;
|
|
3469
|
-
}
|
|
3470
3485
|
export interface AzureRegionDto {
|
|
3471
3486
|
displayName: string;
|
|
3472
3487
|
name: string;
|
|
@@ -3778,9 +3793,6 @@ export interface UserDetailsDto {
|
|
|
3778
3793
|
isExternalUser?: boolean;
|
|
3779
3794
|
isBetaTester?: boolean | null;
|
|
3780
3795
|
hasAccessToIgnos?: boolean;
|
|
3781
|
-
isInvitedUser?: boolean;
|
|
3782
|
-
isSupplier?: boolean;
|
|
3783
|
-
companyId?: string | null;
|
|
3784
3796
|
}
|
|
3785
3797
|
export interface UserDto {
|
|
3786
3798
|
id?: string | null;
|
|
@@ -5601,6 +5613,40 @@ export interface CrossCompanyUtilizationSummaryDto {
|
|
|
5601
5613
|
crossCompany: FactoryUtilizationDto;
|
|
5602
5614
|
companies: MachineGroupUtilizationDto[];
|
|
5603
5615
|
}
|
|
5616
|
+
export interface LiveMachineDataDto {
|
|
5617
|
+
assetId?: number;
|
|
5618
|
+
dataPoints?: LiveMachineDataPointDto[];
|
|
5619
|
+
}
|
|
5620
|
+
export interface LiveMachineDataPointDto {
|
|
5621
|
+
externalId?: string;
|
|
5622
|
+
timestamp?: number | null;
|
|
5623
|
+
numericValue?: number | null;
|
|
5624
|
+
stringValue?: string | null;
|
|
5625
|
+
}
|
|
5626
|
+
export interface TimeseriesGraphDto {
|
|
5627
|
+
assetId?: number;
|
|
5628
|
+
series?: TimeseriesGraphSeriesDto[];
|
|
5629
|
+
}
|
|
5630
|
+
export interface TimeseriesGraphSeriesDto {
|
|
5631
|
+
externalId?: string;
|
|
5632
|
+
isString?: boolean;
|
|
5633
|
+
dataPoints?: TimeseriesGraphDataPointDto[];
|
|
5634
|
+
}
|
|
5635
|
+
export interface TimeseriesGraphDataPointDto {
|
|
5636
|
+
timestamp?: number;
|
|
5637
|
+
numericValue?: number | null;
|
|
5638
|
+
stringValue?: string | null;
|
|
5639
|
+
}
|
|
5640
|
+
export interface ExportTimeseriesGraphRequest {
|
|
5641
|
+
series?: TimeseriesExportSeries[];
|
|
5642
|
+
startTime?: Date;
|
|
5643
|
+
endTime?: Date;
|
|
5644
|
+
}
|
|
5645
|
+
export interface TimeseriesExportSeries {
|
|
5646
|
+
externalId?: string;
|
|
5647
|
+
displayName?: string | null;
|
|
5648
|
+
unit?: string | null;
|
|
5649
|
+
}
|
|
5604
5650
|
export interface LinkDto {
|
|
5605
5651
|
id: string;
|
|
5606
5652
|
uri: string;
|
|
@@ -5759,6 +5805,97 @@ export interface DocumentGeneratorTypeDto {
|
|
|
5759
5805
|
key: string;
|
|
5760
5806
|
description: string;
|
|
5761
5807
|
}
|
|
5808
|
+
export interface CompanyUserDto {
|
|
5809
|
+
companyId?: string | null;
|
|
5810
|
+
username?: string | null;
|
|
5811
|
+
name?: string | null;
|
|
5812
|
+
roles?: string[] | null;
|
|
5813
|
+
}
|
|
5814
|
+
export interface CreateCompanyUserRequest {
|
|
5815
|
+
username: string;
|
|
5816
|
+
name: string;
|
|
5817
|
+
roles: string[];
|
|
5818
|
+
companyId?: string | null;
|
|
5819
|
+
}
|
|
5820
|
+
export interface UpdateCompanyUserRequest {
|
|
5821
|
+
name: string;
|
|
5822
|
+
roles: string[];
|
|
5823
|
+
companyId?: string | null;
|
|
5824
|
+
}
|
|
5825
|
+
export interface ExternalRoleDto {
|
|
5826
|
+
id: string;
|
|
5827
|
+
name: string;
|
|
5828
|
+
}
|
|
5829
|
+
export interface CompanyCustomerDto {
|
|
5830
|
+
customerTenantId?: string | null;
|
|
5831
|
+
customerAzureAdTenantId?: string | null;
|
|
5832
|
+
customerName?: string | null;
|
|
5833
|
+
supplierId?: string | null;
|
|
5834
|
+
supplierName?: string | null;
|
|
5835
|
+
}
|
|
5836
|
+
export interface InviteDto {
|
|
5837
|
+
tenantId: string;
|
|
5838
|
+
companyName: string;
|
|
5839
|
+
id: string;
|
|
5840
|
+
supplierId: string;
|
|
5841
|
+
supplierName: string;
|
|
5842
|
+
username: string;
|
|
5843
|
+
deadline: Date;
|
|
5844
|
+
createdTime: Date;
|
|
5845
|
+
createdBy: string;
|
|
5846
|
+
}
|
|
5847
|
+
export interface CompanyDto {
|
|
5848
|
+
id?: string | null;
|
|
5849
|
+
name?: string | null;
|
|
5850
|
+
organizationNumber?: string | null;
|
|
5851
|
+
country?: string | null;
|
|
5852
|
+
tenantId?: string | null;
|
|
5853
|
+
}
|
|
5854
|
+
export interface AcceptSupplierInviteRequest {
|
|
5855
|
+
tenantId: string;
|
|
5856
|
+
existingCompanyId?: string | null;
|
|
5857
|
+
companyName?: string | null;
|
|
5858
|
+
organizationNumber?: string | null;
|
|
5859
|
+
threeLetterIsoCountry?: string | null;
|
|
5860
|
+
}
|
|
5861
|
+
export interface SupplierInviteDto {
|
|
5862
|
+
id: string;
|
|
5863
|
+
supplierId: string;
|
|
5864
|
+
name: string;
|
|
5865
|
+
username: string;
|
|
5866
|
+
deadline: Date;
|
|
5867
|
+
createdTime: Date;
|
|
5868
|
+
createdBy: string;
|
|
5869
|
+
}
|
|
5870
|
+
export interface CreateSupplierInvite {
|
|
5871
|
+
supplierId: string;
|
|
5872
|
+
name: string;
|
|
5873
|
+
username: string;
|
|
5874
|
+
deadline: Date;
|
|
5875
|
+
}
|
|
5876
|
+
export interface ExternalSupplierDto {
|
|
5877
|
+
id: string;
|
|
5878
|
+
name: string;
|
|
5879
|
+
companyId: string;
|
|
5880
|
+
active: boolean;
|
|
5881
|
+
}
|
|
5882
|
+
export interface ImportSupplier {
|
|
5883
|
+
supplierId: string;
|
|
5884
|
+
name: string;
|
|
5885
|
+
organizationNumber?: string | null;
|
|
5886
|
+
threeLetterIsoCountry: string;
|
|
5887
|
+
users: ImportSupplierUserDto[];
|
|
5888
|
+
}
|
|
5889
|
+
export interface ImportSupplierUserDto {
|
|
5890
|
+
username: string;
|
|
5891
|
+
name: string;
|
|
5892
|
+
roles: string[];
|
|
5893
|
+
}
|
|
5894
|
+
export interface CreateSupplierMapping {
|
|
5895
|
+
companyId: string;
|
|
5896
|
+
existingSupplierId: string;
|
|
5897
|
+
newSupplierId: string;
|
|
5898
|
+
}
|
|
5762
5899
|
export interface CncMachineTransferDto {
|
|
5763
5900
|
id: string;
|
|
5764
5901
|
cncMachineOperationId?: string | null;
|
|
@@ -7112,6 +7249,19 @@ export interface EngineeringChangeOrdersDto {
|
|
|
7112
7249
|
mostRecentEngineeringChangeOrder?: Date | null;
|
|
7113
7250
|
engineeringChangeOrders?: EngineeringChangeOrderDto[];
|
|
7114
7251
|
}
|
|
7252
|
+
export interface IndirectActivityDto {
|
|
7253
|
+
activityId: string;
|
|
7254
|
+
name: string;
|
|
7255
|
+
companyId: string;
|
|
7256
|
+
}
|
|
7257
|
+
export interface CurrentIndirectActivityDto {
|
|
7258
|
+
activityId?: string | null;
|
|
7259
|
+
personnelNumber?: string | null;
|
|
7260
|
+
startTime?: Date | null;
|
|
7261
|
+
}
|
|
7262
|
+
export interface StartIndirectActivity {
|
|
7263
|
+
activityId: string;
|
|
7264
|
+
}
|
|
7115
7265
|
export interface AddMesLink {
|
|
7116
7266
|
uri: string;
|
|
7117
7267
|
name: string;
|
|
@@ -7722,34 +7872,31 @@ export interface WeldingIotConfigDto {
|
|
|
7722
7872
|
}
|
|
7723
7873
|
export interface CreateWeldingIotConfig {
|
|
7724
7874
|
}
|
|
7725
|
-
export interface
|
|
7726
|
-
}
|
|
7727
|
-
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
7728
|
-
companyId: string;
|
|
7875
|
+
export interface ImaCertificateTypeDto {
|
|
7729
7876
|
certificateTypeId: string;
|
|
7730
7877
|
version: number;
|
|
7731
7878
|
allVersions: ImaCertificateTypeVersionDto[];
|
|
7732
7879
|
name: string;
|
|
7733
7880
|
revision: string;
|
|
7734
|
-
status:
|
|
7881
|
+
status: ImaCertificateTypeStatusDto;
|
|
7735
7882
|
description?: string | null;
|
|
7736
7883
|
isStandardCertificateType: boolean;
|
|
7737
7884
|
created: Date;
|
|
7738
7885
|
createdBy: string;
|
|
7739
7886
|
createdById: string;
|
|
7740
|
-
createdByName
|
|
7887
|
+
createdByName?: string | null;
|
|
7741
7888
|
updatedBy: string;
|
|
7742
7889
|
updatedById: string;
|
|
7743
|
-
updatedByName
|
|
7890
|
+
updatedByName?: string | null;
|
|
7744
7891
|
updated: Date;
|
|
7745
7892
|
isDeleted: boolean;
|
|
7746
7893
|
requirements: ImaCertificateTypeRequirementsDto;
|
|
7747
7894
|
}
|
|
7748
7895
|
export interface ImaCertificateTypeVersionDto {
|
|
7749
7896
|
version?: number;
|
|
7750
|
-
status?:
|
|
7897
|
+
status?: ImaCertificateTypeStatusDto;
|
|
7751
7898
|
}
|
|
7752
|
-
export type
|
|
7899
|
+
export type ImaCertificateTypeStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7753
7900
|
export interface ImaCertificateTypeRequirementsDto {
|
|
7754
7901
|
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
7755
7902
|
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
@@ -7760,6 +7907,8 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
7760
7907
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
7761
7908
|
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
7762
7909
|
}
|
|
7910
|
+
export interface ImaCdfEntityReadBase {
|
|
7911
|
+
}
|
|
7763
7912
|
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
7764
7913
|
manufacturer?: boolean;
|
|
7765
7914
|
address?: boolean;
|
|
@@ -7827,7 +7976,7 @@ export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
|
7827
7976
|
export interface ImaUpdateImaCertificateTypeRequestDto {
|
|
7828
7977
|
name?: string | null;
|
|
7829
7978
|
revision?: string | null;
|
|
7830
|
-
status?:
|
|
7979
|
+
status?: ImaCertificateTypeStatusDto | null;
|
|
7831
7980
|
description?: string | null;
|
|
7832
7981
|
requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
|
|
7833
7982
|
}
|
|
@@ -7900,21 +8049,21 @@ export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
|
7900
8049
|
microExaminationReport?: boolean | null;
|
|
7901
8050
|
radiologicalReport?: boolean | null;
|
|
7902
8051
|
}
|
|
7903
|
-
export interface ImaCertificateTypeLiteDto
|
|
8052
|
+
export interface ImaCertificateTypeLiteDto {
|
|
7904
8053
|
certificateTypeId: string;
|
|
7905
8054
|
version: number;
|
|
7906
8055
|
name: string;
|
|
7907
8056
|
revision: string;
|
|
7908
|
-
status:
|
|
8057
|
+
status: ImaCertificateTypeStatusDto;
|
|
7909
8058
|
description?: string | null;
|
|
7910
8059
|
isStandardCertificateType: boolean;
|
|
7911
8060
|
created: Date;
|
|
7912
8061
|
createdBy: string;
|
|
7913
8062
|
createdById: string;
|
|
7914
|
-
createdByName
|
|
8063
|
+
createdByName?: string | null;
|
|
7915
8064
|
updatedBy: string;
|
|
7916
8065
|
updatedById: string;
|
|
7917
|
-
updatedByName
|
|
8066
|
+
updatedByName?: string | null;
|
|
7918
8067
|
updated: Date;
|
|
7919
8068
|
isDeleted: boolean;
|
|
7920
8069
|
}
|
|
@@ -7930,27 +8079,29 @@ export interface ImaMaterialCheckDto {
|
|
|
7930
8079
|
certificateTypeVersion?: number | null;
|
|
7931
8080
|
certificateTypeName?: string | null;
|
|
7932
8081
|
certificateTypeRevision?: string | null;
|
|
8082
|
+
certificateTypeStatus: ImaCertificateTypeStatusDto;
|
|
7933
8083
|
specificationId: string;
|
|
7934
8084
|
specificationVersion: number;
|
|
7935
8085
|
specificationName: string;
|
|
7936
|
-
specificationRevision
|
|
7937
|
-
specificationStatus:
|
|
7938
|
-
certificateTypeStatus: ImaCertificateTypeStatus;
|
|
8086
|
+
specificationRevision?: string | null;
|
|
8087
|
+
specificationStatus: ImaSpecificationStatusDto;
|
|
7939
8088
|
purchaseOrder?: string | null;
|
|
7940
8089
|
purchaseOrderLine?: number | null;
|
|
7941
8090
|
purchaseOrderVendorBatches?: string[] | null;
|
|
7942
8091
|
purchaseOrderPartName?: string | null;
|
|
7943
8092
|
purchaseOrderPartNumber?: string | null;
|
|
8093
|
+
purchaseOrderPartRevision?: string | null;
|
|
7944
8094
|
purchaseOrderDrawing?: string | null;
|
|
8095
|
+
purchaseOrderDrawingRevision?: string | null;
|
|
7945
8096
|
heatNumber?: string | null;
|
|
7946
|
-
status:
|
|
8097
|
+
status: ImaMaterialCheckStatusDto;
|
|
7947
8098
|
created: Date;
|
|
7948
8099
|
createdBy: string;
|
|
7949
8100
|
createdById: string;
|
|
7950
|
-
createdByName
|
|
8101
|
+
createdByName?: string | null;
|
|
7951
8102
|
updatedBy: string;
|
|
7952
8103
|
updatedById: string;
|
|
7953
|
-
updatedByName
|
|
8104
|
+
updatedByName?: string | null;
|
|
7954
8105
|
isDeleted: boolean;
|
|
7955
8106
|
reportCreatedBy?: string | null;
|
|
7956
8107
|
reportCreatedById?: string | null;
|
|
@@ -7959,8 +8110,8 @@ export interface ImaMaterialCheckDto {
|
|
|
7959
8110
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
7960
8111
|
specificationResults: ImaSpecificationResultsDto;
|
|
7961
8112
|
}
|
|
7962
|
-
export type
|
|
7963
|
-
export type
|
|
8113
|
+
export type ImaSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8114
|
+
export type ImaMaterialCheckStatusDto = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
7964
8115
|
export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
7965
8116
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
7966
8117
|
signature: ImaCertificateTypeSignatureResultsDto;
|
|
@@ -8067,10 +8218,10 @@ export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
|
|
|
8067
8218
|
specificationMin?: number | null;
|
|
8068
8219
|
specificationMax?: number | null;
|
|
8069
8220
|
readValue?: string | null;
|
|
8070
|
-
status:
|
|
8221
|
+
status: ImaSpecificationResultLineStatusDto;
|
|
8071
8222
|
override?: ImaResultLineOverrideDto | null;
|
|
8072
8223
|
}
|
|
8073
|
-
export type
|
|
8224
|
+
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8074
8225
|
export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBase {
|
|
8075
8226
|
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
8076
8227
|
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
@@ -8086,7 +8237,7 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
8086
8237
|
specificationMin?: number | null;
|
|
8087
8238
|
specificationMax?: number | null;
|
|
8088
8239
|
readValue?: string | null;
|
|
8089
|
-
status:
|
|
8240
|
+
status: ImaSpecificationResultLineStatusDto;
|
|
8090
8241
|
override?: ImaResultLineOverrideDto | null;
|
|
8091
8242
|
measurementMethod?: string | null;
|
|
8092
8243
|
}
|
|
@@ -8234,27 +8385,29 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8234
8385
|
certificateTypeVersion?: number | null;
|
|
8235
8386
|
certificateTypeName?: string | null;
|
|
8236
8387
|
certificateTypeRevision?: string | null;
|
|
8388
|
+
certificateTypeStatus: ImaCertificateTypeStatusDto;
|
|
8237
8389
|
specificationId: string;
|
|
8238
8390
|
specificationVersion: number;
|
|
8239
8391
|
specificationName: string;
|
|
8240
|
-
specificationRevision
|
|
8392
|
+
specificationRevision?: string | null;
|
|
8393
|
+
specificationStatus: ImaSpecificationStatusDto;
|
|
8241
8394
|
purchaseOrder?: string | null;
|
|
8242
8395
|
purchaseOrderLine?: number | null;
|
|
8243
8396
|
purchaseOrderVendorBatches?: string[] | null;
|
|
8244
8397
|
purchaseOrderPartName?: string | null;
|
|
8245
8398
|
purchaseOrderPartNumber?: string | null;
|
|
8399
|
+
purchaseOrderPartRevision?: string | null;
|
|
8246
8400
|
purchaseOrderDrawing?: string | null;
|
|
8401
|
+
purchaseOrderDrawingRevision?: string | null;
|
|
8247
8402
|
heatNumber?: string | null;
|
|
8248
|
-
status:
|
|
8249
|
-
specificationStatus: ImaSpecificationStatus;
|
|
8250
|
-
certificateTypeStatus: ImaCertificateTypeStatus;
|
|
8403
|
+
status: ImaMaterialCheckStatusDto;
|
|
8251
8404
|
created: Date;
|
|
8252
8405
|
createdBy: string;
|
|
8253
8406
|
createdById: string;
|
|
8254
|
-
createdByName
|
|
8407
|
+
createdByName?: string | null;
|
|
8255
8408
|
updatedBy: string;
|
|
8256
8409
|
updatedById: string;
|
|
8257
|
-
updatedByName
|
|
8410
|
+
updatedByName?: string | null;
|
|
8258
8411
|
isDeleted?: boolean;
|
|
8259
8412
|
reportCreatedBy?: string | null;
|
|
8260
8413
|
reportCreatedById?: string | null;
|
|
@@ -8280,15 +8433,15 @@ export interface ImaMaterialChecksPageRequestDto {
|
|
|
8280
8433
|
purchaseOrderDrawingFilter?: string | null;
|
|
8281
8434
|
dateFromFilter?: Date | null;
|
|
8282
8435
|
dateToFilter?: Date | null;
|
|
8283
|
-
statusFilter?:
|
|
8436
|
+
statusFilter?: ImaMaterialCheckStatusDto[] | null;
|
|
8284
8437
|
continuationToken?: string | null;
|
|
8285
8438
|
}
|
|
8286
8439
|
export interface ImaMaterialChecksPageOrderRequestDto {
|
|
8287
|
-
column?:
|
|
8288
|
-
direction?:
|
|
8440
|
+
column?: ImaMaterialChecksOrderByColumnDto;
|
|
8441
|
+
direction?: ImaOrderDirectionDto;
|
|
8289
8442
|
}
|
|
8290
|
-
export type
|
|
8291
|
-
export type
|
|
8443
|
+
export type ImaMaterialChecksOrderByColumnDto = "FileName" | "PurchaseOrder" | "Line" | "VendorBatch" | "Part" | "Drawing" | "Heat" | "CertificateType" | "Specification" | "GeneratedReport" | "Project" | "CustomerOrder" | "WorkOrder" | "Date" | "Status";
|
|
8444
|
+
export type ImaOrderDirectionDto = "Asc" | "Desc";
|
|
8292
8445
|
export interface ProcessMaterialCertificate {
|
|
8293
8446
|
files: UploadFileCdfDto[];
|
|
8294
8447
|
specificationId: string;
|
|
@@ -8393,7 +8546,7 @@ export interface ImaUpdateMatchSettingsColumnsDto {
|
|
|
8393
8546
|
date: boolean;
|
|
8394
8547
|
status: boolean;
|
|
8395
8548
|
}
|
|
8396
|
-
export interface ImaSpecificationDto
|
|
8549
|
+
export interface ImaSpecificationDto {
|
|
8397
8550
|
specificationId: string;
|
|
8398
8551
|
version: number;
|
|
8399
8552
|
allVersions: ImaSpecificationVersionDto[];
|
|
@@ -8401,16 +8554,16 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8401
8554
|
number: string;
|
|
8402
8555
|
revision: string;
|
|
8403
8556
|
date: Date;
|
|
8404
|
-
status:
|
|
8557
|
+
status: ImaSpecificationStatusDto;
|
|
8405
8558
|
summary?: string | null;
|
|
8406
8559
|
relatedStandards: string[];
|
|
8407
8560
|
created: Date;
|
|
8408
8561
|
createdBy: string;
|
|
8409
8562
|
createdById: string;
|
|
8410
|
-
createdByName
|
|
8563
|
+
createdByName?: string | null;
|
|
8411
8564
|
updatedBy: string;
|
|
8412
8565
|
updatedById: string;
|
|
8413
|
-
updatedByName
|
|
8566
|
+
updatedByName?: string | null;
|
|
8414
8567
|
updated: Date;
|
|
8415
8568
|
isDeleted: boolean;
|
|
8416
8569
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
@@ -8420,9 +8573,9 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8420
8573
|
}
|
|
8421
8574
|
export interface ImaSpecificationVersionDto {
|
|
8422
8575
|
version?: number;
|
|
8423
|
-
status?:
|
|
8576
|
+
status?: ImaSpecificationStatusDto;
|
|
8424
8577
|
}
|
|
8425
|
-
export interface ImaChemistrySpecificationDto
|
|
8578
|
+
export interface ImaChemistrySpecificationDto {
|
|
8426
8579
|
carbon?: ImaSpecificationLineDto | null;
|
|
8427
8580
|
manganese?: ImaSpecificationLineDto | null;
|
|
8428
8581
|
silicon?: ImaSpecificationLineDto | null;
|
|
@@ -8440,7 +8593,7 @@ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
|
8440
8593
|
min?: number | null;
|
|
8441
8594
|
max?: number | null;
|
|
8442
8595
|
}
|
|
8443
|
-
export interface ImaMechanicalSpecificationDto
|
|
8596
|
+
export interface ImaMechanicalSpecificationDto {
|
|
8444
8597
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8445
8598
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
8446
8599
|
elongation?: ImaSpecificationLineDto | null;
|
|
@@ -8448,26 +8601,26 @@ export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8448
8601
|
impactEnergy?: ImaSpecificationLineDto | null;
|
|
8449
8602
|
hardness?: ImaSpecificationLineDto | null;
|
|
8450
8603
|
}
|
|
8451
|
-
export interface ImaFerriteSpecificationDto
|
|
8604
|
+
export interface ImaFerriteSpecificationDto {
|
|
8452
8605
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8453
8606
|
}
|
|
8454
|
-
export interface ImaHeatTreatmentSpecificationDto
|
|
8607
|
+
export interface ImaHeatTreatmentSpecificationDto {
|
|
8455
8608
|
step: number;
|
|
8456
8609
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
8457
8610
|
heating?: ImaHeatTreatmentSpecificationHeatingDto | null;
|
|
8458
8611
|
}
|
|
8459
|
-
export interface ImaHeatTreatmentSpecificationCoolingDto
|
|
8460
|
-
coolingMethods:
|
|
8612
|
+
export interface ImaHeatTreatmentSpecificationCoolingDto {
|
|
8613
|
+
coolingMethods: ImaHeatTreatmentCoolingMethodDto[];
|
|
8461
8614
|
temperature?: ImaSpecificationLineDto | null;
|
|
8462
8615
|
duration?: ImaSpecificationLineDto | null;
|
|
8463
8616
|
}
|
|
8464
|
-
export type
|
|
8465
|
-
export interface ImaHeatTreatmentSpecificationHeatingDto
|
|
8466
|
-
heatingMethod:
|
|
8617
|
+
export type ImaHeatTreatmentCoolingMethodDto = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "NotSet";
|
|
8618
|
+
export interface ImaHeatTreatmentSpecificationHeatingDto {
|
|
8619
|
+
heatingMethod: ImaHeatTreatmentHeatingMethodDto;
|
|
8467
8620
|
temperature?: ImaSpecificationLineDto | null;
|
|
8468
8621
|
duration?: ImaSpecificationLineDto | null;
|
|
8469
8622
|
}
|
|
8470
|
-
export type
|
|
8623
|
+
export type ImaHeatTreatmentHeatingMethodDto = "Annealing" | "Austenitizing" | "Hardening" | "Normalizing" | "SolutionAnnealing" | "StressRelieving" | "Tempering" | "NotSet";
|
|
8471
8624
|
export interface ImaCreateSpecificationRequestDto {
|
|
8472
8625
|
name: string;
|
|
8473
8626
|
number: string;
|
|
@@ -8484,7 +8637,7 @@ export interface ImaCopySpecificationRequestDto {
|
|
|
8484
8637
|
export interface ImaUpdateSpecificationDto {
|
|
8485
8638
|
name?: string | null;
|
|
8486
8639
|
number?: string | null;
|
|
8487
|
-
status?:
|
|
8640
|
+
status?: ImaSpecificationStatusDto | null;
|
|
8488
8641
|
summary?: string | null;
|
|
8489
8642
|
relatedStandards?: string[] | null;
|
|
8490
8643
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
@@ -8492,23 +8645,24 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8492
8645
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8493
8646
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8494
8647
|
}
|
|
8495
|
-
export interface ImaSpecificationLiteDto
|
|
8648
|
+
export interface ImaSpecificationLiteDto {
|
|
8496
8649
|
specificationId: string;
|
|
8497
8650
|
version: number;
|
|
8498
8651
|
name: string;
|
|
8499
8652
|
number: string;
|
|
8500
8653
|
revision: string;
|
|
8501
8654
|
date: Date;
|
|
8502
|
-
status:
|
|
8655
|
+
status: ImaSpecificationStatusDto;
|
|
8503
8656
|
summary?: string | null;
|
|
8504
8657
|
relatedStandards: string[];
|
|
8505
8658
|
created: Date;
|
|
8506
8659
|
createdBy: string;
|
|
8507
8660
|
createdById: string;
|
|
8508
|
-
createdByName
|
|
8661
|
+
createdByName?: string | null;
|
|
8509
8662
|
updatedBy: string;
|
|
8510
8663
|
updatedById: string;
|
|
8511
|
-
updatedByName
|
|
8664
|
+
updatedByName?: string | null;
|
|
8665
|
+
updated: Date;
|
|
8512
8666
|
isDeleted: boolean;
|
|
8513
8667
|
}
|
|
8514
8668
|
export interface MeasurementFormSchemaDto {
|
|
@@ -9059,6 +9213,7 @@ export interface ListMeasurementFormsRequest {
|
|
|
9059
9213
|
pageSize?: number | null;
|
|
9060
9214
|
search?: string | null;
|
|
9061
9215
|
continuationToken?: string | null;
|
|
9216
|
+
tenantId?: string | null;
|
|
9062
9217
|
inactive?: boolean | null;
|
|
9063
9218
|
includeInactiveSupplierAccess?: boolean | null;
|
|
9064
9219
|
}
|
|
@@ -9254,6 +9409,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
|
|
|
9254
9409
|
externalOrderNumber?: string | null;
|
|
9255
9410
|
}
|
|
9256
9411
|
export interface ExportDimensionReportV2Request {
|
|
9412
|
+
tenantId?: string | null;
|
|
9257
9413
|
type: DimensionReportType;
|
|
9258
9414
|
extras?: DimensionReportExtras | null;
|
|
9259
9415
|
specificSerialNumbers?: string[] | null;
|
|
@@ -9596,94 +9752,6 @@ export interface SetDiscussionLastReadRequest {
|
|
|
9596
9752
|
operationId?: string | null;
|
|
9597
9753
|
resourceId?: string | null;
|
|
9598
9754
|
}
|
|
9599
|
-
export interface CompanyUserDto {
|
|
9600
|
-
companyId: string;
|
|
9601
|
-
userObjectId: string;
|
|
9602
|
-
username?: string | null;
|
|
9603
|
-
name?: string | null;
|
|
9604
|
-
roles: string[];
|
|
9605
|
-
}
|
|
9606
|
-
export interface CreateCompanyUser {
|
|
9607
|
-
username: string;
|
|
9608
|
-
name: string;
|
|
9609
|
-
roles: string[];
|
|
9610
|
-
companyId?: string | null;
|
|
9611
|
-
}
|
|
9612
|
-
export interface UpdateCompanyUserRequest {
|
|
9613
|
-
roles: string[];
|
|
9614
|
-
companyId?: string | null;
|
|
9615
|
-
}
|
|
9616
|
-
export interface ExternalRoleDto {
|
|
9617
|
-
id: string;
|
|
9618
|
-
name: string;
|
|
9619
|
-
}
|
|
9620
|
-
export interface CompanyCustomerDto {
|
|
9621
|
-
customerTenantId?: string | null;
|
|
9622
|
-
customerAzureAdTenantId?: string | null;
|
|
9623
|
-
customerName?: string | null;
|
|
9624
|
-
supplierId?: string | null;
|
|
9625
|
-
supplierName?: string | null;
|
|
9626
|
-
customerIgnosPortalPrefix?: string | null;
|
|
9627
|
-
}
|
|
9628
|
-
export interface CompanyDto {
|
|
9629
|
-
id: string;
|
|
9630
|
-
name: string;
|
|
9631
|
-
organizationNumber?: string | null;
|
|
9632
|
-
country: string;
|
|
9633
|
-
tenantId?: string | null;
|
|
9634
|
-
}
|
|
9635
|
-
export interface SupplierInviteDto {
|
|
9636
|
-
id: string;
|
|
9637
|
-
supplierId: string;
|
|
9638
|
-
supplierName?: string | null;
|
|
9639
|
-
customerName?: string | null;
|
|
9640
|
-
userId: string;
|
|
9641
|
-
userName?: string | null;
|
|
9642
|
-
acceptedTimestamp?: Date | null;
|
|
9643
|
-
createdTime: Date;
|
|
9644
|
-
createdBy: string;
|
|
9645
|
-
}
|
|
9646
|
-
export interface AcceptSupplierInviteNewCompany {
|
|
9647
|
-
companyName?: string;
|
|
9648
|
-
organizationNumber?: string;
|
|
9649
|
-
threeLetterIsoCountry?: string;
|
|
9650
|
-
}
|
|
9651
|
-
export interface AcceptSupplierInviteExistingCompany {
|
|
9652
|
-
companyId?: string;
|
|
9653
|
-
}
|
|
9654
|
-
export interface AcceptSupplierInviteCustomer {
|
|
9655
|
-
tenantId?: string;
|
|
9656
|
-
organizationNumber?: string;
|
|
9657
|
-
}
|
|
9658
|
-
export interface TenantWithSupplierDto {
|
|
9659
|
-
tenantId: string;
|
|
9660
|
-
customerName: string;
|
|
9661
|
-
supplierTenantEntraId: string;
|
|
9662
|
-
}
|
|
9663
|
-
export interface CreateSupplierInviteRequest {
|
|
9664
|
-
supplierId: string;
|
|
9665
|
-
threeLetterIsoCountry: string;
|
|
9666
|
-
organizationNumber: string;
|
|
9667
|
-
supplierName?: string | null;
|
|
9668
|
-
username: string;
|
|
9669
|
-
invitedName: string;
|
|
9670
|
-
}
|
|
9671
|
-
export interface ExternalSupplierDto {
|
|
9672
|
-
id: string;
|
|
9673
|
-
name: string;
|
|
9674
|
-
companyId: string;
|
|
9675
|
-
active: boolean;
|
|
9676
|
-
}
|
|
9677
|
-
export interface CreateSupplierMapping {
|
|
9678
|
-
companyId: string;
|
|
9679
|
-
existingSupplierId: string;
|
|
9680
|
-
newSupplierId: string;
|
|
9681
|
-
}
|
|
9682
|
-
export interface OrganizationDto {
|
|
9683
|
-
name?: string;
|
|
9684
|
-
postalAddress?: string | null;
|
|
9685
|
-
registeredAddress?: string | null;
|
|
9686
|
-
}
|
|
9687
9755
|
export type FeatureCollectionType = "FeatureCollection";
|
|
9688
9756
|
export interface Features {
|
|
9689
9757
|
type: FeaturesType;
|