@ignos/api-client 20260827.249.1-alpha → 20260827.250.1-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -127,6 +127,7 @@ export declare class CustomersClient extends AuthorizedApiBase implements ICusto
127
127
  }
128
128
  export interface IGuestsClient {
129
129
  getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
130
+ getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
130
131
  }
131
132
  export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
132
133
  private http;
@@ -136,6 +137,8 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
136
137
  });
137
138
  getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
138
139
  protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
140
+ getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
141
+ protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
139
142
  }
140
143
  export interface IPresentationClient {
141
144
  getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
@@ -1517,99 +1520,6 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
1517
1520
  listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
1518
1521
  protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
1519
1522
  }
1520
- export interface IExternalAccessClient {
1521
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1522
- createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1523
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1524
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1525
- listRoles(): Promise<ExternalRoleDto[]>;
1526
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1527
- deleteCompanyCustomer(tenantId: string): Promise<void>;
1528
- }
1529
- export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
1530
- private http;
1531
- private baseUrl;
1532
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
1533
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1534
- });
1535
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1536
- protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
1537
- createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1538
- protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
1539
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1540
- protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
1541
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1542
- protected processDeleteCompanyUser(response: Response): Promise<void>;
1543
- listRoles(): Promise<ExternalRoleDto[]>;
1544
- protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
1545
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1546
- protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
1547
- deleteCompanyCustomer(tenantId: string): Promise<void>;
1548
- protected processDeleteCompanyCustomer(response: Response): Promise<void>;
1549
- }
1550
- export interface IExternalClient {
1551
- listInvites(): Promise<InviteDto[]>;
1552
- acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1553
- listCompanies(): Promise<CompanyDto[]>;
1554
- }
1555
- export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
1556
- private http;
1557
- private baseUrl;
1558
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
1559
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1560
- });
1561
- listInvites(): Promise<InviteDto[]>;
1562
- protected processListInvites(response: Response): Promise<InviteDto[]>;
1563
- acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1564
- protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
1565
- listCompanies(): Promise<CompanyDto[]>;
1566
- protected processListCompanies(response: Response): Promise<CompanyDto[]>;
1567
- }
1568
- export interface ISuppliersClient {
1569
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
1570
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1571
- deleteSupplierInvite(id: string): Promise<void>;
1572
- listSuppliers(): Promise<ExternalSupplierDto[]>;
1573
- deleteSupplier(id: string): Promise<void>;
1574
- importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1575
- /**
1576
- * Creates a mapping between old supplier id and new supplier id.
1577
- */
1578
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1579
- /**
1580
- * Delete all supplier mappings between old supplier ids and new supplier ids.
1581
- */
1582
- deleteSupplierMappings(): Promise<void>;
1583
- }
1584
- export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
1585
- private http;
1586
- private baseUrl;
1587
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
1588
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1589
- });
1590
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
1591
- protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
1592
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1593
- protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
1594
- deleteSupplierInvite(id: string): Promise<void>;
1595
- protected processDeleteSupplierInvite(response: Response): Promise<void>;
1596
- listSuppliers(): Promise<ExternalSupplierDto[]>;
1597
- protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
1598
- deleteSupplier(id: string): Promise<void>;
1599
- protected processDeleteSupplier(response: Response): Promise<void>;
1600
- importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1601
- protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
1602
- /**
1603
- * Creates a mapping between old supplier id and new supplier id.
1604
- */
1605
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1606
- protected processCreateSupplierMapping(response: Response): Promise<void>;
1607
- /**
1608
- * Delete all supplier mappings between old supplier ids and new supplier ids.
1609
- */
1610
- deleteSupplierMappings(): Promise<void>;
1611
- protected processDeleteSupplierMappings(response: Response): Promise<void>;
1612
- }
1613
1523
  export interface ICncFileTransferClient {
1614
1524
  startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1615
1525
  startCncMachineOperationTransferToMachine(id: string, request: TransferToMachineRequest | undefined): Promise<CncMachineTransferDto>;
@@ -2879,69 +2789,6 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
2879
2789
  listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2880
2790
  protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2881
2791
  }
