@ignos/api-client 20260528.139.1-alpha → 20260529.141.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 +305 -279
- package/lib/ignosportal-api.js +4145 -4261
- package/package.json +1 -1
- package/src/ignosportal-api.ts +6025 -6107
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>;
|
|
@@ -601,16 +598,6 @@ export interface IKpiAdminResourceClient {
|
|
|
601
598
|
updateCalendarCapacityAdmin(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
602
599
|
getCalendarSettings(): Promise<CalendarSettingsDto>;
|
|
603
600
|
updateCalendarSettings(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
604
|
-
listShiftPlans(): Promise<ShiftPlansDto>;
|
|
605
|
-
createShiftPlan(request: CreateShiftPlan): Promise<ShiftPlanDto>;
|
|
606
|
-
updateShiftPlan(id: string, request: UpdateShiftPlanRequest): Promise<ShiftPlanDto>;
|
|
607
|
-
deleteShiftPlan(id: string): Promise<void>;
|
|
608
|
-
listShiftSettingPeriods(): Promise<ShiftSettingsDto>;
|
|
609
|
-
addShiftSettingPeriods(request: AddShiftSettingPeriods): Promise<ShiftSettingsPeriodDto[]>;
|
|
610
|
-
deleteShiftSettingPeriods(request: DeleteShiftSettingsPeriod): Promise<FileResponse>;
|
|
611
|
-
updateShiftSettingsPeriod(resourceExternalId: string, effectiveFrom: string, request: UpdateShiftSettingsPeriodRequest): Promise<ShiftSettingsPeriodDto>;
|
|
612
|
-
copyShiftSettingsPeriod(sourceResourceExternalId: string, sourceEffectiveFrom: string, request: CopyShiftSettingsPeriodRequest): Promise<ShiftSettingsPeriodDto>;
|
|
613
|
-
migrateCapacityToSettings(): Promise<MigrationResultDto>;
|
|
614
601
|
}
|
|
615
602
|
export declare class KpiAdminResourceClient extends AuthorizedApiBase implements IKpiAdminResourceClient {
|
|
616
603
|
private http;
|
|
@@ -630,26 +617,45 @@ export declare class KpiAdminResourceClient extends AuthorizedApiBase implements
|
|
|
630
617
|
protected processGetCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
|
|
631
618
|
updateCalendarSettings(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
632
619
|
protected processUpdateCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
620
|
+
}
|
|
621
|
+
export interface IKpiCalendarClient {
|
|
622
|
+
listCalendarDefinitions(): Promise<CalendarDefinitionsDto>;
|
|
623
|
+
createCalendarDefinition(request: CreateCalendarDefinition): Promise<CalendarDefinitionDto>;
|
|
624
|
+
updateCalendarDefinition(id: string, request: UpdateCalendarDefinitionRequest): Promise<CalendarDefinitionDto>;
|
|
625
|
+
deleteCalendarDefinition(id: string): Promise<void>;
|
|
626
|
+
listResourceCalendarPeriods(): Promise<ResourceCalendarPeriodSchedulesDto>;
|
|
627
|
+
addResourceCalendarPeriods(request: AddResourceCalendarPeriod): Promise<ResourceCalendarPeriodDto[]>;
|
|
628
|
+
deleteResourceCalendarPeriods(request: DeleteResourceCalendarPeriod): Promise<FileResponse>;
|
|
629
|
+
updateResourceCalendarPeriod(resourceExternalId: string, effectiveFrom: string, request: UpdateResourceCalendarPeriodRequest): Promise<ResourceCalendarPeriodDto>;
|
|
630
|
+
copyResourceCalendarPeriod(sourceResourceExternalId: string, sourceEffectiveFrom: string, request: CopyResourceCalendarPeriodRequest): Promise<ResourceCalendarPeriodDto>;
|
|
631
|
+
migrateCapacityToSchedules(): Promise<MigrationResultDto>;
|
|
632
|
+
}
|
|
633
|
+
export declare class KpiCalendarClient extends AuthorizedApiBase implements IKpiCalendarClient {
|
|
634
|
+
private http;
|
|
635
|
+
private baseUrl;
|
|
636
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
637
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
638
|
+
});
|
|
639
|
+
listCalendarDefinitions(): Promise<CalendarDefinitionsDto>;
|
|
640
|
+
protected processListCalendarDefinitions(response: Response): Promise<CalendarDefinitionsDto>;
|
|
641
|
+
createCalendarDefinition(request: CreateCalendarDefinition): Promise<CalendarDefinitionDto>;
|
|
642
|
+
protected processCreateCalendarDefinition(response: Response): Promise<CalendarDefinitionDto>;
|
|
643
|
+
updateCalendarDefinition(id: string, request: UpdateCalendarDefinitionRequest): Promise<CalendarDefinitionDto>;
|
|
644
|
+
protected processUpdateCalendarDefinition(response: Response): Promise<CalendarDefinitionDto>;
|
|
645
|
+
deleteCalendarDefinition(id: string): Promise<void>;
|
|
646
|
+
protected processDeleteCalendarDefinition(response: Response): Promise<void>;
|
|
647
|
+
listResourceCalendarPeriods(): Promise<ResourceCalendarPeriodSchedulesDto>;
|
|
648
|
+
protected processListResourceCalendarPeriods(response: Response): Promise<ResourceCalendarPeriodSchedulesDto>;
|
|
649
|
+
addResourceCalendarPeriods(request: AddResourceCalendarPeriod): Promise<ResourceCalendarPeriodDto[]>;
|
|
650
|
+
protected processAddResourceCalendarPeriods(response: Response): Promise<ResourceCalendarPeriodDto[]>;
|
|
651
|
+
deleteResourceCalendarPeriods(request: DeleteResourceCalendarPeriod): Promise<FileResponse>;
|
|
652
|
+
protected processDeleteResourceCalendarPeriods(response: Response): Promise<FileResponse>;
|
|
653
|
+
updateResourceCalendarPeriod(resourceExternalId: string, effectiveFrom: string, request: UpdateResourceCalendarPeriodRequest): Promise<ResourceCalendarPeriodDto>;
|
|
654
|
+
protected processUpdateResourceCalendarPeriod(response: Response): Promise<ResourceCalendarPeriodDto>;
|
|
655
|
+
copyResourceCalendarPeriod(sourceResourceExternalId: string, sourceEffectiveFrom: string, request: CopyResourceCalendarPeriodRequest): Promise<ResourceCalendarPeriodDto>;
|
|
656
|
+
protected processCopyResourceCalendarPeriod(response: Response): Promise<ResourceCalendarPeriodDto>;
|
|
657
|
+
migrateCapacityToSchedules(): Promise<MigrationResultDto>;
|
|
658
|
+
protected processMigrateCapacityToSchedules(response: Response): Promise<MigrationResultDto>;
|
|
653
659
|
}
|
|
654
660
|
export interface IKpiResourceClient {
|
|
655
661
|
getResourceKpi(resourceExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<ResourceKpiDto>;
|
|
@@ -1499,6 +1505,99 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
|
|
|
1499
1505
|
listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
|
|
1500
1506
|
protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
|
|
1501
1507
|
}
|
|
1508
|
+
export interface IExternalAccessClient {
|
|
1509
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1510
|
+
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1511
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1512
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1513
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1514
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1515
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1516
|
+
}
|
|
1517
|
+
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
1518
|
+
private http;
|
|
1519
|
+
private baseUrl;
|
|
1520
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1521
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1522
|
+
});
|
|
1523
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1524
|
+
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
1525
|
+
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1526
|
+
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1527
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1528
|
+
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1529
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1530
|
+
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
1531
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1532
|
+
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
1533
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1534
|
+
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
1535
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1536
|
+
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
1537
|
+
}
|
|
1538
|
+
export interface IExternalClient {
|
|
1539
|
+
listInvites(): Promise<InviteDto[]>;
|
|
1540
|
+
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1541
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
1542
|
+
}
|
|
1543
|
+
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
1544
|
+
private http;
|
|
1545
|
+
private baseUrl;
|
|
1546
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1547
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1548
|
+
});
|
|
1549
|
+
listInvites(): Promise<InviteDto[]>;
|
|
1550
|
+
protected processListInvites(response: Response): Promise<InviteDto[]>;
|
|
1551
|
+
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1552
|
+
protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
|
|
1553
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
1554
|
+
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
1555
|
+
}
|
|
1556
|
+
export interface ISuppliersClient {
|
|
1557
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1558
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1559
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
1560
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1561
|
+
deleteSupplier(id: string): Promise<void>;
|
|
1562
|
+
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1563
|
+
/**
|
|
1564
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
1565
|
+
*/
|
|
1566
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1567
|
+
/**
|
|
1568
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1569
|
+
*/
|
|
1570
|
+
deleteSupplierMappings(): Promise<void>;
|
|
1571
|
+
}
|
|
1572
|
+
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
1573
|
+
private http;
|
|
1574
|
+
private baseUrl;
|
|
1575
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1576
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1577
|
+
});
|
|
1578
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1579
|
+
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
1580
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1581
|
+
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
1582
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
1583
|
+
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
1584
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1585
|
+
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
1586
|
+
deleteSupplier(id: string): Promise<void>;
|
|
1587
|
+
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
1588
|
+
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1589
|
+
protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
|
|
1590
|
+
/**
|
|
1591
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
1592
|
+
*/
|
|
1593
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1594
|
+
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
1595
|
+
/**
|
|
1596
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1597
|
+
*/
|
|
1598
|
+
deleteSupplierMappings(): Promise<void>;
|
|
1599
|
+
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
1600
|
+
}
|
|
1502
1601
|
export interface ICncFileTransferClient {
|
|
1503
1602
|
startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
|
|
1504
1603
|
startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
|
|
@@ -2561,6 +2660,7 @@ export interface IInspectMatchMaterialChecksClient {
|
|
|
2561
2660
|
getMaterialCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2562
2661
|
listMaterialChecks(request: ImaMaterialChecksPageRequestDto): Promise<PagedResultOfImaMaterialCheckLiteDto>;
|
|
2563
2662
|
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
|
|
2663
|
+
generateReport(request: ImaMaterialChecksReportRequestDto): Promise<ImaMaterialCheckReportDto>;
|
|
2564
2664
|
}
|
|
2565
2665
|
export declare class InspectMatchMaterialChecksClient extends AuthorizedApiBase implements IInspectMatchMaterialChecksClient {
|
|
2566
2666
|
private http;
|
|
@@ -2574,6 +2674,8 @@ export declare class InspectMatchMaterialChecksClient extends AuthorizedApiBase
|
|
|
2574
2674
|
protected processListMaterialChecks(response: Response): Promise<PagedResultOfImaMaterialCheckLiteDto>;
|
|
2575
2675
|
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
|
|
2576
2676
|
protected processProcessMaterialCertificate(response: Response): Promise<void>;
|
|
2677
|
+
generateReport(request: ImaMaterialChecksReportRequestDto): Promise<ImaMaterialCheckReportDto>;
|
|
2678
|
+
protected processGenerateReport(response: Response): Promise<ImaMaterialCheckReportDto>;
|
|
2577
2679
|
}
|
|
2578
2680
|
export interface IInspectMatchPurchaseOrderClient {
|
|
2579
2681
|
searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto>;
|
|
@@ -2885,22 +2987,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
|
|
|
2885
2987
|
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
2886
2988
|
}
|
|
2887
2989
|
export interface IMeasurementFormsInstancesClient {
|
|
2888
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2990
|
+
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>;
|
|
2889
2991
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2890
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2992
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2891
2993
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2892
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2893
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2894
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2895
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
2896
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2994
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2995
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2996
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2997
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2998
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2897
2999
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2898
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2899
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2900
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
2901
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2902
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2903
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3000
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3001
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3002
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
3003
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3004
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3005
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2904
3006
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
2905
3007
|
upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
|
|
2906
3008
|
removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
|
|
@@ -2916,37 +3018,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2916
3018
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2917
3019
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2918
3020
|
});
|
|
2919
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3021
|
+
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>;
|
|
2920
3022
|
protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2921
3023
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2922
3024
|
protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2923
|
-
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3025
|
+
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2924
3026
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2925
3027
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2926
3028
|
protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2927
|
-
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3029
|
+
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2928
3030
|
protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2929
|
-
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3031
|
+
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2930
3032
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
2931
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3033
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2932
3034
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2933
|
-
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
3035
|
+
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2934
3036
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
2935
|
-
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3037
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2936
3038
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2937
3039
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2938
3040
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
2939
|
-
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3041
|
+
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2940
3042
|
protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
|
|
2941
|
-
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3043
|
+
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
2942
3044
|
protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
|
|
2943
|
-
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
3045
|
+
saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
|
|
2944
3046
|
protected processSaveComment(response: Response): Promise<void>;
|
|
2945
|
-
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3047
|
+
batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
2946
3048
|
protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
|
|
2947
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3049
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
2948
3050
|
protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
|
|
2949
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3051
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
2950
3052
|
protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
|
|
2951
3053
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
2952
3054
|
protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
@@ -2971,7 +3073,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
2971
3073
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2972
3074
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2973
3075
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2974
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3076
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2975
3077
|
}
|
|
2976
3078
|
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
2977
3079
|
private http;
|
|
@@ -2995,7 +3097,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
|
|
|
2995
3097
|
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2996
3098
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2997
3099
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2998
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3100
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2999
3101
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
3000
3102
|
}
|
|
3001
3103
|
export interface ICompaniesClient {
|
|
@@ -3335,111 +3437,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3335
3437
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3336
3438
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3337
3439
|
}
|
|
3338
|
-
export interface IExternalAccessClient {
|
|
3339
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3340
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3341
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3342
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3343
|
-
migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
|
|
3344
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3345
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3346
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3347
|
-
}
|
|
3348
|
-
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3349
|
-
private http;
|
|
3350
|
-
private baseUrl;
|
|
3351
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3352
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3353
|
-
});
|
|
3354
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3355
|
-
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
3356
|
-
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3357
|
-
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3358
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3359
|
-
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3360
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3361
|
-
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
3362
|
-
migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
|
|
3363
|
-
protected processMigrateLegacyCompanyUsersToEntra(response: Response): Promise<CompanyUserDto[]>;
|
|
3364
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3365
|
-
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
3366
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3367
|
-
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
3368
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3369
|
-
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
3370
|
-
}
|
|
3371
|
-
export interface IExternalClient {
|
|
3372
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3373
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3374
|
-
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3375
|
-
acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
|
|
3376
|
-
acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
|
|
3377
|
-
acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
|
|
3378
|
-
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3379
|
-
}
|
|
3380
|
-
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3381
|
-
private http;
|
|
3382
|
-
private baseUrl;
|
|
3383
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3384
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3385
|
-
});
|
|
3386
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
3387
|
-
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3388
|
-
getCompany(id: string): Promise<CompanyDto>;
|
|
3389
|
-
protected processGetCompany(response: Response): Promise<CompanyDto>;
|
|
3390
|
-
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3391
|
-
protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3392
|
-
acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
|
|
3393
|
-
protected processAcceptSupplierInviteNewCompany(response: Response): Promise<SupplierInviteDto>;
|
|
3394
|
-
acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
|
|
3395
|
-
protected processAcceptSupplierInviteExistingCompany(response: Response): Promise<SupplierInviteDto>;
|
|
3396
|
-
acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
|
|
3397
|
-
protected processAcceptSupplierInviteCustomer(response: Response): Promise<SupplierInviteDto>;
|
|
3398
|
-
listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
|
|
3399
|
-
protected processListTenantsWithSuppliers(response: Response): Promise<TenantWithSupplierDto[]>;
|
|
3400
|
-
}
|
|
3401
|
-
export interface ISuppliersClient {
|
|
3402
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3403
|
-
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3404
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3405
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3406
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3407
|
-
/**
|
|
3408
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3409
|
-
*/
|
|
3410
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3411
|
-
/**
|
|
3412
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3413
|
-
*/
|
|
3414
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3415
|
-
}
|
|
3416
|
-
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3417
|
-
private http;
|
|
3418
|
-
private baseUrl;
|
|
3419
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3420
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3421
|
-
});
|
|
3422
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3423
|
-
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3424
|
-
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3425
|
-
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3426
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
3427
|
-
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
3428
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3429
|
-
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3430
|
-
deleteSupplier(id: string): Promise<void>;
|
|
3431
|
-
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3432
|
-
/**
|
|
3433
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
3434
|
-
*/
|
|
3435
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3436
|
-
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3437
|
-
/**
|
|
3438
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3439
|
-
*/
|
|
3440
|
-
deleteSupplierMappings(): Promise<void>;
|
|
3441
|
-
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3442
|
-
}
|
|
3443
3440
|
export interface AzureRegionDto {
|
|
3444
3441
|
displayName: string;
|
|
3445
3442
|
name: string;
|
|
@@ -3750,9 +3747,6 @@ export interface UserDetailsDto {
|
|
|
3750
3747
|
isExternalUser?: boolean;
|
|
3751
3748
|
isBetaTester?: boolean | null;
|
|
3752
3749
|
hasAccessToIgnos?: boolean;
|
|
3753
|
-
isInvitedUser?: boolean;
|
|
3754
|
-
isSupplier?: boolean;
|
|
3755
|
-
companyId?: string | null;
|
|
3756
3750
|
}
|
|
3757
3751
|
export interface UserDto {
|
|
3758
3752
|
id?: string | null;
|
|
@@ -4171,11 +4165,11 @@ export interface UpdateCalendarSettingsCommand {
|
|
|
4171
4165
|
holidayHours?: number;
|
|
4172
4166
|
defaultPerformancePercent?: number | null;
|
|
4173
4167
|
}
|
|
4174
|
-
export interface
|
|
4175
|
-
active:
|
|
4176
|
-
archived:
|
|
4168
|
+
export interface CalendarDefinitionsDto {
|
|
4169
|
+
active: CalendarDefinitionDto[];
|
|
4170
|
+
archived: CalendarDefinitionDto[];
|
|
4177
4171
|
}
|
|
4178
|
-
export interface
|
|
4172
|
+
export interface CalendarDefinitionDto {
|
|
4179
4173
|
id: string;
|
|
4180
4174
|
name: string;
|
|
4181
4175
|
hoursPerWeekday: {
|
|
@@ -4185,62 +4179,62 @@ export interface ShiftPlanDto {
|
|
|
4185
4179
|
updatedBy?: string | null;
|
|
4186
4180
|
isArchived?: boolean;
|
|
4187
4181
|
}
|
|
4188
|
-
export interface
|
|
4182
|
+
export interface CreateCalendarDefinition {
|
|
4189
4183
|
name: string;
|
|
4190
4184
|
hoursPerWeekday: {
|
|
4191
4185
|
[key in DayOfWeek]?: number;
|
|
4192
4186
|
};
|
|
4193
4187
|
}
|
|
4194
|
-
export interface
|
|
4188
|
+
export interface UpdateCalendarDefinitionRequest {
|
|
4195
4189
|
name?: string | null;
|
|
4196
4190
|
hoursPerWeekday?: {
|
|
4197
4191
|
[key in DayOfWeek]?: number;
|
|
4198
4192
|
} | null;
|
|
4199
4193
|
unarchive?: boolean | null;
|
|
4200
4194
|
}
|
|
4201
|
-
export interface
|
|
4202
|
-
groups:
|
|
4203
|
-
ungroupedResources:
|
|
4195
|
+
export interface ResourceCalendarPeriodSchedulesDto {
|
|
4196
|
+
groups: ResourceCalendarPeriodGroupDto[];
|
|
4197
|
+
ungroupedResources: ResourceCalendarPeriodsDto[];
|
|
4204
4198
|
}
|
|
4205
|
-
export interface
|
|
4199
|
+
export interface ResourceCalendarPeriodGroupDto {
|
|
4206
4200
|
resourceGroupName: string;
|
|
4207
|
-
resources:
|
|
4201
|
+
resources: ResourceCalendarPeriodsDto[];
|
|
4208
4202
|
}
|
|
4209
|
-
export interface
|
|
4203
|
+
export interface ResourceCalendarPeriodsDto {
|
|
4210
4204
|
resourceExternalId: string;
|
|
4211
4205
|
resourceName: string;
|
|
4212
|
-
periods:
|
|
4206
|
+
periods: ResourceCalendarPeriodDto[];
|
|
4213
4207
|
}
|
|
4214
|
-
export interface
|
|
4208
|
+
export interface ResourceCalendarPeriodDto {
|
|
4215
4209
|
resourceExternalId: string;
|
|
4216
|
-
|
|
4217
|
-
|
|
4210
|
+
calendarDefinitionId: string;
|
|
4211
|
+
calendarDefinitionName: string;
|
|
4218
4212
|
effectiveFrom: string;
|
|
4219
4213
|
effectiveTo?: string | null;
|
|
4220
4214
|
targetPercent: number;
|
|
4221
4215
|
comment?: string | null;
|
|
4222
4216
|
}
|
|
4223
|
-
export interface
|
|
4217
|
+
export interface AddResourceCalendarPeriod {
|
|
4224
4218
|
resourceExternalIds: string[];
|
|
4225
|
-
|
|
4219
|
+
calendarDefinitionId: string;
|
|
4226
4220
|
effectiveFrom: string;
|
|
4227
4221
|
targetPercent: number;
|
|
4228
4222
|
comment?: string | null;
|
|
4229
4223
|
}
|
|
4230
|
-
export interface
|
|
4231
|
-
|
|
4224
|
+
export interface UpdateResourceCalendarPeriodRequest {
|
|
4225
|
+
calendarDefinitionId?: string | null;
|
|
4232
4226
|
targetPercent?: number | null;
|
|
4233
4227
|
newEffectiveFrom?: string | null;
|
|
4234
4228
|
comment?: string | null;
|
|
4235
4229
|
}
|
|
4236
|
-
export interface
|
|
4230
|
+
export interface DeleteResourceCalendarPeriod {
|
|
4237
4231
|
periods: PeriodKey[];
|
|
4238
4232
|
}
|
|
4239
4233
|
export interface PeriodKey {
|
|
4240
4234
|
resourceExternalId: string;
|
|
4241
4235
|
effectiveFrom: string;
|
|
4242
4236
|
}
|
|
4243
|
-
export interface
|
|
4237
|
+
export interface CopyResourceCalendarPeriodRequest {
|
|
4244
4238
|
targetResourceExternalId: string;
|
|
4245
4239
|
effectiveFrom: string;
|
|
4246
4240
|
}
|
|
@@ -5720,6 +5714,97 @@ export interface DocumentGeneratorTypeDto {
|
|
|
5720
5714
|
key: string;
|
|
5721
5715
|
description: string;
|
|
5722
5716
|
}
|
|
5717
|
+
export interface CompanyUserDto {
|
|
5718
|
+
companyId?: string | null;
|
|
5719
|
+
username?: string | null;
|
|
5720
|
+
name?: string | null;
|
|
5721
|
+
roles?: string[] | null;
|
|
5722
|
+
}
|
|
5723
|
+
export interface CreateCompanyUserRequest {
|
|
5724
|
+
username: string;
|
|
5725
|
+
name: string;
|
|
5726
|
+
roles: string[];
|
|
5727
|
+
companyId?: string | null;
|
|
5728
|
+
}
|
|
5729
|
+
export interface UpdateCompanyUserRequest {
|
|
5730
|
+
name: string;
|
|
5731
|
+
roles: string[];
|
|
5732
|
+
companyId?: string | null;
|
|
5733
|
+
}
|
|
5734
|
+
export interface ExternalRoleDto {
|
|
5735
|
+
id: string;
|
|
5736
|
+
name: string;
|
|
5737
|
+
}
|
|
5738
|
+
export interface CompanyCustomerDto {
|
|
5739
|
+
customerTenantId?: string | null;
|
|
5740
|
+
customerAzureAdTenantId?: string | null;
|
|
5741
|
+
customerName?: string | null;
|
|
5742
|
+
supplierId?: string | null;
|
|
5743
|
+
supplierName?: string | null;
|
|
5744
|
+
}
|
|
5745
|
+
export interface InviteDto {
|
|
5746
|
+
tenantId: string;
|
|
5747
|
+
companyName: string;
|
|
5748
|
+
id: string;
|
|
5749
|
+
supplierId: string;
|
|
5750
|
+
supplierName: string;
|
|
5751
|
+
username: string;
|
|
5752
|
+
deadline: Date;
|
|
5753
|
+
createdTime: Date;
|
|
5754
|
+
createdBy: string;
|
|
5755
|
+
}
|
|
5756
|
+
export interface CompanyDto {
|
|
5757
|
+
id?: string | null;
|
|
5758
|
+
name?: string | null;
|
|
5759
|
+
organizationNumber?: string | null;
|
|
5760
|
+
country?: string | null;
|
|
5761
|
+
tenantId?: string | null;
|
|
5762
|
+
}
|
|
5763
|
+
export interface AcceptSupplierInviteRequest {
|
|
5764
|
+
tenantId: string;
|
|
5765
|
+
existingCompanyId?: string | null;
|
|
5766
|
+
companyName?: string | null;
|
|
5767
|
+
organizationNumber?: string | null;
|
|
5768
|
+
threeLetterIsoCountry?: string | null;
|
|
5769
|
+
}
|
|
5770
|
+
export interface SupplierInviteDto {
|
|
5771
|
+
id: string;
|
|
5772
|
+
supplierId: string;
|
|
5773
|
+
name: string;
|
|
5774
|
+
username: string;
|
|
5775
|
+
deadline: Date;
|
|
5776
|
+
createdTime: Date;
|
|
5777
|
+
createdBy: string;
|
|
5778
|
+
}
|
|
5779
|
+
export interface CreateSupplierInvite {
|
|
5780
|
+
supplierId: string;
|
|
5781
|
+
name: string;
|
|
5782
|
+
username: string;
|
|
5783
|
+
deadline: Date;
|
|
5784
|
+
}
|
|
5785
|
+
export interface ExternalSupplierDto {
|
|
5786
|
+
id: string;
|
|
5787
|
+
name: string;
|
|
5788
|
+
companyId: string;
|
|
5789
|
+
active: boolean;
|
|
5790
|
+
}
|
|
5791
|
+
export interface ImportSupplier {
|
|
5792
|
+
supplierId: string;
|
|
5793
|
+
name: string;
|
|
5794
|
+
organizationNumber?: string | null;
|
|
5795
|
+
threeLetterIsoCountry: string;
|
|
5796
|
+
users: ImportSupplierUserDto[];
|
|
5797
|
+
}
|
|
5798
|
+
export interface ImportSupplierUserDto {
|
|
5799
|
+
username: string;
|
|
5800
|
+
name: string;
|
|
5801
|
+
roles: string[];
|
|
5802
|
+
}
|
|
5803
|
+
export interface CreateSupplierMapping {
|
|
5804
|
+
companyId: string;
|
|
5805
|
+
existingSupplierId: string;
|
|
5806
|
+
newSupplierId: string;
|
|
5807
|
+
}
|
|
5723
5808
|
export interface CncMachineTransferDto {
|
|
5724
5809
|
id: string;
|
|
5725
5810
|
cncMachineOperationId?: string | null;
|
|
@@ -7888,9 +7973,11 @@ export interface ImaMaterialCheckDto {
|
|
|
7888
7973
|
certificateTypeId?: string | null;
|
|
7889
7974
|
certificateTypeVersion?: number | null;
|
|
7890
7975
|
certificateTypeName?: string | null;
|
|
7976
|
+
certificateTypeRevision?: string | null;
|
|
7891
7977
|
specificationId: string;
|
|
7892
7978
|
specificationVersion: number;
|
|
7893
7979
|
specificationName: string;
|
|
7980
|
+
specificationRevision: string;
|
|
7894
7981
|
specificationStatus: ImaSpecificationStatus;
|
|
7895
7982
|
certificateTypeStatus: ImaCertificateTypeStatus;
|
|
7896
7983
|
purchaseOrder?: string | null;
|
|
@@ -7909,6 +7996,10 @@ export interface ImaMaterialCheckDto {
|
|
|
7909
7996
|
updatedById: string;
|
|
7910
7997
|
updatedByName: string;
|
|
7911
7998
|
isDeleted: boolean;
|
|
7999
|
+
reportCreatedBy?: string | null;
|
|
8000
|
+
reportCreatedById?: string | null;
|
|
8001
|
+
reportCreatedByName?: string | null;
|
|
8002
|
+
reportCreated?: Date | null;
|
|
7912
8003
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
7913
8004
|
specificationResults: ImaSpecificationResultsDto;
|
|
7914
8005
|
}
|
|
@@ -8186,9 +8277,11 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8186
8277
|
certificateTypeId?: string | null;
|
|
8187
8278
|
certificateTypeVersion?: number | null;
|
|
8188
8279
|
certificateTypeName?: string | null;
|
|
8280
|
+
certificateTypeRevision?: string | null;
|
|
8189
8281
|
specificationId: string;
|
|
8190
8282
|
specificationVersion: number;
|
|
8191
8283
|
specificationName: string;
|
|
8284
|
+
specificationRevision: string;
|
|
8192
8285
|
purchaseOrder?: string | null;
|
|
8193
8286
|
purchaseOrderLine?: number | null;
|
|
8194
8287
|
purchaseOrderVendorBatches?: string[] | null;
|
|
@@ -8207,6 +8300,10 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8207
8300
|
updatedById: string;
|
|
8208
8301
|
updatedByName: string;
|
|
8209
8302
|
isDeleted?: boolean;
|
|
8303
|
+
reportCreatedBy?: string | null;
|
|
8304
|
+
reportCreatedById?: string | null;
|
|
8305
|
+
reportCreatedByName?: string | null;
|
|
8306
|
+
reportCreated?: Date | null;
|
|
8210
8307
|
}
|
|
8211
8308
|
export interface ImaMaterialChecksPageRequestDto {
|
|
8212
8309
|
pageSize?: number | null;
|
|
@@ -8248,11 +8345,16 @@ export interface ProcessMaterialCertificate {
|
|
|
8248
8345
|
export interface UploadFileCdfDto {
|
|
8249
8346
|
id: number;
|
|
8250
8347
|
}
|
|
8251
|
-
export interface
|
|
8252
|
-
|
|
8348
|
+
export interface ImaMaterialCheckReportDto {
|
|
8349
|
+
file: FileDto;
|
|
8350
|
+
createdBy: string;
|
|
8351
|
+
createdById: string;
|
|
8352
|
+
createdByName: string;
|
|
8353
|
+
created: Date;
|
|
8253
8354
|
}
|
|
8254
|
-
export interface
|
|
8255
|
-
|
|
8355
|
+
export interface ImaMaterialChecksReportRequestDto {
|
|
8356
|
+
materialCheck?: ImaMaterialCheckDto;
|
|
8357
|
+
purchaseOrder?: PurchaseOrderMaterialLineDetailsDto | null;
|
|
8256
8358
|
}
|
|
8257
8359
|
export interface PurchaseOrderMaterialLineDetailsDto {
|
|
8258
8360
|
companyId: string;
|
|
@@ -8287,6 +8389,12 @@ export interface User {
|
|
|
8287
8389
|
upn?: string | null;
|
|
8288
8390
|
email?: string | null;
|
|
8289
8391
|
}
|
|
8392
|
+
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
8393
|
+
purchaseOrders: string[];
|
|
8394
|
+
}
|
|
8395
|
+
export interface PurchaseOrderMaterialLinesDto {
|
|
8396
|
+
lines: number[];
|
|
8397
|
+
}
|
|
8290
8398
|
export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
8291
8399
|
specificationId: string;
|
|
8292
8400
|
version: number;
|
|
@@ -8953,6 +9061,7 @@ export interface ListMeasurementFormsRequest {
|
|
|
8953
9061
|
pageSize?: number | null;
|
|
8954
9062
|
search?: string | null;
|
|
8955
9063
|
continuationToken?: string | null;
|
|
9064
|
+
tenantId?: string | null;
|
|
8956
9065
|
inactive?: boolean | null;
|
|
8957
9066
|
includeInactiveSupplierAccess?: boolean | null;
|
|
8958
9067
|
}
|
|
@@ -9148,6 +9257,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
|
|
|
9148
9257
|
externalOrderNumber?: string | null;
|
|
9149
9258
|
}
|
|
9150
9259
|
export interface ExportDimensionReportV2Request {
|
|
9260
|
+
tenantId?: string | null;
|
|
9151
9261
|
type: DimensionReportType;
|
|
9152
9262
|
extras?: DimensionReportExtras | null;
|
|
9153
9263
|
specificSerialNumbers?: string[] | null;
|
|
@@ -9488,90 +9598,6 @@ export interface SetDiscussionLastReadRequest {
|
|
|
9488
9598
|
operationId?: string | null;
|
|
9489
9599
|
resourceId?: string | null;
|
|
9490
9600
|
}
|
|
9491
|
-
export interface CompanyUserDto {
|
|
9492
|
-
companyId: string;
|
|
9493
|
-
userObjectId: string;
|
|
9494
|
-
username?: string | null;
|
|
9495
|
-
name?: string | null;
|
|
9496
|
-
roles: string[];
|
|
9497
|
-
}
|
|
9498
|
-
export interface CreateCompanyUser {
|
|
9499
|
-
username: string;
|
|
9500
|
-
name: string;
|
|
9501
|
-
roles: string[];
|
|
9502
|
-
companyId?: string | null;
|
|
9503
|
-
}
|
|
9504
|
-
export interface UpdateCompanyUserRequest {
|
|
9505
|
-
roles: string[];
|
|
9506
|
-
companyId?: string | null;
|
|
9507
|
-
}
|
|
9508
|
-
export interface ExternalRoleDto {
|
|
9509
|
-
id: string;
|
|
9510
|
-
name: string;
|
|
9511
|
-
}
|
|
9512
|
-
export interface CompanyCustomerDto {
|
|
9513
|
-
customerTenantId?: string | null;
|
|
9514
|
-
customerAzureAdTenantId?: string | null;
|
|
9515
|
-
customerName?: string | null;
|
|
9516
|
-
supplierId?: string | null;
|
|
9517
|
-
supplierName?: string | null;
|
|
9518
|
-
customerIgnosPortalPrefix?: string | null;
|
|
9519
|
-
}
|
|
9520
|
-
export interface CompanyDto {
|
|
9521
|
-
id: string;
|
|
9522
|
-
name: string;
|
|
9523
|
-
organizationNumber?: string | null;
|
|
9524
|
-
country: string;
|
|
9525
|
-
tenantId?: string | null;
|
|
9526
|
-
}
|
|
9527
|
-
export interface SupplierInviteDto {
|
|
9528
|
-
id: string;
|
|
9529
|
-
supplierId: string;
|
|
9530
|
-
supplierName?: string | null;
|
|
9531
|
-
customerName?: string | null;
|
|
9532
|
-
userId: string;
|
|
9533
|
-
userName?: string | null;
|
|
9534
|
-
deadline: Date;
|
|
9535
|
-
acceptedTimestamp?: Date | null;
|
|
9536
|
-
createdTime: Date;
|
|
9537
|
-
createdBy: string;
|
|
9538
|
-
}
|
|
9539
|
-
export interface AcceptSupplierInviteNewCompany {
|
|
9540
|
-
companyName?: string;
|
|
9541
|
-
organizationNumber?: string;
|
|
9542
|
-
threeLetterIsoCountry?: string;
|
|
9543
|
-
}
|
|
9544
|
-
export interface AcceptSupplierInviteExistingCompany {
|
|
9545
|
-
companyId?: string;
|
|
9546
|
-
}
|
|
9547
|
-
export interface AcceptSupplierInviteCustomer {
|
|
9548
|
-
tenantId?: string;
|
|
9549
|
-
organizationNumber?: string;
|
|
9550
|
-
}
|
|
9551
|
-
export interface TenantWithSupplierDto {
|
|
9552
|
-
tenantId: string;
|
|
9553
|
-
customerName: string;
|
|
9554
|
-
supplierTenantEntraId: string;
|
|
9555
|
-
}
|
|
9556
|
-
export interface CreateSupplierInviteRequest {
|
|
9557
|
-
supplierId: string;
|
|
9558
|
-
supplierName?: string | null;
|
|
9559
|
-
username: string;
|
|
9560
|
-
invitedName: string;
|
|
9561
|
-
deadline: Date;
|
|
9562
|
-
utcOffset: number;
|
|
9563
|
-
}
|
|
9564
|
-
export interface ExternalSupplierDto {
|
|
9565
|
-
id: string;
|
|
9566
|
-
name: string;
|
|
9567
|
-
companyId: string;
|
|
9568
|
-
active: boolean;
|
|
9569
|
-
}
|
|
9570
|
-
export interface CreateSupplierMapping {
|
|
9571
|
-
companyId: string;
|
|
9572
|
-
existingSupplierId: string;
|
|
9573
|
-
newSupplierId: string;
|
|
9574
|
-
}
|
|
9575
9601
|
export type FeatureCollectionType = "FeatureCollection";
|
|
9576
9602
|
export interface Features {
|
|
9577
9603
|
type: FeaturesType;
|