@seawork/server 1.0.18-rc.2 → 1.0.18

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.
@@ -11489,6 +11489,31 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodObject<{
11489
11489
  baseRefName: z.ZodString;
11490
11490
  headRefName: z.ZodString;
11491
11491
  isMerged: z.ZodBoolean;
11492
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11493
+ id: z.ZodString;
11494
+ url: z.ZodString;
11495
+ authorLogin: z.ZodNullable<z.ZodString>;
11496
+ body: z.ZodString;
11497
+ path: z.ZodNullable<z.ZodString>;
11498
+ createdAt: z.ZodNullable<z.ZodString>;
11499
+ updatedAt: z.ZodString;
11500
+ }, "strip", z.ZodTypeAny, {
11501
+ url: string;
11502
+ path: string | null;
11503
+ id: string;
11504
+ createdAt: string | null;
11505
+ updatedAt: string;
11506
+ authorLogin: string | null;
11507
+ body: string;
11508
+ }, {
11509
+ url: string;
11510
+ path: string | null;
11511
+ id: string;
11512
+ createdAt: string | null;
11513
+ updatedAt: string;
11514
+ authorLogin: string | null;
11515
+ body: string;
11516
+ }>>>;
11492
11517
  }, "strip", z.ZodTypeAny, {
11493
11518
  url: string;
11494
11519
  title: string;
@@ -11496,6 +11521,15 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodObject<{
11496
11521
  baseRefName: string;
11497
11522
  headRefName: string;
11498
11523
  isMerged: boolean;
11524
+ latestReviewComment?: {
11525
+ url: string;
11526
+ path: string | null;
11527
+ id: string;
11528
+ createdAt: string | null;
11529
+ updatedAt: string;
11530
+ authorLogin: string | null;
11531
+ body: string;
11532
+ } | null | undefined;
11499
11533
  }, {
11500
11534
  url: string;
11501
11535
  title: string;
@@ -11503,6 +11537,15 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodObject<{
11503
11537
  baseRefName: string;
11504
11538
  headRefName: string;
11505
11539
  isMerged: boolean;
11540
+ latestReviewComment?: {
11541
+ url: string;
11542
+ path: string | null;
11543
+ id: string;
11544
+ createdAt: string | null;
11545
+ updatedAt: string;
11546
+ authorLogin: string | null;
11547
+ body: string;
11548
+ } | null | undefined;
11506
11549
  }>>>;
11507
11550
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11508
11551
  message: z.ZodString;
@@ -11524,6 +11567,15 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodObject<{
11524
11567
  baseRefName: string;
11525
11568
  headRefName: string;
11526
11569
  isMerged: boolean;
11570
+ latestReviewComment?: {
11571
+ url: string;
11572
+ path: string | null;
11573
+ id: string;
11574
+ createdAt: string | null;
11575
+ updatedAt: string;
11576
+ authorLogin: string | null;
11577
+ body: string;
11578
+ } | null | undefined;
11527
11579
  } | null | undefined;
11528
11580
  refreshedAt?: string | null | undefined;
11529
11581
  }, {
@@ -11538,6 +11590,15 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodObject<{
11538
11590
  baseRefName: string;
11539
11591
  headRefName: string;
11540
11592
  isMerged: boolean;
11593
+ latestReviewComment?: {
11594
+ url: string;
11595
+ path: string | null;
11596
+ id: string;
11597
+ createdAt: string | null;
11598
+ updatedAt: string;
11599
+ authorLogin: string | null;
11600
+ body: string;
11601
+ } | null | undefined;
11541
11602
  } | null | undefined;
11542
11603
  refreshedAt?: string | null | undefined;
11543
11604
  }>>>;
@@ -11579,6 +11640,15 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodObject<{
11579
11640
  baseRefName: string;
11580
11641
  headRefName: string;
11581
11642
  isMerged: boolean;
11643
+ latestReviewComment?: {
11644
+ url: string;
11645
+ path: string | null;
11646
+ id: string;
11647
+ createdAt: string | null;
11648
+ updatedAt: string;
11649
+ authorLogin: string | null;
11650
+ body: string;
11651
+ } | null | undefined;
11582
11652
  } | null | undefined;
11583
11653
  refreshedAt?: string | null | undefined;
11584
11654
  } | null | undefined;
@@ -11620,6 +11690,15 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodObject<{
11620
11690
  baseRefName: string;
11621
11691
  headRefName: string;
11622
11692
  isMerged: boolean;
11693
+ latestReviewComment?: {
11694
+ url: string;
11695
+ path: string | null;
11696
+ id: string;
11697
+ createdAt: string | null;
11698
+ updatedAt: string;
11699
+ authorLogin: string | null;
11700
+ body: string;
11701
+ } | null | undefined;
11623
11702
  } | null | undefined;
11624
11703
  refreshedAt?: string | null | undefined;
11625
11704
  } | null | undefined;
@@ -14626,6 +14705,31 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
14626
14705
  baseRefName: z.ZodString;
14627
14706
  headRefName: z.ZodString;
14628
14707
  isMerged: z.ZodBoolean;
14708
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
14709
+ id: z.ZodString;
14710
+ url: z.ZodString;
14711
+ authorLogin: z.ZodNullable<z.ZodString>;
14712
+ body: z.ZodString;
14713
+ path: z.ZodNullable<z.ZodString>;
14714
+ createdAt: z.ZodNullable<z.ZodString>;
14715
+ updatedAt: z.ZodString;
14716
+ }, "strip", z.ZodTypeAny, {
14717
+ url: string;
14718
+ path: string | null;
14719
+ id: string;
14720
+ createdAt: string | null;
14721
+ updatedAt: string;
14722
+ authorLogin: string | null;
14723
+ body: string;
14724
+ }, {
14725
+ url: string;
14726
+ path: string | null;
14727
+ id: string;
14728
+ createdAt: string | null;
14729
+ updatedAt: string;
14730
+ authorLogin: string | null;
14731
+ body: string;
14732
+ }>>>;
14629
14733
  }, "strip", z.ZodTypeAny, {
14630
14734
  url: string;
14631
14735
  title: string;
@@ -14633,6 +14737,15 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
14633
14737
  baseRefName: string;
14634
14738
  headRefName: string;
14635
14739
  isMerged: boolean;
14740
+ latestReviewComment?: {
14741
+ url: string;
14742
+ path: string | null;
14743
+ id: string;
14744
+ createdAt: string | null;
14745
+ updatedAt: string;
14746
+ authorLogin: string | null;
14747
+ body: string;
14748
+ } | null | undefined;
14636
14749
  }, {
14637
14750
  url: string;
14638
14751
  title: string;
@@ -14640,6 +14753,15 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
14640
14753
  baseRefName: string;
14641
14754
  headRefName: string;
14642
14755
  isMerged: boolean;
14756
+ latestReviewComment?: {
14757
+ url: string;
14758
+ path: string | null;
14759
+ id: string;
14760
+ createdAt: string | null;
14761
+ updatedAt: string;
14762
+ authorLogin: string | null;
14763
+ body: string;
14764
+ } | null | undefined;
14643
14765
  }>>>;
14644
14766
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
14645
14767
  message: z.ZodString;
@@ -14661,6 +14783,15 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
14661
14783
  baseRefName: string;
14662
14784
  headRefName: string;
14663
14785
  isMerged: boolean;
14786
+ latestReviewComment?: {
14787
+ url: string;
14788
+ path: string | null;
14789
+ id: string;
14790
+ createdAt: string | null;
14791
+ updatedAt: string;
14792
+ authorLogin: string | null;
14793
+ body: string;
14794
+ } | null | undefined;
14664
14795
  } | null | undefined;
14665
14796
  refreshedAt?: string | null | undefined;
14666
14797
  }, {
@@ -14675,6 +14806,15 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
14675
14806
  baseRefName: string;
14676
14807
  headRefName: string;
14677
14808
  isMerged: boolean;
14809
+ latestReviewComment?: {
14810
+ url: string;
14811
+ path: string | null;
14812
+ id: string;
14813
+ createdAt: string | null;
14814
+ updatedAt: string;
14815
+ authorLogin: string | null;
14816
+ body: string;
14817
+ } | null | undefined;
14678
14818
  } | null | undefined;
14679
14819
  refreshedAt?: string | null | undefined;
14680
14820
  }>>>;
@@ -14716,6 +14856,15 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
14716
14856
  baseRefName: string;
14717
14857
  headRefName: string;
14718
14858
  isMerged: boolean;
14859
+ latestReviewComment?: {
14860
+ url: string;
14861
+ path: string | null;
14862
+ id: string;
14863
+ createdAt: string | null;
14864
+ updatedAt: string;
14865
+ authorLogin: string | null;
14866
+ body: string;
14867
+ } | null | undefined;
14719
14868
  } | null | undefined;
14720
14869
  refreshedAt?: string | null | undefined;
14721
14870
  } | null | undefined;
@@ -14757,6 +14906,15 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
14757
14906
  baseRefName: string;
14758
14907
  headRefName: string;
14759
14908
  isMerged: boolean;
14909
+ latestReviewComment?: {
14910
+ url: string;
14911
+ path: string | null;
14912
+ id: string;
14913
+ createdAt: string | null;
14914
+ updatedAt: string;
14915
+ authorLogin: string | null;
14916
+ body: string;
14917
+ } | null | undefined;
14760
14918
  } | null | undefined;
14761
14919
  refreshedAt?: string | null | undefined;
14762
14920
  } | null | undefined;
@@ -14813,6 +14971,15 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
14813
14971
  baseRefName: string;
14814
14972
  headRefName: string;
14815
14973
  isMerged: boolean;
14974
+ latestReviewComment?: {
14975
+ url: string;
14976
+ path: string | null;
14977
+ id: string;
14978
+ createdAt: string | null;
14979
+ updatedAt: string;
14980
+ authorLogin: string | null;
14981
+ body: string;
14982
+ } | null | undefined;
14816
14983
  } | null | undefined;
14817
14984
  refreshedAt?: string | null | undefined;
14818
14985
  } | null | undefined;
@@ -14863,6 +15030,15 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
14863
15030
  baseRefName: string;
14864
15031
  headRefName: string;
14865
15032
  isMerged: boolean;
15033
+ latestReviewComment?: {
15034
+ url: string;
15035
+ path: string | null;
15036
+ id: string;
15037
+ createdAt: string | null;
15038
+ updatedAt: string;
15039
+ authorLogin: string | null;
15040
+ body: string;
15041
+ } | null | undefined;
14866
15042
  } | null | undefined;
14867
15043
  refreshedAt?: string | null | undefined;
14868
15044
  } | null | undefined;
@@ -14916,6 +15092,15 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
14916
15092
  baseRefName: string;
14917
15093
  headRefName: string;
14918
15094
  isMerged: boolean;
15095
+ latestReviewComment?: {
15096
+ url: string;
15097
+ path: string | null;
15098
+ id: string;
15099
+ createdAt: string | null;
15100
+ updatedAt: string;
15101
+ authorLogin: string | null;
15102
+ body: string;
15103
+ } | null | undefined;
14919
15104
  } | null | undefined;
14920
15105
  refreshedAt?: string | null | undefined;
14921
15106
  } | null | undefined;
@@ -14969,6 +15154,15 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
14969
15154
  baseRefName: string;
14970
15155
  headRefName: string;
14971
15156
  isMerged: boolean;
15157
+ latestReviewComment?: {
15158
+ url: string;
15159
+ path: string | null;
15160
+ id: string;
15161
+ createdAt: string | null;
15162
+ updatedAt: string;
15163
+ authorLogin: string | null;
15164
+ body: string;
15165
+ } | null | undefined;
14972
15166
  } | null | undefined;
14973
15167
  refreshedAt?: string | null | undefined;
14974
15168
  } | null | undefined;
@@ -15055,6 +15249,31 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
15055
15249
  baseRefName: z.ZodString;
15056
15250
  headRefName: z.ZodString;
15057
15251
  isMerged: z.ZodBoolean;
15252
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
15253
+ id: z.ZodString;
15254
+ url: z.ZodString;
15255
+ authorLogin: z.ZodNullable<z.ZodString>;
15256
+ body: z.ZodString;
15257
+ path: z.ZodNullable<z.ZodString>;
15258
+ createdAt: z.ZodNullable<z.ZodString>;
15259
+ updatedAt: z.ZodString;
15260
+ }, "strip", z.ZodTypeAny, {
15261
+ url: string;
15262
+ path: string | null;
15263
+ id: string;
15264
+ createdAt: string | null;
15265
+ updatedAt: string;
15266
+ authorLogin: string | null;
15267
+ body: string;
15268
+ }, {
15269
+ url: string;
15270
+ path: string | null;
15271
+ id: string;
15272
+ createdAt: string | null;
15273
+ updatedAt: string;
15274
+ authorLogin: string | null;
15275
+ body: string;
15276
+ }>>>;
15058
15277
  }, "strip", z.ZodTypeAny, {
15059
15278
  url: string;
15060
15279
  title: string;
@@ -15062,6 +15281,15 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
15062
15281
  baseRefName: string;
15063
15282
  headRefName: string;
15064
15283
  isMerged: boolean;
15284
+ latestReviewComment?: {
15285
+ url: string;
15286
+ path: string | null;
15287
+ id: string;
15288
+ createdAt: string | null;
15289
+ updatedAt: string;
15290
+ authorLogin: string | null;
15291
+ body: string;
15292
+ } | null | undefined;
15065
15293
  }, {
15066
15294
  url: string;
15067
15295
  title: string;
@@ -15069,6 +15297,15 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
15069
15297
  baseRefName: string;
15070
15298
  headRefName: string;
15071
15299
  isMerged: boolean;
15300
+ latestReviewComment?: {
15301
+ url: string;
15302
+ path: string | null;
15303
+ id: string;
15304
+ createdAt: string | null;
15305
+ updatedAt: string;
15306
+ authorLogin: string | null;
15307
+ body: string;
15308
+ } | null | undefined;
15072
15309
  }>>>;
15073
15310
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
15074
15311
  message: z.ZodString;
@@ -15090,6 +15327,15 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
15090
15327
  baseRefName: string;
15091
15328
  headRefName: string;
15092
15329
  isMerged: boolean;
15330
+ latestReviewComment?: {
15331
+ url: string;
15332
+ path: string | null;
15333
+ id: string;
15334
+ createdAt: string | null;
15335
+ updatedAt: string;
15336
+ authorLogin: string | null;
15337
+ body: string;
15338
+ } | null | undefined;
15093
15339
  } | null | undefined;
15094
15340
  refreshedAt?: string | null | undefined;
15095
15341
  }, {
@@ -15104,6 +15350,15 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
15104
15350
  baseRefName: string;
15105
15351
  headRefName: string;
15106
15352
  isMerged: boolean;
15353
+ latestReviewComment?: {
15354
+ url: string;
15355
+ path: string | null;
15356
+ id: string;
15357
+ createdAt: string | null;
15358
+ updatedAt: string;
15359
+ authorLogin: string | null;
15360
+ body: string;
15361
+ } | null | undefined;
15107
15362
  } | null | undefined;
15108
15363
  refreshedAt?: string | null | undefined;
15109
15364
  }>>>;
@@ -15145,6 +15400,15 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
15145
15400
  baseRefName: string;
15146
15401
  headRefName: string;
15147
15402
  isMerged: boolean;
15403
+ latestReviewComment?: {
15404
+ url: string;
15405
+ path: string | null;
15406
+ id: string;
15407
+ createdAt: string | null;
15408
+ updatedAt: string;
15409
+ authorLogin: string | null;
15410
+ body: string;
15411
+ } | null | undefined;
15148
15412
  } | null | undefined;
15149
15413
  refreshedAt?: string | null | undefined;
15150
15414
  } | null | undefined;
@@ -15186,6 +15450,15 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
15186
15450
  baseRefName: string;
15187
15451
  headRefName: string;
15188
15452
  isMerged: boolean;
15453
+ latestReviewComment?: {
15454
+ url: string;
15455
+ path: string | null;
15456
+ id: string;
15457
+ createdAt: string | null;
15458
+ updatedAt: string;
15459
+ authorLogin: string | null;
15460
+ body: string;
15461
+ } | null | undefined;
15189
15462
  } | null | undefined;
15190
15463
  refreshedAt?: string | null | undefined;
15191
15464
  } | null | undefined;
@@ -15230,6 +15503,15 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
15230
15503
  baseRefName: string;
15231
15504
  headRefName: string;
15232
15505
  isMerged: boolean;
15506
+ latestReviewComment?: {
15507
+ url: string;
15508
+ path: string | null;
15509
+ id: string;
15510
+ createdAt: string | null;
15511
+ updatedAt: string;
15512
+ authorLogin: string | null;
15513
+ body: string;
15514
+ } | null | undefined;
15233
15515
  } | null | undefined;
15234
15516
  refreshedAt?: string | null | undefined;
15235
15517
  } | null | undefined;
@@ -15274,6 +15556,15 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
15274
15556
  baseRefName: string;
15275
15557
  headRefName: string;
15276
15558
  isMerged: boolean;
15559
+ latestReviewComment?: {
15560
+ url: string;
15561
+ path: string | null;
15562
+ id: string;
15563
+ createdAt: string | null;
15564
+ updatedAt: string;
15565
+ authorLogin: string | null;
15566
+ body: string;
15567
+ } | null | undefined;
15277
15568
  } | null | undefined;
15278
15569
  refreshedAt?: string | null | undefined;
15279
15570
  } | null | undefined;
@@ -15330,6 +15621,15 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
15330
15621
  baseRefName: string;
15331
15622
  headRefName: string;
15332
15623
  isMerged: boolean;
15624
+ latestReviewComment?: {
15625
+ url: string;
15626
+ path: string | null;
15627
+ id: string;
15628
+ createdAt: string | null;
15629
+ updatedAt: string;
15630
+ authorLogin: string | null;
15631
+ body: string;
15632
+ } | null | undefined;
15333
15633
  } | null | undefined;
15334
15634
  refreshedAt?: string | null | undefined;
15335
15635
  } | null | undefined;
@@ -15380,6 +15680,15 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
15380
15680
  baseRefName: string;
15381
15681
  headRefName: string;
15382
15682
  isMerged: boolean;
