@ignos/api-client 20260615.157.1-alpha → 20260621.159.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.
@@ -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>;
@@ -1502,6 +1499,99 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
1502
1499
  listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
1503
1500
  protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
1504
1501
  }
1502
+ export interface IExternalAccessClient {
1503
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1504
+ createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1505
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1506
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1507
+ listRoles(): Promise<ExternalRoleDto[]>;
1508
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1509
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
1510
+ }
1511
+ export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
1512
+ private http;
1513
+ private baseUrl;
1514
+ constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
1515
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1516
+ });
1517
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1518
+ protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
1519
+ createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1520
+ protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
1521
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1522
+ protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
1523
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1524
+ protected processDeleteCompanyUser(response: Response): Promise<void>;
1525
+ listRoles(): Promise<ExternalRoleDto[]>;
1526
+ protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
1527
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1528
+ protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
1529
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
1530
+ protected processDeleteCompanyCustomer(response: Response): Promise<void>;
1531
+ }
1532
+ export interface IExternalClient {
1533
+ listInvites(): Promise<InviteDto[]>;
1534
+ acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1535
+ listCompanies(): Promise<CompanyDto[]>;
1536
+ }
1537
+ export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
1538
+ private http;
1539
+ private baseUrl;
1540
+ constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
1541
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1542
+ });
1543
+ listInvites(): Promise<InviteDto[]>;
1544
+ protected processListInvites(response: Response): Promise<InviteDto[]>;
1545
+ acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1546
+ protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
1547
+ listCompanies(): Promise<CompanyDto[]>;
1548
+ protected processListCompanies(response: Response): Promise<CompanyDto[]>;
1549
+ }
1550
+ export interface ISuppliersClient {
1551
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
1552
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1553
+ deleteSupplierInvite(id: string): Promise<void>;
1554
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
1555
+ deleteSupplier(id: string): Promise<void>;
1556
+ importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1557
+ /**
1558
+ * Creates a mapping between old supplier id and new supplier id.
1559
+ */
1560
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1561
+ /**
1562
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
1563
+ */
1564
+ deleteSupplierMappings(): Promise<void>;
1565
+ }
1566
+ export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
1567
+ private http;
1568
+ private baseUrl;
1569
+ constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
1570
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1571
+ });
1572
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
1573
+ protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
1574
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1575
+ protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
1576
+ deleteSupplierInvite(id: string): Promise<void>;
1577
+ protected processDeleteSupplierInvite(response: Response): Promise<void>;
1578
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
1579
+ protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
1580
+ deleteSupplier(id: string): Promise<void>;
1581
+ protected processDeleteSupplier(response: Response): Promise<void>;
1582
+ importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1583
+ protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
1584
+ /**
1585
+ * Creates a mapping between old supplier id and new supplier id.
1586
+ */
1587
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1588
+ protected processCreateSupplierMapping(response: Response): Promise<void>;
1589
+ /**
1590
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
1591
+ */
1592
+ deleteSupplierMappings(): Promise<void>;
1593
+ protected processDeleteSupplierMappings(response: Response): Promise<void>;
1594
+ }
1505
1595
  export interface ICncFileTransferClient {
1506
1596
  startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1507
1597
  startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
@@ -2344,6 +2434,18 @@ export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOr
2344
2434
  getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
2345
2435
  protected processGetPrintableLabels(response: Response): Promise<DownloadDto>;
2346
2436
  }
2437
+ export interface IMesPlannerClient {
2438
+ getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
2439
+ }
2440
+ export declare class MesPlannerClient extends AuthorizedApiBase implements IMesPlannerClient {
2441
+ private http;
2442
+ private baseUrl;
2443
+ constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
2444
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2445
+ });
2446
+ getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
2447
+ protected processGetPlan(response: Response): Promise<PlannerPlanDto>;
2448
+ }
2347
2449
  export interface IMesProductionOrderClient {
2348
2450
  getProductionOrder(id: string): Promise<ProductionOrderDto>;
2349
2451
  getProductionOrderBom(id: string, operation: number | null | undefined): Promise<ProductionOrderBomDto[]>;
@@ -2906,22 +3008,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
2906
3008
  protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
2907
3009
  }
