@ignos/api-client 20260707.178.1-alpha → 20260708.180.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>;
@@ -1520,6 +1517,99 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
1520
1517
  listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
1521
1518
  protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
1522
1519
  }
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
+ }
1523
1613
  export interface ICncFileTransferClient {
1524
1614
  startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1525
1615
  startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
@@ -2729,6 +2819,34 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
2729
2819
  listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2730
2820
  protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2731
2821
  }
2822
+ export interface IInspectSchemaCreatorClient {
2823
+ getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2824
+ updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2825
+ /**
2826
+ * Starts an async snip resolve; the result is delivered through the
2827
+ SchemaCreatorSnipResolved SignalR notification.
2828
+ * @param image (optional)
2829
+ */
2830
+ resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
2831
+ }
2832
+ export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
2833
+ private http;
2834
+ private baseUrl;
2835
+ constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
2836
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2837
+ });
2838
+ getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2839
+ protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2840
+ updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2841
+ protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2842
+ /**
2843
+ * Starts an async snip resolve; the result is delivered through the
2844
+ SchemaCreatorSnipResolved SignalR notification.
2845
+ * @param image (optional)
2846
+ */
2847
+ resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
2848
+ protected processResolveSchemaCreatorSnip(response: Response): Promise<FileResponse>;
2849
+ }
2732
2850
  export interface IMeasurementFormSchemasAdminClient {
2733
2851
  getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
2734
2852
  createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
@@ -2979,22 +3097,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
2979
3097
  protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
2980
3098
  }
2981
3099
  export interface IMeasurementFormsInstancesClient {
2982
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3100
+ 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>;
2983
3101
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2984
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3102
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2985
3103
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
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[]>;
3104
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3105
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
3106
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3107
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
3108
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2991
3109
  getValidationRules(): Promise<ValidationRuleDto[]>;
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>;
3110
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3111
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3112
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
3113
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3114
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3115
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
2998
3116
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
2999
3117
  upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
3000
3118
  removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
@@ -3010,37 +3128,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
3010
3128
  constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3011
3129
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3012
3130
  });
3013
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3131
+ 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>;
3014
3132
  protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3015
3133
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3016
3134
  protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3017
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3135
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3018
3136
  protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3019
3137
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
3020
3138
  protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
3021
- completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3139
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3022
3140
  protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3023
- completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
3141
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
3024
3142
  protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
3025
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3143
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3026
3144
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
3027
- getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
3145
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
3028
3146
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
3029
- getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3147
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3030
3148
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
3031
3149
  getValidationRules(): Promise<ValidationRuleDto[]>;
3032
3150
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
3033
- saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3151
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3034
3152
  protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
3035
- saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3153
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3036
3154
  protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
3037
- saveComment(id: string, request: SaveCommentRequest): Promise<void>;
3155
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
3038
3156
  protected processSaveComment(response: Response): Promise<void>;
3039
- batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3157
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3040
3158
  protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
3041
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3159
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3042
3160
  protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
3043
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3161
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3044
3162
  protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
3045
3163
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
3046
3164
  protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
@@ -3065,7 +3183,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
3065
3183
  createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
3066
3184
  reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3067
3185
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3068
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3186
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
3069
3187
  }
3070
3188
  export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
3071
3189
  private http;
@@ -3089,7 +3207,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
3089
3207
  protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3090
3208
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3091
3209
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3092
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3210
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
3093
3211
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
3094
3212
  }
