@ignos/api-client 20260119.0.13783-alpha → 20260120.0.13793-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
|
@@ -13528,7 +13528,7 @@ export interface ICreateMeasurementFormSchema {
|
|
|
13528
13528
|
}
|
|
13529
13529
|
export declare class UpdateMeasurementFormSchemaRequest implements IUpdateMeasurementFormSchemaRequest {
|
|
13530
13530
|
excludeFromCustomerDocumentation: boolean;
|
|
13531
|
-
excludeDrawingFromCustomerDocumentation
|
|
13531
|
+
excludeDrawingFromCustomerDocumentation?: boolean | null;
|
|
13532
13532
|
specification?: string | null;
|
|
13533
13533
|
constructor(data?: IUpdateMeasurementFormSchemaRequest);
|
|
13534
13534
|
init(_data?: any): void;
|
|
@@ -13537,7 +13537,7 @@ export declare class UpdateMeasurementFormSchemaRequest implements IUpdateMeasur
|
|
|
13537
13537
|
}
|
|
13538
13538
|
export interface IUpdateMeasurementFormSchemaRequest {
|
|
13539
13539
|
excludeFromCustomerDocumentation: boolean;
|
|
13540
|
-
excludeDrawingFromCustomerDocumentation
|
|
13540
|
+
excludeDrawingFromCustomerDocumentation?: boolean | null;
|
|
13541
13541
|
specification?: string | null;
|
|
13542
13542
|
}
|
|
13543
13543
|
export declare class CopyMeasurementFormSchema implements ICopyMeasurementFormSchema {
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -60250,7 +60250,7 @@ export interface ICreateMeasurementFormSchema {
|
|
|
60250
60250
|
|
|
60251
60251
|
export class UpdateMeasurementFormSchemaRequest implements IUpdateMeasurementFormSchemaRequest {
|
|
60252
60252
|
excludeFromCustomerDocumentation!: boolean;
|
|
60253
|
-
excludeDrawingFromCustomerDocumentation
|
|
60253
|
+
excludeDrawingFromCustomerDocumentation?: boolean | null;
|
|
60254
60254
|
specification?: string | null;
|
|
60255
60255
|
|
|
60256
60256
|
constructor(data?: IUpdateMeasurementFormSchemaRequest) {
|
|
@@ -60288,7 +60288,7 @@ export class UpdateMeasurementFormSchemaRequest implements IUpdateMeasurementFor
|
|
|
60288
60288
|
|
|
60289
60289
|
export interface IUpdateMeasurementFormSchemaRequest {
|
|
60290
60290
|
excludeFromCustomerDocumentation: boolean;
|
|
60291
|
-
excludeDrawingFromCustomerDocumentation
|
|
60291
|
+
excludeDrawingFromCustomerDocumentation?: boolean | null;
|
|
60292
60292
|
specification?: string | null;
|
|
60293
60293
|
}
|
|
60294
60294
|
|