@ignos/api-client 20260812.221.1-alpha → 20260813.222.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>;
@@ -2783,6 +2873,69 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
2783
2873
  listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2784
2874
  protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2785
2875
  }
2876
+ export interface IInspectSchemaCreatorClient {
2877
+ getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2878
+ /**
2879
+ * Creates the initial creator state for a schema version. Returns 409 if
2880
+ state already exists; the caller should re-fetch it instead of writing.
2881
+ */
2882
+ createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2883
+ updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2884
+ /**
2885
+ * Starts a full drawing AI parse: clears every element and locks the
2886
+ schema for every viewer until it completes. If one is already in
2887
+ progress, returns that instead of starting a second one.
2888
+ */
2889
+ requestFullDrawingParse(id: string): Promise<SchemaCreatorStateDto>;
2890
+ /**
2891
+ * Stamps the creator state's balloons onto the schema's drawing PDF and
2892
+ returns a temporary download link.
2893
+ */
2894
+ exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
2895
+ /**
2896
+ * Starts an async snip resolve; the result is delivered through the
2897
+ SchemaCreatorSnipResolved SignalR notification.
2898
+ * @param image (optional)
2899
+ */
2900
+ resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
2901
+ }
2902
+ export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
2903
+ private http;
2904
+ private baseUrl;
2905
+ constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
2906
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2907
+ });
2908
+ getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2909
+ protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2910
+ /**
2911
+ * Creates the initial creator state for a schema version. Returns 409 if
2912
+ state already exists; the caller should re-fetch it instead of writing.
2913
+ */
2914
+ createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2915
+ protected processCreateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2916
+ updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2917
+ protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2918
+ /**
2919
+ * Starts a full drawing AI parse: clears every element and locks the
2920
+ schema for every viewer until it completes. If one is already in
2921
+ progress, returns that instead of starting a second one.
2922
+ */
2923
+ requestFullDrawingParse(id: string): Promise<SchemaCreatorStateDto>;
2924
+ protected processRequestFullDrawingParse(response: Response): Promise<SchemaCreatorStateDto>;
2925
+ /**
2926
+ * Stamps the creator state's balloons onto the schema's drawing PDF and
2927
+ returns a temporary download link.
2928
+ */
2929
+ exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
2930
+ protected processExportSchemaCreatorDrawing(response: Response): Promise<DownloadDto>;
2931
+ /**
2932
+ * Starts an async snip resolve; the result is delivered through the
2933
+ SchemaCreatorSnipResolved SignalR notification.
2934
+ * @param image (optional)
2935
+ */
2936
+ resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
2937
+ protected processResolveSchemaCreatorSnip(response: Response): Promise<FileResponse>;
2938
+ }
2786
2939
  export interface IMeasurementFormSchemasAdminClient {
2787
2940
  getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
2788
2941
  createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
@@ -3033,22 +3186,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
3033
3186
  protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
3034
3187
  }
3035
3188
  export interface IMeasurementFormsInstancesClient {
3036
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3189
+ 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>;
3037
3190
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3038
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3191
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3039
3192
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
3040
- completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3041
- completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
3042
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3043
- getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
3044
- getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3193
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3194
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
3195
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3196
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
3197
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3045
3198
  getValidationRules(): Promise<ValidationRuleDto[]>;
3046
- saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3047
- saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3048
- saveComment(id: string, request: SaveCommentRequest): Promise<void>;
3049
- batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3050
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3051
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3199
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3200
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3201
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
3202
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3203
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3204
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3052
3205
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
3053
3206
  upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
3054
3207
  removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
@@ -3064,37 +3217,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
3064
3217
  constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3065
3218
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3066
3219
  });
3067
- listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3220
+ 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>;
3068
3221
  protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3069
3222
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3070
3223
  protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3071
- getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3224
+ getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3072
3225
  protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3073
3226
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
3074
3227
  protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
3075
- completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3228
+ completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3076
3229
  protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3077
- completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
3230
+ completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
3078
3231
  protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
3079
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3232
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3080
3233
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
3081
- getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
3234
+ getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
3082
3235
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
3083
- getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3236
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3084
3237
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
3085
3238
  getValidationRules(): Promise<ValidationRuleDto[]>;
3086
3239
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
3087
- saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3240
+ saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3088
3241
  protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
3089
- saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3242
+ saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3090
3243
  protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
