@ignos/api-client 20260323.90.1-alpha → 20260327.92.1

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.
@@ -124,7 +124,6 @@ export declare class CustomersClient extends AuthorizedApiBase implements ICusto
124
124
  }
125
125
  export interface IGuestsClient {
126
126
  getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
127
- getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
128
127
  }
129
128
  export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
130
129
  private http;
@@ -134,8 +133,6 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
134
133
  });
135
134
  getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
136
135
  protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
137
- getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
138
- protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
139
136
  }
140
137
  export interface IPresentationClient {
141
138
  getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
@@ -149,6 +146,69 @@ export declare class PresentationClient extends AuthorizedApiBase implements IPr
149
146
  getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
150
147
  protected processGetComponentSettings(response: Response): Promise<ComponentSettingsDto>;
151
148
  }
149
+ export interface ISpatialClient {
150
+ listBuildingFloors(floor: string | null | undefined): Promise<BuildingFloorDto[]>;
151
+ createBuildingFloor(request: CreateBuildingFloor): Promise<BuildingFloorDto>;
152
+ getBuildingFloor(name: string, floor: string): Promise<BuildingFloorDto>;
153
+ updateBuildingFloor(name: string, floor: string, request: UpdateBuildingFloorRequest): Promise<BuildingFloorDto>;
154
+ deleteBuildingFloor(name: string, floor: string): Promise<void>;
155
+ listGates(): Promise<GateDto[]>;
156
+ createGate(request: CreateGate): Promise<GateDto>;
157
+ getGate(name: string): Promise<GateDto>;
158
+ updateGate(name: string, request: UpdateGateRequest): Promise<GateDto>;
159
+ deleteGate(name: string): Promise<void>;
160
+ listResources(buildingFloorId: string | null | undefined): Promise<ApplicationSpatialResourceDto[]>;
161
+ createResource(request: CreateResource): Promise<ApplicationSpatialResourceDto>;
162
+ getResource(externalId: string): Promise<ApplicationSpatialResourceDto>;
163
+ updateResource(externalId: string, request: UpdateResourceRequest): Promise<ApplicationSpatialResourceDto>;
164
+ deleteResource(externalId: string): Promise<void>;
165
+ getFactory(): Promise<FactoryDto>;
166
+ updateFactory(request: UpdateFactory): Promise<FactoryDto>;
167
+ deleteFactory(): Promise<void>;
168
+ }
169
+ export declare class SpatialClient extends AuthorizedApiBase implements ISpatialClient {
170
+ private http;
171
+ private baseUrl;
172
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
173
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
174
+ });
175
+ listBuildingFloors(floor: string | null | undefined): Promise<BuildingFloorDto[]>;
176
+ protected processListBuildingFloors(response: Response): Promise<BuildingFloorDto[]>;
177
+ createBuildingFloor(request: CreateBuildingFloor): Promise<BuildingFloorDto>;
178
+ protected processCreateBuildingFloor(response: Response): Promise<BuildingFloorDto>;
179
+ getBuildingFloor(name: string, floor: string): Promise<BuildingFloorDto>;
180
+ protected processGetBuildingFloor(response: Response): Promise<BuildingFloorDto>;
181
+ updateBuildingFloor(name: string, floor: string, request: UpdateBuildingFloorRequest): Promise<BuildingFloorDto>;
182
+ protected processUpdateBuildingFloor(response: Response): Promise<BuildingFloorDto>;
183
+ deleteBuildingFloor(name: string, floor: string): Promise<void>;
184
+ protected processDeleteBuildingFloor(response: Response): Promise<void>;
185
+ listGates(): Promise<GateDto[]>;
186
+ protected processListGates(response: Response): Promise<GateDto[]>;
187
+ createGate(request: CreateGate): Promise<GateDto>;
188
+ protected processCreateGate(response: Response): Promise<GateDto>;
189
+ getGate(name: string): Promise<GateDto>;
190
+ protected processGetGate(response: Response): Promise<GateDto>;
191
+ updateGate(name: string, request: UpdateGateRequest): Promise<GateDto>;
192
+ protected processUpdateGate(response: Response): Promise<GateDto>;
193
+ deleteGate(name: string): Promise<void>;
194
+ protected processDeleteGate(response: Response): Promise<void>;
195
+ listResources(buildingFloorId: string | null | undefined): Promise<ApplicationSpatialResourceDto[]>;
196
+ protected processListResources(response: Response): Promise<ApplicationSpatialResourceDto[]>;
197
+ createResource(request: CreateResource): Promise<ApplicationSpatialResourceDto>;
198
+ protected processCreateResource(response: Response): Promise<ApplicationSpatialResourceDto>;
199
+ getResource(externalId: string): Promise<ApplicationSpatialResourceDto>;
200
+ protected processGetResource(response: Response): Promise<ApplicationSpatialResourceDto>;
201
+ updateResource(externalId: string, request: UpdateResourceRequest): Promise<ApplicationSpatialResourceDto>;
202
+ protected processUpdateResource(response: Response): Promise<ApplicationSpatialResourceDto>;
203
+ deleteResource(externalId: string): Promise<void>;
204
+ protected processDeleteResource(response: Response): Promise<void>;
205
+ getFactory(): Promise<FactoryDto>;
206
+ protected processGetFactory(response: Response): Promise<FactoryDto>;
207
+ updateFactory(request: UpdateFactory): Promise<FactoryDto>;
208
+ protected processUpdateFactory(response: Response): Promise<FactoryDto>;
209
+ deleteFactory(): Promise<void>;
210
+ protected processDeleteFactory(response: Response): Promise<void>;
211
+ }
152
212
  export interface IMachineUtilizationClient {
153
213
  /**
154
214
  * Get machine utilization data. Historic utilizations start from now, whereas the start for current utilization is
@@ -1428,6 +1488,99 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
1428
1488
  listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
1429
1489
  protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
1430
1490
  }
1491
+ export interface IExternalAccessClient {
1492
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1493
+ createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1494
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1495
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1496
+ listRoles(): Promise<ExternalRoleDto[]>;
1497
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1498
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
1499
+ }
1500
+ export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
1501
+ private http;
1502
+ private baseUrl;
1503
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1504
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1505
+ });
1506
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1507
+ protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
1508
+ createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1509
+ protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
1510
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1511
+ protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
1512
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1513
+ protected processDeleteCompanyUser(response: Response): Promise<void>;
1514
+ listRoles(): Promise<ExternalRoleDto[]>;
1515
+ protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
1516
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1517
+ protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
1518
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
1519
+ protected processDeleteCompanyCustomer(response: Response): Promise<void>;
1520
+ }
1521
+ export interface IExternalClient {
1522
+ listInvites(): Promise<InviteDto[]>;
1523
+ acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1524
+ listCompanies(): Promise<CompanyDto[]>;
1525
+ }
1526
+ export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
1527
+ private http;
1528
+ private baseUrl;
1529
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1530
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1531
+ });
1532
+ listInvites(): Promise<InviteDto[]>;
1533
+ protected processListInvites(response: Response): Promise<InviteDto[]>;
1534
+ acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1535
+ protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
1536
+ listCompanies(): Promise<CompanyDto[]>;
1537
+ protected processListCompanies(response: Response): Promise<CompanyDto[]>;
1538
+ }
1539
+ export interface ISuppliersClient {
1540
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
1541
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1542
+ deleteSupplierInvite(id: string): Promise<void>;
1543
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
1544
+ deleteSupplier(id: string): Promise<void>;
1545
+ importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1546
+ /**
1547
+ * Creates a mapping between old supplier id and new supplier id.
1548
+ */
1549
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1550
+ /**
1551
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
1552
+ */
1553
+ deleteSupplierMappings(): Promise<void>;
1554
+ }
1555
+ export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
1556
+ private http;
1557
+ private baseUrl;
1558
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1559
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1560
+ });
1561
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
1562
+ protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
1563
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1564
+ protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
1565
+ deleteSupplierInvite(id: string): Promise<void>;
1566
+ protected processDeleteSupplierInvite(response: Response): Promise<void>;
1567
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
1568
+ protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
1569
+ deleteSupplier(id: string): Promise<void>;
1570
+ protected processDeleteSupplier(response: Response): Promise<void>;
1571
+ importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1572
+ protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
1573
+ /**
1574
+ * Creates a mapping between old supplier id and new supplier id.
1575
+ */
1576
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1577
+ protected processCreateSupplierMapping(response: Response): Promise<void>;
1578
+ /**
1579
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
1580
+ */
1581
+ deleteSupplierMappings(): Promise<void>;
1582
+ protected processDeleteSupplierMappings(response: Response): Promise<void>;
1583
+ }
1431
1584
  export interface ICncFileTransferClient {
1432
1585
  startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1433
1586
  startCncMachineOperationTransferToMachine(id: string): Promise<CncMachineTransferDto>;
@@ -2763,22 +2916,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
2763
2916
  protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
2764
2917
  }
