@ignos/api-client 20260812.221.1-alpha → 20260814.223.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;
@@ -8484,13 +8620,12 @@ export interface ImaFerriteResultDto {
8484
8620
  heatNumber?: string | null;
8485
8621
  sampleReference?: string | null;
8486
8622
  testLocation?: string | null;
8487
- ferrite?: ImaResultValueDto | null;
8623
+ ferrite?: ImaSpecificationResultLineDto | null;
8488
8624
  ferriteTolerance?: number | null;
8489
8625
  reportedRange?: string | null;
8490
8626
  intermetallicPhases?: boolean | null;
8491
8627
  grainSize?: string | null;
8492
8628
  testStandards: string[];
8493
- override?: ImaResultLineOverrideDto | null;
8494
8629
  }
8495
8630
  export interface ImaHeatTreatmentResultDto {
8496
8631
  heatNumber?: string | null;
@@ -8522,7 +8657,7 @@ export interface ImaOverrideMaterialCheckRequestDto {
8522
8657
  hardnessTestSection?: ImaOverrideHardnessTestResultsDto[] | null;
8523
8658
  impactTestSection?: ImaOverrideImpactTestResultsDto[] | null;
8524
8659
  corrosionTestSection?: ImaOverrideCorrosionTestResultsDto[] | null;
8525
- ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8660
+ ferriteResultSection?: ImaOverrideFerriteResultDto[] | null;
8526
8661
  documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
8527
8662
  }
8528
8663
  export interface ImaOverrideCertificateTypeResultsDto {
@@ -8671,6 +8806,11 @@ export interface ImaOverrideCorrosionTestResultsDto {
8671
8806
  result?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8672
8807
  acceptable?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8673
8808
  }
8809
+ export interface ImaOverrideFerriteResultDto {
8810
+ heatNumber?: string | null;
8811
+ sampleReference?: string | null;
8812
+ ferrite?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8813
+ }
8674
8814
  export interface ImaOverrideDocumentTypesResultsDto {
8675
8815
  ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8676
8816
  radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
@@ -8929,7 +9069,9 @@ export interface ImaChemistrySpecificationDto {
8929
9069
  export interface ImaSpecificationLineDto {
8930
9070
  min?: number | null;
8931
9071
  max?: number | null;
9072
+ unit?: ImaUnitDto | null;
8932
9073
  }
9074
+ export type ImaUnitDto = "Millimeter" | "Centimeter" | "Meter" | "Inch" | "Kilogram" | "Gram" | "Tonne" | "Pound" | "Megapascal" | "NewtonPerSquareMillimeter" | "KilopoundPerSquareInch" | "PoundPerSquareInch" | "Bar" | "Ppm" | "Percentage" | "WeightPercentage" | "Joule" | "FootPound" | "Celsius" | "Fahrenheit" | "Kelvin" | "Minute" | "Hour";
8933
9075
  export interface ImaChemistryCompositeSpecificationDto {
8934
9076
  pren?: ImaSpecificationLineDto | null;
8935
9077
  pren22?: ImaSpecificationLineDto | null;
@@ -9034,6 +9176,87 @@ export interface ImaSpecificationLiteDto {
9034
9176
  updated: Date;
9035
9177
  isDeleted: boolean;
9036
9178
  }
9179
+ export interface SchemaCreatorStateDto {
9180
+ settings: SchemaCreatorSettingsDto;
9181
+ elements: SchemaCreatorElementDto[];
9182
+ fullParse?: SchemaCreatorFullParseStatusDto | null;
9183
+ }
9184
+ export interface SchemaCreatorSettingsDto {
9185
+ unit?: UnitOfMeasureDto;
9186
+ tolerance?: GeneralToleranceDto;
9187
+ balloonSize?: number;
9188
+ }
9189
+ export type UnitOfMeasureDto = "Millimeter" | "Inch";
9190
+ export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9191
+ export interface SchemaCreatorElementDto {
9192
+ id: string;
9193
+ kind: SchemaCreatorElementKindDto;
9194
+ drawings: SchemaCreatorElementDrawingsDto;
9195
+ isDirty?: boolean | null;
9196
+ values?: SchemaCreatorElementValuesDto | null;
9197
+ parseResult?: SchemaCreatorSnipResultDto | null;
9198
+ resolveAttempt?: SchemaCreatorParseAttemptDto | null;
9199
+ }
9200
+ export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
9201
+ export interface SchemaCreatorElementDrawingsDto {
9202
+ square: SchemaCreatorDrawingDto;
9203
+ circle: SchemaCreatorDrawingDto;
9204
+ textId: string;
9205
+ }
9206
+ export interface SchemaCreatorDrawingDto {
9207
+ rect: SchemaCreatorRectDto;
9208
+ pageIndex: number;
9209
+ annotationId: string;
9210
+ rotation?: number | null;
9211
+ unrotatedRect?: SchemaCreatorRectDto | null;
9212
+ }
9213
+ export interface SchemaCreatorRectDto {
9214
+ origin: SchemaCreatorPointDto;
9215
+ size: SchemaCreatorSizeDto;
9216
+ }
9217
+ export interface SchemaCreatorPointDto {
9218
+ x: number;
9219
+ y: number;
9220
+ }
9221
+ export interface SchemaCreatorSizeDto {
9222
+ width: number;
9223
+ height: number;
9224
+ }
9225
+ export interface SchemaCreatorElementValuesDto {
9226
+ reference: number;
9227
+ nominal?: number | null;
9228
+ nominalText?: string | null;
9229
+ plusTolerance?: number | null;
9230
+ minusTolerance?: number | null;
9231
+ coatingThickness?: number | null;
9232
+ measurementFrequency: MeasurementFrequency;
9233
+ measurementFrequencyParameter?: number | null;
9234
+ type?: string | null;
9235
+ count?: number | null;
9236
+ comment?: string | null;
9237
+ canCopy: boolean;
9238
+ visibleToCustomer: boolean;
9239
+ isDocumentedExternally: boolean;
9240
+ }
9241
+ export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9242
+ export interface SchemaCreatorSnipResultDto {
9243
+ nominal?: number | null;
9244
+ nominalText?: string | null;
9245
+ plusTolerance?: number | null;
9246
+ minusTolerance?: number | null;
9247
+ coatingThickness?: number | null;
9248
+ count?: number | null;
9249
+ }
9250
+ export interface SchemaCreatorParseAttemptDto {
9251
+ startedAt: Date;
9252
+ errorType?: SchemaCreatorParseErrorTypeDto | null;
9253
+ errorMessage?: string | null;
9254
+ }
9255
+ export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
9256
+ export interface SchemaCreatorFullParseStatusDto {
9257
+ inProgress: boolean;
9258
+ attempt?: SchemaCreatorParseAttemptDto | null;
9259
+ }
9037
9260
  export interface MeasurementFormSchemaDto {
9038
9261
  id: string;
9039
9262
  versionId: number;
@@ -9065,9 +9288,7 @@ export interface MeasurementFormSchemaDto {
9065
9288
  }
9066
9289
  export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
9067
9290
  export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
9068
- export type UnitOfMeasureDto = "Millimeter" | "Inch";
9069
9291
  export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
9070
- export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9071
9292
  export interface MeasurementFormSchemaAttachmentDto {
9072
9293
  url: string;
9073
9294
  title: string;
@@ -9116,7 +9337,6 @@ export interface MeasurementFormGroupedElementDto {
9116
9337
  isValid: boolean;
9117
9338
  validationErrorMessage?: string | null;
9118
9339
  }
9119
- export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9120
9340
  export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
9121
9341
  export type BonusType = "None" | "Positive" | "PositiveAndNegative";
9122
9342
  export interface MeasurementFormLinkedSchemaDto {
@@ -9582,6 +9802,7 @@ export interface ListMeasurementFormsRequest {
9582
9802
  pageSize?: number | null;
9583
9803
  search?: string | null;
9584
9804
  continuationToken?: string | null;
9805
+ tenantId?: string | null;
9585
9806
  inactive?: boolean | null;
9586
9807
  includeInactiveSupplierAccess?: boolean | null;
9587
9808
  }
@@ -9777,6 +9998,7 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
9777
9998
  externalOrderNumber?: string | null;
9778
9999
  }
9779
10000
  export interface ExportDimensionReportV2Request {
10001
+ tenantId?: string | null;
9780
10002
  type: DimensionReportType;
9781
10003
  extras?: DimensionReportExtras | null;
9782
10004
  specificSerialNumbers?: string[] | null;
@@ -10122,105 +10344,6 @@ export interface SetDiscussionLastReadRequest {
10122
10344
  operationId?: string | null;
10123
10345
  resourceId?: string | null;
10124
10346
  }
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
10347
  export type FeatureCollectionType = "FeatureCollection";
10225
10348
  export interface Features {
10226
10349
  type: FeaturesType;