@ignos/api-client 20260706.176.1-alpha → 20260707.178.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,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>;
@@ -1517,99 +1520,6 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
1517
1520
  listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
1518
1521
  protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
1519
1522
  }
1520
- export interface IExternalAccessClient {
1521
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1522
- createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1523
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1524
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1525
- listRoles(): Promise<ExternalRoleDto[]>;
1526
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1527
- deleteCompanyCustomer(tenantId: string): Promise<void>;
1528
- }
1529
- export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
1530
- private http;
1531
- private baseUrl;
1532
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
1533
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1534
- });
1535
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1536
- protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
1537
- createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1538
- protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
1539
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1540
- protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
1541
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1542
- protected processDeleteCompanyUser(response: Response): Promise<void>;
1543
- listRoles(): Promise<ExternalRoleDto[]>;
1544
- protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
1545
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1546
- protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
1547
- deleteCompanyCustomer(tenantId: string): Promise<void>;
1548
- protected processDeleteCompanyCustomer(response: Response): Promise<void>;
1549
- }
1550
- export interface IExternalClient {
1551
- listInvites(): Promise<InviteDto[]>;
1552
- acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1553
- listCompanies(): Promise<CompanyDto[]>;
1554
- }
1555
- export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
1556
- private http;
1557
- private baseUrl;
1558
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
1559
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1560
- });
1561
- listInvites(): Promise<InviteDto[]>;
1562
- protected processListInvites(response: Response): Promise<InviteDto[]>;
1563
- acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1564
- protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
1565
- listCompanies(): Promise<CompanyDto[]>;
1566
- protected processListCompanies(response: Response): Promise<CompanyDto[]>;
1567
- }
1568
- export interface ISuppliersClient {
1569
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
1570
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1571
- deleteSupplierInvite(id: string): Promise<void>;
1572
- listSuppliers(): Promise<ExternalSupplierDto[]>;
1573
- deleteSupplier(id: string): Promise<void>;
1574
- importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1575
- /**
1576
- * Creates a mapping between old supplier id and new supplier id.
1577
- */
1578
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1579
- /**
1580
- * Delete all supplier mappings between old supplier ids and new supplier ids.
1581
- */
1582
- deleteSupplierMappings(): Promise<void>;
1583
- }
1584
- export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
1585
- private http;
1586
- private baseUrl;
1587
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
1588
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1589
- });
1590
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
1591
- protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
1592
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1593
- protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
1594
- deleteSupplierInvite(id: string): Promise<void>;
1595
- protected processDeleteSupplierInvite(response: Response): Promise<void>;
1596
- listSuppliers(): Promise<ExternalSupplierDto[]>;
1597
- protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
1598
- deleteSupplier(id: string): Promise<void>;
1599
- protected processDeleteSupplier(response: Response): Promise<void>;
1600
- importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1601
- protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
1602
- /**
1603
- * Creates a mapping between old supplier id and new supplier id.
1604
- */
1605
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1606
- protected processCreateSupplierMapping(response: Response): Promise<void>;
1607
- /**
1608
- * Delete all supplier mappings between old supplier ids and new supplier ids.
1609
- */
1610
- deleteSupplierMappings(): Promise<void>;
1611
- protected processDeleteSupplierMappings(response: Response): Promise<void>;
1612
- }
1613
1523
  export interface ICncFileTransferClient {
1614
1524
  startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1615
1525
  startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
@@ -2819,21 +2729,6 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
2819
2729
  listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2820
2730
  protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2821
2731
  }
2822
- export interface IInspectSchemaCreatorClient {
2823
- getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2824
- updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2825
- }
2826
- export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
2827
- private http;
2828
- private baseUrl;
2829
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
2830
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2831
- });
2832
- getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2833
- protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2834
- updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2835
- protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2836
- }
2837
2732
  export interface IMeasurementFormSchemasAdminClient {
2838
2733
  getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
2839
2734
  createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
@@ -3084,22 +2979,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
3084
2979
  protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
3085
2980
  }
3086
2981
  export interface IMeasurementFormsInstancesClient {
3087
- 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>;
2982
+ listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3088
2983
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3089
- getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2984
+ getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3090
2985
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
3091
- completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3092
- completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
3093
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3094
- getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
3095
- getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2986
+ completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2987
+ completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
2988
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2989
+ getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
2990
+ getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3096
2991
  getValidationRules(): Promise<ValidationRuleDto[]>;
3097
- saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3098
- saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3099
- saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
3100
- batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3101
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3102
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2992
+ saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2993
+ saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
2994
+ saveComment(id: string, request: SaveCommentRequest): Promise<void>;
2995
+ batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
2996
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
2997
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3103
2998
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
3104
2999
  upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
3105
3000
  removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
@@ -3115,37 +3010,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
3115
3010
  constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3116
3011
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3117
3012
  });