2908
3010
  export interface IMeasurementFormsInstancesClient {
2909
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3011
+ 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>;
2910
3012
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2911
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3013
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2912
3014
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
2913
- completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2914
- completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
2915
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2916
- getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
2917
- getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3015
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3016
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
3017
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3018
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
3019
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2918
3020
  getValidationRules(): Promise<ValidationRuleDto[]>;
2919
- saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2920
- saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2921
- saveComment(id: string, request: SaveCommentRequest): Promise<void>;
2922
- batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2923
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2924
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3021
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3022
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3023
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
3024
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3025
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3026
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2925
3027
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2926
3028
  upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
2927
3029
  removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
@@ -2937,37 +3039,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
2937
3039
  constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
2938
3040
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2939
3041
  });
2940
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3042
+ 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>;
2941
3043
  protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2942
3044
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2943
3045
  protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2944
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3046
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2945
3047
  protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2946
3048
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
2947
3049
  protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
2948
- completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3050
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2949
3051
  protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2950
- completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
3052
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
2951
3053
  protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
2952
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3054
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2953
3055
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
2954
- getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
3056
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2955
3057
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
2956
- getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3058
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2957
3059
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
2958
3060
  getValidationRules(): Promise<ValidationRuleDto[]>;
2959
3061
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
2960
- saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3062
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2961
3063
  protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
2962
- saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3064
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2963
3065
  protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
2964
- saveComment(id: string, request: SaveCommentRequest): Promise<void>;
3066
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
2965
3067
  protected processSaveComment(response: Response): Promise<void>;
2966
- batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3068
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2967
3069
  protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
2968
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3070
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2969
3071
  protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
2970
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3072
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2971
3073
  protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
2972
3074
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2973
3075
  protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
@@ -2992,7 +3094,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
2992
3094
  createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
2993
3095
  reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2994
3096
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2995
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3097
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2996
3098
  }
2997
3099
  export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
2998
3100
  private http;
@@ -3016,7 +3118,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
3016
3118
  protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3017
3119
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3018
3120
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3019
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3121
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
3020
3122
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
3021
3123
  }
3022
3124
  export interface ICompaniesClient {
@@ -3356,117 +3458,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3356
3458
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3357
3459
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3358
3460
  }
