@ignos/api-client 20260905.260.1-alpha → 20260907.262.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.
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -9765,6 +9765,8 @@ export interface MeasurementFormCustomerSettingsDto {
|
|
|
9765
9765
|
validationRuleId?: string | null;
|
|
9766
9766
|
requireCalibratedTools: boolean;
|
|
9767
9767
|
allowEmptyToolListInValue: boolean;
|
|
9768
|
+
disableAiParseDocument: boolean;
|
|
9769
|
+
disableAiParseSnip: boolean;
|
|
9768
9770
|
}
|
|
9769
9771
|
export interface UpdateMeasurementFormCustomerSettings {
|
|
9770
9772
|
customerId: string;
|
|
@@ -9773,6 +9775,8 @@ export interface UpdateMeasurementFormCustomerSettings {
|
|
|
9773
9775
|
validationRuleId?: string | null;
|
|
9774
9776
|
requireCalibratedTools: boolean;
|
|
9775
9777
|
allowEmptyToolListInValue: boolean;
|
|
9778
|
+
disableAiParseDocument: boolean;
|
|
9779
|
+
disableAiParseSnip: boolean;
|
|
9776
9780
|
}
|
|
9777
9781
|
export interface MeasurementFormMappingDto {
|
|
9778
9782
|
id: string;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -39473,6 +39473,8 @@ export interface MeasurementFormCustomerSettingsDto {
|
|
|
39473
39473
|
validationRuleId?: string | null;
|
|
39474
39474
|
requireCalibratedTools: boolean;
|
|
39475
39475
|
allowEmptyToolListInValue: boolean;
|
|
39476
|
+
disableAiParseDocument: boolean;
|
|
39477
|
+
disableAiParseSnip: boolean;
|
|
39476
39478
|
}
|
|
39477
39479
|
|
|
39478
39480
|
export interface UpdateMeasurementFormCustomerSettings {
|
|
@@ -39482,6 +39484,8 @@ export interface UpdateMeasurementFormCustomerSettings {
|
|
|
39482
39484
|
validationRuleId?: string | null;
|
|
39483
39485
|
requireCalibratedTools: boolean;
|
|
39484
39486
|
allowEmptyToolListInValue: boolean;
|
|
39487
|
+
disableAiParseDocument: boolean;
|
|
39488
|
+
disableAiParseSnip: boolean;
|
|
39485
39489
|
}
|
|
39486
39490
|
|
|
39487
39491
|
export interface MeasurementFormMappingDto {
|