3118
- 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>;
3013
+ listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3119
3014
  protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3120
3015
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3121
3016
  protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3122
- getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3017
+ getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3123
3018
  protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3124
3019
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
3125
3020
  protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
3126
- completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3021
+ completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3127
3022
  protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3128
- completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
3023
+ completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
3129
3024
  protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
3130
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3025
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3131
3026
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
3132
- getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
3027
+ getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
3133
3028
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
3134
- getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3029
+ getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3135
3030
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
3136
3031
  getValidationRules(): Promise<ValidationRuleDto[]>;
3137
3032
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
3138
- saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3033
+ saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3139
3034
  protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
3140
- saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3035
+ saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3141
3036
  protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
3142
- saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
3037
+ saveComment(id: string, request: SaveCommentRequest): Promise<void>;
3143
3038
  protected processSaveComment(response: Response): Promise<void>;
3144
- batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3039
+ batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3145
3040
  protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
3146
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3041
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3147
3042
  protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
3148
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3043
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3149
3044
  protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
3150
3045
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
3151
3046
  protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
@@ -3170,7 +3065,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
3170
3065
  createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
3171
3066
  reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3172
3067
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3173
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
3068
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3174
3069
  }
3175
3070
  export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
3176
3071
  private http;
@@ -3194,7 +3089,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
3194
3089
  protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3195
3090
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3196
3091
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3197
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
3092
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3198
3093
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
3199
3094
  }
3200
3095
  export interface ICompaniesClient {
@@ -3534,6 +3429,111 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3534
3429
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3535
3430
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3536
3431
  }