15683
+ latestReviewComment?: {
15684
+ url: string;
15685
+ path: string | null;
15686
+ id: string;
15687
+ createdAt: string | null;
15688
+ updatedAt: string;
15689
+ authorLogin: string | null;
15690
+ body: string;
15691
+ } | null | undefined;
15383
15692
  } | null | undefined;
15384
15693
  refreshedAt?: string | null | undefined;
15385
15694
  } | null | undefined;
@@ -15462,6 +15771,31 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
15462
15771
  baseRefName: z.ZodString;
15463
15772
  headRefName: z.ZodString;
15464
15773
  isMerged: z.ZodBoolean;
15774
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
15775
+ id: z.ZodString;
15776
+ url: z.ZodString;
15777
+ authorLogin: z.ZodNullable<z.ZodString>;
15778
+ body: z.ZodString;
15779
+ path: z.ZodNullable<z.ZodString>;
15780
+ createdAt: z.ZodNullable<z.ZodString>;
15781
+ updatedAt: z.ZodString;
15782
+ }, "strip", z.ZodTypeAny, {
15783
+ url: string;
15784
+ path: string | null;
15785
+ id: string;
15786
+ createdAt: string | null;
15787
+ updatedAt: string;
15788
+ authorLogin: string | null;
15789
+ body: string;
15790
+ }, {
15791
+ url: string;
15792
+ path: string | null;
15793
+ id: string;
15794
+ createdAt: string | null;
15795
+ updatedAt: string;
15796
+ authorLogin: string | null;
15797
+ body: string;
15798
+ }>>>;
15465
15799
  }, "strip", z.ZodTypeAny, {
15466
15800
  url: string;
15467
15801
  title: string;
@@ -15469,6 +15803,15 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
15469
15803
  baseRefName: string;
15470
15804
  headRefName: string;
15471
15805
  isMerged: boolean;
15806
+ latestReviewComment?: {
15807
+ url: string;
15808
+ path: string | null;
15809
+ id: string;
15810
+ createdAt: string | null;
15811
+ updatedAt: string;
15812
+ authorLogin: string | null;
15813
+ body: string;
15814
+ } | null | undefined;
15472
15815
  }, {
15473
15816
  url: string;
15474
15817
  title: string;
@@ -15476,6 +15819,15 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
15476
15819
  baseRefName: string;
15477
15820
  headRefName: string;
15478
15821
  isMerged: boolean;
15822
+ latestReviewComment?: {
15823
+ url: string;
15824
+ path: string | null;
15825
+ id: string;
15826
+ createdAt: string | null;
15827
+ updatedAt: string;
15828
+ authorLogin: string | null;
15829
+ body: string;
15830
+ } | null | undefined;
15479
15831
  }>>>;
15480
15832
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
15481
15833
  message: z.ZodString;
@@ -15497,6 +15849,15 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
15497
15849
  baseRefName: string;
15498
15850
  headRefName: string;
15499
15851
  isMerged: boolean;
15852
+ latestReviewComment?: {
15853
+ url: string;
15854
+ path: string | null;
15855
+ id: string;
15856
+ createdAt: string | null;
15857
+ updatedAt: string;
15858
+ authorLogin: string | null;
15859
+ body: string;
15860
+ } | null | undefined;
15500
15861
  } | null | undefined;
15501
15862
  refreshedAt?: string | null | undefined;
15502
15863
  }, {
@@ -15511,6 +15872,15 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
15511
15872
  baseRefName: string;
15512
15873
  headRefName: string;
15513
15874
  isMerged: boolean;
15875
+ latestReviewComment?: {
15876
+ url: string;
15877
+ path: string | null;
15878
+ id: string;
15879
+ createdAt: string | null;
15880
+ updatedAt: string;
15881
+ authorLogin: string | null;
15882
+ body: string;
15883
+ } | null | undefined;
15514
15884
  } | null | undefined;
15515
15885
  refreshedAt?: string | null | undefined;
15516
15886
  }>>>;
@@ -15552,6 +15922,15 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
15552
15922
  baseRefName: string;
15553
15923
  headRefName: string;
15554
15924
  isMerged: boolean;
15925
+ latestReviewComment?: {
15926
+ url: string;
15927
+ path: string | null;
15928
+ id: string;
15929
+ createdAt: string | null;
15930
+ updatedAt: string;
15931
+ authorLogin: string | null;
15932
+ body: string;
15933
+ } | null | undefined;
15555
15934
  } | null | undefined;
15556
15935
  refreshedAt?: string | null | undefined;
15557
15936
  } | null | undefined;
@@ -15593,6 +15972,15 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
15593
15972
  baseRefName: string;
15594
15973
  headRefName: string;
15595
15974
  isMerged: boolean;
15975
+ latestReviewComment?: {
15976
+ url: string;
15977
+ path: string | null;
15978
+ id: string;
15979
+ createdAt: string | null;
15980
+ updatedAt: string;
15981
+ authorLogin: string | null;
15982
+ body: string;
15983
+ } | null | undefined;
15596
15984
  } | null | undefined;
15597
15985
  refreshedAt?: string | null | undefined;
15598
15986
  } | null | undefined;
@@ -15639,6 +16027,15 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
15639
16027
  baseRefName: string;
15640
16028
  headRefName: string;
15641
16029
  isMerged: boolean;
16030
+ latestReviewComment?: {
16031
+ url: string;
16032
+ path: string | null;
16033
+ id: string;
16034
+ createdAt: string | null;
16035
+ updatedAt: string;
16036
+ authorLogin: string | null;
16037
+ body: string;
16038
+ } | null | undefined;
15642
16039
  } | null | undefined;
15643
16040
  refreshedAt?: string | null | undefined;
15644
16041
  } | null | undefined;
@@ -15684,6 +16081,15 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
15684
16081
  baseRefName: string;
15685
16082
  headRefName: string;
15686
16083
  isMerged: boolean;
16084
+ latestReviewComment?: {
16085
+ url: string;
16086
+ path: string | null;
16087
+ id: string;
16088
+ createdAt: string | null;
16089
+ updatedAt: string;
16090
+ authorLogin: string | null;
16091
+ body: string;
16092
+ } | null | undefined;
15687
16093
  } | null | undefined;
15688
16094
  refreshedAt?: string | null | undefined;
15689
16095
  } | null | undefined;
@@ -15732,6 +16138,15 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
15732
16138
  baseRefName: string;
15733
16139
  headRefName: string;
15734
16140
  isMerged: boolean;
16141
+ latestReviewComment?: {
16142
+ url: string;
16143
+ path: string | null;
16144
+ id: string;
16145
+ createdAt: string | null;
16146
+ updatedAt: string;
16147
+ authorLogin: string | null;
16148
+ body: string;
16149
+ } | null | undefined;
15735
16150
  } | null | undefined;
15736
16151
  refreshedAt?: string | null | undefined;
15737
16152
  } | null | undefined;
@@ -15780,6 +16195,15 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
15780
16195
  baseRefName: string;
15781
16196
  headRefName: string;
15782
16197
  isMerged: boolean;
16198
+ latestReviewComment?: {
16199
+ url: string;
16200
+ path: string | null;
16201
+ id: string;
16202
+ createdAt: string | null;
16203
+ updatedAt: string;
16204
+ authorLogin: string | null;
16205
+ body: string;
16206
+ } | null | undefined;
15783
16207
  } | null | undefined;
15784
16208
  refreshedAt?: string | null | undefined;
15785
16209
  } | null | undefined;
@@ -20417,6 +20841,31 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
20417
20841
  baseRefName: z.ZodString;
20418
20842
  headRefName: z.ZodString;
20419
20843
  isMerged: z.ZodBoolean;
20844
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
20845
+ id: z.ZodString;
20846
+ url: z.ZodString;
20847
+ authorLogin: z.ZodNullable<z.ZodString>;
20848
+ body: z.ZodString;
20849
+ path: z.ZodNullable<z.ZodString>;
20850
+ createdAt: z.ZodNullable<z.ZodString>;
20851
+ updatedAt: z.ZodString;
20852
+ }, "strip", z.ZodTypeAny, {
20853
+ url: string;
20854
+ path: string | null;
20855
+ id: string;
20856
+ createdAt: string | null;
20857
+ updatedAt: string;
20858
+ authorLogin: string | null;
20859
+ body: string;
20860
+ }, {
20861
+ url: string;
20862
+ path: string | null;
20863
+ id: string;
20864
+ createdAt: string | null;
20865
+ updatedAt: string;
20866
+ authorLogin: string | null;
20867
+ body: string;
20868
+ }>>>;
20420
20869
  }, "strip", z.ZodTypeAny, {
20421
20870
  url: string;
20422
20871
  title: string;
@@ -20424,6 +20873,15 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
20424
20873
  baseRefName: string;
20425
20874
  headRefName: string;
20426
20875
  isMerged: boolean;
20876
+ latestReviewComment?: {
20877
+ url: string;
20878
+ path: string | null;
20879
+ id: string;
20880
+ createdAt: string | null;
20881
+ updatedAt: string;
20882
+ authorLogin: string | null;
20883
+ body: string;
20884
+ } | null | undefined;
20427
20885
  }, {
20428
20886
  url: string;
20429
20887
  title: string;
@@ -20431,6 +20889,15 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
20431
20889
  baseRefName: string;
20432
20890
  headRefName: string;
20433
20891
  isMerged: boolean;
20892
+ latestReviewComment?: {
20893
+ url: string;
20894
+ path: string | null;
20895
+ id: string;
20896
+ createdAt: string | null;
20897
+ updatedAt: string;
20898
+ authorLogin: string | null;
20899
+ body: string;
20900
+ } | null | undefined;
20434
20901
  }>>;
20435
20902
  githubFeaturesEnabled: z.ZodBoolean;
20436
20903
  error: z.ZodNullable<z.ZodObject<{
@@ -20456,6 +20923,15 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
20456
20923
  baseRefName: string;
20457
20924
  headRefName: string;
20458
20925
  isMerged: boolean;
20926
+ latestReviewComment?: {
20927
+ url: string;
20928
+ path: string | null;
20929
+ id: string;
20930
+ createdAt: string | null;
20931
+ updatedAt: string;
20932
+ authorLogin: string | null;
20933
+ body: string;
20934
+ } | null | undefined;
20459
20935
  } | null;
20460
20936
  requestId: string;
20461
20937
  cwd: string;
@@ -20472,6 +20948,15 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
20472
20948
  baseRefName: string;
20473
20949
  headRefName: string;
20474
20950
  isMerged: boolean;
20951
+ latestReviewComment?: {
20952
+ url: string;
20953
+ path: string | null;
20954
+ id: string;
20955
+ createdAt: string | null;
20956
+ updatedAt: string;
20957
+ authorLogin: string | null;
20958
+ body: string;
20959
+ } | null | undefined;
20475
20960
  } | null;
20476
20961
  requestId: string;
20477
20962
  cwd: string;
@@ -20491,6 +20976,15 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
20491
20976
  baseRefName: string;
20492
20977
  headRefName: string;
20493
20978
  isMerged: boolean;
20979
+ latestReviewComment?: {
20980
+ url: string;
20981
+ path: string | null;
20982
+ id: string;
20983
+ createdAt: string | null;
20984
+ updatedAt: string;
20985
+ authorLogin: string | null;
20986
+ body: string;
20987
+ } | null | undefined;
20494
20988
  } | null;
20495
20989
  requestId: string;
20496
20990
  cwd: string;
@@ -20510,6 +21004,15 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
20510
21004
  baseRefName: string;
20511
21005
  headRefName: string;
20512
21006
  isMerged: boolean;
21007
+ latestReviewComment?: {
21008
+ url: string;
21009
+ path: string | null;
21010
+ id: string;
21011
+ createdAt: string | null;
21012
+ updatedAt: string;
21013
+ authorLogin: string | null;
21014
+ body: string;
21015
+ } | null | undefined;
20513
21016
  } | null;
20514
21017
  requestId: string;
20515
21018
  cwd: string;
@@ -21136,6 +21639,31 @@ export declare const CreateSeaworkWorktreeResponseSchema: z.ZodObject<{
21136
21639
  baseRefName: z.ZodString;
21137
21640
  headRefName: z.ZodString;
21138
21641
  isMerged: z.ZodBoolean;
21642
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
21643
+ id: z.ZodString;
21644
+ url: z.ZodString;
21645
+ authorLogin: z.ZodNullable<z.ZodString>;
21646
+ body: z.ZodString;
21647
+ path: z.ZodNullable<z.ZodString>;
21648
+ createdAt: z.ZodNullable<z.ZodString>;
21649
+ updatedAt: z.ZodString;
21650
+ }, "strip", z.ZodTypeAny, {
21651
+ url: string;
21652
+ path: string | null;
21653
+ id: string;
21654
+ createdAt: string | null;
21655
+ updatedAt: string;
21656
+ authorLogin: string | null;
21657
+ body: string;
21658
+ }, {
21659
+ url: string;
21660
+ path: string | null;
21661
+ id: string;
21662
+ createdAt: string | null;
21663
+ updatedAt: string;
21664
+ authorLogin: string | null;
21665
+ body: string;
21666
+ }>>>;
21139
21667
  }, "strip", z.ZodTypeAny, {
21140
21668
  url: string;
21141
21669
  title: string;
@@ -21143,6 +21671,15 @@ export declare const CreateSeaworkWorktreeResponseSchema: z.ZodObject<{
21143
21671
  baseRefName: string;
21144
21672
  headRefName: string;
21145
21673
  isMerged: boolean;
21674
+ latestReviewComment?: {
21675
+ url: string;
21676
+ path: string | null;
21677
+ id: string;
21678
+ createdAt: string | null;
21679
+ updatedAt: string;
21680
+ authorLogin: string | null;
21681
+ body: string;
21682
+ } | null | undefined;
21146
21683
  }, {
21147
21684
  url: string;
21148
21685
  title: string;
@@ -21150,6 +21687,15 @@ export declare const CreateSeaworkWorktreeResponseSchema: z.ZodObject<{
21150
21687
  baseRefName: string;
21151
21688
  headRefName: string;
21152
21689
  isMerged: boolean;
21690
+ latestReviewComment?: {
21691
+ url: string;
21692
+ path: string | null;
21693
+ id: string;
21694
+ createdAt: string | null;
21695
+ updatedAt: string;
21696
+ authorLogin: string | null;
21697
+ body: string;
21698
+ } | null | undefined;
21153
21699
  }>>>;
21154
21700
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
21155
21701
  message: z.ZodString;
@@ -21171,6 +21717,15 @@ export declare const CreateSeaworkWorktreeResponseSchema: z.ZodObject<{
21171
21717
  baseRefName: string;
21172
21718
  headRefName: string;
21173
21719
  isMerged: boolean;
21720
+ latestReviewComment?: {
21721
+ url: string;
21722
+ path: string | null;
21723
+ id: string;
21724
+ createdAt: string | null;
21725
+ updatedAt: string;
21726
+ authorLogin: string | null;
21727
+ body: string;
21728
+ } | null | undefined;
21174
21729
  } | null | undefined;
21175
21730
  refreshedAt?: string | null | undefined;
21176
21731
  }, {
@@ -21185,6 +21740,15 @@ export declare const CreateSeaworkWorktreeResponseSchema: z.ZodObject<{
21185
21740
  baseRefName: string;
21186
21741
  headRefName: string;
21187
21742
  isMerged: boolean;
21743
+ latestReviewComment?: {
21744
+ url: string;
21745
+ path: string | null;
21746
+ id: string;
21747
+ createdAt: string | null;
21748
+ updatedAt: string;
21749
+ authorLogin: string | null;
21750
+ body: string;
21751
+ } | null | undefined;
21188
21752
  } | null | undefined;
21189
21753
  refreshedAt?: string | null | undefined;
21190
21754
  }>>>;
@@ -21226,6 +21790,15 @@ export declare const CreateSeaworkWorktreeResponseSchema: z.ZodObject<{
21226
21790
  baseRefName: string;
21227
21791
  headRefName: string;
21228
21792
  isMerged: boolean;
21793
+ latestReviewComment?: {
21794
+ url: string;
21795
+ path: string | null;
21796
+ id: string;
21797
+ createdAt: string | null;
21798
+ updatedAt: string;
21799
+ authorLogin: string | null;
21800
+ body: string;
21801
+ } | null | undefined;
21229
21802
  } | null | undefined;
21230
21803
  refreshedAt?: string | null | undefined;
21231
21804
  } | null | undefined;
@@ -21267,6 +21840,15 @@ export declare const CreateSeaworkWorktreeResponseSchema: z.ZodObject<{
21267
21840
  baseRefName: string;
21268
21841
  headRefName: string;
21269
21842
  isMerged: boolean;
21843
+ latestReviewComment?: {
21844
+ url: string;
21845
+ path: string | null;
21846
+ id: string;
21847
+ createdAt: string | null;
21848
+ updatedAt: string;
21849
+ authorLogin: string | null;
21850
+ body: string;
21851
+ } | null | undefined;
21270
21852
  } | null | undefined;
21271
21853
  refreshedAt?: string | null | undefined;
21272
21854
  } | null | undefined;
@@ -21315,6 +21897,15 @@ export declare const CreateSeaworkWorktreeResponseSchema: z.ZodObject<{
21315
21897
  baseRefName: string;
21316
21898
  headRefName: string;
21317
21899
  isMerged: boolean;
21900
+ latestReviewComment?: {
21901
+ url: string;
21902
+ path: string | null;
21903
+ id: string;
21904
+ createdAt: string | null;
21905
+ updatedAt: string;
21906
+ authorLogin: string | null;
21907
+ body: string;
21908
+ } | null | undefined;
21318
21909
  } | null | undefined;
21319
21910
  refreshedAt?: string | null | undefined;
21320
21911
  } | null | undefined;
@@ -21361,6 +21952,15 @@ export declare const CreateSeaworkWorktreeResponseSchema: z.ZodObject<{
21361
21952
  baseRefName: string;
21362
21953
  headRefName: string;
21363
21954
  isMerged: boolean;
21955
+ latestReviewComment?: {
21956
+ url: string;
21957
+ path: string | null;
21958
+ id: string;
21959
+ createdAt: string | null;
21960
+ updatedAt: string;
21961
+ authorLogin: string | null;
21962
+ body: string;
21963
+ } | null | undefined;
21364
21964
  } | null | undefined;
