@ignos/api-client 20250627.0.11997 → 20250701.0.12017
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
|
@@ -11895,6 +11895,7 @@ export declare class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroup
|
|
|
11895
11895
|
includeInCustomerDocumentation: boolean;
|
|
11896
11896
|
canCopy?: boolean | null;
|
|
11897
11897
|
isDocumentedExternally: boolean;
|
|
11898
|
+
coatingThickness?: number | null;
|
|
11898
11899
|
constructor(data?: IUpdateSchemaGroupedElementDto);
|
|
11899
11900
|
init(_data?: any): void;
|
|
11900
11901
|
static fromJS(data: any): UpdateSchemaGroupedElementDto;
|
|
@@ -11907,6 +11908,7 @@ export interface IUpdateSchemaGroupedElementDto {
|
|
|
11907
11908
|
includeInCustomerDocumentation: boolean;
|
|
11908
11909
|
canCopy?: boolean | null;
|
|
11909
11910
|
isDocumentedExternally: boolean;
|
|
11911
|
+
coatingThickness?: number | null;
|
|
11910
11912
|
}
|
|
11911
11913
|
export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedElementRowDto {
|
|
11912
11914
|
id: string;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -41389,6 +41389,7 @@ export class UpdateSchemaGroupedElementDto {
|
|
|
41389
41389
|
this.includeInCustomerDocumentation = _data["includeInCustomerDocumentation"];
|
|
41390
41390
|
this.canCopy = _data["canCopy"];
|
|
41391
41391
|
this.isDocumentedExternally = _data["isDocumentedExternally"];
|
|
41392
|
+
this.coatingThickness = _data["coatingThickness"];
|
|
41392
41393
|
}
|
|
41393
41394
|
}
|
|
41394
41395
|
static fromJS(data) {
|
|
@@ -41405,6 +41406,7 @@ export class UpdateSchemaGroupedElementDto {
|
|
|
41405
41406
|
data["includeInCustomerDocumentation"] = this.includeInCustomerDocumentation;
|
|
41406
41407
|
data["canCopy"] = this.canCopy;
|
|
41407
41408
|
data["isDocumentedExternally"] = this.isDocumentedExternally;
|
|
41409
|
+
data["coatingThickness"] = this.coatingThickness;
|
|
41408
41410
|
return data;
|
|
41409
41411
|
}
|
|
41410
41412
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -52120,6 +52120,7 @@ export class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroupedElemen
|
|
|
52120
52120
|
includeInCustomerDocumentation!: boolean;
|
|
52121
52121
|
canCopy?: boolean | null;
|
|
52122
52122
|
isDocumentedExternally!: boolean;
|
|
52123
|
+
coatingThickness?: number | null;
|
|
52123
52124
|
|
|
52124
52125
|
constructor(data?: IUpdateSchemaGroupedElementDto) {
|
|
52125
52126
|
if (data) {
|
|
@@ -52138,6 +52139,7 @@ export class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroupedElemen
|
|
|
52138
52139
|
this.includeInCustomerDocumentation = _data["includeInCustomerDocumentation"];
|
|
52139
52140
|
this.canCopy = _data["canCopy"];
|
|
52140
52141
|
this.isDocumentedExternally = _data["isDocumentedExternally"];
|
|
52142
|
+
this.coatingThickness = _data["coatingThickness"];
|
|
52141
52143
|
}
|
|
52142
52144
|
}
|
|
52143
52145
|
|
|
@@ -52156,6 +52158,7 @@ export class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroupedElemen
|
|
|
52156
52158
|
data["includeInCustomerDocumentation"] = this.includeInCustomerDocumentation;
|
|
52157
52159
|
data["canCopy"] = this.canCopy;
|
|
52158
52160
|
data["isDocumentedExternally"] = this.isDocumentedExternally;
|
|
52161
|
+
data["coatingThickness"] = this.coatingThickness;
|
|
52159
52162
|
return data;
|
|
52160
52163
|
}
|
|
52161
52164
|
}
|
|
@@ -52167,6 +52170,7 @@ export interface IUpdateSchemaGroupedElementDto {
|
|
|
52167
52170
|
includeInCustomerDocumentation: boolean;
|
|
52168
52171
|
canCopy?: boolean | null;
|
|
52169
52172
|
isDocumentedExternally: boolean;
|
|
52173
|
+
coatingThickness?: number | null;
|
|
52170
52174
|
}
|
|
52171
52175
|
|
|
52172
52176
|
export class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedElementRowDto {
|