@ignos/api-client 20260621.159.1-alpha → 20260629.161.1-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ignosportal-api.d.ts +403 -318
- package/lib/ignosportal-api.js +4843 -4189
- package/package.json +1 -1
- package/src/ignosportal-api.ts +6749 -6035
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -127,6 +127,7 @@ 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>;
|
|
130
131
|
}
|
|
131
132
|
export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
|
|
132
133
|
private http;
|
|
@@ -136,6 +137,8 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
|
|
|
136
137
|
});
|
|
137
138
|
getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
138
139
|
protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
140
|
+
getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
141
|
+
protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
139
142
|
}
|
|
140
143
|
export interface IPresentationClient {
|
|
141
144
|
getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
|
|
@@ -1389,6 +1392,24 @@ export declare class MachinesClient extends AuthorizedApiBase implements IMachin
|
|
|
1389
1392
|
deleteMachine(id: number): Promise<void>;
|
|
1390
1393
|
protected processDeleteMachine(response: Response): Promise<void>;
|
|
1391
1394
|
}
|
|
1395
|
+
export interface IMachineDataClient {
|
|
1396
|
+
getLiveMachineData(assetId: number, externalIds: string[] | undefined): Promise<LiveMachineDataDto>;
|
|
1397
|
+
getTimeseriesGraph(assetId: number, externalIds: string[] | undefined, startTime: Date | undefined, endTime: Date | undefined): Promise<TimeseriesGraphDto>;
|
|
1398
|
+
exportTimeseriesGraph(assetId: number, request: ExportTimeseriesGraphRequest): Promise<DownloadDto>;
|
|
1399
|
+
}
|
|
1400
|
+
export declare class MachineDataClient extends AuthorizedApiBase implements IMachineDataClient {
|
|
1401
|
+
private http;
|
|
1402
|
+
private baseUrl;
|
|
1403
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
1404
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1405
|
+
});
|
|
1406
|
+
getLiveMachineData(assetId: number, externalIds: string[] | undefined): Promise<LiveMachineDataDto>;
|
|
1407
|
+
protected processGetLiveMachineData(response: Response): Promise<LiveMachineDataDto>;
|
|
1408
|
+
getTimeseriesGraph(assetId: number, externalIds: string[] | undefined, startTime: Date | undefined, endTime: Date | undefined): Promise<TimeseriesGraphDto>;
|
|
1409
|
+
protected processGetTimeseriesGraph(response: Response): Promise<TimeseriesGraphDto>;
|
|
1410
|
+
exportTimeseriesGraph(assetId: number, request: ExportTimeseriesGraphRequest): Promise<DownloadDto>;
|
|
1411
|
+
protected processExportTimeseriesGraph(response: Response): Promise<DownloadDto>;
|
|
1412
|
+
}
|
|
1392
1413
|
export interface ILinksClient {
|
|
1393
1414
|
getAllLinks(scope: string | null | undefined): Promise<LinkDto[]>;
|
|
1394
1415
|
createLink(request: CreateLinkRequest): Promise<LinkDto>;
|
|
@@ -1499,99 +1520,6 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
|
|
|
1499
1520
|
listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
|
|
1500
1521
|
protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
|
|
1501
1522
|
}
|
|
1502
|
-
export interface IExternalAccessClient {
|
|
1503
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1504
|
-
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1505
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1506
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1507
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1508
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1509
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1510
|
-
}
|
|
1511
|
-
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
1512
|
-
private http;
|
|
1513
|
-
private baseUrl;
|
|
1514
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
1515
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1516
|
-
});
|
|
1517
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1518
|
-
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
1519
|
-
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1520
|
-
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1521
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1522
|
-
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1523
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1524
|
-
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
1525
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1526
|
-
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
1527
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1528
|
-
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
1529
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1530
|
-
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
1531
|
-
}
|
|
1532
|
-
export interface IExternalClient {
|
|
1533
|
-
listInvites(): Promise<InviteDto[]>;
|
|
1534
|
-
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1535
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
1536
|
-
}
|
|
1537
|
-
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
1538
|
-
private http;
|
|
1539
|
-
private baseUrl;
|
|
1540
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
1541
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1542
|
-
});
|
|
1543
|
-
listInvites(): Promise<InviteDto[]>;
|
|
1544
|
-
protected processListInvites(response: Response): Promise<InviteDto[]>;
|
|
1545
|
-
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1546
|
-
protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
|
|
1547
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
1548
|
-
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
1549
|
-
}
|
|
1550
|
-
export interface ISuppliersClient {
|
|
1551
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1552
|
-
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1553
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
1554
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1555
|
-
deleteSupplier(id: string): Promise<void>;
|
|
1556
|
-
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1557
|
-
/**
|
|
1558
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
1559
|
-
*/
|
|
1560
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1561
|
-
/**
|
|
1562
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1563
|
-
*/
|
|
1564
|
-
deleteSupplierMappings(): Promise<void>;
|
|
1565
|
-
}
|
|
1566
|
-
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
1567
|
-
private http;
|
|
1568
|
-
private baseUrl;
|
|
1569
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
1570
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1571
|
-
});
|
|
1572
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1573
|
-
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
1574
|
-
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1575
|
-
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
1576
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
1577
|
-
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
1578
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1579
|
-
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
1580
|
-
deleteSupplier(id: string): Promise<void>;
|
|
1581
|
-
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
1582
|
-
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1583
|
-
protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
|
|
1584
|
-
/**
|
|
1585
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
1586
|
-
*/
|
|
1587
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1588
|
-
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
1589
|
-
/**
|
|
1590
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1591
|
-
*/
|
|
1592
|
-
deleteSupplierMappings(): Promise<void>;
|
|
1593
|
-
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
1594
|
-
}
|
|
1595
1523
|
export interface ICncFileTransferClient {
|
|
1596
1524
|
startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
|
|
1597
1525
|
startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
|
|
@@ -2395,6 +2323,24 @@ export declare class MesEngineeringChangeOrdersClient extends AuthorizedApiBase
|
|
|
2395
2323
|
getEngineeringChangeOrderDetails(partNumber: string | undefined): Promise<EngineeringChangeOrdersDto>;
|
|
2396
2324
|
protected processGetEngineeringChangeOrderDetails(response: Response): Promise<EngineeringChangeOrdersDto>;
|
|
2397
2325
|
}
|
|
2326
|
+
export interface IMesIndirectActivitiesClient {
|
|
2327
|
+
listIndirectActivities(): Promise<IndirectActivityDto[]>;
|
|
2328
|
+
getMyActiveIndirectActivity(): Promise<CurrentIndirectActivityDto>;
|
|
2329
|
+
startIndirectActivity(request: StartIndirectActivity): Promise<void>;
|
|
2330
|
+
}
|
|
2331
|
+
export declare class MesIndirectActivitiesClient extends AuthorizedApiBase implements IMesIndirectActivitiesClient {
|
|
2332
|
+
private http;
|
|
2333
|
+
private baseUrl;
|
|
2334
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2335
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2336
|
+
});
|
|
2337
|
+
listIndirectActivities(): Promise<IndirectActivityDto[]>;
|
|
2338
|
+
protected processListIndirectActivities(response: Response): Promise<IndirectActivityDto[]>;
|
|
2339
|
+
getMyActiveIndirectActivity(): Promise<CurrentIndirectActivityDto>;
|
|
2340
|
+
protected processGetMyActiveIndirectActivity(response: Response): Promise<CurrentIndirectActivityDto>;
|
|
2341
|
+
startIndirectActivity(request: StartIndirectActivity): Promise<void>;
|
|
2342
|
+
protected processStartIndirectActivity(response: Response): Promise<void>;
|
|
2343
|
+
}
|
|
2398
2344
|
export interface IMesLinksClient {
|
|
2399
2345
|
addMesLink(request: AddMesLink): Promise<void>;
|
|
2400
2346
|
listMesLinks(types: MesLinkTypeDto[] | null | undefined, workOrderId: string | null | undefined, operation: number | null | undefined): Promise<MesLinkDto[]>;
|
|
@@ -2434,17 +2380,26 @@ export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOr
|
|
|
2434
2380
|
getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
|
|
2435
2381
|
protected processGetPrintableLabels(response: Response): Promise<DownloadDto>;
|
|
2436
2382
|
}
|
|
2437
|
-
export interface
|
|
2438
|
-
|
|
2383
|
+
export interface IMesProductionOrderAttachmentClient {
|
|
2384
|
+
upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<FileResponse>;
|
|
2385
|
+
getAttachments(id: string): Promise<WorkOrderAttachmentDto[]>;
|
|
2386
|
+
getAttachmentFile(id: string, attachmentId: number): Promise<FileResponse>;
|
|
2387
|
+
deleteAttachment(id: string, attachmentId: number): Promise<FileResponse>;
|
|
2439
2388
|
}
|
|
2440
|
-
export declare class
|
|
2389
|
+
export declare class MesProductionOrderAttachmentClient extends AuthorizedApiBase implements IMesProductionOrderAttachmentClient {
|
|
2441
2390
|
private http;
|
|
2442
2391
|
private baseUrl;
|
|
2443
2392
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2444
2393
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2445
2394
|
});
|
|
2446
|
-
|
|
2447
|
-
protected
|
|
2395
|
+
upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<FileResponse>;
|
|
2396
|
+
protected processUpload(response: Response): Promise<FileResponse>;
|
|
2397
|
+
getAttachments(id: string): Promise<WorkOrderAttachmentDto[]>;
|
|
2398
|
+
protected processGetAttachments(response: Response): Promise<WorkOrderAttachmentDto[]>;
|
|
2399
|
+
getAttachmentFile(id: string, attachmentId: number): Promise<FileResponse>;
|
|
2400
|
+
protected processGetAttachmentFile(response: Response): Promise<FileResponse>;
|
|
2401
|
+
deleteAttachment(id: string, attachmentId: number): Promise<FileResponse>;
|
|
2402
|
+
protected processDeleteAttachment(response: Response): Promise<FileResponse>;
|
|
2448
2403
|
}
|
|
2449
2404
|
export interface IMesProductionOrderClient {
|
|
2450
2405
|
getProductionOrder(id: string): Promise<ProductionOrderDto>;
|
|
@@ -2643,7 +2598,7 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
|
|
|
2643
2598
|
}
|
|
2644
2599
|
export interface IInspectMatchMaterialChecksAdminClient {
|
|
2645
2600
|
updateMaterialCheckOverrides(id: string, request: ImaOverrideMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2646
|
-
updateMaterialCheckStatus(id: string, status:
|
|
2601
|
+
updateMaterialCheckStatus(id: string, status: ImaMaterialCheckStatusDto | undefined): Promise<ImaMaterialCheckDto>;
|
|
2647
2602
|
updateMaterialCheckMetadata(id: string, metadataRequest: ImaUpdateMaterialCheckMetadataRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2648
2603
|
deleteMaterialCheck(id: string): Promise<void>;
|
|
2649
2604
|
}
|
|
@@ -2655,7 +2610,7 @@ export declare class InspectMatchMaterialChecksAdminClient extends AuthorizedApi
|
|
|
2655
2610
|
});
|
|
2656
2611
|
updateMaterialCheckOverrides(id: string, request: ImaOverrideMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2657
2612
|
protected processUpdateMaterialCheckOverrides(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2658
|
-
updateMaterialCheckStatus(id: string, status:
|
|
2613
|
+
updateMaterialCheckStatus(id: string, status: ImaMaterialCheckStatusDto | undefined): Promise<ImaMaterialCheckDto>;
|
|
2659
2614
|
protected processUpdateMaterialCheckStatus(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2660
2615
|
updateMaterialCheckMetadata(id: string, metadataRequest: ImaUpdateMaterialCheckMetadataRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2661
2616
|
protected processUpdateMaterialCheckMetadata(response: Response): Promise<ImaMaterialCheckDto>;
|
|
@@ -3008,22 +2963,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
|
|
|
3008
2963
|
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
3009
2964
|
}
|
|
3010
2965
|
export interface IMeasurementFormsInstancesClient {
|
|
3011
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined,
|
|
2966
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3012
2967
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3013
|
-
getMeasurementFormInstance(id: string
|
|
2968
|
+
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3014
2969
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3015
|
-
completeMeasurementFormInstance(id: string
|
|
3016
|
-
completeMeasurementFormInstanceV2(id: string
|
|
3017
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined
|
|
3018
|
-
getWorkorderMeasurementFormProgress(id: string
|
|
3019
|
-
getAuditLog(id: string,
|
|
2970
|
+
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2971
|
+
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2972
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2973
|
+
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
2974
|
+
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3020
2975
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
3021
|
-
saveValue(id: string,
|
|
3022
|
-
saveTool(id: string,
|
|
3023
|
-
saveComment(id: string,
|
|
3024
|
-
batchInsertValues(id: string,
|
|
3025
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string,
|
|
3026
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string,
|
|
2976
|
+
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2977
|
+
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2978
|
+
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
2979
|
+
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2980
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2981
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3027
2982
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
3028
2983
|
upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
|
|
3029
2984
|
removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
|
|
@@ -3039,37 +2994,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
3039
2994
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3040
2995
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3041
2996
|
});
|
|
3042
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined,
|
|
2997
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3043
2998
|
protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3044
2999
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3045
3000
|
protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3046
|
-
getMeasurementFormInstance(id: string
|
|
3001
|
+
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3047
3002
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3048
3003
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3049
3004
|
protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3050
|
-
completeMeasurementFormInstance(id: string
|
|
3005
|
+
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3051
3006
|
protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3052
|
-
completeMeasurementFormInstanceV2(id: string
|
|
3007
|
+
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3053
3008
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3054
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined
|
|
3009
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3055
3010
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3056
|
-
getWorkorderMeasurementFormProgress(id: string
|
|
3011
|
+
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
3057
3012
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
3058
|
-
getAuditLog(id: string,
|
|
3013
|
+
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3059
3014
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3060
3015
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
3061
3016
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
3062
|
-
saveValue(id: string,
|
|
3017
|
+
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3063
3018
|
protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
|
|
3064
|
-
saveTool(id: string,
|
|
3019
|
+
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3065
3020
|
protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
|
|
3066
|
-
saveComment(id: string,
|
|
3021
|
+
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
3067
3022
|
protected processSaveComment(response: Response): Promise<void>;
|
|
3068
|
-
batchInsertValues(id: string,
|
|
3023
|
+
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3069
3024
|
protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
|
|
3070
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string,
|
|
3025
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3071
3026
|
protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
|
|
3072
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string,
|
|
3027
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3073
3028
|
protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
|
|
3074
3029
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
3075
3030
|
protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
@@ -3094,7 +3049,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
3094
3049
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
3095
3050
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3096
3051
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3097
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string
|
|
3052
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3098
3053
|
}
|
|
3099
3054
|
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
3100
3055
|
private http;
|
|
@@ -3118,7 +3073,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
|
|
|
3118
3073
|
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3119
3074
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3120
3075
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3121
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string
|
|
3076
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3122
3077
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
3123
3078
|
}
|
|
3124
3079
|
export interface ICompaniesClient {
|
|
@@ -3458,6 +3413,117 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3458
3413
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3459
3414
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3460
3415
|
}
|
|
3416
|
+
export interface IExternalAccessClient {
|
|
3417
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3418
|
+
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3419
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3420
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3421
|
+
migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
|
|
3422
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3423
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3424
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3425
|
+
}
|
|
3426
|
+
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3427
|
+
private http;
|
|
3428
|
+
private baseUrl;
|
|
3429
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3430
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3431
|
+
});
|
|
3432
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3433
|
+
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
3434
|
+
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3435
|
+
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3436
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3437
|
+
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3438
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3439
|
+
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
3440
|
+
migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
|
|
3441
|
+
protected processMigrateLegacyCompanyUsersToEntra(response: Response): Promise<CompanyUserDto[]>;
|
|
3442
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3443
|
+
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
3444
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3445
|
+
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
3446
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3447
|
+
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
3448
|
+
}
|
|
3449
|
+
export interface IExternalClient {
|
|
3450
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3451
|
+
getCompany(id: string): Promise<CompanyDto>;
|
|
3452
|
+
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3453
|
+
acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
|
|
3454
|
+
acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
|
|
3455
|
+
acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
|
|
3456
|
+
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3457
|
+
}
|
|
3458
|
+
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3459
|
+
private http;
|
|
3460
|
+
private baseUrl;
|
|
3461
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3462
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3463
|
+
});
|
|
3464
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3465
|
+
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3466
|
+
getCompany(id: string): Promise<CompanyDto>;
|
|
3467
|
+
protected processGetCompany(response: Response): Promise<CompanyDto>;
|
|
3468
|
+
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3469
|
+
protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3470
|
+
acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
|
|
3471
|
+
protected processAcceptSupplierInviteNewCompany(response: Response): Promise<SupplierInviteDto>;
|
|
3472
|
+
acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
|
|
3473
|
+
protected processAcceptSupplierInviteExistingCompany(response: Response): Promise<SupplierInviteDto>;
|
|
3474
|
+
acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
|
|
3475
|
+
protected processAcceptSupplierInviteCustomer(response: Response): Promise<SupplierInviteDto>;
|
|
3476
|
+
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3477
|
+
protected processListTenantsWithSuppliers(response: Response): Promise<TenantWithSupplierDto[]>;
|
|
3478
|
+
}
|
|
3479
|
+
export interface ISuppliersClient {
|
|
3480
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3481
|
+
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3482
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
3483
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3484
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3485
|
+
/**
|
|
3486
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3487
|
+
*/
|
|
3488
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3489
|
+
/**
|
|
3490
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3491
|
+
*/
|
|
3492
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3493
|
+
lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
|
|
3494
|
+
getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
|
|
3495
|
+
}
|
|
3496
|
+
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3497
|
+
private http;
|
|
3498
|
+
private baseUrl;
|
|
3499
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3500
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3501
|
+
});
|
|
3502
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3503
|
+
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3504
|
+
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3505
|
+
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3506
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
3507
|
+
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
3508
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3509
|
+
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3510
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3511
|
+
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3512
|
+
/**
|
|
3513
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3514
|
+
*/
|
|
3515
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3516
|
+
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3517
|
+
/**
|
|
3518
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3519
|
+
*/
|
|
3520
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3521
|
+
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3522
|
+
lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
|
|
3523
|
+
protected processLookupOrganization(response: Response): Promise<OrganizationDto>;
|
|
3524
|
+
getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
|
|
3525
|
+
protected processGetOrganizationLookupSupportedCountries(response: Response): Promise<CountryDto[]>;
|
|
3526
|
+
}
|
|
3461
3527
|
export interface AzureRegionDto {
|
|
3462
3528
|
displayName: string;
|
|
3463
3529
|
name: string;
|
|
@@ -3769,6 +3835,9 @@ export interface UserDetailsDto {
|
|
|
3769
3835
|
isExternalUser?: boolean;
|
|
3770
3836
|
isBetaTester?: boolean | null;
|
|
3771
3837
|
hasAccessToIgnos?: boolean;
|
|
3838
|
+
isInvitedUser?: boolean;
|
|
3839
|
+
isSupplier?: boolean;
|
|
3840
|
+
companyId?: string | null;
|
|
3772
3841
|
}
|
|
3773
3842
|
export interface UserDto {
|
|
3774
3843
|
id?: string | null;
|
|
@@ -5589,6 +5658,40 @@ export interface CrossCompanyUtilizationSummaryDto {
|
|
|
5589
5658
|
crossCompany: FactoryUtilizationDto;
|
|
5590
5659
|
companies: MachineGroupUtilizationDto[];
|
|
5591
5660
|
}
|
|
5661
|
+
export interface LiveMachineDataDto {
|
|
5662
|
+
assetId?: number;
|
|
5663
|
+
dataPoints?: LiveMachineDataPointDto[];
|
|
5664
|
+
}
|
|
5665
|
+
export interface LiveMachineDataPointDto {
|
|
5666
|
+
externalId?: string;
|
|
5667
|
+
timestamp?: number | null;
|
|
5668
|
+
numericValue?: number | null;
|
|
5669
|
+
stringValue?: string | null;
|
|
5670
|
+
}
|
|
5671
|
+
export interface TimeseriesGraphDto {
|
|
5672
|
+
assetId?: number;
|
|
5673
|
+
series?: TimeseriesGraphSeriesDto[];
|
|
5674
|
+
}
|
|
5675
|
+
export interface TimeseriesGraphSeriesDto {
|
|
5676
|
+
externalId?: string;
|
|
5677
|
+
isString?: boolean;
|
|
5678
|
+
dataPoints?: TimeseriesGraphDataPointDto[];
|
|
5679
|
+
}
|
|
5680
|
+
export interface TimeseriesGraphDataPointDto {
|
|
5681
|
+
timestamp?: number;
|
|
5682
|
+
numericValue?: number | null;
|
|
5683
|
+
stringValue?: string | null;
|
|
5684
|
+
}
|
|
5685
|
+
export interface ExportTimeseriesGraphRequest {
|
|
5686
|
+
series?: TimeseriesExportSeries[];
|
|
5687
|
+
startTime?: Date;
|
|
5688
|
+
endTime?: Date;
|
|
5689
|
+
}
|
|
5690
|
+
export interface TimeseriesExportSeries {
|
|
5691
|
+
externalId?: string;
|
|
5692
|
+
displayName?: string | null;
|
|
5693
|
+
unit?: string | null;
|
|
5694
|
+
}
|
|
5592
5695
|
export interface LinkDto {
|
|
5593
5696
|
id: string;
|
|
5594
5697
|
uri: string;
|
|
@@ -5747,97 +5850,6 @@ export interface DocumentGeneratorTypeDto {
|
|
|
5747
5850
|
key: string;
|
|
5748
5851
|
description: string;
|
|
5749
5852
|
}
|
|
5750
|
-
export interface CompanyUserDto {
|
|
5751
|
-
companyId?: string | null;
|
|
5752
|
-
username?: string | null;
|
|
5753
|
-
name?: string | null;
|
|
5754
|
-
roles?: string[] | null;
|
|
5755
|
-
}
|
|
5756
|
-
export interface CreateCompanyUserRequest {
|
|
5757
|
-
username: string;
|
|
5758
|
-
name: string;
|
|
5759
|
-
roles: string[];
|
|
5760
|
-
companyId?: string | null;
|
|
5761
|
-
}
|
|
5762
|
-
export interface UpdateCompanyUserRequest {
|
|
5763
|
-
name: string;
|
|
5764
|
-
roles: string[];
|
|
5765
|
-
companyId?: string | null;
|
|
5766
|
-
}
|
|
5767
|
-
export interface ExternalRoleDto {
|
|
5768
|
-
id: string;
|
|
5769
|
-
name: string;
|
|
5770
|
-
}
|
|
5771
|
-
export interface CompanyCustomerDto {
|
|
5772
|
-
customerTenantId?: string | null;
|
|
5773
|
-
customerAzureAdTenantId?: string | null;
|
|
5774
|
-
customerName?: string | null;
|
|
5775
|
-
supplierId?: string | null;
|
|
5776
|
-
supplierName?: string | null;
|
|
5777
|
-
}
|
|
5778
|
-
export interface InviteDto {
|
|
5779
|
-
tenantId: string;
|
|
5780
|
-
companyName: string;
|
|
5781
|
-
id: string;
|
|
5782
|
-
supplierId: string;
|
|
5783
|
-
supplierName: string;
|
|
5784
|
-
username: string;
|
|
5785
|
-
deadline: Date;
|
|
5786
|
-
createdTime: Date;
|
|
5787
|
-
createdBy: string;
|
|
5788
|
-
}
|
|
5789
|
-
export interface CompanyDto {
|
|
5790
|
-
id?: string | null;
|
|
5791
|
-
name?: string | null;
|
|
5792
|
-
organizationNumber?: string | null;
|
|
5793
|
-
country?: string | null;
|
|
5794
|
-
tenantId?: string | null;
|
|
5795
|
-
}
|
|
5796
|
-
export interface AcceptSupplierInviteRequest {
|
|
5797
|
-
tenantId: string;
|
|
5798
|
-
existingCompanyId?: string | null;
|
|
5799
|
-
companyName?: string | null;
|
|
5800
|
-
organizationNumber?: string | null;
|
|
5801
|
-
threeLetterIsoCountry?: string | null;
|
|
5802
|
-
}
|
|
5803
|
-
export interface SupplierInviteDto {
|
|
5804
|
-
id: string;
|
|
5805
|
-
supplierId: string;
|
|
5806
|
-
name: string;
|
|
5807
|
-
username: string;
|
|
5808
|
-
deadline: Date;
|
|
5809
|
-
createdTime: Date;
|
|
5810
|
-
createdBy: string;
|
|
5811
|
-
}
|
|
5812
|
-
export interface CreateSupplierInvite {
|
|
5813
|
-
supplierId: string;
|
|
5814
|
-
name: string;
|
|
5815
|
-
username: string;
|
|
5816
|
-
deadline: Date;
|
|
5817
|
-
}
|
|
5818
|
-
export interface ExternalSupplierDto {
|
|
5819
|
-
id: string;
|
|
5820
|
-
name: string;
|
|
5821
|
-
companyId: string;
|
|
5822
|
-
active: boolean;
|
|
5823
|
-
}
|
|
5824
|
-
export interface ImportSupplier {
|
|
5825
|
-
supplierId: string;
|
|
5826
|
-
name: string;
|
|
5827
|
-
organizationNumber?: string | null;
|
|
5828
|
-
threeLetterIsoCountry: string;
|
|
5829
|
-
users: ImportSupplierUserDto[];
|
|
5830
|
-
}
|
|
5831
|
-
export interface ImportSupplierUserDto {
|
|
5832
|
-
username: string;
|
|
5833
|
-
name: string;
|
|
5834
|
-
roles: string[];
|
|
5835
|
-
}
|
|
5836
|
-
export interface CreateSupplierMapping {
|
|
5837
|
-
companyId: string;
|
|
5838
|
-
existingSupplierId: string;
|
|
5839
|
-
newSupplierId: string;
|
|
5840
|
-
}
|
|
5841
5853
|
export interface CncMachineTransferDto {
|
|
5842
5854
|
id: string;
|
|
5843
5855
|
cncMachineOperationId?: string | null;
|
|
@@ -7191,6 +7203,19 @@ export interface EngineeringChangeOrdersDto {
|
|
|
7191
7203
|
mostRecentEngineeringChangeOrder?: Date | null;
|
|
7192
7204
|
engineeringChangeOrders?: EngineeringChangeOrderDto[];
|
|
7193
7205
|
}
|
|
7206
|
+
export interface IndirectActivityDto {
|
|
7207
|
+
activityId: string;
|
|
7208
|
+
name: string;
|
|
7209
|
+
companyId: string;
|
|
7210
|
+
}
|
|
7211
|
+
export interface CurrentIndirectActivityDto {
|
|
7212
|
+
activityId?: string | null;
|
|
7213
|
+
personnelNumber?: string | null;
|
|
7214
|
+
startTime?: Date | null;
|
|
7215
|
+
}
|
|
7216
|
+
export interface StartIndirectActivity {
|
|
7217
|
+
activityId: string;
|
|
7218
|
+
}
|
|
7194
7219
|
export interface AddMesLink {
|
|
7195
7220
|
uri: string;
|
|
7196
7221
|
name: string;
|
|
@@ -7231,38 +7256,17 @@ export interface LabelId {
|
|
|
7231
7256
|
parcelId: string;
|
|
7232
7257
|
trackingId?: string | null;
|
|
7233
7258
|
}
|
|
7234
|
-
export
|
|
7235
|
-
|
|
7236
|
-
|
|
7237
|
-
|
|
7238
|
-
|
|
7239
|
-
|
|
7240
|
-
|
|
7241
|
-
|
|
7242
|
-
|
|
7243
|
-
|
|
7244
|
-
|
|
7245
|
-
operation: number;
|
|
7246
|
-
operationName: string;
|
|
7247
|
-
plannedStart: Date;
|
|
7248
|
-
plannedEnd?: Date | null;
|
|
7249
|
-
status: OperationStatusDto;
|
|
7250
|
-
resourceId: string;
|
|
7251
|
-
resourceName: string;
|
|
7252
|
-
resourceDepartmentNumber?: string | null;
|
|
7253
|
-
resourceDepartmentName?: string | null;
|
|
7254
|
-
partNumber: string;
|
|
7255
|
-
partName?: string | null;
|
|
7256
|
-
partMaterial?: string | null;
|
|
7257
|
-
quantity: number;
|
|
7258
|
-
producedQuantity: number;
|
|
7259
|
-
totalPlannedHours?: number;
|
|
7260
|
-
totalUsedHours?: number;
|
|
7261
|
-
customerName?: string | null;
|
|
7262
|
-
project?: WorkOrderProjectDto | null;
|
|
7263
|
-
sequenceNumber: number;
|
|
7264
|
-
isManuallyLocked: boolean;
|
|
7265
|
-
weekGroup: string;
|
|
7259
|
+
export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
|
|
7260
|
+
export interface WorkOrderAttachmentDto {
|
|
7261
|
+
createdBy?: UserDto | null;
|
|
7262
|
+
created?: Date | null;
|
|
7263
|
+
modifiedBy?: UserDto | null;
|
|
7264
|
+
modified?: Date | null;
|
|
7265
|
+
attachmentId?: number | null;
|
|
7266
|
+
name?: string | null;
|
|
7267
|
+
fileName?: string | null;
|
|
7268
|
+
notes?: string | null;
|
|
7269
|
+
attachmentType?: string | null;
|
|
7266
7270
|
}
|
|
7267
7271
|
export interface ProductionOrderDto {
|
|
7268
7272
|
id: string;
|
|
@@ -7322,15 +7326,6 @@ export interface ProductionOrderOperationDto {
|
|
|
7322
7326
|
productionStatus: OperationStatusDto;
|
|
7323
7327
|
setupStatus?: OperationStatusDto | null;
|
|
7324
7328
|
}
|
|
7325
|
-
export interface WorkOrderAttachmentDto {
|
|
7326
|
-
createdBy?: UserDto | null;
|
|
7327
|
-
created?: Date | null;
|
|
7328
|
-
modifiedBy?: UserDto | null;
|
|
7329
|
-
modified?: Date | null;
|
|
7330
|
-
name?: string | null;
|
|
7331
|
-
notes?: string | null;
|
|
7332
|
-
attachmentType?: string | null;
|
|
7333
|
-
}
|
|
7334
7329
|
export interface DrawingDto {
|
|
7335
7330
|
drawingNumber: string;
|
|
7336
7331
|
revision: string;
|
|
@@ -7834,34 +7829,31 @@ export interface WeldingIotConfigDto {
|
|
|
7834
7829
|
}
|
|
7835
7830
|
export interface CreateWeldingIotConfig {
|
|
7836
7831
|
}
|
|
7837
|
-
export interface
|
|
7838
|
-
}
|
|
7839
|
-
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
7840
|
-
companyId: string;
|
|
7832
|
+
export interface ImaCertificateTypeDto {
|
|
7841
7833
|
certificateTypeId: string;
|
|
7842
7834
|
version: number;
|
|
7843
7835
|
allVersions: ImaCertificateTypeVersionDto[];
|
|
7844
7836
|
name: string;
|
|
7845
7837
|
revision: string;
|
|
7846
|
-
status:
|
|
7838
|
+
status: ImaCertificateTypeStatusDto;
|
|
7847
7839
|
description?: string | null;
|
|
7848
7840
|
isStandardCertificateType: boolean;
|
|
7849
7841
|
created: Date;
|
|
7850
7842
|
createdBy: string;
|
|
7851
7843
|
createdById: string;
|
|
7852
|
-
createdByName
|
|
7844
|
+
createdByName?: string | null;
|
|
7853
7845
|
updatedBy: string;
|
|
7854
7846
|
updatedById: string;
|
|
7855
|
-
updatedByName
|
|
7847
|
+
updatedByName?: string | null;
|
|
7856
7848
|
updated: Date;
|
|
7857
7849
|
isDeleted: boolean;
|
|
7858
7850
|
requirements: ImaCertificateTypeRequirementsDto;
|
|
7859
7851
|
}
|
|
7860
7852
|
export interface ImaCertificateTypeVersionDto {
|
|
7861
7853
|
version?: number;
|
|
7862
|
-
status?:
|
|
7854
|
+
status?: ImaCertificateTypeStatusDto;
|
|
7863
7855
|
}
|
|
7864
|
-
export type
|
|
7856
|
+
export type ImaCertificateTypeStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7865
7857
|
export interface ImaCertificateTypeRequirementsDto {
|
|
7866
7858
|
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
7867
7859
|
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
@@ -7872,6 +7864,8 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
7872
7864
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
7873
7865
|
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
7874
7866
|
}
|
|
7867
|
+
export interface ImaCdfEntityReadBase {
|
|
7868
|
+
}
|
|
7875
7869
|
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
7876
7870
|
manufacturer?: boolean;
|
|
7877
7871
|
address?: boolean;
|
|
@@ -7939,7 +7933,7 @@ export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
|
7939
7933
|
export interface ImaUpdateImaCertificateTypeRequestDto {
|
|
7940
7934
|
name?: string | null;
|
|
7941
7935
|
revision?: string | null;
|
|
7942
|
-
status?:
|
|
7936
|
+
status?: ImaCertificateTypeStatusDto | null;
|
|
7943
7937
|
description?: string | null;
|
|
7944
7938
|
requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
|
|
7945
7939
|
}
|
|
@@ -8012,21 +8006,21 @@ export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
|
8012
8006
|
microExaminationReport?: boolean | null;
|
|
8013
8007
|
radiologicalReport?: boolean | null;
|
|
8014
8008
|
}
|
|
8015
|
-
export interface ImaCertificateTypeLiteDto
|
|
8009
|
+
export interface ImaCertificateTypeLiteDto {
|
|
8016
8010
|
certificateTypeId: string;
|
|
8017
8011
|
version: number;
|
|
8018
8012
|
name: string;
|
|
8019
8013
|
revision: string;
|
|
8020
|
-
status:
|
|
8014
|
+
status: ImaCertificateTypeStatusDto;
|
|
8021
8015
|
description?: string | null;
|
|
8022
8016
|
isStandardCertificateType: boolean;
|
|
8023
8017
|
created: Date;
|
|
8024
8018
|
createdBy: string;
|
|
8025
8019
|
createdById: string;
|
|
8026
|
-
createdByName
|
|
8020
|
+
createdByName?: string | null;
|
|
8027
8021
|
updatedBy: string;
|
|
8028
8022
|
updatedById: string;
|
|
8029
|
-
updatedByName
|
|
8023
|
+
updatedByName?: string | null;
|
|
8030
8024
|
updated: Date;
|
|
8031
8025
|
isDeleted: boolean;
|
|
8032
8026
|
}
|
|
@@ -8042,27 +8036,29 @@ export interface ImaMaterialCheckDto {
|
|
|
8042
8036
|
certificateTypeVersion?: number | null;
|
|
8043
8037
|
certificateTypeName?: string | null;
|
|
8044
8038
|
certificateTypeRevision?: string | null;
|
|
8039
|
+
certificateTypeStatus: ImaCertificateTypeStatusDto;
|
|
8045
8040
|
specificationId: string;
|
|
8046
8041
|
specificationVersion: number;
|
|
8047
8042
|
specificationName: string;
|
|
8048
|
-
specificationRevision
|
|
8049
|
-
specificationStatus:
|
|
8050
|
-
certificateTypeStatus: ImaCertificateTypeStatus;
|
|
8043
|
+
specificationRevision?: string | null;
|
|
8044
|
+
specificationStatus: ImaSpecificationStatusDto;
|
|
8051
8045
|
purchaseOrder?: string | null;
|
|
8052
8046
|
purchaseOrderLine?: number | null;
|
|
8053
8047
|
purchaseOrderVendorBatches?: string[] | null;
|
|
8054
8048
|
purchaseOrderPartName?: string | null;
|
|
8055
8049
|
purchaseOrderPartNumber?: string | null;
|
|
8050
|
+
purchaseOrderPartRevision?: string | null;
|
|
8056
8051
|
purchaseOrderDrawing?: string | null;
|
|
8052
|
+
purchaseOrderDrawingRevision?: string | null;
|
|
8057
8053
|
heatNumber?: string | null;
|
|
8058
|
-
status:
|
|
8054
|
+
status: ImaMaterialCheckStatusDto;
|
|
8059
8055
|
created: Date;
|
|
8060
8056
|
createdBy: string;
|
|
8061
8057
|
createdById: string;
|
|
8062
|
-
createdByName
|
|
8058
|
+
createdByName?: string | null;
|
|
8063
8059
|
updatedBy: string;
|
|
8064
8060
|
updatedById: string;
|
|
8065
|
-
updatedByName
|
|
8061
|
+
updatedByName?: string | null;
|
|
8066
8062
|
isDeleted: boolean;
|
|
8067
8063
|
reportCreatedBy?: string | null;
|
|
8068
8064
|
reportCreatedById?: string | null;
|
|
@@ -8071,8 +8067,8 @@ export interface ImaMaterialCheckDto {
|
|
|
8071
8067
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
8072
8068
|
specificationResults: ImaSpecificationResultsDto;
|
|
8073
8069
|
}
|
|
8074
|
-
export type
|
|
8075
|
-
export type
|
|
8070
|
+
export type ImaSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8071
|
+
export type ImaMaterialCheckStatusDto = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
8076
8072
|
export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
8077
8073
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
8078
8074
|
signature: ImaCertificateTypeSignatureResultsDto;
|
|
@@ -8179,10 +8175,10 @@ export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
|
|
|
8179
8175
|
specificationMin?: number | null;
|
|
8180
8176
|
specificationMax?: number | null;
|
|
8181
8177
|
readValue?: string | null;
|
|
8182
|
-
status:
|
|
8178
|
+
status: ImaSpecificationResultLineStatusDto;
|
|
8183
8179
|
override?: ImaResultLineOverrideDto | null;
|
|
8184
8180
|
}
|
|
8185
|
-
export type
|
|
8181
|
+
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8186
8182
|
export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBase {
|
|
8187
8183
|
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
8188
8184
|
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
@@ -8198,7 +8194,7 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
8198
8194
|
specificationMin?: number | null;
|
|
8199
8195
|
specificationMax?: number | null;
|
|
8200
8196
|
readValue?: string | null;
|
|
8201
|
-
status:
|
|
8197
|
+
status: ImaSpecificationResultLineStatusDto;
|
|
8202
8198
|
override?: ImaResultLineOverrideDto | null;
|
|
8203
8199
|
measurementMethod?: string | null;
|
|
8204
8200
|
}
|
|
@@ -8346,27 +8342,29 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8346
8342
|
certificateTypeVersion?: number | null;
|
|
8347
8343
|
certificateTypeName?: string | null;
|
|
8348
8344
|
certificateTypeRevision?: string | null;
|
|
8345
|
+
certificateTypeStatus: ImaCertificateTypeStatusDto;
|
|
8349
8346
|
specificationId: string;
|
|
8350
8347
|
specificationVersion: number;
|
|
8351
8348
|
specificationName: string;
|
|
8352
|
-
specificationRevision
|
|
8349
|
+
specificationRevision?: string | null;
|
|
8350
|
+
specificationStatus: ImaSpecificationStatusDto;
|
|
8353
8351
|
purchaseOrder?: string | null;
|
|
8354
8352
|
purchaseOrderLine?: number | null;
|
|
8355
8353
|
purchaseOrderVendorBatches?: string[] | null;
|
|
8356
8354
|
purchaseOrderPartName?: string | null;
|
|
8357
8355
|
purchaseOrderPartNumber?: string | null;
|
|
8356
|
+
purchaseOrderPartRevision?: string | null;
|
|
8358
8357
|
purchaseOrderDrawing?: string | null;
|
|
8358
|
+
purchaseOrderDrawingRevision?: string | null;
|
|
8359
8359
|
heatNumber?: string | null;
|
|
8360
|
-
status:
|
|
8361
|
-
specificationStatus: ImaSpecificationStatus;
|
|
8362
|
-
certificateTypeStatus: ImaCertificateTypeStatus;
|
|
8360
|
+
status: ImaMaterialCheckStatusDto;
|
|
8363
8361
|
created: Date;
|
|
8364
8362
|
createdBy: string;
|
|
8365
8363
|
createdById: string;
|
|
8366
|
-
createdByName
|
|
8364
|
+
createdByName?: string | null;
|
|
8367
8365
|
updatedBy: string;
|
|
8368
8366
|
updatedById: string;
|
|
8369
|
-
updatedByName
|
|
8367
|
+
updatedByName?: string | null;
|
|
8370
8368
|
isDeleted?: boolean;
|
|
8371
8369
|
reportCreatedBy?: string | null;
|
|
8372
8370
|
reportCreatedById?: string | null;
|
|
@@ -8392,15 +8390,15 @@ export interface ImaMaterialChecksPageRequestDto {
|
|
|
8392
8390
|
purchaseOrderDrawingFilter?: string | null;
|
|
8393
8391
|
dateFromFilter?: Date | null;
|
|
8394
8392
|
dateToFilter?: Date | null;
|
|
8395
|
-
statusFilter?:
|
|
8393
|
+
statusFilter?: ImaMaterialCheckStatusDto[] | null;
|
|
8396
8394
|
continuationToken?: string | null;
|
|
8397
8395
|
}
|
|
8398
8396
|
export interface ImaMaterialChecksPageOrderRequestDto {
|
|
8399
|
-
column?:
|
|
8400
|
-
direction?:
|
|
8397
|
+
column?: ImaMaterialChecksOrderByColumnDto;
|
|
8398
|
+
direction?: ImaOrderDirectionDto;
|
|
8401
8399
|
}
|
|
8402
|
-
export type
|
|
8403
|
-
export type
|
|
8400
|
+
export type ImaMaterialChecksOrderByColumnDto = "FileName" | "PurchaseOrder" | "Line" | "VendorBatch" | "Part" | "Drawing" | "Heat" | "CertificateType" | "Specification" | "GeneratedReport" | "Project" | "CustomerOrder" | "WorkOrder" | "Date" | "Status";
|
|
8401
|
+
export type ImaOrderDirectionDto = "Asc" | "Desc";
|
|
8404
8402
|
export interface ProcessMaterialCertificate {
|
|
8405
8403
|
files: UploadFileCdfDto[];
|
|
8406
8404
|
specificationId: string;
|
|
@@ -8505,7 +8503,7 @@ export interface ImaUpdateMatchSettingsColumnsDto {
|
|
|
8505
8503
|
date: boolean;
|
|
8506
8504
|
status: boolean;
|
|
8507
8505
|
}
|
|
8508
|
-
export interface ImaSpecificationDto
|
|
8506
|
+
export interface ImaSpecificationDto {
|
|
8509
8507
|
specificationId: string;
|
|
8510
8508
|
version: number;
|
|
8511
8509
|
allVersions: ImaSpecificationVersionDto[];
|
|
@@ -8513,16 +8511,16 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8513
8511
|
number: string;
|
|
8514
8512
|
revision: string;
|
|
8515
8513
|
date: Date;
|
|
8516
|
-
status:
|
|
8514
|
+
status: ImaSpecificationStatusDto;
|
|
8517
8515
|
summary?: string | null;
|
|
8518
8516
|
relatedStandards: string[];
|
|
8519
8517
|
created: Date;
|
|
8520
8518
|
createdBy: string;
|
|
8521
8519
|
createdById: string;
|
|
8522
|
-
createdByName
|
|
8520
|
+
createdByName?: string | null;
|
|
8523
8521
|
updatedBy: string;
|
|
8524
8522
|
updatedById: string;
|
|
8525
|
-
updatedByName
|
|
8523
|
+
updatedByName?: string | null;
|
|
8526
8524
|
updated: Date;
|
|
8527
8525
|
isDeleted: boolean;
|
|
8528
8526
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
@@ -8532,9 +8530,9 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8532
8530
|
}
|
|
8533
8531
|
export interface ImaSpecificationVersionDto {
|
|
8534
8532
|
version?: number;
|
|
8535
|
-
status?:
|
|
8533
|
+
status?: ImaSpecificationStatusDto;
|
|
8536
8534
|
}
|
|
8537
|
-
export interface ImaChemistrySpecificationDto
|
|
8535
|
+
export interface ImaChemistrySpecificationDto {
|
|
8538
8536
|
carbon?: ImaSpecificationLineDto | null;
|
|
8539
8537
|
manganese?: ImaSpecificationLineDto | null;
|
|
8540
8538
|
silicon?: ImaSpecificationLineDto | null;
|
|
@@ -8552,7 +8550,7 @@ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
|
8552
8550
|
min?: number | null;
|
|
8553
8551
|
max?: number | null;
|
|
8554
8552
|
}
|
|
8555
|
-
export interface ImaMechanicalSpecificationDto
|
|
8553
|
+
export interface ImaMechanicalSpecificationDto {
|
|
8556
8554
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8557
8555
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
8558
8556
|
elongation?: ImaSpecificationLineDto | null;
|
|
@@ -8560,26 +8558,26 @@ export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8560
8558
|
impactEnergy?: ImaSpecificationLineDto | null;
|
|
8561
8559
|
hardness?: ImaSpecificationLineDto | null;
|
|
8562
8560
|
}
|
|
8563
|
-
export interface ImaFerriteSpecificationDto
|
|
8561
|
+
export interface ImaFerriteSpecificationDto {
|
|
8564
8562
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8565
8563
|
}
|
|
8566
|
-
export interface ImaHeatTreatmentSpecificationDto
|
|
8564
|
+
export interface ImaHeatTreatmentSpecificationDto {
|
|
8567
8565
|
step: number;
|
|
8568
8566
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
8569
8567
|
heating?: ImaHeatTreatmentSpecificationHeatingDto | null;
|
|
8570
8568
|
}
|
|
8571
|
-
export interface ImaHeatTreatmentSpecificationCoolingDto
|
|
8572
|
-
coolingMethods:
|
|
8569
|
+
export interface ImaHeatTreatmentSpecificationCoolingDto {
|
|
8570
|
+
coolingMethods: ImaHeatTreatmentCoolingMethodDto[];
|
|
8573
8571
|
temperature?: ImaSpecificationLineDto | null;
|
|
8574
8572
|
duration?: ImaSpecificationLineDto | null;
|
|
8575
8573
|
}
|
|
8576
|
-
export type
|
|
8577
|
-
export interface ImaHeatTreatmentSpecificationHeatingDto
|
|
8578
|
-
heatingMethod:
|
|
8574
|
+
export type ImaHeatTreatmentCoolingMethodDto = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "NotSet";
|
|
8575
|
+
export interface ImaHeatTreatmentSpecificationHeatingDto {
|
|
8576
|
+
heatingMethod: ImaHeatTreatmentHeatingMethodDto;
|
|
8579
8577
|
temperature?: ImaSpecificationLineDto | null;
|
|
8580
8578
|
duration?: ImaSpecificationLineDto | null;
|
|
8581
8579
|
}
|
|
8582
|
-
export type
|
|
8580
|
+
export type ImaHeatTreatmentHeatingMethodDto = "Annealing" | "Austenitizing" | "Hardening" | "Normalizing" | "SolutionAnnealing" | "StressRelieving" | "Tempering" | "NotSet";
|
|
8583
8581
|
export interface ImaCreateSpecificationRequestDto {
|
|
8584
8582
|
name: string;
|
|
8585
8583
|
number: string;
|
|
@@ -8596,7 +8594,7 @@ export interface ImaCopySpecificationRequestDto {
|
|
|
8596
8594
|
export interface ImaUpdateSpecificationDto {
|
|
8597
8595
|
name?: string | null;
|
|
8598
8596
|
number?: string | null;
|
|
8599
|
-
status?:
|
|
8597
|
+
status?: ImaSpecificationStatusDto | null;
|
|
8600
8598
|
summary?: string | null;
|
|
8601
8599
|
relatedStandards?: string[] | null;
|
|
8602
8600
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
@@ -8604,23 +8602,24 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8604
8602
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8605
8603
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8606
8604
|
}
|
|
8607
|
-
export interface ImaSpecificationLiteDto
|
|
8605
|
+
export interface ImaSpecificationLiteDto {
|
|
8608
8606
|
specificationId: string;
|
|
8609
8607
|
version: number;
|
|
8610
8608
|
name: string;
|
|
8611
8609
|
number: string;
|
|
8612
8610
|
revision: string;
|
|
8613
8611
|
date: Date;
|
|
8614
|
-
status:
|
|
8612
|
+
status: ImaSpecificationStatusDto;
|
|
8615
8613
|
summary?: string | null;
|
|
8616
8614
|
relatedStandards: string[];
|
|
8617
8615
|
created: Date;
|
|
8618
8616
|
createdBy: string;
|
|
8619
8617
|
createdById: string;
|
|
8620
|
-
createdByName
|
|
8618
|
+
createdByName?: string | null;
|
|
8621
8619
|
updatedBy: string;
|
|
8622
8620
|
updatedById: string;
|
|
8623
|
-
updatedByName
|
|
8621
|
+
updatedByName?: string | null;
|
|
8622
|
+
updated: Date;
|
|
8624
8623
|
isDeleted: boolean;
|
|
8625
8624
|
}
|
|
8626
8625
|
export interface MeasurementFormSchemaDto {
|
|
@@ -9171,7 +9170,6 @@ export interface ListMeasurementFormsRequest {
|
|
|
9171
9170
|
pageSize?: number | null;
|
|
9172
9171
|
search?: string | null;
|
|
9173
9172
|
continuationToken?: string | null;
|
|
9174
|
-
tenantId?: string | null;
|
|
9175
9173
|
inactive?: boolean | null;
|
|
9176
9174
|
includeInactiveSupplierAccess?: boolean | null;
|
|
9177
9175
|
}
|
|
@@ -9367,7 +9365,6 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
|
|
|
9367
9365
|
externalOrderNumber?: string | null;
|
|
9368
9366
|
}
|
|
9369
9367
|
export interface ExportDimensionReportV2Request {
|
|
9370
|
-
tenantId?: string | null;
|
|
9371
9368
|
type: DimensionReportType;
|
|
9372
9369
|
extras?: DimensionReportExtras | null;
|
|
9373
9370
|
specificSerialNumbers?: string[] | null;
|
|
@@ -9710,6 +9707,94 @@ export interface SetDiscussionLastReadRequest {
|
|
|
9710
9707
|
operationId?: string | null;
|
|
9711
9708
|
resourceId?: string | null;
|
|
9712
9709
|
}
|
|
9710
|
+
export interface CompanyUserDto {
|
|
9711
|
+
companyId: string;
|
|
9712
|
+
userObjectId: string;
|
|
9713
|
+
username?: string | null;
|
|
9714
|
+
name?: string | null;
|
|
9715
|
+
roles: string[];
|
|
9716
|
+
}
|
|
9717
|
+
export interface CreateCompanyUser {
|
|
9718
|
+
username: string;
|
|
9719
|
+
name: string;
|
|
9720
|
+
roles: string[];
|
|
9721
|
+
companyId?: string | null;
|
|
9722
|
+
}
|
|
9723
|
+
export interface UpdateCompanyUserRequest {
|
|
9724
|
+
roles: string[];
|
|
9725
|
+
companyId?: string | null;
|
|
9726
|
+
}
|
|
9727
|
+
export interface ExternalRoleDto {
|
|
9728
|
+
id: string;
|
|
9729
|
+
name: string;
|
|
9730
|
+
}
|
|
9731
|
+
export interface CompanyCustomerDto {
|
|
9732
|
+
customerTenantId?: string | null;
|
|
9733
|
+
customerAzureAdTenantId?: string | null;
|
|
9734
|
+
customerName?: string | null;
|
|
9735
|
+
supplierId?: string | null;
|
|
9736
|
+
supplierName?: string | null;
|
|
9737
|
+
customerIgnosPortalPrefix?: string | null;
|
|
9738
|
+
}
|
|
9739
|
+
export interface CompanyDto {
|
|
9740
|
+
id: string;
|
|
9741
|
+
name: string;
|
|
9742
|
+
organizationNumber?: string | null;
|
|
9743
|
+
country: string;
|
|
9744
|
+
tenantId?: string | null;
|
|
9745
|
+
}
|
|
9746
|
+
export interface SupplierInviteDto {
|
|
9747
|
+
id: string;
|
|
9748
|
+
supplierId: string;
|
|
9749
|
+
supplierName?: string | null;
|
|
9750
|
+
customerName?: string | null;
|
|
9751
|
+
userId: string;
|
|
9752
|
+
userName?: string | null;
|
|
9753
|
+
acceptedTimestamp?: Date | null;
|
|
9754
|
+
createdTime: Date;
|
|
9755
|
+
createdBy: string;
|
|
9756
|
+
}
|
|
9757
|
+
export interface AcceptSupplierInviteNewCompany {
|
|
9758
|
+
companyName?: string;
|
|
9759
|
+
organizationNumber?: string;
|
|
9760
|
+
threeLetterIsoCountry?: string;
|
|
9761
|
+
}
|
|
9762
|
+
export interface AcceptSupplierInviteExistingCompany {
|
|
9763
|
+
companyId?: string;
|
|
9764
|
+
}
|
|
9765
|
+
export interface AcceptSupplierInviteCustomer {
|
|
9766
|
+
tenantId?: string;
|
|
9767
|
+
organizationNumber?: string;
|
|
9768
|
+
}
|
|
9769
|
+
export interface TenantWithSupplierDto {
|
|
9770
|
+
tenantId: string;
|
|
9771
|
+
customerName: string;
|
|
9772
|
+
supplierTenantEntraId: string;
|
|
9773
|
+
}
|
|
9774
|
+
export interface CreateSupplierInviteRequest {
|
|
9775
|
+
supplierId: string;
|
|
9776
|
+
threeLetterIsoCountry: string;
|
|
9777
|
+
organizationNumber: string;
|
|
9778
|
+
supplierName?: string | null;
|
|
9779
|
+
username: string;
|
|
9780
|
+
invitedName: string;
|
|
9781
|
+
}
|
|
9782
|
+
export interface ExternalSupplierDto {
|
|
9783
|
+
id: string;
|
|
9784
|
+
name: string;
|
|
9785
|
+
companyId: string;
|
|
9786
|
+
active: boolean;
|
|
9787
|
+
}
|
|
9788
|
+
export interface CreateSupplierMapping {
|
|
9789
|
+
companyId: string;
|
|
9790
|
+
existingSupplierId: string;
|
|
9791
|
+
newSupplierId: string;
|
|
9792
|
+
}
|
|
9793
|
+
export interface OrganizationDto {
|
|
9794
|
+
name?: string;
|
|
9795
|
+
postalAddress?: string | null;
|
|
9796
|
+
registeredAddress?: string | null;
|
|
9797
|
+
}
|
|
9713
9798
|
export type FeatureCollectionType = "FeatureCollection";
|
|
9714
9799
|
export interface Features {
|
|
9715
9800
|
type: FeaturesType;
|