@@ -25174,7 +25174,6 @@ export class PictureFields implements GrpcMessage {
25174
25174
_instance.votes = _instance.votes || false;
25175
25175
_instance.commentsCount = _instance.commentsCount || false;
25176
25176
_instance.moderVote = _instance.moderVote || false;
25177
- _instance.thumb = _instance.thumb || false;
25178
25177
_instance.path = _instance.path || undefined;
25179
25178
_instance.pictureItem = _instance.pictureItem || undefined;
25180
25179
_instance.imageGalleryFull = _instance.imageGalleryFull || false;
@@ -25236,9 +25235,6 @@ export class PictureFields implements GrpcMessage {
25236
25235
case 8:
25237
25236
_instance.moderVote = _reader.readBool();
25238
25237
break;
25239
- case 9:
25240
- _instance.thumb = _reader.readBool();
25241
- break;
25242
25238
case 10:
25243
25239
_instance.path = new PicturePathRequest();
25244
25240
_reader.readMessage(
@@ -25368,9 +25364,6 @@ export class PictureFields implements GrpcMessage {
25368
25364
if (_instance.moderVote) {
25369
25365
_writer.writeBool(8, _instance.moderVote);
25370
25366
}
25371
- if (_instance.thumb) {
25372
- _writer.writeBool(9, _instance.thumb);
25373
- }
25374
25367
if (_instance.path) {
25375
25368
_writer.writeMessage(
25376
25369
10,
@@ -25467,7 +25460,6 @@ export class PictureFields implements GrpcMessage {
25467
25460
private _votes: boolean;
25468
25461
private _commentsCount: boolean;
25469
25462
private _moderVote: boolean;
25470
- private _thumb: boolean;
25471
25463
private _path?: PicturePathRequest;
25472
25464
private _pictureItem?: PictureItemsRequest;
25473
25465
private _imageGalleryFull: boolean;
@@ -25503,7 +25495,6 @@ export class PictureFields implements GrpcMessage {
25503
25495
this.votes = _value.votes;
25504
25496
this.commentsCount = _value.commentsCount;
25505
25497
this.moderVote = _value.moderVote;
25506
- this.thumb = _value.thumb;
25507
25498
this.path = _value.path ? new PicturePathRequest(_value.path) : undefined;
25508
25499
this.pictureItem = _value.pictureItem
25509
25500
? new PictureItemsRequest(_value.pictureItem)
@@ -25591,12 +25582,6 @@ export class PictureFields implements GrpcMessage {
25591
25582
set moderVote(value: boolean) {
25592
25583
this._moderVote = value;
25593
25584
}
25594
- get thumb(): boolean {
25595
- return this._thumb;
25596
- }
25597
- set thumb(value: boolean) {
25598
- this._thumb = value;
25599
- }
25600
25585
get path(): PicturePathRequest | undefined {
25601
25586
return this._path;
25602
25587
}
@@ -25736,7 +25721,6 @@ export class PictureFields implements GrpcMessage {
25736
25721
votes: this.votes,
25737
25722
commentsCount: this.commentsCount,
25738
25723
moderVote: this.moderVote,
25739
- thumb: this.thumb,
25740
25724
path: this.path ? this.path.toObject() : undefined,
25741
25725
pictureItem: this.pictureItem ? this.pictureItem.toObject() : undefined,
25742
25726
imageGalleryFull: this.imageGalleryFull,
@@ -25787,7 +25771,6 @@ export class PictureFields implements GrpcMessage {
25787
25771
votes: this.votes,
25788
25772
commentsCount: this.commentsCount,
25789
25773
moderVote: this.moderVote,
25790
- thumb: this.thumb,
25791
25774
path: this.path ? this.path.toProtobufJSON(options) : null,
25792
25775
pictureItem: this.pictureItem
25793
25776
? this.pictureItem.toProtobufJSON(options)
@@ -25832,7 +25815,6 @@ export module PictureFields {
25832
25815
votes: boolean;
25833
25816
commentsCount: boolean;
25834
25817
moderVote: boolean;
25835
- thumb: boolean;
25836
25818
path?: PicturePathRequest.AsObject;
25837
25819
pictureItem?: PictureItemsRequest.AsObject;
25838
25820
imageGalleryFull: boolean;
@@ -25867,7 +25849,6 @@ export module PictureFields {
25867
25849
votes: boolean;
25868
25850
commentsCount: boolean;
25869
25851
moderVote: boolean;
25870
- thumb: boolean;
25871
25852
path: PicturePathRequest.AsProtobufJSON | null;
25872
25853
pictureItem: PictureItemsRequest.AsProtobufJSON | null;
25873
25854
imageGalleryFull: boolean;
@@ -40421,7 +40402,6 @@ export class Picture implements GrpcMessage {
40421
40402
_instance.commentsCountNew = _instance.commentsCountNew || 0;
40422
40403
_instance.moderVoteVote = _instance.moderVoteVote || 0;
40423
40404
_instance.moderVoteCount = _instance.moderVoteCount || 0;
40424
- _instance.thumb = _instance.thumb || undefined;
40425
40405
_instance.path = _instance.path || [];
40426
40406
_instance.pictureItems = _instance.pictureItems || undefined;
40427
40407
_instance.imageGallery = _instance.imageGallery || undefined;
@@ -40547,13 +40527,6 @@ export class Picture implements GrpcMessage {
40547
40527
case 21:
40548
40528
_instance.moderVoteCount = _reader.readInt32();
40549
40529
break;
40550
- case 22:
40551
- _instance.thumb = new APIImage();
40552
- _reader.readMessage(
40553
- _instance.thumb,
40554
- APIImage.deserializeBinaryFromReader
40555
- );
40556
- break;
40557
40530
case 23:
40558
40531
const messageInitializer23 = new PathTreePictureItem();
40559
40532
_reader.readMessage(
@@ -40779,13 +40752,6 @@ export class Picture implements GrpcMessage {
40779
40752
if (_instance.moderVoteCount) {
40780
40753
_writer.writeInt32(21, _instance.moderVoteCount);
40781
40754
}
40782
- if (_instance.thumb) {
40783
- _writer.writeMessage(
40784
- 22,
40785
- _instance.thumb as any,
40786
- APIImage.serializeBinaryToWriter
40787
- );
40788
- }
40789
40755
if (_instance.path && _instance.path.length) {
40790
40756
_writer.writeRepeatedMessage(
40791
40757
23,
@@ -40934,7 +40900,6 @@ export class Picture implements GrpcMessage {
40934
40900
private _commentsCountNew: number;
40935
40901
private _moderVoteVote: number;
40936
40902
private _moderVoteCount: number;
40937
- private _thumb?: APIImage;
40938
40903
private _path?: PathTreePictureItem[];
40939
40904
private _pictureItems?: PictureItems;
40940
40905
private _imageGallery?: APIImage;
@@ -40996,7 +40961,6 @@ export class Picture implements GrpcMessage {
40996
40961
this.commentsCountNew = _value.commentsCountNew;
40997
40962
this.moderVoteVote = _value.moderVoteVote;
40998
40963
this.moderVoteCount = _value.moderVoteCount;
40999
- this.thumb = _value.thumb ? new APIImage(_value.thumb) : undefined;
41000
40964
this.path = (_value.path || []).map(m => new PathTreePictureItem(m));
41001
40965
this.pictureItems = _value.pictureItems
41002
40966
? new PictureItems(_value.pictureItems)
@@ -41177,12 +41141,6 @@ export class Picture implements GrpcMessage {
41177
41141
set moderVoteCount(value: number) {
41178
41142
this._moderVoteCount = value;
41179
41143
}
41180
- get thumb(): APIImage | undefined {
41181
- return this._thumb;
41182
- }
41183
- set thumb(value: APIImage | undefined) {
41184
- this._thumb = value;
41185
- }
41186
41144
get path(): PathTreePictureItem[] | undefined {
41187
41145
return this._path;
41188
41146
}
@@ -41365,7 +41323,6 @@ export class Picture implements GrpcMessage {
41365
41323
commentsCountNew: this.commentsCountNew,
41366
41324
moderVoteVote: this.moderVoteVote,
41367
41325
moderVoteCount: this.moderVoteCount,
41368
- thumb: this.thumb ? this.thumb.toObject() : undefined,
41369
41326
path: (this.path || []).map(m => m.toObject()),
41370
41327
pictureItems: this.pictureItems
41371
41328
? this.pictureItems.toObject()
@@ -41449,7 +41406,6 @@ export class Picture implements GrpcMessage {
41449
41406
commentsCountNew: this.commentsCountNew,
41450
41407
moderVoteVote: this.moderVoteVote,
41451
41408
moderVoteCount: this.moderVoteCount,
41452
- thumb: this.thumb ? this.thumb.toProtobufJSON(options) : null,
41453
41409
path: (this.path || []).map(m => m.toProtobufJSON(options)),
41454
41410
pictureItems: this.pictureItems
41455
41411
? this.pictureItems.toProtobufJSON(options)
@@ -41518,7 +41474,6 @@ export module Picture {
41518
41474
commentsCountNew: number;
41519
41475
moderVoteVote: number;
41520
41476
moderVoteCount: number;
41521
- thumb?: APIImage.AsObject;
41522
41477
path?: PathTreePictureItem.AsObject[];
41523
41478
pictureItems?: PictureItems.AsObject;
41524
41479
imageGallery?: APIImage.AsObject;
@@ -41571,7 +41526,6 @@ export module Picture {
41571
41526
commentsCountNew: number;
41572
41527
moderVoteVote: number;
41573
41528
moderVoteCount: number;
41574
- thumb: APIImage.AsProtobufJSON | null;
41575
41529
path: PathTreePictureItem.AsProtobufJSON[] | null;
41576
41530
pictureItems: PictureItems.AsProtobufJSON | null;
41577
41531
imageGallery: APIImage.AsProtobufJSON | null;
0 commit comments