21365
21965
  refreshedAt?: string | null | undefined;
21366
21966
  } | null | undefined;
@@ -21410,6 +22010,15 @@ export declare const CreateSeaworkWorktreeResponseSchema: z.ZodObject<{
21410
22010
  baseRefName: string;
21411
22011
  headRefName: string;
21412
22012
  isMerged: boolean;
22013
+ latestReviewComment?: {
22014
+ url: string;
22015
+ path: string | null;
22016
+ id: string;
22017
+ createdAt: string | null;
22018
+ updatedAt: string;
22019
+ authorLogin: string | null;
22020
+ body: string;
22021
+ } | null | undefined;
21413
22022
  } | null | undefined;
21414
22023
  refreshedAt?: string | null | undefined;
21415
22024
  } | null | undefined;
@@ -21459,6 +22068,15 @@ export declare const CreateSeaworkWorktreeResponseSchema: z.ZodObject<{
21459
22068
  baseRefName: string;
21460
22069
  headRefName: string;
21461
22070
  isMerged: boolean;
22071
+ latestReviewComment?: {
22072
+ url: string;
22073
+ path: string | null;
22074
+ id: string;
22075
+ createdAt: string | null;
22076
+ updatedAt: string;
22077
+ authorLogin: string | null;
22078
+ body: string;
22079
+ } | null | undefined;
21462
22080
  } | null | undefined;
21463
22081
  refreshedAt?: string | null | undefined;
21464
22082
  } | null | undefined;
@@ -24388,6 +25006,31 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
24388
25006
  baseRefName: z.ZodString;
24389
25007
  headRefName: z.ZodString;
24390
25008
  isMerged: z.ZodBoolean;
25009
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
25010
+ id: z.ZodString;
25011
+ url: z.ZodString;
25012
+ authorLogin: z.ZodNullable<z.ZodString>;
25013
+ body: z.ZodString;
25014
+ path: z.ZodNullable<z.ZodString>;
25015
+ createdAt: z.ZodNullable<z.ZodString>;
25016
+ updatedAt: z.ZodString;
25017
+ }, "strip", z.ZodTypeAny, {
25018
+ url: string;
25019
+ path: string | null;
25020
+ id: string;
25021
+ createdAt: string | null;
25022
+ updatedAt: string;
25023
+ authorLogin: string | null;
25024
+ body: string;
25025
+ }, {
25026
+ url: string;
25027
+ path: string | null;
25028
+ id: string;
25029
+ createdAt: string | null;
25030
+ updatedAt: string;
25031
+ authorLogin: string | null;
25032
+ body: string;
25033
+ }>>>;
24391
25034
  }, "strip", z.ZodTypeAny, {
24392
25035
  url: string;
24393
25036
  title: string;
@@ -24395,6 +25038,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
24395
25038
  baseRefName: string;
24396
25039
  headRefName: string;
24397
25040
  isMerged: boolean;
25041
+ latestReviewComment?: {
25042
+ url: string;
25043
+ path: string | null;
25044
+ id: string;
25045
+ createdAt: string | null;
25046
+ updatedAt: string;
25047
+ authorLogin: string | null;
25048
+ body: string;
25049
+ } | null | undefined;
24398
25050
  }, {
24399
25051
  url: string;
24400
25052
  title: string;
@@ -24402,6 +25054,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
24402
25054
  baseRefName: string;
24403
25055
  headRefName: string;
24404
25056
  isMerged: boolean;
25057
+ latestReviewComment?: {
25058
+ url: string;
25059
+ path: string | null;
25060
+ id: string;
25061
+ createdAt: string | null;
25062
+ updatedAt: string;
25063
+ authorLogin: string | null;
25064
+ body: string;
25065
+ } | null | undefined;
24405
25066
  }>>>;
24406
25067
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
24407
25068
  message: z.ZodString;
@@ -24423,6 +25084,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
24423
25084
  baseRefName: string;
24424
25085
  headRefName: string;
24425
25086
  isMerged: boolean;
25087
+ latestReviewComment?: {
25088
+ url: string;
25089
+ path: string | null;
25090
+ id: string;
25091
+ createdAt: string | null;
25092
+ updatedAt: string;
25093
+ authorLogin: string | null;
25094
+ body: string;
25095
+ } | null | undefined;
24426
25096
  } | null | undefined;
24427
25097
  refreshedAt?: string | null | undefined;
24428
25098
  }, {
@@ -24437,6 +25107,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
24437
25107
  baseRefName: string;
24438
25108
  headRefName: string;
24439
25109
  isMerged: boolean;
25110
+ latestReviewComment?: {
25111
+ url: string;
25112
+ path: string | null;
25113
+ id: string;
25114
+ createdAt: string | null;
25115
+ updatedAt: string;
25116
+ authorLogin: string | null;
25117
+ body: string;
25118
+ } | null | undefined;
24440
25119
  } | null | undefined;
24441
25120
  refreshedAt?: string | null | undefined;
24442
25121
  }>>>;
@@ -24478,6 +25157,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
24478
25157
  baseRefName: string;
24479
25158
  headRefName: string;
24480
25159
  isMerged: boolean;
25160
+ latestReviewComment?: {
25161
+ url: string;
25162
+ path: string | null;
25163
+ id: string;
25164
+ createdAt: string | null;
25165
+ updatedAt: string;
25166
+ authorLogin: string | null;
25167
+ body: string;
25168
+ } | null | undefined;
24481
25169
  } | null | undefined;
24482
25170
  refreshedAt?: string | null | undefined;
24483
25171
  } | null | undefined;
@@ -24519,6 +25207,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
24519
25207
  baseRefName: string;
24520
25208
  headRefName: string;
24521
25209
  isMerged: boolean;
25210
+ latestReviewComment?: {
25211
+ url: string;
25212
+ path: string | null;
25213
+ id: string;
25214
+ createdAt: string | null;
25215
+ updatedAt: string;
25216
+ authorLogin: string | null;
25217
+ body: string;
25218
+ } | null | undefined;
24522
25219
  } | null | undefined;
24523
25220
  refreshedAt?: string | null | undefined;
24524
25221
  } | null | undefined;
@@ -24563,6 +25260,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
24563
25260
  baseRefName: string;
24564
25261
  headRefName: string;
24565
25262
  isMerged: boolean;
25263
+ latestReviewComment?: {
25264
+ url: string;
25265
+ path: string | null;
25266
+ id: string;
25267
+ createdAt: string | null;
25268
+ updatedAt: string;
25269
+ authorLogin: string | null;
25270
+ body: string;
25271
+ } | null | undefined;
24566
25272
  } | null | undefined;
24567
25273
  refreshedAt?: string | null | undefined;
24568
25274
  } | null | undefined;
@@ -24607,6 +25313,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
24607
25313
  baseRefName: string;
24608
25314
  headRefName: string;
24609
25315
  isMerged: boolean;
25316
+ latestReviewComment?: {
25317
+ url: string;
25318
+ path: string | null;
25319
+ id: string;
25320
+ createdAt: string | null;
25321
+ updatedAt: string;
25322
+ authorLogin: string | null;
25323
+ body: string;
25324
+ } | null | undefined;
24610
25325
  } | null | undefined;
24611
25326
  refreshedAt?: string | null | undefined;
24612
25327
  } | null | undefined;
@@ -24663,6 +25378,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
24663
25378
  baseRefName: string;
24664
25379
  headRefName: string;
24665
25380
  isMerged: boolean;
25381
+ latestReviewComment?: {
25382
+ url: string;
25383
+ path: string | null;
25384
+ id: string;
25385
+ createdAt: string | null;
25386
+ updatedAt: string;
25387
+ authorLogin: string | null;
25388
+ body: string;
25389
+ } | null | undefined;
24666
25390
  } | null | undefined;
24667
25391
  refreshedAt?: string | null | undefined;
24668
25392
  } | null | undefined;
@@ -24713,6 +25437,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
24713
25437
  baseRefName: string;
24714
25438
  headRefName: string;
24715
25439
  isMerged: boolean;
25440
+ latestReviewComment?: {
25441
+ url: string;
25442
+ path: string | null;
25443
+ id: string;
25444
+ createdAt: string | null;
25445
+ updatedAt: string;
25446
+ authorLogin: string | null;
25447
+ body: string;
25448
+ } | null | undefined;
24716
25449
  } | null | undefined;
24717
25450
  refreshedAt?: string | null | undefined;
24718
25451
  } | null | undefined;
@@ -26561,6 +27294,31 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
26561
27294
  baseRefName: z.ZodString;
26562
27295
  headRefName: z.ZodString;
26563
27296
  isMerged: z.ZodBoolean;
27297
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
27298
+ id: z.ZodString;
27299
+ url: z.ZodString;
27300
+ authorLogin: z.ZodNullable<z.ZodString>;
27301
+ body: z.ZodString;
27302
+ path: z.ZodNullable<z.ZodString>;
27303
+ createdAt: z.ZodNullable<z.ZodString>;
27304
+ updatedAt: z.ZodString;
27305
+ }, "strip", z.ZodTypeAny, {
27306
+ url: string;
27307
+ path: string | null;
27308
+ id: string;
27309
+ createdAt: string | null;
27310
+ updatedAt: string;
27311
+ authorLogin: string | null;
27312
+ body: string;
27313
+ }, {
27314
+ url: string;
27315
+ path: string | null;
27316
+ id: string;
27317
+ createdAt: string | null;
27318
+ updatedAt: string;
27319
+ authorLogin: string | null;
27320
+ body: string;
27321
+ }>>>;
26564
27322
  }, "strip", z.ZodTypeAny, {
26565
27323
  url: string;
26566
27324
  title: string;
@@ -26568,6 +27326,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
26568
27326
  baseRefName: string;
26569
27327
  headRefName: string;
26570
27328
  isMerged: boolean;
27329
+ latestReviewComment?: {
27330
+ url: string;
27331
+ path: string | null;
27332
+ id: string;
27333
+ createdAt: string | null;
27334
+ updatedAt: string;
27335
+ authorLogin: string | null;
27336
+ body: string;
27337
+ } | null | undefined;
26571
27338
  }, {
26572
27339
  url: string;
26573
27340
  title: string;
@@ -26575,6 +27342,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
26575
27342
  baseRefName: string;
26576
27343
  headRefName: string;
26577
27344
  isMerged: boolean;
27345
+ latestReviewComment?: {
27346
+ url: string;
27347
+ path: string | null;
27348
+ id: string;
27349
+ createdAt: string | null;
27350
+ updatedAt: string;
27351
+ authorLogin: string | null;
27352
+ body: string;
27353
+ } | null | undefined;
26578
27354
  }>>>;
26579
27355
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
26580
27356
  message: z.ZodString;
@@ -26596,6 +27372,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
26596
27372
  baseRefName: string;
26597
27373
  headRefName: string;
26598
27374
  isMerged: boolean;
27375
+ latestReviewComment?: {
27376
+ url: string;
27377
+ path: string | null;
27378
+ id: string;
27379
+ createdAt: string | null;
27380
+ updatedAt: string;
27381
+ authorLogin: string | null;
27382
+ body: string;
27383
+ } | null | undefined;
26599
27384
  } | null | undefined;
26600
27385
  refreshedAt?: string | null | undefined;
26601
27386
  }, {
@@ -26610,6 +27395,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
26610
27395
  baseRefName: string;
26611
27396
  headRefName: string;
26612
27397
  isMerged: boolean;
27398
+ latestReviewComment?: {
27399
+ url: string;
27400
+ path: string | null;
27401
+ id: string;
27402
+ createdAt: string | null;
27403
+ updatedAt: string;
27404
+ authorLogin: string | null;
27405
+ body: string;
27406
+ } | null | undefined;
26613
27407
  } | null | undefined;
26614
27408
  refreshedAt?: string | null | undefined;
26615
27409
  }>>>;
@@ -26651,6 +27445,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
26651
27445
  baseRefName: string;
26652
27446
  headRefName: string;
26653
27447
  isMerged: boolean;
27448
+ latestReviewComment?: {
27449
+ url: string;
27450
+ path: string | null;
27451
+ id: string;
27452
+ createdAt: string | null;
27453
+ updatedAt: string;
27454
+ authorLogin: string | null;
27455
+ body: string;
27456
+ } | null | undefined;
26654
27457
  } | null | undefined;
26655
27458
  refreshedAt?: string | null | undefined;
26656
27459
  } | null | undefined;
@@ -26692,6 +27495,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
26692
27495
  baseRefName: string;
26693
27496
  headRefName: string;
26694
27497
  isMerged: boolean;
27498
+ latestReviewComment?: {
27499
+ url: string;
27500
+ path: string | null;
27501
+ id: string;
27502
+ createdAt: string | null;
27503
+ updatedAt: string;
27504
+ authorLogin: string | null;
27505
+ body: string;
27506
+ } | null | undefined;
26695
27507
  } | null | undefined;
26696
27508
  refreshedAt?: string | null | undefined;
26697
27509
  } | null | undefined;
@@ -26748,6 +27560,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
26748
27560
  baseRefName: string;
26749
27561
  headRefName: string;
26750
27562
  isMerged: boolean;
27563
+ latestReviewComment?: {
27564
+ url: string;
27565
+ path: string | null;
27566
+ id: string;
27567
+ createdAt: string | null;
27568
+ updatedAt: string;
27569
+ authorLogin: string | null;
27570
+ body: string;
27571
+ } | null | undefined;
26751
27572
  } | null | undefined;
26752
27573
  refreshedAt?: string | null | undefined;
26753
27574
  } | null | undefined;
@@ -26798,6 +27619,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
26798
27619
  baseRefName: string;
26799
27620
  headRefName: string;
26800
27621
  isMerged: boolean;
27622
+ latestReviewComment?: {
27623
+ url: string;
27624
+ path: string | null;
27625
+ id: string;
27626
+ createdAt: string | null;
27627
+ updatedAt: string;
27628
+ authorLogin: string | null;
27629
+ body: string;
27630
+ } | null | undefined;
26801
27631
  } | null | undefined;
26802
27632
  refreshedAt?: string | null | undefined;
26803
27633
  } | null | undefined;
@@ -26851,6 +27681,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
26851
27681
  baseRefName: string;
26852
27682
  headRefName: string;
26853
27683
  isMerged: boolean;
27684
+ latestReviewComment?: {
27685
+ url: string;
27686
+ path: string | null;
27687
+ id: string;
27688
+ createdAt: string | null;
27689
+ updatedAt: string;
27690
+ authorLogin: string | null;
27691
+ body: string;
27692
+ } | null | undefined;
26854
27693
  } | null | undefined;
26855
27694
  refreshedAt?: string | null | undefined;
26856
27695
  } | null | undefined;
@@ -26904,6 +27743,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
26904
27743
  baseRefName: string;
26905
27744
  headRefName: string;
26906
27745
  isMerged: boolean;
27746
+ latestReviewComment?: {
27747
+ url: string;
27748
+ path: string | null;
27749
+ id: string;
27750
+ createdAt: string | null;
27751
+ updatedAt: string;
27752
+ authorLogin: string | null;
27753
+ body: string;
27754
+ } | null | undefined;
26907
27755
  } | null | undefined;
26908
27756
  refreshedAt?: string | null | undefined;
26909
27757
  } | null | undefined;
@@ -26989,6 +27837,31 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
26989
27837
  baseRefName: z.ZodString;
26990
27838
  headRefName: z.ZodString;
26991
27839
  isMerged: z.ZodBoolean;
27840
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
27841
+ id: z.ZodString;
27842
+ url: z.ZodString;
27843
+ authorLogin: z.ZodNullable<z.ZodString>;
27844
+ body: z.ZodString;
27845
+ path: z.ZodNullable<z.ZodString>;
27846
+ createdAt: z.ZodNullable<z.ZodString>;
27847
+ updatedAt: z.ZodString;
27848
+ }, "strip", z.ZodTypeAny, {
27849
+ url: string;
27850
+ path: string | null;
27851
+ id: string;
27852
+ createdAt: string | null;
27853
+ updatedAt: string;
27854
+ authorLogin: string | null;
27855
+ body: string;
27856
+ }, {
27857
+ url: string;
27858
+ path: string | null;
27859
+ id: string;
27860
+ createdAt: string | null;
27861
+ updatedAt: string;
27862
+ authorLogin: string | null;
27863
+ body: string;
27864
+ }>>>;
26992
27865
  }, "strip", z.ZodTypeAny, {
26993
27866
  url: string;
26994
27867
  title: string;
@@ -26996,6 +27869,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
26996
27869
  baseRefName: string;
26997
27870
  headRefName: string;
26998
27871
  isMerged: boolean;
27872
+ latestReviewComment?: {
27873
+ url: string;
27874
+ path: string | null;
27875
+ id: string;
27876
+ createdAt: string | null;
27877
+ updatedAt: string;
27878
+ authorLogin: string | null;
27879
+ body: string;
27880
+ } | null | undefined;
26999
27881
  }, {
27000
27882
  url: string;
27001
27883
  title: string;
@@ -27003,6 +27885,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
27003
27885
  baseRefName: string;
27004
27886
  headRefName: string;
27005
27887
  isMerged: boolean;
27888
+ latestReviewComment?: {
27889
+ url: string;
27890
+ path: string | null;
27891
+ id: string;
27892
+ createdAt: string | null;
27893
+ updatedAt: string;
27894
+ authorLogin: string | null;
27895
+ body: string;
27896
+ } | null | undefined;
27006
27897
  }>>>;
27007
27898
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
27008
27899
  message: z.ZodString;
@@ -27024,6 +27915,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
27024
27915
  baseRefName: string;
27025
27916
  headRefName: string;
27026
27917
  isMerged: boolean;
27918
+ latestReviewComment?: {
27919
+ url: string;
27920
+ path: string | null;
27921
+ id: string;
27922
+ createdAt: string | null;
27923
+ updatedAt: string;
27924
+ authorLogin: string | null;
27925
+ body: string;
27926
+ } | null | undefined;
27027
27927
  } | null | undefined;
27028
27928
  refreshedAt?: string | null | undefined;