2882
- export interface IInspectSchemaCreatorClient {
2883
- getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2884
- /**
2885
- * Creates the initial creator state for a schema version. Returns 409 if
2886
- state already exists; the caller should re-fetch it instead of writing.
2887
- */
2888
- createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2889
- updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2890
- /**
2891
- * Starts a full drawing AI parse: clears every element and locks the
2892
- schema for every viewer until it completes. If one is already in
2893
- progress, returns that instead of starting a second one.
2894
- */
2895
- requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
2896
- /**
2897
- * Stamps the creator state's balloons onto the schema's drawing PDF and
2898
- returns a temporary download link.
2899
- */
2900
- exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
2901
- /**
2902
- * Starts an async snip resolve; the result is delivered through the
2903
- SchemaCreatorSnipResolved SignalR notification.
2904
- * @param image (optional)
2905
- */
2906
- requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<void>;
2907
- }
2908
- export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
2909
- private http;
2910
- private baseUrl;
2911
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
2912
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2913
- });
2914
- getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2915
- protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2916
- /**
2917
- * Creates the initial creator state for a schema version. Returns 409 if
2918
- state already exists; the caller should re-fetch it instead of writing.
2919
- */
2920
- createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2921
- protected processCreateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2922
- updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2923
- protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2924
- /**
2925
- * Starts a full drawing AI parse: clears every element and locks the
2926
- schema for every viewer until it completes. If one is already in
2927
- progress, returns that instead of starting a second one.
2928
- */
2929
- requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
2930
- protected processRequestSchemaCreatorDocumentParse(response: Response): Promise<SchemaCreatorStateDto>;
2931
- /**
2932
- * Stamps the creator state's balloons onto the schema's drawing PDF and
2933
- returns a temporary download link.
2934
- */
2935
- exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
2936
- protected processExportSchemaCreatorDrawing(response: Response): Promise<DownloadDto>;
2937
- /**
2938
- * Starts an async snip resolve; the result is delivered through the
2939
- SchemaCreatorSnipResolved SignalR notification.
2940
- * @param image (optional)
2941
- */
2942
- requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<void>;
2943
- protected processRequestSchemaCreatorSnipParse(response: Response): Promise<void>;
2944
- }
2945
2792
  export interface IMeasurementFormSchemasAdminClient {
2946
2793
  getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
2947
2794
  createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
@@ -3192,22 +3039,22 @@ export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiB
3192
3039
  protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
3193
3040
  }
3194
3041
  export interface IMeasurementFormsInstancesClient {
3195
- 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>;
3042
+ listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3196
3043
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3197
- getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3044
+ getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3198
3045
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
3199
- completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3200
- completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
3201
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3202
- getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
3203
- getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3046
+ completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3047
+ completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
3048
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3049
+ getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
3050
+ getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3204
3051
  getValidationRules(): Promise<ValidationRuleDto[]>;
3205
- saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3206
- saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3207
- saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
3208
- batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3209
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3210
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3052
+ saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3053
+ saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3054
+ saveComment(id: string, request: SaveCommentRequest): Promise<void>;
3055
+ batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3056
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3057
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3211
3058
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
3212
3059
  upsertSupplierToMeasurmentFormInstance(id: string, supplierId: string, request: UpsertSupplierToMeasurementFormInstanceRequest): Promise<void>;
3213
3060
  removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
@@ -3223,37 +3070,37 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
3223
3070
  constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3224
3071
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3225
3072
  });
3226
- 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>;
3073
+ listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3227
3074
  protected processListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3228
3075
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3229
3076
  protected processPostListMeasurementForms(response: Response): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
3230
- getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3077
+ getMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3231
3078
  protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3232
3079
  listMeasurementFormInstanceFeedback(id: string): Promise<MeasurementFormInstanceFeedbackDto[]>;
3233
3080
  protected processListMeasurementFormInstanceFeedback(response: Response): Promise<MeasurementFormInstanceFeedbackDto[]>;
3234
- completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3081
+ completeMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3235
3082
  protected processCompleteMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3236
- completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
3083
+ completeMeasurementFormInstanceV2(id: string): Promise<CompleteMeasurementFormInstanceResult>;
3237
3084
  protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