3432
+ export interface IExternalAccessClient {
3433
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3434
+ createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3435
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3436
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3437
+ migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
3438
+ listRoles(): Promise<ExternalRoleDto[]>;
3439
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3440
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
3441
+ }
3442
+ export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
3443
+ private http;
3444
+ private baseUrl;
3445
+ constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3446
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3447
+ });
3448
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3449
+ protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
3450
+ createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3451
+ protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
3452
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3453
+ protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
3454
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3455
+ protected processDeleteCompanyUser(response: Response): Promise<void>;
3456
+ migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
3457
+ protected processMigrateLegacyCompanyUsersToEntra(response: Response): Promise<CompanyUserDto[]>;
3458
+ listRoles(): Promise<ExternalRoleDto[]>;
3459
+ protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
3460
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3461
+ protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
3462
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
3463
+ protected processDeleteCompanyCustomer(response: Response): Promise<void>;
3464
+ }
3465
+ export interface IExternalClient {
3466
+ listCompanies(): Promise<CompanyDto[]>;
3467
+ getCompany(id: string): Promise<CompanyDto>;
3468
+ getCurrentSupplierInvite(): Promise<CurrentSupplierInviteDto>;
3469
+ acceptSupplierInvite(acceptingTenantId: string | null | undefined): Promise<SupplierInviteDto>;
3470
+ listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
3471
+ }
3472
+ export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
3473
+ private http;
3474
+ private baseUrl;
3475
+ constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3476
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3477
+ });
3478
+ listCompanies(): Promise<CompanyDto[]>;
3479
+ protected processListCompanies(response: Response): Promise<CompanyDto[]>;
3480
+ getCompany(id: string): Promise<CompanyDto>;
3481
+ protected processGetCompany(response: Response): Promise<CompanyDto>;
3482
+ getCurrentSupplierInvite(): Promise<CurrentSupplierInviteDto>;
3483
+ protected processGetCurrentSupplierInvite(response: Response): Promise<CurrentSupplierInviteDto>;
3484
+ acceptSupplierInvite(acceptingTenantId: string | null | undefined): Promise<SupplierInviteDto>;
3485
+ protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3486
+ listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
3487
+ protected processListTenantsWithSuppliers(response: Response): Promise<TenantWithSupplierDto[]>;
3488
+ }
3489
+ export interface ISuppliersClient {
3490
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
3491
+ createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
3492
+ deleteSupplierInvite(id: string): Promise<void>;
3493
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
3494
+ deleteSupplier(id: string): Promise<void>;
3495
+ /**
3496
+ * Creates a mapping between old supplier id and new supplier id.
3497
+ */
3498
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3499
+ /**
3500
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
3501
+ */
3502
+ deleteSupplierMappings(): Promise<void>;
3503
+ lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
3504
+ getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
3505
+ }
3506
+ export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
3507
+ private http;
3508
+ private baseUrl;
3509
+ constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3510
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3511
+ });
3512
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
3513
+ protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3514
+ createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
3515
+ protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3516
+ deleteSupplierInvite(id: string): Promise<void>;
3517
+ protected processDeleteSupplierInvite(response: Response): Promise<void>;
3518
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
3519
+ protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3520
+ deleteSupplier(id: string): Promise<void>;
3521
+ protected processDeleteSupplier(response: Response): Promise<void>;
3522
+ /**
3523
+ * Creates a mapping between old supplier id and new supplier id.
3524
+ */
3525
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3526
+ protected processCreateSupplierMapping(response: Response): Promise<void>;
3527
+ /**
3528
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
3529
+ */
3530
+ deleteSupplierMappings(): Promise<void>;
3531
+ protected processDeleteSupplierMappings(response: Response): Promise<void>;
3532
+ lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
3533
+ protected processLookupOrganization(response: Response): Promise<OrganizationDto>;
3534
+ getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
3535
+ protected processGetOrganizationLookupSupportedCountries(response: Response): Promise<CountryDto[]>;
3536
+ }
3537
3537
  export interface AzureRegionDto {
3538
3538
  displayName: string;
3539
3539
  name: string;
@@ -3845,6 +3845,9 @@ export interface UserDetailsDto {
3845
3845
  isExternalUser?: boolean;
3846
3846
  isBetaTester?: boolean | null;
3847
3847
  hasAccessToIgnos?: boolean;
3848
+ isInvitedUser?: boolean;
3849
+ isSupplier?: boolean;
3850
+ companyId?: string | null;
3848
3851
  }
3849
3852
  export interface UserDto {
3850
3853
  id?: string | null;
@@ -5865,97 +5868,6 @@ export interface DocumentGeneratorTypeDto {
5865
5868
  key: string;
5866
5869
  description: string;
5867
5870
  }
5868
- export interface CompanyUserDto {
5869
- companyId?: string | null;
5870
- username?: string | null;
5871
- name?: string | null;
5872
- roles?: string[] | null;
5873
- }
5874
- export interface CreateCompanyUserRequest {
5875
- username: string;
5876
- name: string;
5877
- roles: string[];
5878
- companyId?: string | null;
5879
- }
5880
- export interface UpdateCompanyUserRequest {
5881
- name: string;
5882
- roles: string[];
5883
- companyId?: string | null;
5884
- }
5885
- export interface ExternalRoleDto {
5886
- id: string;
5887
- name: string;
5888
- }
5889
- export interface CompanyCustomerDto {
5890
- customerTenantId?: string | null;
5891
- customerAzureAdTenantId?: string | null;
5892
- customerName?: string | null;
5893
- supplierId?: string | null;
5894
- supplierName?: string | null;
5895
- }
5896
- export interface InviteDto {
5897
- tenantId: string;
5898
- companyName: string;
5899
- id: string;
5900
- supplierId: string;
5901
- supplierName: string;
5902
- username: string;
5903
- deadline: Date;
5904
- createdTime: Date;
5905
- createdBy: string;
5906
- }
5907
- export interface CompanyDto {
5908
- id?: string | null;
5909
- name?: string | null;
5910
- organizationNumber?: string | null;
5911
- country?: string | null;
5912
- tenantId?: string | null;
5913
- }
5914
- export interface AcceptSupplierInviteRequest {
5915
- tenantId: string;
5916
- existingCompanyId?: string | null;
5917
- companyName?: string | null;
5918
- organizationNumber?: string | null;
5919
- threeLetterIsoCountry?: string | null;
5920
- }
5921
- export interface SupplierInviteDto {
5922
- id: string;
5923
- supplierId: string;
5924
- name: string;
5925
- username: string;
5926
- deadline: Date;
5927
- createdTime: Date;
5928
- createdBy: string;
5929
- }
5930
- export interface CreateSupplierInvite {
5931
- supplierId: string;
5932
- name: string;
5933
- username: string;
5934
- deadline: Date;
5935
- }
5936
- export interface ExternalSupplierDto {
5937
- id: string;
5938
- name: string;
5939
- companyId: string;
5940
- active: boolean;
5941
- }
5942
- export interface ImportSupplier {
5943
- supplierId: string;
5944
- name: string;
5945
- organizationNumber?: string | null;
5946
- threeLetterIsoCountry: string;
5947
- users: ImportSupplierUserDto[];
5948
- }
5949
- export interface ImportSupplierUserDto {
5950
- username: string;
5951
- name: string;
5952
- roles: string[];
5953
- }
5954
- export interface CreateSupplierMapping {
5955
- companyId: string;
5956
- existingSupplierId: string;
5957
- newSupplierId: string;
5958
- }
5959
5871
  export interface CncMachineTransferDto {
5960
5872
  id: string;
5961
5873
  cncMachineOperationId?: string | null;
@@ -8728,64 +8640,6 @@ export interface ImaSpecificationLiteDto {
8728
8640
  updated: Date;
8729
8641
  isDeleted: boolean;
8730
8642
  }
8731
- export interface SchemaCreatorStateDto {
8732
- settings: SchemaCreatorSettingsDto;
8733
- elements: SchemaCreatorElementDto[];
8734
- }
8735
- export interface SchemaCreatorSettingsDto {
8736
- unit?: UnitOfMeasureDto;
8737
- tolerance?: GeneralToleranceDto;
8738
- balloonSize?: number;
8739
- }
8740
- export type UnitOfMeasureDto = "Millimeter" | "Inch";
8741
- export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
8742
- export interface SchemaCreatorElementDto {
8743
- id: string;
8744
- kind: SchemaCreatorElementKindDto;
8745
- drawings: SchemaCreatorElementDrawingsDto;
8746
- isDirty?: boolean | null;
8747
- values?: SchemaCreatorElementValuesDto | null;
8748
- }
8749
- export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
8750
- export interface SchemaCreatorElementDrawingsDto {
8751
- square: SchemaCreatorDrawingDto;
8752
- circle: SchemaCreatorDrawingDto;
8753
- textId: string;
8754
- }
8755
- export interface SchemaCreatorDrawingDto {
8756
- rect: SchemaCreatorRectDto;
8757
- pageIndex: number;
8758
- annotationId: string;
8759
- }
8760
- export interface SchemaCreatorRectDto {
8761
- origin: SchemaCreatorPointDto;
8762
- size: SchemaCreatorSizeDto;
8763
- }
8764
- export interface SchemaCreatorPointDto {
8765
- x: number;
8766
- y: number;
8767
- }
8768
- export interface SchemaCreatorSizeDto {
8769
- width: number;
8770
- height: number;
8771
- }
8772
- export interface SchemaCreatorElementValuesDto {
8773
- reference: number;
8774
- nominal?: number | null;
8775
- nominalText?: string | null;
8776
- plusTolerance?: number | null;
8777
- minusTolerance?: number | null;
8778
- coatingThickness?: number | null;
8779
- measurementFrequency: MeasurementFrequency;
8780
- measurementFrequencyParameter?: number | null;
8781
- type?: string | null;
8782
- count?: number | null;
8783
- comment?: string | null;
8784
- canCopy: boolean;
8785
- visibleToCustomer: boolean;
8786
- isDocumentedExternally: boolean;
8787
- }
8788
- export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
8789
8643
  export interface MeasurementFormSchemaDto {
8790
8644
  id: string;
8791
8645
  versionId: number;
@@ -8817,7 +8671,9 @@ export interface MeasurementFormSchemaDto {
8817
8671
  }
8818
8672
  export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
8819
8673
  export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
8674
+ export type UnitOfMeasureDto = "Millimeter" | "Inch";
8820
8675
  export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
8676
+ export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
8821
8677
  export interface MeasurementFormSchemaAttachmentDto {
8822
8678
  url: string;
8823
8679
  title: string;
@@ -8866,6 +8722,7 @@ export interface MeasurementFormGroupedElementDto {
8866
8722
  isValid: boolean;
8867
8723
  validationErrorMessage?: string | null;
8868
8724
  }
8725
+ export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
8869
8726
  export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
8870
8727
  export type BonusType = "None" | "Positive" | "PositiveAndNegative";
8871
8728
  export interface MeasurementFormLinkedSchemaDto {
@@ -9331,7 +9188,6 @@ export interface ListMeasurementFormsRequest {
9331
9188
  pageSize?: number | null;
9332
9189
  search?: string | null;
9333
9190
  continuationToken?: string | null;
9334
- tenantId?: string | null;
9335
9191
  inactive?: boolean | null;
9336
9192
  includeInactiveSupplierAccess?: boolean | null;
9337
9193
  }
@@ -9527,7 +9383,6 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
9527
9383
  externalOrderNumber?: string | null;
9528
9384
  }
9529
9385
  export interface ExportDimensionReportV2Request {
9530
- tenantId?: string | null;
9531
9386
  type: DimensionReportType;
9532
9387
  extras?: DimensionReportExtras | null;
9533
9388
  specificSerialNumbers?: string[] | null;
@@ -9870,6 +9725,105 @@ export interface SetDiscussionLastReadRequest {
9870
9725
  operationId?: string | null;
9871
9726
  resourceId?: string | null;
9872
9727
  }
9728
+ export interface CompanyUserDto {
9729
+ companyId: string;
9730
+ userObjectId: string;
9731
+ username?: string | null;
9732
+ name?: string | null;
9733
+ roles: string[];
9734
+ }
9735
+ export interface CreateCompanyUser {
9736
+ username: string;
9737
+ name: string;
9738
+ roles: string[];
9739
+ companyId?: string | null;
9740
+ }
9741
+ export interface UpdateCompanyUserRequest {
9742
+ roles: string[];
9743
+ companyId?: string | null;
9744
+ }
9745
+ export interface ExternalRoleDto {
9746
+ id: string;
9747
+ name: string;
9748
+ }
9749
+ export interface CompanyCustomerDto {
9750
+ customerTenantId?: string | null;
9751
+ customerAzureAdTenantId?: string | null;
9752
+ customerName?: string | null;
9753
+ supplierId?: string | null;
9754
+ supplierName?: string | null;
9755
+ customerIgnosPortalPrefix?: string | null;
9756
+ }
9757
+ export interface CompanyDto {
9758
+ id: string;
9759
+ name: string;
9760
+ organizationNumber?: string | null;
9761
+ country: string;
9762
+ tenantId?: string | null;
9763
+ }
9764
+ export interface SupplierInviteDto {
9765
+ id: string;
9766
+ supplierId: string;
9767
+ threeLetterIsoCountry: string;
9768
+ organizationNumber: string;
9769
+ supplierName?: string | null;
9770
+ userId: string;
9771
+ userName?: string | null;
9772
+ acceptedTimestamp?: Date | null;
9773
+ createdTime: Date;
9774
+ createdBy: string;
9775
+ }
9776
+ export interface CurrentSupplierInviteDto extends SupplierInviteDto {
9777
+ matchingCustomerOrCompany?: MatchingCustomerOrCompany | null;
9778
+ }
9779
+ export interface MatchingCustomerOrCompany {
9780
+ customer?: IgnosCustomerDto | null;
9781
+ company?: CompanyDto | null;
9782
+ companyCustomers?: CompanyCustomerDto[];
9783
+ }
9784
+ export interface IgnosCustomerDto {
9785
+ id: string;
9786
+ name: string;
9787
+ contactPerson: ContactPersonDto;
9788
+ threeLetterIsoCountry: string;
9789
+ organizationNumber: string;
9790
+ country: string;
9791
+ tenants: AvailableTenantDto[];
9792
+ }
9793
+ export interface ContactPersonDto {
9794
+ name: string;
9795
+ phone: string;
9796
+ email: string;
9797
+ }
9798
+ export interface TenantWithSupplierDto {
9799
+ tenantId: string;
9800
+ customerName: string;
9801
+ supplierTenantEntraId: string;
9802
+ }
9803
+ export interface CreateSupplierInviteRequest {
9804
+ supplierId: string;
9805
+ threeLetterIsoCountry: string;
9806
+ organizationNumber: string;
9807
+ supplierName?: string | null;
9808
+ username: string;
9809
+ invitedName: string;
9810
+ }
9811
+ export interface ExternalSupplierDto {
9812
+ id: string;
9813
+ name: string;
9814
+ companyId: string;
9815
+ active: boolean;
9816
+ }
9817
+ export interface CreateSupplierMapping {
9818
+ companyId: string;
9819
+ existingSupplierId: string;
9820
+ newSupplierId: string;
9821
+ }
9822
+ export interface OrganizationDto {
9823
+ name?: string;
9824
+ postalAddress?: string | null;
9825
+ registeredAddress?: string | null;
9826
+ }
9873
9827
  export type FeatureCollectionType = "FeatureCollection";
9874
9828
  export interface Features {
9875
9829
  type: FeaturesType;