27029
27929
  }, {
@@ -27038,6 +27938,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
27038
27938
  baseRefName: string;
27039
27939
  headRefName: string;
27040
27940
  isMerged: boolean;
27941
+ latestReviewComment?: {
27942
+ url: string;
27943
+ path: string | null;
27944
+ id: string;
27945
+ createdAt: string | null;
27946
+ updatedAt: string;
27947
+ authorLogin: string | null;
27948
+ body: string;
27949
+ } | null | undefined;
27041
27950
  } | null | undefined;
27042
27951
  refreshedAt?: string | null | undefined;
27043
27952
  }>>>;
@@ -27079,6 +27988,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
27079
27988
  baseRefName: string;
27080
27989
  headRefName: string;
27081
27990
  isMerged: boolean;
27991
+ latestReviewComment?: {
27992
+ url: string;
27993
+ path: string | null;
27994
+ id: string;
27995
+ createdAt: string | null;
27996
+ updatedAt: string;
27997
+ authorLogin: string | null;
27998
+ body: string;
27999
+ } | null | undefined;
27082
28000
  } | null | undefined;
27083
28001
  refreshedAt?: string | null | undefined;
27084
28002
  } | null | undefined;
@@ -27120,6 +28038,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
27120
28038
  baseRefName: string;
27121
28039
  headRefName: string;
27122
28040
  isMerged: boolean;
28041
+ latestReviewComment?: {
28042
+ url: string;
28043
+ path: string | null;
28044
+ id: string;
28045
+ createdAt: string | null;
28046
+ updatedAt: string;
28047
+ authorLogin: string | null;
28048
+ body: string;
28049
+ } | null | undefined;
27123
28050
  } | null | undefined;
27124
28051
  refreshedAt?: string | null | undefined;
27125
28052
  } | null | undefined;
@@ -27166,6 +28093,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
27166
28093
  baseRefName: string;
27167
28094
  headRefName: string;
27168
28095
  isMerged: boolean;
28096
+ latestReviewComment?: {
28097
+ url: string;
28098
+ path: string | null;
28099
+ id: string;
28100
+ createdAt: string | null;
28101
+ updatedAt: string;
28102
+ authorLogin: string | null;
28103
+ body: string;
28104
+ } | null | undefined;
27169
28105
  } | null | undefined;
27170
28106
  refreshedAt?: string | null | undefined;
27171
28107
  } | null | undefined;
@@ -27211,6 +28147,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
27211
28147
  baseRefName: string;
27212
28148
  headRefName: string;
27213
28149
  isMerged: boolean;
28150
+ latestReviewComment?: {
28151
+ url: string;
28152
+ path: string | null;
28153
+ id: string;
28154
+ createdAt: string | null;
28155
+ updatedAt: string;
28156
+ authorLogin: string | null;
28157
+ body: string;
28158
+ } | null | undefined;
27214
28159
  } | null | undefined;
27215
28160
  refreshedAt?: string | null | undefined;
27216
28161
  } | null | undefined;
@@ -27259,6 +28204,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
27259
28204
  baseRefName: string;
27260
28205
  headRefName: string;
27261
28206
  isMerged: boolean;
28207
+ latestReviewComment?: {
28208
+ url: string;
28209
+ path: string | null;
28210
+ id: string;
28211
+ createdAt: string | null;
28212
+ updatedAt: string;
28213
+ authorLogin: string | null;
28214
+ body: string;
28215
+ } | null | undefined;
27262
28216
  } | null | undefined;
27263
28217
  refreshedAt?: string | null | undefined;
27264
28218
  } | null | undefined;
@@ -27307,6 +28261,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
27307
28261
  baseRefName: string;
27308
28262
  headRefName: string;
27309
28263
  isMerged: boolean;
28264
+ latestReviewComment?: {
28265
+ url: string;
28266
+ path: string | null;
28267
+ id: string;
28268
+ createdAt: string | null;
28269
+ updatedAt: string;
28270
+ authorLogin: string | null;
28271
+ body: string;
28272
+ } | null | undefined;
27310
28273
  } | null | undefined;
27311
28274
  refreshedAt?: string | null | undefined;
27312
28275
  } | null | undefined;
@@ -32051,6 +33014,31 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32051
33014
  baseRefName: z.ZodString;
32052
33015
  headRefName: z.ZodString;
32053
33016
  isMerged: z.ZodBoolean;
33017
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
33018
+ id: z.ZodString;
33019
+ url: z.ZodString;
33020
+ authorLogin: z.ZodNullable<z.ZodString>;
33021
+ body: z.ZodString;
33022
+ path: z.ZodNullable<z.ZodString>;
33023
+ createdAt: z.ZodNullable<z.ZodString>;
33024
+ updatedAt: z.ZodString;
33025
+ }, "strip", z.ZodTypeAny, {
33026
+ url: string;
33027
+ path: string | null;
33028
+ id: string;
33029
+ createdAt: string | null;
33030
+ updatedAt: string;
33031
+ authorLogin: string | null;
33032
+ body: string;
33033
+ }, {
33034
+ url: string;
33035
+ path: string | null;
33036
+ id: string;
33037
+ createdAt: string | null;
33038
+ updatedAt: string;
33039
+ authorLogin: string | null;
33040
+ body: string;
33041
+ }>>>;
32054
33042
  }, "strip", z.ZodTypeAny, {
32055
33043
  url: string;
32056
33044
  title: string;
@@ -32058,6 +33046,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32058
33046
  baseRefName: string;
32059
33047
  headRefName: string;
32060
33048
  isMerged: boolean;
33049
+ latestReviewComment?: {
33050
+ url: string;
33051
+ path: string | null;
33052
+ id: string;
33053
+ createdAt: string | null;
33054
+ updatedAt: string;
33055
+ authorLogin: string | null;
33056
+ body: string;
33057
+ } | null | undefined;
32061
33058
  }, {
32062
33059
  url: string;
32063
33060
  title: string;
@@ -32065,6 +33062,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32065
33062
  baseRefName: string;
32066
33063
  headRefName: string;
32067
33064
  isMerged: boolean;
33065
+ latestReviewComment?: {
33066
+ url: string;
33067
+ path: string | null;
33068
+ id: string;
33069
+ createdAt: string | null;
33070
+ updatedAt: string;
33071
+ authorLogin: string | null;
33072
+ body: string;
33073
+ } | null | undefined;
32068
33074
  }>>;
32069
33075
  githubFeaturesEnabled: z.ZodBoolean;
32070
33076
  error: z.ZodNullable<z.ZodObject<{
@@ -32090,6 +33096,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32090
33096
  baseRefName: string;
32091
33097
  headRefName: string;
32092
33098
  isMerged: boolean;
33099
+ latestReviewComment?: {
33100
+ url: string;
33101
+ path: string | null;
33102
+ id: string;
33103
+ createdAt: string | null;
33104
+ updatedAt: string;
33105
+ authorLogin: string | null;
33106
+ body: string;
33107
+ } | null | undefined;
32093
33108
  } | null;
32094
33109
  requestId: string;
32095
33110
  cwd: string;
@@ -32106,6 +33121,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32106
33121
  baseRefName: string;
32107
33122
  headRefName: string;
32108
33123
  isMerged: boolean;
33124
+ latestReviewComment?: {
33125
+ url: string;
33126
+ path: string | null;
33127
+ id: string;
33128
+ createdAt: string | null;
33129
+ updatedAt: string;
33130
+ authorLogin: string | null;
33131
+ body: string;
33132
+ } | null | undefined;
32109
33133
  } | null;
32110
33134
  requestId: string;
32111
33135
  cwd: string;
@@ -32125,6 +33149,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32125
33149
  baseRefName: string;
32126
33150
  headRefName: string;
32127
33151
  isMerged: boolean;
33152
+ latestReviewComment?: {
33153
+ url: string;
33154
+ path: string | null;
33155
+ id: string;
33156
+ createdAt: string | null;
33157
+ updatedAt: string;
33158
+ authorLogin: string | null;
33159
+ body: string;
33160
+ } | null | undefined;
32128
33161
  } | null;
32129
33162
  requestId: string;
32130
33163
  cwd: string;
@@ -32144,6 +33177,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32144
33177
  baseRefName: string;
32145
33178
  headRefName: string;
32146
33179
  isMerged: boolean;
33180
+ latestReviewComment?: {
33181
+ url: string;
33182
+ path: string | null;
33183
+ id: string;
33184
+ createdAt: string | null;
33185
+ updatedAt: string;
33186
+ authorLogin: string | null;
33187
+ body: string;
33188
+ } | null | undefined;
32147
33189
  } | null;
32148
33190
  requestId: string;
32149
33191
  cwd: string;
@@ -32744,6 +33786,31 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32744
33786
  baseRefName: z.ZodString;
32745
33787
  headRefName: z.ZodString;
32746
33788
  isMerged: z.ZodBoolean;
33789
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
33790
+ id: z.ZodString;
33791
+ url: z.ZodString;
33792
+ authorLogin: z.ZodNullable<z.ZodString>;
33793
+ body: z.ZodString;
33794
+ path: z.ZodNullable<z.ZodString>;
33795
+ createdAt: z.ZodNullable<z.ZodString>;
33796
+ updatedAt: z.ZodString;
33797
+ }, "strip", z.ZodTypeAny, {
33798
+ url: string;
33799
+ path: string | null;
33800
+ id: string;
33801
+ createdAt: string | null;
33802
+ updatedAt: string;
33803
+ authorLogin: string | null;
33804
+ body: string;
33805
+ }, {
33806
+ url: string;
33807
+ path: string | null;
33808
+ id: string;
33809
+ createdAt: string | null;
33810
+ updatedAt: string;
33811
+ authorLogin: string | null;
33812
+ body: string;
33813
+ }>>>;
32747
33814
  }, "strip", z.ZodTypeAny, {
32748
33815
  url: string;
32749
33816
  title: string;
@@ -32751,6 +33818,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32751
33818
  baseRefName: string;
32752
33819
  headRefName: string;
32753
33820
  isMerged: boolean;
33821
+ latestReviewComment?: {
33822
+ url: string;
33823
+ path: string | null;
33824
+ id: string;
33825
+ createdAt: string | null;
33826
+ updatedAt: string;
33827
+ authorLogin: string | null;
33828
+ body: string;
33829
+ } | null | undefined;
32754
33830
  }, {
32755
33831
  url: string;
32756
33832
  title: string;
@@ -32758,6 +33834,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32758
33834
  baseRefName: string;
32759
33835
  headRefName: string;
32760
33836
  isMerged: boolean;
33837
+ latestReviewComment?: {
33838
+ url: string;
33839
+ path: string | null;
33840
+ id: string;
33841
+ createdAt: string | null;
33842
+ updatedAt: string;
33843
+ authorLogin: string | null;
33844
+ body: string;
33845
+ } | null | undefined;
32761
33846
  }>>>;
32762
33847
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
32763
33848
  message: z.ZodString;
@@ -32779,6 +33864,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32779
33864
  baseRefName: string;
32780
33865
  headRefName: string;
32781
33866
  isMerged: boolean;
33867
+ latestReviewComment?: {
33868
+ url: string;
33869
+ path: string | null;
33870
+ id: string;
33871
+ createdAt: string | null;
33872
+ updatedAt: string;
33873
+ authorLogin: string | null;
33874
+ body: string;
33875
+ } | null | undefined;
32782
33876
  } | null | undefined;
32783
33877
  refreshedAt?: string | null | undefined;
32784
33878
  }, {
@@ -32793,6 +33887,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32793
33887
  baseRefName: string;
32794
33888
  headRefName: string;
32795
33889
  isMerged: boolean;
33890
+ latestReviewComment?: {
33891
+ url: string;
33892
+ path: string | null;
33893
+ id: string;
33894
+ createdAt: string | null;
33895
+ updatedAt: string;
33896
+ authorLogin: string | null;
33897
+ body: string;
33898
+ } | null | undefined;
32796
33899
  } | null | undefined;
32797
33900
  refreshedAt?: string | null | undefined;
32798
33901
  }>>>;
@@ -32834,6 +33937,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32834
33937
  baseRefName: string;
32835
33938
  headRefName: string;
32836
33939
  isMerged: boolean;
33940
+ latestReviewComment?: {
33941
+ url: string;
33942
+ path: string | null;
33943
+ id: string;
33944
+ createdAt: string | null;
33945
+ updatedAt: string;
33946
+ authorLogin: string | null;
33947
+ body: string;
33948
+ } | null | undefined;
32837
33949
  } | null | undefined;
32838
33950
  refreshedAt?: string | null | undefined;
32839
33951
  } | null | undefined;
@@ -32875,6 +33987,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32875
33987
  baseRefName: string;
32876
33988
  headRefName: string;
32877
33989
  isMerged: boolean;
33990
+ latestReviewComment?: {
33991
+ url: string;
33992
+ path: string | null;
33993
+ id: string;
33994
+ createdAt: string | null;
33995
+ updatedAt: string;
33996
+ authorLogin: string | null;
33997
+ body: string;
33998
+ } | null | undefined;
32878
33999
  } | null | undefined;
32879
34000
  refreshedAt?: string | null | undefined;
32880
34001
  } | null | undefined;
@@ -32923,6 +34044,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32923
34044
  baseRefName: string;
32924
34045
  headRefName: string;
32925
34046
  isMerged: boolean;
34047
+ latestReviewComment?: {
34048
+ url: string;
34049
+ path: string | null;
34050
+ id: string;
34051
+ createdAt: string | null;
34052
+ updatedAt: string;
34053
+ authorLogin: string | null;
34054
+ body: string;
34055
+ } | null | undefined;
32926
34056
  } | null | undefined;
32927
34057
  refreshedAt?: string | null | undefined;
32928
34058
  } | null | undefined;
@@ -32969,6 +34099,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
32969
34099
  baseRefName: string;
32970
34100
  headRefName: string;
32971
34101
  isMerged: boolean;
34102
+ latestReviewComment?: {
34103
+ url: string;
34104
+ path: string | null;
34105
+ id: string;
34106
+ createdAt: string | null;
34107
+ updatedAt: string;
34108
+ authorLogin: string | null;
34109
+ body: string;
34110
+ } | null | undefined;
32972
34111
  } | null | undefined;
32973
34112
  refreshedAt?: string | null | undefined;
32974
34113
  } | null | undefined;
@@ -33018,6 +34157,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
33018
34157
  baseRefName: string;
33019
34158
  headRefName: string;
33020
34159
  isMerged: boolean;
34160
+ latestReviewComment?: {
34161
+ url: string;
34162
+ path: string | null;
34163
+ id: string;
34164
+ createdAt: string | null;
34165
+ updatedAt: string;
34166
+ authorLogin: string | null;
34167
+ body: string;
34168
+ } | null | undefined;
33021
34169
  } | null | undefined;
33022
34170
  refreshedAt?: string | null | undefined;
33023
34171
  } | null | undefined;
@@ -33067,6 +34215,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
33067
34215
  baseRefName: string;
33068
34216
  headRefName: string;
33069
34217
  isMerged: boolean;
34218
+ latestReviewComment?: {
34219
+ url: string;
34220
+ path: string | null;
34221
+ id: string;
34222
+ createdAt: string | null;
34223
+ updatedAt: string;
34224
+ authorLogin: string | null;
34225
+ body: string;
34226
+ } | null | undefined;
33070
34227
  } | null | undefined;
33071
34228
  refreshedAt?: string | null | undefined;
33072
34229
  } | null | undefined;
@@ -46207,6 +47364,31 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
46207
47364
  baseRefName: z.ZodString;
46208
47365
  headRefName: z.ZodString;
46209
47366
  isMerged: z.ZodBoolean;
47367
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
47368
+ id: z.ZodString;
47369
+ url: z.ZodString;
47370
+ authorLogin: z.ZodNullable<z.ZodString>;
47371
+ body: z.ZodString;
47372
+ path: z.ZodNullable<z.ZodString>;
47373
+ createdAt: z.ZodNullable<z.ZodString>;
47374
+ updatedAt: z.ZodString;
47375
+ }, "strip", z.ZodTypeAny, {
47376
+ url: string;
47377
+ path: string | null;
47378
+ id: string;
47379
+ createdAt: string | null;
47380
+ updatedAt: string;
47381
+ authorLogin: string | null;
47382
+ body: string;
47383
+ }, {
47384
+ url: string;
47385
+ path: string | null;
47386
+ id: string;
47387
+ createdAt: string | null;
47388
+ updatedAt: string;
47389
+ authorLogin: string | null;
47390
+ body: string;
47391
+ }>>>;
46210
47392
  }, "strip", z.ZodTypeAny, {
46211
47393
  url: string;
46212
47394
  title: string;
@@ -46214,6 +47396,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
46214
47396
  baseRefName: string;
46215
47397
  headRefName: string;
46216
47398
  isMerged: boolean;
47399
+ latestReviewComment?: {
47400
+ url: string;
47401
+ path: string | null;
47402
+ id: string;
47403
+ createdAt: string | null;
47404
+ updatedAt: string;
47405
+ authorLogin: string | null;
47406
+ body: string;
47407
+ } | null | undefined;
46217
47408
  }, {
46218
47409
  url: string;
46219
47410
  title: string;
@@ -46221,6 +47412,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
46221
47412
  baseRefName: string;
46222
47413
  headRefName: string;
46223
47414
  isMerged: boolean;
47415
+ latestReviewComment?: {
47416
+ url: string;
47417
+ path: string | null;
47418
+ id: string;
47419
+ createdAt: string | null;
47420
+ updatedAt: string;
47421
+ authorLogin: string | null;
47422
+ body: string;
47423
+ } | null | undefined;
46224
47424
  }>>>;
46225
47425
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
46226
47426
  message: z.ZodString;
@@ -46242,6 +47442,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
46242
47442
  baseRefName: string;
46243
47443
  headRefName: string;
46244
47444
  isMerged: boolean;
47445
+ latestReviewComment?: {
47446
+ url: string;
47447
+ path: string | null;
47448
+ id: string;
47449
+ createdAt: string | null;
47450
+ updatedAt: string;
47451
+ authorLogin: string | null;
47452
+ body: string;
47453
+ } | null | undefined;
46245
47454
  } | null | undefined;