3238
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3085
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3239
3086
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
3240
- getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
3087
+ getWorkorderMeasurementFormProgress(id: string): Promise<MeasurementFormInstanceProgressDto>;
3241
3088
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
3242
- getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3089
+ getAuditLog(id: string, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3243
3090
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
3244
3091
  getValidationRules(): Promise<ValidationRuleDto[]>;
3245
3092
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
3246
- saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3093
+ saveValue(id: string, request: SaveValueRequest): Promise<SaveValueResponseDto>;
3247
3094
  protected processSaveValue(response: Response): Promise<SaveValueResponseDto>;
3248
- saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3095
+ saveTool(id: string, request: SaveToolRequest): Promise<SaveValueResponseDto>;
3249
3096
  protected processSaveTool(response: Response): Promise<SaveValueResponseDto>;
3250
- saveComment(id: string, tenantId: string | null | undefined, request: SaveCommentRequest): Promise<void>;
3097
+ saveComment(id: string, request: SaveCommentRequest): Promise<void>;
3251
3098
  protected processSaveComment(response: Response): Promise<void>;
3252
- batchInsertValues(id: string, tenantId: string | null | undefined, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3099
+ batchInsertValues(id: string, request: BatchInsertValueRequest): Promise<BatchInsertValuesResponseDto>;
3253
3100
  protected processBatchInsertValues(response: Response): Promise<BatchInsertValuesResponseDto>;
3254
- saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, tenantId: string | null | undefined, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3101
+ saveMeasurementFormInstanceSchemaComment(id: string, schemaId: string, request: SaveMeasurementFormInstanceSchemaCommentRequest): Promise<void>;
3255
3102
  protected processSaveMeasurementFormInstanceSchemaComment(response: Response): Promise<void>;
3256
- createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, tenantId: string | null | undefined, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3103
+ createMeasurementFormInstanceSchemaFeedback(id: string, schemaId: string, request: CreateMeasurementFormSchemaFeedbackRequest): Promise<SchemaFeedbackCreatedDto>;
3257
3104
  protected processCreateMeasurementFormInstanceSchemaFeedback(response: Response): Promise<SchemaFeedbackCreatedDto>;
3258
3105
  listSupplierMeasurementFormInstances(supplierId: string): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
3259
3106
  protected processListSupplierMeasurementFormInstances(response: Response): Promise<MeasurementFormSupplierAccessInstanceDto[]>;
@@ -3278,7 +3125,7 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
3278
3125
  createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
3279
3126
  reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3280
3127
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3281
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
3128
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3282
3129
  }
3283
3130
  export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
3284
3131
  private http;
@@ -3302,7 +3149,7 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
3302
3149
  protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3303
3150
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
3304
3151
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
3305
- toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
3152
+ toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string): Promise<void>;
3306
3153
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
3307
3154
  }
3308
3155
  export interface ICompaniesClient {
@@ -3642,6 +3489,111 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3642
3489
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3643
3490
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3644
3491
  }
