@ignos/api-client 20251209.0.13462-alpha → 20251209.0.13465-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
|
@@ -4678,6 +4678,8 @@ export declare class UpdateMrbTemplate implements IUpdateMrbTemplate {
|
|
|
4678
4678
|
elements?: MrbTemplateUpdateElementDto[];
|
|
4679
4679
|
contentIndicator?: string | null;
|
|
4680
4680
|
noContentIndicator?: string | null;
|
|
4681
|
+
showSerialNumbersOnFrontPage?: boolean;
|
|
4682
|
+
showSerialNumbersOnCoC?: boolean;
|
|
4681
4683
|
constructor(data?: IUpdateMrbTemplate);
|
|
4682
4684
|
init(_data?: any): void;
|
|
4683
4685
|
static fromJS(data: any): UpdateMrbTemplate;
|
|
@@ -4690,6 +4692,8 @@ export interface IUpdateMrbTemplate {
|
|
|
4690
4692
|
elements?: MrbTemplateUpdateElementDto[];
|
|
4691
4693
|
contentIndicator?: string | null;
|
|
4692
4694
|
noContentIndicator?: string | null;
|
|
4695
|
+
showSerialNumbersOnFrontPage?: boolean;
|
|
4696
|
+
showSerialNumbersOnCoC?: boolean;
|
|
4693
4697
|
}
|
|
4694
4698
|
export declare class MrbTemplateUpdateElementDto implements IMrbTemplateUpdateElementDto {
|
|
4695
4699
|
id?: string | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -27694,6 +27694,8 @@ export class UpdateMrbTemplate {
|
|
|
27694
27694
|
}
|
|
27695
27695
|
this.contentIndicator = _data["contentIndicator"];
|
|
27696
27696
|
this.noContentIndicator = _data["noContentIndicator"];
|
|
27697
|
+
this.showSerialNumbersOnFrontPage = _data["showSerialNumbersOnFrontPage"];
|
|
27698
|
+
this.showSerialNumbersOnCoC = _data["showSerialNumbersOnCoC"];
|
|
27697
27699
|
}
|
|
27698
27700
|
}
|
|
27699
27701
|
static fromJS(data) {
|
|
@@ -27714,6 +27716,8 @@ export class UpdateMrbTemplate {
|
|
|
27714
27716
|
}
|
|
27715
27717
|
data["contentIndicator"] = this.contentIndicator;
|
|
27716
27718
|
data["noContentIndicator"] = this.noContentIndicator;
|
|
27719
|
+
data["showSerialNumbersOnFrontPage"] = this.showSerialNumbersOnFrontPage;
|
|
27720
|
+
data["showSerialNumbersOnCoC"] = this.showSerialNumbersOnCoC;
|
|
27717
27721
|
return data;
|
|
27718
27722
|
}
|
|
27719
27723
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -31096,6 +31096,8 @@ export class UpdateMrbTemplate implements IUpdateMrbTemplate {
|
|
|
31096
31096
|
elements?: MrbTemplateUpdateElementDto[];
|
|
31097
31097
|
contentIndicator?: string | null;
|
|
31098
31098
|
noContentIndicator?: string | null;
|
|
31099
|
+
showSerialNumbersOnFrontPage?: boolean;
|
|
31100
|
+
showSerialNumbersOnCoC?: boolean;
|
|
31099
31101
|
|
|
31100
31102
|
constructor(data?: IUpdateMrbTemplate) {
|
|
31101
31103
|
if (data) {
|
|
@@ -31118,6 +31120,8 @@ export class UpdateMrbTemplate implements IUpdateMrbTemplate {
|
|
|
31118
31120
|
}
|
|
31119
31121
|
this.contentIndicator = _data["contentIndicator"];
|
|
31120
31122
|
this.noContentIndicator = _data["noContentIndicator"];
|
|
31123
|
+
this.showSerialNumbersOnFrontPage = _data["showSerialNumbersOnFrontPage"];
|
|
31124
|
+
this.showSerialNumbersOnCoC = _data["showSerialNumbersOnCoC"];
|
|
31121
31125
|
}
|
|
31122
31126
|
}
|
|
31123
31127
|
|
|
@@ -31140,6 +31144,8 @@ export class UpdateMrbTemplate implements IUpdateMrbTemplate {
|
|
|
31140
31144
|
}
|
|
31141
31145
|
data["contentIndicator"] = this.contentIndicator;
|
|
31142
31146
|
data["noContentIndicator"] = this.noContentIndicator;
|
|
31147
|
+
data["showSerialNumbersOnFrontPage"] = this.showSerialNumbersOnFrontPage;
|
|
31148
|
+
data["showSerialNumbersOnCoC"] = this.showSerialNumbersOnCoC;
|
|
31143
31149
|
return data;
|
|
31144
31150
|
}
|
|
31145
31151
|
}
|
|
@@ -31151,6 +31157,8 @@ export interface IUpdateMrbTemplate {
|
|
|
31151
31157
|
elements?: MrbTemplateUpdateElementDto[];
|
|
31152
31158
|
contentIndicator?: string | null;
|
|
31153
31159
|
noContentIndicator?: string | null;
|
|
31160
|
+
showSerialNumbersOnFrontPage?: boolean;
|
|
31161
|
+
showSerialNumbersOnCoC?: boolean;
|
|
31154
31162
|
}
|
|
31155
31163
|
|
|
31156
31164
|
export class MrbTemplateUpdateElementDto implements IMrbTemplateUpdateElementDto {
|