@@ -315,9 +315,25 @@ declare namespace SourcegraphGQL {
315
315
316
316
/**
317
317
* When present, lists only the threads whose target is a repository with this ID.
318
+ *
319
+ * Only one of 'targetRepositoryID', 'targetRepositoryName', or 'targetRepositoryGitCloneURL' may be specified.
318
320
*/
319
321
targetRepositoryID ?: string | null ;
320
322
323
+ /**
324
+ * When present, lists only the threads whose target is a repository with this name.
325
+ *
326
+ * Only one of 'targetRepositoryID', 'targetRepositoryName', or 'targetRepositoryGitCloneURL' may be specified.
327
+ */
328
+ targetRepositoryName ?: string | null ;
329
+
330
+ /**
331
+ * When present, lists only the threads whose target is a repository with this Git clone URL.
332
+ *
333
+ * Only one of 'targetRepositoryID', 'targetRepositoryName', or 'targetRepositoryGitCloneURL' may be specified.
334
+ */
335
+ targetRepositoryGitCloneURL ?: string | null ;
336
+
321
337
/**
322
338
* When present, lists only the threads whose target is a repository with this file path.
323
339
*
@@ -6333,8 +6349,24 @@ declare namespace SourcegraphGQL {
6333
6349
interface IDiscussionThreadTargetRepoInput {
6334
6350
/**
6335
6351
* The repository in which the thread was created.
6352
+ *
6353
+ * One of 'repositoryID', 'repositoryGitCloneURL', or 'repositoryName' must be specified.
6336
6354
*/
6337
- repository : string ;
6355
+ repositoryID ?: string | null ;
6356
+
6357
+ /**
6358
+ * The repository in which the thread was created.
6359
+ *
6360
+ * One of 'repositoryID', 'repositoryGitCloneURL', or 'repositoryName' must be specified.
6361
+ */
6362
+ repositoryName ?: string | null ;
6363
+
6364
+ /**
6365
+ * The repository in which the thread was created.
6366
+ *
6367
+ * One of 'repositoryID', 'repositoryGitCloneURL', or 'repositoryName' must be specified.
6368
+ */
6369
+ repositoryGitCloneURL ?: string | null ;
6338
6370
6339
6371
/**
6340
6372
* The path (relative to the repository root) of the file or directory that
0 commit comments