46246
47455
  refreshedAt?: string | null | undefined;
46247
47456
  }, {
@@ -46256,6 +47465,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
46256
47465
  baseRefName: string;
46257
47466
  headRefName: string;
46258
47467
  isMerged: boolean;
47468
+ latestReviewComment?: {
47469
+ url: string;
47470
+ path: string | null;
47471
+ id: string;
47472
+ createdAt: string | null;
47473
+ updatedAt: string;
47474
+ authorLogin: string | null;
47475
+ body: string;
47476
+ } | null | undefined;
46259
47477
  } | null | undefined;
46260
47478
  refreshedAt?: string | null | undefined;
46261
47479
  }>>>;
@@ -46297,6 +47515,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
46297
47515
  baseRefName: string;
46298
47516
  headRefName: string;
46299
47517
  isMerged: boolean;
47518
+ latestReviewComment?: {
47519
+ url: string;
47520
+ path: string | null;
47521
+ id: string;
47522
+ createdAt: string | null;
47523
+ updatedAt: string;
47524
+ authorLogin: string | null;
47525
+ body: string;
47526
+ } | null | undefined;
46300
47527
  } | null | undefined;
46301
47528
  refreshedAt?: string | null | undefined;
46302
47529
  } | null | undefined;
@@ -46338,6 +47565,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
46338
47565
  baseRefName: string;
46339
47566
  headRefName: string;
46340
47567
  isMerged: boolean;
47568
+ latestReviewComment?: {
47569
+ url: string;
47570
+ path: string | null;
47571
+ id: string;
47572
+ createdAt: string | null;
47573
+ updatedAt: string;
47574
+ authorLogin: string | null;
47575
+ body: string;
47576
+ } | null | undefined;
46341
47577
  } | null | undefined;
46342
47578
  refreshedAt?: string | null | undefined;
46343
47579
  } | null | undefined;
@@ -46382,6 +47618,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
46382
47618
  baseRefName: string;
46383
47619
  headRefName: string;
46384
47620
  isMerged: boolean;
47621
+ latestReviewComment?: {
47622
+ url: string;
47623
+ path: string | null;
47624
+ id: string;
47625
+ createdAt: string | null;
47626
+ updatedAt: string;
47627
+ authorLogin: string | null;
47628
+ body: string;
47629
+ } | null | undefined;
46385
47630
  } | null | undefined;
46386
47631
  refreshedAt?: string | null | undefined;
46387
47632
  } | null | undefined;
@@ -46426,6 +47671,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
46426
47671
  baseRefName: string;
46427
47672
  headRefName: string;
46428
47673
  isMerged: boolean;
47674
+ latestReviewComment?: {
47675
+ url: string;
47676
+ path: string | null;
47677
+ id: string;
47678
+ createdAt: string | null;
47679
+ updatedAt: string;
47680
+ authorLogin: string | null;
47681
+ body: string;
47682
+ } | null | undefined;
46429
47683
  } | null | undefined;
46430
47684
  refreshedAt?: string | null | undefined;
46431
47685
  } | null | undefined;
@@ -46482,6 +47736,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
46482
47736
  baseRefName: string;
46483
47737
  headRefName: string;
46484
47738
  isMerged: boolean;
47739
+ latestReviewComment?: {
47740
+ url: string;
47741
+ path: string | null;
47742
+ id: string;
47743
+ createdAt: string | null;
47744
+ updatedAt: string;
47745
+ authorLogin: string | null;
47746
+ body: string;
47747
+ } | null | undefined;
46485
47748
  } | null | undefined;
46486
47749
  refreshedAt?: string | null | undefined;
46487
47750
  } | null | undefined;
@@ -46532,6 +47795,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
46532
47795
  baseRefName: string;
46533
47796
  headRefName: string;
46534
47797
  isMerged: boolean;
47798
+ latestReviewComment?: {
47799
+ url: string;
47800
+ path: string | null;
47801
+ id: string;
47802
+ createdAt: string | null;
47803
+ updatedAt: string;
47804
+ authorLogin: string | null;
47805
+ body: string;
47806
+ } | null | undefined;
46535
47807
  } | null | undefined;
46536
47808
  refreshedAt?: string | null | undefined;
46537
47809
  } | null | undefined;
@@ -48380,6 +49652,31 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48380
49652
  baseRefName: z.ZodString;
48381
49653
  headRefName: z.ZodString;
48382
49654
  isMerged: z.ZodBoolean;
49655
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
49656
+ id: z.ZodString;
49657
+ url: z.ZodString;
49658
+ authorLogin: z.ZodNullable<z.ZodString>;
49659
+ body: z.ZodString;
49660
+ path: z.ZodNullable<z.ZodString>;
49661
+ createdAt: z.ZodNullable<z.ZodString>;
49662
+ updatedAt: z.ZodString;
49663
+ }, "strip", z.ZodTypeAny, {
49664
+ url: string;
49665
+ path: string | null;
49666
+ id: string;
49667
+ createdAt: string | null;
49668
+ updatedAt: string;
49669
+ authorLogin: string | null;
49670
+ body: string;
49671
+ }, {
49672
+ url: string;
49673
+ path: string | null;
49674
+ id: string;
49675
+ createdAt: string | null;
49676
+ updatedAt: string;
49677
+ authorLogin: string | null;
49678
+ body: string;
49679
+ }>>>;
48383
49680
  }, "strip", z.ZodTypeAny, {
48384
49681
  url: string;
48385
49682
  title: string;
@@ -48387,6 +49684,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48387
49684
  baseRefName: string;
48388
49685
  headRefName: string;
48389
49686
  isMerged: boolean;
49687
+ latestReviewComment?: {
49688
+ url: string;
49689
+ path: string | null;
49690
+ id: string;
49691
+ createdAt: string | null;
49692
+ updatedAt: string;
49693
+ authorLogin: string | null;
49694
+ body: string;
49695
+ } | null | undefined;
48390
49696
  }, {
48391
49697
  url: string;
48392
49698
  title: string;
@@ -48394,6 +49700,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48394
49700
  baseRefName: string;
48395
49701
  headRefName: string;
48396
49702
  isMerged: boolean;
49703
+ latestReviewComment?: {
49704
+ url: string;
49705
+ path: string | null;
49706
+ id: string;
49707
+ createdAt: string | null;
49708
+ updatedAt: string;
49709
+ authorLogin: string | null;
49710
+ body: string;
49711
+ } | null | undefined;
48397
49712
  }>>>;
48398
49713
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
48399
49714
  message: z.ZodString;
@@ -48415,6 +49730,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48415
49730
  baseRefName: string;
48416
49731
  headRefName: string;
48417
49732
  isMerged: boolean;
49733
+ latestReviewComment?: {
49734
+ url: string;
49735
+ path: string | null;
49736
+ id: string;
49737
+ createdAt: string | null;
49738
+ updatedAt: string;
49739
+ authorLogin: string | null;
49740
+ body: string;
49741
+ } | null | undefined;
48418
49742
  } | null | undefined;
48419
49743
  refreshedAt?: string | null | undefined;
48420
49744
  }, {
@@ -48429,6 +49753,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48429
49753
  baseRefName: string;
48430
49754
  headRefName: string;
48431
49755
  isMerged: boolean;
49756
+ latestReviewComment?: {
49757
+ url: string;
49758
+ path: string | null;
49759
+ id: string;
49760
+ createdAt: string | null;
49761
+ updatedAt: string;
49762
+ authorLogin: string | null;
49763
+ body: string;
49764
+ } | null | undefined;
48432
49765
  } | null | undefined;
48433
49766
  refreshedAt?: string | null | undefined;
48434
49767
  }>>>;
@@ -48470,6 +49803,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48470
49803
  baseRefName: string;
48471
49804
  headRefName: string;
48472
49805
  isMerged: boolean;
49806
+ latestReviewComment?: {
49807
+ url: string;
49808
+ path: string | null;
49809
+ id: string;
49810
+ createdAt: string | null;
49811
+ updatedAt: string;
49812
+ authorLogin: string | null;
49813
+ body: string;
49814
+ } | null | undefined;
48473
49815
  } | null | undefined;
48474
49816
  refreshedAt?: string | null | undefined;
48475
49817
  } | null | undefined;
@@ -48511,6 +49853,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48511
49853
  baseRefName: string;
48512
49854
  headRefName: string;
48513
49855
  isMerged: boolean;
49856
+ latestReviewComment?: {
49857
+ url: string;
49858
+ path: string | null;
49859
+ id: string;
49860
+ createdAt: string | null;
49861
+ updatedAt: string;
49862
+ authorLogin: string | null;
49863
+ body: string;
49864
+ } | null | undefined;
48514
49865
  } | null | undefined;
48515
49866
  refreshedAt?: string | null | undefined;
48516
49867
  } | null | undefined;
@@ -48567,6 +49918,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48567
49918
  baseRefName: string;
48568
49919
  headRefName: string;
48569
49920
  isMerged: boolean;
49921
+ latestReviewComment?: {
49922
+ url: string;
49923
+ path: string | null;
49924
+ id: string;
49925
+ createdAt: string | null;
49926
+ updatedAt: string;
49927
+ authorLogin: string | null;
49928
+ body: string;
49929
+ } | null | undefined;
48570
49930
  } | null | undefined;
48571
49931
  refreshedAt?: string | null | undefined;
48572
49932
  } | null | undefined;
@@ -48617,6 +49977,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48617
49977
  baseRefName: string;
48618
49978
  headRefName: string;
48619
49979
  isMerged: boolean;
49980
+ latestReviewComment?: {
49981
+ url: string;
49982
+ path: string | null;
49983
+ id: string;
49984
+ createdAt: string | null;
49985
+ updatedAt: string;
49986
+ authorLogin: string | null;
49987
+ body: string;
49988
+ } | null | undefined;
48620
49989
  } | null | undefined;
48621
49990
  refreshedAt?: string | null | undefined;
48622
49991
  } | null | undefined;
@@ -48670,6 +50039,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48670
50039
  baseRefName: string;
48671
50040
  headRefName: string;
48672
50041
  isMerged: boolean;
50042
+ latestReviewComment?: {
50043
+ url: string;
50044
+ path: string | null;
50045
+ id: string;
50046
+ createdAt: string | null;
50047
+ updatedAt: string;
50048
+ authorLogin: string | null;
50049
+ body: string;
50050
+ } | null | undefined;
48673
50051
  } | null | undefined;
48674
50052
  refreshedAt?: string | null | undefined;
48675
50053
  } | null | undefined;
@@ -48723,6 +50101,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48723
50101
  baseRefName: string;
48724
50102
  headRefName: string;
48725
50103
  isMerged: boolean;
50104
+ latestReviewComment?: {
50105
+ url: string;
50106
+ path: string | null;
50107
+ id: string;
50108
+ createdAt: string | null;
50109
+ updatedAt: string;
50110
+ authorLogin: string | null;
50111
+ body: string;
50112
+ } | null | undefined;
48726
50113
  } | null | undefined;
48727
50114
  refreshedAt?: string | null | undefined;
48728
50115
  } | null | undefined;
@@ -48808,6 +50195,31 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48808
50195
  baseRefName: z.ZodString;
48809
50196
  headRefName: z.ZodString;
48810
50197
  isMerged: z.ZodBoolean;
50198
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
50199
+ id: z.ZodString;
50200
+ url: z.ZodString;
50201
+ authorLogin: z.ZodNullable<z.ZodString>;
50202
+ body: z.ZodString;
50203
+ path: z.ZodNullable<z.ZodString>;
50204
+ createdAt: z.ZodNullable<z.ZodString>;
50205
+ updatedAt: z.ZodString;
50206
+ }, "strip", z.ZodTypeAny, {
50207
+ url: string;
50208
+ path: string | null;
50209
+ id: string;
50210
+ createdAt: string | null;
50211
+ updatedAt: string;
50212
+ authorLogin: string | null;
50213
+ body: string;
50214
+ }, {
50215
+ url: string;
50216
+ path: string | null;
50217
+ id: string;
50218
+ createdAt: string | null;
50219
+ updatedAt: string;
50220
+ authorLogin: string | null;
50221
+ body: string;
50222
+ }>>>;
48811
50223
  }, "strip", z.ZodTypeAny, {
48812
50224
  url: string;
48813
50225
  title: string;
@@ -48815,6 +50227,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48815
50227
  baseRefName: string;
48816
50228
  headRefName: string;
48817
50229
  isMerged: boolean;
50230
+ latestReviewComment?: {
50231
+ url: string;
50232
+ path: string | null;
50233
+ id: string;
50234
+ createdAt: string | null;
50235
+ updatedAt: string;
50236
+ authorLogin: string | null;
50237
+ body: string;
50238
+ } | null | undefined;
48818
50239
  }, {
48819
50240
  url: string;
48820
50241
  title: string;
@@ -48822,6 +50243,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48822
50243
  baseRefName: string;
48823
50244
  headRefName: string;
48824
50245
  isMerged: boolean;
50246
+ latestReviewComment?: {
50247
+ url: string;
50248
+ path: string | null;
50249
+ id: string;
50250
+ createdAt: string | null;
50251
+ updatedAt: string;
50252
+ authorLogin: string | null;
50253
+ body: string;
50254
+ } | null | undefined;
48825
50255
  }>>>;
48826
50256
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
48827
50257
  message: z.ZodString;
@@ -48843,6 +50273,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48843
50273
  baseRefName: string;
48844
50274
  headRefName: string;
48845
50275
  isMerged: boolean;
50276
+ latestReviewComment?: {
50277
+ url: string;
50278
+ path: string | null;
50279
+ id: string;
50280
+ createdAt: string | null;
50281
+ updatedAt: string;
50282
+ authorLogin: string | null;
50283
+ body: string;
50284
+ } | null | undefined;
48846
50285
  } | null | undefined;
48847
50286
  refreshedAt?: string | null | undefined;
48848
50287
  }, {
@@ -48857,6 +50296,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48857
50296
  baseRefName: string;
48858
50297
  headRefName: string;
48859
50298
  isMerged: boolean;
50299
+ latestReviewComment?: {
50300
+ url: string;
50301
+ path: string | null;
50302
+ id: string;
50303
+ createdAt: string | null;
50304
+ updatedAt: string;
50305
+ authorLogin: string | null;
50306
+ body: string;
50307
+ } | null | undefined;
48860
50308
  } | null | undefined;
48861
50309
  refreshedAt?: string | null | undefined;
48862
50310
  }>>>;
@@ -48898,6 +50346,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48898
50346
  baseRefName: string;
48899
50347
  headRefName: string;
48900
50348
  isMerged: boolean;
50349
+ latestReviewComment?: {
50350
+ url: string;
50351
+ path: string | null;
50352
+ id: string;
50353
+ createdAt: string | null;
50354
+ updatedAt: string;
50355
+ authorLogin: string | null;
50356
+ body: string;
50357
+ } | null | undefined;
48901
50358
  } | null | undefined;
48902
50359
  refreshedAt?: string | null | undefined;
48903
50360
  } | null | undefined;
@@ -48939,6 +50396,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48939
50396
  baseRefName: string;
48940
50397
  headRefName: string;
48941
50398
  isMerged: boolean;
50399
+ latestReviewComment?: {
50400
+ url: string;
50401
+ path: string | null;
50402
+ id: string;
50403
+ createdAt: string | null;
50404
+ updatedAt: string;
50405
+ authorLogin: string | null;
50406
+ body: string;
50407
+ } | null | undefined;
48942
50408
  } | null | undefined;
48943
50409
  refreshedAt?: string | null | undefined;
48944
50410
  } | null | undefined;
@@ -48985,6 +50451,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
48985
50451
  baseRefName: string;
48986
50452
  headRefName: string;
48987
50453
  isMerged: boolean;
50454
+ latestReviewComment?: {
50455
+ url: string;
50456
+ path: string | null;
50457
+ id: string;
50458
+ createdAt: string | null;
50459
+ updatedAt: string;
50460
+ authorLogin: string | null;
50461
+ body: string;
50462
+ } | null | undefined;
48988
50463
  } | null | undefined;
48989
50464
  refreshedAt?: string | null | undefined;
48990
50465
  } | null | undefined;
@@ -49030,6 +50505,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
49030
50505
  baseRefName: string;
49031
50506
  headRefName: string;
49032
50507
  isMerged: boolean;
50508
+ latestReviewComment?: {
50509
+ url: string;
50510
+ path: string | null;
50511
+ id: string;
50512
+ createdAt: string | null;
50513
+ updatedAt: string;
50514
+ authorLogin: string | null;
50515
+ body: string;
50516
+ } | null | undefined;
49033
50517
  } | null | undefined;
49034
50518
  refreshedAt?: string | null | undefined;
49035
50519
  } | null | undefined;
@@ -49078,6 +50562,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
49078
50562
  baseRefName: string;
49079
50563
  headRefName: string;
49080
50564
  isMerged: boolean;
50565
+ latestReviewComment?: {
50566
+ url: string;
50567
+ path: string | null;
50568
+ id: string;
50569
+ createdAt: string | null;
50570
+ updatedAt: string;
50571
+ authorLogin: string | null;
50572
+ body: string;
50573
+ } | null | undefined;
49081
50574
  } | null | undefined;
49082
50575
  refreshedAt?: string | null | undefined;
49083
50576
  } | null | undefined;
@@ -49126,6 +50619,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
49126
50619
  baseRefName: string;
49127
50620
  headRefName: string;
49128
50621
  isMerged: boolean;
50622
+ latestReviewComment?: {
50623
+ url: string;
50624
+ path: string | null;
50625
+ id: string;
50626
+ createdAt: string | null;
50627
+ updatedAt: string;
50628
+ authorLogin: string | null;
50629
+ body: string;
50630
+ } | null | undefined;
49129
50631
  } | null | undefined;
49130
50632
  refreshedAt?: string | null | undefined;
49131
50633
  } | null | undefined;
@@ -53870,6 +55372,31 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
53870
55372
  baseRefName: z.ZodString;
53871
55373
  headRefName: z.ZodString;
53872
55374
  isMerged: z.ZodBoolean;
