@ignos/api-client 20260527.137.1-alpha → 20260529.140.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 +276 -301
- package/lib/ignosportal-api.js +4259 -4143
- package/package.json +1 -1
- package/src/ignosportal-api.ts +6125 -6042
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -127,6 +127,7 @@ export declare class CustomersClient extends AuthorizedApiBase implements ICusto
|
|
|
127
127
|
}
|
|
128
128
|
export interface IGuestsClient {
|
|
129
129
|
getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
130
|
+
getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
130
131
|
}
|
|
131
132
|
export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
|
|
132
133
|
private http;
|
|
@@ -136,6 +137,8 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
|
|
|
136
137
|
});
|
|
137
138
|
getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
138
139
|
protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
140
|
+
getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
141
|
+
protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
139
142
|
}
|
|
140
143
|
export interface IPresentationClient {
|
|
141
144
|
getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
|
|
@@ -598,6 +601,16 @@ export interface IKpiAdminResourceClient {
|
|
|
598
601
|
updateCalendarCapacityAdmin(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
599
602
|
getCalendarSettings(): Promise<CalendarSettingsDto>;
|
|
600
603
|
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>;
|
|
601
614
|
}
|
|
602
615
|
export declare class KpiAdminResourceClient extends AuthorizedApiBase implements IKpiAdminResourceClient {
|
|
603
616
|
private http;
|
|
@@ -617,45 +630,26 @@ export declare class KpiAdminResourceClient extends AuthorizedApiBase implements
|
|
|
617
630
|
protected processGetCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
|
|
618
631
|
updateCalendarSettings(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
619
632
|
protected processUpdateCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
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>;
|
|
633
|
+
listShiftPlans(): Promise<ShiftPlansDto>;
|
|
634
|
+
protected processListShiftPlans(response: Response): Promise<ShiftPlansDto>;
|
|
635
|
+
createShiftPlan(request: CreateShiftPlan): Promise<ShiftPlanDto>;
|
|
636
|
+
protected processCreateShiftPlan(response: Response): Promise<ShiftPlanDto>;
|
|
637
|
+
updateShiftPlan(id: string, request: UpdateShiftPlanRequest): Promise<ShiftPlanDto>;
|
|
638
|
+
protected processUpdateShiftPlan(response: Response): Promise<ShiftPlanDto>;
|
|
639
|
+
deleteShiftPlan(id: string): Promise<void>;
|
|
640
|
+
protected processDeleteShiftPlan(response: Response): Promise<void>;
|
|
641
|
+
listShiftSettingPeriods(): Promise<ShiftSettingsDto>;
|
|
642
|
+
protected processListShiftSettingPeriods(response: Response): Promise<ShiftSettingsDto>;
|
|
643
|
+
addShiftSettingPeriods(request: AddShiftSettingPeriods): Promise<ShiftSettingsPeriodDto[]>;
|
|
644
|
+
protected processAddShiftSettingPeriods(response: Response): Promise<ShiftSettingsPeriodDto[]>;
|
|
645
|
+
deleteShiftSettingPeriods(request: DeleteShiftSettingsPeriod): Promise<FileResponse>;
|
|
646
|
+
protected processDeleteShiftSettingPeriods(response: Response): Promise<FileResponse>;
|
|
647
|
+
updateShiftSettingsPeriod(resourceExternalId: string, effectiveFrom: string, request: UpdateShiftSettingsPeriodRequest): Promise<ShiftSettingsPeriodDto>;
|
|
648
|
+
protected processUpdateShiftSettingsPeriod(response: Response): Promise<ShiftSettingsPeriodDto>;
|
|
649
|
+
copyShiftSettingsPeriod(sourceResourceExternalId: string, sourceEffectiveFrom: string, request: CopyShiftSettingsPeriodRequest): Promise<ShiftSettingsPeriodDto>;
|
|
650
|
+
protected processCopyShiftSettingsPeriod(response: Response): Promise<ShiftSettingsPeriodDto>;
|
|
651
|
+
migrateCapacityToSettings(): Promise<MigrationResultDto>;
|
|
652
|
+
protected processMigrateCapacityToSettings(response: Response): Promise<MigrationResultDto>;
|
|
659
653
|
}
|
|
660
654
|
export interface IKpiResourceClient {
|
|
661
655
|
getResourceKpi(resourceExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<ResourceKpiDto>;
|
|
@@ -1505,99 +1499,6 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
|
|
|
1505
1499
|
listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
|
|
1506
1500
|
protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
|
|
1507
1501
|
}
|
|
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
|
-
}
|
|
1601
1502
|
export interface ICncFileTransferClient {
|
|
1602
1503
|
startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
|
|
1603
1504
|
startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
|
|
@@ -2660,7 +2561,6 @@ export interface IInspectMatchMaterialChecksClient {
|
|
|
2660
2561
|
getMaterialCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2661
2562
|
listMaterialChecks(request: ImaMaterialChecksPageRequestDto): Promise<PagedResultOfImaMaterialCheckLiteDto>;
|
|
2662
2563
|
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
|
|
2663
|
-
generateReport(request: ImaMaterialChecksReportRequestDto): Promise<ImaMaterialCheckReportDto>;
|
|
2664
2564
|
}
|
|
2665
2565
|
export declare class InspectMatchMaterialChecksClient extends AuthorizedApiBase implements IInspectMatchMaterialChecksClient {
|
|
2666
2566
|
private http;
|
|
@@ -2674,8 +2574,6 @@ export declare class InspectMatchMaterialChecksClient extends AuthorizedApiBase
|
|
|
2674
2574
|
protected processListMaterialChecks(response: Response): Promise<PagedResultOfImaMaterialCheckLiteDto>;
|
|
2675
2575
|
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
|
|
2676
2576
|
protected processProcessMaterialCertificate(response: Response): Promise<void>;
|
|
2677
|
-
generateReport(request: ImaMaterialChecksReportRequestDto): Promise<ImaMaterialCheckReportDto>;
|
|
2678
|
-
protected processGenerateReport(response: Response): Promise<ImaMaterialCheckReportDto>;
|
|
2679
2577
|
}
|
|
2680
2578
|
export interface IInspectMatchPurchaseOrderClient {
|
|
2681
2579
|
searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto>;
|
|
@@ -2987,22 +2885,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
|
|
|
2987
2885
|
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
2988
2886
|
}
|
|
2989
2887
|
export interface IMeasurementFormsInstancesClient {
|
|
2990
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined,
|
|
2888
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2991
2889
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2992
|
-
getMeasurementFormInstance(id: string
|
|
2890
|
+
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2993
2891
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
2994
|
-
completeMeasurementFormInstance(id: string
|
|
2995
|
-
completeMeasurementFormInstanceV2(id: string
|
|
2996
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined
|
|
2997
|
-
getWorkorderMeasurementFormProgress(id: string
|
|
2998
|
-
getAuditLog(id: string,
|
|
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[]>;
|
|
2999
2897
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
3000
|
-
saveValue(id: string,
|
|
3001
|
-
saveTool(id: string,
|
|
3002
|
-
saveComment(id: string,
|
|
3003
|
-
batchInsertValues(id: string,
|
|
3004
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string,
|
|
3005
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string,
|
|
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>;
|
|
3006
2904
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
3007
2905
|
upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
|
|
3008
2906
|
removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
|
|
@@ -3018,37 +2916,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
3018
2916
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3019
2917
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3020
2918
|
});
|
|
3021
|
-
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined,
|
|
2919
|
+
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3022
2920
|
protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3023
2921
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3024
2922
|
protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
3025
|
-
getMeasurementFormInstance(id: string
|
|
2923
|
+
getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3026
2924
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3027
2925
|
listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3028
2926
|
protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
|
|
3029
|
-
completeMeasurementFormInstance(id: string
|
|
2927
|
+
completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3030
2928
|
protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3031
|
-
completeMeasurementFormInstanceV2(id: string
|
|
2929
|
+
completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3032
2930
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3033
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined
|
|
2931
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3034
2932
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3035
|
-
getWorkorderMeasurementFormProgress(id: string
|
|
2933
|
+
getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
|
|
3036
2934
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
3037
|
-
getAuditLog(id: string,
|
|
2935
|
+
getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3038
2936
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3039
2937
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
3040
2938
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
3041
|
-
saveValue(id: string,
|
|
2939
|
+
saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
3042
2940
|
protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
|
|
3043
|
-
saveTool(id: string,
|
|
2941
|
+
saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
3044
2942
|
protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
|
|
3045
|
-
saveComment(id: string,
|
|
2943
|
+
saveComment(id: string, request: SaveCommentRequest): Promise<void>;
|
|
3046
2944
|
protected processSaveComment(response: Response): Promise<void>;
|
|
3047
|
-
batchInsertValues(id: string,
|
|
2945
|
+
batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
|
|
3048
2946
|
protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
|
|
3049
|
-
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string,
|
|
2947
|
+
saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
|
|
3050
2948
|
protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
|
|
3051
|
-
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string,
|
|
2949
|
+
createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
|
|
3052
2950
|
protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
|
|
3053
2951
|
listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
3054
2952
|
protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
|
|
@@ -3073,7 +2971,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
3073
2971
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
3074
2972
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3075
2973
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3076
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string
|
|
2974
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3077
2975
|
}
|
|
3078
2976
|
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
3079
2977
|
private http;
|
|
@@ -3097,7 +2995,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
|
|
|
3097
2995
|
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3098
2996
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3099
2997
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3100
|
-
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string
|
|
2998
|
+
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
|
|
3101
2999
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
3102
3000
|
}
|
|
3103
3001
|
export interface ICompaniesClient {
|
|
@@ -3437,6 +3335,111 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3437
3335
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3438
3336
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3439
3337
|
}
|
|
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
|
+
}
|
|
3440
3443
|
export interface AzureRegionDto {
|
|
3441
3444
|
displayName: string;
|
|
3442
3445
|
name: string;
|
|
@@ -3747,6 +3750,9 @@ export interface UserDetailsDto {
|
|
|
3747
3750
|
isExternalUser?: boolean;
|
|
3748
3751
|
isBetaTester?: boolean | null;
|
|
3749
3752
|
hasAccessToIgnos?: boolean;
|
|
3753
|
+
isInvitedUser?: boolean;
|
|
3754
|
+
isSupplier?: boolean;
|
|
3755
|
+
companyId?: string | null;
|
|
3750
3756
|
}
|
|
3751
3757
|
export interface UserDto {
|
|
3752
3758
|
id?: string | null;
|
|
@@ -4165,11 +4171,11 @@ export interface UpdateCalendarSettingsCommand {
|
|
|
4165
4171
|
holidayHours?: number;
|
|
4166
4172
|
defaultPerformancePercent?: number | null;
|
|
4167
4173
|
}
|
|
4168
|
-
export interface
|
|
4169
|
-
active:
|
|
4170
|
-
archived:
|
|
4174
|
+
export interface ShiftPlansDto {
|
|
4175
|
+
active: ShiftPlanDto[];
|
|
4176
|
+
archived: ShiftPlanDto[];
|
|
4171
4177
|
}
|
|
4172
|
-
export interface
|
|
4178
|
+
export interface ShiftPlanDto {
|
|
4173
4179
|
id: string;
|
|
4174
4180
|
name: string;
|
|
4175
4181
|
hoursPerWeekday: {
|
|
@@ -4179,62 +4185,62 @@ export interface CalendarDefinitionDto {
|
|
|
4179
4185
|
updatedBy?: string | null;
|
|
4180
4186
|
isArchived?: boolean;
|
|
4181
4187
|
}
|
|
4182
|
-
export interface
|
|
4188
|
+
export interface CreateShiftPlan {
|
|
4183
4189
|
name: string;
|
|
4184
4190
|
hoursPerWeekday: {
|
|
4185
4191
|
[key in DayOfWeek]?: number;
|
|
4186
4192
|
};
|
|
4187
4193
|
}
|
|
4188
|
-
export interface
|
|
4194
|
+
export interface UpdateShiftPlanRequest {
|
|
4189
4195
|
name?: string | null;
|
|
4190
4196
|
hoursPerWeekday?: {
|
|
4191
4197
|
[key in DayOfWeek]?: number;
|
|
4192
4198
|
} | null;
|
|
4193
4199
|
unarchive?: boolean | null;
|
|
4194
4200
|
}
|
|
4195
|
-
export interface
|
|
4196
|
-
groups:
|
|
4197
|
-
ungroupedResources:
|
|
4201
|
+
export interface ShiftSettingsDto {
|
|
4202
|
+
groups: ShiftSettingsPeriodGroupDto[];
|
|
4203
|
+
ungroupedResources: ShiftSettingPeriodsDto[];
|
|
4198
4204
|
}
|
|
4199
|
-
export interface
|
|
4205
|
+
export interface ShiftSettingsPeriodGroupDto {
|
|
4200
4206
|
resourceGroupName: string;
|
|
4201
|
-
resources:
|
|
4207
|
+
resources: ShiftSettingPeriodsDto[];
|
|
4202
4208
|
}
|
|
4203
|
-
export interface
|
|
4209
|
+
export interface ShiftSettingPeriodsDto {
|
|
4204
4210
|
resourceExternalId: string;
|
|
4205
4211
|
resourceName: string;
|
|
4206
|
-
periods:
|
|
4212
|
+
periods: ShiftSettingsPeriodDto[];
|
|
4207
4213
|
}
|
|
4208
|
-
export interface
|
|
4214
|
+
export interface ShiftSettingsPeriodDto {
|
|
4209
4215
|
resourceExternalId: string;
|
|
4210
|
-
|
|
4211
|
-
|
|
4216
|
+
shiftPlanId: string;
|
|
4217
|
+
shiftPlanName: string;
|
|
4212
4218
|
effectiveFrom: string;
|
|
4213
4219
|
effectiveTo?: string | null;
|
|
4214
4220
|
targetPercent: number;
|
|
4215
4221
|
comment?: string | null;
|
|
4216
4222
|
}
|
|
4217
|
-
export interface
|
|
4223
|
+
export interface AddShiftSettingPeriods {
|
|
4218
4224
|
resourceExternalIds: string[];
|
|
4219
|
-
|
|
4225
|
+
shiftPlanId: string;
|
|
4220
4226
|
effectiveFrom: string;
|
|
4221
4227
|
targetPercent: number;
|
|
4222
4228
|
comment?: string | null;
|
|
4223
4229
|
}
|
|
4224
|
-
export interface
|
|
4225
|
-
|
|
4230
|
+
export interface UpdateShiftSettingsPeriodRequest {
|
|
4231
|
+
shiftPlanId?: string | null;
|
|
4226
4232
|
targetPercent?: number | null;
|
|
4227
4233
|
newEffectiveFrom?: string | null;
|
|
4228
4234
|
comment?: string | null;
|
|
4229
4235
|
}
|
|
4230
|
-
export interface
|
|
4236
|
+
export interface DeleteShiftSettingsPeriod {
|
|
4231
4237
|
periods: PeriodKey[];
|
|
4232
4238
|
}
|
|
4233
4239
|
export interface PeriodKey {
|
|
4234
4240
|
resourceExternalId: string;
|
|
4235
4241
|
effectiveFrom: string;
|
|
4236
4242
|
}
|
|
4237
|
-
export interface
|
|
4243
|
+
export interface CopyShiftSettingsPeriodRequest {
|
|
4238
4244
|
targetResourceExternalId: string;
|
|
4239
4245
|
effectiveFrom: string;
|
|
4240
4246
|
}
|
|
@@ -5714,97 +5720,6 @@ export interface DocumentGeneratorTypeDto {
|
|
|
5714
5720
|
key: string;
|
|
5715
5721
|
description: string;
|
|
5716
5722
|
}
|
|
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
|
-
}
|
|
5808
5723
|
export interface CncMachineTransferDto {
|
|
5809
5724
|
id: string;
|
|
5810
5725
|
cncMachineOperationId?: string | null;
|
|
@@ -7994,10 +7909,6 @@ export interface ImaMaterialCheckDto {
|
|
|
7994
7909
|
updatedById: string;
|
|
7995
7910
|
updatedByName: string;
|
|
7996
7911
|
isDeleted: boolean;
|
|
7997
|
-
reportCreatedBy?: string | null;
|
|
7998
|
-
reportCreatedById?: string | null;
|
|
7999
|
-
reportCreatedByName?: string | null;
|
|
8000
|
-
reportCreated?: Date | null;
|
|
8001
7912
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
8002
7913
|
specificationResults: ImaSpecificationResultsDto;
|
|
8003
7914
|
}
|
|
@@ -8296,10 +8207,6 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8296
8207
|
updatedById: string;
|
|
8297
8208
|
updatedByName: string;
|
|
8298
8209
|
isDeleted?: boolean;
|
|
8299
|
-
reportCreatedBy?: string | null;
|
|
8300
|
-
reportCreatedById?: string | null;
|
|
8301
|
-
reportCreatedByName?: string | null;
|
|
8302
|
-
reportCreated?: Date | null;
|
|
8303
8210
|
}
|
|
8304
8211
|
export interface ImaMaterialChecksPageRequestDto {
|
|
8305
8212
|
pageSize?: number | null;
|
|
@@ -8341,16 +8248,11 @@ export interface ProcessMaterialCertificate {
|
|
|
8341
8248
|
export interface UploadFileCdfDto {
|
|
8342
8249
|
id: number;
|
|
8343
8250
|
}
|
|
8344
|
-
export interface
|
|
8345
|
-
|
|
8346
|
-
createdBy: string;
|
|
8347
|
-
createdById: string;
|
|
8348
|
-
createdByName: string;
|
|
8349
|
-
created: Date;
|
|
8251
|
+
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
8252
|
+
purchaseOrders: string[];
|
|
8350
8253
|
}
|
|
8351
|
-
export interface
|
|
8352
|
-
|
|
8353
|
-
purchaseOrder?: PurchaseOrderMaterialLineDetailsDto | null;
|
|
8254
|
+
export interface PurchaseOrderMaterialLinesDto {
|
|
8255
|
+
lines: number[];
|
|
8354
8256
|
}
|
|
8355
8257
|
export interface PurchaseOrderMaterialLineDetailsDto {
|
|
8356
8258
|
companyId: string;
|
|
@@ -8385,12 +8287,6 @@ export interface User {
|
|
|
8385
8287
|
upn?: string | null;
|
|
8386
8288
|
email?: string | null;
|
|
8387
8289
|
}
|
|
8388
|
-
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
8389
|
-
purchaseOrders: string[];
|
|
8390
|
-
}
|
|
8391
|
-
export interface PurchaseOrderMaterialLinesDto {
|
|
8392
|
-
lines: number[];
|
|
8393
|
-
}
|
|
8394
8290
|
export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
8395
8291
|
specificationId: string;
|
|
8396
8292
|
version: number;
|
|
@@ -9057,7 +8953,6 @@ export interface ListMeasurementFormsRequest {
|
|
|
9057
8953
|
pageSize?: number | null;
|
|
9058
8954
|
search?: string | null;
|
|
9059
8955
|
continuationToken?: string | null;
|
|
9060
|
-
tenantId?: string | null;
|
|
9061
8956
|
inactive?: boolean | null;
|
|
9062
8957
|
includeInactiveSupplierAccess?: boolean | null;
|
|
9063
8958
|
}
|
|
@@ -9253,7 +9148,6 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
|
|
|
9253
9148
|
externalOrderNumber?: string | null;
|
|
9254
9149
|
}
|
|
9255
9150
|
export interface ExportDimensionReportV2Request {
|
|
9256
|
-
tenantId?: string | null;
|
|
9257
9151
|
type: DimensionReportType;
|
|
9258
9152
|
extras?: DimensionReportExtras | null;
|
|
9259
9153
|
specificSerialNumbers?: string[] | null;
|
|
@@ -9594,6 +9488,87 @@ export interface SetDiscussionLastReadRequest {
|
|
|
9594
9488
|
operationId?: string | null;
|
|
9595
9489
|
resourceId?: string | null;
|
|
9596
9490
|
}
|
|
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
|
+
acceptedTimestamp?: Date | null;
|
|
9535
|
+
createdTime: Date;
|
|
9536
|
+
createdBy: string;
|
|
9537
|
+
}
|
|
9538
|
+
export interface AcceptSupplierInviteNewCompany {
|
|
9539
|
+
companyName?: string;
|
|
9540
|
+
organizationNumber?: string;
|
|
9541
|
+
threeLetterIsoCountry?: string;
|
|
9542
|
+
}
|
|
9543
|
+
export interface AcceptSupplierInviteExistingCompany {
|
|
9544
|
+
companyId?: string;
|
|
9545
|
+
}
|
|
9546
|
+
export interface AcceptSupplierInviteCustomer {
|
|
9547
|
+
tenantId?: string;
|
|
9548
|
+
organizationNumber?: string;
|
|
9549
|
+
}
|
|
9550
|
+
export interface TenantWithSupplierDto {
|
|
9551
|
+
tenantId: string;
|
|
9552
|
+
customerName: string;
|
|
9553
|
+
supplierTenantEntraId: string;
|
|
9554
|
+
}
|
|
9555
|
+
export interface CreateSupplierInviteRequest {
|
|
9556
|
+
supplierId: string;
|
|
9557
|
+
supplierName?: string | null;
|
|
9558
|
+
username: string;
|
|
9559
|
+
invitedName: string;
|
|
9560
|
+
}
|
|
9561
|
+
export interface ExternalSupplierDto {
|
|
9562
|
+
id: string;
|
|
9563
|
+
name: string;
|
|
9564
|
+
companyId: string;
|
|
9565
|
+
active: boolean;
|
|
9566
|
+
}
|
|
9567
|
+
export interface CreateSupplierMapping {
|
|
9568
|
+
companyId: string;
|
|
9569
|
+
existingSupplierId: string;
|
|
9570
|
+
newSupplierId: string;
|
|
9571
|
+
}
|
|
9597
9572
|
export type FeatureCollectionType = "FeatureCollection";
|
|
9598
9573
|
export interface Features {
|
|
9599
9574
|
type: FeaturesType;
|