@ignos/api-client 20260827.250.1-alpha → 20260831.252.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 +398 -249
- package/lib/ignosportal-api.js +4706 -4546
- package/package.json +1 -1
- package/src/ignosportal-api.ts +6676 -6376
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -127,7 +127,6 @@ export declare class CustomersClient extends AuthorizedApiBase implements ICusto
|
|
|
127
127
|
}
|
|
128
128
|
export interface IGuestsClient {
|
|
129
129
|
getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
130
|
-
getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
131
130
|
}
|
|
132
131
|
export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
|
|
133
132
|
private http;
|
|
@@ -137,8 +136,6 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
|
|
|
137
136
|
});
|
|
138
137
|
getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
139
138
|
protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
140
|
-
getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
141
|
-
protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
142
139
|
}
|
|
143
140
|
export interface IPresentationClient {
|
|
144
141
|
getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
|
|
@@ -1520,6 +1517,99 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
|
|
|
1520
1517
|
listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
|
|
1521
1518
|
protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
|
|
1522
1519
|
}
|
|
1520
|
+
export interface IExternalAccessClient {
|
|
1521
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1522
|
+
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1523
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1524
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1525
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1526
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1527
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1528
|
+
}
|
|
1529
|
+
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
1530
|
+
private http;
|
|
1531
|
+
private baseUrl;
|
|
1532
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
1533
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1534
|
+
});
|
|
1535
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1536
|
+
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
1537
|
+
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1538
|
+
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1539
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1540
|
+
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1541
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1542
|
+
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
1543
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1544
|
+
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
1545
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1546
|
+
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
1547
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1548
|
+
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
1549
|
+
}
|
|
1550
|
+
export interface IExternalClient {
|
|
1551
|
+
listInvites(): Promise<InviteDto[]>;
|
|
1552
|
+
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1553
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
1554
|
+
}
|
|
1555
|
+
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
1556
|
+
private http;
|
|
1557
|
+
private baseUrl;
|
|
1558
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
1559
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1560
|
+
});
|
|
1561
|
+
listInvites(): Promise<InviteDto[]>;
|
|
1562
|
+
protected processListInvites(response: Response): Promise<InviteDto[]>;
|
|
1563
|
+
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1564
|
+
protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
|
|
1565
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
1566
|
+
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
1567
|
+
}
|
|
1568
|
+
export interface ISuppliersClient {
|
|
1569
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1570
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1571
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
1572
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1573
|
+
deleteSupplier(id: string): Promise<void>;
|
|
1574
|
+
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1575
|
+
/**
|
|
1576
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
1577
|
+
*/
|
|
1578
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1579
|
+
/**
|
|
1580
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1581
|
+
*/
|
|
1582
|
+
deleteSupplierMappings(): Promise<void>;
|
|
1583
|
+
}
|
|
1584
|
+
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
1585
|
+
private http;
|
|
1586
|
+
private baseUrl;
|
|
1587
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
1588
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1589
|
+
});
|
|
1590
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1591
|
+
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
1592
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1593
|
+
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
1594
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
1595
|
+
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
1596
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1597
|
+
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
1598
|
+
deleteSupplier(id: string): Promise<void>;
|
|
1599
|
+
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
1600
|
+
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1601
|
+
protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
|
|
1602
|
+
/**
|
|
1603
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
1604
|
+
*/
|
|
1605
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1606
|
+
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
1607
|
+
/**
|
|
1608
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1609
|
+
*/
|
|
1610
|
+
deleteSupplierMappings(): Promise<void>;
|
|
1611
|
+
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
1612
|
+
}
|
|
1523
1613
|
export interface ICncFileTransferClient {
|
|
1524
1614
|
startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
|
|
1525
1615
|
startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
|
|
@@ -2789,6 +2879,84 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
|
|
|
2789
2879
|
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2790
2880
|
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2791
2881
|
}
|
|
2882
|
+
export interface IInspectSchemaCreatorClient {
|
|
2883
|
+
getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
|
|
2884
|
+
/**
|
|
2885
|
+
* Creates the initial creator state for a schema version. Returns 409 if
|
|
2886
|
+
state already exists; the caller should re-fetch it instead of writing.
|
|
2887
|
+
*/
|
|
2888
|
+
createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2889
|
+
updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2890
|
+
/**
|
|
2891
|
+
* Starts a full drawing AI parse: clears every element and locks the
|
|
2892
|
+
schema for every viewer until it completes. If one is already in
|
|
2893
|
+
progress, returns that instead of starting a second one.
|
|
2894
|
+
*/
|
|
2895
|
+
requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
|
|
2896
|
+
/**
|
|
2897
|
+
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
2898
|
+
returns a temporary download link.
|
|
2899
|
+
*/
|
|
2900
|
+
exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
|
|
2901
|
+
/**
|
|
2902
|
+
* Starts an async snip resolve; the result is delivered through the
|
|
2903
|
+
SchemaCreatorSnipResolved SignalR notification.
|
|
2904
|
+
* @param image (optional)
|
|
2905
|
+
*/
|
|
2906
|
+
requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<void>;
|
|
2907
|
+
/**
|
|
2908
|
+
* Renders the legacy-format image for one element's current snip.
|
|
2909
|
+
Fire-and-forget from the client on every snip commit - the resulting
|
|
2910
|
+
image isn't returned here, it's only ever read back once the schema
|
|
2911
|
+
is released (SchemaCreatorLegacyMapper).
|
|
2912
|
+
*/
|
|
2913
|
+
renderSchemaCreatorElementSnipImage(id: string, elementId: string, request: RenderSchemaCreatorElementSnipImageRequest): Promise<void>;
|
|
2914
|
+
}
|
|
2915
|
+
export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
|
|
2916
|
+
private http;
|
|
2917
|
+
private baseUrl;
|
|
2918
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2919
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2920
|
+
});
|
|
2921
|
+
getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
|
|
2922
|
+
protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2923
|
+
/**
|
|
2924
|
+
* Creates the initial creator state for a schema version. Returns 409 if
|
|
2925
|
+
state already exists; the caller should re-fetch it instead of writing.
|
|
2926
|
+
*/
|
|
2927
|
+
createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2928
|
+
protected processCreateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2929
|
+
updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2930
|
+
protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2931
|
+
/**
|
|
2932
|
+
* Starts a full drawing AI parse: clears every element and locks the
|
|
2933
|
+
schema for every viewer until it completes. If one is already in
|
|
2934
|
+
progress, returns that instead of starting a second one.
|
|
2935
|
+
*/
|
|
2936
|
+
requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
|
|
2937
|
+
protected processRequestSchemaCreatorDocumentParse(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2938
|
+
/**
|
|
2939
|
+
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
2940
|
+
returns a temporary download link.
|
|
2941
|
+
*/
|
|
2942
|
+
exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
|
|
2943
|
+
protected processExportSchemaCreatorDrawing(response: Response): Promise<DownloadDto>;
|
|
2944
|
+
/**
|
|
2945
|
+
* Starts an async snip resolve; the result is delivered through the
|
|
2946
|
+
SchemaCreatorSnipResolved SignalR notification.
|
|
2947
|
+
* @param image (optional)
|
|
2948
|
+
*/
|
|
2949
|
+
requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<void>;
|
|
2950
|
+
protected processRequestSchemaCreatorSnipParse(response: Response): Promise<void>;
|
|
2951
|
+
/**
|
|
2952
|
+
* Renders the legacy-format image for one element's current snip.
|
|
2953
|
+
Fire-and-forget from the client on every snip commit - the resulting
|
|
2954
|
+
image isn't returned here, it's only ever read back once the schema
|
|
2955
|
+
is released (SchemaCreatorLegacyMapper).
|
|
2956
|
+
*/
|
|
2957
|
+
renderSchemaCreatorElementSnipImage(id: string, elementId: string, request: RenderSchemaCreatorElementSnipImageRequest): Promise<void>;
|
|
2958
|
+
protected processRenderSchemaCreatorElementSnipImage(response: Response): Promise<void>;
|
|
2959
|
+
}
|
|
2792
2960
|
export interface IMeasurementFormSchemasAdminClient {
|
|
2793
2961
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2794
2962
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -2800,7 +2968,7 @@ export interface IMeasurementFormSchemasAdminClient {
|
|
|
2800
2968
|
deleteSchemaRows(id: string, request: DeleteSchemaGroupedElementRowsDto): Promise<MeasurementFormSchemaDto>;
|
|
2801
2969
|
uploadMeasurementImage(id: string, request: UploadMeasurementImageRequest): Promise<MeasurementFormSchemaDto>;
|
|
2802
2970
|
updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
|
|
2803
|
-
|
|
2971
|
+
uploadSchemaMarkedDrawing(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
2804
2972
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
2805
2973
|
getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
|
|
2806
2974
|
listLinkableMeasurementFormSchemas(schemaId: string, pageSize: number | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
@@ -2883,8 +3051,8 @@ export declare class MeasurementFormSchemasAdminClient extends AuthorizedApiBase
|
|
|
2883
3051
|
protected processUploadMeasurementImage(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2884
3052
|
updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
|
|
2885
3053
|
protected processUpdateSchemaSettings(response: Response): Promise<UpdateSchemaSettingsRequest>;
|
|
2886
|
-
|
|
2887
|
-
protected
|
|
3054
|
+
uploadSchemaMarkedDrawing(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
3055
|
+
protected processUploadSchemaMarkedDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2888
3056
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
2889
3057
|
protected processUploadSchemaAttachment(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2890
3058
|
getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
|
|
@@ -3039,22 +3207,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
|
|
|
3039
3207
|
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
3040
3208
|
}
|
|
3041
3209
|
export interface IMeasurementFormsInstancesClient {
|
|
3042
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3210
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, tenantId: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3043
3211
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3044
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3212
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
3045
3213
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3046
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3047
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3048
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3049
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
3050
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3214
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
3215
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3216
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3217
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
3218
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3051
3219
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
3052
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3053
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3054
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
3055
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3056
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3057
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3220
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3221
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3222
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
3223
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3224
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3225
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3058
3226
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
3059
3227
|
upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
|
|
3060
3228
|
removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
|
|
@@ -3070,37 +3238,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
3070
3238
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3071
3239
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3072
3240
|
});
|
|
3073
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3241
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, tenantId: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3074
3242
|
protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3075
3243
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3076
3244
|
protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3077
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3245
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
3078
3246
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3079
3247
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3080
3248
|
protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3081
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3249
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
3082
3250
|
protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3083
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3251
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3084
3252
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3085
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3253
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3086
3254
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3087
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
3255
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
3088
3256
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
3089
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3257
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3090
3258
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3091
3259
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
3092
3260
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
3093
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3261
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3094
3262
|
protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
|
|
3095
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3263
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3096
3264
|
protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
|
|
3097
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
3265
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
3098
3266
|
protected processSaveComment(response: Response): Promise<void>;
|
|
3099
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3267
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3100
3268
|
protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
|
|
3101
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3269
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3102
3270
|
protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
|
|
3103
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3271
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3104
3272
|
protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
|
|
3105
3273
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
3106
3274
|
protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
@@ -3125,7 +3293,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
3125
3293
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
3126
3294
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3127
3295
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3128
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3296
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
3129
3297
|
}
|
|
3130
3298
|
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
3131
3299
|
private http;
|
|
@@ -3149,7 +3317,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
|
|
|
3149
3317
|
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3150
3318
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3151
3319
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3152
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3320
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
3153
3321
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
3154
3322
|
}
|
|
3155
3323
|
export interface ICompaniesClient {
|
|
@@ -3489,111 +3657,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3489
3657
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3490
3658
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3491
3659
|
}
|
|
3492
|
-
export interface IExternalAccessClient {
|
|
3493
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3494
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3495
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3496
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3497
|
-
migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
|
|
3498
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3499
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3500
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3501
|
-
}
|
|
3502
|
-
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3503
|
-
private http;
|
|
3504
|
-
private baseUrl;
|
|
3505
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3506
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3507
|
-
});
|
|
3508
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3509
|
-
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
3510
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3511
|
-
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3512
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3513
|
-
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3514
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3515
|
-
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
3516
|
-
migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
|
|
3517
|
-
protected processMigrateLegacyCompanyUsersToEntra(response: Response): Promise<CompanyUserDto[]>;
|
|
3518
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3519
|
-
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
3520
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3521
|
-
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
3522
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3523
|
-
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
3524
|
-
}
|
|
3525
|
-
export interface IExternalClient {
|
|
3526
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3527
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3528
|
-
getCurrentSupplierInvite(): Promise<CurrentSupplierInviteDto>;
|
|
3529
|
-
acceptSupplierInvite(acceptingTenantId: string | null | undefined): Promise<SupplierInviteDto>;
|
|
3530
|
-
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3531
|
-
}
|
|
3532
|
-
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3533
|
-
private http;
|
|
3534
|
-
private baseUrl;
|
|
3535
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3536
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3537
|
-
});
|
|
3538
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3539
|
-
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3540
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3541
|
-
protected processGetCompany(response: Response): Promise<CompanyDto>;
|
|
3542
|
-
getCurrentSupplierInvite(): Promise<CurrentSupplierInviteDto>;
|
|
3543
|
-
protected processGetCurrentSupplierInvite(response: Response): Promise<CurrentSupplierInviteDto>;
|
|
3544
|
-
acceptSupplierInvite(acceptingTenantId: string | null | undefined): Promise<SupplierInviteDto>;
|
|
3545
|
-
protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3546
|
-
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3547
|
-
protected processListTenantsWithSuppliers(response: Response): Promise<TenantWithSupplierDto[]>;
|
|
3548
|
-
}
|
|
3549
|
-
export interface ISuppliersClient {
|
|
3550
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3551
|
-
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3552
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3553
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3554
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3555
|
-
/**
|
|
3556
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3557
|
-
*/
|
|
3558
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3559
|
-
/**
|
|
3560
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3561
|
-
*/
|
|
3562
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3563
|
-
lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
|
|
3564
|
-
getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
|
|
3565
|
-
}
|
|
3566
|
-
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3567
|
-
private http;
|
|
3568
|
-
private baseUrl;
|
|
3569
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3570
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3571
|
-
});
|
|
3572
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3573
|
-
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3574
|
-
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3575
|
-
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3576
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3577
|
-
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
3578
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3579
|
-
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3580
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3581
|
-
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3582
|
-
/**
|
|
3583
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3584
|
-
*/
|
|
3585
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3586
|
-
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3587
|
-
/**
|
|
3588
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3589
|
-
*/
|
|
3590
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3591
|
-
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3592
|
-
lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
|
|
3593
|
-
protected processLookupOrganization(response: Response): Promise<OrganizationDto>;
|
|
3594
|
-
getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
|
|
3595
|
-
protected processGetOrganizationLookupSupportedCountries(response: Response): Promise<CountryDto[]>;
|
|
3596
|
-
}
|
|
3597
3660
|
export interface AzureRegionDto {
|
|
3598
3661
|
displayName: string;
|
|
3599
3662
|
name: string;
|
|
@@ -3905,9 +3968,6 @@ export interface UserDetailsDto {
|
|
|
3905
3968
|
isExternalUser?: boolean;
|
|
3906
3969
|
isBetaTester?: boolean | null;
|
|
3907
3970
|
hasAccessToIgnos?: boolean;
|
|
3908
|
-
isInvitedUser?: boolean;
|
|
3909
|
-
isSupplier?: boolean;
|
|
3910
|
-
companyId?: string | null;
|
|
3911
3971
|
}
|
|
3912
3972
|
export interface UserDto {
|
|
3913
3973
|
id?: string | null;
|
|
@@ -5934,6 +5994,97 @@ export interface DocumentGeneratorTypeDto {
|
|
|
5934
5994
|
key: string;
|
|
5935
5995
|
description: string;
|
|
5936
5996
|
}
|
|
5997
|
+
export interface CompanyUserDto {
|
|
5998
|
+
companyId?: string | null;
|
|
5999
|
+
username?: string | null;
|
|
6000
|
+
name?: string | null;
|
|
6001
|
+
roles?: string[] | null;
|
|
6002
|
+
}
|
|
6003
|
+
export interface CreateCompanyUserRequest {
|
|
6004
|
+
username: string;
|
|
6005
|
+
name: string;
|
|
6006
|
+
roles: string[];
|
|
6007
|
+
companyId?: string | null;
|
|
6008
|
+
}
|
|
6009
|
+
export interface UpdateCompanyUserRequest {
|
|
6010
|
+
name: string;
|
|
6011
|
+
roles: string[];
|
|
6012
|
+
companyId?: string | null;
|
|
6013
|
+
}
|
|
6014
|
+
export interface ExternalRoleDto {
|
|
6015
|
+
id: string;
|
|
6016
|
+
name: string;
|
|
6017
|
+
}
|
|
6018
|
+
export interface CompanyCustomerDto {
|
|
6019
|
+
customerTenantId?: string | null;
|
|
6020
|
+
customerAzureAdTenantId?: string | null;
|
|
6021
|
+
customerName?: string | null;
|
|
6022
|
+
supplierId?: string | null;
|
|
6023
|
+
supplierName?: string | null;
|
|
6024
|
+
}
|
|
6025
|
+
export interface InviteDto {
|
|
6026
|
+
tenantId: string;
|
|
6027
|
+
companyName: string;
|
|
6028
|
+
id: string;
|
|
6029
|
+
supplierId: string;
|
|
6030
|
+
supplierName: string;
|
|
6031
|
+
username: string;
|
|
6032
|
+
deadline: Date;
|
|
6033
|
+
createdTime: Date;
|
|
6034
|
+
createdBy: string;
|
|
6035
|
+
}
|
|
6036
|
+
export interface CompanyDto {
|
|
6037
|
+
id?: string | null;
|
|
6038
|
+
name?: string | null;
|
|
6039
|
+
organizationNumber?: string | null;
|
|
6040
|
+
country?: string | null;
|
|
6041
|
+
tenantId?: string | null;
|
|
6042
|
+
}
|
|
6043
|
+
export interface AcceptSupplierInviteRequest {
|
|
6044
|
+
tenantId: string;
|
|
6045
|
+
existingCompanyId?: string | null;
|
|
6046
|
+
companyName?: string | null;
|
|
6047
|
+
organizationNumber?: string | null;
|
|
6048
|
+
threeLetterIsoCountry?: string | null;
|
|
6049
|
+
}
|
|
6050
|
+
export interface SupplierInviteDto {
|
|
6051
|
+
id: string;
|
|
6052
|
+
supplierId: string;
|
|
6053
|
+
name: string;
|
|
6054
|
+
username: string;
|
|
6055
|
+
deadline: Date;
|
|
6056
|
+
createdTime: Date;
|
|
6057
|
+
createdBy: string;
|
|
6058
|
+
}
|
|
6059
|
+
export interface CreateSupplierInvite {
|
|
6060
|
+
supplierId: string;
|
|
6061
|
+
name: string;
|
|
6062
|
+
username: string;
|
|
6063
|
+
deadline: Date;
|
|
6064
|
+
}
|
|
6065
|
+
export interface ExternalSupplierDto {
|
|
6066
|
+
id: string;
|
|
6067
|
+
name: string;
|
|
6068
|
+
companyId: string;
|
|
6069
|
+
active: boolean;
|
|
6070
|
+
}
|
|
6071
|
+
export interface ImportSupplier {
|
|
6072
|
+
supplierId: string;
|
|
6073
|
+
name: string;
|
|
6074
|
+
organizationNumber?: string | null;
|
|
6075
|
+
threeLetterIsoCountry: string;
|
|
6076
|
+
users: ImportSupplierUserDto[];
|
|
6077
|
+
}
|
|
6078
|
+
export interface ImportSupplierUserDto {
|
|
6079
|
+
username: string;
|
|
6080
|
+
name: string;
|
|
6081
|
+
roles: string[];
|
|
6082
|
+
}
|
|
6083
|
+
export interface CreateSupplierMapping {
|
|
6084
|
+
companyId: string;
|
|
6085
|
+
existingSupplierId: string;
|
|
6086
|
+
newSupplierId: string;
|
|
6087
|
+
}
|
|
5937
6088
|
export interface CncMachineTransferDto {
|
|
5938
6089
|
id: string;
|
|
5939
6090
|
cncMachineOperationId?: string | null;
|
|
@@ -7392,7 +7543,6 @@ export interface PlannerOperationDto {
|
|
|
7392
7543
|
description?: string | null;
|
|
7393
7544
|
disableSetupRegistration?: boolean;
|
|
7394
7545
|
sequenceNumber: number;
|
|
7395
|
-
isManuallyLocked: boolean;
|
|
7396
7546
|
lockType: PlannerLockType;
|
|
7397
7547
|
isNewOperation: boolean;
|
|
7398
7548
|
weekGroup: string;
|
|
@@ -9080,6 +9230,105 @@ export interface ImaSpecificationLiteDto {
|
|
|
9080
9230
|
updated: Date;
|
|
9081
9231
|
isDeleted: boolean;
|
|
9082
9232
|
}
|
|
9233
|
+
export interface SchemaCreatorStateDto {
|
|
9234
|
+
settings: SchemaCreatorSettingsDto;
|
|
9235
|
+
elements: SchemaCreatorElementDto[];
|
|
9236
|
+
documentParseStatus?: SchemaCreatorDocumentParseStatusDto | null;
|
|
9237
|
+
isAutoGenerated?: boolean;
|
|
9238
|
+
createdBy?: SchemaCreatorAuditInfoDto | null;
|
|
9239
|
+
createdAt?: Date | null;
|
|
9240
|
+
updatedBy?: SchemaCreatorAuditInfoDto | null;
|
|
9241
|
+
updatedAt?: Date | null;
|
|
9242
|
+
}
|
|
9243
|
+
export interface SchemaCreatorSettingsDto {
|
|
9244
|
+
unit?: SchemaCreatorUnitOfMeasureDto;
|
|
9245
|
+
tolerance?: GeneralToleranceDto;
|
|
9246
|
+
balloonSize?: number;
|
|
9247
|
+
transparentBalloons?: boolean;
|
|
9248
|
+
}
|
|
9249
|
+
export type SchemaCreatorUnitOfMeasureDto = "Millimeter" | "Inch" | "Mixed";
|
|
9250
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9251
|
+
export interface SchemaCreatorElementDto {
|
|
9252
|
+
id: string;
|
|
9253
|
+
kind: SchemaCreatorElementKindDto;
|
|
9254
|
+
drawings: SchemaCreatorElementDrawingsDto;
|
|
9255
|
+
isDirty?: boolean | null;
|
|
9256
|
+
values?: SchemaCreatorElementValuesDto | null;
|
|
9257
|
+
parseResult?: SchemaCreatorSnipResultDto | null;
|
|
9258
|
+
resolveAttempt?: SchemaCreatorParseAttemptDto | null;
|
|
9259
|
+
createdBy?: SchemaCreatorAuditInfoDto | null;
|
|
9260
|
+
createdAt?: Date | null;
|
|
9261
|
+
updatedBy?: SchemaCreatorAuditInfoDto | null;
|
|
9262
|
+
updatedAt?: Date | null;
|
|
9263
|
+
}
|
|
9264
|
+
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
9265
|
+
export interface SchemaCreatorElementDrawingsDto {
|
|
9266
|
+
snip: SchemaCreatorSnipDto;
|
|
9267
|
+
balloon: SchemaCreatorPointDto;
|
|
9268
|
+
pageIndex: number;
|
|
9269
|
+
}
|
|
9270
|
+
export interface SchemaCreatorSnipDto {
|
|
9271
|
+
rect: SchemaCreatorRectDto;
|
|
9272
|
+
rotation?: number | null;
|
|
9273
|
+
unrotatedRect?: SchemaCreatorRectDto | null;
|
|
9274
|
+
}
|
|
9275
|
+
export interface SchemaCreatorRectDto {
|
|
9276
|
+
origin: SchemaCreatorPointDto;
|
|
9277
|
+
size: SchemaCreatorSizeDto;
|
|
9278
|
+
}
|
|
9279
|
+
export interface SchemaCreatorPointDto {
|
|
9280
|
+
x: number;
|
|
9281
|
+
y: number;
|
|
9282
|
+
}
|
|
9283
|
+
export interface SchemaCreatorSizeDto {
|
|
9284
|
+
width: number;
|
|
9285
|
+
height: number;
|
|
9286
|
+
}
|
|
9287
|
+
export interface SchemaCreatorElementValuesDto {
|
|
9288
|
+
reference: number;
|
|
9289
|
+
unit?: UnitOfMeasureDto | null;
|
|
9290
|
+
nominal?: number | null;
|
|
9291
|
+
nominalText?: string | null;
|
|
9292
|
+
plusTolerance?: number | null;
|
|
9293
|
+
minusTolerance?: number | null;
|
|
9294
|
+
coatingThickness?: number | null;
|
|
9295
|
+
measurementFrequency: MeasurementFrequency;
|
|
9296
|
+
measurementFrequencyParameter?: number | null;
|
|
9297
|
+
type?: string | null;
|
|
9298
|
+
count?: number | null;
|
|
9299
|
+
comment?: string | null;
|
|
9300
|
+
canCopy: boolean;
|
|
9301
|
+
visibleToCustomer: boolean;
|
|
9302
|
+
isDocumentedExternally: boolean;
|
|
9303
|
+
}
|
|
9304
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9305
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9306
|
+
export interface SchemaCreatorSnipResultDto {
|
|
9307
|
+
nominal?: number | null;
|
|
9308
|
+
nominalText?: string | null;
|
|
9309
|
+
plusTolerance?: number | null;
|
|
9310
|
+
minusTolerance?: number | null;
|
|
9311
|
+
count?: number | null;
|
|
9312
|
+
}
|
|
9313
|
+
export interface SchemaCreatorParseAttemptDto {
|
|
9314
|
+
startedAt: Date;
|
|
9315
|
+
errorType?: SchemaCreatorParseErrorTypeDto | null;
|
|
9316
|
+
errorMessage?: string | null;
|
|
9317
|
+
}
|
|
9318
|
+
export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
|
|
9319
|
+
export interface SchemaCreatorAuditInfoDto {
|
|
9320
|
+
objectId: string;
|
|
9321
|
+
userId: string;
|
|
9322
|
+
userFullName?: string | null;
|
|
9323
|
+
}
|
|
9324
|
+
export interface SchemaCreatorDocumentParseStatusDto {
|
|
9325
|
+
inProgress: boolean;
|
|
9326
|
+
attempt?: SchemaCreatorParseAttemptDto | null;
|
|
9327
|
+
}
|
|
9328
|
+
export interface RenderSchemaCreatorElementSnipImageRequest {
|
|
9329
|
+
pageIndex: number;
|
|
9330
|
+
snip: SchemaCreatorSnipDto;
|
|
9331
|
+
}
|
|
9083
9332
|
export interface MeasurementFormSchemaDto {
|
|
9084
9333
|
id: string;
|
|
9085
9334
|
versionId: number;
|
|
@@ -9111,9 +9360,7 @@ export interface MeasurementFormSchemaDto {
|
|
|
9111
9360
|
}
|
|
9112
9361
|
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
9113
9362
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
9114
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9115
9363
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
9116
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9117
9364
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
9118
9365
|
url: string;
|
|
9119
9366
|
title: string;
|
|
@@ -9162,7 +9409,6 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9162
9409
|
isValid: boolean;
|
|
9163
9410
|
validationErrorMessage?: string | null;
|
|
9164
9411
|
}
|
|
9165
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9166
9412
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
9167
9413
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
9168
9414
|
export interface MeasurementFormLinkedSchemaDto {
|
|
@@ -9268,10 +9514,6 @@ export interface UpdateSchemaSettingsRequest {
|
|
|
9268
9514
|
dimensionSetting: DimensionSettingDto;
|
|
9269
9515
|
generalTolerance: GeneralToleranceDto;
|
|
9270
9516
|
}
|
|
9271
|
-
export interface UploadDrawingRequest {
|
|
9272
|
-
uploadKey: string;
|
|
9273
|
-
filename: string;
|
|
9274
|
-
}
|
|
9275
9517
|
export interface UploadRequest {
|
|
9276
9518
|
uploadKey: string;
|
|
9277
9519
|
filename: string;
|
|
@@ -9450,6 +9692,10 @@ export interface MeasurementFormSchemaNotNeededDto {
|
|
|
9450
9692
|
export interface SetMeasurementFormNeedAsNotNeededRequest {
|
|
9451
9693
|
comment?: string | null;
|
|
9452
9694
|
}
|
|
9695
|
+
export interface UploadDrawingRequest {
|
|
9696
|
+
uploadKey: string;
|
|
9697
|
+
filename: string;
|
|
9698
|
+
}
|
|
9453
9699
|
export interface PagedResultOfMeasurementFormSchemaNotNeededDto {
|
|
9454
9700
|
results: MeasurementFormSchemaNotNeededDto[];
|
|
9455
9701
|
continuationToken?: string | null;
|
|
@@ -9628,6 +9874,7 @@ export interface ListMeasurementFormsRequest {
|
|
|
9628
9874
|
pageSize?: number | null;
|
|
9629
9875
|
search?: string | null;
|
|
9630
9876
|
continuationToken?: string | null;
|
|
9877
|
+
tenantId?: string | null;
|
|
9631
9878
|
inactive?: boolean | null;
|
|
9632
9879
|
includeInactiveSupplierAccess?: boolean | null;
|
|
9633
9880
|
}
|
|
@@ -9823,6 +10070,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
|
|
|
9823
10070
|
externalOrderNumber?: string | null;
|
|
9824
10071
|
}
|
|
9825
10072
|
export interface ExportDimensionReportV2Request {
|
|
10073
|
+
tenantId?: string | null;
|
|
9826
10074
|
type: DimensionReportType;
|
|
9827
10075
|
extras?: DimensionReportExtras | null;
|
|
9828
10076
|
specificSerialNumbers?: string[] | null;
|
|
@@ -10168,105 +10416,6 @@ export interface SetDiscussionLastReadRequest {
|
|
|
10168
10416
|
operationId?: string | null;
|
|
10169
10417
|
resourceId?: string | null;
|
|
10170
10418
|
}
|
|
10171
|
-
export interface CompanyUserDto {
|
|
10172
|
-
companyId: string;
|
|
10173
|
-
userObjectId: string;
|
|
10174
|
-
username?: string | null;
|
|
10175
|
-
name?: string | null;
|
|
10176
|
-
roles: string[];
|
|
10177
|
-
}
|
|
10178
|
-
export interface CreateCompanyUser {
|
|
10179
|
-
username: string;
|
|
10180
|
-
name: string;
|
|
10181
|
-
roles: string[];
|
|
10182
|
-
companyId?: string | null;
|
|
10183
|
-
}
|
|
10184
|
-
export interface UpdateCompanyUserRequest {
|
|
10185
|
-
roles: string[];
|
|
10186
|
-
companyId?: string | null;
|
|
10187
|
-
}
|
|
10188
|
-
export interface ExternalRoleDto {
|
|
10189
|
-
id: string;
|
|
10190
|
-
name: string;
|
|
10191
|
-
}
|
|
10192
|
-
export interface CompanyCustomerDto {
|
|
10193
|
-
customerTenantId?: string | null;
|
|
10194
|
-
customerAzureAdTenantId?: string | null;
|
|
10195
|
-
customerName?: string | null;
|
|
10196
|
-
supplierId?: string | null;
|
|
10197
|
-
supplierName?: string | null;
|
|
10198
|
-
customerIgnosPortalPrefix?: string | null;
|
|
10199
|
-
}
|
|
10200
|
-
export interface CompanyDto {
|
|
10201
|
-
id: string;
|
|
10202
|
-
name: string;
|
|
10203
|
-
organizationNumber?: string | null;
|
|
10204
|
-
country: string;
|
|
10205
|
-
tenantId?: string | null;
|
|
10206
|
-
}
|
|
10207
|
-
export interface SupplierInviteDto {
|
|
10208
|
-
id: string;
|
|
10209
|
-
supplierId: string;
|
|
10210
|
-
threeLetterIsoCountry: string;
|
|
10211
|
-
organizationNumber: string;
|
|
10212
|
-
supplierName?: string | null;
|
|
10213
|
-
userId: string;
|
|
10214
|
-
userName?: string | null;
|
|
10215
|
-
acceptedTimestamp?: Date | null;
|
|
10216
|
-
createdTime: Date;
|
|
10217
|
-
createdBy: string;
|
|
10218
|
-
}
|
|
10219
|
-
export interface CurrentSupplierInviteDto extends SupplierInviteDto {
|
|
10220
|
-
matchingCustomerOrCompany?: MatchingCustomerOrCompany | null;
|
|
10221
|
-
}
|
|
10222
|
-
export interface MatchingCustomerOrCompany {
|
|
10223
|
-
customer?: IgnosCustomerDto | null;
|
|
10224
|
-
company?: CompanyDto | null;
|
|
10225
|
-
companyCustomers?: CompanyCustomerDto[];
|
|
10226
|
-
}
|
|
10227
|
-
export interface IgnosCustomerDto {
|
|
10228
|
-
id: string;
|
|
10229
|
-
name: string;
|
|
10230
|
-
contactPerson: ContactPersonDto;
|
|
10231
|
-
threeLetterIsoCountry: string;
|
|
10232
|
-
organizationNumber: string;
|
|
10233
|
-
country: string;
|
|
10234
|
-
tenants: AvailableTenantDto[];
|
|
10235
|
-
}
|
|
10236
|
-
export interface ContactPersonDto {
|
|
10237
|
-
name: string;
|
|
10238
|
-
phone: string;
|
|
10239
|
-
email: string;
|
|
10240
|
-
}
|
|
10241
|
-
export interface TenantWithSupplierDto {
|
|
10242
|
-
tenantId: string;
|
|
10243
|
-
customerName: string;
|
|
10244
|
-
supplierTenantEntraId: string;
|
|
10245
|
-
}
|
|
10246
|
-
export interface CreateSupplierInviteRequest {
|
|
10247
|
-
supplierId: string;
|
|
10248
|
-
threeLetterIsoCountry: string;
|
|
10249
|
-
organizationNumber: string;
|
|
10250
|
-
supplierName?: string | null;
|
|
10251
|
-
username: string;
|
|
10252
|
-
invitedName: string;
|
|
10253
|
-
}
|
|
10254
|
-
export interface ExternalSupplierDto {
|
|
10255
|
-
id: string;
|
|
10256
|
-
name: string;
|
|
10257
|
-
companyId: string;
|
|
10258
|
-
active: boolean;
|
|
10259
|
-
}
|
|
10260
|
-
export interface CreateSupplierMapping {
|
|
10261
|
-
companyId: string;
|
|
10262
|
-
existingSupplierId: string;
|
|
10263
|
-
newSupplierId: string;
|
|
10264
|
-
}
|
|
10265
|
-
export interface OrganizationDto {
|
|
10266
|
-
name?: string;
|
|
10267
|
-
postalAddress?: string | null;
|
|
10268
|
-
registeredAddress?: string | null;
|
|
10269
|
-
}
|
|
10270
10419
|
export type FeatureCollectionType = "FeatureCollection";
|
|
10271
10420
|
export interface Features {
|
|
10272
10421
|
type: FeaturesType;
|