55375
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
55376
+ id: z.ZodString;
55377
+ url: z.ZodString;
55378
+ authorLogin: z.ZodNullable<z.ZodString>;
55379
+ body: z.ZodString;
55380
+ path: z.ZodNullable<z.ZodString>;
55381
+ createdAt: z.ZodNullable<z.ZodString>;
55382
+ updatedAt: z.ZodString;
55383
+ }, "strip", z.ZodTypeAny, {
55384
+ url: string;
55385
+ path: string | null;
55386
+ id: string;
55387
+ createdAt: string | null;
55388
+ updatedAt: string;
55389
+ authorLogin: string | null;
55390
+ body: string;
55391
+ }, {
55392
+ url: string;
55393
+ path: string | null;
55394
+ id: string;
55395
+ createdAt: string | null;
55396
+ updatedAt: string;
55397
+ authorLogin: string | null;
55398
+ body: string;
55399
+ }>>>;
53873
55400
  }, "strip", z.ZodTypeAny, {
53874
55401
  url: string;
53875
55402
  title: string;
@@ -53877,6 +55404,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
53877
55404
  baseRefName: string;
53878
55405
  headRefName: string;
53879
55406
  isMerged: boolean;
55407
+ latestReviewComment?: {
55408
+ url: string;
55409
+ path: string | null;
55410
+ id: string;
55411
+ createdAt: string | null;
55412
+ updatedAt: string;
55413
+ authorLogin: string | null;
55414
+ body: string;
55415
+ } | null | undefined;
53880
55416
  }, {
53881
55417
  url: string;
53882
55418
  title: string;
@@ -53884,6 +55420,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
53884
55420
  baseRefName: string;
53885
55421
  headRefName: string;
53886
55422
  isMerged: boolean;
55423
+ latestReviewComment?: {
55424
+ url: string;
55425
+ path: string | null;
55426
+ id: string;
55427
+ createdAt: string | null;
55428
+ updatedAt: string;
55429
+ authorLogin: string | null;
55430
+ body: string;
55431
+ } | null | undefined;
53887
55432
  }>>;
53888
55433
  githubFeaturesEnabled: z.ZodBoolean;
53889
55434
  error: z.ZodNullable<z.ZodObject<{
@@ -53909,6 +55454,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
53909
55454
  baseRefName: string;
53910
55455
  headRefName: string;
53911
55456
  isMerged: boolean;
55457
+ latestReviewComment?: {
55458
+ url: string;
55459
+ path: string | null;
55460
+ id: string;
55461
+ createdAt: string | null;
55462
+ updatedAt: string;
55463
+ authorLogin: string | null;
55464
+ body: string;
55465
+ } | null | undefined;
53912
55466
  } | null;
53913
55467
  requestId: string;
53914
55468
  cwd: string;
@@ -53925,6 +55479,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
53925
55479
  baseRefName: string;
53926
55480
  headRefName: string;
53927
55481
  isMerged: boolean;
55482
+ latestReviewComment?: {
55483
+ url: string;
55484
+ path: string | null;
55485
+ id: string;
55486
+ createdAt: string | null;
55487
+ updatedAt: string;
55488
+ authorLogin: string | null;
55489
+ body: string;
55490
+ } | null | undefined;
53928
55491
  } | null;
53929
55492
  requestId: string;
53930
55493
  cwd: string;
@@ -53944,6 +55507,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
53944
55507
  baseRefName: string;
53945
55508
  headRefName: string;
53946
55509
  isMerged: boolean;
55510
+ latestReviewComment?: {
55511
+ url: string;
55512
+ path: string | null;
55513
+ id: string;
55514
+ createdAt: string | null;
55515
+ updatedAt: string;
55516
+ authorLogin: string | null;
55517
+ body: string;
55518
+ } | null | undefined;
53947
55519
  } | null;
53948
55520
  requestId: string;
53949
55521
  cwd: string;
@@ -53963,6 +55535,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
53963
55535
  baseRefName: string;
53964
55536
  headRefName: string;
53965
55537
  isMerged: boolean;
55538
+ latestReviewComment?: {
55539
+ url: string;
55540
+ path: string | null;
55541
+ id: string;
55542
+ createdAt: string | null;
55543
+ updatedAt: string;
55544
+ authorLogin: string | null;
55545
+ body: string;
55546
+ } | null | undefined;
53966
55547
  } | null;
53967
55548
  requestId: string;
53968
55549
  cwd: string;
@@ -54563,6 +56144,31 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
54563
56144
  baseRefName: z.ZodString;
54564
56145
  headRefName: z.ZodString;
54565
56146
  isMerged: z.ZodBoolean;
56147
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
56148
+ id: z.ZodString;
56149
+ url: z.ZodString;
56150
+ authorLogin: z.ZodNullable<z.ZodString>;
56151
+ body: z.ZodString;
56152
+ path: z.ZodNullable<z.ZodString>;
56153
+ createdAt: z.ZodNullable<z.ZodString>;
56154
+ updatedAt: z.ZodString;
56155
+ }, "strip", z.ZodTypeAny, {
56156
+ url: string;
56157
+ path: string | null;
56158
+ id: string;
56159
+ createdAt: string | null;
56160
+ updatedAt: string;
56161
+ authorLogin: string | null;
56162
+ body: string;
56163
+ }, {
56164
+ url: string;
56165
+ path: string | null;
56166
+ id: string;
56167
+ createdAt: string | null;
56168
+ updatedAt: string;
56169
+ authorLogin: string | null;
56170
+ body: string;
56171
+ }>>>;
54566
56172
  }, "strip", z.ZodTypeAny, {
54567
56173
  url: string;
54568
56174
  title: string;
@@ -54570,6 +56176,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
54570
56176
  baseRefName: string;
54571
56177
  headRefName: string;
54572
56178
  isMerged: boolean;
56179
+ latestReviewComment?: {
56180
+ url: string;
56181
+ path: string | null;
56182
+ id: string;
56183
+ createdAt: string | null;
56184
+ updatedAt: string;
56185
+ authorLogin: string | null;
56186
+ body: string;
56187
+ } | null | undefined;
54573
56188
  }, {
54574
56189
  url: string;
54575
56190
  title: string;
@@ -54577,6 +56192,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
54577
56192
  baseRefName: string;
54578
56193
  headRefName: string;
54579
56194
  isMerged: boolean;
56195
+ latestReviewComment?: {
56196
+ url: string;
56197
+ path: string | null;
56198
+ id: string;
56199
+ createdAt: string | null;
56200
+ updatedAt: string;
56201
+ authorLogin: string | null;
56202
+ body: string;
56203
+ } | null | undefined;
54580
56204
  }>>>;
54581
56205
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
54582
56206
  message: z.ZodString;
@@ -54598,6 +56222,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
54598
56222
  baseRefName: string;
54599
56223
  headRefName: string;
54600
56224
  isMerged: boolean;
56225
+ latestReviewComment?: {
56226
+ url: string;
56227
+ path: string | null;
56228
+ id: string;
56229
+ createdAt: string | null;
56230
+ updatedAt: string;
56231
+ authorLogin: string | null;
56232
+ body: string;
56233
+ } | null | undefined;
54601
56234
  } | null | undefined;
54602
56235
  refreshedAt?: string | null | undefined;
54603
56236
  }, {
@@ -54612,6 +56245,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
54612
56245
  baseRefName: string;
54613
56246
  headRefName: string;
54614
56247
  isMerged: boolean;
56248
+ latestReviewComment?: {
56249
+ url: string;
56250
+ path: string | null;
56251
+ id: string;
56252
+ createdAt: string | null;
56253
+ updatedAt: string;
56254
+ authorLogin: string | null;
56255
+ body: string;
56256
+ } | null | undefined;
54615
56257
  } | null | undefined;
54616
56258
  refreshedAt?: string | null | undefined;
54617
56259
  }>>>;
@@ -54653,6 +56295,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
54653
56295
  baseRefName: string;
54654
56296
  headRefName: string;
54655
56297
  isMerged: boolean;
56298
+ latestReviewComment?: {
56299
+ url: string;
56300
+ path: string | null;
56301
+ id: string;
56302
+ createdAt: string | null;
56303
+ updatedAt: string;
56304
+ authorLogin: string | null;
56305
+ body: string;
56306
+ } | null | undefined;
54656
56307
  } | null | undefined;
54657
56308
  refreshedAt?: string | null | undefined;
54658
56309
  } | null | undefined;
@@ -54694,6 +56345,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
54694
56345
  baseRefName: string;
54695
56346
  headRefName: string;
54696
56347
  isMerged: boolean;
56348
+ latestReviewComment?: {
56349
+ url: string;
56350
+ path: string | null;
56351
+ id: string;
56352
+ createdAt: string | null;
56353
+ updatedAt: string;
56354
+ authorLogin: string | null;
56355
+ body: string;
56356
+ } | null | undefined;
54697
56357
  } | null | undefined;
54698
56358
  refreshedAt?: string | null | undefined;
54699
56359
  } | null | undefined;
@@ -54742,6 +56402,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
54742
56402
  baseRefName: string;
54743
56403
  headRefName: string;
54744
56404
  isMerged: boolean;
56405
+ latestReviewComment?: {
56406
+ url: string;
56407
+ path: string | null;
56408
+ id: string;
56409
+ createdAt: string | null;
56410
+ updatedAt: string;
56411
+ authorLogin: string | null;
56412
+ body: string;
56413
+ } | null | undefined;
54745
56414
  } | null | undefined;
54746
56415
  refreshedAt?: string | null | undefined;
54747
56416
  } | null | undefined;
@@ -54788,6 +56457,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
54788
56457
  baseRefName: string;
54789
56458
  headRefName: string;
54790
56459
  isMerged: boolean;
56460
+ latestReviewComment?: {
56461
+ url: string;
56462
+ path: string | null;
56463
+ id: string;
56464
+ createdAt: string | null;
56465
+ updatedAt: string;
56466
+ authorLogin: string | null;
56467
+ body: string;
56468
+ } | null | undefined;
54791
56469
  } | null | undefined;
54792
56470
  refreshedAt?: string | null | undefined;
54793
56471
  } | null | undefined;
@@ -54837,6 +56515,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
54837
56515
  baseRefName: string;
54838
56516
  headRefName: string;
54839
56517
  isMerged: boolean;
56518
+ latestReviewComment?: {
56519
+ url: string;
56520
+ path: string | null;
56521
+ id: string;
56522
+ createdAt: string | null;
56523
+ updatedAt: string;
56524
+ authorLogin: string | null;
56525
+ body: string;
56526
+ } | null | undefined;
54840
56527
  } | null | undefined;
54841
56528
  refreshedAt?: string | null | undefined;
54842
56529
  } | null | undefined;
@@ -54886,6 +56573,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
54886
56573
  baseRefName: string;
54887
56574
  headRefName: string;
54888
56575
  isMerged: boolean;
56576
+ latestReviewComment?: {
56577
+ url: string;
56578
+ path: string | null;
56579
+ id: string;
56580
+ createdAt: string | null;
56581
+ updatedAt: string;
56582
+ authorLogin: string | null;
56583
+ body: string;
56584
+ } | null | undefined;
54889
56585
  } | null | undefined;
54890
56586
  refreshedAt?: string | null | undefined;
54891
56587
  } | null | undefined;
@@ -62234,6 +63930,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
62234
63930
  baseRefName: string;
62235
63931
  headRefName: string;
62236
63932
  isMerged: boolean;
63933
+ latestReviewComment?: {
63934
+ url: string;
63935
+ path: string | null;
63936
+ id: string;
63937
+ createdAt: string | null;
63938
+ updatedAt: string;
63939
+ authorLogin: string | null;
63940
+ body: string;
63941
+ } | null | undefined;
62237
63942
  } | null | undefined;
62238
63943
  refreshedAt?: string | null | undefined;
62239
63944
  } | null | undefined;
@@ -62489,6 +64194,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
62489
64194
  baseRefName: string;
62490
64195
  headRefName: string;
62491
64196
  isMerged: boolean;
64197
+ latestReviewComment?: {
64198
+ url: string;
64199
+ path: string | null;
64200
+ id: string;
64201
+ createdAt: string | null;
64202
+ updatedAt: string;
64203
+ authorLogin: string | null;
64204
+ body: string;
64205
+ } | null | undefined;
62492
64206
  } | null | undefined;
62493
64207
  refreshedAt?: string | null | undefined;
62494
64208
  } | null | undefined;
@@ -62544,6 +64258,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
62544
64258
  baseRefName: string;
62545
64259
  headRefName: string;
62546
64260
  isMerged: boolean;
64261
+ latestReviewComment?: {
64262
+ url: string;
64263
+ path: string | null;
64264
+ id: string;
64265
+ createdAt: string | null;
64266
+ updatedAt: string;
64267
+ authorLogin: string | null;
64268
+ body: string;
64269
+ } | null | undefined;
62547
64270
  } | null | undefined;
62548
64271
  refreshedAt?: string | null | undefined;
62549
64272
  } | null | undefined;
@@ -63195,6 +64918,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
63195
64918
  baseRefName: string;
63196
64919
  headRefName: string;
63197
64920
  isMerged: boolean;
64921
+ latestReviewComment?: {
64922
+ url: string;
64923
+ path: string | null;
64924
+ id: string;
64925
+ createdAt: string | null;
64926
+ updatedAt: string;
64927
+ authorLogin: string | null;
64928
+ body: string;
64929
+ } | null | undefined;
63198
64930
  } | null;
63199
64931
  requestId: string;
63200
64932
  cwd: string;
@@ -63346,6 +65078,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
63346
65078
  baseRefName: string;
63347
65079
  headRefName: string;
63348
65080
  isMerged: boolean;
65081
+ latestReviewComment?: {
65082
+ url: string;
65083
+ path: string | null;
65084
+ id: string;
65085
+ createdAt: string | null;
65086
+ updatedAt: string;
65087
+ authorLogin: string | null;
65088
+ body: string;
65089
+ } | null | undefined;
63349
65090
  } | null | undefined;
63350
65091
  refreshedAt?: string | null | undefined;
63351
65092
  } | null | undefined;
@@ -64624,6 +66365,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
64624
66365
  baseRefName: string;
64625
66366
  headRefName: string;
64626
66367
  isMerged: boolean;
66368
+ latestReviewComment?: {
66369
+ url: string;
66370
+ path: string | null;
66371
+ id: string;
66372
+ createdAt: string | null;
66373
+ updatedAt: string;
66374
+ authorLogin: string | null;
66375
+ body: string;
66376
+ } | null | undefined;
64627
66377
  } | null | undefined;
64628
66378
  refreshedAt?: string | null | undefined;
64629
66379
  } | null | undefined;
@@ -64879,6 +66629,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
64879
66629
  baseRefName: string;
64880
66630
  headRefName: string;
64881
66631
  isMerged: boolean;
66632
+ latestReviewComment?: {
66633
+ url: string;
66634
+ path: string | null;
66635
+ id: string;
66636
+ createdAt: string | null;
66637
+ updatedAt: string;
66638
+ authorLogin: string | null;
66639
+ body: string;
66640
+ } | null | undefined;
64882
66641
  } | null | undefined;
64883
66642
  refreshedAt?: string | null | undefined;
64884
66643
  } | null | undefined;
@@ -64934,6 +66693,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
64934
66693
  baseRefName: string;
64935
66694
  headRefName: string;
64936
66695
  isMerged: boolean;
66696
+ latestReviewComment?: {
66697
+ url: string;
66698
+ path: string | null;
66699
+ id: string;
66700
+ createdAt: string | null;
66701
+ updatedAt: string;
66702
+ authorLogin: string | null;
66703
+ body: string;
66704
+ } | null | undefined;
64937
66705
  } | null | undefined;
64938
66706
  refreshedAt?: string | null | undefined;
64939
66707
  } | null | undefined;
@@ -65585,6 +67353,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
65585
67353
  baseRefName: string;
65586
67354
  headRefName: string;
65587
67355
  isMerged: boolean;
67356
+ latestReviewComment?: {
67357
+ url: string;
67358
+ path: string | null;
67359
+ id: string;
67360
+ createdAt: string | null;
67361
+ updatedAt: string;
67362
+ authorLogin: string | null;
67363
+ body: string;
67364
+ } | null | undefined;
65588
67365
  } | null;
65589
67366
  requestId: string;
65590
67367
  cwd: string;
@@ -65736,6 +67513,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
65736
67513
  baseRefName: string;
65737
67514
  headRefName: string;
65738
67515
  isMerged: boolean;
67516
+ latestReviewComment?: {
67517
+ url: string;
67518
+ path: string | null;
67519
+ id: string;
67520
+ createdAt: string | null;
67521
+ updatedAt: string;
67522
+ authorLogin: string | null;
67523
+ body: string;
67524
+ } | null | undefined;
65739
67525
  } | null | undefined;
65740
67526
  refreshedAt?: string | null | undefined;
65741
67527
  } | null | undefined;
@@ -72587,6 +74373,31 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
72587
74373
  baseRefName: z.ZodString;
72588
74374
  headRefName: z.ZodString;
72589
74375
  isMerged: z.ZodBoolean;
74376
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74377
+ id: z.ZodString;
74378
+ url: z.ZodString;
74379
+ authorLogin: z.ZodNullable<z.ZodString>;
74380
+ body: z.ZodString;
74381
+ path: z.ZodNullable<z.ZodString>;
74382
+ createdAt: z.ZodNullable<z.ZodString>;
74383
+ updatedAt: z.ZodString;
74384
+ }, "strip", z.ZodTypeAny, {
74385
+ url: string;
74386
+ path: string | null;
74387
+ id: string;
74388
+ createdAt: string | null;
74389
+ updatedAt: string;
74390
+ authorLogin: string | null;
74391
+ body: string;
74392
+ }, {
74393
+ url: string;
74394
+ path: string | null;
74395
+ id: string;
74396
+ createdAt: string | null;
74397
+ updatedAt: string;
74398
+ authorLogin: string | null;
74399
+ body: string;
74400
+ }>>>;
72590
74401
  }, "strip", z.ZodTypeAny, {
72591
74402
  url: string;
72592
74403
  title: string;
@@ -72594,6 +74405,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
72594
74405
  baseRefName: string;
72595
74406
  headRefName: string;
72596
74407
  isMerged: boolean;
74408
+ latestReviewComment?: {
74409
+ url: string;
74410
+ path: string | null;
74411
+ id: string;
74412
+ createdAt: string | null;
74413
+ updatedAt: string;
74414
+ authorLogin: string | null;
74415
+ body: string;
74416
+ } | null | undefined;
72597
74417
  }, {
72598
74418
  url: string;
72599
74419
  title: string;
@@ -72601,6 +74421,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
72601
74421
  baseRefName: string;
72602
74422
  headRefName: string;
72603
74423
  isMerged: boolean;
74424
+ latestReviewComment?: {
74425
+ url: string;
74426
+ path: string | null;
74427
+ id: string;
74428
+ createdAt: string | null;
74429
+ updatedAt: string;
74430
+ authorLogin: string | null;
74431
+ body: string;
74432
+ } | null | undefined;
72604
74433
  }>>>;