3359
- export interface IExternalAccessClient {
3360
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3361
- createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3362
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3363
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3364
- migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
3365
- listRoles(): Promise<ExternalRoleDto[]>;
3366
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3367
- deleteCompanyCustomer(tenantId: string): Promise<void>;
3368
- }
3369
- export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
3370
- private http;
3371
- private baseUrl;
3372
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3373
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3374
- });
3375
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3376
- protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
3377
- createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3378
- protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
3379
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3380
- protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
3381
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3382
- protected processDeleteCompanyUser(response: Response): Promise<void>;
3383
- migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
3384
- protected processMigrateLegacyCompanyUsersToEntra(response: Response): Promise<CompanyUserDto[]>;
3385
- listRoles(): Promise<ExternalRoleDto[]>;
3386
- protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
3387
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3388
- protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
3389
- deleteCompanyCustomer(tenantId: string): Promise<void>;
3390
- protected processDeleteCompanyCustomer(response: Response): Promise<void>;
3391
- }
3392
- export interface IExternalClient {
3393
- listCompanies(): Promise<CompanyDto[]>;
3394
- getCompany(id: string): Promise<CompanyDto>;
3395
- getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3396
- acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
3397
- acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
3398
- acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
3399
- listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
3400
- }
3401
- export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
3402
- private http;
3403
- private baseUrl;
3404
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3405
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3406
- });
3407
- listCompanies(): Promise<CompanyDto[]>;
3408
- protected processListCompanies(response: Response): Promise<CompanyDto[]>;
3409
- getCompany(id: string): Promise<CompanyDto>;
3410
- protected processGetCompany(response: Response): Promise<CompanyDto>;
3411
- getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3412
- protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3413
- acceptSupplierInviteNewCompany(request: AcceptSupplierInviteNewCompany): Promise<SupplierInviteDto>;
3414
- protected processAcceptSupplierInviteNewCompany(response: Response): Promise<SupplierInviteDto>;
3415
- acceptSupplierInviteExistingCompany(request: AcceptSupplierInviteExistingCompany): Promise<SupplierInviteDto>;
3416
- protected processAcceptSupplierInviteExistingCompany(response: Response): Promise<SupplierInviteDto>;
3417
- acceptSupplierInviteCustomer(request: AcceptSupplierInviteCustomer): Promise<SupplierInviteDto>;
3418
- protected processAcceptSupplierInviteCustomer(response: Response): Promise<SupplierInviteDto>;
3419
- listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
3420
- protected processListTenantsWithSuppliers(response: Response): Promise<TenantWithSupplierDto[]>;
3421
- }
3422
- export interface ISuppliersClient {
3423
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3424
- createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
3425
- deleteSupplierInvite(id: string): Promise<void>;
3426
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3427
- deleteSupplier(id: string): Promise<void>;
3428
- /**
3429
- * Creates a mapping between old supplier id and new supplier id.
3430
- */
3431
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3432
- /**
3433
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3434
- */
3435
- deleteSupplierMappings(): Promise<void>;
3436
- lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
3437
- getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
3438
- }
3439
- export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
3440
- private http;
3441
- private baseUrl;
3442
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3443
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3444
- });
3445
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3446
- protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3447
- createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
3448
- protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3449
- deleteSupplierInvite(id: string): Promise<void>;
3450
- protected processDeleteSupplierInvite(response: Response): Promise<void>;
3451
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3452
- protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3453
- deleteSupplier(id: string): Promise<void>;
3454
- protected processDeleteSupplier(response: Response): Promise<void>;
3455
- /**
3456
- * Creates a mapping between old supplier id and new supplier id.
3457
- */
3458
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3459
- protected processCreateSupplierMapping(response: Response): Promise<void>;
3460
- /**
3461
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3462
- */
3463
- deleteSupplierMappings(): Promise<void>;
3464
- protected processDeleteSupplierMappings(response: Response): Promise<void>;
3465
- lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
3466
- protected processLookupOrganization(response: Response): Promise<OrganizationDto>;
3467
- getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
3468
- protected processGetOrganizationLookupSupportedCountries(response: Response): Promise<CountryDto[]>;
3469
- }
3470
3461
  export interface AzureRegionDto {
3471
3462
  displayName: string;
3472
3463
  name: string;
@@ -3778,9 +3769,6 @@ export interface UserDetailsDto {
3778
3769
  isExternalUser?: boolean;
3779
3770
  isBetaTester?: boolean | null;
3780
3771
  hasAccessToIgnos?: boolean;
3781
- isInvitedUser?: boolean;
3782
- isSupplier?: boolean;
3783
- companyId?: string | null;
3784
3772
  }
3785
3773
  export interface UserDto {
3786
3774
  id?: string | null;
@@ -5759,6 +5747,97 @@ export interface DocumentGeneratorTypeDto {
5759
5747
  key: string;
5760
5748
  description: string;
5761
5749
  }
5750
+ export interface CompanyUserDto {
5751
+ companyId?: string | null;
5752
+ username?: string | null;
5753
+ name?: string | null;
5754
+ roles?: string[] | null;
5755
+ }
5756
+ export interface CreateCompanyUserRequest {
5757
+ username: string;
5758
+ name: string;
5759
+ roles: string[];
5760
+ companyId?: string | null;
5761
+ }
5762
+ export interface UpdateCompanyUserRequest {
5763
+ name: string;
5764
+ roles: string[];
5765
+ companyId?: string | null;
5766
+ }
5767
+ export interface ExternalRoleDto {
5768
+ id: string;
5769
+ name: string;
5770
+ }
5771
+ export interface CompanyCustomerDto {
5772
+ customerTenantId?: string | null;
5773
+ customerAzureAdTenantId?: string | null;
5774
+ customerName?: string | null;
5775
+ supplierId?: string | null;
5776
+ supplierName?: string | null;
5777
+ }
5778
+ export interface InviteDto {
5779
+ tenantId: string;
5780
+ companyName: string;
5781
+ id: string;
5782
+ supplierId: string;
5783
+ supplierName: string;
5784
+ username: string;
5785
+ deadline: Date;
5786
+ createdTime: Date;
5787
+ createdBy: string;
5788
+ }
5789
+ export interface CompanyDto {
5790
+ id?: string | null;
5791
+ name?: string | null;
5792
+ organizationNumber?: string | null;
5793
+ country?: string | null;
5794
+ tenantId?: string | null;
5795
+ }
5796
+ export interface AcceptSupplierInviteRequest {
5797
+ tenantId: string;
5798
+ existingCompanyId?: string | null;
5799
+ companyName?: string | null;
5800
+ organizationNumber?: string | null;
5801
+ threeLetterIsoCountry?: string | null;
5802
+ }
5803
+ export interface SupplierInviteDto {
5804
+ id: string;
5805
+ supplierId: string;
5806
+ name: string;
5807
+ username: string;
5808
+ deadline: Date;
5809
+ createdTime: Date;
5810
+ createdBy: string;
5811
+ }
5812
+ export interface CreateSupplierInvite {
5813
+ supplierId: string;
5814
+ name: string;
5815
+ username: string;
5816
+ deadline: Date;
5817
+ }
5818
+ export interface ExternalSupplierDto {
5819
+ id: string;
5820
+ name: string;
5821
+ companyId: string;
5822
+ active: boolean;
5823
+ }
5824
+ export interface ImportSupplier {
5825
+ supplierId: string;
5826
+ name: string;
5827
+ organizationNumber?: string | null;
5828
+ threeLetterIsoCountry: string;
5829
+ users: ImportSupplierUserDto[];
5830
+ }
5831
+ export interface ImportSupplierUserDto {
5832
+ username: string;
5833
+ name: string;
5834
+ roles: string[];
5835
+ }
5836
+ export interface CreateSupplierMapping {
5837
+ companyId: string;
5838
+ existingSupplierId: string;
5839
+ newSupplierId: string;
5840
+ }
5762
5841
  export interface CncMachineTransferDto {
5763
5842
  id: string;
5764
5843
  cncMachineOperationId?: string | null;
@@ -7152,6 +7231,39 @@ export interface LabelId {
7152
7231
  parcelId: string;
7153
7232
  trackingId?: string | null;
7154
7233
  }
7234
+ export interface PlannerPlanDto {
7235
+ resourceGroupId: string;
7236
+ sequence: PlannerOperationDto[];
7237
+ lockedCount: number;
7238
+ planSavedAt?: Date | null;
7239
+ isDraft: boolean;
7240
+ hasUserDraft: boolean;
7241
+ }
7242
+ export interface PlannerOperationDto {
7243
+ id: string;
7244
+ productionOrderNumber: string;
7245
+ operation: number;
7246
+ operationName: string;
7247
+ plannedStart: Date;
7248
+ plannedEnd?: Date | null;
7249
+ status: OperationStatusDto;
7250
+ resourceId: string;
7251
+ resourceName: string;
7252
+ resourceDepartmentNumber?: string | null;
7253
+ resourceDepartmentName?: string | null;
7254
+ partNumber: string;
7255
+ partName?: string | null;
7256
+ partMaterial?: string | null;
7257
+ quantity: number;
7258
+ producedQuantity: number;
7259
+ totalPlannedHours?: number;
7260
+ totalUsedHours?: number;
7261
+ customerName?: string | null;
7262
+ project?: WorkOrderProjectDto | null;
7263
+ sequenceNumber: number;
7264
+ isManuallyLocked: boolean;
7265
+ weekGroup: string;
7266
+ }
7155
7267
  export interface ProductionOrderDto {
7156
7268
  id: string;
7157
7269
  companyId: string;
@@ -9059,6 +9171,7 @@ export interface ListMeasurementFormsRequest {
9059
9171
  pageSize?: number | null;
9060
9172
  search?: string | null;
9061
9173
  continuationToken?: string | null;
9174
+ tenantId?: string | null;
9062
9175
  inactive?: boolean | null;
9063
9176
  includeInactiveSupplierAccess?: boolean | null;
9064
9177
  }
@@ -9254,6 +9367,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
9254
9367
  externalOrderNumber?: string | null;
9255
9368
  }
9256
9369
  export interface ExportDimensionReportV2Request {
9370
+ tenantId?: string | null;
9257
9371
  type: DimensionReportType;
9258
9372
  extras?: DimensionReportExtras | null;
9259
9373
  specificSerialNumbers?: string[] | null;
@@ -9596,93 +9710,6 @@ export interface SetDiscussionLastReadRequest {
9596
9710
  operationId?: string | null;
9597
9711
  resourceId?: string | null;
9598
9712
  }
9599
- export interface CompanyUserDto {
9600
- companyId: string;
9601
- userObjectId: string;
9602
- username?: string | null;
9603
- name?: string | null;
9604
- roles: string[];
9605
- }
9606
- export interface CreateCompanyUser {
9607
- username: string;
9608
- name: string;
9609
- roles: string[];
9610
- companyId?: string | null;
9611
- }
9612
- export interface UpdateCompanyUserRequest {
9613
- roles: string[];
9614
- companyId?: string | null;
9615
- }
9616
- export interface ExternalRoleDto {
9617
- id: string;
9618
- name: string;
9619
- }
9620
- export interface CompanyCustomerDto {
9621
- customerTenantId?: string | null;
9622
- customerAzureAdTenantId?: string | null;
9623
- customerName?: string | null;
9624
- supplierId?: string | null;
9625
- supplierName?: string | null;
9626
- customerIgnosPortalPrefix?: string | null;
9627
- }
9628
- export interface CompanyDto {
9629
- id: string;
9630
- name: string;
9631
- organizationNumber?: string | null;
9632
- country: string;
9633
- tenantId?: string | null;
9634
- }
9635
- export interface SupplierInviteDto {
9636
- id: string;
9637
- supplierId: string;
9638
- supplierName?: string | null;
9639
- customerName?: string | null;
9640
- userId: string;
9641
- userName?: string | null;
9642
- acceptedTimestamp?: Date | null;
9643
- createdTime: Date;
9644
- createdBy: string;
9645
- }
9646
- export interface AcceptSupplierInviteNewCompany {
9647
- companyName?: string;
9648
- organizationNumber?: string;
9649
- threeLetterIsoCountry?: string;
9650
- }
9651
- export interface AcceptSupplierInviteExistingCompany {
9652
- companyId?: string;
9653
- }
9654
- export interface AcceptSupplierInviteCustomer {
9655
- tenantId?: string;
9656
- organizationNumber?: string;
9657
- }
9658
- export interface TenantWithSupplierDto {
9659
- tenantId: string;
9660
- customerName: string;
9661
- supplierTenantEntraId: string;
9662
- }
9663
- export interface CreateSupplierInviteRequest {
9664
- supplierId: string;
9665
- threeLetterIsoCountry: string;
9666
- organizationNumber: string;
9667
- username: string;
9668
- invitedName: string;
9669
- }
9670
- export interface ExternalSupplierDto {
9671
- id: string;
9672
- name: string;
9673
- companyId: string;
9674
- active: boolean;
9675
- }
9676
- export interface CreateSupplierMapping {
9677
- companyId: string;
9678
- existingSupplierId: string;
9679
- newSupplierId: string;
9680
- }
9681
- export interface OrganizationDto {
9682
- name?: string;
9683
- postalAddress?: string | null;
9684
- registeredAddress?: string | null;
9685
- }
9686
9713
  export type FeatureCollectionType = "FeatureCollection";
9687
9714
  export interface Features {
9688
9715
  type: FeaturesType;