@@ -6308,10 +6308,11 @@ proto.fontbakery.dashboard.PullRequest.toObject = function(includeInstance, msg)
6308
6308
var f , obj = {
6309
6309
sessionId : jspb . Message . getFieldWithDefault ( msg , 1 , "" ) ,
6310
6310
storageKey : jspb . Message . getFieldWithDefault ( msg , 2 , "" ) ,
6311
- targetDirectory : jspb . Message . getFieldWithDefault ( msg , 3 , "" ) ,
6312
- pRMessageTitle : jspb . Message . getFieldWithDefault ( msg , 4 , "" ) ,
6313
- pRMessageBody : jspb . Message . getFieldWithDefault ( msg , 5 , "" ) ,
6314
- commitMessage : jspb . Message . getFieldWithDefault ( msg , 6 , "" ) ,
6311
+ pRTarget : jspb . Message . getFieldWithDefault ( msg , 3 , "" ) ,
6312
+ targetDirectory : jspb . Message . getFieldWithDefault ( msg , 4 , "" ) ,
6313
+ pRMessageTitle : jspb . Message . getFieldWithDefault ( msg , 5 , "" ) ,
6314
+ pRMessageBody : jspb . Message . getFieldWithDefault ( msg , 6 , "" ) ,
6315
+ commitMessage : jspb . Message . getFieldWithDefault ( msg , 7 , "" ) ,
6315
6316
processCommand : ( f = msg . getProcessCommand ( ) ) && proto . fontbakery . dashboard . ProcessCommand . toObject ( includeInstance , f )
6316
6317
} ;
6317
6318
@@ -6359,21 +6360,25 @@ proto.fontbakery.dashboard.PullRequest.deserializeBinaryFromReader = function(ms
6359
6360
break ;
6360
6361
case 3 :
6361
6362
var value = /** @type {string } */ ( reader . readString ( ) ) ;
6362
- msg . setTargetDirectory ( value ) ;
6363
+ msg . setPRTarget ( value ) ;
6363
6364
break ;
6364
6365
case 4 :
6365
6366
var value = /** @type {string } */ ( reader . readString ( ) ) ;
6366
- msg . setPRMessageTitle ( value ) ;
6367
+ msg . setTargetDirectory ( value ) ;
6367
6368
break ;
6368
6369
case 5 :
6369
6370
var value = /** @type {string } */ ( reader . readString ( ) ) ;
6370
- msg . setPRMessageBody ( value ) ;
6371
+ msg . setPRMessageTitle ( value ) ;
6371
6372
break ;
6372
6373
case 6 :
6373
6374
var value = /** @type {string } */ ( reader . readString ( ) ) ;
6374
- msg . setCommitMessage ( value ) ;
6375
+ msg . setPRMessageBody ( value ) ;
6375
6376
break ;
6376
6377
case 7 :
6378
+ var value = /** @type {string } */ ( reader . readString ( ) ) ;
6379
+ msg . setCommitMessage ( value ) ;
6380
+ break ;
6381
+ case 8 :
6377
6382
var value = new proto . fontbakery . dashboard . ProcessCommand ;
6378
6383
reader . readMessage ( value , proto . fontbakery . dashboard . ProcessCommand . deserializeBinaryFromReader ) ;
6379
6384
msg . setProcessCommand ( value ) ;
@@ -6421,38 +6426,45 @@ proto.fontbakery.dashboard.PullRequest.serializeBinaryToWriter = function(messag
6421
6426
f
6422
6427
) ;
6423
6428
}
6424
- f = message . getTargetDirectory ( ) ;
6429
+ f = message . getPRTarget ( ) ;
6425
6430
if ( f . length > 0 ) {
6426
6431
writer . writeString (
6427
6432
3 ,
6428
6433
f
6429
6434
) ;
6430
6435
}
6431
- f = message . getPRMessageTitle ( ) ;
6436
+ f = message . getTargetDirectory ( ) ;
6432
6437
if ( f . length > 0 ) {
6433
6438
writer . writeString (
6434
6439
4 ,
6435
6440
f
6436
6441
) ;
6437
6442
}
6438
- f = message . getPRMessageBody ( ) ;
6443
+ f = message . getPRMessageTitle ( ) ;
6439
6444
if ( f . length > 0 ) {
6440
6445
writer . writeString (
6441
6446
5 ,
6442
6447
f
6443
6448
) ;
6444
6449
}
6445
- f = message . getCommitMessage ( ) ;
6450
+ f = message . getPRMessageBody ( ) ;
6446
6451
if ( f . length > 0 ) {
6447
6452
writer . writeString (
6448
6453
6 ,
6449
6454
f
6450
6455
) ;
6451
6456
}
6457
+ f = message . getCommitMessage ( ) ;
6458
+ if ( f . length > 0 ) {
6459
+ writer . writeString (
6460
+ 7 ,
6461
+ f
6462
+ ) ;
6463
+ }
6452
6464
f = message . getProcessCommand ( ) ;
6453
6465
if ( f != null ) {
6454
6466
writer . writeMessage (
6455
- 7 ,
6467
+ 8 ,
6456
6468
f ,
6457
6469
proto . fontbakery . dashboard . ProcessCommand . serializeBinaryToWriter
6458
6470
) ;
@@ -6491,78 +6503,93 @@ proto.fontbakery.dashboard.PullRequest.prototype.setStorageKey = function(value)
6491
6503
6492
6504
6493
6505
/**
6494
- * optional string target_directory = 3;
6506
+ * optional string p_r_target = 3;
6495
6507
* @return {string }
6496
6508
*/
6497
- proto . fontbakery . dashboard . PullRequest . prototype . getTargetDirectory = function ( ) {
6509
+ proto . fontbakery . dashboard . PullRequest . prototype . getPRTarget = function ( ) {
6498
6510
return /** @type {string } */ ( jspb . Message . getFieldWithDefault ( this , 3 , "" ) ) ;
6499
6511
} ;
6500
6512
6501
6513
6502
6514
/** @param {string } value */
6503
- proto . fontbakery . dashboard . PullRequest . prototype . setTargetDirectory = function ( value ) {
6515
+ proto . fontbakery . dashboard . PullRequest . prototype . setPRTarget = function ( value ) {
6504
6516
jspb . Message . setProto3StringField ( this , 3 , value ) ;
6505
6517
} ;
6506
6518
6507
6519
6508
6520
/**
6509
- * optional string p_r_message_title = 4;
6521
+ * optional string target_directory = 4;
6510
6522
* @return {string }
6511
6523
*/
6512
- proto . fontbakery . dashboard . PullRequest . prototype . getPRMessageTitle = function ( ) {
6524
+ proto . fontbakery . dashboard . PullRequest . prototype . getTargetDirectory = function ( ) {
6513
6525
return /** @type {string } */ ( jspb . Message . getFieldWithDefault ( this , 4 , "" ) ) ;
6514
6526
} ;
6515
6527
6516
6528
6517
6529
/** @param {string } value */
6518
- proto . fontbakery . dashboard . PullRequest . prototype . setPRMessageTitle = function ( value ) {
6530
+ proto . fontbakery . dashboard . PullRequest . prototype . setTargetDirectory = function ( value ) {
6519
6531
jspb . Message . setProto3StringField ( this , 4 , value ) ;
6520
6532
} ;
6521
6533
6522
6534
6523
6535
/**
6524
- * optional string p_r_message_body = 5;
6536
+ * optional string p_r_message_title = 5;
6525
6537
* @return {string }
6526
6538
*/
6527
- proto . fontbakery . dashboard . PullRequest . prototype . getPRMessageBody = function ( ) {
6539
+ proto . fontbakery . dashboard . PullRequest . prototype . getPRMessageTitle = function ( ) {
6528
6540
return /** @type {string } */ ( jspb . Message . getFieldWithDefault ( this , 5 , "" ) ) ;
6529
6541
} ;
6530
6542
6531
6543
6532
6544
/** @param {string } value */
6533
- proto . fontbakery . dashboard . PullRequest . prototype . setPRMessageBody = function ( value ) {
6545
+ proto . fontbakery . dashboard . PullRequest . prototype . setPRMessageTitle = function ( value ) {
6534
6546
jspb . Message . setProto3StringField ( this , 5 , value ) ;
6535
6547
} ;
6536
6548
6537
6549
6538
6550
/**
6539
- * optional string commit_message = 6;
6551
+ * optional string p_r_message_body = 6;
6540
6552
* @return {string }
6541
6553
*/
6542
- proto . fontbakery . dashboard . PullRequest . prototype . getCommitMessage = function ( ) {
6554
+ proto . fontbakery . dashboard . PullRequest . prototype . getPRMessageBody = function ( ) {
6543
6555
return /** @type {string } */ ( jspb . Message . getFieldWithDefault ( this , 6 , "" ) ) ;
6544
6556
} ;
6545
6557
6546
6558
6547
6559
/** @param {string } value */
6548
- proto . fontbakery . dashboard . PullRequest . prototype . setCommitMessage = function ( value ) {
6560
+ proto . fontbakery . dashboard . PullRequest . prototype . setPRMessageBody = function ( value ) {
6549
6561
jspb . Message . setProto3StringField ( this , 6 , value ) ;
6550
6562
} ;
6551
6563
6552
6564
6553
6565
/**
6554
- * optional ProcessCommand process_command = 7;
6566
+ * optional string commit_message = 7;
6567
+ * @return {string }
6568
+ */
6569
+ proto . fontbakery . dashboard . PullRequest . prototype . getCommitMessage = function ( ) {
6570
+ return /** @type {string } */ ( jspb . Message . getFieldWithDefault ( this , 7 , "" ) ) ;
6571
+ } ;
6572
+
6573
+
6574
+ /** @param {string } value */
6575
+ proto . fontbakery . dashboard . PullRequest . prototype . setCommitMessage = function ( value ) {
6576
+ jspb . Message . setProto3StringField ( this , 7 , value ) ;
6577
+ } ;
6578
+
6579
+
6580
+ /**
6581
+ * optional ProcessCommand process_command = 8;
6555
6582
* @return {?proto.fontbakery.dashboard.ProcessCommand }
6556
6583
*/
6557
6584
proto . fontbakery . dashboard . PullRequest . prototype . getProcessCommand = function ( ) {
6558
6585
return /** @type {?proto.fontbakery.dashboard.ProcessCommand } */ (
6559
- jspb . Message . getWrapperField ( this , proto . fontbakery . dashboard . ProcessCommand , 7 ) ) ;
6586
+ jspb . Message . getWrapperField ( this , proto . fontbakery . dashboard . ProcessCommand , 8 ) ) ;
6560
6587
} ;
6561
6588
6562
6589
6563
6590
/** @param {?proto.fontbakery.dashboard.ProcessCommand|undefined } value */
6564
6591
proto . fontbakery . dashboard . PullRequest . prototype . setProcessCommand = function ( value ) {
6565
- jspb . Message . setWrapperField ( this , 7 , value ) ;
6592
+ jspb . Message . setWrapperField ( this , 8 , value ) ;
6566
6593
} ;
6567
6594
6568
6595
@@ -6576,7 +6603,7 @@ proto.fontbakery.dashboard.PullRequest.prototype.clearProcessCommand = function(
6576
6603
* @return {boolean }
6577
6604
*/
6578
6605
proto . fontbakery . dashboard . PullRequest . prototype . hasProcessCommand = function ( ) {
6579
- return jspb . Message . getField ( this , 7 ) != null ;
6606
+ return jspb . Message . getField ( this , 8 ) != null ;
6580
6607
} ;
6581
6608
6582
6609
0 commit comments