3091
- saveComment(id: string, request: SaveCommentRequest): Promise<void>;
3244
+ saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
3092
3245
  protected processSaveComment(response: Response): Promise<void>;
3093
- batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3246
+ batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3094
3247
  protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
3095
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3248
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3096
3249
  protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
3097
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3250
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3098
3251
  protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
3099
3252
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
3100
3253
  protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
@@ -3119,7 +3272,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
3119
3272
  createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
3120
3273
  reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3121
3274
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3122
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3275
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
3123
3276
  }
3124
3277
  export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
3125
3278
  private http;
@@ -3143,7 +3296,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
3143
3296
  protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3144
3297
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3145
3298
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3146
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3299
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
3147
3300
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
3148
3301
  }
3149
3302
  export interface ICompaniesClient {
@@ -3483,111 +3636,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3483
3636
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3484
3637
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3485
3638
  }
3486
- export interface IExternalAccessClient {
3487
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3488
- createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3489
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3490
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3491
- migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
3492
- listRoles(): Promise<ExternalRoleDto[]>;
3493
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3494
- deleteCompanyCustomer(tenantId: string): Promise<void>;
3495
- }
3496
- export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
3497
- private http;
3498
- private baseUrl;
3499
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3500
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3501
- });
3502
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3503
- protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
3504
- createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3505
- protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
3506
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3507
- protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
3508
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3509
- protected processDeleteCompanyUser(response: Response): Promise<void>;
3510
- migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
3511
- protected processMigrateLegacyCompanyUsersToEntra(response: Response): Promise<CompanyUserDto[]>;
3512
- listRoles(): Promise<ExternalRoleDto[]>;
3513
- protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
3514
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3515
- protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
3516
- deleteCompanyCustomer(tenantId: string): Promise<void>;
3517
- protected processDeleteCompanyCustomer(response: Response): Promise<void>;
3518
- }
3519
- export interface IExternalClient {
3520
- listCompanies(): Promise<CompanyDto[]>;
3521
- getCompany(id: string): Promise<CompanyDto>;
3522
- getCurrentSupplierInvite(): Promise<CurrentSupplierInviteDto>;
3523
- acceptSupplierInvite(acceptingTenantId: string | null | undefined): Promise<SupplierInviteDto>;
3524
- listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
3525
- }
3526
- export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
3527
- private http;
3528
- private baseUrl;
3529
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3530
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3531
- });
3532
- listCompanies(): Promise<CompanyDto[]>;
3533
- protected processListCompanies(response: Response): Promise<CompanyDto[]>;
3534
- getCompany(id: string): Promise<CompanyDto>;
3535
- protected processGetCompany(response: Response): Promise<CompanyDto>;
3536
- getCurrentSupplierInvite(): Promise<CurrentSupplierInviteDto>;
3537
- protected processGetCurrentSupplierInvite(response: Response): Promise<CurrentSupplierInviteDto>;
3538
- acceptSupplierInvite(acceptingTenantId: string | null | undefined): Promise<SupplierInviteDto>;
3539
- protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3540
- listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
3541
- protected processListTenantsWithSuppliers(response: Response): Promise<TenantWithSupplierDto[]>;
3542
- }
3543
- export interface ISuppliersClient {
3544
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3545
- createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
3546
- deleteSupplierInvite(id: string): Promise<void>;
3547
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3548
- deleteSupplier(id: string): Promise<void>;
3549
- /**
3550
- * Creates a mapping between old supplier id and new supplier id.
3551
- */
3552
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3553
- /**
3554
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3555
- */
3556
- deleteSupplierMappings(): Promise<void>;
3557
- lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
3558
- getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
3559
- }
3560
- export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
3561
- private http;
3562
- private baseUrl;
3563
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3564
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3565
- });
3566
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3567
- protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3568
- createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
3569
- protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3570
- deleteSupplierInvite(id: string): Promise<void>;
3571
- protected processDeleteSupplierInvite(response: Response): Promise<void>;
3572
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3573
- protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3574
- deleteSupplier(id: string): Promise<void>;
3575
- protected processDeleteSupplier(response: Response): Promise<void>;
3576
- /**
3577
- * Creates a mapping between old supplier id and new supplier id.
3578
- */
3579
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3580
- protected processCreateSupplierMapping(response: Response): Promise<void>;
3581
- /**
3582
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3583
- */
3584
- deleteSupplierMappings(): Promise<void>;
3585
- protected processDeleteSupplierMappings(response: Response): Promise<void>;
3586
- lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
3587
- protected processLookupOrganization(response: Response): Promise<OrganizationDto>;
3588
- getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
3589
- protected processGetOrganizationLookupSupportedCountries(response: Response): Promise<CountryDto[]>;
3590
- }
3591
3639
  export interface AzureRegionDto {
3592
3640
  displayName: string;
3593
3641
  name: string;
@@ -3899,9 +3947,6 @@ export interface UserDetailsDto {
3899
3947
  isExternalUser?: boolean;
3900
3948
  isBetaTester?: boolean | null;
3901
3949
  hasAccessToIgnos?: boolean;
3902
- isInvitedUser?: boolean;
3903
- isSupplier?: boolean;
3904
- companyId?: string | null;
3905
3950
  }
3906
3951
  export interface UserDto {
3907
3952
  id?: string | null;
@@ -5925,6 +5970,97 @@ export interface DocumentGeneratorTypeDto {
5925
5970
  key: string;
5926
5971
  description: string;
5927
5972
  }
5973
+ export interface CompanyUserDto {
5974
+ companyId?: string | null;
5975
+ username?: string | null;
5976
+ name?: string | null;
5977
+ roles?: string[] | null;
5978
+ }
5979
+ export interface CreateCompanyUserRequest {
5980
+ username: string;
5981
+ name: string;
5982
+ roles: string[];
5983
+ companyId?: string | null;
5984
+ }
5985
+ export interface UpdateCompanyUserRequest {
5986
+ name: string;
5987
+ roles: string[];
5988
+ companyId?: string | null;
5989
+ }
5990
+ export interface ExternalRoleDto {
5991
+ id: string;
5992
+ name: string;
5993
+ }
5994
+ export interface CompanyCustomerDto {
5995
+ customerTenantId?: string | null;
5996
+ customerAzureAdTenantId?: string | null;
5997
+ customerName?: string | null;
5998
+ supplierId?: string | null;
5999
+ supplierName?: string | null;
6000
+ }
6001
+ export interface InviteDto {
6002
+ tenantId: string;
6003
+ companyName: string;
6004
+ id: string;
6005
+ supplierId: string;
6006
+ supplierName: string;
6007
+ username: string;
6008
+ deadline: Date;
6009
+ createdTime: Date;
6010
+ createdBy: string;
6011
+ }
6012
+ export interface CompanyDto {
6013
+ id?: string | null;
6014
+ name?: string | null;
6015
+ organizationNumber?: string | null;
6016
+ country?: string | null;
6017
+ tenantId?: string | null;
6018
+ }
6019
+ export interface AcceptSupplierInviteRequest {
6020
+ tenantId: string;
6021
+ existingCompanyId?: string | null;
6022
+ companyName?: string | null;
6023
+ organizationNumber?: string | null;
6024
+ threeLetterIsoCountry?: string | null;
6025
+ }
6026
+ export interface SupplierInviteDto {
6027
+ id: string;
6028
+ supplierId: string;
6029
+ name: string;
6030
+ username: string;
6031
+ deadline: Date;
6032
+ createdTime: Date;
6033
+ createdBy: string;
6034
+ }
6035
+ export interface CreateSupplierInvite {
6036
+ supplierId: string;
6037
+ name: string;
6038
+ username: string;
6039
+ deadline: Date;
6040
+ }
6041
+ export interface ExternalSupplierDto {
6042
+ id: string;
6043
+ name: string;
6044
+ companyId: string;
6045
+ active: boolean;
6046
+ }
6047
+ export interface ImportSupplier {
6048
+ supplierId: string;
6049
+ name: string;
6050
+ organizationNumber?: string | null;
6051
+ threeLetterIsoCountry: string;
6052
+ users: ImportSupplierUserDto[];
6053
+ }
6054
+ export interface ImportSupplierUserDto {
6055
+ username: string;
6056
+ name: string;
6057
+ roles: string[];
6058
+ }
6059
+ export interface CreateSupplierMapping {
6060
+ companyId: string;
6061
+ existingSupplierId: string;
6062
+ newSupplierId: string;
6063
+ }
5928
6064
  export interface CncMachineTransferDto {
5929
6065
  id: string;
5930
6066
  cncMachineOperationId?: string | null;
@@ -9034,6 +9170,83 @@ export interface ImaSpecificationLiteDto {
9034
9170
  updated: Date;
9035
9171
  isDeleted: boolean;
9036
9172
  }
9173
+ export interface SchemaCreatorStateDto {
9174
+ settings: SchemaCreatorSettingsDto;
9175
+ elements: SchemaCreatorElementDto[];
9176
+ fullParse?: SchemaCreatorFullParseStatusDto | null;
9177
+ }
9178
+ export interface SchemaCreatorSettingsDto {
9179
+ unit?: UnitOfMeasureDto;
9180
+ tolerance?: GeneralToleranceDto;
9181
+ balloonSize?: number;
9182
+ }
9183
+ export type UnitOfMeasureDto = "Millimeter" | "Inch";
9184
+ export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9185
+ export interface SchemaCreatorElementDto {
9186
+ id: string;
9187
+ kind: SchemaCreatorElementKindDto;
9188
+ drawings: SchemaCreatorElementDrawingsDto;
9189
+ isDirty?: boolean | null;
9190
+ values?: SchemaCreatorElementValuesDto | null;
9191
+ parseResult?: SchemaCreatorSnipResultDto | null;
9192
+ }
9193
+ export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
9194
+ export interface SchemaCreatorElementDrawingsDto {
9195
+ square: SchemaCreatorDrawingDto;
9196
+ circle: SchemaCreatorDrawingDto;
9197
+ textId: string;
9198
+ }
9199
+ export interface SchemaCreatorDrawingDto {
9200
+ rect: SchemaCreatorRectDto;
9201
+ pageIndex: number;
9202
+ annotationId: string;
9203
+ rotation?: number | null;
9204
+ unrotatedRect?: SchemaCreatorRectDto | null;
9205
+ }
9206
+ export interface SchemaCreatorRectDto {
9207
+ origin: SchemaCreatorPointDto;
9208
+ size: SchemaCreatorSizeDto;
9209
+ }
9210
+ export interface SchemaCreatorPointDto {
9211
+ x: number;
9212
+ y: number;
9213
+ }
9214
+ export interface SchemaCreatorSizeDto {
9215
+ width: number;
9216
+ height: number;
9217
+ }
9218
+ export interface SchemaCreatorElementValuesDto {
9219
+ reference: number;
9220
+ nominal?: number | null;
9221
+ nominalText?: string | null;
9222
+ plusTolerance?: number | null;
9223
+ minusTolerance?: number | null;
9224
+ coatingThickness?: number | null;
9225
+ measurementFrequency: MeasurementFrequency;
9226
+ measurementFrequencyParameter?: number | null;
9227
+ type?: string | null;
9228
+ count?: number | null;
9229
+ comment?: string | null;
9230
+ canCopy: boolean;
9231
+ visibleToCustomer: boolean;
9232
+ isDocumentedExternally: boolean;
9233
+ }
9234
+ export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9235
+ export interface SchemaCreatorSnipResultDto {
9236
+ nominal?: number | null;
9237
+ nominalText?: string | null;
9238
+ plusTolerance?: number | null;
9239
+ minusTolerance?: number | null;
9240
+ coatingThickness?: number | null;
9241
+ count?: number | null;
9242
+ }
9243
+ export interface SchemaCreatorFullParseStatusDto {
9244
+ inProgress: boolean;
9245
+ startedAt?: Date | null;
9246
+ errorType?: SchemaCreatorParseErrorTypeDto | null;
9247
+ errorMessage?: string | null;
9248
+ }
9249
+ export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
9037
9250
  export interface MeasurementFormSchemaDto {
9038
9251
  id: string;
9039
9252
  versionId: number;
@@ -9065,9 +9278,7 @@ export interface MeasurementFormSchemaDto {
9065
9278
  }
9066
9279
  export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
9067
9280
  export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
9068
- export type UnitOfMeasureDto = "Millimeter" | "Inch";
9069
9281
  export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
9070
- export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9071
9282
  export interface MeasurementFormSchemaAttachmentDto {
9072
9283
  url: string;
9073
9284
  title: string;
@@ -9116,7 +9327,6 @@ export interface MeasurementFormGroupedElementDto {
9116
9327
  isValid: boolean;
9117
9328
  validationErrorMessage?: string | null;
9118
9329
  }
9119
- export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9120
9330
  export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
9121
9331
  export type BonusType = "None" | "Positive" | "PositiveAndNegative";
9122
9332
  export interface MeasurementFormLinkedSchemaDto {
@@ -9582,6 +9792,7 @@ export interface ListMeasurementFormsRequest {
9582
9792
  pageSize?: number | null;
9583
9793
  search?: string | null;
9584
9794
  continuationToken?: string | null;
9795
+ tenantId?: string | null;
9585
9796
  inactive?: boolean | null;
9586
9797
  includeInactiveSupplierAccess?: boolean | null;
9587
9798
  }
@@ -9777,6 +9988,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
9777
9988
  externalOrderNumber?: string | null;
9778
9989
  }
9779
9990
  export interface ExportDimensionReportV2Request {
9991
+ tenantId?: string | null;
9780
9992
  type: DimensionReportType;
9781
9993
  extras?: DimensionReportExtras | null;
9782
9994
  specificSerialNumbers?: string[] | null;
@@ -10122,105 +10334,6 @@ export interface SetDiscussionLastReadRequest {
10122
10334
  operationId?: string | null;
10123
10335
  resourceId?: string | null;
10124
10336
  }
10125
- export interface CompanyUserDto {
10126
- companyId: string;
10127
- userObjectId: string;
10128
- username?: string | null;
10129
- name?: string | null;
10130
- roles: string[];
10131
- }
10132
- export interface CreateCompanyUser {
10133
- username: string;
10134
- name: string;
10135
- roles: string[];
10136
- companyId?: string | null;
10137
- }
10138
- export interface UpdateCompanyUserRequest {
10139
- roles: string[];
10140
- companyId?: string | null;
10141
- }
10142
- export interface ExternalRoleDto {
10143
- id: string;
10144
- name: string;
10145
- }
10146
- export interface CompanyCustomerDto {
10147
- customerTenantId?: string | null;
10148
- customerAzureAdTenantId?: string | null;
10149
- customerName?: string | null;
10150
- supplierId?: string | null;
10151
- supplierName?: string | null;
10152
- customerIgnosPortalPrefix?: string | null;
10153
- }
10154
- export interface CompanyDto {
10155
- id: string;
10156
- name: string;
10157
- organizationNumber?: string | null;
10158
- country: string;
10159
- tenantId?: string | null;
10160
- }
10161
- export interface SupplierInviteDto {
10162
- id: string;
10163
- supplierId: string;
10164
- threeLetterIsoCountry: string;
10165
- organizationNumber: string;
10166
- supplierName?: string | null;
10167
- userId: string;
10168
- userName?: string | null;
10169
- acceptedTimestamp?: Date | null;
10170
- createdTime: Date;
10171
- createdBy: string;
10172
- }
10173
- export interface CurrentSupplierInviteDto extends SupplierInviteDto {
10174
- matchingCustomerOrCompany?: MatchingCustomerOrCompany | null;
10175
- }
10176
- export interface MatchingCustomerOrCompany {
10177
- customer?: IgnosCustomerDto | null;
10178
- company?: CompanyDto | null;
10179
- companyCustomers?: CompanyCustomerDto[];
10180
- }
10181
- export interface IgnosCustomerDto {
10182
- id: string;
10183
- name: string;
10184
- contactPerson: ContactPersonDto;
10185
- threeLetterIsoCountry: string;
10186
- organizationNumber: string;
10187
- country: string;
10188
- tenants: AvailableTenantDto[];
10189
- }
10190
- export interface ContactPersonDto {
10191
- name: string;
10192
- phone: string;
10193
- email: string;
10194
- }
10195
- export interface TenantWithSupplierDto {
10196
- tenantId: string;
10197
- customerName: string;
10198
- supplierTenantEntraId: string;
10199
- }
10200
- export interface CreateSupplierInviteRequest {
10201
- supplierId: string;
10202
- threeLetterIsoCountry: string;
10203
- organizationNumber: string;
10204
- supplierName?: string | null;
10205
- username: string;
10206
- invitedName: string;
10207
- }
10208
- export interface ExternalSupplierDto {
10209
- id: string;
10210
- name: string;
10211
- companyId: string;
10212
- active: boolean;
10213
- }
10214
- export interface CreateSupplierMapping {
10215
- companyId: string;
10216
- existingSupplierId: string;
10217
- newSupplierId: string;
10218
- }
10219
- export interface OrganizationDto {
10220
- name?: string;
10221
- postalAddress?: string | null;
10222
- registeredAddress?: string | null;
10223
- }
10224
10337
  export type FeatureCollectionType = "FeatureCollection";
10225
10338
  export interface Features {
10226
10339
  type: FeaturesType;