72605
74434
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
72606
74435
  message: z.ZodString;
@@ -72622,6 +74451,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
72622
74451
  baseRefName: string;
72623
74452
  headRefName: string;
72624
74453
  isMerged: boolean;
74454
+ latestReviewComment?: {
74455
+ url: string;
74456
+ path: string | null;
74457
+ id: string;
74458
+ createdAt: string | null;
74459
+ updatedAt: string;
74460
+ authorLogin: string | null;
74461
+ body: string;
74462
+ } | null | undefined;
72625
74463
  } | null | undefined;
72626
74464
  refreshedAt?: string | null | undefined;
72627
74465
  }, {
@@ -72636,6 +74474,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
72636
74474
  baseRefName: string;
72637
74475
  headRefName: string;
72638
74476
  isMerged: boolean;
74477
+ latestReviewComment?: {
74478
+ url: string;
74479
+ path: string | null;
74480
+ id: string;
74481
+ createdAt: string | null;
74482
+ updatedAt: string;
74483
+ authorLogin: string | null;
74484
+ body: string;
74485
+ } | null | undefined;
72639
74486
  } | null | undefined;
72640
74487
  refreshedAt?: string | null | undefined;
72641
74488
  }>>>;
@@ -72677,6 +74524,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
72677
74524
  baseRefName: string;
72678
74525
  headRefName: string;
72679
74526
  isMerged: boolean;
74527
+ latestReviewComment?: {
74528
+ url: string;
74529
+ path: string | null;
74530
+ id: string;
74531
+ createdAt: string | null;
74532
+ updatedAt: string;
74533
+ authorLogin: string | null;
74534
+ body: string;
74535
+ } | null | undefined;
72680
74536
  } | null | undefined;
72681
74537
  refreshedAt?: string | null | undefined;
72682
74538
  } | null | undefined;
@@ -72718,6 +74574,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
72718
74574
  baseRefName: string;
72719
74575
  headRefName: string;
72720
74576
  isMerged: boolean;
74577
+ latestReviewComment?: {
74578
+ url: string;
74579
+ path: string | null;
74580
+ id: string;
74581
+ createdAt: string | null;
74582
+ updatedAt: string;
74583
+ authorLogin: string | null;
74584
+ body: string;
74585
+ } | null | undefined;
72721
74586
  } | null | undefined;
72722
74587
  refreshedAt?: string | null | undefined;
72723
74588
  } | null | undefined;
@@ -72762,6 +74627,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
72762
74627
  baseRefName: string;
72763
74628
  headRefName: string;
72764
74629
  isMerged: boolean;
74630
+ latestReviewComment?: {
74631
+ url: string;
74632
+ path: string | null;
74633
+ id: string;
74634
+ createdAt: string | null;
74635
+ updatedAt: string;
74636
+ authorLogin: string | null;
74637
+ body: string;
74638
+ } | null | undefined;
72765
74639
  } | null | undefined;
72766
74640
  refreshedAt?: string | null | undefined;
72767
74641
  } | null | undefined;
@@ -72806,6 +74680,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
72806
74680
  baseRefName: string;
72807
74681
  headRefName: string;
72808
74682
  isMerged: boolean;
74683
+ latestReviewComment?: {
74684
+ url: string;
74685
+ path: string | null;
74686
+ id: string;
74687
+ createdAt: string | null;
74688
+ updatedAt: string;
74689
+ authorLogin: string | null;
74690
+ body: string;
74691
+ } | null | undefined;
72809
74692
  } | null | undefined;
72810
74693
  refreshedAt?: string | null | undefined;
72811
74694
  } | null | undefined;
@@ -72862,6 +74745,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
72862
74745
  baseRefName: string;
72863
74746
  headRefName: string;
72864
74747
  isMerged: boolean;
74748
+ latestReviewComment?: {
74749
+ url: string;
74750
+ path: string | null;
74751
+ id: string;
74752
+ createdAt: string | null;
74753
+ updatedAt: string;
74754
+ authorLogin: string | null;
74755
+ body: string;
74756
+ } | null | undefined;
72865
74757
  } | null | undefined;
72866
74758
  refreshedAt?: string | null | undefined;
72867
74759
  } | null | undefined;
@@ -72912,6 +74804,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
72912
74804
  baseRefName: string;
72913
74805
  headRefName: string;
72914
74806
  isMerged: boolean;
74807
+ latestReviewComment?: {
74808
+ url: string;
74809
+ path: string | null;
74810
+ id: string;
74811
+ createdAt: string | null;
74812
+ updatedAt: string;
74813
+ authorLogin: string | null;
74814
+ body: string;
74815
+ } | null | undefined;
72915
74816
  } | null | undefined;
72916
74817
  refreshedAt?: string | null | undefined;
72917
74818
  } | null | undefined;
@@ -74760,6 +76661,31 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
74760
76661
  baseRefName: z.ZodString;
74761
76662
  headRefName: z.ZodString;
74762
76663
  isMerged: z.ZodBoolean;
76664
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
76665
+ id: z.ZodString;
76666
+ url: z.ZodString;
76667
+ authorLogin: z.ZodNullable<z.ZodString>;
76668
+ body: z.ZodString;
76669
+ path: z.ZodNullable<z.ZodString>;
76670
+ createdAt: z.ZodNullable<z.ZodString>;
76671
+ updatedAt: z.ZodString;
76672
+ }, "strip", z.ZodTypeAny, {
76673
+ url: string;
76674
+ path: string | null;
76675
+ id: string;
76676
+ createdAt: string | null;
76677
+ updatedAt: string;
76678
+ authorLogin: string | null;
76679
+ body: string;
76680
+ }, {
76681
+ url: string;
76682
+ path: string | null;
76683
+ id: string;
76684
+ createdAt: string | null;
76685
+ updatedAt: string;
76686
+ authorLogin: string | null;
76687
+ body: string;
76688
+ }>>>;
74763
76689
  }, "strip", z.ZodTypeAny, {
74764
76690
  url: string;
74765
76691
  title: string;
@@ -74767,6 +76693,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
74767
76693
  baseRefName: string;
74768
76694
  headRefName: string;
74769
76695
  isMerged: boolean;
76696
+ latestReviewComment?: {
76697
+ url: string;
76698
+ path: string | null;
76699
+ id: string;
76700
+ createdAt: string | null;
76701
+ updatedAt: string;
76702
+ authorLogin: string | null;
76703
+ body: string;
76704
+ } | null | undefined;
74770
76705
  }, {
74771
76706
  url: string;
74772
76707
  title: string;
@@ -74774,6 +76709,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
74774
76709
  baseRefName: string;
74775
76710
  headRefName: string;
74776
76711
  isMerged: boolean;
76712
+ latestReviewComment?: {
76713
+ url: string;
76714
+ path: string | null;
76715
+ id: string;
76716
+ createdAt: string | null;
76717
+ updatedAt: string;
76718
+ authorLogin: string | null;
76719
+ body: string;
76720
+ } | null | undefined;
74777
76721
  }>>>;
74778
76722
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74779
76723
  message: z.ZodString;
@@ -74795,6 +76739,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
74795
76739
  baseRefName: string;
74796
76740
  headRefName: string;
74797
76741
  isMerged: boolean;
76742
+ latestReviewComment?: {
76743
+ url: string;
76744
+ path: string | null;
76745
+ id: string;
76746
+ createdAt: string | null;
76747
+ updatedAt: string;
76748
+ authorLogin: string | null;
76749
+ body: string;
76750
+ } | null | undefined;
74798
76751
  } | null | undefined;
74799
76752
  refreshedAt?: string | null | undefined;
74800
76753
  }, {
@@ -74809,6 +76762,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
74809
76762
  baseRefName: string;
74810
76763
  headRefName: string;
74811
76764
  isMerged: boolean;
76765
+ latestReviewComment?: {
76766
+ url: string;
76767
+ path: string | null;
76768
+ id: string;
76769
+ createdAt: string | null;
76770
+ updatedAt: string;
76771
+ authorLogin: string | null;
76772
+ body: string;
76773
+ } | null | undefined;
74812
76774
  } | null | undefined;
74813
76775
  refreshedAt?: string | null | undefined;
74814
76776
  }>>>;
@@ -74850,6 +76812,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
74850
76812
  baseRefName: string;
74851
76813
  headRefName: string;
74852
76814
  isMerged: boolean;
76815
+ latestReviewComment?: {
76816
+ url: string;
76817
+ path: string | null;
76818
+ id: string;
76819
+ createdAt: string | null;
76820
+ updatedAt: string;
76821
+ authorLogin: string | null;
76822
+ body: string;
76823
+ } | null | undefined;
74853
76824
  } | null | undefined;
74854
76825
  refreshedAt?: string | null | undefined;
74855
76826
  } | null | undefined;
@@ -74891,6 +76862,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
74891
76862
  baseRefName: string;
74892
76863
  headRefName: string;
74893
76864
  isMerged: boolean;
76865
+ latestReviewComment?: {
76866
+ url: string;
76867
+ path: string | null;
76868
+ id: string;
76869
+ createdAt: string | null;
76870
+ updatedAt: string;
76871
+ authorLogin: string | null;
76872
+ body: string;
76873
+ } | null | undefined;
74894
76874
  } | null | undefined;
74895
76875
  refreshedAt?: string | null | undefined;
74896
76876
  } | null | undefined;
@@ -74947,6 +76927,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
74947
76927
  baseRefName: string;
74948
76928
  headRefName: string;
74949
76929
  isMerged: boolean;
76930
+ latestReviewComment?: {
76931
+ url: string;
76932
+ path: string | null;
76933
+ id: string;
76934
+ createdAt: string | null;
76935
+ updatedAt: string;
76936
+ authorLogin: string | null;
76937
+ body: string;
76938
+ } | null | undefined;
74950
76939
  } | null | undefined;
74951
76940
  refreshedAt?: string | null | undefined;
74952
76941
  } | null | undefined;
@@ -74997,6 +76986,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
74997
76986
  baseRefName: string;
74998
76987
  headRefName: string;
74999
76988
  isMerged: boolean;
76989
+ latestReviewComment?: {
76990
+ url: string;
76991
+ path: string | null;
76992
+ id: string;
76993
+ createdAt: string | null;
76994
+ updatedAt: string;
76995
+ authorLogin: string | null;
76996
+ body: string;
76997
+ } | null | undefined;
75000
76998
  } | null | undefined;
75001
76999
  refreshedAt?: string | null | undefined;
75002
77000
  } | null | undefined;
@@ -75050,6 +77048,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
75050
77048
  baseRefName: string;
75051
77049
  headRefName: string;
75052
77050
  isMerged: boolean;
77051
+ latestReviewComment?: {
77052
+ url: string;
77053
+ path: string | null;
77054
+ id: string;
77055
+ createdAt: string | null;
77056
+ updatedAt: string;
77057
+ authorLogin: string | null;
77058
+ body: string;
77059
+ } | null | undefined;
75053
77060
  } | null | undefined;
75054
77061
  refreshedAt?: string | null | undefined;
75055
77062
  } | null | undefined;
@@ -75103,6 +77110,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
75103
77110
  baseRefName: string;
75104
77111
  headRefName: string;
75105
77112
  isMerged: boolean;
77113
+ latestReviewComment?: {
77114
+ url: string;
77115
+ path: string | null;
77116
+ id: string;
77117
+ createdAt: string | null;
77118
+ updatedAt: string;
77119
+ authorLogin: string | null;
77120
+ body: string;
77121
+ } | null | undefined;
75106
77122
  } | null | undefined;
75107
77123
  refreshedAt?: string | null | undefined;
75108
77124
  } | null | undefined;
@@ -75188,6 +77204,31 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
75188
77204
  baseRefName: z.ZodString;
75189
77205
  headRefName: z.ZodString;
75190
77206
  isMerged: z.ZodBoolean;
77207
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
77208
+ id: z.ZodString;
77209
+ url: z.ZodString;
77210
+ authorLogin: z.ZodNullable<z.ZodString>;
77211
+ body: z.ZodString;
77212
+ path: z.ZodNullable<z.ZodString>;
77213
+ createdAt: z.ZodNullable<z.ZodString>;
77214
+ updatedAt: z.ZodString;
77215
+ }, "strip", z.ZodTypeAny, {
77216
+ url: string;
77217
+ path: string | null;
77218
+ id: string;
77219
+ createdAt: string | null;
77220
+ updatedAt: string;
77221
+ authorLogin: string | null;
77222
+ body: string;
77223
+ }, {
77224
+ url: string;
77225
+ path: string | null;
77226
+ id: string;
77227
+ createdAt: string | null;
77228
+ updatedAt: string;
77229
+ authorLogin: string | null;
77230
+ body: string;
77231
+ }>>>;
75191
77232
  }, "strip", z.ZodTypeAny, {
75192
77233
  url: string;
75193
77234
  title: string;
@@ -75195,6 +77236,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
75195
77236
  baseRefName: string;
75196
77237
  headRefName: string;
75197
77238
  isMerged: boolean;
77239
+ latestReviewComment?: {
77240
+ url: string;
77241
+ path: string | null;
77242
+ id: string;
77243
+ createdAt: string | null;
77244
+ updatedAt: string;
77245
+ authorLogin: string | null;
77246
+ body: string;
77247
+ } | null | undefined;
75198
77248
  }, {
75199
77249
  url: string;
75200
77250
  title: string;
@@ -75202,6 +77252,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
75202
77252
  baseRefName: string;
75203
77253
  headRefName: string;
75204
77254
  isMerged: boolean;
77255
+ latestReviewComment?: {
77256
+ url: string;
77257
+ path: string | null;
77258
+ id: string;
77259
+ createdAt: string | null;
77260
+ updatedAt: string;
77261
+ authorLogin: string | null;
77262
+ body: string;
77263
+ } | null | undefined;
75205
77264
  }>>>;
75206
77265
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
75207
77266
  message: z.ZodString;
@@ -75223,6 +77282,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
75223
77282
  baseRefName: string;
75224
77283
  headRefName: string;
75225
77284
  isMerged: boolean;
77285
+ latestReviewComment?: {
77286
+ url: string;
77287
+ path: string | null;
77288
+ id: string;
77289
+ createdAt: string | null;
77290
+ updatedAt: string;
77291
+ authorLogin: string | null;
77292
+ body: string;
77293
+ } | null | undefined;
75226
77294
  } | null | undefined;
75227
77295
  refreshedAt?: string | null | undefined;
75228
77296
  }, {
@@ -75237,6 +77305,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
75237
77305
  baseRefName: string;
75238
77306
  headRefName: string;
75239
77307
  isMerged: boolean;
77308
+ latestReviewComment?: {
77309
+ url: string;
77310
+ path: string | null;
77311
+ id: string;
77312
+ createdAt: string | null;
77313
+ updatedAt: string;
77314
+ authorLogin: string | null;
77315
+ body: string;
77316
+ } | null | undefined;
75240
77317
  } | null | undefined;
75241
77318
  refreshedAt?: string | null | undefined;
75242
77319
  }>>>;
@@ -75278,6 +77355,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
75278
77355
  baseRefName: string;
75279
77356
  headRefName: string;
75280
77357
  isMerged: boolean;
77358
+ latestReviewComment?: {
77359
+ url: string;
77360
+ path: string | null;
77361
+ id: string;
77362
+ createdAt: string | null;
77363
+ updatedAt: string;
77364
+ authorLogin: string | null;
77365
+ body: string;
77366
+ } | null | undefined;
75281
77367
  } | null | undefined;
75282
77368
  refreshedAt?: string | null | undefined;
75283
77369
  } | null | undefined;
@@ -75319,6 +77405,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
75319
77405
  baseRefName: string;
75320
77406
  headRefName: string;
75321
77407
  isMerged: boolean;
77408
+ latestReviewComment?: {
77409
+ url: string;
77410
+ path: string | null;
77411
+ id: string;
77412
+ createdAt: string | null;
77413
+ updatedAt: string;
77414
+ authorLogin: string | null;
77415
+ body: string;
77416
+ } | null | undefined;
75322
77417
  } | null | undefined;
75323
77418
  refreshedAt?: string | null | undefined;
75324
77419
  } | null | undefined;
@@ -75365,6 +77460,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
75365
77460
  baseRefName: string;
75366
77461
  headRefName: string;
75367
77462
  isMerged: boolean;
77463
+ latestReviewComment?: {
77464
+ url: string;
77465
+ path: string | null;
77466
+ id: string;
77467
+ createdAt: string | null;
77468
+ updatedAt: string;
77469
+ authorLogin: string | null;
77470
+ body: string;
77471
+ } | null | undefined;
75368
77472
  } | null | undefined;
75369
77473
  refreshedAt?: string | null | undefined;
75370
77474
  } | null | undefined;
@@ -75410,6 +77514,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
75410
77514
  baseRefName: string;
75411
77515
  headRefName: string;
75412
77516
  isMerged: boolean;
77517
+ latestReviewComment?: {
77518
+ url: string;
77519
+ path: string | null;
77520
+ id: string;
77521
+ createdAt: string | null;
77522
+ updatedAt: string;
77523
+ authorLogin: string | null;
77524
+ body: string;
77525
+ } | null | undefined;
75413
77526
  } | null | undefined;
75414
77527
  refreshedAt?: string | null | undefined;
75415
77528
  } | null | undefined;
@@ -75458,6 +77571,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
75458
77571
  baseRefName: string;