2765
2918
  export interface IMeasurementFormsInstancesClient {
2766
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2919
+ 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>;
2767
2920
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2768
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2921
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2769
2922
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
2770
- completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2771
- completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
2772
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2773
- getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
2774
- getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2923
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2924
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2925
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2926
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2927
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2775
2928
  getValidationRules(): Promise<ValidationRuleDto[]>;
2776
- saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2777
- saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2778
- saveComment(id: string, request: SaveCommentRequest): Promise<void>;
2779
- batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2780
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2781
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2929
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2930
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2931
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2932
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2933
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2934
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2782
2935
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2783
2936
  upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
2784
2937
  removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
@@ -2794,37 +2947,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
2794
2947
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2795
2948
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2796
2949
  });
2797
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2950
+ 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>;
2798
2951
  protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2799
2952
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2800
2953
  protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2801
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2954
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2802
2955
  protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2803
2956
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
2804
2957
  protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
2805
- completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2958
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2806
2959
  protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2807
- completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
2960
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2808
2961
  protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
2809
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2962
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2810
2963
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
2811
- getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
2964
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2812
2965
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
2813
- getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2966
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2814
2967
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
2815
2968
  getValidationRules(): Promise<ValidationRuleDto[]>;
2816
2969
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
2817
- saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2970
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2818
2971
  protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
