@ignos/api-client 20260811.219.1-alpha → 20260812.221.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 +455 -464
- package/lib/ignosportal-api.js +4512 -4569
- package/package.json +1 -1
- package/src/ignosportal-api.ts +6677 -6722
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>;
|
|
@@ -1517,99 +1520,6 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
|
|
|
1517
1520
|
listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
|
|
1518
1521
|
protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
|
|
1519
1522
|
}
|
|
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
|
-
}
|
|
1613
1523
|
export interface ICncFileTransferClient {
|
|
1614
1524
|
startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
|
|
1615
1525
|
startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
|
|
@@ -2289,6 +2199,7 @@ export declare class MoveNotificationsClient extends AuthorizedApiBase implement
|
|
|
2289
2199
|
}
|
|
2290
2200
|
export interface IMoveParcelsClient {
|
|
2291
2201
|
searchParcels(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchParcelDto[]>;
|
|
2202
|
+
searchParcelsV2(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchParcelDto[]>;
|
|
2292
2203
|
}
|
|
2293
2204
|
export declare class MoveParcelsClient extends AuthorizedApiBase implements IMoveParcelsClient {
|
|
2294
2205
|
private http;
|
|
@@ -2298,6 +2209,8 @@ export declare class MoveParcelsClient extends AuthorizedApiBase implements IMov
|
|
|
2298
2209
|
});
|
|
2299
2210
|
searchParcels(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchParcelDto[]>;
|
|
2300
2211
|
protected processSearchParcels(response: Response): Promise<SearchParcelDto[]>;
|
|
2212
|
+
searchParcelsV2(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchParcelDto[]>;
|
|
2213
|
+
protected processSearchParcelsV2(response: Response): Promise<SearchParcelDto[]>;
|
|
2301
2214
|
}
|
|
2302
2215
|
export interface IMoveTrackingClient {
|
|
2303
2216
|
listTrackingHistory(request: TrackingRequestListDto): Promise<TrackingParcelListDto>;
|
|
@@ -2460,7 +2373,6 @@ export declare class MesLinksClient extends AuthorizedApiBase implements IMesLin
|
|
|
2460
2373
|
}
|
|
2461
2374
|
export interface IMesOrMoveClient {
|
|
2462
2375
|
getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
|
|
2463
|
-
postListProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
|
|
2464
2376
|
}
|
|
2465
2377
|
export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOrMoveClient {
|
|
2466
2378
|
private http;
|
|
@@ -2470,8 +2382,6 @@ export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOr
|
|
|
2470
2382
|
});
|
|
2471
2383
|
getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
|
|
2472
2384
|
protected processGetPrintableLabels(response: Response): Promise<DownloadDto>;
|
|
2473
|
-
postListProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
|
|
2474
|
-
protected processPostListProductionOrders(response: Response): Promise<ProductionOrderListDto[]>;
|
|
2475
2385
|
}
|
|
2476
2386
|
export interface IMesPlannerClient {
|
|
2477
2387
|
getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
|
|
@@ -2521,10 +2431,14 @@ export interface IMesProductionOrderAttachmentClient {
|
|
|
2521
2431
|
* @param notes (optional)
|
|
2522
2432
|
* @param url (optional)
|
|
2523
2433
|
*/
|
|
2524
|
-
upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<
|
|
2525
|
-
getAttachments(id: string): Promise<
|
|
2434
|
+
upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<void>;
|
|
2435
|
+
getAttachments(id: string): Promise<ProductionOrderAttachmentDto[]>;
|
|
2436
|
+
/**
|
|
2437
|
+
* Update an existing Note or Url attachment in place
|
|
2438
|
+
*/
|
|
2439
|
+
updateAttachment(id: string, attachmentId: number, request: UpdateProductionOrderAttachmentRequest): Promise<void>;
|
|
2526
2440
|
getAttachmentFile(id: string, attachmentId: number): Promise<FileResponse>;
|
|
2527
|
-
deleteAttachment(id: string, attachmentId: number): Promise<
|
|
2441
|
+
deleteAttachment(id: string, attachmentId: number): Promise<void>;
|
|
2528
2442
|
}
|
|
2529
2443
|
export declare class MesProductionOrderAttachmentClient extends AuthorizedApiBase implements IMesProductionOrderAttachmentClient {
|
|
2530
2444
|
private http;
|
|
@@ -2540,16 +2454,22 @@ export declare class MesProductionOrderAttachmentClient extends AuthorizedApiBas
|
|
|
2540
2454
|
* @param notes (optional)
|
|
2541
2455
|
* @param url (optional)
|
|
2542
2456
|
*/
|
|
2543
|
-
upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<
|
|
2544
|
-
protected processUpload(response: Response): Promise<
|
|
2545
|
-
getAttachments(id: string): Promise<
|
|
2546
|
-
protected processGetAttachments(response: Response): Promise<
|
|
2457
|
+
upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<void>;
|
|
2458
|
+
protected processUpload(response: Response): Promise<void>;
|
|
2459
|
+
getAttachments(id: string): Promise<ProductionOrderAttachmentDto[]>;
|
|
2460
|
+
protected processGetAttachments(response: Response): Promise<ProductionOrderAttachmentDto[]>;
|
|
2461
|
+
/**
|
|
2462
|
+
* Update an existing Note or Url attachment in place
|
|
2463
|
+
*/
|
|
2464
|
+
updateAttachment(id: string, attachmentId: number, request: UpdateProductionOrderAttachmentRequest): Promise<void>;
|
|
2465
|
+
protected processUpdateAttachment(response: Response): Promise<void>;
|
|
2547
2466
|
getAttachmentFile(id: string, attachmentId: number): Promise<FileResponse>;
|
|
2548
2467
|
protected processGetAttachmentFile(response: Response): Promise<FileResponse>;
|
|
2549
|
-
deleteAttachment(id: string, attachmentId: number): Promise<
|
|
2550
|
-
protected processDeleteAttachment(response: Response): Promise<
|
|
2468
|
+
deleteAttachment(id: string, attachmentId: number): Promise<void>;
|
|
2469
|
+
protected processDeleteAttachment(response: Response): Promise<void>;
|
|
2551
2470
|
}
|
|
2552
2471
|
export interface IMesProductionOrderClient {
|
|
2472
|
+
listProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
|
|
2553
2473
|
getProductionOrder(id: string): Promise<ProductionOrderDto>;
|
|
2554
2474
|
getProductionOrderBom(id: string, operation: number | null | undefined): Promise<ProductionOrderBomDto[]>;
|
|
2555
2475
|
getProductionOrderPickListSuggestion(id: string, operation: number | undefined): Promise<PickListSuggestionDto[]>;
|
|
@@ -2566,6 +2486,8 @@ export declare class MesProductionOrderClient extends AuthorizedApiBase implemen
|
|
|
2566
2486
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2567
2487
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2568
2488
|
});
|
|
2489
|
+
listProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
|
|
2490
|
+
protected processListProductionOrders(response: Response): Promise<ProductionOrderListDto[]>;
|
|
2569
2491
|
getProductionOrder(id: string): Promise<ProductionOrderDto>;
|
|
2570
2492
|
protected processGetProductionOrder(response: Response): Promise<ProductionOrderDto>;
|
|
2571
2493
|
getProductionOrderBom(id: string, operation: number | null | undefined): Promise<ProductionOrderBomDto[]>;
|
|
@@ -2861,69 +2783,6 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
|
|
|
2861
2783
|
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2862
2784
|
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2863
2785
|
}
|
|
2864
|
-
export interface IInspectSchemaCreatorClient {
|
|
2865
|
-
getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
|
|
2866
|
-
/**
|
|
2867
|
-
* Creates the initial creator state for a schema version. Returns 409 if
|
|
2868
|
-
state already exists; the caller should re-fetch it instead of writing.
|
|
2869
|
-
*/
|
|
2870
|
-
createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2871
|
-
updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2872
|
-
/**
|
|
2873
|
-
* Starts a full drawing AI parse: clears every element and locks the
|
|
2874
|
-
schema for every viewer until it completes. If one is already in
|
|
2875
|
-
progress, returns that instead of starting a second one.
|
|
2876
|
-
*/
|
|
2877
|
-
requestFullDrawingParse(id: string): Promise<SchemaCreatorStateDto>;
|
|
2878
|
-
/**
|
|
2879
|
-
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
2880
|
-
returns a temporary download link.
|
|
2881
|
-
*/
|
|
2882
|
-
exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
|
|
2883
|
-
/**
|
|
2884
|
-
* Starts an async snip resolve; the result is delivered through the
|
|
2885
|
-
SchemaCreatorSnipResolved SignalR notification.
|
|
2886
|
-
* @param image (optional)
|
|
2887
|
-
*/
|
|
2888
|
-
resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
|
|
2889
|
-
}
|
|
2890
|
-
export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
|
|
2891
|
-
private http;
|
|
2892
|
-
private baseUrl;
|
|
2893
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2894
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2895
|
-
});
|
|
2896
|
-
getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
|
|
2897
|
-
protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2898
|
-
/**
|
|
2899
|
-
* Creates the initial creator state for a schema version. Returns 409 if
|
|
2900
|
-
state already exists; the caller should re-fetch it instead of writing.
|
|
2901
|
-
*/
|
|
2902
|
-
createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2903
|
-
protected processCreateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2904
|
-
updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2905
|
-
protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2906
|
-
/**
|
|
2907
|
-
* Starts a full drawing AI parse: clears every element and locks the
|
|
2908
|
-
schema for every viewer until it completes. If one is already in
|
|
2909
|
-
progress, returns that instead of starting a second one.
|
|
2910
|
-
*/
|
|
2911
|
-
requestFullDrawingParse(id: string): Promise<SchemaCreatorStateDto>;
|
|
2912
|
-
protected processRequestFullDrawingParse(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2913
|
-
/**
|
|
2914
|
-
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
2915
|
-
returns a temporary download link.
|
|
2916
|
-
*/
|
|
2917
|
-
exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
|
|
2918
|
-
protected processExportSchemaCreatorDrawing(response: Response): Promise<DownloadDto>;
|
|
2919
|
-
/**
|
|
2920
|
-
* Starts an async snip resolve; the result is delivered through the
|
|
2921
|
-
SchemaCreatorSnipResolved SignalR notification.
|
|
2922
|
-
* @param image (optional)
|
|
2923
|
-
*/
|
|
2924
|
-
resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
|
|
2925
|
-
protected processResolveSchemaCreatorSnip(response: Response): Promise<FileResponse>;
|
|
2926
|
-
}
|
|
2927
2786
|
export interface IMeasurementFormSchemasAdminClient {
|
|
2928
2787
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2929
2788
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -3174,22 +3033,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
|
|
|
3174
3033
|
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
3175
3034
|
}
|
|
3176
3035
|
export interface IMeasurementFormsInstancesClient {
|
|
3177
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined,
|
|
3036
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3178
3037
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3179
|
-
getMeasurementFormInstance(id: string
|
|
3038
|
+
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3180
3039
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3181
|
-
completeMeasurementFormInstance(id: string
|
|
3182
|
-
completeMeasurementFormInstanceV2(id: string
|
|
3183
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined
|
|
3184
|
-
getWorkorderMeasurementFormProgress(id: string
|
|
3185
|
-
getAuditLog(id: string,
|
|
3040
|
+
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3041
|
+
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3042
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3043
|
+
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
3044
|
+
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3186
3045
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
3187
|
-
saveValue(id: string,
|
|
3188
|
-
saveTool(id: string,
|
|
3189
|
-
saveComment(id: string,
|
|
3190
|
-
batchInsertValues(id: string,
|
|
3191
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string,
|
|
3192
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string,
|
|
3046
|
+
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3047
|
+
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3048
|
+
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
3049
|
+
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3050
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3051
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3193
3052
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
3194
3053
|
upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
|
|
3195
3054
|
removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
|
|
@@ -3205,37 +3064,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
3205
3064
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3206
3065
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3207
3066
|
});
|
|
3208
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined,
|
|
3067
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3209
3068
|
protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3210
3069
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3211
3070
|
protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3212
|
-
getMeasurementFormInstance(id: string
|
|
3071
|
+
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3213
3072
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3214
3073
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3215
3074
|
protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3216
|
-
completeMeasurementFormInstance(id: string
|
|
3075
|
+
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3217
3076
|
protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3218
|
-
completeMeasurementFormInstanceV2(id: string
|
|
3077
|
+
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3219
3078
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3220
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined
|
|
3079
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3221
3080
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3222
|
-
getWorkorderMeasurementFormProgress(id: string
|
|
3081
|
+
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
3223
3082
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
3224
|
-
getAuditLog(id: string,
|
|
3083
|
+
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3225
3084
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3226
3085
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
3227
3086
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
3228
|
-
saveValue(id: string,
|
|
3087
|
+
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3229
3088
|
protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
|
|
3230
|
-
saveTool(id: string,
|
|
3089
|
+
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3231
3090
|
protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
|
|
3232
|
-
saveComment(id: string,
|
|
3091
|
+
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
3233
3092
|
protected processSaveComment(response: Response): Promise<void>;
|
|
3234
|
-
batchInsertValues(id: string,
|
|
3093
|
+
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3235
3094
|
protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
|
|
3236
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string,
|
|
3095
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3237
3096
|
protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
|
|
3238
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string,
|
|
3097
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3239
3098
|
protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
|
|
3240
3099
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
3241
3100
|
protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
@@ -3260,7 +3119,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
3260
3119
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
3261
3120
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3262
3121
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3263
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string
|
|
3122
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3264
3123
|
}
|
|
3265
3124
|
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
3266
3125
|
private http;
|
|
@@ -3284,7 +3143,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
|
|
|
3284
3143
|
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3285
3144
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3286
3145
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3287
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string
|
|
3146
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3288
3147
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
3289
3148
|
}
|
|
3290
3149
|
export interface ICompaniesClient {
|
|
@@ -3624,6 +3483,111 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3624
3483
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3625
3484
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3626
3485
|
}
|
|
3486
|
+
export interface IExternalAccessClient {
|
|
3487
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3488
|
+
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3489
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3490
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3491
|
+
migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
|
|
3492
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3493
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3494
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3495
|
+
}
|
|
3496
|
+
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3497
|
+
private http;
|
|
3498
|
+
private baseUrl;
|
|
3499
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3500
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3501
|
+
});
|
|
3502
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3503
|
+
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
3504
|
+
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3505
|
+
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3506
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3507
|
+
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3508
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3509
|
+
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
3510
|
+
migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
|
|
3511
|
+
protected processMigrateLegacyCompanyUsersToEntra(response: Response): Promise<CompanyUserDto[]>;
|
|
3512
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3513
|
+
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
3514
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3515
|
+
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
3516
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3517
|
+
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
3518
|
+
}
|
|
3519
|
+
export interface IExternalClient {
|
|
3520
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3521
|
+
getCompany(id: string): Promise<CompanyDto>;
|
|
3522
|
+
getCurrentSupplierInvite(): Promise<CurrentSupplierInviteDto>;
|
|
3523
|
+
acceptSupplierInvite(acceptingTenantId: string | null | undefined): Promise<SupplierInviteDto>;
|
|
3524
|
+
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3525
|
+
}
|
|
3526
|
+
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3527
|
+
private http;
|
|
3528
|
+
private baseUrl;
|
|
3529
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3530
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3531
|
+
});
|
|
3532
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3533
|
+
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3534
|
+
getCompany(id: string): Promise<CompanyDto>;
|
|
3535
|
+
protected processGetCompany(response: Response): Promise<CompanyDto>;
|
|
3536
|
+
getCurrentSupplierInvite(): Promise<CurrentSupplierInviteDto>;
|
|
3537
|
+
protected processGetCurrentSupplierInvite(response: Response): Promise<CurrentSupplierInviteDto>;
|
|
3538
|
+
acceptSupplierInvite(acceptingTenantId: string | null | undefined): Promise<SupplierInviteDto>;
|
|
3539
|
+
protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3540
|
+
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3541
|
+
protected processListTenantsWithSuppliers(response: Response): Promise<TenantWithSupplierDto[]>;
|
|
3542
|
+
}
|
|
3543
|
+
export interface ISuppliersClient {
|
|
3544
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3545
|
+
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3546
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
3547
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3548
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3549
|
+
/**
|
|
3550
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3551
|
+
*/
|
|
3552
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3553
|
+
/**
|
|
3554
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3555
|
+
*/
|
|
3556
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3557
|
+
lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
|
|
3558
|
+
getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
|
|
3559
|
+
}
|
|
3560
|
+
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3561
|
+
private http;
|
|
3562
|
+
private baseUrl;
|
|
3563
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3564
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3565
|
+
});
|
|
3566
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3567
|
+
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3568
|
+
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3569
|
+
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3570
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
3571
|
+
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
3572
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3573
|
+
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3574
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3575
|
+
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3576
|
+
/**
|
|
3577
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3578
|
+
*/
|
|
3579
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3580
|
+
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3581
|
+
/**
|
|
3582
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3583
|
+
*/
|
|
3584
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3585
|
+
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3586
|
+
lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
|
|
3587
|
+
protected processLookupOrganization(response: Response): Promise<OrganizationDto>;
|
|
3588
|
+
getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
|
|
3589
|
+
protected processGetOrganizationLookupSupportedCountries(response: Response): Promise<CountryDto[]>;
|
|
3590
|
+
}
|
|
3627
3591
|
export interface AzureRegionDto {
|
|
3628
3592
|
displayName: string;
|
|
3629
3593
|
name: string;
|
|
@@ -3935,6 +3899,9 @@ export interface UserDetailsDto {
|
|
|
3935
3899
|
isExternalUser?: boolean;
|
|
3936
3900
|
isBetaTester?: boolean | null;
|
|
3937
3901
|
hasAccessToIgnos?: boolean;
|
|
3902
|
+
isInvitedUser?: boolean;
|
|
3903
|
+
isSupplier?: boolean;
|
|
3904
|
+
companyId?: string | null;
|
|
3938
3905
|
}
|
|
3939
3906
|
export interface UserDto {
|
|
3940
3907
|
id?: string | null;
|
|
@@ -5958,133 +5925,42 @@ export interface DocumentGeneratorTypeDto {
|
|
|
5958
5925
|
key: string;
|
|
5959
5926
|
description: string;
|
|
5960
5927
|
}
|
|
5961
|
-
export interface
|
|
5962
|
-
|
|
5963
|
-
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
|
|
5968
|
-
|
|
5969
|
-
|
|
5970
|
-
|
|
5971
|
-
companyId?: string | null;
|
|
5928
|
+
export interface CncMachineTransferDto {
|
|
5929
|
+
id: string;
|
|
5930
|
+
cncMachineOperationId?: string | null;
|
|
5931
|
+
cncMachineId: string;
|
|
5932
|
+
cncMachineName: string;
|
|
5933
|
+
direction: FileTransferDirection;
|
|
5934
|
+
files: string[];
|
|
5935
|
+
status: FileTransferStatus;
|
|
5936
|
+
statusMessage?: string | null;
|
|
5937
|
+
timestamp: Date;
|
|
5972
5938
|
}
|
|
5973
|
-
export
|
|
5974
|
-
|
|
5975
|
-
|
|
5976
|
-
|
|
5939
|
+
export type FileTransferDirection = "FromCloud" | "ToCloud";
|
|
5940
|
+
export type FileTransferStatus = "InProgress" | "Success" | "Failed";
|
|
5941
|
+
export interface TransferToMachineRequest {
|
|
5942
|
+
programs?: ProgramSelectionRequest[] | null;
|
|
5977
5943
|
}
|
|
5978
|
-
export interface
|
|
5944
|
+
export interface ProgramSelectionRequest {
|
|
5979
5945
|
id: string;
|
|
5980
|
-
|
|
5946
|
+
version: number;
|
|
5981
5947
|
}
|
|
5982
|
-
export interface
|
|
5983
|
-
|
|
5984
|
-
|
|
5985
|
-
|
|
5986
|
-
supplierId?: string | null;
|
|
5987
|
-
supplierName?: string | null;
|
|
5948
|
+
export interface UploadCamFileDto {
|
|
5949
|
+
uploadUrl: string;
|
|
5950
|
+
path: string;
|
|
5951
|
+
url: string;
|
|
5988
5952
|
}
|
|
5989
|
-
export interface
|
|
5990
|
-
|
|
5991
|
-
companyName: string;
|
|
5992
|
-
id: string;
|
|
5993
|
-
supplierId: string;
|
|
5994
|
-
supplierName: string;
|
|
5995
|
-
username: string;
|
|
5996
|
-
deadline: Date;
|
|
5997
|
-
createdTime: Date;
|
|
5998
|
-
createdBy: string;
|
|
5953
|
+
export interface UploadCamFileRequest {
|
|
5954
|
+
filename: string;
|
|
5999
5955
|
}
|
|
6000
|
-
export interface
|
|
6001
|
-
|
|
6002
|
-
|
|
6003
|
-
organizationNumber?: string | null;
|
|
6004
|
-
country?: string | null;
|
|
6005
|
-
tenantId?: string | null;
|
|
5956
|
+
export interface CamTransferDto {
|
|
5957
|
+
path: string;
|
|
5958
|
+
content: string;
|
|
6006
5959
|
}
|
|
6007
|
-
export interface
|
|
6008
|
-
|
|
6009
|
-
|
|
6010
|
-
|
|
6011
|
-
organizationNumber?: string | null;
|
|
6012
|
-
threeLetterIsoCountry?: string | null;
|
|
6013
|
-
}
|
|
6014
|
-
export interface SupplierInviteDto {
|
|
6015
|
-
id: string;
|
|
6016
|
-
supplierId: string;
|
|
6017
|
-
name: string;
|
|
6018
|
-
username: string;
|
|
6019
|
-
deadline: Date;
|
|
6020
|
-
createdTime: Date;
|
|
6021
|
-
createdBy: string;
|
|
6022
|
-
}
|
|
6023
|
-
export interface CreateSupplierInvite {
|
|
6024
|
-
supplierId: string;
|
|
6025
|
-
name: string;
|
|
6026
|
-
username: string;
|
|
6027
|
-
deadline: Date;
|
|
6028
|
-
}
|
|
6029
|
-
export interface ExternalSupplierDto {
|
|
6030
|
-
id: string;
|
|
6031
|
-
name: string;
|
|
6032
|
-
companyId: string;
|
|
6033
|
-
active: boolean;
|
|
6034
|
-
}
|
|
6035
|
-
export interface ImportSupplier {
|
|
6036
|
-
supplierId: string;
|
|
6037
|
-
name: string;
|
|
6038
|
-
organizationNumber?: string | null;
|
|
6039
|
-
threeLetterIsoCountry: string;
|
|
6040
|
-
users: ImportSupplierUserDto[];
|
|
6041
|
-
}
|
|
6042
|
-
export interface ImportSupplierUserDto {
|
|
6043
|
-
username: string;
|
|
6044
|
-
name: string;
|
|
6045
|
-
roles: string[];
|
|
6046
|
-
}
|
|
6047
|
-
export interface CreateSupplierMapping {
|
|
6048
|
-
companyId: string;
|
|
6049
|
-
existingSupplierId: string;
|
|
6050
|
-
newSupplierId: string;
|
|
6051
|
-
}
|
|
6052
|
-
export interface CncMachineTransferDto {
|
|
6053
|
-
id: string;
|
|
6054
|
-
cncMachineOperationId?: string | null;
|
|
6055
|
-
cncMachineId: string;
|
|
6056
|
-
cncMachineName: string;
|
|
6057
|
-
direction: FileTransferDirection;
|
|
6058
|
-
files: string[];
|
|
6059
|
-
status: FileTransferStatus;
|
|
6060
|
-
statusMessage?: string | null;
|
|
6061
|
-
timestamp: Date;
|
|
6062
|
-
}
|
|
6063
|
-
export type FileTransferDirection = "FromCloud" | "ToCloud";
|
|
6064
|
-
export type FileTransferStatus = "InProgress" | "Success" | "Failed";
|
|
6065
|
-
export interface TransferToMachineRequest {
|
|
6066
|
-
programs?: ProgramSelectionRequest[] | null;
|
|
6067
|
-
}
|
|
6068
|
-
export interface ProgramSelectionRequest {
|
|
6069
|
-
id: string;
|
|
6070
|
-
version: number;
|
|
6071
|
-
}
|
|
6072
|
-
export interface UploadCamFileDto {
|
|
6073
|
-
uploadUrl: string;
|
|
6074
|
-
path: string;
|
|
6075
|
-
url: string;
|
|
6076
|
-
}
|
|
6077
|
-
export interface UploadCamFileRequest {
|
|
6078
|
-
filename: string;
|
|
6079
|
-
}
|
|
6080
|
-
export interface CamTransferDto {
|
|
6081
|
-
path: string;
|
|
6082
|
-
content: string;
|
|
6083
|
-
}
|
|
6084
|
-
export interface StartCamTransferToMachine {
|
|
6085
|
-
path: string;
|
|
6086
|
-
content: string;
|
|
6087
|
-
cncMachineId: string;
|
|
5960
|
+
export interface StartCamTransferToMachine {
|
|
5961
|
+
path: string;
|
|
5962
|
+
content: string;
|
|
5963
|
+
cncMachineId: string;
|
|
6088
5964
|
}
|
|
6089
5965
|
export interface StartCamTransferToMachineFromTempUpload {
|
|
6090
5966
|
uploadKey: string;
|
|
@@ -7263,6 +7139,10 @@ export interface SearchParcelDto {
|
|
|
7263
7139
|
items: SearchParcelItemDto[];
|
|
7264
7140
|
partName?: string | null;
|
|
7265
7141
|
partNumber?: string | null;
|
|
7142
|
+
status?: WorkorderStatus | null;
|
|
7143
|
+
startDate?: Date | null;
|
|
7144
|
+
endDate?: Date | null;
|
|
7145
|
+
deliveryDate?: Date | null;
|
|
7266
7146
|
}
|
|
7267
7147
|
export type SearchMatchCriteriaDto = "Tracking" | "WorkOrder" | "Parcel";
|
|
7268
7148
|
export interface SearchParcelItemDto {
|
|
@@ -7455,37 +7335,6 @@ export interface LabelId {
|
|
|
7455
7335
|
parcelId: string;
|
|
7456
7336
|
trackingId?: string | null;
|
|
7457
7337
|
}
|
|
7458
|
-
export interface ProductionOrderListDto {
|
|
7459
|
-
id: string;
|
|
7460
|
-
companyId?: string | null;
|
|
7461
|
-
part?: PartDto | null;
|
|
7462
|
-
quantity: number;
|
|
7463
|
-
unit?: string | null;
|
|
7464
|
-
status: WorkorderStatus;
|
|
7465
|
-
plannedStart?: Date | null;
|
|
7466
|
-
plannedEnd?: Date | null;
|
|
7467
|
-
producedQuantity: number;
|
|
7468
|
-
scrappedQuantity: number;
|
|
7469
|
-
deliveryLocation?: WarehouseLocationDto | null;
|
|
7470
|
-
project?: WorkOrderProjectDto | null;
|
|
7471
|
-
startDate?: Date | null;
|
|
7472
|
-
endDate?: Date | null;
|
|
7473
|
-
deliveryDate?: Date | null;
|
|
7474
|
-
bomPosition?: string | null;
|
|
7475
|
-
orderReference?: OrderReferenceDto | null;
|
|
7476
|
-
customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
|
|
7477
|
-
}
|
|
7478
|
-
export interface OrderReferenceDto {
|
|
7479
|
-
orderReferenceType?: OrderReferenceTypeDto;
|
|
7480
|
-
orderNumber?: string;
|
|
7481
|
-
orderLineNumber?: number | null;
|
|
7482
|
-
}
|
|
7483
|
-
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
7484
|
-
export interface ListProductionOrdersRequest {
|
|
7485
|
-
search: string;
|
|
7486
|
-
searchType: SearchTypeDto;
|
|
7487
|
-
maxResults?: number | null;
|
|
7488
|
-
}
|
|
7489
7338
|
export interface PlannerPlanDto {
|
|
7490
7339
|
resourceGroupId: string;
|
|
7491
7340
|
sequence: PlannerOperationDto[];
|
|
@@ -7501,7 +7350,11 @@ export interface PlannerOperationDto {
|
|
|
7501
7350
|
operationName: string;
|
|
7502
7351
|
plannedStart: Date;
|
|
7503
7352
|
plannedEnd?: Date | null;
|
|
7353
|
+
actualStart?: Date | null;
|
|
7354
|
+
actualEnd?: Date | null;
|
|
7504
7355
|
status: OperationStatusDto;
|
|
7356
|
+
productionStatus: OperationStatusDto;
|
|
7357
|
+
setupStatus?: OperationStatusDto | null;
|
|
7505
7358
|
resourceId: string;
|
|
7506
7359
|
resourceName: string;
|
|
7507
7360
|
resourceDepartmentNumber?: string | null;
|
|
@@ -7513,13 +7366,11 @@ export interface PlannerOperationDto {
|
|
|
7513
7366
|
producedQuantity: number;
|
|
7514
7367
|
totalPlannedHours?: number;
|
|
7515
7368
|
totalUsedHours?: number;
|
|
7369
|
+
usedSetupHours?: number | null;
|
|
7370
|
+
plannedSetupHours?: number | null;
|
|
7371
|
+
usedProductionHours?: number;
|
|
7516
7372
|
customerName?: string | null;
|
|
7517
7373
|
project?: WorkOrderProjectDto | null;
|
|
7518
|
-
sequenceNumber: number;
|
|
7519
|
-
isManuallyLocked: boolean;
|
|
7520
|
-
lockType: PlannerLockType;
|
|
7521
|
-
isNewOperation: boolean;
|
|
7522
|
-
weekGroup: string;
|
|
7523
7374
|
programStatus?: ProgramStatus | null;
|
|
7524
7375
|
hasNotes?: boolean;
|
|
7525
7376
|
notesUnread?: boolean;
|
|
@@ -7530,8 +7381,13 @@ export interface PlannerOperationDto {
|
|
|
7530
7381
|
drawing?: DrawingDto | null;
|
|
7531
7382
|
drawingNumber?: string | null;
|
|
7532
7383
|
description?: string | null;
|
|
7384
|
+
disableSetupRegistration?: boolean;
|
|
7385
|
+
sequenceNumber: number;
|
|
7386
|
+
isManuallyLocked: boolean;
|
|
7387
|
+
lockType: PlannerLockType;
|
|
7388
|
+
isNewOperation: boolean;
|
|
7389
|
+
weekGroup: string;
|
|
7533
7390
|
}
|
|
7534
|
-
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
7535
7391
|
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
7536
7392
|
export interface OperationPrerequisitesDto {
|
|
7537
7393
|
drawing?: boolean | null;
|
|
@@ -7554,6 +7410,7 @@ export interface DrawingFileDto {
|
|
|
7554
7410
|
name: string;
|
|
7555
7411
|
comment?: string;
|
|
7556
7412
|
}
|
|
7413
|
+
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
7557
7414
|
export interface WeekCapacityDto {
|
|
7558
7415
|
weekGroup: string;
|
|
7559
7416
|
weekStart: Date;
|
|
@@ -7589,16 +7446,51 @@ export interface SetProgramStatus {
|
|
|
7589
7446
|
status?: ProgramStatus;
|
|
7590
7447
|
}
|
|
7591
7448
|
export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
|
|
7592
|
-
export interface
|
|
7593
|
-
|
|
7594
|
-
|
|
7595
|
-
|
|
7596
|
-
|
|
7597
|
-
|
|
7449
|
+
export interface UpdateProductionOrderAttachmentRequest {
|
|
7450
|
+
type?: ProductionOrderAttachmentType;
|
|
7451
|
+
description: string;
|
|
7452
|
+
notes?: string | null;
|
|
7453
|
+
url?: string | null;
|
|
7454
|
+
}
|
|
7455
|
+
export interface ProductionOrderAttachmentDto {
|
|
7456
|
+
attachmentId: number;
|
|
7598
7457
|
name?: string | null;
|
|
7599
7458
|
fileName?: string | null;
|
|
7600
7459
|
notes?: string | null;
|
|
7601
|
-
attachmentType?:
|
|
7460
|
+
attachmentType?: ProductionOrderAttachmentType | null;
|
|
7461
|
+
addedBy?: string | null;
|
|
7462
|
+
canDelete: boolean;
|
|
7463
|
+
}
|
|
7464
|
+
export interface ProductionOrderListDto {
|
|
7465
|
+
id: string;
|
|
7466
|
+
companyId?: string | null;
|
|
7467
|
+
part?: PartDto | null;
|
|
7468
|
+
quantity: number;
|
|
7469
|
+
unit?: string | null;
|
|
7470
|
+
status: WorkorderStatus;
|
|
7471
|
+
plannedStart?: Date | null;
|
|
7472
|
+
plannedEnd?: Date | null;
|
|
7473
|
+
producedQuantity: number;
|
|
7474
|
+
scrappedQuantity: number;
|
|
7475
|
+
deliveryLocation?: WarehouseLocationDto | null;
|
|
7476
|
+
project?: WorkOrderProjectDto | null;
|
|
7477
|
+
startDate?: Date | null;
|
|
7478
|
+
endDate?: Date | null;
|
|
7479
|
+
deliveryDate?: Date | null;
|
|
7480
|
+
bomPosition?: string | null;
|
|
7481
|
+
orderReference?: OrderReferenceDto | null;
|
|
7482
|
+
customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
|
|
7483
|
+
}
|
|
7484
|
+
export interface OrderReferenceDto {
|
|
7485
|
+
orderReferenceType?: OrderReferenceTypeDto;
|
|
7486
|
+
orderNumber?: string;
|
|
7487
|
+
orderLineNumber?: number | null;
|
|
7488
|
+
}
|
|
7489
|
+
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
7490
|
+
export interface ListProductionOrdersRequest {
|
|
7491
|
+
search: string;
|
|
7492
|
+
searchType: SearchTypeDto;
|
|
7493
|
+
maxResults?: number | null;
|
|
7602
7494
|
}
|
|
7603
7495
|
export interface ProductionOrderDto {
|
|
7604
7496
|
id: string;
|
|
@@ -7658,6 +7550,17 @@ export interface ProductionOrderOperationDto {
|
|
|
7658
7550
|
productionStatus: OperationStatusDto;
|
|
7659
7551
|
setupStatus?: OperationStatusDto | null;
|
|
7660
7552
|
}
|
|
7553
|
+
export interface WorkOrderAttachmentDto {
|
|
7554
|
+
createdBy?: UserDto | null;
|
|
7555
|
+
created?: Date | null;
|
|
7556
|
+
modifiedBy?: UserDto | null;
|
|
7557
|
+
modified?: Date | null;
|
|
7558
|
+
attachmentId?: number | null;
|
|
7559
|
+
name?: string | null;
|
|
7560
|
+
fileName?: string | null;
|
|
7561
|
+
notes?: string | null;
|
|
7562
|
+
attachmentType?: string | null;
|
|
7563
|
+
}
|
|
7661
7564
|
export interface ProductionOrderBomDto {
|
|
7662
7565
|
position: string;
|
|
7663
7566
|
lineNumber: number;
|
|
@@ -8482,6 +8385,7 @@ export interface ImaSpecificationResultLineDto {
|
|
|
8482
8385
|
specificationMin?: number | null;
|
|
8483
8386
|
specificationMax?: number | null;
|
|
8484
8387
|
readValue?: string | null;
|
|
8388
|
+
unit?: string | null;
|
|
8485
8389
|
status: ImaSpecificationResultLineStatusDto;
|
|
8486
8390
|
override?: ImaResultLineOverrideDto | null;
|
|
8487
8391
|
}
|
|
@@ -8508,28 +8412,26 @@ export interface ImaTensileTestResultDto {
|
|
|
8508
8412
|
sampleReference?: string | null;
|
|
8509
8413
|
orientation?: string | null;
|
|
8510
8414
|
testLocation?: string | null;
|
|
8511
|
-
temperature?:
|
|
8415
|
+
temperature?: number | null;
|
|
8416
|
+
temperatureUnit?: string | null;
|
|
8512
8417
|
roomTemperature?: boolean | null;
|
|
8513
8418
|
yieldStrengths: ImaYieldStrengthResultDto[];
|
|
8514
|
-
tensileStrength?:
|
|
8515
|
-
yieldTensileRatio?:
|
|
8419
|
+
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
8420
|
+
yieldTensileRatio?: ImaSpecificationResultLineDto | null;
|
|
8516
8421
|
elongations: ImaElongationResultDto[];
|
|
8517
|
-
reductionOfArea?:
|
|
8422
|
+
reductionOfArea?: ImaSpecificationResultLineDto | null;
|
|
8518
8423
|
testStandards: string[];
|
|
8519
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8520
|
-
}
|
|
8521
|
-
export interface ImaResultValueDto {
|
|
8522
|
-
readValue?: string | null;
|
|
8523
|
-
unit?: string | null;
|
|
8524
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8525
8424
|
}
|
|
8526
8425
|
export interface ImaYieldStrengthResultDto {
|
|
8527
|
-
|
|
8528
|
-
|
|
8426
|
+
basis?: ImaYieldStrengthYieldBasisDto | null;
|
|
8427
|
+
strainPercent?: number | null;
|
|
8428
|
+
labelVerbatim?: string | null;
|
|
8429
|
+
result?: ImaSpecificationResultLineDto | null;
|
|
8529
8430
|
}
|
|
8431
|
+
export type ImaYieldStrengthYieldBasisDto = "ProofNonProportional" | "ProofTotalExtension" | "UpperYield" | "LowerYield" | "Unspecified";
|
|
8530
8432
|
export interface ImaElongationResultDto {
|
|
8531
8433
|
gauge?: string | null;
|
|
8532
|
-
value?:
|
|
8434
|
+
value?: ImaSpecificationResultLineDto | null;
|
|
8533
8435
|
}
|
|
8534
8436
|
export interface ImaHardnessTestResultDto {
|
|
8535
8437
|
heatNumber?: string | null;
|
|
@@ -8538,27 +8440,31 @@ export interface ImaHardnessTestResultDto {
|
|
|
8538
8440
|
testLocation?: string | null;
|
|
8539
8441
|
readings: ImaHardnessReadingResultDto[];
|
|
8540
8442
|
testStandards: string[];
|
|
8541
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8542
8443
|
}
|
|
8543
8444
|
export interface ImaHardnessReadingResultDto {
|
|
8544
8445
|
label?: string | null;
|
|
8545
8446
|
scale?: string | null;
|
|
8546
|
-
|
|
8447
|
+
result?: ImaSpecificationResultLineDto | null;
|
|
8547
8448
|
}
|
|
8548
8449
|
export interface ImaImpactTestResultDto {
|
|
8549
8450
|
heatNumber?: string | null;
|
|
8550
8451
|
sampleReference?: string | null;
|
|
8551
8452
|
orientation?: string | null;
|
|
8552
8453
|
testLocation?: string | null;
|
|
8553
|
-
temperature?:
|
|
8454
|
+
temperature?: number | null;
|
|
8455
|
+
temperatureUnit?: string | null;
|
|
8554
8456
|
roomTemperature?: boolean | null;
|
|
8555
8457
|
testLabel?: string | null;
|
|
8556
8458
|
notchType?: string | null;
|
|
8557
8459
|
specimenSize?: string | null;
|
|
8558
8460
|
individualValues: ImaResultValueDto[];
|
|
8559
|
-
reportedAverage?:
|
|
8560
|
-
reportedMinimum?:
|
|
8461
|
+
reportedAverage?: ImaSpecificationResultLineDto | null;
|
|
8462
|
+
reportedMinimum?: ImaSpecificationResultLineDto | null;
|
|
8561
8463
|
testStandards: string[];
|
|
8464
|
+
}
|
|
8465
|
+
export interface ImaResultValueDto {
|
|
8466
|
+
readValue?: string | null;
|
|
8467
|
+
unit?: string | null;
|
|
8562
8468
|
override?: ImaResultLineOverrideDto | null;
|
|
8563
8469
|
}
|
|
8564
8470
|
export interface ImaCorrosionTestResultDto {
|
|
@@ -8566,13 +8472,13 @@ export interface ImaCorrosionTestResultDto {
|
|
|
8566
8472
|
sampleReference?: string | null;
|
|
8567
8473
|
testLocation?: string | null;
|
|
8568
8474
|
testMethod?: string | null;
|
|
8569
|
-
|
|
8475
|
+
temperature?: number | null;
|
|
8476
|
+
temperatureUnit?: string | null;
|
|
8570
8477
|
roomTemperature?: boolean | null;
|
|
8571
8478
|
weightLoss?: ImaResultValueDto | null;
|
|
8572
|
-
pitting?:
|
|
8573
|
-
result?:
|
|
8574
|
-
acceptable?:
|
|
8575
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8479
|
+
pitting?: ImaResultValueDto | null;
|
|
8480
|
+
result?: ImaResultValueDto | null;
|
|
8481
|
+
acceptable?: ImaResultValueDto | null;
|
|
8576
8482
|
}
|
|
8577
8483
|
export interface ImaFerriteResultDto {
|
|
8578
8484
|
heatNumber?: string | null;
|
|
@@ -8612,10 +8518,10 @@ export interface ImaDocumentTypesResultsDto {
|
|
|
8612
8518
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8613
8519
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8614
8520
|
chemicalAnalysisSection?: ImaOverrideChemicalAnalysisResultsDto[] | null;
|
|
8615
|
-
tensileTestSection?:
|
|
8616
|
-
hardnessTestSection?:
|
|
8617
|
-
impactTestSection?:
|
|
8618
|
-
corrosionTestSection?:
|
|
8521
|
+
tensileTestSection?: ImaOverrideTensileTestResultsDto[] | null;
|
|
8522
|
+
hardnessTestSection?: ImaOverrideHardnessTestResultsDto[] | null;
|
|
8523
|
+
impactTestSection?: ImaOverrideImpactTestResultsDto[] | null;
|
|
8524
|
+
corrosionTestSection?: ImaOverrideCorrosionTestResultsDto[] | null;
|
|
8619
8525
|
ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8620
8526
|
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
8621
8527
|
}
|
|
@@ -8717,6 +8623,54 @@ export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
|
8717
8623
|
v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8718
8624
|
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8719
8625
|
}
|
|
8626
|
+
export interface ImaOverrideTensileTestResultsDto {
|
|
8627
|
+
heatNumber?: string | null;
|
|
8628
|
+
sampleReference?: string | null;
|
|
8629
|
+
orientation?: string | null;
|
|
8630
|
+
tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8631
|
+
yieldTensileRatio?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8632
|
+
reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8633
|
+
yieldStrengths?: ImaOverrideYieldStrengthResultDto[] | null;
|
|
8634
|
+
elongations?: ImaOverrideElongationResultDto[] | null;
|
|
8635
|
+
}
|
|
8636
|
+
export interface ImaOverrideYieldStrengthResultDto {
|
|
8637
|
+
labelVerbatim?: string | null;
|
|
8638
|
+
override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8639
|
+
}
|
|
8640
|
+
export interface ImaOverrideElongationResultDto {
|
|
8641
|
+
gauge?: string | null;
|
|
8642
|
+
override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8643
|
+
}
|
|
8644
|
+
export interface ImaOverrideHardnessTestResultsDto {
|
|
8645
|
+
heatNumber?: string | null;
|
|
8646
|
+
sampleReference?: string | null;
|
|
8647
|
+
orientation?: string | null;
|
|
8648
|
+
readings?: ImaOverrideHardnessReadingResultDto[] | null;
|
|
8649
|
+
}
|
|
8650
|
+
export interface ImaOverrideHardnessReadingResultDto {
|
|
8651
|
+
label?: string | null;
|
|
8652
|
+
override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8653
|
+
}
|
|
8654
|
+
export interface ImaOverrideImpactTestResultsDto {
|
|
8655
|
+
heatNumber?: string | null;
|
|
8656
|
+
sampleReference?: string | null;
|
|
8657
|
+
orientation?: string | null;
|
|
8658
|
+
reportedAverage?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8659
|
+
reportedMinimum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8660
|
+
individualValues?: ImaOverrideIndexedResultLineDto[] | null;
|
|
8661
|
+
}
|
|
8662
|
+
export interface ImaOverrideIndexedResultLineDto {
|
|
8663
|
+
index?: number;
|
|
8664
|
+
override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8665
|
+
}
|
|
8666
|
+
export interface ImaOverrideCorrosionTestResultsDto {
|
|
8667
|
+
heatNumber?: string | null;
|
|
8668
|
+
sampleReference?: string | null;
|
|
8669
|
+
weightLoss?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8670
|
+
pitting?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8671
|
+
result?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8672
|
+
acceptable?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8673
|
+
}
|
|
8720
8674
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
8721
8675
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8722
8676
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -8985,13 +8939,24 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
8985
8939
|
ce?: boolean | null;
|
|
8986
8940
|
}
|
|
8987
8941
|
export interface ImaMechanicalSpecificationDto {
|
|
8942
|
+
tensile?: ImaTensileSpecificationDto | null;
|
|
8943
|
+
hardness?: ImaHardnessSpecificationDto | null;
|
|
8944
|
+
impact?: ImaImpactSpecificationDto | null;
|
|
8945
|
+
}
|
|
8946
|
+
export interface ImaTensileSpecificationDto {
|
|
8988
8947
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8989
8948
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
8949
|
+
yieldTensileRatio?: ImaSpecificationLineDto | null;
|
|
8990
8950
|
elongation?: ImaSpecificationLineDto | null;
|
|
8991
8951
|
reductionOfArea?: ImaSpecificationLineDto | null;
|
|
8992
|
-
|
|
8952
|
+
}
|
|
8953
|
+
export interface ImaHardnessSpecificationDto {
|
|
8993
8954
|
hardness?: ImaSpecificationLineDto | null;
|
|
8994
8955
|
}
|
|
8956
|
+
export interface ImaImpactSpecificationDto {
|
|
8957
|
+
minimum?: ImaSpecificationLineDto | null;
|
|
8958
|
+
average?: ImaSpecificationLineDto | null;
|
|
8959
|
+
}
|
|
8995
8960
|
export interface ImaFerriteSpecificationDto {
|
|
8996
8961
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8997
8962
|
}
|
|
@@ -9069,80 +9034,6 @@ export interface ImaSpecificationLiteDto {
|
|
|
9069
9034
|
updated: Date;
|
|
9070
9035
|
isDeleted: boolean;
|
|
9071
9036
|
}
|
|
9072
|
-
export interface SchemaCreatorStateDto {
|
|
9073
|
-
settings: SchemaCreatorSettingsDto;
|
|
9074
|
-
elements: SchemaCreatorElementDto[];
|
|
9075
|
-
fullParse?: SchemaCreatorFullParseStatusDto | null;
|
|
9076
|
-
}
|
|
9077
|
-
export interface SchemaCreatorSettingsDto {
|
|
9078
|
-
unit?: UnitOfMeasureDto;
|
|
9079
|
-
tolerance?: GeneralToleranceDto;
|
|
9080
|
-
balloonSize?: number;
|
|
9081
|
-
}
|
|
9082
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9083
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9084
|
-
export interface SchemaCreatorElementDto {
|
|
9085
|
-
id: string;
|
|
9086
|
-
kind: SchemaCreatorElementKindDto;
|
|
9087
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
9088
|
-
isDirty?: boolean | null;
|
|
9089
|
-
values?: SchemaCreatorElementValuesDto | null;
|
|
9090
|
-
parseResult?: SchemaCreatorSnipResultDto | null;
|
|
9091
|
-
}
|
|
9092
|
-
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
9093
|
-
export interface SchemaCreatorElementDrawingsDto {
|
|
9094
|
-
square: SchemaCreatorDrawingDto;
|
|
9095
|
-
circle: SchemaCreatorDrawingDto;
|
|
9096
|
-
textId: string;
|
|
9097
|
-
}
|
|
9098
|
-
export interface SchemaCreatorDrawingDto {
|
|
9099
|
-
rect: SchemaCreatorRectDto;
|
|
9100
|
-
pageIndex: number;
|
|
9101
|
-
annotationId: string;
|
|
9102
|
-
rotation?: number | null;
|
|
9103
|
-
unrotatedRect?: SchemaCreatorRectDto | null;
|
|
9104
|
-
}
|
|
9105
|
-
export interface SchemaCreatorRectDto {
|
|
9106
|
-
origin: SchemaCreatorPointDto;
|
|
9107
|
-
size: SchemaCreatorSizeDto;
|
|
9108
|
-
}
|
|
9109
|
-
export interface SchemaCreatorPointDto {
|
|
9110
|
-
x: number;
|
|
9111
|
-
y: number;
|
|
9112
|
-
}
|
|
9113
|
-
export interface SchemaCreatorSizeDto {
|
|
9114
|
-
width: number;
|
|
9115
|
-
height: number;
|
|
9116
|
-
}
|
|
9117
|
-
export interface SchemaCreatorElementValuesDto {
|
|
9118
|
-
reference: number;
|
|
9119
|
-
nominal?: number | null;
|
|
9120
|
-
nominalText?: string | null;
|
|
9121
|
-
plusTolerance?: number | null;
|
|
9122
|
-
minusTolerance?: number | null;
|
|
9123
|
-
coatingThickness?: number | null;
|
|
9124
|
-
measurementFrequency: MeasurementFrequency;
|
|
9125
|
-
measurementFrequencyParameter?: number | null;
|
|
9126
|
-
type?: string | null;
|
|
9127
|
-
count?: number | null;
|
|
9128
|
-
comment?: string | null;
|
|
9129
|
-
canCopy: boolean;
|
|
9130
|
-
visibleToCustomer: boolean;
|
|
9131
|
-
isDocumentedExternally: boolean;
|
|
9132
|
-
}
|
|
9133
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9134
|
-
export interface SchemaCreatorSnipResultDto {
|
|
9135
|
-
nominal?: number | null;
|
|
9136
|
-
nominalText?: string | null;
|
|
9137
|
-
plusTolerance?: number | null;
|
|
9138
|
-
minusTolerance?: number | null;
|
|
9139
|
-
coatingThickness?: number | null;
|
|
9140
|
-
count?: number | null;
|
|
9141
|
-
}
|
|
9142
|
-
export interface SchemaCreatorFullParseStatusDto {
|
|
9143
|
-
inProgress: boolean;
|
|
9144
|
-
startedAt?: Date | null;
|
|
9145
|
-
}
|
|
9146
9037
|
export interface MeasurementFormSchemaDto {
|
|
9147
9038
|
id: string;
|
|
9148
9039
|
versionId: number;
|
|
@@ -9174,7 +9065,9 @@ export interface MeasurementFormSchemaDto {
|
|
|
9174
9065
|
}
|
|
9175
9066
|
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
9176
9067
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
9068
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9177
9069
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
9070
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9178
9071
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
9179
9072
|
url: string;
|
|
9180
9073
|
title: string;
|
|
@@ -9223,6 +9116,7 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9223
9116
|
isValid: boolean;
|
|
9224
9117
|
validationErrorMessage?: string | null;
|
|
9225
9118
|
}
|
|
9119
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9226
9120
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
9227
9121
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
9228
9122
|
export interface MeasurementFormLinkedSchemaDto {
|
|
@@ -9688,7 +9582,6 @@ export interface ListMeasurementFormsRequest {
|
|
|
9688
9582
|
pageSize?: number | null;
|
|
9689
9583
|
search?: string | null;
|
|
9690
9584
|
continuationToken?: string | null;
|
|
9691
|
-
tenantId?: string | null;
|
|
9692
9585
|
inactive?: boolean | null;
|
|
9693
9586
|
includeInactiveSupplierAccess?: boolean | null;
|
|
9694
9587
|
}
|
|
@@ -9884,7 +9777,6 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
|
|
|
9884
9777
|
externalOrderNumber?: string | null;
|
|
9885
9778
|
}
|
|
9886
9779
|
export interface ExportDimensionReportV2Request {
|
|
9887
|
-
tenantId?: string | null;
|
|
9888
9780
|
type: DimensionReportType;
|
|
9889
9781
|
extras?: DimensionReportExtras | null;
|
|
9890
9782
|
specificSerialNumbers?: string[] | null;
|
|
@@ -10230,6 +10122,105 @@ export interface SetDiscussionLastReadRequest {
|
|
|
10230
10122
|
operationId?: string | null;
|
|
10231
10123
|
resourceId?: string | null;
|
|
10232
10124
|
}
|
|
10125
|
+
export interface CompanyUserDto {
|
|
10126
|
+
companyId: string;
|
|
10127
|
+
userObjectId: string;
|
|
10128
|
+
username?: string | null;
|
|
10129
|
+
name?: string | null;
|
|
10130
|
+
roles: string[];
|
|
10131
|
+
}
|
|
10132
|
+
export interface CreateCompanyUser {
|
|
10133
|
+
username: string;
|
|
10134
|
+
name: string;
|
|
10135
|
+
roles: string[];
|
|
10136
|
+
companyId?: string | null;
|
|
10137
|
+
}
|
|
10138
|
+
export interface UpdateCompanyUserRequest {
|
|
10139
|
+
roles: string[];
|
|
10140
|
+
companyId?: string | null;
|
|
10141
|
+
}
|
|
10142
|
+
export interface ExternalRoleDto {
|
|
10143
|
+
id: string;
|
|
10144
|
+
name: string;
|
|
10145
|
+
}
|
|
10146
|
+
export interface CompanyCustomerDto {
|
|
10147
|
+
customerTenantId?: string | null;
|
|
10148
|
+
customerAzureAdTenantId?: string | null;
|
|
10149
|
+
customerName?: string | null;
|
|
10150
|
+
supplierId?: string | null;
|
|
10151
|
+
supplierName?: string | null;
|
|
10152
|
+
customerIgnosPortalPrefix?: string | null;
|
|
10153
|
+
}
|
|
10154
|
+
export interface CompanyDto {
|
|
10155
|
+
id: string;
|
|
10156
|
+
name: string;
|
|
10157
|
+
organizationNumber?: string | null;
|
|
10158
|
+
country: string;
|
|
10159
|
+
tenantId?: string | null;
|
|
10160
|
+
}
|
|
10161
|
+
export interface SupplierInviteDto {
|
|
10162
|
+
id: string;
|
|
10163
|
+
supplierId: string;
|
|
10164
|
+
threeLetterIsoCountry: string;
|
|
10165
|
+
organizationNumber: string;
|
|
10166
|
+
supplierName?: string | null;
|
|
10167
|
+
userId: string;
|
|
10168
|
+
userName?: string | null;
|
|
10169
|
+
acceptedTimestamp?: Date | null;
|
|
10170
|
+
createdTime: Date;
|
|
10171
|
+
createdBy: string;
|
|
10172
|
+
}
|
|
10173
|
+
export interface CurrentSupplierInviteDto extends SupplierInviteDto {
|
|
10174
|
+
matchingCustomerOrCompany?: MatchingCustomerOrCompany | null;
|
|
10175
|
+
}
|
|
10176
|
+
export interface MatchingCustomerOrCompany {
|
|
10177
|
+
customer?: IgnosCustomerDto | null;
|
|
10178
|
+
company?: CompanyDto | null;
|
|
10179
|
+
companyCustomers?: CompanyCustomerDto[];
|
|
10180
|
+
}
|
|
10181
|
+
export interface IgnosCustomerDto {
|
|
10182
|
+
id: string;
|
|
10183
|
+
name: string;
|
|
10184
|
+
contactPerson: ContactPersonDto;
|
|
10185
|
+
threeLetterIsoCountry: string;
|
|
10186
|
+
organizationNumber: string;
|
|
10187
|
+
country: string;
|
|
10188
|
+
tenants: AvailableTenantDto[];
|
|
10189
|
+
}
|
|
10190
|
+
export interface ContactPersonDto {
|
|
10191
|
+
name: string;
|
|
10192
|
+
phone: string;
|
|
10193
|
+
email: string;
|
|
10194
|
+
}
|
|
10195
|
+
export interface TenantWithSupplierDto {
|
|
10196
|
+
tenantId: string;
|
|
10197
|
+
customerName: string;
|
|
10198
|
+
supplierTenantEntraId: string;
|
|
10199
|
+
}
|
|
10200
|
+
export interface CreateSupplierInviteRequest {
|
|
10201
|
+
supplierId: string;
|
|
10202
|
+
threeLetterIsoCountry: string;
|
|
10203
|
+
organizationNumber: string;
|
|
10204
|
+
supplierName?: string | null;
|
|
10205
|
+
username: string;
|
|
10206
|
+
invitedName: string;
|
|
10207
|
+
}
|
|
10208
|
+
export interface ExternalSupplierDto {
|
|
10209
|
+
id: string;
|
|
10210
|
+
name: string;
|
|
10211
|
+
companyId: string;
|
|
10212
|
+
active: boolean;
|
|
10213
|
+
}
|
|
10214
|
+
export interface CreateSupplierMapping {
|
|
10215
|
+
companyId: string;
|
|
10216
|
+
existingSupplierId: string;
|
|
10217
|
+
newSupplierId: string;
|
|
10218
|
+
}
|
|
10219
|
+
export interface OrganizationDto {
|
|
10220
|
+
name?: string;
|
|
10221
|
+
postalAddress?: string | null;
|
|
10222
|
+
registeredAddress?: string | null;
|
|
10223
|
+
}
|
|
10233
10224
|
export type FeatureCollectionType = "FeatureCollection";
|
|
10234
10225
|
export interface Features {
|
|
10235
10226
|
type: FeaturesType;
|