3492
+ export interface IExternalAccessClient {
3493
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3494
+ createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3495
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3496
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3497
+ migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
3498
+ listRoles(): Promise<ExternalRoleDto[]>;
3499
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3500
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
3501
+ }
3502
+ export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
3503
+ private http;
3504
+ private baseUrl;
3505
+ constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3506
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3507
+ });
3508
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3509
+ protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
3510
+ createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3511
+ protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
3512
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3513
+ protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
3514
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3515
+ protected processDeleteCompanyUser(response: Response): Promise<void>;
3516
+ migrateLegacyCompanyUsersToEntra(): Promise<CompanyUserDto[]>;
3517
+ protected processMigrateLegacyCompanyUsersToEntra(response: Response): Promise<CompanyUserDto[]>;
3518
+ listRoles(): Promise<ExternalRoleDto[]>;
3519
+ protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
3520
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3521
+ protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
3522
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
3523
+ protected processDeleteCompanyCustomer(response: Response): Promise<void>;
3524
+ }
3525
+ export interface IExternalClient {
3526
+ listCompanies(): Promise<CompanyDto[]>;
3527
+ getCompany(id: string): Promise<CompanyDto>;
3528
+ getCurrentSupplierInvite(): Promise<CurrentSupplierInviteDto>;
3529
+ acceptSupplierInvite(acceptingTenantId: string | null | undefined): Promise<SupplierInviteDto>;
3530
+ listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
3531
+ }
3532
+ export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
3533
+ private http;
3534
+ private baseUrl;
3535
+ constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3536
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3537
+ });
3538
+ listCompanies(): Promise<CompanyDto[]>;
3539
+ protected processListCompanies(response: Response): Promise<CompanyDto[]>;
3540
+ getCompany(id: string): Promise<CompanyDto>;
3541
+ protected processGetCompany(response: Response): Promise<CompanyDto>;
3542
+ getCurrentSupplierInvite(): Promise<CurrentSupplierInviteDto>;
3543
+ protected processGetCurrentSupplierInvite(response: Response): Promise<CurrentSupplierInviteDto>;
3544
+ acceptSupplierInvite(acceptingTenantId: string | null | undefined): Promise<SupplierInviteDto>;
3545
+ protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3546
+ listTenantsWithSuppliers(): Promise<TenantWithSupplierDto[]>;
3547
+ protected processListTenantsWithSuppliers(response: Response): Promise<TenantWithSupplierDto[]>;
3548
+ }
3549
+ export interface ISuppliersClient {
3550
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
3551
+ createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
3552
+ deleteSupplierInvite(id: string): Promise<void>;
3553
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
3554
+ deleteSupplier(id: string): Promise<void>;
3555
+ /**
3556
+ * Creates a mapping between old supplier id and new supplier id.
3557
+ */
3558
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3559
+ /**
3560
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
3561
+ */
3562
+ deleteSupplierMappings(): Promise<void>;
3563
+ lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
3564
+ getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
3565
+ }
3566
+ export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
3567
+ private http;
3568
+ private baseUrl;
3569
+ constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
3570
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3571
+ });
3572
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
3573
+ protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3574
+ createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
3575
+ protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3576
+ deleteSupplierInvite(id: string): Promise<void>;
3577
+ protected processDeleteSupplierInvite(response: Response): Promise<void>;
3578
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
3579
+ protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3580
+ deleteSupplier(id: string): Promise<void>;
3581
+ protected processDeleteSupplier(response: Response): Promise<void>;
3582
+ /**
3583
+ * Creates a mapping between old supplier id and new supplier id.
3584
+ */
3585
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3586
+ protected processCreateSupplierMapping(response: Response): Promise<void>;
3587
+ /**
3588
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
3589
+ */
3590
+ deleteSupplierMappings(): Promise<void>;
3591
+ protected processDeleteSupplierMappings(response: Response): Promise<void>;
3592
+ lookupOrganization(threeLetterIsoCountry: string | undefined, organizationNumber: string | undefined): Promise<OrganizationDto>;
3593
+ protected processLookupOrganization(response: Response): Promise<OrganizationDto>;
3594
+ getOrganizationLookupSupportedCountries(): Promise<CountryDto[]>;
3595
+ protected processGetOrganizationLookupSupportedCountries(response: Response): Promise<CountryDto[]>;
3596
+ }
3645
3597
  export interface AzureRegionDto {
3646
3598
  displayName: string;
3647
3599
  name: string;
@@ -3953,6 +3905,9 @@ export interface UserDetailsDto {
3953
3905
  isExternalUser?: boolean;
3954
3906
  isBetaTester?: boolean | null;
3955
3907
  hasAccessToIgnos?: boolean;
3908
+ isInvitedUser?: boolean;
3909
+ isSupplier?: boolean;
3910
+ companyId?: string | null;
3956
3911
  }
3957
3912
  export interface UserDto {
3958
3913
  id?: string | null;
@@ -5979,97 +5934,6 @@ export interface DocumentGeneratorTypeDto {
5979
5934
  key: string;
5980
5935
  description: string;
5981
5936
  }
5982
- export interface CompanyUserDto {
5983
- companyId?: string | null;
5984
- username?: string | null;
5985
- name?: string | null;
5986
- roles?: string[] | null;
5987
- }
5988
- export interface CreateCompanyUserRequest {
5989
- username: string;
5990
- name: string;
5991
- roles: string[];
5992
- companyId?: string | null;
5993
- }
5994
- export interface UpdateCompanyUserRequest {
5995
- name: string;
5996
- roles: string[];
5997
- companyId?: string | null;
5998
- }
5999
- export interface ExternalRoleDto {
6000
- id: string;
6001
- name: string;
6002
- }
6003
- export interface CompanyCustomerDto {
6004
- customerTenantId?: string | null;
6005
- customerAzureAdTenantId?: string | null;
6006
- customerName?: string | null;
6007
- supplierId?: string | null;
6008
- supplierName?: string | null;
6009
- }
6010
- export interface InviteDto {
6011
- tenantId: string;
6012
- companyName: string;
6013
- id: string;
6014
- supplierId: string;
6015
- supplierName: string;
6016
- username: string;
6017
- deadline: Date;
6018
- createdTime: Date;
6019
- createdBy: string;
6020
- }
6021
- export interface CompanyDto {
6022
- id?: string | null;
6023
- name?: string | null;
6024
- organizationNumber?: string | null;
6025
- country?: string | null;
6026
- tenantId?: string | null;
6027
- }
6028
- export interface AcceptSupplierInviteRequest {
6029
- tenantId: string;
6030
- existingCompanyId?: string | null;
6031
- companyName?: string | null;
6032
- organizationNumber?: string | null;
6033
- threeLetterIsoCountry?: string | null;
6034
- }
6035
- export interface SupplierInviteDto {
6036
- id: string;
6037
- supplierId: string;
6038
- name: string;
6039
- username: string;
6040
- deadline: Date;
6041
- createdTime: Date;
6042
- createdBy: string;
6043
- }
6044
- export interface CreateSupplierInvite {
6045
- supplierId: string;
6046
- name: string;
6047
- username: string;
6048
- deadline: Date;
6049
- }
6050
- export interface ExternalSupplierDto {
6051
- id: string;
6052
- name: string;
6053
- companyId: string;
6054
- active: boolean;
6055
- }
6056
- export interface ImportSupplier {
6057
- supplierId: string;
6058
- name: string;
6059
- organizationNumber?: string | null;
6060
- threeLetterIsoCountry: string;
6061
- users: ImportSupplierUserDto[];
6062
- }
6063
- export interface ImportSupplierUserDto {
6064
- username: string;
6065
- name: string;
6066
- roles: string[];
6067
- }
6068
- export interface CreateSupplierMapping {
6069
- companyId: string;
6070
- existingSupplierId: string;
6071
- newSupplierId: string;
6072
- }
6073
5937
  export interface CncMachineTransferDto {
6074
5938
  id: string;
6075
5939
  cncMachineOperationId?: string | null;
@@ -7527,6 +7391,8 @@ export interface PlannerOperationDto {
7527
7391
  drawingNumber?: string | null;
7528
7392
  description?: string | null;
7529
7393
  disableSetupRegistration?: boolean;
7394
+ sequenceNumber: number;
7395
+ isManuallyLocked: boolean;
7530
7396
  lockType: PlannerLockType;
7531
7397
  isNewOperation: boolean;
7532
7398
  weekGroup: string;
@@ -9214,101 +9080,6 @@ export interface ImaSpecificationLiteDto {
9214
9080
  updated: Date;
9215
9081
  isDeleted: boolean;
9216
9082
  }
9217
- export interface SchemaCreatorStateDto {
9218
- settings: SchemaCreatorSettingsDto;
9219
- elements: SchemaCreatorElementDto[];
9220
- documentParseStatus?: SchemaCreatorDocumentParseStatusDto | null;
9221
- isAutoGenerated?: boolean;
9222
- createdBy?: SchemaCreatorAuditInfoDto | null;
9223
- createdAt?: Date | null;
9224
- updatedBy?: SchemaCreatorAuditInfoDto | null;
9225
- updatedAt?: Date | null;
9226
- }
9227
- export interface SchemaCreatorSettingsDto {
9228
- unit?: SchemaCreatorUnitOfMeasureDto;
9229
- tolerance?: GeneralToleranceDto;
9230
- balloonSize?: number;
9231
- transparentBalloons?: boolean;
9232
- }
9233
- export type SchemaCreatorUnitOfMeasureDto = "Millimeter" | "Inch" | "Mixed";
9234
- export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9235
- export interface SchemaCreatorElementDto {
9236
- id: string;
9237
- kind: SchemaCreatorElementKindDto;
9238
- drawings: SchemaCreatorElementDrawingsDto;
9239
- isDirty?: boolean | null;
9240
- values?: SchemaCreatorElementValuesDto | null;
9241
- parseResult?: SchemaCreatorSnipResultDto | null;
9242
- resolveAttempt?: SchemaCreatorParseAttemptDto | null;
9243
- createdBy?: SchemaCreatorAuditInfoDto | null;
9244
- createdAt?: Date | null;
9245
- updatedBy?: SchemaCreatorAuditInfoDto | null;
9246
- updatedAt?: Date | null;
9247
- }
9248
- export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
9249
- export interface SchemaCreatorElementDrawingsDto {
9250
- snip: SchemaCreatorSnipDto;
9251
- balloon: SchemaCreatorPointDto;
9252
- pageIndex: number;
9253
- }
9254
- export interface SchemaCreatorSnipDto {
9255
- rect: SchemaCreatorRectDto;
9256
- rotation?: number | null;
9257
- unrotatedRect?: SchemaCreatorRectDto | null;
9258
- }
9259
- export interface SchemaCreatorRectDto {
9260
- origin: SchemaCreatorPointDto;
9261
- size: SchemaCreatorSizeDto;
9262
- }
9263
- export interface SchemaCreatorPointDto {
9264
- x: number;
9265
- y: number;
9266
- }
9267
- export interface SchemaCreatorSizeDto {
9268
- width: number;
9269
- height: number;
9270
- }
9271
- export interface SchemaCreatorElementValuesDto {
9272
- reference: number;
9273
- unit?: UnitOfMeasureDto | null;
9274
- nominal?: number | null;
9275
- nominalText?: string | null;
9276
- plusTolerance?: number | null;
9277
- minusTolerance?: number | null;
9278
- coatingThickness?: number | null;
9279
- measurementFrequency: MeasurementFrequency;
9280
- measurementFrequencyParameter?: number | null;
9281
- type?: string | null;
9282
- count?: number | null;
9283
- comment?: string | null;
9284
- canCopy: boolean;
9285
- visibleToCustomer: boolean;
9286
- isDocumentedExternally: boolean;
9287
- }
9288
- export type UnitOfMeasureDto = "Millimeter" | "Inch";
9289
- export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9290
- export interface SchemaCreatorSnipResultDto {
9291
- nominal?: number | null;
9292
- nominalText?: string | null;
9293
- plusTolerance?: number | null;
9294
- minusTolerance?: number | null;
9295
- count?: number | null;
9296
- }
9297
- export interface SchemaCreatorParseAttemptDto {
9298
- startedAt: Date;
9299
- errorType?: SchemaCreatorParseErrorTypeDto | null;
9300
- errorMessage?: string | null;
9301
- }
9302
- export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
9303
- export interface SchemaCreatorAuditInfoDto {
9304
- objectId: string;
9305
- userId: string;
9306
- userFullName?: string | null;
9307
- }
9308
- export interface SchemaCreatorDocumentParseStatusDto {
9309
- inProgress: boolean;
9310
- attempt?: SchemaCreatorParseAttemptDto | null;
9311
- }
9312
9083
  export interface MeasurementFormSchemaDto {
9313
9084
  id: string;
9314
9085
  versionId: number;
@@ -9340,7 +9111,9 @@ export interface MeasurementFormSchemaDto {
9340
9111
  }
9341
9112
  export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
9342
9113
  export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
9114
+ export type UnitOfMeasureDto = "Millimeter" | "Inch";
9343
9115
  export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
9116
+ export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9344
9117
  export interface MeasurementFormSchemaAttachmentDto {
9345
9118
  url: string;
9346
9119
  title: string;
@@ -9389,6 +9162,7 @@ export interface MeasurementFormGroupedElementDto {
9389
9162
  isValid: boolean;
9390
9163
  validationErrorMessage?: string | null;
9391
9164
  }
9165
+ export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9392
9166
  export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
9393
9167
  export type BonusType = "None" | "Positive" | "PositiveAndNegative";
9394
9168
  export interface MeasurementFormLinkedSchemaDto {
@@ -9854,7 +9628,6 @@ export interface ListMeasurementFormsRequest {
9854
9628
  pageSize?: number | null;
9855
9629
  search?: string | null;
9856
9630
  continuationToken?: string | null;
9857
- tenantId?: string | null;
9858
9631
  inactive?: boolean | null;
9859
9632
  includeInactiveSupplierAccess?: boolean | null;
9860
9633
  }
@@ -10050,7 +9823,6 @@ export interface UpsertSupplierToMeasurementFormInstanceRequest {
10050
9823
  externalOrderNumber?: string | null;
10051
9824
  }
10052
9825
  export interface ExportDimensionReportV2Request {
10053
- tenantId?: string | null;
10054
9826
  type: DimensionReportType;
10055
9827
  extras?: DimensionReportExtras | null;
10056
9828
  specificSerialNumbers?: string[] | null;
@@ -10396,6 +10168,105 @@ export interface SetDiscussionLastReadRequest {
10396
10168
  operationId?: string | null;
10397
10169
  resourceId?: string | null;
10398
10170
  }
10171
+ export interface CompanyUserDto {
10172
+ companyId: string;
10173
+ userObjectId: string;
10174
+ username?: string | null;
10175
+ name?: string | null;
10176
+ roles: string[];
10177
+ }
10178
+ export interface CreateCompanyUser {
10179
+ username: string;
10180
+ name: string;
10181
+ roles: string[];
10182
+ companyId?: string | null;
10183
+ }
10184
+ export interface UpdateCompanyUserRequest {
10185
+ roles: string[];
10186
+ companyId?: string | null;
10187
+ }
10188
+ export interface ExternalRoleDto {
10189
+ id: string;
10190
+ name: string;
10191
+ }
10192
+ export interface CompanyCustomerDto {
10193
+ customerTenantId?: string | null;
10194
+ customerAzureAdTenantId?: string | null;
10195
+ customerName?: string | null;
10196
+ supplierId?: string | null;
10197
+ supplierName?: string | null;
10198
+ customerIgnosPortalPrefix?: string | null;
10199
+ }
10200
+ export interface CompanyDto {
10201
+ id: string;
10202
+ name: string;
10203
+ organizationNumber?: string | null;
10204
+ country: string;
10205
+ tenantId?: string | null;
10206
+ }
10207
+ export interface SupplierInviteDto {
10208
+ id: string;
10209
+ supplierId: string;
10210
+ threeLetterIsoCountry: string;
10211
+ organizationNumber: string;
10212
+ supplierName?: string | null;
10213
+ userId: string;
10214
+ userName?: string | null;
10215
+ acceptedTimestamp?: Date | null;
10216
+ createdTime: Date;
10217
+ createdBy: string;
10218
+ }
10219
+ export interface CurrentSupplierInviteDto extends SupplierInviteDto {
10220
+ matchingCustomerOrCompany?: MatchingCustomerOrCompany | null;
10221
+ }
10222
+ export interface MatchingCustomerOrCompany {
10223
+ customer?: IgnosCustomerDto | null;
10224
+ company?: CompanyDto | null;
10225
+ companyCustomers?: CompanyCustomerDto[];
10226
+ }
10227
+ export interface IgnosCustomerDto {
10228
+ id: string;
10229
+ name: string;
10230
+ contactPerson: ContactPersonDto;
10231
+ threeLetterIsoCountry: string;
10232
+ organizationNumber: string;
10233
+ country: string;
10234
+ tenants: AvailableTenantDto[];
10235
+ }
10236
+ export interface ContactPersonDto {
10237
+ name: string;
10238
+ phone: string;
10239
+ email: string;
10240
+ }
10241
+ export interface TenantWithSupplierDto {
10242
+ tenantId: string;
10243
+ customerName: string;
10244
+ supplierTenantEntraId: string;
10245
+ }
10246
+ export interface CreateSupplierInviteRequest {
10247
+ supplierId: string;
10248
+ threeLetterIsoCountry: string;
10249
+ organizationNumber: string;
10250
+ supplierName?: string | null;
10251
+ username: string;
10252
+ invitedName: string;
10253
+ }
10254
+ export interface ExternalSupplierDto {
10255
+ id: string;
10256
+ name: string;
10257
+ companyId: string;
10258
+ active: boolean;
10259
+ }
10260
+ export interface CreateSupplierMapping {
10261
+ companyId: string;
10262
+ existingSupplierId: string;
10263
+ newSupplierId: string;
10264
+ }
10265
+ export interface OrganizationDto {
10266
+ name?: string;
10267
+ postalAddress?: string | null;
10268
+ registeredAddress?: string | null;
10269
+ }
10399
10270
  export type FeatureCollectionType = "FeatureCollection";
10400
10271
  export interface Features {
10401
10272
  type: FeaturesType;