2819
- saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2972
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2820
2973
  protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
2821
- saveComment(id: string, request: SaveCommentRequest): Promise<void>;
2974
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2822
2975
  protected processSaveComment(response: Response): Promise<void>;
2823
- batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2976
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2824
2977
  protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
2825
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2978
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2826
2979
  protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
2827
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2980
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2828
2981
  protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
2829
2982
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2830
2983
  protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
@@ -2849,7 +3002,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
2849
3002
  createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
2850
3003
  reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2851
3004
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2852
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3005
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2853
3006
  }
2854
3007
  export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
2855
3008
  private http;
@@ -2873,7 +3026,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
2873
3026
  protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2874
3027
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2875
3028
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2876
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3029
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2877
3030
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
2878
3031
  }
2879
3032
  export interface ICompaniesClient {
@@ -3213,99 +3366,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3213
3366
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3214
3367
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3215
3368
  }
3216
- export interface IExternalAccessClient {
3217
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3218
- createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3219
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3220
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3221
- listRoles(): Promise<ExternalRoleDto[]>;
3222
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3223
- deleteCompanyCustomer(tenantId: string): Promise<void>;
3224
- }
3225
- export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
3226
- private http;
3227
- private baseUrl;
3228
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3229
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3230
- });
3231
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3232
- protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
3233
- createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3234
- protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
3235
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3236
- protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
3237
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3238
- protected processDeleteCompanyUser(response: Response): Promise<void>;
3239
- listRoles(): Promise<ExternalRoleDto[]>;
3240
- protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
3241
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3242
- protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
3243
- deleteCompanyCustomer(tenantId: string): Promise<void>;
3244
- protected processDeleteCompanyCustomer(response: Response): Promise<void>;
3245
- }
3246
- export interface IExternalClient {
3247
- listCompanies(): Promise<CompanyDto[]>;
3248
- getCompany(id: string): Promise<CompanyDto>;
3249
- getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3250
- acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3251
- }
3252
- export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
3253
- private http;
3254
- private baseUrl;
3255
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3256
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3257
- });
3258
- listCompanies(): Promise<CompanyDto[]>;
3259
- protected processListCompanies(response: Response): Promise<CompanyDto[]>;
3260
- getCompany(id: string): Promise<CompanyDto>;
3261
- protected processGetCompany(response: Response): Promise<CompanyDto>;
3262
- getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3263
- protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3264
- acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3265
- protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3266
- }
3267
- export interface ISuppliersClient {
3268
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3269
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3270
- deleteSupplierInvite(id: string): Promise<void>;
3271
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3272
- deleteSupplier(id: string): Promise<void>;
3273
- /**
3274
- * Creates a mapping between old supplier id and new supplier id.
3275
- */
3276
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3277
- /**
3278
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3279
- */
3280
- deleteSupplierMappings(): Promise<void>;
3281
- }
3282
- export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
3283
- private http;
3284
- private baseUrl;
3285
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3286
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3287
- });
3288
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3289
- protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3290
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3291
- protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3292
- deleteSupplierInvite(id: string): Promise<void>;
3293
- protected processDeleteSupplierInvite(response: Response): Promise<void>;
3294
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3295
- protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3296
- deleteSupplier(id: string): Promise<void>;
3297
- protected processDeleteSupplier(response: Response): Promise<void>;
3298
- /**
3299
- * Creates a mapping between old supplier id and new supplier id.
3300
- */
3301
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3302
- protected processCreateSupplierMapping(response: Response): Promise<void>;
3303
- /**
3304
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3305
- */
3306
- deleteSupplierMappings(): Promise<void>;
3307
- protected processDeleteSupplierMappings(response: Response): Promise<void>;
3308
- }
3309
3369
  export interface AzureRegionDto {
3310
3370
  displayName: string;
3311
3371
  name: string;
@@ -3328,6 +3388,98 @@ export interface ComponentSettingsDto {
3328
3388
  componentId?: string | null;
3329
3389
  disabledFields?: string[] | null;
3330
3390
  }
3391
+ export interface BuildingFloorDto {
3392
+ companyId?: string | null;
3393
+ name?: string;
3394
+ floor?: string;
3395
+ description?: string | null;
3396
+ featureCollection?: FeatureCollection;
3397
+ }
3398
+ export interface GeoJSONObject {
3399
+ bbox?: number[] | null;
3400
+ crs?: ICRSObject | null;
3401
+ type?: GeoJSONObjectType;
3402
+ }
3403
+ export interface FeatureCollection extends GeoJSONObject {
3404
+ type?: GeoJSONObjectType;
3405
+ features?: Feature[] | null;
3406
+ }
3407
+ export type GeoJSONObjectType = "Point" | "MultiPoint" | "LineString" | "MultiLineString" | "Polygon" | "MultiPolygon" | "GeometryCollection" | "Feature" | "FeatureCollection";
3408
+ export interface FeatureOfIGeometryObjectAndIDictionaryOfStringAndObject extends GeoJSONObject {
3409
+ type?: GeoJSONObjectType;
3410
+ id?: string | null;
3411
+ geometry?: IGeometryObject | null;
3412
+ properties?: {
3413
+ [key: string]: any;
3414
+ } | null;
3415
+ }
3416
+ export interface FeatureOfIGeometryObject extends FeatureOfIGeometryObjectAndIDictionaryOfStringAndObject {
3417
+ }
3418
+ export interface Feature extends FeatureOfIGeometryObject {
3419
+ }
3420
+ export interface IGeometryObject {
3421
+ type?: GeoJSONObjectType;
3422
+ }
3423
+ export interface ICRSObject {
3424
+ type?: CRSType;
3425
+ }
3426
+ export type CRSType = 0 | 1 | 2;
3427
+ export interface CreateBuildingFloor {
3428
+ name?: string;
3429
+ floor?: string;
3430
+ description?: string | null;
3431
+ featureCollection?: FeatureCollection;
3432
+ }
3433
+ export interface UpdateBuildingFloorRequest {
3434
+ description?: string | null;
3435
+ featureCollection?: FeatureCollection;
3436
+ }
3437
+ export interface GateDto {
3438
+ companyId?: string | null;
3439
+ name?: string;
3440
+ description?: string | null;
3441
+ featureCollection?: FeatureCollection;
3442
+ }
3443
+ export interface CreateGate {
3444
+ name?: string;
3445
+ description?: string | null;
3446
+ featureCollection?: FeatureCollection;
3447
+ }
3448
+ export interface UpdateGateRequest {
3449
+ description?: string | null;
3450
+ featureCollection?: FeatureCollection;
3451
+ }
3452
+ export interface ApplicationSpatialResourceDto {
3453
+ companyId?: string | null;
3454
+ externalId?: string;
3455
+ buildingFloorId?: string;
3456
+ featureCollection?: FeatureCollection;
3457
+ }
3458
+ export interface CreateResource {
3459
+ externalId?: string;
3460
+ buildingFloorId?: string;
3461
+ featureCollection?: FeatureCollection;
3462
+ }
3463
+ export interface UpdateResourceRequest {
3464
+ buildingFloorId?: string;
3465
+ featureCollection?: FeatureCollection;
3466
+ }
3467
+ export interface FactoryDto {
3468
+ companyId?: string | null;
3469
+ centerPoint?: Point;
3470
+ }
3471
+ export interface Point extends GeoJSONObject {
3472
+ type?: GeoJSONObjectType;
3473
+ coordinates?: IPosition | null;
3474
+ }
3475
+ export interface IPosition {
3476
+ altitude?: number | null;
3477
+ latitude?: number;
3478
+ longitude?: number;
3479
+ }
3480
+ export interface UpdateFactory {
3481
+ centerPoint?: Point;
3482
+ }
3331
3483
  export interface UtilizationListDto {
3332
3484
  machines?: MachineUtilizationDto[] | null;
3333
3485
  }
@@ -3539,8 +3691,6 @@ export interface UserDetailsDto {
3539
3691
  isExternalUser?: boolean;
3540
3692
  isBetaTester?: boolean | null;
3541
3693
  hasAccessToIgnos?: boolean;
3542
- isInvitedUser?: boolean;
3543
- isSupplier?: boolean;
3544
3694
  }
3545
3695
  export interface UserDto {
3546
3696
  id?: string | null;
@@ -5408,6 +5558,97 @@ export interface DocumentGeneratorTypeDto {
5408
5558
  key: string;
5409
5559
  description: string;
5410
5560
  }
5561
+ export interface CompanyUserDto {
5562
+ companyId?: string | null;
5563
+ username?: string | null;
5564
+ name?: string | null;
5565
+ roles?: string[] | null;
5566
+ }
5567
+ export interface CreateCompanyUserRequest {
5568
+ username: string;
5569
+ name: string;
5570
+ roles: string[];
5571
+ companyId?: string | null;
5572
+ }
5573
+ export interface UpdateCompanyUserRequest {
5574
+ name: string;
5575
+ roles: string[];
5576
+ companyId?: string | null;
5577
+ }
5578
+ export interface ExternalRoleDto {
5579
+ id: string;
5580
+ name: string;
5581
+ }
5582
+ export interface CompanyCustomerDto {
5583
+ customerTenantId?: string | null;
5584
+ customerAzureAdTenantId?: string | null;
5585
+ customerName?: string | null;
5586
+ supplierId?: string | null;
5587
+ supplierName?: string | null;
5588
+ }
5589
+ export interface InviteDto {
5590
+ tenantId: string;
5591
+ companyName: string;
5592
+ id: string;
5593
+ supplierId: string;
5594
+ supplierName: string;
5595
+ username: string;
5596
+ deadline: Date;
5597
+ createdTime: Date;
5598
+ createdBy: string;
5599
+ }
5600
+ export interface CompanyDto {
5601
+ id?: string | null;
5602
+ name?: string | null;
5603
+ organizationNumber?: string | null;
5604
+ country?: string | null;
5605
+ tenantId?: string | null;
5606
+ }
5607
+ export interface AcceptSupplierInviteRequest {
5608
+ tenantId: string;
5609
+ existingCompanyId?: string | null;
5610
+ companyName?: string | null;
5611
+ organizationNumber?: string | null;
5612
+ threeLetterIsoCountry?: string | null;
5613
+ }
5614
+ export interface SupplierInviteDto {
5615
+ id: string;
5616
+ supplierId: string;
5617
+ name: string;
5618
+ username: string;
5619
+ deadline: Date;
5620
+ createdTime: Date;
5621
+ createdBy: string;
5622
+ }
5623
+ export interface CreateSupplierInvite {
5624
+ supplierId: string;
5625
+ name: string;
5626
+ username: string;
5627
+ deadline: Date;
5628
+ }
5629
+ export interface ExternalSupplierDto {
5630
+ id: string;
5631
+ name: string;
5632
+ companyId: string;
5633
+ active: boolean;
5634
+ }
5635
+ export interface ImportSupplier {
5636
+ supplierId: string;
5637
+ name: string;
5638
+ organizationNumber?: string | null;
5639
+ threeLetterIsoCountry: string;
5640
+ users: ImportSupplierUserDto[];
5641
+ }
5642
+ export interface ImportSupplierUserDto {
5643
+ username: string;
5644
+ name: string;
5645
+ roles: string[];
5646
+ }
5647
+ export interface CreateSupplierMapping {
5648
+ companyId: string;
5649
+ existingSupplierId: string;
5650
+ newSupplierId: string;
5651
+ }
5411
5652
  export interface CncMachineTransferDto {
5412
5653
  id: string;
5413
5654
  cncMachineOperationId?: string | null;
@@ -7545,7 +7786,7 @@ export interface ImaSpecificationResultLineDto {
7545
7786
  status: ImaSpecificationResultLineStatus;
7546
7787
  override?: ImaResultLineOverrideDto | null;
7547
7788
  }
7548
- export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenheit" | "Mpa" | "Hbw" | "NotSet";
7789
+ export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenheit" | "Mpa" | "Hbw" | "Minutes" | "NotSet";
7549
7790
  export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
7550
7791
  export interface ImaSpecificationMechanicalResultsDto {
7551
7792
  yieldStrength?: ImaSpecificationResultLineDto | null;
@@ -8565,6 +8806,7 @@ export interface ListMeasurementFormsRequest {
8565
8806
  pageSize?: number | null;
8566
8807
  search?: string | null;
8567
8808
  continuationToken?: string | null;
8809
+ tenantId?: string | null;
8568
8810
  inactive?: boolean | null;
8569
8811
  includeInactiveSupplierAccess?: boolean | null;
8570
8812
  }
@@ -8760,6 +9002,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
8760
9002
  externalOrderNumber?: string | null;
8761
9003
  }
8762
9004
  export interface ExportDimensionReportV2Request {
9005
+ tenantId?: string | null;
8763
9006
  type: DimensionReportType;
8764
9007
  extras?: DimensionReportExtras | null;
8765
9008
  specificSerialNumbers?: string[] | null;
@@ -9100,79 +9343,6 @@ export interface SetDiscussionLastReadRequest {
9100
9343
  operationId?: string | null;
9101
9344
  resourceId?: string | null;
9102
9345
  }
9103
- export interface CompanyUserDto {
9104
- companyId: string;
9105
- userObjectId: string;
9106
- username?: string | null;
9107
- name?: string | null;
9108
- roles: string[];
9109
- }
9110
- export interface CreateCompanyUser {
9111
- username: string;
9112
- name: string;
9113
- roles: string[];
9114
- companyId?: string | null;
9115
- }
9116
- export interface UpdateCompanyUserRequest {
9117
- roles: string[];
9118
- companyId?: string | null;
9119
- }
9120
- export interface ExternalRoleDto {
9121
- id: string;
9122
- name: string;
9123
- }
9124
- export interface CompanyCustomerDto {
9125
- customerTenantId?: string | null;
9126
- customerAzureAdTenantId?: string | null;
9127
- customerName?: string | null;
9128
- supplierId?: string | null;
9129
- supplierName?: string | null;
9130
- customerIgnosPortalPrefix?: string | null;
9131
- }
9132
- export interface CompanyDto {
9133
- id?: string;
9134
- name?: string;
9135
- organizationNumber?: string | null;
9136
- country?: string;
9137
- tenantId?: string | null;
9138
- }
9139
- export interface SupplierInviteDto {
9140
- id: string;
9141
- supplierId: string;
9142
- supplierName?: string | null;
9143
- customerName?: string | null;
9144
- userId: string;
9145
- userName?: string | null;
9146
- companyId?: string | null;
9147
- deadline: Date;
9148
- acceptedTimestamp?: Date | null;
9149
- createdTime: Date;
9150
- createdBy: string;
9151
- }
9152
- export interface AcceptSupplierInvite {
9153
- companyName?: string;
9154
- organizationNumber?: string;
9155
- threeLetterIsoCountry?: string;
9156
- }
9157
- export interface CreateSupplierInvite {
9158
- supplierId: string;
9159
- supplierName?: string | null;
9160
- username: string;
9161
- invitedName: string;
9162
- deadline: Date;
9163
- existingCompanyId?: string | null;
9164
- }
9165
- export interface ExternalSupplierDto {
9166
- id: string;
9167
- name: string;
9168
- companyId: string;
9169
- active: boolean;
9170
- }
9171
- export interface CreateSupplierMapping {
9172
- companyId: string;
9173
- existingSupplierId: string;
9174
- newSupplierId: string;
9175
- }
9176
9346
  export interface FileParameter {
9177
9347
  data: any;
9178
9348
  fileName: string;