@ignos/api-client 20260825.242.1-alpha → 20260826.244.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 +236 -257
- package/lib/ignosportal-api.js +4491 -4576
- package/package.json +1 -1
- package/src/ignosportal-api.ts +6294 -6394
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>;
|
|
@@ -2695,6 +2785,8 @@ export interface IInspectMatchMaterialChecksClient {
|
|
|
2695
2785
|
listMaterialChecks(request: ImaMaterialChecksPageRequestDto): Promise<PagedResultOfImaMaterialCheckLiteDto>;
|
|
2696
2786
|
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
|
|
2697
2787
|
generateReport(request: ImaMaterialChecksReportRequestDto): Promise<ImaMaterialCheckReportDto>;
|
|
2788
|
+
getReportHistory(id: string): Promise<ImaMaterialCheckReportDto[]>;
|
|
2789
|
+
downloadReport(id: string): Promise<FileDto>;
|
|
2698
2790
|
}
|
|
2699
2791
|
export declare class InspectMatchMaterialChecksClient extends AuthorizedApiBase implements IInspectMatchMaterialChecksClient {
|
|
2700
2792
|
private http;
|
|
@@ -2710,6 +2802,10 @@ export declare class InspectMatchMaterialChecksClient extends AuthorizedApiBase
|
|
|
2710
2802
|
protected processProcessMaterialCertificate(response: Response): Promise<void>;
|
|
2711
2803
|
generateReport(request: ImaMaterialChecksReportRequestDto): Promise<ImaMaterialCheckReportDto>;
|
|
2712
2804
|
protected processGenerateReport(response: Response): Promise<ImaMaterialCheckReportDto>;
|
|
2805
|
+
getReportHistory(id: string): Promise<ImaMaterialCheckReportDto[]>;
|
|
2806
|
+
protected processGetReportHistory(response: Response): Promise<ImaMaterialCheckReportDto[]>;
|
|
2807
|
+
downloadReport(id: string): Promise<FileDto>;
|
|
2808
|
+
protected processDownloadReport(response: Response): Promise<FileDto>;
|
|
2713
2809
|
}
|
|
2714
2810
|
export interface IInspectMatchPurchaseOrderClient {
|
|
2715
2811
|
searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto>;
|
|
@@ -3036,22 +3132,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
|
|
|
3036
3132
|
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
3037
3133
|
}
|
|
3038
3134
|
export interface IMeasurementFormsInstancesClient {
|
|
3039
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3135
|
+
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>;
|
|
3040
3136
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3041
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3137
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
3042
3138
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3043
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3044
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3045
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3046
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
3047
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3139
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
3140
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3141
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3142
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
3143
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3048
3144
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
3049
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3050
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3051
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
3052
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3053
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3054
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3145
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3146
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3147
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
3148
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3149
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3150
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3055
3151
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
3056
3152
|
upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
|
|
3057
3153
|
removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
|
|
@@ -3067,37 +3163,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
3067
3163
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3068
3164
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3069
3165
|
});
|
|
3070
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3166
|
+
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>;
|
|
3071
3167
|
protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3072
3168
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3073
3169
|
protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3074
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3170
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
3075
3171
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3076
3172
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3077
3173
|
protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3078
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3174
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
3079
3175
|
protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3080
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3176
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3081
3177
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3082
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3178
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3083
3179
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3084
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
3180
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
3085
3181
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
3086
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3182
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3087
3183
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3088
3184
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
3089
3185
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
3090
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3186
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3091
3187
|
protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
|
|
3092
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3188
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3093
3189
|
protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
|
|
3094
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
3190
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
3095
3191
|
protected processSaveComment(response: Response): Promise<void>;
|
|
3096
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3192
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3097
3193
|
protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
|
|
3098
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3194
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3099
3195
|
protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
|
|
3100
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3196
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3101
3197
|
protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
|
|
3102
3198
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
3103
3199
|
protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
@@ -3122,7 +3218,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
3122
3218
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
3123
3219
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3124
3220
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3125
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3221
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
3126
3222
|
}
|
|
3127
3223
|
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
3128
3224
|
private http;
|
|
@@ -3146,7 +3242,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
|
|
|
3146
3242
|
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3147
3243
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3148
3244
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3149
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3245
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
3150
3246
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
3151
3247
|
}
|
|
3152
3248
|
export interface ICompaniesClient {
|
|
@@ -3486,111 +3582,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3486
3582
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3487
3583
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3488
3584
|
}
|
|
3489
|
-
export interface IExternalAccessClient {
|
|
3490
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3491
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3492
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3493
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3494
|
-
migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
|
|
3495
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3496
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3497
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3498
|
-
}
|
|
3499
|
-
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3500
|
-
private http;
|
|
3501
|
-
private baseUrl;
|
|
3502
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3503
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3504
|
-
});
|
|
3505
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3506
|
-
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
3507
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3508
|
-
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3509
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3510
|
-
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3511
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3512
|
-
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
3513
|
-
migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
|
|
3514
|
-
protected processMigrateLegacyCompanyUsersToEntra(response: Response): Promise<CompanyUserDto[]>;
|
|
3515
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3516
|
-
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
3517
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3518
|
-
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
3519
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3520
|
-
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
3521
|
-
}
|
|
3522
|
-
export interface IExternalClient {
|
|
3523
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3524
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3525
|
-
getCurrentSupplierInvite(): Promise<CurrentSupplierInviteDto>;
|
|
3526
|
-
acceptSupplierInvite(acceptingTenantId: string | null | undefined): Promise<SupplierInviteDto>;
|
|
3527
|
-
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3528
|
-
}
|
|
3529
|
-
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3530
|
-
private http;
|
|
3531
|
-
private baseUrl;
|
|
3532
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3533
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3534
|
-
});
|
|
3535
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3536
|
-
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3537
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3538
|
-
protected processGetCompany(response: Response): Promise<CompanyDto>;
|
|
3539
|
-
getCurrentSupplierInvite(): Promise<CurrentSupplierInviteDto>;
|
|
3540
|
-
protected processGetCurrentSupplierInvite(response: Response): Promise<CurrentSupplierInviteDto>;
|
|
3541
|
-
acceptSupplierInvite(acceptingTenantId: string | null | undefined): Promise<SupplierInviteDto>;
|
|
3542
|
-
protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3543
|
-
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3544
|
-
protected processListTenantsWithSuppliers(response: Response): Promise<TenantWithSupplierDto[]>;
|
|
3545
|
-
}
|
|
3546
|
-
export interface ISuppliersClient {
|
|
3547
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3548
|
-
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3549
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3550
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3551
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3552
|
-
/**
|
|
3553
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3554
|
-
*/
|
|
3555
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3556
|
-
/**
|
|
3557
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3558
|
-
*/
|
|
3559
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3560
|
-
lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
|
|
3561
|
-
getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
|
|
3562
|
-
}
|
|
3563
|
-
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3564
|
-
private http;
|
|
3565
|
-
private baseUrl;
|
|
3566
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
3567
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3568
|
-
});
|
|
3569
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3570
|
-
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3571
|
-
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3572
|
-
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3573
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3574
|
-
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
3575
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3576
|
-
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3577
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3578
|
-
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3579
|
-
/**
|
|
3580
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3581
|
-
*/
|
|
3582
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3583
|
-
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3584
|
-
/**
|
|
3585
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3586
|
-
*/
|
|
3587
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3588
|
-
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3589
|
-
lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
|
|
3590
|
-
protected processLookupOrganization(response: Response): Promise<OrganizationDto>;
|
|
3591
|
-
getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
|
|
3592
|
-
protected processGetOrganizationLookupSupportedCountries(response: Response): Promise<CountryDto[]>;
|
|
3593
|
-
}
|
|
3594
3585
|
export interface AzureRegionDto {
|
|
3595
3586
|
displayName: string;
|
|
3596
3587
|
name: string;
|
|
@@ -3902,9 +3893,6 @@ export interface UserDetailsDto {
|
|
|
3902
3893
|
isExternalUser?: boolean;
|
|
3903
3894
|
isBetaTester?: boolean | null;
|
|
3904
3895
|
hasAccessToIgnos?: boolean;
|
|
3905
|
-
isInvitedUser?: boolean;
|
|
3906
|
-
isSupplier?: boolean;
|
|
3907
|
-
companyId?: string | null;
|
|
3908
3896
|
}
|
|
3909
3897
|
export interface UserDto {
|
|
3910
3898
|
id?: string | null;
|
|
@@ -5077,6 +5065,7 @@ export interface MrbCompanySettingsDto {
|
|
|
5077
5065
|
allowMaterialReplacementOnConsumptions: boolean;
|
|
5078
5066
|
nonSplittableTraceUnits: string[];
|
|
5079
5067
|
disableTraceEditing: boolean;
|
|
5068
|
+
skipTraceQuantityValidation: boolean;
|
|
5080
5069
|
}
|
|
5081
5070
|
export interface UpsertMrbCompanySettings {
|
|
5082
5071
|
stampWithLot: boolean;
|
|
@@ -5095,6 +5084,7 @@ export interface UpsertMrbCompanySettings {
|
|
|
5095
5084
|
allowMaterialReplacementOnConsumptions: boolean;
|
|
5096
5085
|
nonSplittableTraceUnits: string[];
|
|
5097
5086
|
disableTraceEditing: boolean;
|
|
5087
|
+
skipTraceQuantityValidation: boolean;
|
|
5098
5088
|
}
|
|
5099
5089
|
export interface TraceDto {
|
|
5100
5090
|
id: string;
|
|
@@ -5929,6 +5919,97 @@ export interface DocumentGeneratorTypeDto {
|
|
|
5929
5919
|
key: string;
|
|
5930
5920
|
description: string;
|
|
5931
5921
|
}
|
|
5922
|
+
export interface CompanyUserDto {
|
|
5923
|
+
companyId?: string | null;
|
|
5924
|
+
username?: string | null;
|
|
5925
|
+
name?: string | null;
|
|
5926
|
+
roles?: string[] | null;
|
|
5927
|
+
}
|
|
5928
|
+
export interface CreateCompanyUserRequest {
|
|
5929
|
+
username: string;
|
|
5930
|
+
name: string;
|
|
5931
|
+
roles: string[];
|
|
5932
|
+
companyId?: string | null;
|
|
5933
|
+
}
|
|
5934
|
+
export interface UpdateCompanyUserRequest {
|
|
5935
|
+
name: string;
|
|
5936
|
+
roles: string[];
|
|
5937
|
+
companyId?: string | null;
|
|
5938
|
+
}
|
|
5939
|
+
export interface ExternalRoleDto {
|
|
5940
|
+
id: string;
|
|
5941
|
+
name: string;
|
|
5942
|
+
}
|
|
5943
|
+
export interface CompanyCustomerDto {
|
|
5944
|
+
customerTenantId?: string | null;
|
|
5945
|
+
customerAzureAdTenantId?: string | null;
|
|
5946
|
+
customerName?: string | null;
|
|
5947
|
+
supplierId?: string | null;
|
|
5948
|
+
supplierName?: string | null;
|
|
5949
|
+
}
|
|
5950
|
+
export interface InviteDto {
|
|
5951
|
+
tenantId: string;
|
|
5952
|
+
companyName: string;
|
|
5953
|
+
id: string;
|
|
5954
|
+
supplierId: string;
|
|
5955
|
+
supplierName: string;
|
|
5956
|
+
username: string;
|
|
5957
|
+
deadline: Date;
|
|
5958
|
+
createdTime: Date;
|
|
5959
|
+
createdBy: string;
|
|
5960
|
+
}
|
|
5961
|
+
export interface CompanyDto {
|
|
5962
|
+
id?: string | null;
|
|
5963
|
+
name?: string | null;
|
|
5964
|
+
organizationNumber?: string | null;
|
|
5965
|
+
country?: string | null;
|
|
5966
|
+
tenantId?: string | null;
|
|
5967
|
+
}
|
|
5968
|
+
export interface AcceptSupplierInviteRequest {
|
|
5969
|
+
tenantId: string;
|
|
5970
|
+
existingCompanyId?: string | null;
|
|
5971
|
+
companyName?: string | null;
|
|
5972
|
+
organizationNumber?: string | null;
|
|
5973
|
+
threeLetterIsoCountry?: string | null;
|
|
5974
|
+
}
|
|
5975
|
+
export interface SupplierInviteDto {
|
|
5976
|
+
id: string;
|
|
5977
|
+
supplierId: string;
|
|
5978
|
+
name: string;
|
|
5979
|
+
username: string;
|
|
5980
|
+
deadline: Date;
|
|
5981
|
+
createdTime: Date;
|
|
5982
|
+
createdBy: string;
|
|
5983
|
+
}
|
|
5984
|
+
export interface CreateSupplierInvite {
|
|
5985
|
+
supplierId: string;
|
|
5986
|
+
name: string;
|
|
5987
|
+
username: string;
|
|
5988
|
+
deadline: Date;
|
|
5989
|
+
}
|
|
5990
|
+
export interface ExternalSupplierDto {
|
|
5991
|
+
id: string;
|
|
5992
|
+
name: string;
|
|
5993
|
+
companyId: string;
|
|
5994
|
+
active: boolean;
|
|
5995
|
+
}
|
|
5996
|
+
export interface ImportSupplier {
|
|
5997
|
+
supplierId: string;
|
|
5998
|
+
name: string;
|
|
5999
|
+
organizationNumber?: string | null;
|
|
6000
|
+
threeLetterIsoCountry: string;
|
|
6001
|
+
users: ImportSupplierUserDto[];
|
|
6002
|
+
}
|
|
6003
|
+
export interface ImportSupplierUserDto {
|
|
6004
|
+
username: string;
|
|
6005
|
+
name: string;
|
|
6006
|
+
roles: string[];
|
|
6007
|
+
}
|
|
6008
|
+
export interface CreateSupplierMapping {
|
|
6009
|
+
companyId: string;
|
|
6010
|
+
existingSupplierId: string;
|
|
6011
|
+
newSupplierId: string;
|
|
6012
|
+
}
|
|
5932
6013
|
export interface CncMachineTransferDto {
|
|
5933
6014
|
id: string;
|
|
5934
6015
|
cncMachineOperationId?: string | null;
|
|
@@ -8224,7 +8305,6 @@ export interface ImaMaterialCheckDto {
|
|
|
8224
8305
|
materialCheckId: string;
|
|
8225
8306
|
fileName: string;
|
|
8226
8307
|
originalMaterialCertificate: FileDto;
|
|
8227
|
-
generatedMaterialCertificate?: FileDto | null;
|
|
8228
8308
|
customerOrder?: string | null;
|
|
8229
8309
|
project?: string | null;
|
|
8230
8310
|
workOrder?: string | null;
|
|
@@ -8256,10 +8336,6 @@ export interface ImaMaterialCheckDto {
|
|
|
8256
8336
|
updatedById: string;
|
|
8257
8337
|
updatedByName?: string | null;
|
|
8258
8338
|
isDeleted: boolean;
|
|
8259
|
-
reportCreatedBy?: string | null;
|
|
8260
|
-
reportCreatedById?: string | null;
|
|
8261
|
-
reportCreatedByName?: string | null;
|
|
8262
|
-
reportCreated?: Date | null;
|
|
8263
8339
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
8264
8340
|
specificationResults: ImaSpecificationResultsDto;
|
|
8265
8341
|
}
|
|
@@ -8530,6 +8606,7 @@ export interface ImaDocumentTypesResultsDto {
|
|
|
8530
8606
|
microExaminationReport?: ImaSupplementaryCheckResultDto | null;
|
|
8531
8607
|
}
|
|
8532
8608
|
export interface ImaSupplementaryCheckResultDto {
|
|
8609
|
+
heatNumbers?: string[];
|
|
8533
8610
|
status?: string | null;
|
|
8534
8611
|
documentId?: string | null;
|
|
8535
8612
|
acceptable?: boolean | null;
|
|
@@ -8741,7 +8818,6 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8741
8818
|
materialCheckId: string;
|
|
8742
8819
|
fileName: string;
|
|
8743
8820
|
originalMaterialCertificate: FileDto;
|
|
8744
|
-
generatedMaterialCertificate?: FileDto | null;
|
|
8745
8821
|
customerOrder?: string | null;
|
|
8746
8822
|
project?: string | null;
|
|
8747
8823
|
workOrder?: string | null;
|
|
@@ -8765,6 +8841,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8765
8841
|
purchaseOrderDrawingRevision?: string | null;
|
|
8766
8842
|
heatNumbers?: string[] | null;
|
|
8767
8843
|
status: ImaMaterialCheckStatusDto;
|
|
8844
|
+
hasGeneratedReports?: boolean;
|
|
8768
8845
|
created: Date;
|
|
8769
8846
|
createdBy: string;
|
|
8770
8847
|
createdById: string;
|
|
@@ -8773,10 +8850,6 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8773
8850
|
updatedById: string;
|
|
8774
8851
|
updatedByName?: string | null;
|
|
8775
8852
|
isDeleted?: boolean;
|
|
8776
|
-
reportCreatedBy?: string | null;
|
|
8777
|
-
reportCreatedById?: string | null;
|
|
8778
|
-
reportCreatedByName?: string | null;
|
|
8779
|
-
reportCreated?: Date | null;
|
|
8780
8853
|
}
|
|
8781
8854
|
export interface ImaMaterialChecksPageRequestDto {
|
|
8782
8855
|
pageSize?: number | null;
|
|
@@ -8804,7 +8877,7 @@ export interface ImaMaterialChecksPageOrderRequestDto {
|
|
|
8804
8877
|
column?: ImaMaterialChecksOrderByColumnDto;
|
|
8805
8878
|
direction?: ImaOrderDirectionDto;
|
|
8806
8879
|
}
|
|
8807
|
-
export type ImaMaterialChecksOrderByColumnDto = "FileName" | "PurchaseOrder" | "Line" | "VendorBatch" | "Part" | "Drawing" | "Heat" | "CertificateType" | "Specification" | "
|
|
8880
|
+
export type ImaMaterialChecksOrderByColumnDto = "FileName" | "PurchaseOrder" | "Line" | "VendorBatch" | "Part" | "Drawing" | "Heat" | "CertificateType" | "Specification" | "Project" | "CustomerOrder" | "WorkOrder" | "Date" | "Status";
|
|
8808
8881
|
export type ImaOrderDirectionDto = "Asc" | "Desc";
|
|
8809
8882
|
export interface ProcessMaterialCertificate {
|
|
8810
8883
|
files: UploadFileCdfDto[];
|
|
@@ -8820,6 +8893,9 @@ export interface UploadFileCdfDto {
|
|
|
8820
8893
|
}
|
|
8821
8894
|
export interface ImaMaterialCheckReportDto {
|
|
8822
8895
|
file: FileDto;
|
|
8896
|
+
heatNumbers: string[];
|
|
8897
|
+
includesAllHeats: boolean;
|
|
8898
|
+
status: ImaMaterialCheckStatusDto;
|
|
8823
8899
|
audit: ImaMaterialCheckReportAuditInfo;
|
|
8824
8900
|
}
|
|
8825
8901
|
export interface ImaMaterialCheckReportAuditInfo {
|
|
@@ -8829,8 +8905,14 @@ export interface ImaMaterialCheckReportAuditInfo {
|
|
|
8829
8905
|
created: Date;
|
|
8830
8906
|
}
|
|
8831
8907
|
export interface ImaMaterialChecksReportRequestDto {
|
|
8832
|
-
|
|
8833
|
-
|
|
8908
|
+
materialCheckId?: string;
|
|
8909
|
+
selectedHeatNumbers?: string[] | null;
|
|
8910
|
+
}
|
|
8911
|
+
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
8912
|
+
purchaseOrders: string[];
|
|
8913
|
+
}
|
|
8914
|
+
export interface PurchaseOrderMaterialLinesDto {
|
|
8915
|
+
lines: number[];
|
|
8834
8916
|
}
|
|
8835
8917
|
export interface PurchaseOrderMaterialLineDetailsDto {
|
|
8836
8918
|
companyId: string;
|
|
@@ -8864,12 +8946,6 @@ export interface User {
|
|
|
8864
8946
|
upn?: string | null;
|
|
8865
8947
|
email?: string | null;
|
|
8866
8948
|
}
|
|
8867
|
-
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
8868
|
-
purchaseOrders: string[];
|
|
8869
|
-
}
|
|
8870
|
-
export interface PurchaseOrderMaterialLinesDto {
|
|
8871
|
-
lines: number[];
|
|
8872
|
-
}
|
|
8873
8949
|
export interface ImaMatchSettingsDto {
|
|
8874
8950
|
columns: ImaMatchSettingsColumnsDto;
|
|
8875
8951
|
}
|
|
@@ -9629,6 +9705,7 @@ export interface ListMeasurementFormsRequest {
|
|
|
9629
9705
|
pageSize?: number | null;
|
|
9630
9706
|
search?: string | null;
|
|
9631
9707
|
continuationToken?: string | null;
|
|
9708
|
+
tenantId?: string | null;
|
|
9632
9709
|
inactive?: boolean | null;
|
|
9633
9710
|
includeInactiveSupplierAccess?: boolean | null;
|
|
9634
9711
|
}
|
|
@@ -9824,6 +9901,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
|
|
|
9824
9901
|
externalOrderNumber?: string | null;
|
|
9825
9902
|
}
|
|
9826
9903
|
export interface ExportDimensionReportV2Request {
|
|
9904
|
+
tenantId?: string | null;
|
|
9827
9905
|
type: DimensionReportType;
|
|
9828
9906
|
extras?: DimensionReportExtras | null;
|
|
9829
9907
|
specificSerialNumbers?: string[] | null;
|
|
@@ -10169,105 +10247,6 @@ export interface SetDiscussionLastReadRequest {
|
|
|
10169
10247
|
operationId?: string | null;
|
|
10170
10248
|
resourceId?: string | null;
|
|
10171
10249
|
}
|
|
10172
|
-
export interface CompanyUserDto {
|
|
10173
|
-
companyId: string;
|
|
10174
|
-
userObjectId: string;
|
|
10175
|
-
username?: string | null;
|
|
10176
|
-
name?: string | null;
|
|
10177
|
-
roles: string[];
|
|
10178
|
-
}
|
|
10179
|
-
export interface CreateCompanyUser {
|
|
10180
|
-
username: string;
|
|
10181
|
-
name: string;
|
|
10182
|
-
roles: string[];
|
|
10183
|
-
companyId?: string | null;
|
|
10184
|
-
}
|
|
10185
|
-
export interface UpdateCompanyUserRequest {
|
|
10186
|
-
roles: string[];
|
|
10187
|
-
companyId?: string | null;
|
|
10188
|
-
}
|
|
10189
|
-
export interface ExternalRoleDto {
|
|
10190
|
-
id: string;
|
|
10191
|
-
name: string;
|
|
10192
|
-
}
|
|
10193
|
-
export interface CompanyCustomerDto {
|
|
10194
|
-
customerTenantId?: string | null;
|
|
10195
|
-
customerAzureAdTenantId?: string | null;
|
|
10196
|
-
customerName?: string | null;
|
|
10197
|
-
supplierId?: string | null;
|
|
10198
|
-
supplierName?: string | null;
|
|
10199
|
-
customerIgnosPortalPrefix?: string | null;
|
|
10200
|
-
}
|
|
10201
|
-
export interface CompanyDto {
|
|
10202
|
-
id: string;
|
|
10203
|
-
name: string;
|
|
10204
|
-
organizationNumber?: string | null;
|
|
10205
|
-
country: string;
|
|
10206
|
-
tenantId?: string | null;
|
|
10207
|
-
}
|
|
10208
|
-
export interface SupplierInviteDto {
|
|
10209
|
-
id: string;
|
|
10210
|
-
supplierId: string;
|
|
10211
|
-
threeLetterIsoCountry: string;
|
|
10212
|
-
organizationNumber: string;
|
|
10213
|
-
supplierName?: string | null;
|
|
10214
|
-
userId: string;
|
|
10215
|
-
userName?: string | null;
|
|
10216
|
-
acceptedTimestamp?: Date | null;
|
|
10217
|
-
createdTime: Date;
|
|
10218
|
-
createdBy: string;
|
|
10219
|
-
}
|
|
10220
|
-
export interface CurrentSupplierInviteDto extends SupplierInviteDto {
|
|
10221
|
-
matchingCustomerOrCompany?: MatchingCustomerOrCompany | null;
|
|
10222
|
-
}
|
|
10223
|
-
export interface MatchingCustomerOrCompany {
|
|
10224
|
-
customer?: IgnosCustomerDto | null;
|
|
10225
|
-
company?: CompanyDto | null;
|
|
10226
|
-
companyCustomers?: CompanyCustomerDto[];
|
|
10227
|
-
}
|
|
10228
|
-
export interface IgnosCustomerDto {
|
|
10229
|
-
id: string;
|
|
10230
|
-
name: string;
|
|
10231
|
-
contactPerson: ContactPersonDto;
|
|
10232
|
-
threeLetterIsoCountry: string;
|
|
10233
|
-
organizationNumber: string;
|
|
10234
|
-
country: string;
|
|
10235
|
-
tenants: AvailableTenantDto[];
|
|
10236
|
-
}
|
|
10237
|
-
export interface ContactPersonDto {
|
|
10238
|
-
name: string;
|
|
10239
|
-
phone: string;
|
|
10240
|
-
email: string;
|
|
10241
|
-
}
|
|
10242
|
-
export interface TenantWithSupplierDto {
|
|
10243
|
-
tenantId: string;
|
|
10244
|
-
customerName: string;
|
|
10245
|
-
supplierTenantEntraId: string;
|
|
10246
|
-
}
|
|
10247
|
-
export interface CreateSupplierInviteRequest {
|
|
10248
|
-
supplierId: string;
|
|
10249
|
-
threeLetterIsoCountry: string;
|
|
10250
|
-
organizationNumber: string;
|
|
10251
|
-
supplierName?: string | null;
|
|
10252
|
-
username: string;
|
|
10253
|
-
invitedName: string;
|
|
10254
|
-
}
|
|
10255
|
-
export interface ExternalSupplierDto {
|
|
10256
|
-
id: string;
|
|
10257
|
-
name: string;
|
|
10258
|
-
companyId: string;
|
|
10259
|
-
active: boolean;
|
|
10260
|
-
}
|
|
10261
|
-
export interface CreateSupplierMapping {
|
|
10262
|
-
companyId: string;
|
|
10263
|
-
existingSupplierId: string;
|
|
10264
|
-
newSupplierId: string;
|
|
10265
|
-
}
|
|
10266
|
-
export interface OrganizationDto {
|
|
10267
|
-
name?: string;
|
|
10268
|
-
postalAddress?: string | null;
|
|
10269
|
-
registeredAddress?: string | null;
|
|
10270
|
-
}
|
|
10271
10250
|
export type FeatureCollectionType = "FeatureCollection";
|
|
10272
10251
|
export interface Features {
|
|
10273
10252
|
type: FeaturesType;
|