3095
3213
  export interface ICompaniesClient {
@@ -3429,111 +3547,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3429
3547
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3430
3548
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3431
3549
  }
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
3550
  export interface AzureRegionDto {
3538
3551
  displayName: string;
3539
3552
  name: string;
@@ -3845,9 +3858,6 @@ export interface UserDetailsDto {
3845
3858
  isExternalUser?: boolean;
3846
3859
  isBetaTester?: boolean | null;
3847
3860
  hasAccessToIgnos?: boolean;
3848
- isInvitedUser?: boolean;
3849
- isSupplier?: boolean;
3850
- companyId?: string | null;
3851
3861
  }
3852
3862
  export interface UserDto {
3853
3863
  id?: string | null;
@@ -5868,6 +5878,97 @@ export interface DocumentGeneratorTypeDto {
5868
5878
  key: string;
5869
5879
  description: string;
5870
5880
  }
5881
+ export interface CompanyUserDto {
5882
+ companyId?: string | null;
5883
+ username?: string | null;
5884
+ name?: string | null;
5885
+ roles?: string[] | null;
5886
+ }
5887
+ export interface CreateCompanyUserRequest {
5888
+ username: string;
5889
+ name: string;
5890
+ roles: string[];
5891
+ companyId?: string | null;
5892
+ }
5893
+ export interface UpdateCompanyUserRequest {
5894
+ name: string;
5895
+ roles: string[];
5896
+ companyId?: string | null;
5897
+ }
5898
+ export interface ExternalRoleDto {
5899
+ id: string;
5900
+ name: string;
5901
+ }
5902
+ export interface CompanyCustomerDto {
5903
+ customerTenantId?: string | null;
5904
+ customerAzureAdTenantId?: string | null;
5905
+ customerName?: string | null;
5906
+ supplierId?: string | null;
5907
+ supplierName?: string | null;
5908
+ }
5909
+ export interface InviteDto {
5910
+ tenantId: string;
5911
+ companyName: string;
5912
+ id: string;
5913
+ supplierId: string;
5914
+ supplierName: string;
5915
+ username: string;
5916
+ deadline: Date;
5917
+ createdTime: Date;
5918
+ createdBy: string;
5919
+ }
5920
+ export interface CompanyDto {
5921
+ id?: string | null;
5922
+ name?: string | null;
5923
+ organizationNumber?: string | null;
5924
+ country?: string | null;
5925
+ tenantId?: string | null;
5926
+ }
5927
+ export interface AcceptSupplierInviteRequest {
5928
+ tenantId: string;
5929
+ existingCompanyId?: string | null;
5930
+ companyName?: string | null;
5931
+ organizationNumber?: string | null;
5932
+ threeLetterIsoCountry?: string | null;
5933
+ }
5934
+ export interface SupplierInviteDto {
5935
+ id: string;
5936
+ supplierId: string;
5937
+ name: string;
5938
+ username: string;
5939
+ deadline: Date;
5940
+ createdTime: Date;
5941
+ createdBy: string;
5942
+ }
5943
+ export interface CreateSupplierInvite {
5944
+ supplierId: string;
5945
+ name: string;
5946
+ username: string;
5947
+ deadline: Date;
5948
+ }
5949
+ export interface ExternalSupplierDto {
5950
+ id: string;
5951
+ name: string;
5952
+ companyId: string;
5953
+ active: boolean;
5954
+ }
5955
+ export interface ImportSupplier {
5956
+ supplierId: string;
5957
+ name: string;
5958
+ organizationNumber?: string | null;
5959
+ threeLetterIsoCountry: string;
5960
+ users: ImportSupplierUserDto[];
5961
+ }
5962
+ export interface ImportSupplierUserDto {
5963
+ username: string;
5964
+ name: string;
5965
+ roles: string[];
5966
+ }
5967
+ export interface CreateSupplierMapping {
5968
+ companyId: string;
5969
+ existingSupplierId: string;
5970
+ newSupplierId: string;
5971
+ }
5871
5972
  export interface CncMachineTransferDto {
5872
5973
  id: string;
5873
5974
  cncMachineOperationId?: string | null;
@@ -8640,6 +8741,73 @@ export interface ImaSpecificationLiteDto {
8640
8741
  updated: Date;
8641
8742
  isDeleted: boolean;
8642
8743
  }
8744
+ export interface SchemaCreatorStateDto {
8745
+ settings: SchemaCreatorSettingsDto;
8746
+ elements: SchemaCreatorElementDto[];
8747
+ }
8748
+ export interface SchemaCreatorSettingsDto {
8749
+ unit?: UnitOfMeasureDto;
8750
+ tolerance?: GeneralToleranceDto;
8751
+ balloonSize?: number;
8752
+ }
8753
+ export type UnitOfMeasureDto = "Millimeter" | "Inch";
8754
+ export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
8755
+ export interface SchemaCreatorElementDto {
8756
+ id: string;
8757
+ kind: SchemaCreatorElementKindDto;
8758
+ drawings: SchemaCreatorElementDrawingsDto;
8759
+ isDirty?: boolean | null;
8760
+ values?: SchemaCreatorElementValuesDto | null;
8761
+ parseResult?: SchemaCreatorSnipResultDto | null;
8762
+ }
8763
+ export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
8764
+ export interface SchemaCreatorElementDrawingsDto {
8765
+ square: SchemaCreatorDrawingDto;
8766
+ circle: SchemaCreatorDrawingDto;
8767
+ textId: string;
8768
+ }
8769
+ export interface SchemaCreatorDrawingDto {
8770
+ rect: SchemaCreatorRectDto;
8771
+ pageIndex: number;
8772
+ annotationId: string;
8773
+ }
8774
+ export interface SchemaCreatorRectDto {
8775
+ origin: SchemaCreatorPointDto;
8776
+ size: SchemaCreatorSizeDto;
8777
+ }
8778
+ export interface SchemaCreatorPointDto {
8779
+ x: number;
8780
+ y: number;
8781
+ }
8782
+ export interface SchemaCreatorSizeDto {
8783
+ width: number;
8784
+ height: number;
8785
+ }
8786
+ export interface SchemaCreatorElementValuesDto {
8787
+ reference: number;
8788
+ nominal?: number | null;
8789
+ nominalText?: string | null;
8790
+ plusTolerance?: number | null;
8791
+ minusTolerance?: number | null;
8792
+ coatingThickness?: number | null;
8793
+ measurementFrequency: MeasurementFrequency;
8794
+ measurementFrequencyParameter?: number | null;
8795
+ type?: string | null;
8796
+ count?: number | null;
8797
+ comment?: string | null;
8798
+ canCopy: boolean;
8799
+ visibleToCustomer: boolean;
8800
+ isDocumentedExternally: boolean;
8801
+ }
8802
+ export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
8803
+ export interface SchemaCreatorSnipResultDto {
8804
+ nominal?: number | null;
8805
+ nominalText?: string | null;
8806
+ plusTolerance?: number | null;
8807
+ minusTolerance?: number | null;
8808
+ coatingThickness?: number | null;
8809
+ count?: number | null;
8810
+ }
8643
8811
  export interface MeasurementFormSchemaDto {
8644
8812
  id: string;
8645
8813
  versionId: number;
@@ -8671,9 +8839,7 @@ export interface MeasurementFormSchemaDto {
8671
8839
  }
8672
8840
  export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
8673
8841
  export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
8674
- export type UnitOfMeasureDto = "Millimeter" | "Inch";
8675
8842
  export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
8676
- export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
8677
8843
  export interface MeasurementFormSchemaAttachmentDto {
8678
8844
  url: string;
8679
8845
  title: string;
@@ -8722,7 +8888,6 @@ export interface MeasurementFormGroupedElementDto {
8722
8888
  isValid: boolean;
8723
8889
  validationErrorMessage?: string | null;
8724
8890
  }
8725
- export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
8726
8891
  export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
8727
8892
  export type BonusType = "None" | "Positive" | "PositiveAndNegative";
8728
8893
  export interface MeasurementFormLinkedSchemaDto {
@@ -9188,6 +9353,7 @@ export interface ListMeasurementFormsRequest {
9188
9353
  pageSize?: number | null;
9189
9354
  search?: string | null;
9190
9355
  continuationToken?: string | null;
9356
+ tenantId?: string | null;
9191
9357
  inactive?: boolean | null;
9192
9358
  includeInactiveSupplierAccess?: boolean | null;
9193
9359
  }
@@ -9383,6 +9549,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
9383
9549
  externalOrderNumber?: string | null;
9384
9550
  }
9385
9551
  export interface ExportDimensionReportV2Request {
9552
+ tenantId?: string | null;
9386
9553
  type: DimensionReportType;
9387
9554
  extras?: DimensionReportExtras | null;
9388
9555
  specificSerialNumbers?: string[] | null;
@@ -9725,105 +9892,6 @@ export interface SetDiscussionLastReadRequest {
9725
9892
  operationId?: string | null;
9726
9893
  resourceId?: string | null;
9727
9894
  }
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
- }
9827
9895
  export type FeatureCollectionType = "FeatureCollection";
9828
9896
  export interface Features {
9829
9897
  type: FeaturesType;