75459
77572
  headRefName: string;
75460
77573
  isMerged: boolean;
77574
+ latestReviewComment?: {
77575
+ url: string;
77576
+ path: string | null;
77577
+ id: string;
77578
+ createdAt: string | null;
77579
+ updatedAt: string;
77580
+ authorLogin: string | null;
77581
+ body: string;
77582
+ } | null | undefined;
75461
77583
  } | null | undefined;
75462
77584
  refreshedAt?: string | null | undefined;
75463
77585
  } | null | undefined;
@@ -75506,6 +77628,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
75506
77628
  baseRefName: string;
75507
77629
  headRefName: string;
75508
77630
  isMerged: boolean;
77631
+ latestReviewComment?: {
77632
+ url: string;
77633
+ path: string | null;
77634
+ id: string;
77635
+ createdAt: string | null;
77636
+ updatedAt: string;
77637
+ authorLogin: string | null;
77638
+ body: string;
77639
+ } | null | undefined;
75509
77640
  } | null | undefined;
75510
77641
  refreshedAt?: string | null | undefined;
75511
77642
  } | null | undefined;
@@ -80250,6 +82381,31 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
80250
82381
  baseRefName: z.ZodString;
80251
82382
  headRefName: z.ZodString;
80252
82383
  isMerged: z.ZodBoolean;
82384
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
82385
+ id: z.ZodString;
82386
+ url: z.ZodString;
82387
+ authorLogin: z.ZodNullable<z.ZodString>;
82388
+ body: z.ZodString;
82389
+ path: z.ZodNullable<z.ZodString>;
82390
+ createdAt: z.ZodNullable<z.ZodString>;
82391
+ updatedAt: z.ZodString;
82392
+ }, "strip", z.ZodTypeAny, {
82393
+ url: string;
82394
+ path: string | null;
82395
+ id: string;
82396
+ createdAt: string | null;
82397
+ updatedAt: string;
82398
+ authorLogin: string | null;
82399
+ body: string;
82400
+ }, {
82401
+ url: string;
82402
+ path: string | null;
82403
+ id: string;
82404
+ createdAt: string | null;
82405
+ updatedAt: string;
82406
+ authorLogin: string | null;
82407
+ body: string;
82408
+ }>>>;
80253
82409
  }, "strip", z.ZodTypeAny, {
80254
82410
  url: string;
80255
82411
  title: string;
@@ -80257,6 +82413,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
80257
82413
  baseRefName: string;
80258
82414
  headRefName: string;
80259
82415
  isMerged: boolean;
82416
+ latestReviewComment?: {
82417
+ url: string;
82418
+ path: string | null;
82419
+ id: string;
82420
+ createdAt: string | null;
82421
+ updatedAt: string;
82422
+ authorLogin: string | null;
82423
+ body: string;
82424
+ } | null | undefined;
80260
82425
  }, {
80261
82426
  url: string;
80262
82427
  title: string;
@@ -80264,6 +82429,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
80264
82429
  baseRefName: string;
80265
82430
  headRefName: string;
80266
82431
  isMerged: boolean;
82432
+ latestReviewComment?: {
82433
+ url: string;
82434
+ path: string | null;
82435
+ id: string;
82436
+ createdAt: string | null;
82437
+ updatedAt: string;
82438
+ authorLogin: string | null;
82439
+ body: string;
82440
+ } | null | undefined;
80267
82441
  }>>;
80268
82442
  githubFeaturesEnabled: z.ZodBoolean;
80269
82443
  error: z.ZodNullable<z.ZodObject<{
@@ -80289,6 +82463,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
80289
82463
  baseRefName: string;
80290
82464
  headRefName: string;
80291
82465
  isMerged: boolean;
82466
+ latestReviewComment?: {
82467
+ url: string;
82468
+ path: string | null;
82469
+ id: string;
82470
+ createdAt: string | null;
82471
+ updatedAt: string;
82472
+ authorLogin: string | null;
82473
+ body: string;
82474
+ } | null | undefined;
80292
82475
  } | null;
80293
82476
  requestId: string;
80294
82477
  cwd: string;
@@ -80305,6 +82488,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
80305
82488
  baseRefName: string;
80306
82489
  headRefName: string;
80307
82490
  isMerged: boolean;
82491
+ latestReviewComment?: {
82492
+ url: string;
82493
+ path: string | null;
82494
+ id: string;
82495
+ createdAt: string | null;
82496
+ updatedAt: string;
82497
+ authorLogin: string | null;
82498
+ body: string;
82499
+ } | null | undefined;
80308
82500
  } | null;
80309
82501
  requestId: string;
80310
82502
  cwd: string;
@@ -80324,6 +82516,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
80324
82516
  baseRefName: string;
80325
82517
  headRefName: string;
80326
82518
  isMerged: boolean;
82519
+ latestReviewComment?: {
82520
+ url: string;
82521
+ path: string | null;
82522
+ id: string;
82523
+ createdAt: string | null;
82524
+ updatedAt: string;
82525
+ authorLogin: string | null;
82526
+ body: string;
82527
+ } | null | undefined;
80327
82528
  } | null;
80328
82529
  requestId: string;
80329
82530
  cwd: string;
@@ -80343,6 +82544,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
80343
82544
  baseRefName: string;
80344
82545
  headRefName: string;
80345
82546
  isMerged: boolean;
82547
+ latestReviewComment?: {
82548
+ url: string;
82549
+ path: string | null;
82550
+ id: string;
82551
+ createdAt: string | null;
82552
+ updatedAt: string;
82553
+ authorLogin: string | null;
82554
+ body: string;
82555
+ } | null | undefined;
80346
82556
  } | null;
80347
82557
  requestId: string;
80348
82558
  cwd: string;
@@ -80943,6 +83153,31 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
80943
83153
  baseRefName: z.ZodString;
80944
83154
  headRefName: z.ZodString;
80945
83155
  isMerged: z.ZodBoolean;
83156
+ latestReviewComment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
83157
+ id: z.ZodString;
83158
+ url: z.ZodString;
83159
+ authorLogin: z.ZodNullable<z.ZodString>;
83160
+ body: z.ZodString;
83161
+ path: z.ZodNullable<z.ZodString>;
83162
+ createdAt: z.ZodNullable<z.ZodString>;
83163
+ updatedAt: z.ZodString;
83164
+ }, "strip", z.ZodTypeAny, {
83165
+ url: string;
83166
+ path: string | null;
83167
+ id: string;
83168
+ createdAt: string | null;
83169
+ updatedAt: string;
83170
+ authorLogin: string | null;
83171
+ body: string;
83172
+ }, {
83173
+ url: string;
83174
+ path: string | null;
83175
+ id: string;
83176
+ createdAt: string | null;
83177
+ updatedAt: string;
83178
+ authorLogin: string | null;
83179
+ body: string;
83180
+ }>>>;
80946
83181
  }, "strip", z.ZodTypeAny, {
80947
83182
  url: string;
80948
83183
  title: string;
@@ -80950,6 +83185,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
80950
83185
  baseRefName: string;
80951
83186
  headRefName: string;
80952
83187
  isMerged: boolean;
83188
+ latestReviewComment?: {
83189
+ url: string;
83190
+ path: string | null;
83191
+ id: string;
83192
+ createdAt: string | null;
83193
+ updatedAt: string;
83194
+ authorLogin: string | null;
83195
+ body: string;
83196
+ } | null | undefined;
80953
83197
  }, {
80954
83198
  url: string;
80955
83199
  title: string;
@@ -80957,6 +83201,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
80957
83201
  baseRefName: string;
80958
83202
  headRefName: string;
80959
83203
  isMerged: boolean;
83204
+ latestReviewComment?: {
83205
+ url: string;
83206
+ path: string | null;
83207
+ id: string;
83208
+ createdAt: string | null;
83209
+ updatedAt: string;
83210
+ authorLogin: string | null;
83211
+ body: string;
83212
+ } | null | undefined;
80960
83213
  }>>>;
80961
83214
  error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
80962
83215
  message: z.ZodString;
@@ -80978,6 +83231,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
80978
83231
  baseRefName: string;
80979
83232
  headRefName: string;
80980
83233
  isMerged: boolean;
83234
+ latestReviewComment?: {
83235
+ url: string;
83236
+ path: string | null;
83237
+ id: string;
83238
+ createdAt: string | null;
83239
+ updatedAt: string;
83240
+ authorLogin: string | null;
83241
+ body: string;
83242
+ } | null | undefined;
80981
83243
  } | null | undefined;
80982
83244
  refreshedAt?: string | null | undefined;
80983
83245
  }, {
@@ -80992,6 +83254,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
80992
83254
  baseRefName: string;
80993
83255
  headRefName: string;
80994
83256
  isMerged: boolean;
83257
+ latestReviewComment?: {
83258
+ url: string;
83259
+ path: string | null;
83260
+ id: string;
83261
+ createdAt: string | null;
83262
+ updatedAt: string;
83263
+ authorLogin: string | null;
83264
+ body: string;
83265
+ } | null | undefined;
80995
83266
  } | null | undefined;
80996
83267
  refreshedAt?: string | null | undefined;
80997
83268
  }>>>;
@@ -81033,6 +83304,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
81033
83304
  baseRefName: string;
81034
83305
  headRefName: string;
81035
83306
  isMerged: boolean;
83307
+ latestReviewComment?: {
83308
+ url: string;
83309
+ path: string | null;
83310
+ id: string;
83311
+ createdAt: string | null;
83312
+ updatedAt: string;
83313
+ authorLogin: string | null;
83314
+ body: string;
83315
+ } | null | undefined;
81036
83316
  } | null | undefined;
81037
83317
  refreshedAt?: string | null | undefined;
81038
83318
  } | null | undefined;
@@ -81074,6 +83354,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
81074
83354
  baseRefName: string;
81075
83355
  headRefName: string;
81076
83356
  isMerged: boolean;
83357
+ latestReviewComment?: {
83358
+ url: string;
83359
+ path: string | null;
83360
+ id: string;
83361
+ createdAt: string | null;
83362
+ updatedAt: string;
83363
+ authorLogin: string | null;
83364
+ body: string;
83365
+ } | null | undefined;
81077
83366
  } | null | undefined;
81078
83367
  refreshedAt?: string | null | undefined;
81079
83368
  } | null | undefined;
@@ -81122,6 +83411,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
81122
83411
  baseRefName: string;
81123
83412
  headRefName: string;
81124
83413
  isMerged: boolean;
83414
+ latestReviewComment?: {
83415
+ url: string;
83416
+ path: string | null;
83417
+ id: string;
83418
+ createdAt: string | null;
83419
+ updatedAt: string;
83420
+ authorLogin: string | null;
83421
+ body: string;
83422
+ } | null | undefined;
81125
83423
  } | null | undefined;
81126
83424
  refreshedAt?: string | null | undefined;
81127
83425
  } | null | undefined;
@@ -81168,6 +83466,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
81168
83466
  baseRefName: string;
81169
83467
  headRefName: string;
81170
83468
  isMerged: boolean;
83469
+ latestReviewComment?: {
83470
+ url: string;
83471
+ path: string | null;
83472
+ id: string;
83473
+ createdAt: string | null;
83474
+ updatedAt: string;
83475
+ authorLogin: string | null;
83476
+ body: string;
83477
+ } | null | undefined;
81171
83478
  } | null | undefined;
81172
83479
  refreshedAt?: string | null | undefined;
81173
83480
  } | null | undefined;
@@ -81217,6 +83524,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
81217
83524
  baseRefName: string;
81218
83525
  headRefName: string;
81219
83526
  isMerged: boolean;
83527
+ latestReviewComment?: {
83528
+ url: string;
83529
+ path: string | null;
83530
+ id: string;
83531
+ createdAt: string | null;
83532
+ updatedAt: string;
83533
+ authorLogin: string | null;
83534
+ body: string;
83535
+ } | null | undefined;
81220
83536
  } | null | undefined;
81221
83537
  refreshedAt?: string | null | undefined;
81222
83538
  } | null | undefined;
@@ -81266,6 +83582,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
81266
83582
  baseRefName: string;
81267
83583
  headRefName: string;
81268
83584
  isMerged: boolean;
83585
+ latestReviewComment?: {
83586
+ url: string;
83587
+ path: string | null;
83588
+ id: string;
83589
+ createdAt: string | null;
83590
+ updatedAt: string;
83591
+ authorLogin: string | null;
83592
+ body: string;
83593
+ } | null | undefined;
81269
83594
  } | null | undefined;
81270
83595
  refreshedAt?: string | null | undefined;
81271
83596
  } | null | undefined;
@@ -88614,6 +90939,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
88614
90939
  baseRefName: string;
88615
90940
  headRefName: string;
88616
90941
  isMerged: boolean;
90942
+ latestReviewComment?: {
90943
+ url: string;
90944
+ path: string | null;
90945
+ id: string;
90946
+ createdAt: string | null;
90947
+ updatedAt: string;
90948
+ authorLogin: string | null;
90949
+ body: string;
90950
+ } | null | undefined;
88617
90951
  } | null | undefined;
88618
90952
  refreshedAt?: string | null | undefined;
88619
90953
  } | null | undefined;
@@ -88869,6 +91203,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
88869
91203
  baseRefName: string;
88870
91204
  headRefName: string;
88871
91205
  isMerged: boolean;
91206
+ latestReviewComment?: {
91207
+ url: string;
91208
+ path: string | null;
91209
+ id: string;
91210
+ createdAt: string | null;
91211
+ updatedAt: string;
91212
+ authorLogin: string | null;
91213
+ body: string;
91214
+ } | null | undefined;
88872
91215
  } | null | undefined;
88873
91216
  refreshedAt?: string | null | undefined;
88874
91217
  } | null | undefined;
@@ -88924,6 +91267,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
88924
91267
  baseRefName: string;
88925
91268
  headRefName: string;
88926
91269
  isMerged: boolean;
91270
+ latestReviewComment?: {
91271
+ url: string;
91272
+ path: string | null;
91273
+ id: string;
91274
+ createdAt: string | null;
91275
+ updatedAt: string;
91276
+ authorLogin: string | null;
91277
+ body: string;
91278
+ } | null | undefined;
88927
91279
  } | null | undefined;
88928
91280
  refreshedAt?: string | null | undefined;
88929
91281
  } | null | undefined;
@@ -89575,6 +91927,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
89575
91927
  baseRefName: string;
89576
91928
  headRefName: string;
89577
91929
  isMerged: boolean;
91930
+ latestReviewComment?: {
91931
+ url: string;
91932
+ path: string | null;
91933
+ id: string;
91934
+ createdAt: string | null;
91935
+ updatedAt: string;
91936
+ authorLogin: string | null;
91937
+ body: string;
91938
+ } | null | undefined;
89578
91939
  } | null;
89579
91940
  requestId: string;
89580
91941
  cwd: string;
@@ -89726,6 +92087,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
89726
92087
  baseRefName: string;
89727
92088
  headRefName: string;
89728
92089
  isMerged: boolean;
92090
+ latestReviewComment?: {
92091
+ url: string;
92092
+ path: string | null;
92093
+ id: string;
92094
+ createdAt: string | null;
92095
+ updatedAt: string;
92096
+ authorLogin: string | null;
92097
+ body: string;
92098
+ } | null | undefined;
89729
92099
  } | null | undefined;
89730
92100
  refreshedAt?: string | null | undefined;
89731
92101
  } | null | undefined;
@@ -91004,6 +93374,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
91004
93374
  baseRefName: string;
91005
93375
  headRefName: string;
91006
93376
  isMerged: boolean;
93377
+ latestReviewComment?: {
93378
+ url: string;
93379
+ path: string | null;
93380
+ id: string;
93381
+ createdAt: string | null;
93382
+ updatedAt: string;
93383
+ authorLogin: string | null;
93384
+ body: string;
93385
+ } | null | undefined;
91007
93386
  } | null | undefined;
91008
93387
  refreshedAt?: string | null | undefined;
91009
93388
  } | null | undefined;
@@ -91259,6 +93638,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
91259
93638
  baseRefName: string;
91260
93639
  headRefName: string;
91261
93640
  isMerged: boolean;
93641
+ latestReviewComment?: {
93642
+ url: string;
93643
+ path: string | null;
93644
+ id: string;
93645
+ createdAt: string | null;
93646
+ updatedAt: string;
93647
+ authorLogin: string | null;
93648
+ body: string;
93649
+ } | null | undefined;
91262
93650
  } | null | undefined;
91263
93651
  refreshedAt?: string | null | undefined;
91264
93652
  } | null | undefined;
@@ -91314,6 +93702,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
91314
93702
  baseRefName: string;
91315
93703
  headRefName: string;
91316
93704
  isMerged: boolean;
93705
+ latestReviewComment?: {
93706
+ url: string;
93707
+ path: string | null;
93708
+ id: string;
93709
+ createdAt: string | null;
93710
+ updatedAt: string;
93711
+ authorLogin: string | null;
93712
+ body: string;
93713
+ } | null | undefined;
91317
93714
  } | null | undefined;
91318
93715
  refreshedAt?: string | null | undefined;
91319
93716
  } | null | undefined;
@@ -91965,6 +94362,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
91965
94362
  baseRefName: string;
91966
94363
  headRefName: string;
91967
94364
  isMerged: boolean;
94365
+ latestReviewComment?: {
94366
+ url: string;
94367
+ path: string | null;
94368
+ id: string;
94369
+ createdAt: string | null;
94370
+ updatedAt: string;
94371
+ authorLogin: string | null;
94372
+ body: string;
94373
+ } | null | undefined;
91968
94374
  } | null;
91969
94375
  requestId: string;
91970
94376
  cwd: string;
@@ -92116,6 +94522,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
92116
94522
  baseRefName: string;
92117
94523
  headRefName: string;
92118
94524
  isMerged: boolean;
94525
+ latestReviewComment?: {
94526
+ url: string;
94527
+ path: string | null;
94528
+ id: string;
94529
+ createdAt: string | null;
94530
+ updatedAt: string;
94531
+ authorLogin: string | null;
94532
+ body: string;
94533
+ } | null | undefined;
92119
94534
  } | null | undefined;
92120
94535
  refreshedAt?: string | null | undefined;
92121
94536
  } | null | undefined;