@linear/sdk 13.0.0 → 14.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_generated_documents.d.ts +1557 -310
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +717 -181
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +2978 -815
- package/dist/index-cjs.js.map +1 -1
- package/dist/index-cjs.min.js +1 -1
- package/dist/index-cjs.min.js.br +0 -0
- package/dist/index-cjs.min.js.gz +0 -0
- package/dist/index-cjs.min.js.map +1 -1
- package/dist/index-es.js +2953 -812
- package/dist/index-es.js.map +1 -1
- package/dist/index-es.min.js +1 -1
- package/dist/index-es.min.js.br +0 -0
- package/dist/index-es.min.js.gz +0 -0
- package/dist/index-es.min.js.map +1 -1
- package/dist/index-umd.js +2979 -816
- package/dist/index-umd.js.map +1 -1
- package/dist/index-umd.min.js +1 -1
- package/dist/index-umd.min.js.br +0 -0
- package/dist/index-umd.min.js.gz +0 -0
- package/dist/index-umd.min.js.map +1 -1
- package/package.json +1 -1
@@ -34,7 +34,7 @@ export declare type ActorBot = {
|
|
34
34
|
__typename?: "ActorBot";
|
35
35
|
/** A url pointing to the avatar representing this bot. */
|
36
36
|
avatarUrl?: Maybe<Scalars["String"]>;
|
37
|
-
id
|
37
|
+
id?: Maybe<Scalars["ID"]>;
|
38
38
|
/** The display name of the bot. */
|
39
39
|
name?: Maybe<Scalars["String"]>;
|
40
40
|
/** The sub type of the bot. */
|
@@ -290,7 +290,7 @@ export declare type AttachmentPayload = {
|
|
290
290
|
};
|
291
291
|
export declare type AttachmentSourcesPayload = {
|
292
292
|
__typename?: "AttachmentSourcesPayload";
|
293
|
-
/** A unique list of all source types used in this workspace */
|
293
|
+
/** A unique list of all source types used in this workspace. */
|
294
294
|
sources: Scalars["JSONObject"];
|
295
295
|
};
|
296
296
|
export declare type AttachmentUpdateInput = {
|
@@ -380,6 +380,8 @@ export declare type AuthApiKeyCreateInput = {
|
|
380
380
|
id?: Maybe<Scalars["String"]>;
|
381
381
|
/** The API key value. */
|
382
382
|
key: Scalars["String"];
|
383
|
+
/** The label for the API key. */
|
384
|
+
label: Scalars["String"];
|
383
385
|
};
|
384
386
|
export declare type AuthApiKeyPayload = {
|
385
387
|
__typename?: "AuthApiKeyPayload";
|
@@ -388,14 +390,6 @@ export declare type AuthApiKeyPayload = {
|
|
388
390
|
/** Whether the operation was successful. */
|
389
391
|
success: Scalars["Boolean"];
|
390
392
|
};
|
391
|
-
export declare type AuthCreateOrJoinOrganizationResponse = {
|
392
|
-
__typename?: "AuthCreateOrJoinOrganizationResponse";
|
393
|
-
authOrganization: AuthOrganization;
|
394
|
-
authUser: AuthUser;
|
395
|
-
grantDomainAccess?: Maybe<Scalars["Boolean"]>;
|
396
|
-
organization: AuthOrganization;
|
397
|
-
user: AuthUser;
|
398
|
-
};
|
399
393
|
export declare type AuthIntegration = {
|
400
394
|
__typename?: "AuthIntegration";
|
401
395
|
/** The unique identifier of the entity. */
|
@@ -497,18 +491,33 @@ export declare type AuthOrganization = {
|
|
497
491
|
name: Scalars["String"];
|
498
492
|
/** Previously used URL keys for the organization (last 3 are kept and redirected). */
|
499
493
|
previousUrlKeys: Array<Scalars["String"]>;
|
494
|
+
/** The feature release channel the organization belongs to. */
|
495
|
+
releaseChannel: ReleaseChannel;
|
500
496
|
/** Whether SAML authentication is enabled for organization. */
|
501
497
|
samlEnabled: Scalars["Boolean"];
|
502
498
|
/** [INTERNAL] SAML settings */
|
503
499
|
samlSettings?: Maybe<Scalars["JSONObject"]>;
|
504
500
|
/** Whether SCIM provisioning is enabled for organization. */
|
505
501
|
scimEnabled: Scalars["Boolean"];
|
502
|
+
/** The email domain or URL key for the organization. */
|
503
|
+
serviceId: Scalars["String"];
|
506
504
|
/** The organization's unique URL key. */
|
507
505
|
urlKey: Scalars["String"];
|
508
506
|
userCount: Scalars["Float"];
|
509
507
|
};
|
510
508
|
export declare type AuthOrganizationDomain = {
|
511
509
|
__typename?: "AuthOrganizationDomain";
|
510
|
+
authType: OrganizationDomainAuthType;
|
511
|
+
claimed?: Maybe<Scalars["Boolean"]>;
|
512
|
+
/** The unique identifier of the entity. */
|
513
|
+
id: Scalars["ID"];
|
514
|
+
name: Scalars["String"];
|
515
|
+
organizationId: Scalars["String"];
|
516
|
+
verified: Scalars["Boolean"];
|
517
|
+
};
|
518
|
+
/** An invitation to the organization that has been sent via email. */
|
519
|
+
export declare type AuthOrganizationInvite = {
|
520
|
+
__typename?: "AuthOrganizationInvite";
|
512
521
|
/** The unique identifier of the entity. */
|
513
522
|
id: Scalars["ID"];
|
514
523
|
};
|
@@ -516,19 +525,22 @@ export declare type AuthResolverResponse = {
|
|
516
525
|
__typename?: "AuthResolverResponse";
|
517
526
|
/** Should the signup flow allow access for the domain. */
|
518
527
|
allowDomainAccess?: Maybe<Scalars["Boolean"]>;
|
519
|
-
/**
|
528
|
+
/** List of organizations allowing this user account to join automatically. */
|
520
529
|
availableOrganizations?: Maybe<Array<AuthOrganization>>;
|
521
530
|
/** Email for the authenticated account. */
|
522
|
-
email
|
531
|
+
email: Scalars["String"];
|
523
532
|
/** User account ID. */
|
524
533
|
id: Scalars["String"];
|
525
534
|
/** ID of the organization last accessed by the user. */
|
526
535
|
lastUsedOrganizationId?: Maybe<Scalars["String"]>;
|
527
|
-
/** List of
|
536
|
+
/** List of organization available to this user account but locked due to the current auth method. */
|
528
537
|
lockedOrganizations?: Maybe<Array<AuthOrganization>>;
|
529
|
-
/**
|
538
|
+
/**
|
539
|
+
* Application token.
|
540
|
+
* @deprecated Deprecated and not used anymore. Never populated.
|
541
|
+
*/
|
530
542
|
token?: Maybe<Scalars["String"]>;
|
531
|
-
/**
|
543
|
+
/** List of active users that belong to the user account. */
|
532
544
|
users: Array<AuthUser>;
|
533
545
|
};
|
534
546
|
export declare type AuthSuccessPayload = {
|
@@ -552,6 +564,8 @@ export declare type AuthUser = {
|
|
552
564
|
name: Scalars["String"];
|
553
565
|
/** Organization the user belongs to. */
|
554
566
|
organization: AuthOrganization;
|
567
|
+
/** User account id the user belongs to. */
|
568
|
+
userAccountId: Scalars["String"];
|
555
569
|
};
|
556
570
|
/** User authentication session. */
|
557
571
|
export declare type AuthenticationSession = {
|
@@ -588,7 +602,7 @@ export declare type AuthenticationSession = {
|
|
588
602
|
/** Session's user-agent. */
|
589
603
|
userAgent?: Maybe<Scalars["String"]>;
|
590
604
|
};
|
591
|
-
/** Authentication session information */
|
605
|
+
/** Authentication session information. */
|
592
606
|
export declare type AuthenticationSessionResponse = {
|
593
607
|
__typename?: "AuthenticationSessionResponse";
|
594
608
|
/** Used web browser. */
|
@@ -676,7 +690,7 @@ export declare type Comment = Node & {
|
|
676
690
|
body: Scalars["String"];
|
677
691
|
/** [Internal] The comment content as a Prosemirror document. */
|
678
692
|
bodyData: Scalars["String"];
|
679
|
-
/** The bot that created the comment */
|
693
|
+
/** The bot that created the comment. */
|
680
694
|
botActor?: Maybe<ActorBot>;
|
681
695
|
/** The children of the comment. */
|
682
696
|
children: CommentConnection;
|
@@ -696,7 +710,9 @@ export declare type Comment = Node & {
|
|
696
710
|
parent?: Maybe<Comment>;
|
697
711
|
/** The project update that the comment is associated with. */
|
698
712
|
projectUpdate?: Maybe<ProjectUpdate>;
|
699
|
-
/**
|
713
|
+
/** The text that this comment references. Only defined for inline comments. */
|
714
|
+
quotedText?: Maybe<Scalars["String"]>;
|
715
|
+
/** Emoji reaction summary, grouped by emoji type. */
|
700
716
|
reactionData: Scalars["JSONObject"];
|
701
717
|
/** The time the resolvingUser resolved the thread. */
|
702
718
|
resolvedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -704,6 +720,8 @@ export declare type Comment = Node & {
|
|
704
720
|
resolvingComment?: Maybe<Comment>;
|
705
721
|
/** The user that resolved the thread. */
|
706
722
|
resolvingUser?: Maybe<User>;
|
723
|
+
/** [Internal] Summary for comment thread. */
|
724
|
+
summaryText?: Maybe<Scalars["String"]>;
|
707
725
|
/**
|
708
726
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
709
727
|
* for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
|
@@ -783,8 +801,10 @@ export declare type CommentCreateInput = {
|
|
783
801
|
issueId?: Maybe<Scalars["String"]>;
|
784
802
|
/** The parent comment under which to nest a current comment. */
|
785
803
|
parentId?: Maybe<Scalars["String"]>;
|
786
|
-
/** The
|
804
|
+
/** The project update to associate the comment with. */
|
787
805
|
projectUpdateId?: Maybe<Scalars["String"]>;
|
806
|
+
/** The text that this comment references. Only defined for inline comments. */
|
807
|
+
quotedText?: Maybe<Scalars["String"]>;
|
788
808
|
};
|
789
809
|
export declare type CommentEdge = {
|
790
810
|
__typename?: "CommentEdge";
|
@@ -829,6 +849,8 @@ export declare type CommentUpdateInput = {
|
|
829
849
|
body?: Maybe<Scalars["String"]>;
|
830
850
|
/** The comment content as a Prosemirror document. */
|
831
851
|
bodyData?: Maybe<Scalars["JSON"]>;
|
852
|
+
/** The text that this comment references. Only defined for inline comments. */
|
853
|
+
quotedText?: Maybe<Scalars["String"]>;
|
832
854
|
/** [INTERNAL] The child comment that resolves this thread. */
|
833
855
|
resolvingCommentId?: Maybe<Scalars["String"]>;
|
834
856
|
/** [INTERNAL] The user who resolved this thread. */
|
@@ -897,7 +919,7 @@ export declare type ContactPayload = {
|
|
897
919
|
/** Whether the operation was successful. */
|
898
920
|
success: Scalars["Boolean"];
|
899
921
|
};
|
900
|
-
/** [INTERNAL] Input for sending a message to the Linear Sales team */
|
922
|
+
/** [INTERNAL] Input for sending a message to the Linear Sales team. */
|
901
923
|
export declare type ContactSalesCreateInput = {
|
902
924
|
/** Size of the company. */
|
903
925
|
companySize?: Maybe<Scalars["String"]>;
|
@@ -968,6 +990,8 @@ export declare type CustomView = Node & {
|
|
968
990
|
icon?: Maybe<Scalars["String"]>;
|
969
991
|
/** The unique identifier of the entity. */
|
970
992
|
id: Scalars["ID"];
|
993
|
+
/** Issues associated with the custom view. */
|
994
|
+
issues: IssueConnection;
|
971
995
|
/** The model name of the custom view. */
|
972
996
|
modelName: Scalars["String"];
|
973
997
|
/** The name of the custom view. */
|
@@ -976,7 +1000,7 @@ export declare type CustomView = Node & {
|
|
976
1000
|
organization: Organization;
|
977
1001
|
/** The user who owns the custom view. */
|
978
1002
|
owner: User;
|
979
|
-
/**
|
1003
|
+
/** The filter applied to projects in the custom view. */
|
980
1004
|
projectFilterData?: Maybe<Scalars["JSONObject"]>;
|
981
1005
|
/** Whether the custom view is shared with everyone in the organization. */
|
982
1006
|
shared: Scalars["Boolean"];
|
@@ -988,9 +1012,19 @@ export declare type CustomView = Node & {
|
|
988
1012
|
* been updated after creation.
|
989
1013
|
*/
|
990
1014
|
updatedAt: Scalars["DateTime"];
|
991
|
-
/**
|
1015
|
+
/** The user who last updated the custom view. */
|
992
1016
|
updatedBy: User;
|
993
1017
|
};
|
1018
|
+
/** A custom view that has been saved by a user. */
|
1019
|
+
export declare type CustomViewIssuesArgs = {
|
1020
|
+
after?: Maybe<Scalars["String"]>;
|
1021
|
+
before?: Maybe<Scalars["String"]>;
|
1022
|
+
filter?: Maybe<IssueFilter>;
|
1023
|
+
first?: Maybe<Scalars["Int"]>;
|
1024
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
1025
|
+
last?: Maybe<Scalars["Int"]>;
|
1026
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
1027
|
+
};
|
994
1028
|
export declare type CustomViewConnection = {
|
995
1029
|
__typename?: "CustomViewConnection";
|
996
1030
|
edges: Array<CustomViewEdge>;
|
@@ -1014,8 +1048,10 @@ export declare type CustomViewCreateInput = {
|
|
1014
1048
|
name: Scalars["String"];
|
1015
1049
|
/** The owner of the custom view. */
|
1016
1050
|
ownerId?: Maybe<Scalars["String"]>;
|
1017
|
-
/**
|
1051
|
+
/** The project filter applied to issues in the custom view. */
|
1018
1052
|
projectFilterData?: Maybe<Scalars["JSONObject"]>;
|
1053
|
+
/** [Internal] The id of the project associated with the custom view. */
|
1054
|
+
projectId?: Maybe<Scalars["String"]>;
|
1019
1055
|
/** Whether the custom view is shared with everyone in the organization. */
|
1020
1056
|
shared?: Maybe<Scalars["Boolean"]>;
|
1021
1057
|
/** The id of the team associated with the custom view. */
|
@@ -1035,7 +1071,7 @@ export declare type CustomViewHasSubscribersPayload = {
|
|
1035
1071
|
/** A custom view notification subscription. */
|
1036
1072
|
export declare type CustomViewNotificationSubscription = Entity & Node & NotificationSubscription & {
|
1037
1073
|
__typename?: "CustomViewNotificationSubscription";
|
1038
|
-
/** Whether the subscription is active or not */
|
1074
|
+
/** Whether the subscription is active or not. */
|
1039
1075
|
active: Scalars["Boolean"];
|
1040
1076
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
1041
1077
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -1103,8 +1139,10 @@ export declare type CustomViewUpdateInput = {
|
|
1103
1139
|
name?: Maybe<Scalars["String"]>;
|
1104
1140
|
/** The owner of the custom view. */
|
1105
1141
|
ownerId?: Maybe<Scalars["String"]>;
|
1106
|
-
/**
|
1142
|
+
/** The project filter applied to issues in the custom view. */
|
1107
1143
|
projectFilterData?: Maybe<Scalars["JSONObject"]>;
|
1144
|
+
/** [Internal] The id of the project associated with the custom view. */
|
1145
|
+
projectId?: Maybe<Scalars["String"]>;
|
1108
1146
|
/** Whether the custom view is shared with everyone in the organization. */
|
1109
1147
|
shared?: Maybe<Scalars["Boolean"]>;
|
1110
1148
|
/** The id of the team associated with the custom view. */
|
@@ -1256,7 +1294,7 @@ export declare type CycleFilter = {
|
|
1256
1294
|
/** A cycle notification subscription. */
|
1257
1295
|
export declare type CycleNotificationSubscription = Entity & Node & NotificationSubscription & {
|
1258
1296
|
__typename?: "CycleNotificationSubscription";
|
1259
|
-
/** Whether the subscription is active or not */
|
1297
|
+
/** Whether the subscription is active or not. */
|
1260
1298
|
active: Scalars["Boolean"];
|
1261
1299
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
1262
1300
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -1300,10 +1338,11 @@ export declare type CyclePayload = {
|
|
1300
1338
|
/** Whether the operation was successful. */
|
1301
1339
|
success: Scalars["Boolean"];
|
1302
1340
|
};
|
1341
|
+
/** [DEPRECATED] Input for shifting all cycles by a certain number of days. Mutation is now deprecated. */
|
1303
1342
|
export declare type CycleShiftAllInput = {
|
1304
|
-
/** The number of days to shift the cycles by. */
|
1343
|
+
/** [DEPRECATED] The number of days to shift the cycles by. */
|
1305
1344
|
daysToShift: Scalars["Float"];
|
1306
|
-
/** The cycle id at which to start the shift. */
|
1345
|
+
/** [DEPRECATED] The cycle id at which to start the shift. */
|
1307
1346
|
id: Scalars["String"];
|
1308
1347
|
};
|
1309
1348
|
export declare type CycleUpdateInput = {
|
@@ -1378,10 +1417,12 @@ export declare type Document = Node & {
|
|
1378
1417
|
/** The documents content in markdown format. */
|
1379
1418
|
content?: Maybe<Scalars["String"]>;
|
1380
1419
|
/**
|
1381
|
-
* The documents content as a Prosemirror document.
|
1420
|
+
* [Internal] The documents content as a Prosemirror document.
|
1382
1421
|
* @deprecated Use content instead.
|
1383
1422
|
*/
|
1384
1423
|
contentData?: Maybe<Scalars["JSON"]>;
|
1424
|
+
/** [Internal] The documents content as YJS state. */
|
1425
|
+
contentState?: Maybe<Scalars["String"]>;
|
1385
1426
|
/** The time at which the entity was created. */
|
1386
1427
|
createdAt: Scalars["DateTime"];
|
1387
1428
|
/** The user who created the document. */
|
@@ -1409,6 +1450,33 @@ export declare type Document = Node & {
|
|
1409
1450
|
/** The user who last updated the document. */
|
1410
1451
|
updatedBy: User;
|
1411
1452
|
};
|
1453
|
+
/** Document filtering options. */
|
1454
|
+
export declare type DocumentCollectionFilter = {
|
1455
|
+
/** Compound filters, all of which need to be matched by the document. */
|
1456
|
+
and?: Maybe<Array<DocumentCollectionFilter>>;
|
1457
|
+
/** Comparator for the created at date. */
|
1458
|
+
createdAt?: Maybe<DateComparator>;
|
1459
|
+
/** Filters that the document's creator must satisfy. */
|
1460
|
+
creator?: Maybe<UserFilter>;
|
1461
|
+
/** Filters that needs to be matched by all documents. */
|
1462
|
+
every?: Maybe<DocumentFilter>;
|
1463
|
+
/** Comparator for the identifier. */
|
1464
|
+
id?: Maybe<IdComparator>;
|
1465
|
+
/** Comparator for the collection length. */
|
1466
|
+
length?: Maybe<NumberComparator>;
|
1467
|
+
/** Compound filters, one of which need to be matched by the document. */
|
1468
|
+
or?: Maybe<Array<DocumentCollectionFilter>>;
|
1469
|
+
/** Filters that the document's project must satisfy. */
|
1470
|
+
project?: Maybe<ProjectFilter>;
|
1471
|
+
/** Comparator for the document slug ID. */
|
1472
|
+
slugId?: Maybe<StringComparator>;
|
1473
|
+
/** Filters that needs to be matched by some documents. */
|
1474
|
+
some?: Maybe<DocumentFilter>;
|
1475
|
+
/** Comparator for the document title. */
|
1476
|
+
title?: Maybe<StringComparator>;
|
1477
|
+
/** Comparator for the updated at date. */
|
1478
|
+
updatedAt?: Maybe<DateComparator>;
|
1479
|
+
};
|
1412
1480
|
export declare type DocumentConnection = {
|
1413
1481
|
__typename?: "DocumentConnection";
|
1414
1482
|
edges: Array<DocumentEdge>;
|
@@ -1422,7 +1490,10 @@ export declare type DocumentContent = Node & {
|
|
1422
1490
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
1423
1491
|
/** The document content in markdown format. */
|
1424
1492
|
content?: Maybe<Scalars["String"]>;
|
1425
|
-
/**
|
1493
|
+
/**
|
1494
|
+
* [Internal] The document content as a Prosemirror document.
|
1495
|
+
* @deprecated Use `contentState` instead
|
1496
|
+
*/
|
1426
1497
|
contentData?: Maybe<Scalars["JSONObject"]>;
|
1427
1498
|
/** The document content state as a base64 encoded string. */
|
1428
1499
|
contentState?: Maybe<Scalars["String"]>;
|
@@ -1438,7 +1509,7 @@ export declare type DocumentContent = Node & {
|
|
1438
1509
|
project?: Maybe<Project>;
|
1439
1510
|
/** The project milestone that the content is associated with. */
|
1440
1511
|
projectMilestone?: Maybe<ProjectMilestone>;
|
1441
|
-
/** The time at which the document content was restored from a previous version */
|
1512
|
+
/** The time at which the document content was restored from a previous version. */
|
1442
1513
|
restoredAt?: Maybe<Scalars["DateTime"]>;
|
1443
1514
|
/**
|
1444
1515
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
@@ -1451,12 +1522,16 @@ export declare type DocumentContent = Node & {
|
|
1451
1522
|
export declare type DocumentContentFilter = {
|
1452
1523
|
/** Comparator for the created at date. */
|
1453
1524
|
createdAt?: Maybe<DateComparator>;
|
1525
|
+
/** Filters that the document content document must satisfy. */
|
1526
|
+
document?: Maybe<DocumentFilter>;
|
1454
1527
|
/** Comparator for the identifier. */
|
1455
1528
|
id?: Maybe<IdComparator>;
|
1529
|
+
/** Filters that the document content project must satisfy. */
|
1530
|
+
project?: Maybe<ProjectFilter>;
|
1456
1531
|
/** Comparator for the updated at date. */
|
1457
1532
|
updatedAt?: Maybe<DateComparator>;
|
1458
1533
|
};
|
1459
|
-
/** A document content history for a document */
|
1534
|
+
/** A document content history for a document. */
|
1460
1535
|
export declare type DocumentContentHistory = Node & {
|
1461
1536
|
__typename?: "DocumentContentHistory";
|
1462
1537
|
/** IDs of actors whose edits went into this history item. */
|
@@ -1465,7 +1540,7 @@ export declare type DocumentContentHistory = Node & {
|
|
1465
1540
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
1466
1541
|
/** [Internal] The document content as a Prosemirror document. */
|
1467
1542
|
contentData?: Maybe<Scalars["JSONObject"]>;
|
1468
|
-
/** The timestamp associated with the DocumentContent when it was originally saved */
|
1543
|
+
/** The timestamp associated with the DocumentContent when it was originally saved. */
|
1469
1544
|
contentDataSnapshotAt: Scalars["DateTime"];
|
1470
1545
|
/** The time at which the entity was created. */
|
1471
1546
|
createdAt: Scalars["DateTime"];
|
@@ -1526,6 +1601,27 @@ export declare type DocumentEdge = {
|
|
1526
1601
|
cursor: Scalars["String"];
|
1527
1602
|
node: Document;
|
1528
1603
|
};
|
1604
|
+
/** Document filtering options. */
|
1605
|
+
export declare type DocumentFilter = {
|
1606
|
+
/** Compound filters, all of which need to be matched by the document. */
|
1607
|
+
and?: Maybe<Array<DocumentFilter>>;
|
1608
|
+
/** Comparator for the created at date. */
|
1609
|
+
createdAt?: Maybe<DateComparator>;
|
1610
|
+
/** Filters that the document's creator must satisfy. */
|
1611
|
+
creator?: Maybe<UserFilter>;
|
1612
|
+
/** Comparator for the identifier. */
|
1613
|
+
id?: Maybe<IdComparator>;
|
1614
|
+
/** Compound filters, one of which need to be matched by the document. */
|
1615
|
+
or?: Maybe<Array<DocumentFilter>>;
|
1616
|
+
/** Filters that the document's project must satisfy. */
|
1617
|
+
project?: Maybe<ProjectFilter>;
|
1618
|
+
/** Comparator for the document slug ID. */
|
1619
|
+
slugId?: Maybe<StringComparator>;
|
1620
|
+
/** Comparator for the document title. */
|
1621
|
+
title?: Maybe<StringComparator>;
|
1622
|
+
/** Comparator for the updated at date. */
|
1623
|
+
updatedAt?: Maybe<DateComparator>;
|
1624
|
+
};
|
1529
1625
|
export declare type DocumentPayload = {
|
1530
1626
|
__typename?: "DocumentPayload";
|
1531
1627
|
/** The document that was created or updated. */
|
@@ -1554,10 +1650,12 @@ export declare type DocumentSearchResult = Node & {
|
|
1554
1650
|
/** The documents content in markdown format. */
|
1555
1651
|
content?: Maybe<Scalars["String"]>;
|
1556
1652
|
/**
|
1557
|
-
* The documents content as a Prosemirror document.
|
1653
|
+
* [Internal] The documents content as a Prosemirror document.
|
1558
1654
|
* @deprecated Use content instead.
|
1559
1655
|
*/
|
1560
1656
|
contentData?: Maybe<Scalars["JSON"]>;
|
1657
|
+
/** [Internal] The documents content as YJS state. */
|
1658
|
+
contentState?: Maybe<Scalars["String"]>;
|
1561
1659
|
/** The time at which the entity was created. */
|
1562
1660
|
createdAt: Scalars["DateTime"];
|
1563
1661
|
/** The user who created the document. */
|
@@ -1568,7 +1666,7 @@ export declare type DocumentSearchResult = Node & {
|
|
1568
1666
|
id: Scalars["ID"];
|
1569
1667
|
/** The last template that was applied to this document. */
|
1570
1668
|
lastAppliedTemplate?: Maybe<Template>;
|
1571
|
-
/** Metadata related to search result */
|
1669
|
+
/** Metadata related to search result. */
|
1572
1670
|
metadata: Scalars["JSONObject"];
|
1573
1671
|
/** The project that the document is associated with. */
|
1574
1672
|
project: Project;
|
@@ -1617,7 +1715,7 @@ export declare type DocumentUpdateInput = {
|
|
1617
1715
|
/** The title of the document. */
|
1618
1716
|
title?: Maybe<Scalars["String"]>;
|
1619
1717
|
};
|
1620
|
-
/** An email address that can be used for submitting issues */
|
1718
|
+
/** An email address that can be used for submitting issues. */
|
1621
1719
|
export declare type EmailIntakeAddress = Node & {
|
1622
1720
|
__typename?: "EmailIntakeAddress";
|
1623
1721
|
/** Unique email address user name (before @) used for incoming email. */
|
@@ -1632,8 +1730,12 @@ export declare type EmailIntakeAddress = Node & {
|
|
1632
1730
|
enabled: Scalars["Boolean"];
|
1633
1731
|
/** The unique identifier of the entity. */
|
1634
1732
|
id: Scalars["ID"];
|
1733
|
+
/** The organization that the email address is associated with. */
|
1734
|
+
organization: Organization;
|
1635
1735
|
/** The team that the email address is associated with. */
|
1636
1736
|
team: Team;
|
1737
|
+
/** The template that the email address is associated with. */
|
1738
|
+
template?: Maybe<Template>;
|
1637
1739
|
/**
|
1638
1740
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
1639
1741
|
* for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
|
@@ -1641,6 +1743,27 @@ export declare type EmailIntakeAddress = Node & {
|
|
1641
1743
|
*/
|
1642
1744
|
updatedAt: Scalars["DateTime"];
|
1643
1745
|
};
|
1746
|
+
export declare type EmailIntakeAddressCreateInput = {
|
1747
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
1748
|
+
id?: Maybe<Scalars["String"]>;
|
1749
|
+
/** The identifier or key of the team this email address will intake issues for. */
|
1750
|
+
teamId?: Maybe<Scalars["String"]>;
|
1751
|
+
/** The identifier of the template this email address will intake issues for. */
|
1752
|
+
templateId?: Maybe<Scalars["String"]>;
|
1753
|
+
};
|
1754
|
+
export declare type EmailIntakeAddressPayload = {
|
1755
|
+
__typename?: "EmailIntakeAddressPayload";
|
1756
|
+
/** The email address that was created or updated. */
|
1757
|
+
emailIntakeAddress: EmailIntakeAddress;
|
1758
|
+
/** The identifier of the last sync operation. */
|
1759
|
+
lastSyncId: Scalars["Float"];
|
1760
|
+
/** Whether the operation was successful. */
|
1761
|
+
success: Scalars["Boolean"];
|
1762
|
+
};
|
1763
|
+
export declare type EmailIntakeAddressUpdateInput = {
|
1764
|
+
/** Whether the email address is currently enabled. If set to false, the email address will be disabled and no longer accept incoming emails. */
|
1765
|
+
enabled: Scalars["Boolean"];
|
1766
|
+
};
|
1644
1767
|
export declare type EmailSubscribeInput = {
|
1645
1768
|
/** [INTERNAL] Email to subscribe. */
|
1646
1769
|
email: Scalars["String"];
|
@@ -1777,7 +1900,7 @@ export declare type EstimateComparator = {
|
|
1777
1900
|
/** Compound filters, all of which need to be matched by the estimate. */
|
1778
1901
|
or?: Maybe<Array<NullableNumberComparator>>;
|
1779
1902
|
};
|
1780
|
-
/**
|
1903
|
+
/** An external authenticated (e.g., through Slack) user which doesn't have a Linear account, but can create and update entities in Linear from the external system that authenticated them. */
|
1781
1904
|
export declare type ExternalUser = Node & {
|
1782
1905
|
__typename?: "ExternalUser";
|
1783
1906
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
@@ -1817,6 +1940,36 @@ export declare type ExternalUserEdge = {
|
|
1817
1940
|
cursor: Scalars["String"];
|
1818
1941
|
node: ExternalUser;
|
1819
1942
|
};
|
1943
|
+
/** [ALPHA] A facet. Facets are joins between entities. A facet can tie a custom view to a project, or a a project to a roadmap for example. */
|
1944
|
+
export declare type Facet = Node & {
|
1945
|
+
__typename?: "Facet";
|
1946
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
1947
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
1948
|
+
/** The time at which the entity was created. */
|
1949
|
+
createdAt: Scalars["DateTime"];
|
1950
|
+
/** The unique identifier of the entity. */
|
1951
|
+
id: Scalars["ID"];
|
1952
|
+
/** The sort order of the facet. */
|
1953
|
+
sortOrder: Scalars["Float"];
|
1954
|
+
/**
|
1955
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
1956
|
+
* for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
|
1957
|
+
* been updated after creation.
|
1958
|
+
*/
|
1959
|
+
updatedAt: Scalars["DateTime"];
|
1960
|
+
};
|
1961
|
+
export declare type FacetConnection = {
|
1962
|
+
__typename?: "FacetConnection";
|
1963
|
+
edges: Array<FacetEdge>;
|
1964
|
+
nodes: Array<Facet>;
|
1965
|
+
pageInfo: PageInfo;
|
1966
|
+
};
|
1967
|
+
export declare type FacetEdge = {
|
1968
|
+
__typename?: "FacetEdge";
|
1969
|
+
/** Used in `before` and `after` args */
|
1970
|
+
cursor: Scalars["String"];
|
1971
|
+
node: Facet;
|
1972
|
+
};
|
1820
1973
|
/** User favorites presented in the sidebar. */
|
1821
1974
|
export declare type Favorite = Node & {
|
1822
1975
|
__typename?: "Favorite";
|
@@ -1891,10 +2044,14 @@ export declare type FavoriteCreateInput = {
|
|
1891
2044
|
cycleId?: Maybe<Scalars["String"]>;
|
1892
2045
|
/** The identifier of the document to favorite. */
|
1893
2046
|
documentId?: Maybe<Scalars["String"]>;
|
2047
|
+
/** [INTERNAL] The identifier of the facet to favorite. */
|
2048
|
+
facetId?: Maybe<Scalars["String"]>;
|
1894
2049
|
/** The name of the favorite folder. */
|
1895
2050
|
folderName?: Maybe<Scalars["String"]>;
|
1896
2051
|
/** The identifier. If none is provided, the backend will generate one. */
|
1897
2052
|
id?: Maybe<Scalars["String"]>;
|
2053
|
+
/** [INTERNAL] The identifier of the initiative to favorite. */
|
2054
|
+
initiativeId?: Maybe<Scalars["String"]>;
|
1898
2055
|
/** The identifier of the issue to favorite. */
|
1899
2056
|
issueId?: Maybe<Scalars["String"]>;
|
1900
2057
|
/** The identifier of the label to favorite. */
|
@@ -1979,8 +2136,11 @@ export declare type GitAutomationState = Node & {
|
|
1979
2136
|
__typename?: "GitAutomationState";
|
1980
2137
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
1981
2138
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
1982
|
-
/**
|
1983
|
-
|
2139
|
+
/**
|
2140
|
+
* [DEPRECATED] The target branch, if null, the automation will be triggered on any branch.
|
2141
|
+
* @deprecated Use targetBranch instead.
|
2142
|
+
*/
|
2143
|
+
branchPattern?: Maybe<Scalars["String"]>;
|
1984
2144
|
/** The time at which the entity was created. */
|
1985
2145
|
createdAt: Scalars["DateTime"];
|
1986
2146
|
/** The event that triggers the automation. */
|
@@ -1989,6 +2149,8 @@ export declare type GitAutomationState = Node & {
|
|
1989
2149
|
id: Scalars["ID"];
|
1990
2150
|
/** The associated workflow state. */
|
1991
2151
|
state?: Maybe<WorkflowState>;
|
2152
|
+
/** The target branch associated to this automation state. */
|
2153
|
+
targetBranch?: Maybe<GitAutomationTargetBranch>;
|
1992
2154
|
/** The team to which this automation state belongs. */
|
1993
2155
|
team: Team;
|
1994
2156
|
/**
|
@@ -2005,7 +2167,7 @@ export declare type GitAutomationStateConnection = {
|
|
2005
2167
|
pageInfo: PageInfo;
|
2006
2168
|
};
|
2007
2169
|
export declare type GitAutomationStateCreateInput = {
|
2008
|
-
/** The target branch pattern. If null, all branches are targeted. */
|
2170
|
+
/** [DEPRECATED] The target branch pattern. If null, all branches are targeted. */
|
2009
2171
|
branchPattern?: Maybe<Scalars["String"]>;
|
2010
2172
|
/** The event that triggers the automation. */
|
2011
2173
|
event: GitAutomationStates;
|
@@ -2013,6 +2175,8 @@ export declare type GitAutomationStateCreateInput = {
|
|
2013
2175
|
id?: Maybe<Scalars["String"]>;
|
2014
2176
|
/** The associated workflow state. If null, will override default behaviour and take no action. */
|
2015
2177
|
stateId?: Maybe<Scalars["String"]>;
|
2178
|
+
/** The associated target branch. If null, all branches are targeted. */
|
2179
|
+
targetBranchId?: Maybe<Scalars["String"]>;
|
2016
2180
|
/** The team associated with the automation state. */
|
2017
2181
|
teamId: Scalars["String"];
|
2018
2182
|
};
|
@@ -2032,12 +2196,14 @@ export declare type GitAutomationStatePayload = {
|
|
2032
2196
|
success: Scalars["Boolean"];
|
2033
2197
|
};
|
2034
2198
|
export declare type GitAutomationStateUpdateInput = {
|
2035
|
-
/** The target branch pattern. If null, all branches are targeted. */
|
2199
|
+
/** [DEPRECATED] The target branch pattern. If null, all branches are targeted. */
|
2036
2200
|
branchPattern?: Maybe<Scalars["String"]>;
|
2037
2201
|
/** The event that triggers the automation. */
|
2038
2202
|
event?: Maybe<GitAutomationStates>;
|
2039
2203
|
/** The associated workflow state. */
|
2040
2204
|
stateId?: Maybe<Scalars["String"]>;
|
2205
|
+
/** The associated target branch. If null, all branches are targeted. */
|
2206
|
+
targetBranchId?: Maybe<Scalars["String"]>;
|
2041
2207
|
};
|
2042
2208
|
/** The various states of a pull/merge request. */
|
2043
2209
|
export declare enum GitAutomationStates {
|
@@ -2047,6 +2213,64 @@ export declare enum GitAutomationStates {
|
|
2047
2213
|
Review = "review",
|
2048
2214
|
Start = "start"
|
2049
2215
|
}
|
2216
|
+
/** A Git target branch for which there are automations (GitAutomationState). */
|
2217
|
+
export declare type GitAutomationTargetBranch = Node & {
|
2218
|
+
__typename?: "GitAutomationTargetBranch";
|
2219
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
2220
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
2221
|
+
/** Automation states associated with the target branch. */
|
2222
|
+
automationStates: GitAutomationStateConnection;
|
2223
|
+
/** The target branch pattern. */
|
2224
|
+
branchPattern: Scalars["String"];
|
2225
|
+
/** The time at which the entity was created. */
|
2226
|
+
createdAt: Scalars["DateTime"];
|
2227
|
+
/** The unique identifier of the entity. */
|
2228
|
+
id: Scalars["ID"];
|
2229
|
+
/** Whether the branch pattern is a regular expression. */
|
2230
|
+
isRegex: Scalars["Boolean"];
|
2231
|
+
/** The team to which this Git target branch automation belongs. */
|
2232
|
+
team: Team;
|
2233
|
+
/**
|
2234
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
2235
|
+
* for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
|
2236
|
+
* been updated after creation.
|
2237
|
+
*/
|
2238
|
+
updatedAt: Scalars["DateTime"];
|
2239
|
+
};
|
2240
|
+
/** A Git target branch for which there are automations (GitAutomationState). */
|
2241
|
+
export declare type GitAutomationTargetBranchAutomationStatesArgs = {
|
2242
|
+
after?: Maybe<Scalars["String"]>;
|
2243
|
+
before?: Maybe<Scalars["String"]>;
|
2244
|
+
first?: Maybe<Scalars["Int"]>;
|
2245
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
2246
|
+
last?: Maybe<Scalars["Int"]>;
|
2247
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
2248
|
+
};
|
2249
|
+
export declare type GitAutomationTargetBranchCreateInput = {
|
2250
|
+
/** The target branch pattern. */
|
2251
|
+
branchPattern: Scalars["String"];
|
2252
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
2253
|
+
id?: Maybe<Scalars["String"]>;
|
2254
|
+
/** Whether the branch pattern is a regular expression. */
|
2255
|
+
isRegex?: Maybe<Scalars["Boolean"]>;
|
2256
|
+
/** The team associated with the Git target branch automation. */
|
2257
|
+
teamId: Scalars["String"];
|
2258
|
+
};
|
2259
|
+
export declare type GitAutomationTargetBranchPayload = {
|
2260
|
+
__typename?: "GitAutomationTargetBranchPayload";
|
2261
|
+
/** The identifier of the last sync operation. */
|
2262
|
+
lastSyncId: Scalars["Float"];
|
2263
|
+
/** Whether the operation was successful. */
|
2264
|
+
success: Scalars["Boolean"];
|
2265
|
+
/** The Git target branch automation that was created or updated. */
|
2266
|
+
targetBranch: GitAutomationTargetBranch;
|
2267
|
+
};
|
2268
|
+
export declare type GitAutomationTargetBranchUpdateInput = {
|
2269
|
+
/** The target branch pattern. */
|
2270
|
+
branchPattern?: Maybe<Scalars["String"]>;
|
2271
|
+
/** Whether the branch pattern is a regular expression. */
|
2272
|
+
isRegex?: Maybe<Scalars["Boolean"]>;
|
2273
|
+
};
|
2050
2274
|
export declare type GitHubCommitIntegrationPayload = {
|
2051
2275
|
__typename?: "GitHubCommitIntegrationPayload";
|
2052
2276
|
/** The integration that was created or updated. */
|
@@ -2061,11 +2285,11 @@ export declare type GitHubCommitIntegrationPayload = {
|
|
2061
2285
|
/** Metadata and settings for a GitHub Personal integration. */
|
2062
2286
|
export declare type GitHubPersonalSettings = {
|
2063
2287
|
__typename?: "GitHubPersonalSettings";
|
2064
|
-
/** The GitHub user's name */
|
2288
|
+
/** The GitHub user's name. */
|
2065
2289
|
login: Scalars["String"];
|
2066
2290
|
};
|
2067
2291
|
export declare type GitHubPersonalSettingsInput = {
|
2068
|
-
/** The GitHub user's name */
|
2292
|
+
/** The GitHub user's name. */
|
2069
2293
|
login: Scalars["String"];
|
2070
2294
|
};
|
2071
2295
|
/** GitHub repos available to sync. */
|
@@ -2085,41 +2309,41 @@ export declare type GitHubRepoInput = {
|
|
2085
2309
|
/** Metadata and settings for a GitHub integration. */
|
2086
2310
|
export declare type GitHubSettings = {
|
2087
2311
|
__typename?: "GitHubSettings";
|
2088
|
-
/** The avatar URL for the GitHub organization */
|
2312
|
+
/** The avatar URL for the GitHub organization. */
|
2089
2313
|
orgAvatarUrl: Scalars["String"];
|
2090
|
-
/** The GitHub organization's name */
|
2314
|
+
/** The GitHub organization's name. */
|
2091
2315
|
orgLogin: Scalars["String"];
|
2092
|
-
/** The names of the repositories connected for the GitHub integration */
|
2316
|
+
/** The names of the repositories connected for the GitHub integration. */
|
2093
2317
|
repositories?: Maybe<Array<GitHubRepo>>;
|
2094
|
-
/** Mapping of team to repository for syncing */
|
2318
|
+
/** Mapping of team to repository for syncing. */
|
2095
2319
|
repositoriesMapping?: Maybe<Array<TeamRepoMapping>>;
|
2096
2320
|
};
|
2097
2321
|
export declare type GitHubSettingsInput = {
|
2098
|
-
/** The avatar URL for the GitHub organization */
|
2322
|
+
/** The avatar URL for the GitHub organization. */
|
2099
2323
|
orgAvatarUrl: Scalars["String"];
|
2100
|
-
/** The GitHub organization's name */
|
2324
|
+
/** The GitHub organization's name. */
|
2101
2325
|
orgLogin: Scalars["String"];
|
2102
|
-
/** The names of the repositories connected for the GitHub integration */
|
2326
|
+
/** The names of the repositories connected for the GitHub integration. */
|
2103
2327
|
repositories?: Maybe<Array<GitHubRepoInput>>;
|
2104
|
-
/** Mapping of team to repository for syncing */
|
2328
|
+
/** Mapping of team to repository for syncing. */
|
2105
2329
|
repositoriesMapping?: Maybe<Array<TeamRepoMappingInput>>;
|
2106
2330
|
};
|
2107
2331
|
/** Metadata and settings for a GitLab integration. */
|
2108
2332
|
export declare type GitLabSettings = {
|
2109
2333
|
__typename?: "GitLabSettings";
|
2110
|
-
/** The ISO timestamp the GitLab access token expires */
|
2334
|
+
/** The ISO timestamp the GitLab access token expires. */
|
2111
2335
|
expiresAt?: Maybe<Scalars["String"]>;
|
2112
|
-
/** Whether the token is limited to a read-only scope */
|
2336
|
+
/** Whether the token is limited to a read-only scope. */
|
2113
2337
|
readonly?: Maybe<Scalars["Boolean"]>;
|
2114
|
-
/** The self-hosted URL of the GitLab instance */
|
2338
|
+
/** The self-hosted URL of the GitLab instance. */
|
2115
2339
|
url?: Maybe<Scalars["String"]>;
|
2116
2340
|
};
|
2117
2341
|
export declare type GitLabSettingsInput = {
|
2118
|
-
/** The ISO timestamp the GitLab access token expires */
|
2342
|
+
/** The ISO timestamp the GitLab access token expires. */
|
2119
2343
|
expiresAt?: Maybe<Scalars["String"]>;
|
2120
|
-
/** Whether the token is limited to a read-only scope */
|
2344
|
+
/** Whether the token is limited to a read-only scope. */
|
2121
2345
|
readonly?: Maybe<Scalars["Boolean"]>;
|
2122
|
-
/** The self-hosted URL of the GitLab instance */
|
2346
|
+
/** The self-hosted URL of the GitLab instance. */
|
2123
2347
|
url?: Maybe<Scalars["String"]>;
|
2124
2348
|
};
|
2125
2349
|
/** GitHub OAuth token, plus information about the organizations the user is a member of. */
|
@@ -2139,8 +2363,6 @@ export declare type GithubOrg = {
|
|
2139
2363
|
isPersonal?: Maybe<Scalars["Boolean"]>;
|
2140
2364
|
/** The login for the GitHub organization. */
|
2141
2365
|
login: Scalars["String"];
|
2142
|
-
/** The name of the GitHub organization. */
|
2143
|
-
name: Scalars["String"];
|
2144
2366
|
/** Repositories that the organization owns. */
|
2145
2367
|
repositories: Array<GithubRepo>;
|
2146
2368
|
};
|
@@ -2169,7 +2391,7 @@ export declare type GoogleSheetsSettingsInput = {
|
|
2169
2391
|
export declare type GoogleUserAccountAuthInput = {
|
2170
2392
|
/** Code returned from Google's OAuth flow. */
|
2171
2393
|
code: Scalars["String"];
|
2172
|
-
/** An optional invite link for an organization. */
|
2394
|
+
/** An optional invite link for an organization used to populate available organizations. */
|
2173
2395
|
inviteLink?: Maybe<Scalars["String"]>;
|
2174
2396
|
/** The URI to redirect the user to. */
|
2175
2397
|
redirectUri?: Maybe<Scalars["String"]>;
|
@@ -2200,6 +2422,220 @@ export declare type ImageUploadFromUrlPayload = {
|
|
2200
2422
|
/** The URL containing the image. */
|
2201
2423
|
url?: Maybe<Scalars["String"]>;
|
2202
2424
|
};
|
2425
|
+
/** [INTERNAL] An initiative to group projects. */
|
2426
|
+
export declare type Initiative = Node & {
|
2427
|
+
__typename?: "Initiative";
|
2428
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
2429
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
2430
|
+
/** The initiative's color. */
|
2431
|
+
color?: Maybe<Scalars["String"]>;
|
2432
|
+
/** The time at which the entity was created. */
|
2433
|
+
createdAt: Scalars["DateTime"];
|
2434
|
+
/** The user who created the initiative. */
|
2435
|
+
creator: User;
|
2436
|
+
/** The description of the initiative. */
|
2437
|
+
description?: Maybe<Scalars["String"]>;
|
2438
|
+
/** The unique identifier of the entity. */
|
2439
|
+
id: Scalars["ID"];
|
2440
|
+
/** The name of the initiative. */
|
2441
|
+
name: Scalars["String"];
|
2442
|
+
/** The organization of the initiative. */
|
2443
|
+
organization: Organization;
|
2444
|
+
/** The user who owns the initiative. */
|
2445
|
+
owner: User;
|
2446
|
+
/** Projects associated with the initiative. */
|
2447
|
+
projects: ProjectConnection;
|
2448
|
+
/** The initiative's unique URL slug. */
|
2449
|
+
slugId: Scalars["String"];
|
2450
|
+
/** The sort order of the initiative within the organization. */
|
2451
|
+
sortOrder: Scalars["Float"];
|
2452
|
+
/** The estimated completion date of the initiative. */
|
2453
|
+
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
2454
|
+
/** [INTERNAL] The resolution of the initiative's estimated completion date. */
|
2455
|
+
targetDateResolution?: Maybe<DateResolutionType>;
|
2456
|
+
/**
|
2457
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
2458
|
+
* for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
|
2459
|
+
* been updated after creation.
|
2460
|
+
*/
|
2461
|
+
updatedAt: Scalars["DateTime"];
|
2462
|
+
};
|
2463
|
+
/** [INTERNAL] An initiative to group projects. */
|
2464
|
+
export declare type InitiativeProjectsArgs = {
|
2465
|
+
after?: Maybe<Scalars["String"]>;
|
2466
|
+
before?: Maybe<Scalars["String"]>;
|
2467
|
+
filter?: Maybe<ProjectFilter>;
|
2468
|
+
first?: Maybe<Scalars["Int"]>;
|
2469
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
2470
|
+
last?: Maybe<Scalars["Int"]>;
|
2471
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
2472
|
+
};
|
2473
|
+
/** A generic payload return from entity archive mutations. */
|
2474
|
+
export declare type InitiativeArchivePayload = ArchivePayload & {
|
2475
|
+
__typename?: "InitiativeArchivePayload";
|
2476
|
+
/** The archived/unarchived entity. Null if entity was deleted. */
|
2477
|
+
entity?: Maybe<Initiative>;
|
2478
|
+
/** The identifier of the last sync operation. */
|
2479
|
+
lastSyncId: Scalars["Float"];
|
2480
|
+
/** Whether the operation was successful. */
|
2481
|
+
success: Scalars["Boolean"];
|
2482
|
+
};
|
2483
|
+
/** Initiative collection filtering options. */
|
2484
|
+
export declare type InitiativeCollectionFilter = {
|
2485
|
+
/** Compound filters, all of which need to be matched by the initiative. */
|
2486
|
+
and?: Maybe<Array<InitiativeCollectionFilter>>;
|
2487
|
+
/** Comparator for the created at date. */
|
2488
|
+
createdAt?: Maybe<DateComparator>;
|
2489
|
+
/** Filters that the initiative creator must satisfy. */
|
2490
|
+
creator?: Maybe<UserFilter>;
|
2491
|
+
/** Filters that needs to be matched by all initiatives. */
|
2492
|
+
every?: Maybe<InitiativeFilter>;
|
2493
|
+
/** Comparator for the identifier. */
|
2494
|
+
id?: Maybe<IdComparator>;
|
2495
|
+
/** Comparator for the collection length. */
|
2496
|
+
length?: Maybe<NumberComparator>;
|
2497
|
+
/** Comparator for the initiative name. */
|
2498
|
+
name?: Maybe<StringComparator>;
|
2499
|
+
/** Compound filters, one of which need to be matched by the initiative. */
|
2500
|
+
or?: Maybe<Array<InitiativeCollectionFilter>>;
|
2501
|
+
/** Comparator for the initiative slug ID. */
|
2502
|
+
slugId?: Maybe<StringComparator>;
|
2503
|
+
/** Filters that needs to be matched by some initiatives. */
|
2504
|
+
some?: Maybe<InitiativeFilter>;
|
2505
|
+
/** Comparator for the updated at date. */
|
2506
|
+
updatedAt?: Maybe<DateComparator>;
|
2507
|
+
};
|
2508
|
+
export declare type InitiativeConnection = {
|
2509
|
+
__typename?: "InitiativeConnection";
|
2510
|
+
edges: Array<InitiativeEdge>;
|
2511
|
+
nodes: Array<Initiative>;
|
2512
|
+
pageInfo: PageInfo;
|
2513
|
+
};
|
2514
|
+
/** [Internal] The properties of the initiative to create. */
|
2515
|
+
export declare type InitiativeCreateInput = {
|
2516
|
+
/** The initiative's color. */
|
2517
|
+
color?: Maybe<Scalars["String"]>;
|
2518
|
+
/** The description of the initiative. */
|
2519
|
+
description?: Maybe<Scalars["String"]>;
|
2520
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
2521
|
+
id?: Maybe<Scalars["String"]>;
|
2522
|
+
/** The name of the initiative. */
|
2523
|
+
name: Scalars["String"];
|
2524
|
+
/** The owner of the initiative. */
|
2525
|
+
ownerId?: Maybe<Scalars["String"]>;
|
2526
|
+
/** The sort order of the initiative within the organization. */
|
2527
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
2528
|
+
};
|
2529
|
+
export declare type InitiativeEdge = {
|
2530
|
+
__typename?: "InitiativeEdge";
|
2531
|
+
/** Used in `before` and `after` args */
|
2532
|
+
cursor: Scalars["String"];
|
2533
|
+
node: Initiative;
|
2534
|
+
};
|
2535
|
+
/** Initiative filtering options. */
|
2536
|
+
export declare type InitiativeFilter = {
|
2537
|
+
/** Compound filters, all of which need to be matched by the initiative. */
|
2538
|
+
and?: Maybe<Array<InitiativeFilter>>;
|
2539
|
+
/** Comparator for the created at date. */
|
2540
|
+
createdAt?: Maybe<DateComparator>;
|
2541
|
+
/** Filters that the initiative creator must satisfy. */
|
2542
|
+
creator?: Maybe<UserFilter>;
|
2543
|
+
/** Comparator for the identifier. */
|
2544
|
+
id?: Maybe<IdComparator>;
|
2545
|
+
/** Comparator for the initiative name. */
|
2546
|
+
name?: Maybe<StringComparator>;
|
2547
|
+
/** Compound filters, one of which need to be matched by the initiative. */
|
2548
|
+
or?: Maybe<Array<InitiativeFilter>>;
|
2549
|
+
/** Comparator for the initiative slug ID. */
|
2550
|
+
slugId?: Maybe<StringComparator>;
|
2551
|
+
/** Comparator for the updated at date. */
|
2552
|
+
updatedAt?: Maybe<DateComparator>;
|
2553
|
+
};
|
2554
|
+
/** [Internal] The payload returned by the initiative mutations. */
|
2555
|
+
export declare type InitiativePayload = {
|
2556
|
+
__typename?: "InitiativePayload";
|
2557
|
+
/** The initiative that was created or updated. */
|
2558
|
+
initiative: Initiative;
|
2559
|
+
/** The identifier of the last sync operation. */
|
2560
|
+
lastSyncId: Scalars["Float"];
|
2561
|
+
/** Whether the operation was successful. */
|
2562
|
+
success: Scalars["Boolean"];
|
2563
|
+
};
|
2564
|
+
/** [INTERNAL] Join table between projects and initiatives. */
|
2565
|
+
export declare type InitiativeToProject = Node & {
|
2566
|
+
__typename?: "InitiativeToProject";
|
2567
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
2568
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
2569
|
+
/** The time at which the entity was created. */
|
2570
|
+
createdAt: Scalars["DateTime"];
|
2571
|
+
/** The unique identifier of the entity. */
|
2572
|
+
id: Scalars["ID"];
|
2573
|
+
/** The initiative that the project is associated with. */
|
2574
|
+
initiative: Initiative;
|
2575
|
+
/** The project that the initiative is associated with. */
|
2576
|
+
project: Project;
|
2577
|
+
/** The sort order of the project within the initiative. */
|
2578
|
+
sortOrder: Scalars["String"];
|
2579
|
+
/**
|
2580
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
2581
|
+
* for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
|
2582
|
+
* been updated after creation.
|
2583
|
+
*/
|
2584
|
+
updatedAt: Scalars["DateTime"];
|
2585
|
+
};
|
2586
|
+
export declare type InitiativeToProjectConnection = {
|
2587
|
+
__typename?: "InitiativeToProjectConnection";
|
2588
|
+
edges: Array<InitiativeToProjectEdge>;
|
2589
|
+
nodes: Array<InitiativeToProject>;
|
2590
|
+
pageInfo: PageInfo;
|
2591
|
+
};
|
2592
|
+
/** [INTERNAL] The properties of the initiativeToProject to create. */
|
2593
|
+
export declare type InitiativeToProjectCreateInput = {
|
2594
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
2595
|
+
id?: Maybe<Scalars["String"]>;
|
2596
|
+
/** The identifier of the initiative. */
|
2597
|
+
initiativeId: Scalars["String"];
|
2598
|
+
/** The identifier of the project. */
|
2599
|
+
projectId: Scalars["String"];
|
2600
|
+
/** The sort order for the project within its organization. */
|
2601
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
2602
|
+
};
|
2603
|
+
export declare type InitiativeToProjectEdge = {
|
2604
|
+
__typename?: "InitiativeToProjectEdge";
|
2605
|
+
/** Used in `before` and `after` args */
|
2606
|
+
cursor: Scalars["String"];
|
2607
|
+
node: InitiativeToProject;
|
2608
|
+
};
|
2609
|
+
/** [INTERNAL] The result of a initiativeToProject mutation. */
|
2610
|
+
export declare type InitiativeToProjectPayload = {
|
2611
|
+
__typename?: "InitiativeToProjectPayload";
|
2612
|
+
/** The initiativeToProject that was created or updated. */
|
2613
|
+
initiativeToProject: InitiativeToProject;
|
2614
|
+
/** The identifier of the last sync operation. */
|
2615
|
+
lastSyncId: Scalars["Float"];
|
2616
|
+
/** Whether the operation was successful. */
|
2617
|
+
success: Scalars["Boolean"];
|
2618
|
+
};
|
2619
|
+
/** [INTERNAL] The properties of the initiativeToProject to update. */
|
2620
|
+
export declare type InitiativeToProjectUpdateInput = {
|
2621
|
+
/** The sort order for the project within its organization. */
|
2622
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
2623
|
+
};
|
2624
|
+
/** [Internal] The properties of the initiative to update. */
|
2625
|
+
export declare type InitiativeUpdateInput = {
|
2626
|
+
/** The initiative's color. */
|
2627
|
+
color?: Maybe<Scalars["String"]>;
|
2628
|
+
/** The description of the initiative. */
|
2629
|
+
description?: Maybe<Scalars["String"]>;
|
2630
|
+
/** The name of the initiative. */
|
2631
|
+
name?: Maybe<Scalars["String"]>;
|
2632
|
+
/** The owner of the initiative. */
|
2633
|
+
ownerId?: Maybe<Scalars["String"]>;
|
2634
|
+
/** The sort order of the initiative within the organization. */
|
2635
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
2636
|
+
/** The estimated completion date of the initiative. */
|
2637
|
+
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
2638
|
+
};
|
2203
2639
|
/** An integration with an external service. */
|
2204
2640
|
export declare type Integration = Node & {
|
2205
2641
|
__typename?: "Integration";
|
@@ -2236,6 +2672,13 @@ export declare type IntegrationEdge = {
|
|
2236
2672
|
cursor: Scalars["String"];
|
2237
2673
|
node: Integration;
|
2238
2674
|
};
|
2675
|
+
export declare type IntegrationHasScopesPayload = {
|
2676
|
+
__typename?: "IntegrationHasScopesPayload";
|
2677
|
+
/** Whether the integration has the required scopes. */
|
2678
|
+
hasAllScopes: Scalars["Boolean"];
|
2679
|
+
/** The missing scopes. */
|
2680
|
+
missingScopes?: Maybe<Array<Scalars["String"]>>;
|
2681
|
+
};
|
2239
2682
|
export declare type IntegrationPayload = {
|
2240
2683
|
__typename?: "IntegrationPayload";
|
2241
2684
|
/** The integration that was created or updated. */
|
@@ -2285,7 +2728,7 @@ export declare enum IntegrationService {
|
|
2285
2728
|
SlackProjectUpdatesPost = "slackProjectUpdatesPost",
|
2286
2729
|
Zendesk = "zendesk"
|
2287
2730
|
}
|
2288
|
-
/** The integration resource's settings */
|
2731
|
+
/** The integration resource's settings. */
|
2289
2732
|
export declare type IntegrationSettings = {
|
2290
2733
|
__typename?: "IntegrationSettings";
|
2291
2734
|
front?: Maybe<FrontSettings>;
|
@@ -2325,7 +2768,7 @@ export declare type IntegrationSettingsInput = {
|
|
2325
2768
|
slackProjectPost?: Maybe<SlackPostSettingsInput>;
|
2326
2769
|
zendesk?: Maybe<ZendeskSettingsInput>;
|
2327
2770
|
};
|
2328
|
-
/** Join table between templates and integrations */
|
2771
|
+
/** Join table between templates and integrations. */
|
2329
2772
|
export declare type IntegrationTemplate = Node & {
|
2330
2773
|
__typename?: "IntegrationTemplate";
|
2331
2774
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
@@ -2395,9 +2838,9 @@ export declare type IntegrationsSettings = Node & {
|
|
2395
2838
|
slackIssueCreated?: Maybe<Scalars["Boolean"]>;
|
2396
2839
|
/** Whether to send a Slack message when a comment is created on any of the project or team's issues. */
|
2397
2840
|
slackIssueNewComment?: Maybe<Scalars["Boolean"]>;
|
2398
|
-
/** Whether to send a Slack message when an SLA is breached */
|
2841
|
+
/** Whether to send a Slack message when an SLA is breached. */
|
2399
2842
|
slackIssueSlaBreached?: Maybe<Scalars["Boolean"]>;
|
2400
|
-
/** Whether to send a Slack message when an SLA is at high risk */
|
2843
|
+
/** Whether to send a Slack message when an SLA is at high risk. */
|
2401
2844
|
slackIssueSlaHighRisk?: Maybe<Scalars["Boolean"]>;
|
2402
2845
|
/** Whether to send a Slack message when any of the project or team's issues has a change in status. */
|
2403
2846
|
slackIssueStatusChangedAll?: Maybe<Scalars["Boolean"]>;
|
@@ -2437,7 +2880,7 @@ export declare type IntegrationsSettingsCreateInput = {
|
|
2437
2880
|
slackIssueNewComment?: Maybe<Scalars["Boolean"]>;
|
2438
2881
|
/** Whether to receive notification when an SLA has breached on Slack. */
|
2439
2882
|
slackIssueSlaBreached?: Maybe<Scalars["Boolean"]>;
|
2440
|
-
/** Whether to send a Slack message when an SLA is at high risk */
|
2883
|
+
/** Whether to send a Slack message when an SLA is at high risk. */
|
2441
2884
|
slackIssueSlaHighRisk?: Maybe<Scalars["Boolean"]>;
|
2442
2885
|
/** Whether to send a Slack message when any of the project or team's issues has a change in status. */
|
2443
2886
|
slackIssueStatusChangedAll?: Maybe<Scalars["Boolean"]>;
|
@@ -2476,7 +2919,7 @@ export declare type IntegrationsSettingsUpdateInput = {
|
|
2476
2919
|
slackIssueNewComment?: Maybe<Scalars["Boolean"]>;
|
2477
2920
|
/** Whether to receive notification when an SLA has breached on Slack. */
|
2478
2921
|
slackIssueSlaBreached?: Maybe<Scalars["Boolean"]>;
|
2479
|
-
/** Whether to send a Slack message when an SLA is at high risk */
|
2922
|
+
/** Whether to send a Slack message when an SLA is at high risk. */
|
2480
2923
|
slackIssueSlaHighRisk?: Maybe<Scalars["Boolean"]>;
|
2481
2924
|
/** Whether to send a Slack message when any of the project or team's issues has a change in status. */
|
2482
2925
|
slackIssueStatusChangedAll?: Maybe<Scalars["Boolean"]>;
|
@@ -2560,11 +3003,13 @@ export declare type Issue = Node & {
|
|
2560
3003
|
* @deprecated Use description instead.
|
2561
3004
|
*/
|
2562
3005
|
descriptionData?: Maybe<Scalars["JSON"]>;
|
3006
|
+
/** [Internal] The issue's description content as YJS state. */
|
3007
|
+
descriptionState?: Maybe<Scalars["String"]>;
|
2563
3008
|
/** The date at which the issue is due. */
|
2564
3009
|
dueDate?: Maybe<Scalars["TimelessDate"]>;
|
2565
3010
|
/** The estimate of the complexity of the issue.. */
|
2566
3011
|
estimate?: Maybe<Scalars["Float"]>;
|
2567
|
-
/**
|
3012
|
+
/** The external user who created the issue. */
|
2568
3013
|
externalUserCreator?: Maybe<ExternalUser>;
|
2569
3014
|
/** The users favorite associated with this issue. */
|
2570
3015
|
favorite?: Maybe<Favorite>;
|
@@ -2858,7 +3303,7 @@ export declare type IssueCreateInput = {
|
|
2858
3303
|
lastAppliedTemplateId?: Maybe<Scalars["String"]>;
|
2859
3304
|
/** The identifier of the parent issue. */
|
2860
3305
|
parentId?: Maybe<Scalars["String"]>;
|
2861
|
-
/** Whether the passed sort order should be preserved */
|
3306
|
+
/** Whether the passed sort order should be preserved. */
|
2862
3307
|
preserveSortOrderOnCreate?: Maybe<Scalars["Boolean"]>;
|
2863
3308
|
/** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
|
2864
3309
|
priority?: Maybe<Scalars["Int"]>;
|
@@ -3053,7 +3498,7 @@ export declare type IssueHistory = Node & {
|
|
3053
3498
|
autoArchived?: Maybe<Scalars["Boolean"]>;
|
3054
3499
|
/** Whether the issue was auto-closed. */
|
3055
3500
|
autoClosed?: Maybe<Scalars["Boolean"]>;
|
3056
|
-
/** The bot that performed the action */
|
3501
|
+
/** The bot that performed the action. */
|
3057
3502
|
botActor?: Maybe<ActorBot>;
|
3058
3503
|
/** [Internal] Serialized JSON representing changes for certain non-relational properties. */
|
3059
3504
|
changes?: Maybe<Scalars["JSONObject"]>;
|
@@ -3067,7 +3512,7 @@ export declare type IssueHistory = Node & {
|
|
3067
3512
|
fromCycle?: Maybe<Cycle>;
|
3068
3513
|
/** The id of previous cycle of the issue. */
|
3069
3514
|
fromCycleId?: Maybe<Scalars["String"]>;
|
3070
|
-
/** What the due date was changed from */
|
3515
|
+
/** What the due date was changed from. */
|
3071
3516
|
fromDueDate?: Maybe<Scalars["TimelessDate"]>;
|
3072
3517
|
/** What the estimate was changed from. */
|
3073
3518
|
fromEstimate?: Maybe<Scalars["Float"]>;
|
@@ -3114,7 +3559,7 @@ export declare type IssueHistory = Node & {
|
|
3114
3559
|
toCycle?: Maybe<Cycle>;
|
3115
3560
|
/** The id of new cycle of the issue. */
|
3116
3561
|
toCycleId?: Maybe<Scalars["String"]>;
|
3117
|
-
/** What the due date was changed to */
|
3562
|
+
/** What the due date was changed to. */
|
3118
3563
|
toDueDate?: Maybe<Scalars["TimelessDate"]>;
|
3119
3564
|
/** What the estimate was changed to. */
|
3120
3565
|
toEstimate?: Maybe<Scalars["Float"]>;
|
@@ -3161,7 +3606,7 @@ export declare type IssueHistoryEdge = {
|
|
3161
3606
|
cursor: Scalars["String"];
|
3162
3607
|
node: IssueHistory;
|
3163
3608
|
};
|
3164
|
-
/** An import job for data from an external service */
|
3609
|
+
/** An import job for data from an external service. */
|
3165
3610
|
export declare type IssueImport = Node & {
|
3166
3611
|
__typename?: "IssueImport";
|
3167
3612
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
@@ -3174,7 +3619,7 @@ export declare type IssueImport = Node & {
|
|
3174
3619
|
csvFileUrl?: Maybe<Scalars["String"]>;
|
3175
3620
|
/** User readable error message, if one has occurred during the import. */
|
3176
3621
|
error?: Maybe<Scalars["String"]>;
|
3177
|
-
/** Error code and metadata, if one has occurred during the import */
|
3622
|
+
/** Error code and metadata, if one has occurred during the import. */
|
3178
3623
|
errorMetadata?: Maybe<Scalars["JSONObject"]>;
|
3179
3624
|
/** The unique identifier of the entity. */
|
3180
3625
|
id: Scalars["ID"];
|
@@ -3186,7 +3631,7 @@ export declare type IssueImport = Node & {
|
|
3186
3631
|
service: Scalars["String"];
|
3187
3632
|
/** The status for the import job. */
|
3188
3633
|
status: Scalars["String"];
|
3189
|
-
/** New team's name in cases when teamId not set */
|
3634
|
+
/** New team's name in cases when teamId not set. */
|
3190
3635
|
teamName?: Maybe<Scalars["String"]>;
|
3191
3636
|
/**
|
3192
3637
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
@@ -3209,13 +3654,13 @@ export declare type IssueImportDeletePayload = {
|
|
3209
3654
|
/** Whether the operation was successful. */
|
3210
3655
|
success: Scalars["Boolean"];
|
3211
3656
|
};
|
3212
|
-
/** Issue import mapping input */
|
3657
|
+
/** Issue import mapping input. */
|
3213
3658
|
export declare type IssueImportMappingInput = {
|
3214
|
-
/** The mapping configuration for epics */
|
3659
|
+
/** The mapping configuration for epics. */
|
3215
3660
|
epics?: Maybe<Scalars["JSONObject"]>;
|
3216
|
-
/** The mapping configuration for users */
|
3661
|
+
/** The mapping configuration for users. */
|
3217
3662
|
users?: Maybe<Scalars["JSONObject"]>;
|
3218
|
-
/** The mapping configuration for workflow states */
|
3663
|
+
/** The mapping configuration for workflow states. */
|
3219
3664
|
workflowStates?: Maybe<Scalars["JSONObject"]>;
|
3220
3665
|
};
|
3221
3666
|
export declare type IssueImportPayload = {
|
@@ -3380,7 +3825,7 @@ export declare type IssueLabelUpdateInput = {
|
|
3380
3825
|
/** The identifier of the parent label. */
|
3381
3826
|
parentId?: Maybe<Scalars["String"]>;
|
3382
3827
|
};
|
3383
|
-
/** An issue related notification */
|
3828
|
+
/** An issue related notification. */
|
3384
3829
|
export declare type IssueNotification = Entity & Node & Notification & {
|
3385
3830
|
__typename?: "IssueNotification";
|
3386
3831
|
/** The user that caused the notification. */
|
@@ -3412,9 +3857,9 @@ export declare type IssueNotification = Entity & Node & Notification & {
|
|
3412
3857
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
3413
3858
|
/** The subscriptions related to the notification. */
|
3414
3859
|
subscriptions?: Maybe<Array<NotificationSubscription>>;
|
3415
|
-
/** The team related to the notification. */
|
3860
|
+
/** The team related to the issue notification. */
|
3416
3861
|
team: Team;
|
3417
|
-
/** Notification type */
|
3862
|
+
/** Notification type. */
|
3418
3863
|
type: Scalars["String"];
|
3419
3864
|
/** The time at which a notification was unsnoozed.. */
|
3420
3865
|
unsnoozedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -3487,7 +3932,7 @@ export declare type IssueRelationEdge = {
|
|
3487
3932
|
cursor: Scalars["String"];
|
3488
3933
|
node: IssueRelation;
|
3489
3934
|
};
|
3490
|
-
/** Issue relation history's payload */
|
3935
|
+
/** Issue relation history's payload. */
|
3491
3936
|
export declare type IssueRelationHistoryPayload = {
|
3492
3937
|
__typename?: "IssueRelationHistoryPayload";
|
3493
3938
|
/** The identifier of the related issue. */
|
@@ -3572,11 +4017,13 @@ export declare type IssueSearchResult = Node & {
|
|
3572
4017
|
* @deprecated Use description instead.
|
3573
4018
|
*/
|
3574
4019
|
descriptionData?: Maybe<Scalars["JSON"]>;
|
4020
|
+
/** [Internal] The issue's description content as YJS state. */
|
4021
|
+
descriptionState?: Maybe<Scalars["String"]>;
|
3575
4022
|
/** The date at which the issue is due. */
|
3576
4023
|
dueDate?: Maybe<Scalars["TimelessDate"]>;
|
3577
4024
|
/** The estimate of the complexity of the issue.. */
|
3578
4025
|
estimate?: Maybe<Scalars["Float"]>;
|
3579
|
-
/**
|
4026
|
+
/** The external user who created the issue. */
|
3580
4027
|
externalUserCreator?: Maybe<ExternalUser>;
|
3581
4028
|
/** The users favorite associated with this issue. */
|
3582
4029
|
favorite?: Maybe<Favorite>;
|
@@ -3596,7 +4043,7 @@ export declare type IssueSearchResult = Node & {
|
|
3596
4043
|
labels: IssueLabelConnection;
|
3597
4044
|
/** The last template that was applied to this issue. */
|
3598
4045
|
lastAppliedTemplate?: Maybe<Template>;
|
3599
|
-
/** Metadata related to search result */
|
4046
|
+
/** Metadata related to search result. */
|
3600
4047
|
metadata: Scalars["JSONObject"];
|
3601
4048
|
/** The issue's unique number. */
|
3602
4049
|
number: Scalars["Float"];
|
@@ -3862,9 +4309,11 @@ export declare type JiraSettingsInput = {
|
|
3862
4309
|
projects: Array<JiraProjectDataInput>;
|
3863
4310
|
};
|
3864
4311
|
export declare type JiraUpdateInput = {
|
3865
|
-
/** The id of the integration to update */
|
4312
|
+
/** The id of the integration to update. */
|
3866
4313
|
id: Scalars["String"];
|
3867
|
-
/** Whether to refresh Jira
|
4314
|
+
/** Whether to refresh Jira metadata for the integration. */
|
4315
|
+
updateMetadata?: Maybe<Scalars["Boolean"]>;
|
4316
|
+
/** Whether to refresh Jira Projects for the integration. */
|
3868
4317
|
updateProjects?: Maybe<Scalars["Boolean"]>;
|
3869
4318
|
};
|
3870
4319
|
export declare type JoinOrganizationInput = {
|
@@ -3876,7 +4325,7 @@ export declare type JoinOrganizationInput = {
|
|
3876
4325
|
/** A label notification subscription. */
|
3877
4326
|
export declare type LabelNotificationSubscription = Entity & Node & NotificationSubscription & {
|
3878
4327
|
__typename?: "LabelNotificationSubscription";
|
3879
|
-
/** Whether the subscription is active or not */
|
4328
|
+
/** Whether the subscription is active or not. */
|
3880
4329
|
active: Scalars["Boolean"];
|
3881
4330
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
3882
4331
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -3918,7 +4367,7 @@ export declare type LogoutResponse = {
|
|
3918
4367
|
};
|
3919
4368
|
export declare type Mutation = {
|
3920
4369
|
__typename?: "Mutation";
|
3921
|
-
/** Creates an integration api key for Airbyte to connect with Linear */
|
4370
|
+
/** Creates an integration api key for Airbyte to connect with Linear. */
|
3922
4371
|
airbyteIntegrationConnect: IntegrationPayload;
|
3923
4372
|
/** Creates a new API key. */
|
3924
4373
|
apiKeyCreate: ApiKeyPayload;
|
@@ -3987,7 +4436,7 @@ export declare type Mutation = {
|
|
3987
4436
|
cycleArchive: CycleArchivePayload;
|
3988
4437
|
/** Creates a new cycle. */
|
3989
4438
|
cycleCreate: CyclePayload;
|
3990
|
-
/** Shifts all cycles starts by a certain number of weeks. */
|
4439
|
+
/** [DEPRECATED] Shifts all cycles starts by a certain number of weeks. */
|
3991
4440
|
cycleShiftAll: CyclePayload;
|
3992
4441
|
/** Updates a cycle. */
|
3993
4442
|
cycleUpdate: CyclePayload;
|
@@ -3997,6 +4446,14 @@ export declare type Mutation = {
|
|
3997
4446
|
documentDelete: DeletePayload;
|
3998
4447
|
/** Updates a document. */
|
3999
4448
|
documentUpdate: DocumentPayload;
|
4449
|
+
/** Creates a new email intake address. */
|
4450
|
+
emailIntakeAddressCreate: EmailIntakeAddressPayload;
|
4451
|
+
/** Deletes an email intake address object. */
|
4452
|
+
emailIntakeAddressDelete: DeletePayload;
|
4453
|
+
/** Rotates an existing email intake address. */
|
4454
|
+
emailIntakeAddressRotate: EmailIntakeAddressPayload;
|
4455
|
+
/** Updates an existing email intake address. */
|
4456
|
+
emailIntakeAddressUpdate: EmailIntakeAddressPayload;
|
4000
4457
|
/** [INTERNAL] Subscribes the email to the newsletter. */
|
4001
4458
|
emailSubscribe: EmailSubscribePayload;
|
4002
4459
|
/** Authenticates a user account via email and authentication token. */
|
@@ -4023,12 +4480,36 @@ export declare type Mutation = {
|
|
4023
4480
|
gitAutomationStateDelete: DeletePayload;
|
4024
4481
|
/** Updates an existing state. */
|
4025
4482
|
gitAutomationStateUpdate: GitAutomationStatePayload;
|
4483
|
+
/** Creates a Git target branch automation. */
|
4484
|
+
gitAutomationTargetBranchCreate: GitAutomationTargetBranchPayload;
|
4485
|
+
/** Archives a Git target branch automation. */
|
4486
|
+
gitAutomationTargetBranchDelete: DeletePayload;
|
4487
|
+
/** Updates an existing Git target branch automation. */
|
4488
|
+
gitAutomationTargetBranchUpdate: GitAutomationTargetBranchPayload;
|
4026
4489
|
/** Authenticate user account through Google OAuth. This is the 2nd step of OAuth flow. */
|
4027
4490
|
googleUserAccountAuth: AuthResolverResponse;
|
4028
4491
|
/** Upload an image from an URL to Linear. */
|
4029
4492
|
imageUploadFromUrl: ImageUploadFromUrlPayload;
|
4030
4493
|
/** XHR request payload to upload a file for import, directly to Linear's cloud storage. */
|
4031
4494
|
importFileUpload: UploadPayload;
|
4495
|
+
/** [Internal] Archives a initiative. */
|
4496
|
+
initiativeArchive: InitiativeArchivePayload;
|
4497
|
+
/** [Internal] Creates a new initiative. */
|
4498
|
+
initiativeCreate: InitiativePayload;
|
4499
|
+
/** [Internal] Deletes a initiative. */
|
4500
|
+
initiativeDelete: DeletePayload;
|
4501
|
+
/** [INTERNAL] Creates a new initiativeToProject join. */
|
4502
|
+
initiativeToProjectCreate: InitiativeToProjectPayload;
|
4503
|
+
/** [INTERNAL] Deletes a initiativeToProject. */
|
4504
|
+
initiativeToProjectDelete: DeletePayload;
|
4505
|
+
/** [INTERNAL] Updates a initiativeToProject. */
|
4506
|
+
initiativeToProjectUpdate: InitiativeToProjectPayload;
|
4507
|
+
/** [Internal] Unarchives a initiative. */
|
4508
|
+
initiativeUnarchive: InitiativeArchivePayload;
|
4509
|
+
/** [Internal] Updates a initiative. */
|
4510
|
+
initiativeUpdate: InitiativePayload;
|
4511
|
+
/** Archives an integration. */
|
4512
|
+
integrationArchive: DeletePayload;
|
4032
4513
|
/** Connect a Slack channel to Asks. */
|
4033
4514
|
integrationAsksConnectChannel: AsksChannelConnectPayload;
|
4034
4515
|
/** Deletes an integration. */
|
@@ -4062,7 +4543,7 @@ export declare type Mutation = {
|
|
4062
4543
|
integrationIntercomSettingsUpdate: IntegrationPayload;
|
4063
4544
|
/** Connect your Jira account to Linear. */
|
4064
4545
|
integrationJiraPersonal: IntegrationPayload;
|
4065
|
-
/** [INTERNAL] Updates a Jira Integration */
|
4546
|
+
/** [INTERNAL] Updates a Jira Integration. */
|
4066
4547
|
integrationJiraUpdate: IntegrationPayload;
|
4067
4548
|
/**
|
4068
4549
|
* Enables Loom integration for the organization.
|
@@ -4081,7 +4562,7 @@ export declare type Mutation = {
|
|
4081
4562
|
integrationSettingsUpdate: IntegrationPayload;
|
4082
4563
|
/** Integrates the organization with Slack. */
|
4083
4564
|
integrationSlack: IntegrationPayload;
|
4084
|
-
/** Integrates the organization with the Slack Asks app */
|
4565
|
+
/** Integrates the organization with the Slack Asks app. */
|
4085
4566
|
integrationSlackAsks: IntegrationPayload;
|
4086
4567
|
/** Imports custom emojis from your Slack workspace. */
|
4087
4568
|
integrationSlackImportEmojis: IntegrationPayload;
|
@@ -4309,6 +4790,14 @@ export declare type Mutation = {
|
|
4309
4790
|
templateDelete: DeletePayload;
|
4310
4791
|
/** Updates an existing template. */
|
4311
4792
|
templateUpdate: TemplatePayload;
|
4793
|
+
/** [ALPHA] Creates a new time schedule. */
|
4794
|
+
timeScheduleCreate: TimeSchedulePayload;
|
4795
|
+
/** [ALPHA] Deletes a time schedule. */
|
4796
|
+
timeScheduleDelete: DeletePayload;
|
4797
|
+
/** [ALPHA] Refresh the integration schedule information. */
|
4798
|
+
timeScheduleRefreshIntegrationSchedule: TimeSchedulePayload;
|
4799
|
+
/** [ALPHA] Updates a time schedule. */
|
4800
|
+
timeScheduleUpdate: TimeSchedulePayload;
|
4312
4801
|
/** Makes user a regular user. Can only be called by an admin. */
|
4313
4802
|
userDemoteAdmin: UserAdminPayload;
|
4314
4803
|
/** Makes user a guest. Can only be called by an admin. */
|
@@ -4379,6 +4868,7 @@ export declare type MutationAttachmentLinkDiscordArgs = {
|
|
4379
4868
|
id?: Maybe<Scalars["String"]>;
|
4380
4869
|
issueId: Scalars["String"];
|
4381
4870
|
messageId: Scalars["String"];
|
4871
|
+
title?: Maybe<Scalars["String"]>;
|
4382
4872
|
url: Scalars["String"];
|
4383
4873
|
};
|
4384
4874
|
export declare type MutationAttachmentLinkFrontArgs = {
|
@@ -4387,12 +4877,14 @@ export declare type MutationAttachmentLinkFrontArgs = {
|
|
4387
4877
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
4388
4878
|
id?: Maybe<Scalars["String"]>;
|
4389
4879
|
issueId: Scalars["String"];
|
4880
|
+
title?: Maybe<Scalars["String"]>;
|
4390
4881
|
};
|
4391
4882
|
export declare type MutationAttachmentLinkGitHubIssueArgs = {
|
4392
4883
|
createAsUser?: Maybe<Scalars["String"]>;
|
4393
4884
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
4394
4885
|
id?: Maybe<Scalars["String"]>;
|
4395
4886
|
issueId: Scalars["String"];
|
4887
|
+
title?: Maybe<Scalars["String"]>;
|
4396
4888
|
url: Scalars["String"];
|
4397
4889
|
};
|
4398
4890
|
export declare type MutationAttachmentLinkGitHubPrArgs = {
|
@@ -4403,6 +4895,7 @@ export declare type MutationAttachmentLinkGitHubPrArgs = {
|
|
4403
4895
|
number?: Maybe<Scalars["Float"]>;
|
4404
4896
|
owner?: Maybe<Scalars["String"]>;
|
4405
4897
|
repo?: Maybe<Scalars["String"]>;
|
4898
|
+
title?: Maybe<Scalars["String"]>;
|
4406
4899
|
url: Scalars["String"];
|
4407
4900
|
};
|
4408
4901
|
export declare type MutationAttachmentLinkGitLabMrArgs = {
|
@@ -4412,6 +4905,7 @@ export declare type MutationAttachmentLinkGitLabMrArgs = {
|
|
4412
4905
|
issueId: Scalars["String"];
|
4413
4906
|
number: Scalars["Float"];
|
4414
4907
|
projectPathWithNamespace: Scalars["String"];
|
4908
|
+
title?: Maybe<Scalars["String"]>;
|
4415
4909
|
url: Scalars["String"];
|
4416
4910
|
};
|
4417
4911
|
export declare type MutationAttachmentLinkIntercomArgs = {
|
@@ -4420,6 +4914,7 @@ export declare type MutationAttachmentLinkIntercomArgs = {
|
|
4420
4914
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
4421
4915
|
id?: Maybe<Scalars["String"]>;
|
4422
4916
|
issueId: Scalars["String"];
|
4917
|
+
title?: Maybe<Scalars["String"]>;
|
4423
4918
|
};
|
4424
4919
|
export declare type MutationAttachmentLinkJiraIssueArgs = {
|
4425
4920
|
issueId: Scalars["String"];
|
@@ -4450,6 +4945,7 @@ export declare type MutationAttachmentLinkZendeskArgs = {
|
|
4450
4945
|
id?: Maybe<Scalars["String"]>;
|
4451
4946
|
issueId: Scalars["String"];
|
4452
4947
|
ticketId: Scalars["String"];
|
4948
|
+
title?: Maybe<Scalars["String"]>;
|
4453
4949
|
};
|
4454
4950
|
export declare type MutationAttachmentUnsyncSlackArgs = {
|
4455
4951
|
id: Scalars["String"];
|
@@ -4525,6 +5021,19 @@ export declare type MutationDocumentUpdateArgs = {
|
|
4525
5021
|
id: Scalars["String"];
|
4526
5022
|
input: DocumentUpdateInput;
|
4527
5023
|
};
|
5024
|
+
export declare type MutationEmailIntakeAddressCreateArgs = {
|
5025
|
+
input: EmailIntakeAddressCreateInput;
|
5026
|
+
};
|
5027
|
+
export declare type MutationEmailIntakeAddressDeleteArgs = {
|
5028
|
+
id: Scalars["String"];
|
5029
|
+
};
|
5030
|
+
export declare type MutationEmailIntakeAddressRotateArgs = {
|
5031
|
+
id: Scalars["String"];
|
5032
|
+
};
|
5033
|
+
export declare type MutationEmailIntakeAddressUpdateArgs = {
|
5034
|
+
id: Scalars["String"];
|
5035
|
+
input: EmailIntakeAddressUpdateInput;
|
5036
|
+
};
|
4528
5037
|
export declare type MutationEmailSubscribeArgs = {
|
4529
5038
|
input: EmailSubscribeInput;
|
4530
5039
|
};
|
@@ -4570,6 +5079,16 @@ export declare type MutationGitAutomationStateUpdateArgs = {
|
|
4570
5079
|
id: Scalars["String"];
|
4571
5080
|
input: GitAutomationStateUpdateInput;
|
4572
5081
|
};
|
5082
|
+
export declare type MutationGitAutomationTargetBranchCreateArgs = {
|
5083
|
+
input: GitAutomationTargetBranchCreateInput;
|
5084
|
+
};
|
5085
|
+
export declare type MutationGitAutomationTargetBranchDeleteArgs = {
|
5086
|
+
id: Scalars["String"];
|
5087
|
+
};
|
5088
|
+
export declare type MutationGitAutomationTargetBranchUpdateArgs = {
|
5089
|
+
id: Scalars["String"];
|
5090
|
+
input: GitAutomationTargetBranchUpdateInput;
|
5091
|
+
};
|
4573
5092
|
export declare type MutationGoogleUserAccountAuthArgs = {
|
4574
5093
|
input: GoogleUserAccountAuthInput;
|
4575
5094
|
};
|
@@ -4582,6 +5101,35 @@ export declare type MutationImportFileUploadArgs = {
|
|
4582
5101
|
metaData?: Maybe<Scalars["JSON"]>;
|
4583
5102
|
size: Scalars["Int"];
|
4584
5103
|
};
|
5104
|
+
export declare type MutationInitiativeArchiveArgs = {
|
5105
|
+
id: Scalars["String"];
|
5106
|
+
};
|
5107
|
+
export declare type MutationInitiativeCreateArgs = {
|
5108
|
+
input: InitiativeCreateInput;
|
5109
|
+
};
|
5110
|
+
export declare type MutationInitiativeDeleteArgs = {
|
5111
|
+
id: Scalars["String"];
|
5112
|
+
};
|
5113
|
+
export declare type MutationInitiativeToProjectCreateArgs = {
|
5114
|
+
input: InitiativeToProjectCreateInput;
|
5115
|
+
};
|
5116
|
+
export declare type MutationInitiativeToProjectDeleteArgs = {
|
5117
|
+
id: Scalars["String"];
|
5118
|
+
};
|
5119
|
+
export declare type MutationInitiativeToProjectUpdateArgs = {
|
5120
|
+
id: Scalars["String"];
|
5121
|
+
input: InitiativeToProjectUpdateInput;
|
5122
|
+
};
|
5123
|
+
export declare type MutationInitiativeUnarchiveArgs = {
|
5124
|
+
id: Scalars["String"];
|
5125
|
+
};
|
5126
|
+
export declare type MutationInitiativeUpdateArgs = {
|
5127
|
+
id: Scalars["String"];
|
5128
|
+
input: InitiativeUpdateInput;
|
5129
|
+
};
|
5130
|
+
export declare type MutationIntegrationArchiveArgs = {
|
5131
|
+
id: Scalars["String"];
|
5132
|
+
};
|
4585
5133
|
export declare type MutationIntegrationAsksConnectChannelArgs = {
|
4586
5134
|
code: Scalars["String"];
|
4587
5135
|
redirectUri: Scalars["String"];
|
@@ -5054,6 +5602,19 @@ export declare type MutationTemplateUpdateArgs = {
|
|
5054
5602
|
id: Scalars["String"];
|
5055
5603
|
input: TemplateUpdateInput;
|
5056
5604
|
};
|
5605
|
+
export declare type MutationTimeScheduleCreateArgs = {
|
5606
|
+
input: TimeScheduleCreateInput;
|
5607
|
+
};
|
5608
|
+
export declare type MutationTimeScheduleDeleteArgs = {
|
5609
|
+
id: Scalars["String"];
|
5610
|
+
};
|
5611
|
+
export declare type MutationTimeScheduleRefreshIntegrationScheduleArgs = {
|
5612
|
+
id: Scalars["String"];
|
5613
|
+
};
|
5614
|
+
export declare type MutationTimeScheduleUpdateArgs = {
|
5615
|
+
id: Scalars["String"];
|
5616
|
+
input: TimeScheduleUpdateInput;
|
5617
|
+
};
|
5057
5618
|
export declare type MutationUserDemoteAdminArgs = {
|
5058
5619
|
id: Scalars["String"];
|
5059
5620
|
};
|
@@ -5154,7 +5715,7 @@ export declare type Notification = {
|
|
5154
5715
|
readAt?: Maybe<Scalars["DateTime"]>;
|
5155
5716
|
/** The time until a notification will be snoozed. After that it will appear in the inbox again. */
|
5156
5717
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
5157
|
-
/** Notification type */
|
5718
|
+
/** Notification type. */
|
5158
5719
|
type: Scalars["String"];
|
5159
5720
|
/** The time at which a notification was unsnoozed.. */
|
5160
5721
|
unsnoozedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -5220,7 +5781,7 @@ export declare type NotificationPayload = {
|
|
5220
5781
|
};
|
5221
5782
|
/** Notification subscriptions for models. */
|
5222
5783
|
export declare type NotificationSubscription = {
|
5223
|
-
/** Whether the subscription is active or not */
|
5784
|
+
/** Whether the subscription is active or not. */
|
5224
5785
|
active: Scalars["Boolean"];
|
5225
5786
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
5226
5787
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -5390,8 +5951,35 @@ export declare type NullableDateComparator = {
|
|
5390
5951
|
export declare type NullableDocumentContentFilter = {
|
5391
5952
|
/** Comparator for the created at date. */
|
5392
5953
|
createdAt?: Maybe<DateComparator>;
|
5954
|
+
/** Filters that the document content document must satisfy. */
|
5955
|
+
document?: Maybe<DocumentFilter>;
|
5393
5956
|
/** Comparator for the identifier. */
|
5394
5957
|
id?: Maybe<IdComparator>;
|
5958
|
+
/** Filters that the document content project must satisfy. */
|
5959
|
+
project?: Maybe<ProjectFilter>;
|
5960
|
+
/** Comparator for the updated at date. */
|
5961
|
+
updatedAt?: Maybe<DateComparator>;
|
5962
|
+
};
|
5963
|
+
/** Document filtering options. */
|
5964
|
+
export declare type NullableDocumentFilter = {
|
5965
|
+
/** Compound filters, all of which need to be matched by the document. */
|
5966
|
+
and?: Maybe<Array<NullableDocumentFilter>>;
|
5967
|
+
/** Comparator for the created at date. */
|
5968
|
+
createdAt?: Maybe<DateComparator>;
|
5969
|
+
/** Filters that the document's creator must satisfy. */
|
5970
|
+
creator?: Maybe<UserFilter>;
|
5971
|
+
/** Comparator for the identifier. */
|
5972
|
+
id?: Maybe<IdComparator>;
|
5973
|
+
/** Filter based on the existence of the relation. */
|
5974
|
+
null?: Maybe<Scalars["Boolean"]>;
|
5975
|
+
/** Compound filters, one of which need to be matched by the document. */
|
5976
|
+
or?: Maybe<Array<NullableDocumentFilter>>;
|
5977
|
+
/** Filters that the document's project must satisfy. */
|
5978
|
+
project?: Maybe<ProjectFilter>;
|
5979
|
+
/** Comparator for the document slug ID. */
|
5980
|
+
slugId?: Maybe<StringComparator>;
|
5981
|
+
/** Comparator for the document title. */
|
5982
|
+
title?: Maybe<StringComparator>;
|
5395
5983
|
/** Comparator for the updated at date. */
|
5396
5984
|
updatedAt?: Maybe<DateComparator>;
|
5397
5985
|
};
|
@@ -5519,6 +6107,8 @@ export declare type NullableProjectFilter = {
|
|
5519
6107
|
health?: Maybe<StringComparator>;
|
5520
6108
|
/** Comparator for the identifier. */
|
5521
6109
|
id?: Maybe<IdComparator>;
|
6110
|
+
/** Filters that the projects initiatives must satisfy. */
|
6111
|
+
initiatives?: Maybe<InitiativeCollectionFilter>;
|
5522
6112
|
/** Filters that the projects issues must satisfy. */
|
5523
6113
|
issues?: Maybe<IssueCollectionFilter>;
|
5524
6114
|
/** Filters that the last applied template must satisfy. */
|
@@ -5535,11 +6125,13 @@ export declare type NullableProjectFilter = {
|
|
5535
6125
|
null?: Maybe<Scalars["Boolean"]>;
|
5536
6126
|
/** Compound filters, one of which need to be matched by the project. */
|
5537
6127
|
or?: Maybe<Array<NullableProjectFilter>>;
|
6128
|
+
/** [Internal] Comparator for the date when the project was last paused. */
|
6129
|
+
pausedAt?: Maybe<NullableDateComparator>;
|
5538
6130
|
/** Filters that the project's milestones must satisfy. */
|
5539
6131
|
projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
|
5540
6132
|
/** Filters that the projects roadmaps must satisfy. */
|
5541
6133
|
roadmaps?: Maybe<RoadmapCollectionFilter>;
|
5542
|
-
/** [Internal] Comparator for the
|
6134
|
+
/** [Internal] Comparator for the project's content. */
|
5543
6135
|
searchableContent?: Maybe<ContentComparator>;
|
5544
6136
|
/** Comparator for the project slug ID. */
|
5545
6137
|
slugId?: Maybe<StringComparator>;
|
@@ -5547,6 +6139,8 @@ export declare type NullableProjectFilter = {
|
|
5547
6139
|
startDate?: Maybe<NullableDateComparator>;
|
5548
6140
|
/** Comparator for the project state. */
|
5549
6141
|
state?: Maybe<StringComparator>;
|
6142
|
+
/** [Internal] Filters that the project's status must satisfy. */
|
6143
|
+
status?: Maybe<ProjectStatusFilter>;
|
5550
6144
|
/** Comparator for the project target date. */
|
5551
6145
|
targetDate?: Maybe<NullableDateComparator>;
|
5552
6146
|
/** Comparator for the updated at date. */
|
@@ -5714,7 +6308,7 @@ export declare type NumberComparator = {
|
|
5714
6308
|
/** Not-in-array constraint. */
|
5715
6309
|
nin?: Maybe<Array<Scalars["Float"]>>;
|
5716
6310
|
};
|
5717
|
-
/** The different requests statuses possible for an OAuth client approval request */
|
6311
|
+
/** The different requests statuses possible for an OAuth client approval request. */
|
5718
6312
|
export declare enum OAuthClientApprovalStatus {
|
5719
6313
|
Approved = "approved",
|
5720
6314
|
Denied = "denied",
|
@@ -5761,7 +6355,7 @@ export declare type OauthClient = Node & {
|
|
5761
6355
|
webhookResourceTypes: Array<Scalars["String"]>;
|
5762
6356
|
/** Webhook secret token for verifying the origin on the recipient side. */
|
5763
6357
|
webhookSecret?: Maybe<Scalars["String"]>;
|
5764
|
-
/** Webhook URL */
|
6358
|
+
/** Webhook URL. */
|
5765
6359
|
webhookUrl?: Maybe<Scalars["String"]>;
|
5766
6360
|
};
|
5767
6361
|
/** Request to install OAuth clients on organizations and the response to the request. */
|
@@ -5794,7 +6388,7 @@ export declare type OauthClientApproval = Node & {
|
|
5794
6388
|
*/
|
5795
6389
|
updatedAt: Scalars["DateTime"];
|
5796
6390
|
};
|
5797
|
-
/** An oauth client approval related notification */
|
6391
|
+
/** An oauth client approval related notification. */
|
5798
6392
|
export declare type OauthClientApprovalNotification = Entity & Node & Notification & {
|
5799
6393
|
__typename?: "OauthClientApprovalNotification";
|
5800
6394
|
/** The user that caused the notification. */
|
@@ -5820,7 +6414,7 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
|
|
5820
6414
|
readAt?: Maybe<Scalars["DateTime"]>;
|
5821
6415
|
/** The time until a notification will be snoozed. After that it will appear in the inbox again. */
|
5822
6416
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
5823
|
-
/** Notification type */
|
6417
|
+
/** Notification type. */
|
5824
6418
|
type: Scalars["String"];
|
5825
6419
|
/** The time at which a notification was unsnoozed.. */
|
5826
6420
|
unsnoozedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -5847,8 +6441,16 @@ export declare type OauthClientEdge = {
|
|
5847
6441
|
};
|
5848
6442
|
export declare type OauthToken = {
|
5849
6443
|
__typename?: "OauthToken";
|
6444
|
+
/** OAuth2 client for which the access token belongs to. */
|
6445
|
+
client: AuthOauthClient;
|
6446
|
+
clientId: Scalars["String"];
|
5850
6447
|
createdAt: Scalars["DateTime"];
|
5851
|
-
id: Scalars["
|
6448
|
+
id: Scalars["Float"];
|
6449
|
+
revokedAt?: Maybe<Scalars["DateTime"]>;
|
6450
|
+
/** Auth user who authorized the OAuth application. */
|
6451
|
+
user: AuthUser;
|
6452
|
+
/** Id of the user who authorized the OAuth application. */
|
6453
|
+
userId: Scalars["String"];
|
5852
6454
|
};
|
5853
6455
|
export declare type OnboardingCustomerSurvey = {
|
5854
6456
|
companyRole?: Maybe<Scalars["String"]>;
|
@@ -5857,9 +6459,9 @@ export declare type OnboardingCustomerSurvey = {
|
|
5857
6459
|
/** An organization. Organizations are root-level objects that contain user accounts and teams. */
|
5858
6460
|
export declare type Organization = Node & {
|
5859
6461
|
__typename?: "Organization";
|
5860
|
-
/** Whether member users are allowed to send invites */
|
6462
|
+
/** Whether member users are allowed to send invites. */
|
5861
6463
|
allowMembersToInvite?: Maybe<Scalars["Boolean"]>;
|
5862
|
-
/** Allowed authentication providers, empty array means all are allowed */
|
6464
|
+
/** Allowed authentication providers, empty array means all are allowed. */
|
5863
6465
|
allowedAuthServices: Array<Scalars["String"]>;
|
5864
6466
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
5865
6467
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -5903,11 +6505,11 @@ export declare type Organization = Node & {
|
|
5903
6505
|
roadmapEnabled: Scalars["Boolean"];
|
5904
6506
|
/** Whether SAML authentication is enabled for organization. */
|
5905
6507
|
samlEnabled: Scalars["Boolean"];
|
5906
|
-
/** [INTERNAL] SAML settings */
|
6508
|
+
/** [INTERNAL] SAML settings. */
|
5907
6509
|
samlSettings?: Maybe<Scalars["JSONObject"]>;
|
5908
6510
|
/** Whether SCIM provisioning is enabled for organization. */
|
5909
6511
|
scimEnabled: Scalars["Boolean"];
|
5910
|
-
/** Which day count to use for SLA calculations */
|
6512
|
+
/** Which day count to use for SLA calculations. */
|
5911
6513
|
slaDayCount: SlaDayCountType;
|
5912
6514
|
/** The organization's subscription to a paid plan. */
|
5913
6515
|
subscription?: Maybe<PaidSubscription>;
|
@@ -5980,7 +6582,7 @@ export declare type OrganizationUsersArgs = {
|
|
5980
6582
|
};
|
5981
6583
|
export declare type OrganizationAcceptedOrExpiredInviteDetailsPayload = {
|
5982
6584
|
__typename?: "OrganizationAcceptedOrExpiredInviteDetailsPayload";
|
5983
|
-
/** The status of the invite */
|
6585
|
+
/** The status of the invite. */
|
5984
6586
|
status: OrganizationInviteStatus;
|
5985
6587
|
};
|
5986
6588
|
export declare type OrganizationCancelDeletePayload = {
|
@@ -5998,7 +6600,7 @@ export declare type OrganizationDomain = Node & {
|
|
5998
6600
|
__typename?: "OrganizationDomain";
|
5999
6601
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
6000
6602
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
6001
|
-
/** What type of auth is the domain used for */
|
6603
|
+
/** What type of auth is the domain used for. */
|
6002
6604
|
authType: OrganizationDomainAuthType;
|
6003
6605
|
/** Whether the domains was claimed by the organization through DNS verification. */
|
6004
6606
|
claimed?: Maybe<Scalars["Boolean"]>;
|
@@ -6008,7 +6610,7 @@ export declare type OrganizationDomain = Node & {
|
|
6008
6610
|
creator?: Maybe<User>;
|
6009
6611
|
/** The unique identifier of the entity. */
|
6010
6612
|
id: Scalars["ID"];
|
6011
|
-
/** Domain name */
|
6613
|
+
/** Domain name. */
|
6012
6614
|
name: Scalars["String"];
|
6013
6615
|
/**
|
6014
6616
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
@@ -6016,9 +6618,9 @@ export declare type OrganizationDomain = Node & {
|
|
6016
6618
|
* been updated after creation.
|
6017
6619
|
*/
|
6018
6620
|
updatedAt: Scalars["DateTime"];
|
6019
|
-
/** E-mail used to verify this domain */
|
6621
|
+
/** E-mail used to verify this domain. */
|
6020
6622
|
verificationEmail?: Maybe<Scalars["String"]>;
|
6021
|
-
/** Is this domain verified */
|
6623
|
+
/** Is this domain verified. */
|
6022
6624
|
verified: Scalars["Boolean"];
|
6023
6625
|
};
|
6024
6626
|
/** What type of auth is the domain used for. */
|
@@ -6074,7 +6676,7 @@ export declare type OrganizationExistsPayload = {
|
|
6074
6676
|
/** An invitation to the organization that has been sent via email. */
|
6075
6677
|
export declare type OrganizationInvite = Node & {
|
6076
6678
|
__typename?: "OrganizationInvite";
|
6077
|
-
/** The time at which the invite was accepted. Null, if the invite hasn't been accepted */
|
6679
|
+
/** The time at which the invite was accepted. Null, if the invite hasn't been accepted. */
|
6078
6680
|
acceptedAt?: Maybe<Scalars["DateTime"]>;
|
6079
6681
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
6080
6682
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -6082,7 +6684,7 @@ export declare type OrganizationInvite = Node & {
|
|
6082
6684
|
createdAt: Scalars["DateTime"];
|
6083
6685
|
/** The invitees email address. */
|
6084
6686
|
email: Scalars["String"];
|
6085
|
-
/** The time at which the invite will be expiring. Null, if the invite shouldn't expire */
|
6687
|
+
/** The time at which the invite will be expiring. Null, if the invite shouldn't expire. */
|
6086
6688
|
expiresAt?: Maybe<Scalars["DateTime"]>;
|
6087
6689
|
/** The invite was sent to external address. */
|
6088
6690
|
external: Scalars["Boolean"];
|
@@ -6118,7 +6720,7 @@ export declare type OrganizationInviteCreateInput = {
|
|
6118
6720
|
id?: Maybe<Scalars["String"]>;
|
6119
6721
|
/** The message to send to the invitee. */
|
6120
6722
|
message?: Maybe<Scalars["String"]>;
|
6121
|
-
/** [INTERNAL] Optional metadata about the invite */
|
6723
|
+
/** [INTERNAL] Optional metadata about the invite. */
|
6122
6724
|
metadata?: Maybe<Scalars["JSONObject"]>;
|
6123
6725
|
/** What user role the invite should grant. */
|
6124
6726
|
role?: Maybe<UserRoleType>;
|
@@ -6138,11 +6740,11 @@ export declare type OrganizationInviteFullDetailsPayload = {
|
|
6138
6740
|
accepted: Scalars["Boolean"];
|
6139
6741
|
/** When the invite was created. */
|
6140
6742
|
createdAt: Scalars["DateTime"];
|
6141
|
-
/** The email of the invitee */
|
6743
|
+
/** The email of the invitee. */
|
6142
6744
|
email: Scalars["String"];
|
6143
6745
|
/** Whether the invite has expired. */
|
6144
6746
|
expired: Scalars["Boolean"];
|
6145
|
-
/** The name of the inviter */
|
6747
|
+
/** The name of the inviter. */
|
6146
6748
|
inviter: Scalars["String"];
|
6147
6749
|
/** ID of the workspace the invite is for. */
|
6148
6750
|
organizationId: Scalars["String"];
|
@@ -6152,7 +6754,7 @@ export declare type OrganizationInviteFullDetailsPayload = {
|
|
6152
6754
|
organizationName: Scalars["String"];
|
6153
6755
|
/** What user role the invite should grant. */
|
6154
6756
|
role: UserRoleType;
|
6155
|
-
/** The status of the invite */
|
6757
|
+
/** The status of the invite. */
|
6156
6758
|
status: OrganizationInviteStatus;
|
6157
6759
|
};
|
6158
6760
|
export declare type OrganizationInvitePayload = {
|
@@ -6201,7 +6803,7 @@ export declare type OrganizationUpdateInput = {
|
|
6201
6803
|
gitLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
|
6202
6804
|
/** Whether the Git integration linkback messages should be sent for public repositories. */
|
6203
6805
|
gitPublicLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
|
6204
|
-
/** Linear Preview feature flags */
|
6806
|
+
/** Linear Preview feature flags. */
|
6205
6807
|
linearPreviewFlags?: Maybe<Scalars["JSONObject"]>;
|
6206
6808
|
/** The logo of the organization. */
|
6207
6809
|
logoUrl?: Maybe<Scalars["String"]>;
|
@@ -6325,6 +6927,8 @@ export declare type Project = Node & {
|
|
6325
6927
|
completedScopeHistory: Array<Scalars["Float"]>;
|
6326
6928
|
/** The project's content in markdown format. */
|
6327
6929
|
content?: Maybe<Scalars["String"]>;
|
6930
|
+
/** [Internal] The project's content as YJS state. */
|
6931
|
+
contentState?: Maybe<Scalars["String"]>;
|
6328
6932
|
/** The project was created based on this issue. */
|
6329
6933
|
convertedFromIssue?: Maybe<Issue>;
|
6330
6934
|
/** The time at which the entity was created. */
|
@@ -6357,6 +6961,8 @@ export declare type Project = Node & {
|
|
6357
6961
|
members: UserConnection;
|
6358
6962
|
/** The project's name. */
|
6359
6963
|
name: Scalars["String"];
|
6964
|
+
/** [INTERNAL] The latest time at which the project was paused. */
|
6965
|
+
pausedAt?: Maybe<Scalars["DateTime"]>;
|
6360
6966
|
/** The overall progress of the project. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points. */
|
6361
6967
|
progress: Scalars["Float"];
|
6362
6968
|
/** Milestones associated with the project. */
|
@@ -6387,6 +6993,8 @@ export declare type Project = Node & {
|
|
6387
6993
|
startedAt?: Maybe<Scalars["DateTime"]>;
|
6388
6994
|
/** The type of the state. */
|
6389
6995
|
state: Scalars["String"];
|
6996
|
+
/** [Internal] The status that the project is associated with. */
|
6997
|
+
status: ProjectStatus;
|
6390
6998
|
/** The estimated completion date of the project. */
|
6391
6999
|
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
6392
7000
|
/** [INTERNAL] The resolution of the project's estimated completion date. */
|
@@ -6408,6 +7016,7 @@ export declare type Project = Node & {
|
|
6408
7016
|
export declare type ProjectDocumentsArgs = {
|
6409
7017
|
after?: Maybe<Scalars["String"]>;
|
6410
7018
|
before?: Maybe<Scalars["String"]>;
|
7019
|
+
filter?: Maybe<DocumentFilter>;
|
6411
7020
|
first?: Maybe<Scalars["Int"]>;
|
6412
7021
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
6413
7022
|
last?: Maybe<Scalars["Int"]>;
|
@@ -6447,6 +7056,7 @@ export declare type ProjectMembersArgs = {
|
|
6447
7056
|
export declare type ProjectProjectMilestonesArgs = {
|
6448
7057
|
after?: Maybe<Scalars["String"]>;
|
6449
7058
|
before?: Maybe<Scalars["String"]>;
|
7059
|
+
filter?: Maybe<ProjectMilestoneFilter>;
|
6450
7060
|
first?: Maybe<Scalars["Int"]>;
|
6451
7061
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
6452
7062
|
last?: Maybe<Scalars["Int"]>;
|
@@ -6501,6 +7111,8 @@ export declare type ProjectCollectionFilter = {
|
|
6501
7111
|
health?: Maybe<StringComparator>;
|
6502
7112
|
/** Comparator for the identifier. */
|
6503
7113
|
id?: Maybe<IdComparator>;
|
7114
|
+
/** Filters that the projects initiatives must satisfy. */
|
7115
|
+
initiatives?: Maybe<InitiativeCollectionFilter>;
|
6504
7116
|
/** Filters that the projects issues must satisfy. */
|
6505
7117
|
issues?: Maybe<IssueCollectionFilter>;
|
6506
7118
|
/** Filters that the last applied template must satisfy. */
|
@@ -6517,11 +7129,13 @@ export declare type ProjectCollectionFilter = {
|
|
6517
7129
|
nextProjectMilestone?: Maybe<ProjectMilestoneFilter>;
|
6518
7130
|
/** Compound filters, one of which need to be matched by the project. */
|
6519
7131
|
or?: Maybe<Array<ProjectCollectionFilter>>;
|
7132
|
+
/** [Internal] Comparator for the date when the project was last paused. */
|
7133
|
+
pausedAt?: Maybe<NullableDateComparator>;
|
6520
7134
|
/** Filters that the project's milestones must satisfy. */
|
6521
7135
|
projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
|
6522
7136
|
/** Filters that the projects roadmaps must satisfy. */
|
6523
7137
|
roadmaps?: Maybe<RoadmapCollectionFilter>;
|
6524
|
-
/** [Internal] Comparator for the
|
7138
|
+
/** [Internal] Comparator for the project's content. */
|
6525
7139
|
searchableContent?: Maybe<ContentComparator>;
|
6526
7140
|
/** Comparator for the project slug ID. */
|
6527
7141
|
slugId?: Maybe<StringComparator>;
|
@@ -6531,6 +7145,8 @@ export declare type ProjectCollectionFilter = {
|
|
6531
7145
|
startDate?: Maybe<NullableDateComparator>;
|
6532
7146
|
/** Comparator for the project state. */
|
6533
7147
|
state?: Maybe<StringComparator>;
|
7148
|
+
/** [Internal] Filters that the project's status must satisfy. */
|
7149
|
+
status?: Maybe<ProjectStatusFilter>;
|
6534
7150
|
/** Comparator for the project target date. */
|
6535
7151
|
targetDate?: Maybe<NullableDateComparator>;
|
6536
7152
|
/** Comparator for the updated at date. */
|
@@ -6569,6 +7185,8 @@ export declare type ProjectCreateInput = {
|
|
6569
7185
|
startDateResolution?: Maybe<DateResolutionType>;
|
6570
7186
|
/** The state of the project. */
|
6571
7187
|
state?: Maybe<Scalars["String"]>;
|
7188
|
+
/** [INTERNAL] The ID of the project status. */
|
7189
|
+
statusId?: Maybe<Scalars["String"]>;
|
6572
7190
|
/** The planned target date of the project. */
|
6573
7191
|
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
6574
7192
|
/** [INTERNAL] The resolution of the project's estimated completion date. */
|
@@ -6600,6 +7218,8 @@ export declare type ProjectFilter = {
|
|
6600
7218
|
health?: Maybe<StringComparator>;
|
6601
7219
|
/** Comparator for the identifier. */
|
6602
7220
|
id?: Maybe<IdComparator>;
|
7221
|
+
/** Filters that the projects initiatives must satisfy. */
|
7222
|
+
initiatives?: Maybe<InitiativeCollectionFilter>;
|
6603
7223
|
/** Filters that the projects issues must satisfy. */
|
6604
7224
|
issues?: Maybe<IssueCollectionFilter>;
|
6605
7225
|
/** Filters that the last applied template must satisfy. */
|
@@ -6614,11 +7234,13 @@ export declare type ProjectFilter = {
|
|
6614
7234
|
nextProjectMilestone?: Maybe<ProjectMilestoneFilter>;
|
6615
7235
|
/** Compound filters, one of which need to be matched by the project. */
|
6616
7236
|
or?: Maybe<Array<ProjectFilter>>;
|
7237
|
+
/** [Internal] Comparator for the date when the project was last paused. */
|
7238
|
+
pausedAt?: Maybe<NullableDateComparator>;
|
6617
7239
|
/** Filters that the project's milestones must satisfy. */
|
6618
7240
|
projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
|
6619
7241
|
/** Filters that the projects roadmaps must satisfy. */
|
6620
7242
|
roadmaps?: Maybe<RoadmapCollectionFilter>;
|
6621
|
-
/** [Internal] Comparator for the
|
7243
|
+
/** [Internal] Comparator for the project's content. */
|
6622
7244
|
searchableContent?: Maybe<ContentComparator>;
|
6623
7245
|
/** Comparator for the project slug ID. */
|
6624
7246
|
slugId?: Maybe<StringComparator>;
|
@@ -6626,6 +7248,8 @@ export declare type ProjectFilter = {
|
|
6626
7248
|
startDate?: Maybe<NullableDateComparator>;
|
6627
7249
|
/** Comparator for the project state. */
|
6628
7250
|
state?: Maybe<StringComparator>;
|
7251
|
+
/** [Internal] Filters that the project's status must satisfy. */
|
7252
|
+
status?: Maybe<ProjectStatusFilter>;
|
6629
7253
|
/** Comparator for the project target date. */
|
6630
7254
|
targetDate?: Maybe<NullableDateComparator>;
|
6631
7255
|
/** Comparator for the updated at date. */
|
@@ -6712,10 +7336,17 @@ export declare type ProjectMilestone = Node & {
|
|
6712
7336
|
createdAt: Scalars["DateTime"];
|
6713
7337
|
/** The project milestone's description in markdown format. */
|
6714
7338
|
description?: Maybe<Scalars["String"]>;
|
6715
|
-
/**
|
7339
|
+
/**
|
7340
|
+
* [Internal] The project milestone's description as a Prosemirror document.
|
7341
|
+
* @deprecated Use `descriptionState` instead.
|
7342
|
+
*/
|
6716
7343
|
descriptionData?: Maybe<Scalars["JSON"]>;
|
7344
|
+
/** [Internal] The project milestone's description as YJS state. */
|
7345
|
+
descriptionState?: Maybe<Scalars["String"]>;
|
6717
7346
|
/** The unique identifier of the entity. */
|
6718
7347
|
id: Scalars["ID"];
|
7348
|
+
/** Issues associated with the project milestone. */
|
7349
|
+
issues: IssueConnection;
|
6719
7350
|
/** The name of the project milestone. */
|
6720
7351
|
name: Scalars["String"];
|
6721
7352
|
/** The project of the milestone. */
|
@@ -6731,6 +7362,16 @@ export declare type ProjectMilestone = Node & {
|
|
6731
7362
|
*/
|
6732
7363
|
updatedAt: Scalars["DateTime"];
|
6733
7364
|
};
|
7365
|
+
/** A milestone for a project. */
|
7366
|
+
export declare type ProjectMilestoneIssuesArgs = {
|
7367
|
+
after?: Maybe<Scalars["String"]>;
|
7368
|
+
before?: Maybe<Scalars["String"]>;
|
7369
|
+
filter?: Maybe<IssueFilter>;
|
7370
|
+
first?: Maybe<Scalars["Int"]>;
|
7371
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
7372
|
+
last?: Maybe<Scalars["Int"]>;
|
7373
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
7374
|
+
};
|
6734
7375
|
/** Milestone collection filtering options. */
|
6735
7376
|
export declare type ProjectMilestoneCollectionFilter = {
|
6736
7377
|
/** Compound filters, all of which need to be matched by the milestone. */
|
@@ -6820,7 +7461,7 @@ export declare type ProjectMilestoneUpdateInput = {
|
|
6820
7461
|
/** The planned target date of the project milestone. */
|
6821
7462
|
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
6822
7463
|
};
|
6823
|
-
/** A project related notification */
|
7464
|
+
/** A project related notification. */
|
6824
7465
|
export declare type ProjectNotification = Entity & Node & Notification & {
|
6825
7466
|
__typename?: "ProjectNotification";
|
6826
7467
|
/** The user that caused the notification. */
|
@@ -6848,7 +7489,7 @@ export declare type ProjectNotification = Entity & Node & Notification & {
|
|
6848
7489
|
readAt?: Maybe<Scalars["DateTime"]>;
|
6849
7490
|
/** The time until a notification will be snoozed. After that it will appear in the inbox again. */
|
6850
7491
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
6851
|
-
/** Notification type */
|
7492
|
+
/** Notification type. */
|
6852
7493
|
type: Scalars["String"];
|
6853
7494
|
/** The time at which a notification was unsnoozed.. */
|
6854
7495
|
unsnoozedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -6864,7 +7505,7 @@ export declare type ProjectNotification = Entity & Node & Notification & {
|
|
6864
7505
|
/** A project notification subscription. */
|
6865
7506
|
export declare type ProjectNotificationSubscription = Entity & Node & NotificationSubscription & {
|
6866
7507
|
__typename?: "ProjectNotificationSubscription";
|
6867
|
-
/** Whether the subscription is active or not */
|
7508
|
+
/** Whether the subscription is active or not. */
|
6868
7509
|
active: Scalars["Boolean"];
|
6869
7510
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
6870
7511
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -6936,6 +7577,8 @@ export declare type ProjectSearchResult = Node & {
|
|
6936
7577
|
completedScopeHistory: Array<Scalars["Float"]>;
|
6937
7578
|
/** The project's content in markdown format. */
|
6938
7579
|
content?: Maybe<Scalars["String"]>;
|
7580
|
+
/** [Internal] The project's content as YJS state. */
|
7581
|
+
contentState?: Maybe<Scalars["String"]>;
|
6939
7582
|
/** The project was created based on this issue. */
|
6940
7583
|
convertedFromIssue?: Maybe<Issue>;
|
6941
7584
|
/** The time at which the entity was created. */
|
@@ -6966,10 +7609,12 @@ export declare type ProjectSearchResult = Node & {
|
|
6966
7609
|
links: ProjectLinkConnection;
|
6967
7610
|
/** Users that are members of the project. */
|
6968
7611
|
members: UserConnection;
|
6969
|
-
/** Metadata related to search result */
|
7612
|
+
/** Metadata related to search result. */
|
6970
7613
|
metadata: Scalars["JSONObject"];
|
6971
7614
|
/** The project's name. */
|
6972
7615
|
name: Scalars["String"];
|
7616
|
+
/** [INTERNAL] The latest time at which the project was paused. */
|
7617
|
+
pausedAt?: Maybe<Scalars["DateTime"]>;
|
6973
7618
|
/** The overall progress of the project. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points. */
|
6974
7619
|
progress: Scalars["Float"];
|
6975
7620
|
/** Milestones associated with the project. */
|
@@ -7000,6 +7645,8 @@ export declare type ProjectSearchResult = Node & {
|
|
7000
7645
|
startedAt?: Maybe<Scalars["DateTime"]>;
|
7001
7646
|
/** The type of the state. */
|
7002
7647
|
state: Scalars["String"];
|
7648
|
+
/** [Internal] The status that the project is associated with. */
|
7649
|
+
status: ProjectStatus;
|
7003
7650
|
/** The estimated completion date of the project. */
|
7004
7651
|
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
7005
7652
|
/** [INTERNAL] The resolution of the project's estimated completion date. */
|
@@ -7020,6 +7667,7 @@ export declare type ProjectSearchResult = Node & {
|
|
7020
7667
|
export declare type ProjectSearchResultDocumentsArgs = {
|
7021
7668
|
after?: Maybe<Scalars["String"]>;
|
7022
7669
|
before?: Maybe<Scalars["String"]>;
|
7670
|
+
filter?: Maybe<DocumentFilter>;
|
7023
7671
|
first?: Maybe<Scalars["Int"]>;
|
7024
7672
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
7025
7673
|
last?: Maybe<Scalars["Int"]>;
|
@@ -7055,6 +7703,7 @@ export declare type ProjectSearchResultMembersArgs = {
|
|
7055
7703
|
export declare type ProjectSearchResultProjectMilestonesArgs = {
|
7056
7704
|
after?: Maybe<Scalars["String"]>;
|
7057
7705
|
before?: Maybe<Scalars["String"]>;
|
7706
|
+
filter?: Maybe<ProjectMilestoneFilter>;
|
7058
7707
|
first?: Maybe<Scalars["Int"]>;
|
7059
7708
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
7060
7709
|
last?: Maybe<Scalars["Int"]>;
|
@@ -7089,6 +7738,78 @@ export declare type ProjectSearchResultEdge = {
|
|
7089
7738
|
cursor: Scalars["String"];
|
7090
7739
|
node: ProjectSearchResult;
|
7091
7740
|
};
|
7741
|
+
/** [ALPHA] A project status. */
|
7742
|
+
export declare type ProjectStatus = Node & {
|
7743
|
+
__typename?: "ProjectStatus";
|
7744
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
7745
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
7746
|
+
/** The UI color of the status as a HEX string. */
|
7747
|
+
color: Scalars["String"];
|
7748
|
+
/** The time at which the entity was created. */
|
7749
|
+
createdAt: Scalars["DateTime"];
|
7750
|
+
/** Description of the status. */
|
7751
|
+
description?: Maybe<Scalars["String"]>;
|
7752
|
+
/** The unique identifier of the entity. */
|
7753
|
+
id: Scalars["ID"];
|
7754
|
+
/** Whether or not a project can be in this status indefinitely. */
|
7755
|
+
indefinite: Scalars["Boolean"];
|
7756
|
+
/** The name of the status. */
|
7757
|
+
name: Scalars["String"];
|
7758
|
+
/** The position of the status in the workspace's project flow. */
|
7759
|
+
position: Scalars["Float"];
|
7760
|
+
/** The type of the project status. */
|
7761
|
+
type?: Maybe<ProjectStatusType>;
|
7762
|
+
/**
|
7763
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
7764
|
+
* for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
|
7765
|
+
* been updated after creation.
|
7766
|
+
*/
|
7767
|
+
updatedAt: Scalars["DateTime"];
|
7768
|
+
};
|
7769
|
+
export declare type ProjectStatusConnection = {
|
7770
|
+
__typename?: "ProjectStatusConnection";
|
7771
|
+
edges: Array<ProjectStatusEdge>;
|
7772
|
+
nodes: Array<ProjectStatus>;
|
7773
|
+
pageInfo: PageInfo;
|
7774
|
+
};
|
7775
|
+
export declare type ProjectStatusEdge = {
|
7776
|
+
__typename?: "ProjectStatusEdge";
|
7777
|
+
/** Used in `before` and `after` args */
|
7778
|
+
cursor: Scalars["String"];
|
7779
|
+
node: ProjectStatus;
|
7780
|
+
};
|
7781
|
+
/** Project status filtering options. */
|
7782
|
+
export declare type ProjectStatusFilter = {
|
7783
|
+
/** Compound filters, all of which need to be matched by the project status. */
|
7784
|
+
and?: Maybe<Array<ProjectStatusFilter>>;
|
7785
|
+
/** Comparator for the created at date. */
|
7786
|
+
createdAt?: Maybe<DateComparator>;
|
7787
|
+
/** Comparator for the project status description. */
|
7788
|
+
description?: Maybe<StringComparator>;
|
7789
|
+
/** Comparator for the identifier. */
|
7790
|
+
id?: Maybe<IdComparator>;
|
7791
|
+
/** Comparator for the project status name. */
|
7792
|
+
name?: Maybe<StringComparator>;
|
7793
|
+
/** Compound filters, one of which needs to be matched by the project status. */
|
7794
|
+
or?: Maybe<Array<ProjectStatusFilter>>;
|
7795
|
+
/** Comparator for the project status position. */
|
7796
|
+
position?: Maybe<NumberComparator>;
|
7797
|
+
/** Filters that the project status projects must satisfy. */
|
7798
|
+
projects?: Maybe<ProjectCollectionFilter>;
|
7799
|
+
/** Comparator for the project status type. */
|
7800
|
+
type?: Maybe<StringComparator>;
|
7801
|
+
/** Comparator for the updated at date. */
|
7802
|
+
updatedAt?: Maybe<DateComparator>;
|
7803
|
+
};
|
7804
|
+
/** A type of project status. */
|
7805
|
+
export declare enum ProjectStatusType {
|
7806
|
+
Backlog = "backlog",
|
7807
|
+
Canceled = "canceled",
|
7808
|
+
Completed = "completed",
|
7809
|
+
Paused = "paused",
|
7810
|
+
Planned = "planned",
|
7811
|
+
Started = "started"
|
7812
|
+
}
|
7092
7813
|
/** Different tabs available inside a project. */
|
7093
7814
|
export declare enum ProjectTab {
|
7094
7815
|
Activity = "activity",
|
@@ -7102,10 +7823,12 @@ export declare type ProjectUpdate = Node & {
|
|
7102
7823
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
7103
7824
|
/** The update content in markdown format. */
|
7104
7825
|
body: Scalars["String"];
|
7826
|
+
/** [Internal] The content of the project update as a Prosemirror document. */
|
7827
|
+
bodyData: Scalars["String"];
|
7105
7828
|
/** The time at which the entity was created. */
|
7106
7829
|
createdAt: Scalars["DateTime"];
|
7107
7830
|
/** The diff between the current update and the previous one. */
|
7108
|
-
diff?: Maybe<Scalars["
|
7831
|
+
diff?: Maybe<Scalars["JSONObject"]>;
|
7109
7832
|
/** The diff between the current update and the previous one, formatted as markdown. */
|
7110
7833
|
diffMarkdown?: Maybe<Scalars["String"]>;
|
7111
7834
|
/** The time the project update was edited. */
|
@@ -7116,7 +7839,7 @@ export declare type ProjectUpdate = Node & {
|
|
7116
7839
|
id: Scalars["ID"];
|
7117
7840
|
/** [Internal] Serialized JSON representing current state of the project properties when posting the project update. */
|
7118
7841
|
infoSnapshot?: Maybe<Scalars["JSONObject"]>;
|
7119
|
-
/**
|
7842
|
+
/** Whether project update diff should be hidden. */
|
7120
7843
|
isDiffHidden: Scalars["Boolean"];
|
7121
7844
|
/** The project that the update is associated with. */
|
7122
7845
|
project: Project;
|
@@ -7146,7 +7869,7 @@ export declare type ProjectUpdateCreateInput = {
|
|
7146
7869
|
health?: Maybe<ProjectUpdateHealthType>;
|
7147
7870
|
/** The identifier. If none is provided, the backend will generate one. */
|
7148
7871
|
id?: Maybe<Scalars["String"]>;
|
7149
|
-
/**
|
7872
|
+
/** Whether the diff between the current update and the previous one should be hidden. */
|
7150
7873
|
isDiffHidden?: Maybe<Scalars["Boolean"]>;
|
7151
7874
|
/** The project to associate the project update with. */
|
7152
7875
|
projectId: Scalars["String"];
|
@@ -7201,6 +7924,8 @@ export declare type ProjectUpdateInput = {
|
|
7201
7924
|
memberIds?: Maybe<Array<Scalars["String"]>>;
|
7202
7925
|
/** The name of the project. */
|
7203
7926
|
name?: Maybe<Scalars["String"]>;
|
7927
|
+
/** [INTERNAL] The date when the project was paused. */
|
7928
|
+
pausedAt?: Maybe<Scalars["DateTime"]>;
|
7204
7929
|
/** The time until which project update reminders are paused. */
|
7205
7930
|
projectUpdateRemindersPausedUntilAt?: Maybe<Scalars["DateTime"]>;
|
7206
7931
|
/** Whether to send new issue comment notifications to Slack. */
|
@@ -7217,6 +7942,8 @@ export declare type ProjectUpdateInput = {
|
|
7217
7942
|
startDateResolution?: Maybe<DateResolutionType>;
|
7218
7943
|
/** The state of the project. */
|
7219
7944
|
state?: Maybe<Scalars["String"]>;
|
7945
|
+
/** [INTERNAL] The ID of the project status. */
|
7946
|
+
statusId?: Maybe<Scalars["String"]>;
|
7220
7947
|
/** The planned target date of the project. */
|
7221
7948
|
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
7222
7949
|
/** [INTERNAL] The resolution of the project's estimated completion date. */
|
@@ -7305,7 +8032,7 @@ export declare type ProjectUpdateUpdateInput = {
|
|
7305
8032
|
bodyData?: Maybe<Scalars["JSON"]>;
|
7306
8033
|
/** The health of the project at the time of the update. */
|
7307
8034
|
health?: Maybe<ProjectUpdateHealthType>;
|
7308
|
-
/**
|
8035
|
+
/** Whether the diff between the current update and the previous one should be hidden. */
|
7309
8036
|
isDiffHidden?: Maybe<Scalars["Boolean"]>;
|
7310
8037
|
};
|
7311
8038
|
export declare type ProjectUpdateWithInteractionPayload = {
|
@@ -7346,7 +8073,7 @@ export declare type PushSubscriptionCreateInput = {
|
|
7346
8073
|
data: Scalars["String"];
|
7347
8074
|
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
7348
8075
|
id?: Maybe<Scalars["String"]>;
|
7349
|
-
/** Whether this is a subscription payload for Google Cloud Messaging or Apple Push Notification service */
|
8076
|
+
/** Whether this is a subscription payload for Google Cloud Messaging or Apple Push Notification service. */
|
7350
8077
|
type?: Maybe<PushSubscriptionType>;
|
7351
8078
|
/** The user identifier of the subscription. */
|
7352
8079
|
userId?: Maybe<Scalars["String"]>;
|
@@ -7371,7 +8098,7 @@ export declare type PushSubscriptionTestPayload = {
|
|
7371
8098
|
/** Whether the operation was successful. */
|
7372
8099
|
success: Scalars["Boolean"];
|
7373
8100
|
};
|
7374
|
-
/** The different push subscription types */
|
8101
|
+
/** The different push subscription types. */
|
7375
8102
|
export declare enum PushSubscriptionType {
|
7376
8103
|
Apple = "apple",
|
7377
8104
|
AppleDevelopment = "appleDevelopment",
|
@@ -7380,24 +8107,16 @@ export declare enum PushSubscriptionType {
|
|
7380
8107
|
}
|
7381
8108
|
export declare type Query = {
|
7382
8109
|
__typename?: "Query";
|
7383
|
-
/**
|
7384
|
-
* [DEPRECATED] [INTERNAL] One specific project milestone.
|
7385
|
-
* @deprecated This mutation is deprecated, please use `projectMilestone` instead.
|
7386
|
-
*/
|
7387
|
-
ProjectMilestone: ProjectMilestone;
|
7388
|
-
/**
|
7389
|
-
* [DEPRECATED] [INTERNAL] All milestones for the project.
|
7390
|
-
* @deprecated This mutation is deprecated, please use `projectMilestones` instead.
|
7391
|
-
*/
|
7392
|
-
ProjectMilestones: ProjectMilestoneConnection;
|
7393
8110
|
/** All teams you the user can administrate. Administrable teams are teams whose settings the user can change, but to whose issues the user doesn't necessarily have access to. */
|
7394
8111
|
administrableTeams: TeamConnection;
|
7395
8112
|
/** All API keys for the user. */
|
7396
8113
|
apiKeys: ApiKeyConnection;
|
7397
8114
|
/** Get basic information for an application. */
|
7398
8115
|
applicationInfo: Application;
|
7399
|
-
/** [INTERNAL] Get basic information for a list of applications */
|
8116
|
+
/** [INTERNAL] Get basic information for a list of applications. */
|
7400
8117
|
applicationInfoByIds: Array<Application>;
|
8118
|
+
/** [INTERNAL] Get information for a list of applications with memberships */
|
8119
|
+
applicationInfoWithMembershipsByIds: Array<WorkspaceAuthorizedApplication>;
|
7401
8120
|
/** Get information for an application and whether a user has approved it for the given scopes. */
|
7402
8121
|
applicationWithAuthorization: UserAuthorizedApplication;
|
7403
8122
|
/** [Internal] All archived teams of the organization. */
|
@@ -7412,7 +8131,7 @@ export declare type Query = {
|
|
7412
8131
|
* @deprecated Will be removed in near future, please use `attachmentsForURL` to get attachments and their issues instead.
|
7413
8132
|
*/
|
7414
8133
|
attachmentIssue: Issue;
|
7415
|
-
/** [Internal] Get a list of all unique attachment sources in the workspace */
|
8134
|
+
/** [Internal] Get a list of all unique attachment sources in the workspace. */
|
7416
8135
|
attachmentSources: AttachmentSourcesPayload;
|
7417
8136
|
/**
|
7418
8137
|
* All issue attachments.
|
@@ -7428,7 +8147,7 @@ export declare type Query = {
|
|
7428
8147
|
auditEntryTypes: Array<AuditEntryType>;
|
7429
8148
|
/** User's active sessions. */
|
7430
8149
|
authenticationSessions: Array<AuthenticationSessionResponse>;
|
7431
|
-
/** [INTERNAL] Get all authorized applications for a user */
|
8150
|
+
/** [INTERNAL] Get all authorized applications for a user. */
|
7432
8151
|
authorizedApplications: Array<AuthorizedApplication>;
|
7433
8152
|
/** Fetch users belonging to this user account. */
|
7434
8153
|
availableUsers: AuthResolverResponse;
|
@@ -7466,8 +8185,18 @@ export declare type Query = {
|
|
7466
8185
|
favorite: Favorite;
|
7467
8186
|
/** The user's favorites. */
|
7468
8187
|
favorites: FavoriteConnection;
|
8188
|
+
/** [Internal] One specific initiative. */
|
8189
|
+
initiative: Initiative;
|
8190
|
+
/** [INTERNAL] One specific initiativeToProject. */
|
8191
|
+
initiativeToProject: InitiativeToProject;
|
8192
|
+
/** [INTERNAL] returns a list of initiative to project entities. */
|
8193
|
+
initiativeToProjects: InitiativeToProjectConnection;
|
8194
|
+
/** [Internal] All initiatives in the workspace. */
|
8195
|
+
initiatives: InitiativeConnection;
|
7469
8196
|
/** One specific integration. */
|
7470
8197
|
integration: Integration;
|
8198
|
+
/** Checks if the integration has all required scopes. */
|
8199
|
+
integrationHasScopes: IntegrationHasScopesPayload;
|
7471
8200
|
/** One specific integrationTemplate. */
|
7472
8201
|
integrationTemplate: IntegrationTemplate;
|
7473
8202
|
/** Template and integration connections. */
|
@@ -7578,6 +8307,10 @@ export declare type Query = {
|
|
7578
8307
|
templates: Array<Template>;
|
7579
8308
|
/** Returns all templates that are associated with the integration type. */
|
7580
8309
|
templatesForIntegration: Array<Template>;
|
8310
|
+
/** [ALPHA] A specific time schedule. */
|
8311
|
+
timeSchedule: TimeSchedule;
|
8312
|
+
/** [ALPHA] All time schedules. */
|
8313
|
+
timeSchedules: TimeScheduleConnection;
|
7581
8314
|
/** One specific user. */
|
7582
8315
|
user: User;
|
7583
8316
|
/** The user's settings. */
|
@@ -7594,21 +8327,9 @@ export declare type Query = {
|
|
7594
8327
|
workflowState: WorkflowState;
|
7595
8328
|
/** All issue workflow states. */
|
7596
8329
|
workflowStates: WorkflowStateConnection;
|
7597
|
-
/** [INTERNAL] Get
|
8330
|
+
/** [INTERNAL] Get non-internal authorized applications (with limited fields) for a workspace */
|
7598
8331
|
workspaceAuthorizedApplications: Array<WorkspaceAuthorizedApplication>;
|
7599
8332
|
};
|
7600
|
-
export declare type QueryProjectMilestoneArgs = {
|
7601
|
-
id: Scalars["String"];
|
7602
|
-
};
|
7603
|
-
export declare type QueryProjectMilestonesArgs = {
|
7604
|
-
after?: Maybe<Scalars["String"]>;
|
7605
|
-
before?: Maybe<Scalars["String"]>;
|
7606
|
-
filter?: Maybe<ProjectMilestoneFilter>;
|
7607
|
-
first?: Maybe<Scalars["Int"]>;
|
7608
|
-
includeArchived?: Maybe<Scalars["Boolean"]>;
|
7609
|
-
last?: Maybe<Scalars["Int"]>;
|
7610
|
-
orderBy?: Maybe<PaginationOrderBy>;
|
7611
|
-
};
|
7612
8333
|
export declare type QueryAdministrableTeamsArgs = {
|
7613
8334
|
after?: Maybe<Scalars["String"]>;
|
7614
8335
|
before?: Maybe<Scalars["String"]>;
|
@@ -7632,6 +8353,9 @@ export declare type QueryApplicationInfoArgs = {
|
|
7632
8353
|
export declare type QueryApplicationInfoByIdsArgs = {
|
7633
8354
|
ids: Array<Scalars["String"]>;
|
7634
8355
|
};
|
8356
|
+
export declare type QueryApplicationInfoWithMembershipsByIdsArgs = {
|
8357
|
+
clientIds: Array<Scalars["String"]>;
|
8358
|
+
};
|
7635
8359
|
export declare type QueryApplicationWithAuthorizationArgs = {
|
7636
8360
|
actor?: Maybe<Scalars["String"]>;
|
7637
8361
|
clientId: Scalars["String"];
|
@@ -7675,7 +8399,9 @@ export declare type QueryAuditEntriesArgs = {
|
|
7675
8399
|
orderBy?: Maybe<PaginationOrderBy>;
|
7676
8400
|
};
|
7677
8401
|
export declare type QueryCommentArgs = {
|
7678
|
-
|
8402
|
+
hash?: Maybe<Scalars["String"]>;
|
8403
|
+
id?: Maybe<Scalars["String"]>;
|
8404
|
+
issueId?: Maybe<Scalars["String"]>;
|
7679
8405
|
};
|
7680
8406
|
export declare type QueryCommentsArgs = {
|
7681
8407
|
after?: Maybe<Scalars["String"]>;
|
@@ -7725,6 +8451,7 @@ export declare type QueryDocumentContentHistoryArgs = {
|
|
7725
8451
|
export declare type QueryDocumentsArgs = {
|
7726
8452
|
after?: Maybe<Scalars["String"]>;
|
7727
8453
|
before?: Maybe<Scalars["String"]>;
|
8454
|
+
filter?: Maybe<DocumentFilter>;
|
7728
8455
|
first?: Maybe<Scalars["Int"]>;
|
7729
8456
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
7730
8457
|
last?: Maybe<Scalars["Int"]>;
|
@@ -7763,9 +8490,35 @@ export declare type QueryFavoritesArgs = {
|
|
7763
8490
|
last?: Maybe<Scalars["Int"]>;
|
7764
8491
|
orderBy?: Maybe<PaginationOrderBy>;
|
7765
8492
|
};
|
8493
|
+
export declare type QueryInitiativeArgs = {
|
8494
|
+
id: Scalars["String"];
|
8495
|
+
};
|
8496
|
+
export declare type QueryInitiativeToProjectArgs = {
|
8497
|
+
id: Scalars["String"];
|
8498
|
+
};
|
8499
|
+
export declare type QueryInitiativeToProjectsArgs = {
|
8500
|
+
after?: Maybe<Scalars["String"]>;
|
8501
|
+
before?: Maybe<Scalars["String"]>;
|
8502
|
+
first?: Maybe<Scalars["Int"]>;
|
8503
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
8504
|
+
last?: Maybe<Scalars["Int"]>;
|
8505
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
8506
|
+
};
|
8507
|
+
export declare type QueryInitiativesArgs = {
|
8508
|
+
after?: Maybe<Scalars["String"]>;
|
8509
|
+
before?: Maybe<Scalars["String"]>;
|
8510
|
+
first?: Maybe<Scalars["Int"]>;
|
8511
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
8512
|
+
last?: Maybe<Scalars["Int"]>;
|
8513
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
8514
|
+
};
|
7766
8515
|
export declare type QueryIntegrationArgs = {
|
7767
8516
|
id: Scalars["String"];
|
7768
8517
|
};
|
8518
|
+
export declare type QueryIntegrationHasScopesArgs = {
|
8519
|
+
integrationId: Scalars["String"];
|
8520
|
+
scopes: Array<Scalars["String"]>;
|
8521
|
+
};
|
7769
8522
|
export declare type QueryIntegrationTemplateArgs = {
|
7770
8523
|
id: Scalars["String"];
|
7771
8524
|
};
|
@@ -7914,10 +8667,10 @@ export declare type QueryProjectLinksArgs = {
|
|
7914
8667
|
last?: Maybe<Scalars["Int"]>;
|
7915
8668
|
orderBy?: Maybe<PaginationOrderBy>;
|
7916
8669
|
};
|
7917
|
-
export declare type
|
8670
|
+
export declare type QueryProjectMilestoneArgs = {
|
7918
8671
|
id: Scalars["String"];
|
7919
8672
|
};
|
7920
|
-
export declare type
|
8673
|
+
export declare type QueryProjectMilestonesArgs = {
|
7921
8674
|
after?: Maybe<Scalars["String"]>;
|
7922
8675
|
before?: Maybe<Scalars["String"]>;
|
7923
8676
|
filter?: Maybe<ProjectMilestoneFilter>;
|
@@ -7992,6 +8745,7 @@ export declare type QuerySearchDocumentsArgs = {
|
|
7992
8745
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
7993
8746
|
last?: Maybe<Scalars["Int"]>;
|
7994
8747
|
orderBy?: Maybe<PaginationOrderBy>;
|
8748
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
7995
8749
|
teamId?: Maybe<Scalars["String"]>;
|
7996
8750
|
term: Scalars["String"];
|
7997
8751
|
};
|
@@ -8004,6 +8758,7 @@ export declare type QuerySearchIssuesArgs = {
|
|
8004
8758
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
8005
8759
|
last?: Maybe<Scalars["Int"]>;
|
8006
8760
|
orderBy?: Maybe<PaginationOrderBy>;
|
8761
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
8007
8762
|
teamId?: Maybe<Scalars["String"]>;
|
8008
8763
|
term: Scalars["String"];
|
8009
8764
|
};
|
@@ -8015,6 +8770,7 @@ export declare type QuerySearchProjectsArgs = {
|
|
8015
8770
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
8016
8771
|
last?: Maybe<Scalars["Int"]>;
|
8017
8772
|
orderBy?: Maybe<PaginationOrderBy>;
|
8773
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
8018
8774
|
teamId?: Maybe<Scalars["String"]>;
|
8019
8775
|
term: Scalars["String"];
|
8020
8776
|
};
|
@@ -8051,6 +8807,17 @@ export declare type QueryTemplateArgs = {
|
|
8051
8807
|
export declare type QueryTemplatesForIntegrationArgs = {
|
8052
8808
|
integrationType: Scalars["String"];
|
8053
8809
|
};
|
8810
|
+
export declare type QueryTimeScheduleArgs = {
|
8811
|
+
id: Scalars["String"];
|
8812
|
+
};
|
8813
|
+
export declare type QueryTimeSchedulesArgs = {
|
8814
|
+
after?: Maybe<Scalars["String"]>;
|
8815
|
+
before?: Maybe<Scalars["String"]>;
|
8816
|
+
first?: Maybe<Scalars["Int"]>;
|
8817
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
8818
|
+
last?: Maybe<Scalars["Int"]>;
|
8819
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
8820
|
+
};
|
8054
8821
|
export declare type QueryUserArgs = {
|
8055
8822
|
id: Scalars["String"];
|
8056
8823
|
};
|
@@ -8148,7 +8915,7 @@ export declare type ReactionCreateInput = {
|
|
8148
8915
|
commentId?: Maybe<Scalars["String"]>;
|
8149
8916
|
/** The emoji the user reacted with. */
|
8150
8917
|
emoji?: Maybe<Scalars["String"]>;
|
8151
|
-
/** The identifier in UUID v4 format. If none is provided, the backend will generate one */
|
8918
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
8152
8919
|
id?: Maybe<Scalars["String"]>;
|
8153
8920
|
/** The issue to associate the reaction with. */
|
8154
8921
|
issueId?: Maybe<Scalars["String"]>;
|
@@ -8175,7 +8942,7 @@ export declare type RelationExistsComparator = {
|
|
8175
8942
|
/** Not equals constraint. */
|
8176
8943
|
neq?: Maybe<Scalars["Boolean"]>;
|
8177
8944
|
};
|
8178
|
-
/** Features release channel */
|
8945
|
+
/** Features release channel. */
|
8179
8946
|
export declare enum ReleaseChannel {
|
8180
8947
|
Beta = "beta",
|
8181
8948
|
Internal = "internal",
|
@@ -8276,7 +9043,7 @@ export declare type RoadmapCreateInput = {
|
|
8276
9043
|
id?: Maybe<Scalars["String"]>;
|
8277
9044
|
/** The name of the roadmap. */
|
8278
9045
|
name: Scalars["String"];
|
8279
|
-
/** The owner of the roadmap */
|
9046
|
+
/** The owner of the roadmap. */
|
8280
9047
|
ownerId?: Maybe<Scalars["String"]>;
|
8281
9048
|
/** The sort order of the roadmap within the organization. */
|
8282
9049
|
sortOrder?: Maybe<Scalars["Float"]>;
|
@@ -8315,7 +9082,7 @@ export declare type RoadmapPayload = {
|
|
8315
9082
|
/** Whether the operation was successful. */
|
8316
9083
|
success: Scalars["Boolean"];
|
8317
9084
|
};
|
8318
|
-
/** Join table between projects and roadmaps */
|
9085
|
+
/** Join table between projects and roadmaps. */
|
8319
9086
|
export declare type RoadmapToProject = Node & {
|
8320
9087
|
__typename?: "RoadmapToProject";
|
8321
9088
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
@@ -8379,53 +9146,16 @@ export declare type RoadmapUpdateInput = {
|
|
8379
9146
|
description?: Maybe<Scalars["String"]>;
|
8380
9147
|
/** The name of the roadmap. */
|
8381
9148
|
name?: Maybe<Scalars["String"]>;
|
8382
|
-
/** The owner of the roadmap */
|
9149
|
+
/** The owner of the roadmap. */
|
8383
9150
|
ownerId?: Maybe<Scalars["String"]>;
|
8384
9151
|
/** The sort order of the roadmap within the organization. */
|
8385
9152
|
sortOrder?: Maybe<Scalars["Float"]>;
|
8386
9153
|
};
|
8387
|
-
/** Which day count to use for SLA calculations */
|
9154
|
+
/** Which day count to use for SLA calculations. */
|
8388
9155
|
export declare enum SlaDayCountType {
|
8389
9156
|
All = "all",
|
8390
9157
|
OnlyBusinessDays = "onlyBusinessDays"
|
8391
9158
|
}
|
8392
|
-
export declare type SamlConfiguration = {
|
8393
|
-
__typename?: "SamlConfiguration";
|
8394
|
-
/** The issuer's custom entity ID. */
|
8395
|
-
issuerEntityId?: Maybe<Scalars["String"]>;
|
8396
|
-
/** Binding method for authentication call. Can be either `post` (default) or `redirect`. */
|
8397
|
-
ssoBinding?: Maybe<Scalars["String"]>;
|
8398
|
-
/** Sign in endpoint URL for the identity provider. */
|
8399
|
-
ssoEndpoint?: Maybe<Scalars["String"]>;
|
8400
|
-
/** The algorithm of the Signing Certificate. Can be one of `sha1`, `sha256` (default), or `sha512`. */
|
8401
|
-
ssoSignAlgo?: Maybe<Scalars["String"]>;
|
8402
|
-
/** X.509 Signing Certificate in string form. */
|
8403
|
-
ssoSigningCert?: Maybe<Scalars["String"]>;
|
8404
|
-
};
|
8405
|
-
export declare type SamlConfigurationInput = {
|
8406
|
-
/** The issuer's custom entity ID. */
|
8407
|
-
issuerEntityId?: Maybe<Scalars["String"]>;
|
8408
|
-
/** Binding method for authentication call. Can be either `post` (default) or `redirect`. */
|
8409
|
-
ssoBinding?: Maybe<Scalars["String"]>;
|
8410
|
-
/** Sign in endpoint URL for the identity provider. */
|
8411
|
-
ssoEndpoint?: Maybe<Scalars["String"]>;
|
8412
|
-
/** The algorithm of the Signing Certificate. Can be one of `sha1`, `sha256` (default), or `sha512`. */
|
8413
|
-
ssoSignAlgo?: Maybe<Scalars["String"]>;
|
8414
|
-
/** X.509 Signing Certificate in string form. */
|
8415
|
-
ssoSigningCert?: Maybe<Scalars["String"]>;
|
8416
|
-
};
|
8417
|
-
/** The organization's SAML configuration */
|
8418
|
-
export declare type SamlConfigurationPayload = {
|
8419
|
-
__typename?: "SamlConfigurationPayload";
|
8420
|
-
/** The issuer's custom entity ID. */
|
8421
|
-
issuerEntityId?: Maybe<Scalars["String"]>;
|
8422
|
-
/** Binding method for authentication call. Can be either `post` (default) or `redirect`. */
|
8423
|
-
ssoBinding?: Maybe<Scalars["String"]>;
|
8424
|
-
/** Sign in endpoint URL for the identity provider. */
|
8425
|
-
ssoEndpoint?: Maybe<Scalars["String"]>;
|
8426
|
-
/** The algorithm of the Signing Certificate. Can be one of `sha1`, `sha256` (default), or `sha512`. */
|
8427
|
-
ssoSignAlgo?: Maybe<Scalars["String"]>;
|
8428
|
-
};
|
8429
9159
|
export declare enum SendStrategy {
|
8430
9160
|
Desktop = "desktop",
|
8431
9161
|
DesktopAndPush = "desktopAndPush",
|
@@ -8478,16 +9208,16 @@ export declare type SlackAsksSettingsInput = {
|
|
8478
9208
|
/** The mapping of Slack channel ID => Slack channel name for connected channels. */
|
8479
9209
|
slackChannelMapping?: Maybe<Array<SlackChannelNameMappingInput>>;
|
8480
9210
|
};
|
8481
|
-
/** Tuple for mapping Slack channel IDs to names */
|
9211
|
+
/** Tuple for mapping Slack channel IDs to names. */
|
8482
9212
|
export declare type SlackAsksTeamSettings = {
|
8483
9213
|
__typename?: "SlackAsksTeamSettings";
|
8484
|
-
/** Whether the default Asks template is enabled in the given channel for this team */
|
9214
|
+
/** Whether the default Asks template is enabled in the given channel for this team. */
|
8485
9215
|
hasDefaultAsk: Scalars["Boolean"];
|
8486
9216
|
/** The Linear team ID. */
|
8487
9217
|
id: Scalars["String"];
|
8488
9218
|
};
|
8489
9219
|
export declare type SlackAsksTeamSettingsInput = {
|
8490
|
-
/** Whether the default Asks template is enabled in the given channel for this team */
|
9220
|
+
/** Whether the default Asks template is enabled in the given channel for this team. */
|
8491
9221
|
hasDefaultAsk: Scalars["Boolean"];
|
8492
9222
|
/** The Linear team ID. */
|
8493
9223
|
id: Scalars["String"];
|
@@ -8507,50 +9237,50 @@ export declare type SlackChannelConnectPayload = {
|
|
8507
9237
|
/** Whether the operation was successful. */
|
8508
9238
|
success: Scalars["Boolean"];
|
8509
9239
|
};
|
8510
|
-
/** Object for mapping Slack channel IDs to names and other settings */
|
9240
|
+
/** Object for mapping Slack channel IDs to names and other settings. */
|
8511
9241
|
export declare type SlackChannelNameMapping = {
|
8512
9242
|
__typename?: "SlackChannelNameMapping";
|
8513
|
-
/** Whether or not @-mentioning the bot should automatically create an Ask with the message */
|
9243
|
+
/** Whether or not @-mentioning the bot should automatically create an Ask with the message. */
|
8514
9244
|
autoCreateOnBotMention?: Maybe<Scalars["Boolean"]>;
|
8515
|
-
/** Whether or not using the :ticket: emoji in this channel should automatically create Asks */
|
9245
|
+
/** Whether or not using the :ticket: emoji in this channel should automatically create Asks. */
|
8516
9246
|
autoCreateOnEmoji?: Maybe<Scalars["Boolean"]>;
|
8517
|
-
/** Whether or not top-level messages in this channel should automatically create Asks */
|
9247
|
+
/** Whether or not top-level messages in this channel should automatically create Asks. */
|
8518
9248
|
autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
|
8519
9249
|
/** The optional template ID to use for Asks auto-created in this channel. If not set, auto-created Asks won't use any template. */
|
8520
9250
|
autoCreateTemplateId?: Maybe<Scalars["String"]>;
|
8521
|
-
/** Whether or not we the Linear Asks bot has been added to this Slack channel */
|
9251
|
+
/** Whether or not we the Linear Asks bot has been added to this Slack channel. */
|
8522
9252
|
botAdded?: Maybe<Scalars["Boolean"]>;
|
8523
9253
|
/** The Slack channel ID. */
|
8524
9254
|
id: Scalars["String"];
|
8525
|
-
/** Whether or not the Slack channel is private */
|
9255
|
+
/** Whether or not the Slack channel is private. */
|
8526
9256
|
isPrivate?: Maybe<Scalars["Boolean"]>;
|
8527
|
-
/** Whether or not the Slack channel is shared with an external org */
|
9257
|
+
/** Whether or not the Slack channel is shared with an external org. */
|
8528
9258
|
isShared?: Maybe<Scalars["Boolean"]>;
|
8529
9259
|
/** The Slack channel name. */
|
8530
9260
|
name: Scalars["String"];
|
8531
|
-
/** Which teams are connected to the channel and settings for those teams */
|
9261
|
+
/** Which teams are connected to the channel and settings for those teams. */
|
8532
9262
|
teams: Array<SlackAsksTeamSettings>;
|
8533
9263
|
};
|
8534
9264
|
export declare type SlackChannelNameMappingInput = {
|
8535
|
-
/** Whether or not @-mentioning the bot should automatically create an Ask with the message */
|
9265
|
+
/** Whether or not @-mentioning the bot should automatically create an Ask with the message. */
|
8536
9266
|
autoCreateOnBotMention?: Maybe<Scalars["Boolean"]>;
|
8537
|
-
/** Whether or not using the :ticket: emoji in this channel should automatically create Asks */
|
9267
|
+
/** Whether or not using the :ticket: emoji in this channel should automatically create Asks. */
|
8538
9268
|
autoCreateOnEmoji?: Maybe<Scalars["Boolean"]>;
|
8539
|
-
/** Whether or not top-level messages in this channel should automatically create Asks */
|
9269
|
+
/** Whether or not top-level messages in this channel should automatically create Asks. */
|
8540
9270
|
autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
|
8541
9271
|
/** The optional template ID to use for Asks auto-created in this channel. If not set, auto-created Asks won't use any template. */
|
8542
9272
|
autoCreateTemplateId?: Maybe<Scalars["String"]>;
|
8543
|
-
/** Whether or not we the Linear Asks bot has been added to this Slack channel */
|
9273
|
+
/** Whether or not we the Linear Asks bot has been added to this Slack channel. */
|
8544
9274
|
botAdded?: Maybe<Scalars["Boolean"]>;
|
8545
9275
|
/** The Slack channel ID. */
|
8546
9276
|
id: Scalars["String"];
|
8547
|
-
/** Whether or not the Slack channel is private */
|
9277
|
+
/** Whether or not the Slack channel is private. */
|
8548
9278
|
isPrivate?: Maybe<Scalars["Boolean"]>;
|
8549
|
-
/** Whether or not the Slack channel is shared with an external org */
|
9279
|
+
/** Whether or not the Slack channel is shared with an external org. */
|
8550
9280
|
isShared?: Maybe<Scalars["Boolean"]>;
|
8551
9281
|
/** The Slack channel name. */
|
8552
9282
|
name: Scalars["String"];
|
8553
|
-
/** Which teams are connected to the channel and settings for those teams */
|
9283
|
+
/** Which teams are connected to the channel and settings for those teams. */
|
8554
9284
|
teams: Array<SlackAsksTeamSettingsInput>;
|
8555
9285
|
};
|
8556
9286
|
export declare enum SlackChannelType {
|
@@ -8702,8 +9432,6 @@ export declare type Team = Node & {
|
|
8702
9432
|
autoClosePeriod?: Maybe<Scalars["Float"]>;
|
8703
9433
|
/** The canceled workflow state which auto closed issues will be set to. Defaults to the first canceled state. */
|
8704
9434
|
autoCloseStateId?: Maybe<Scalars["String"]>;
|
8705
|
-
/** The automation states for the team. */
|
8706
|
-
automationStates: GitAutomationStateConnection;
|
8707
9435
|
/** The team's color. */
|
8708
9436
|
color?: Maybe<Scalars["String"]>;
|
8709
9437
|
/** The time at which the entity was created. */
|
@@ -8750,6 +9478,8 @@ export declare type Team = Node & {
|
|
8750
9478
|
description?: Maybe<Scalars["String"]>;
|
8751
9479
|
/** The workflow state into which issues are moved when a PR has been opened as draft. */
|
8752
9480
|
draftWorkflowState?: Maybe<WorkflowState>;
|
9481
|
+
/** The Git automation states for the team. */
|
9482
|
+
gitAutomationStates: GitAutomationStateConnection;
|
8753
9483
|
/** Whether to group recent issue history entries. */
|
8754
9484
|
groupIssueHistory: Scalars["Boolean"];
|
8755
9485
|
/** The icon of the team. */
|
@@ -8798,7 +9528,7 @@ export declare type Team = Node & {
|
|
8798
9528
|
private: Scalars["Boolean"];
|
8799
9529
|
/** Projects associated with the team. */
|
8800
9530
|
projects: ProjectConnection;
|
8801
|
-
/** Whether an issue needs to have a priority set before leaving triage */
|
9531
|
+
/** Whether an issue needs to have a priority set before leaving triage. */
|
8802
9532
|
requirePriorityToLeaveTriage: Scalars["Boolean"];
|
8803
9533
|
/** The workflow state into which issues are moved when a review has been requested for the PR. */
|
8804
9534
|
reviewWorkflowState?: Maybe<WorkflowState>;
|
@@ -8834,19 +9564,19 @@ export declare type Team = Node & {
|
|
8834
9564
|
webhooks: WebhookConnection;
|
8835
9565
|
};
|
8836
9566
|
/** An organizational unit that contains issues. */
|
8837
|
-
export declare type
|
9567
|
+
export declare type TeamCyclesArgs = {
|
8838
9568
|
after?: Maybe<Scalars["String"]>;
|
8839
9569
|
before?: Maybe<Scalars["String"]>;
|
9570
|
+
filter?: Maybe<CycleFilter>;
|
8840
9571
|
first?: Maybe<Scalars["Int"]>;
|
8841
9572
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
8842
9573
|
last?: Maybe<Scalars["Int"]>;
|
8843
9574
|
orderBy?: Maybe<PaginationOrderBy>;
|
8844
9575
|
};
|
8845
9576
|
/** An organizational unit that contains issues. */
|
8846
|
-
export declare type
|
9577
|
+
export declare type TeamGitAutomationStatesArgs = {
|
8847
9578
|
after?: Maybe<Scalars["String"]>;
|
8848
9579
|
before?: Maybe<Scalars["String"]>;
|
8849
|
-
filter?: Maybe<CycleFilter>;
|
8850
9580
|
first?: Maybe<Scalars["Int"]>;
|
8851
9581
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
8852
9582
|
last?: Maybe<Scalars["Int"]>;
|
@@ -9075,7 +9805,7 @@ export declare type TeamMembership = Node & {
|
|
9075
9805
|
createdAt: Scalars["DateTime"];
|
9076
9806
|
/** The unique identifier of the entity. */
|
9077
9807
|
id: Scalars["ID"];
|
9078
|
-
/** Whether the user is the owner of the team */
|
9808
|
+
/** Whether the user is the owner of the team. */
|
9079
9809
|
owner?: Maybe<Scalars["Boolean"]>;
|
9080
9810
|
/** The order of the item in the users team list. */
|
9081
9811
|
sortOrder: Scalars["Float"];
|
@@ -9132,7 +9862,7 @@ export declare type TeamMembershipUpdateInput = {
|
|
9132
9862
|
/** A team notification subscription. */
|
9133
9863
|
export declare type TeamNotificationSubscription = Entity & Node & NotificationSubscription & {
|
9134
9864
|
__typename?: "TeamNotificationSubscription";
|
9135
|
-
/** Whether the subscription is active or not */
|
9865
|
+
/** Whether the subscription is active or not. */
|
9136
9866
|
active: Scalars["Boolean"];
|
9137
9867
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
9138
9868
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -9176,15 +9906,23 @@ export declare type TeamPayload = {
|
|
9176
9906
|
/** The team that was created or updated. */
|
9177
9907
|
team?: Maybe<Team>;
|
9178
9908
|
};
|
9179
|
-
/**
|
9909
|
+
/** Mapping of Linear teams to GitHub repos. */
|
9180
9910
|
export declare type TeamRepoMapping = {
|
9181
9911
|
__typename?: "TeamRepoMapping";
|
9912
|
+
/** Whether the sync for this mapping is bidirectional. */
|
9913
|
+
bidirectional?: Maybe<Scalars["Boolean"]>;
|
9914
|
+
/** Whether this mapping is the default one for issue creation. */
|
9915
|
+
default?: Maybe<Scalars["Boolean"]>;
|
9182
9916
|
/** The GitHub repo id. */
|
9183
9917
|
gitHubRepoId: Scalars["Float"];
|
9184
9918
|
/** The Linear team id to map to the given project. */
|
9185
9919
|
linearTeamId: Scalars["String"];
|
9186
9920
|
};
|
9187
9921
|
export declare type TeamRepoMappingInput = {
|
9922
|
+
/** Whether the sync for this mapping is bidirectional. */
|
9923
|
+
bidirectional?: Maybe<Scalars["Boolean"]>;
|
9924
|
+
/** Whether this mapping is the default one for issue creation. */
|
9925
|
+
default?: Maybe<Scalars["Boolean"]>;
|
9188
9926
|
/** The GitHub repo id. */
|
9189
9927
|
gitHubRepoId: Scalars["Float"];
|
9190
9928
|
/** The Linear team id to map to the given project. */
|
@@ -9203,7 +9941,9 @@ export declare type TeamUpdateInput = {
|
|
9203
9941
|
cycleCooldownTime?: Maybe<Scalars["Int"]>;
|
9204
9942
|
/** The duration of each cycle in weeks. */
|
9205
9943
|
cycleDuration?: Maybe<Scalars["Int"]>;
|
9206
|
-
/**
|
9944
|
+
/** The date to begin cycles on. */
|
9945
|
+
cycleEnabledStartDate?: Maybe<Scalars["DateTime"]>;
|
9946
|
+
/** [DEPRECATED] Whether the first cycle should start in the current or the next week. */
|
9207
9947
|
cycleEnabledStartWeek?: Maybe<Scalars["String"]>;
|
9208
9948
|
/** Auto assign completed issues to current active cycle setting. */
|
9209
9949
|
cycleIssueAutoAssignCompleted?: Maybe<Scalars["Boolean"]>;
|
@@ -9355,6 +10095,105 @@ export declare type TemplateUpdateInput = {
|
|
9355
10095
|
/** The template data as JSON encoded attributes of the type of entity, such as an issue. */
|
9356
10096
|
templateData?: Maybe<Scalars["JSON"]>;
|
9357
10097
|
};
|
10098
|
+
/** A time schedule. */
|
10099
|
+
export declare type TimeSchedule = Node & {
|
10100
|
+
__typename?: "TimeSchedule";
|
10101
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
10102
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
10103
|
+
/** The time at which the entity was created. */
|
10104
|
+
createdAt: Scalars["DateTime"];
|
10105
|
+
/** The schedule entries. */
|
10106
|
+
entries: Array<TimeScheduleEntry>;
|
10107
|
+
/** User presentable error message, if an error occurred while updating the schedule. */
|
10108
|
+
error?: Maybe<Scalars["String"]>;
|
10109
|
+
/** The identifier of the external schedule. */
|
10110
|
+
externalId?: Maybe<Scalars["String"]>;
|
10111
|
+
/** The URL to the external schedule. */
|
10112
|
+
externalUrl?: Maybe<Scalars["String"]>;
|
10113
|
+
/** The unique identifier of the entity. */
|
10114
|
+
id: Scalars["ID"];
|
10115
|
+
/** The identifier of the Linear integration populating the schedule. */
|
10116
|
+
integration?: Maybe<Integration>;
|
10117
|
+
/** The name of the schedule. */
|
10118
|
+
name: Scalars["String"];
|
10119
|
+
/** The organization of the schedule. */
|
10120
|
+
organization: Organization;
|
10121
|
+
/**
|
10122
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
10123
|
+
* for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
|
10124
|
+
* been updated after creation.
|
10125
|
+
*/
|
10126
|
+
updatedAt: Scalars["DateTime"];
|
10127
|
+
};
|
10128
|
+
export declare type TimeScheduleConnection = {
|
10129
|
+
__typename?: "TimeScheduleConnection";
|
10130
|
+
edges: Array<TimeScheduleEdge>;
|
10131
|
+
nodes: Array<TimeSchedule>;
|
10132
|
+
pageInfo: PageInfo;
|
10133
|
+
};
|
10134
|
+
export declare type TimeScheduleCreateInput = {
|
10135
|
+
/** The schedule entries. */
|
10136
|
+
entries?: Maybe<Array<TimeScheduleEntryInput>>;
|
10137
|
+
/** User readable error message, if an error occurred while updating the schedule. */
|
10138
|
+
error?: Maybe<Scalars["String"]>;
|
10139
|
+
/** The identifier of the external schedule. */
|
10140
|
+
externalId?: Maybe<Scalars["String"]>;
|
10141
|
+
/** The URL to the external schedule. */
|
10142
|
+
externalUrl?: Maybe<Scalars["String"]>;
|
10143
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
10144
|
+
id?: Maybe<Scalars["String"]>;
|
10145
|
+
/** The identifier of the Linear integration populating the schedule. */
|
10146
|
+
integrationId?: Maybe<Scalars["String"]>;
|
10147
|
+
/** The name of the schedule. */
|
10148
|
+
name: Scalars["String"];
|
10149
|
+
};
|
10150
|
+
export declare type TimeScheduleEdge = {
|
10151
|
+
__typename?: "TimeScheduleEdge";
|
10152
|
+
/** Used in `before` and `after` args */
|
10153
|
+
cursor: Scalars["String"];
|
10154
|
+
node: TimeSchedule;
|
10155
|
+
};
|
10156
|
+
export declare type TimeScheduleEntry = {
|
10157
|
+
__typename?: "TimeScheduleEntry";
|
10158
|
+
/** The end date of the schedule in ISO 8601 date-time format. */
|
10159
|
+
endsAt: Scalars["DateTime"];
|
10160
|
+
/** The start date of the schedule in ISO 8601 date-time format. */
|
10161
|
+
startsAt: Scalars["DateTime"];
|
10162
|
+
/** The email of the user on schedule. This is used in case the external user could not be mapped to a Linear user id. */
|
10163
|
+
userEmail?: Maybe<Scalars["String"]>;
|
10164
|
+
/** The Linear user id of the user on schedule. If the user cannot be mapped to a Linear user then `userEmail` can be used as a reference. */
|
10165
|
+
userId?: Maybe<Scalars["String"]>;
|
10166
|
+
};
|
10167
|
+
export declare type TimeScheduleEntryInput = {
|
10168
|
+
/** The end date of the schedule in ISO 8601 date-time format. */
|
10169
|
+
endsAt: Scalars["DateTime"];
|
10170
|
+
/** The start date of the schedule in ISO 8601 date-time format. */
|
10171
|
+
startsAt: Scalars["DateTime"];
|
10172
|
+
/** The email of the user on schedule. This is used in case the external user could not be mapped to a Linear user id. */
|
10173
|
+
userEmail?: Maybe<Scalars["String"]>;
|
10174
|
+
/** The Linear user id of the user on schedule. If the user cannot be mapped to a Linear user then `userEmail` can be used as a reference. */
|
10175
|
+
userId?: Maybe<Scalars["String"]>;
|
10176
|
+
};
|
10177
|
+
export declare type TimeSchedulePayload = {
|
10178
|
+
__typename?: "TimeSchedulePayload";
|
10179
|
+
/** The identifier of the last sync operation. */
|
10180
|
+
lastSyncId: Scalars["Float"];
|
10181
|
+
/** Whether the operation was successful. */
|
10182
|
+
success: Scalars["Boolean"];
|
10183
|
+
timeSchedule: TimeSchedule;
|
10184
|
+
};
|
10185
|
+
export declare type TimeScheduleUpdateInput = {
|
10186
|
+
/** The schedule entries. */
|
10187
|
+
entries?: Maybe<Array<TimeScheduleEntryInput>>;
|
10188
|
+
/** User readable error message, if an error occurred while updating the schedule. */
|
10189
|
+
error?: Maybe<Scalars["String"]>;
|
10190
|
+
/** The identifier of the external schedule. */
|
10191
|
+
externalId?: Maybe<Scalars["String"]>;
|
10192
|
+
/** The URL to the external schedule. */
|
10193
|
+
externalUrl?: Maybe<Scalars["String"]>;
|
10194
|
+
/** The name of the schedule. */
|
10195
|
+
name?: Maybe<Scalars["String"]>;
|
10196
|
+
};
|
9358
10197
|
/** Comparator for timeless dates. */
|
9359
10198
|
export declare type TimelessDateComparator = {
|
9360
10199
|
/** Equals constraint. */
|
@@ -9405,6 +10244,8 @@ export declare type TriageResponsibility = Node & {
|
|
9405
10244
|
schedule?: Maybe<Scalars["JSONObject"]>;
|
9406
10245
|
/** The team to which the triage responsibility belongs to. */
|
9407
10246
|
team: Team;
|
10247
|
+
/** The time schedule used for scheduling. */
|
10248
|
+
timeSchedule: TimeSchedule;
|
9408
10249
|
/**
|
9409
10250
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
9410
10251
|
* for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
|
@@ -9459,7 +10300,7 @@ export declare type TriageResponsibilityScheduleEntry = {
|
|
9459
10300
|
/** Object representing Google Cloud upload policy, plus additional data. */
|
9460
10301
|
export declare type UploadFile = {
|
9461
10302
|
__typename?: "UploadFile";
|
9462
|
-
/** The asset URL for the uploaded file. (assigned automatically) */
|
10303
|
+
/** The asset URL for the uploaded file. (assigned automatically). */
|
9463
10304
|
assetUrl: Scalars["String"];
|
9464
10305
|
/** The content type. */
|
9465
10306
|
contentType: Scalars["String"];
|
@@ -9469,7 +10310,7 @@ export declare type UploadFile = {
|
|
9469
10310
|
metaData?: Maybe<Scalars["JSONObject"]>;
|
9470
10311
|
/** The size of the uploaded file. */
|
9471
10312
|
size: Scalars["Int"];
|
9472
|
-
/** The signed URL the for the uploaded file. (assigned automatically) */
|
10313
|
+
/** The signed URL the for the uploaded file. (assigned automatically). */
|
9473
10314
|
uploadUrl: Scalars["String"];
|
9474
10315
|
};
|
9475
10316
|
export declare type UploadFileHeader = {
|
@@ -9596,6 +10437,8 @@ export declare type UserAccount = {
|
|
9596
10437
|
__typename?: "UserAccount";
|
9597
10438
|
/** The time at which the model was archived. */
|
9598
10439
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
10440
|
+
/** Whether not to send email auth links in the email auth emails. */
|
10441
|
+
authTokenLinkDisabled: Scalars["Boolean"];
|
9599
10442
|
/** The time at which the model was created. */
|
9600
10443
|
createdAt: Scalars["DateTime"];
|
9601
10444
|
/** The user's email address. */
|
@@ -9639,7 +10482,7 @@ export declare type UserAdminPayload = {
|
|
9639
10482
|
/** Public information of the OAuth application, plus whether the application has been authorized for the given scopes. */
|
9640
10483
|
export declare type UserAuthorizedApplication = {
|
9641
10484
|
__typename?: "UserAuthorizedApplication";
|
9642
|
-
/** Error associated with the application needing to be requested for approval in the workspace */
|
10485
|
+
/** Error associated with the application needing to be requested for approval in the workspace. */
|
9643
10486
|
approvalErrorCode?: Maybe<Scalars["String"]>;
|
9644
10487
|
/** OAuth application's client ID. */
|
9645
10488
|
clientId: Scalars["String"];
|
@@ -9781,7 +10624,7 @@ export declare enum UserFlagType {
|
|
9781
10624
|
TryTriageDismissed = "tryTriageDismissed",
|
9782
10625
|
UpdatedSlackThreadSyncIntegration = "updatedSlackThreadSyncIntegration"
|
9783
10626
|
}
|
9784
|
-
/** Operations that can be applied to UserFlagType */
|
10627
|
+
/** Operations that can be applied to UserFlagType. */
|
9785
10628
|
export declare enum UserFlagUpdateOperation {
|
9786
10629
|
Clear = "clear",
|
9787
10630
|
Decr = "decr",
|
@@ -9791,7 +10634,7 @@ export declare enum UserFlagUpdateOperation {
|
|
9791
10634
|
/** A user notification subscription. */
|
9792
10635
|
export declare type UserNotificationSubscription = Entity & Node & NotificationSubscription & {
|
9793
10636
|
__typename?: "UserNotificationSubscription";
|
9794
|
-
/** Whether the subscription is active or not */
|
10637
|
+
/** Whether the subscription is active or not. */
|
9795
10638
|
active: Scalars["Boolean"];
|
9796
10639
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
9797
10640
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -9835,7 +10678,7 @@ export declare type UserPayload = {
|
|
9835
10678
|
/** The user that was created or updated. */
|
9836
10679
|
user?: Maybe<User>;
|
9837
10680
|
};
|
9838
|
-
/** The different permission roles available to users on an organization */
|
10681
|
+
/** The different permission roles available to users on an organization. */
|
9839
10682
|
export declare enum UserRoleType {
|
9840
10683
|
Admin = "admin",
|
9841
10684
|
Guest = "guest",
|
@@ -9955,6 +10798,8 @@ export declare type ViewPreferencesCreateInput = {
|
|
9955
10798
|
cycleId?: Maybe<Scalars["String"]>;
|
9956
10799
|
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
9957
10800
|
id?: Maybe<Scalars["String"]>;
|
10801
|
+
/** [Internal] The initiative these view preferences are associated with. */
|
10802
|
+
initiativeId?: Maybe<Scalars["String"]>;
|
9958
10803
|
/** The default parameters for the insight on that view. */
|
9959
10804
|
insights?: Maybe<Scalars["JSONObject"]>;
|
9960
10805
|
/** The label these view preferences are associated with. */
|
@@ -10007,6 +10852,8 @@ export declare enum ViewType {
|
|
10007
10852
|
CustomViews = "customViews",
|
10008
10853
|
Cycle = "cycle",
|
10009
10854
|
Inbox = "inbox",
|
10855
|
+
Initiative = "initiative",
|
10856
|
+
Initiatives = "initiatives",
|
10010
10857
|
Label = "label",
|
10011
10858
|
MyIssues = "myIssues",
|
10012
10859
|
MyIssuesActivity = "myIssuesActivity",
|
@@ -10025,12 +10872,13 @@ export declare enum ViewType {
|
|
10025
10872
|
RoadmapClosed = "roadmapClosed",
|
10026
10873
|
Roadmaps = "roadmaps",
|
10027
10874
|
Search = "search",
|
10875
|
+
SplitSearch = "splitSearch",
|
10028
10876
|
Teams = "teams",
|
10029
10877
|
Triage = "triage",
|
10030
10878
|
UserProfile = "userProfile",
|
10031
10879
|
UserProfileCreatedByUser = "userProfileCreatedByUser"
|
10032
10880
|
}
|
10033
|
-
/** A webhook used to send HTTP notifications over data updates */
|
10881
|
+
/** A webhook used to send HTTP notifications over data updates. */
|
10034
10882
|
export declare type Webhook = Node & {
|
10035
10883
|
__typename?: "Webhook";
|
10036
10884
|
/** Whether the Webhook is enabled for all public teams, including teams created after the webhook was created. */
|
@@ -10045,7 +10893,7 @@ export declare type Webhook = Node & {
|
|
10045
10893
|
enabled: Scalars["Boolean"];
|
10046
10894
|
/** The unique identifier of the entity. */
|
10047
10895
|
id: Scalars["ID"];
|
10048
|
-
/** Webhook label */
|
10896
|
+
/** Webhook label. */
|
10049
10897
|
label?: Maybe<Scalars["String"]>;
|
10050
10898
|
/** The resource types this webhook is subscribed to. */
|
10051
10899
|
resourceTypes: Array<Scalars["String"]>;
|
@@ -10059,7 +10907,7 @@ export declare type Webhook = Node & {
|
|
10059
10907
|
* been updated after creation.
|
10060
10908
|
*/
|
10061
10909
|
updatedAt: Scalars["DateTime"];
|
10062
|
-
/** Webhook URL */
|
10910
|
+
/** Webhook URL. */
|
10063
10911
|
url?: Maybe<Scalars["String"]>;
|
10064
10912
|
};
|
10065
10913
|
export declare type WebhookConnection = {
|
@@ -10373,13 +11221,13 @@ export declare type WorkspaceAuthorizedApplication = {
|
|
10373
11221
|
clientId: Scalars["String"];
|
10374
11222
|
/** Image of the application. */
|
10375
11223
|
imageUrl?: Maybe<Scalars["String"]>;
|
10376
|
-
/** UserIds and membership dates of everyone who has authorized the application with the set of scopes */
|
11224
|
+
/** UserIds and membership dates of everyone who has authorized the application with the set of scopes. */
|
10377
11225
|
memberships: Array<AuthMembership>;
|
10378
11226
|
/** Application name. */
|
10379
11227
|
name: Scalars["String"];
|
10380
11228
|
/** Scopes that are authorized for this application for a given user. */
|
10381
11229
|
scope: Array<Scalars["String"]>;
|
10382
|
-
/** Total number of members that authorized the application */
|
11230
|
+
/** Total number of members that authorized the application. */
|
10383
11231
|
totalMembers: Scalars["Float"];
|
10384
11232
|
/** Whether or not webhooks are enabled for the application. */
|
10385
11233
|
webhooksEnabled: Scalars["Boolean"];
|
@@ -10422,6 +11270,13 @@ export declare type ZendeskSettingsInput = {
|
|
10422
11270
|
/** The URL of the connected Zendesk organization. */
|
10423
11271
|
url: Scalars["String"];
|
10424
11272
|
};
|
11273
|
+
export declare type GitAutomationTargetBranchFragment = {
|
11274
|
+
__typename: "GitAutomationTargetBranch";
|
11275
|
+
} & Pick<GitAutomationTargetBranch, "updatedAt" | "branchPattern" | "archivedAt" | "createdAt" | "id" | "isRegex"> & {
|
11276
|
+
team: {
|
11277
|
+
__typename?: "Team";
|
11278
|
+
} & Pick<Team, "id">;
|
11279
|
+
};
|
10425
11280
|
declare type Entity_CustomViewNotificationSubscription_Fragment = {
|
10426
11281
|
__typename: "CustomViewNotificationSubscription";
|
10427
11282
|
} & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
|
@@ -10455,7 +11310,7 @@ export declare type ActorBotFragment = {
|
|
10455
11310
|
} & Pick<ActorBot, "avatarUrl" | "name" | "userDisplayName" | "subType" | "type" | "id">;
|
10456
11311
|
export declare type CommentFragment = {
|
10457
11312
|
__typename: "Comment";
|
10458
|
-
} & Pick<Comment, "url" | "reactionData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "resolvedAt" | "editedAt" | "id"> & {
|
11313
|
+
} & Pick<Comment, "url" | "reactionData" | "body" | "updatedAt" | "quotedText" | "archivedAt" | "createdAt" | "resolvedAt" | "editedAt" | "id"> & {
|
10459
11314
|
botActor?: Maybe<{
|
10460
11315
|
__typename?: "ActorBot";
|
10461
11316
|
} & ActorBotFragment>;
|
@@ -10465,6 +11320,9 @@ export declare type CommentFragment = {
|
|
10465
11320
|
documentContent?: Maybe<{
|
10466
11321
|
__typename?: "DocumentContent";
|
10467
11322
|
} & DocumentContentFragment>;
|
11323
|
+
externalUser?: Maybe<{
|
11324
|
+
__typename?: "ExternalUser";
|
11325
|
+
} & Pick<ExternalUser, "id">>;
|
10468
11326
|
issue?: Maybe<{
|
10469
11327
|
__typename?: "Issue";
|
10470
11328
|
} & Pick<Issue, "id">>;
|
@@ -10522,13 +11380,16 @@ export declare type CustomViewNotificationSubscriptionFragment = {
|
|
10522
11380
|
};
|
10523
11381
|
export declare type CustomViewFragment = {
|
10524
11382
|
__typename: "CustomView";
|
10525
|
-
} & Pick<CustomView, "color" | "description" | "filterData" | "filters" | "icon" | "updatedAt" | "modelName" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
|
11383
|
+
} & Pick<CustomView, "color" | "description" | "filterData" | "projectFilterData" | "filters" | "icon" | "updatedAt" | "modelName" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
|
10526
11384
|
team?: Maybe<{
|
10527
11385
|
__typename?: "Team";
|
10528
11386
|
} & Pick<Team, "id">>;
|
10529
11387
|
creator: {
|
10530
11388
|
__typename?: "User";
|
10531
11389
|
} & Pick<User, "id">;
|
11390
|
+
updatedBy: {
|
11391
|
+
__typename?: "User";
|
11392
|
+
} & Pick<User, "id">;
|
10532
11393
|
owner: {
|
10533
11394
|
__typename?: "User";
|
10534
11395
|
} & Pick<User, "id">;
|
@@ -10583,7 +11444,7 @@ export declare type DocumentContentHistoryFragment = {
|
|
10583
11444
|
};
|
10584
11445
|
export declare type DocumentFragment = {
|
10585
11446
|
__typename: "Document";
|
10586
|
-
} & Pick<Document, "color" | "title" | "slugId" | "
|
11447
|
+
} & Pick<Document, "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
10587
11448
|
lastAppliedTemplate?: Maybe<{
|
10588
11449
|
__typename?: "Template";
|
10589
11450
|
} & Pick<Template, "id">>;
|
@@ -10611,6 +11472,9 @@ export declare type CycleArchivePayloadFragment = {
|
|
10611
11472
|
__typename?: "Cycle";
|
10612
11473
|
} & Pick<Cycle, "id">>;
|
10613
11474
|
};
|
11475
|
+
export declare type InitiativeArchivePayloadFragment = {
|
11476
|
+
__typename: "InitiativeArchivePayload";
|
11477
|
+
} & Pick<InitiativeArchivePayload, "lastSyncId" | "success">;
|
10614
11478
|
export declare type IssueArchivePayloadFragment = {
|
10615
11479
|
__typename: "IssueArchivePayload";
|
10616
11480
|
} & Pick<IssueArchivePayload, "lastSyncId" | "success"> & {
|
@@ -10666,6 +11530,9 @@ declare type ArchivePayload_CycleArchivePayload_Fragment = {
|
|
10666
11530
|
declare type ArchivePayload_DeletePayload_Fragment = {
|
10667
11531
|
__typename: "DeletePayload";
|
10668
11532
|
} & Pick<DeletePayload, "lastSyncId" | "success"> & DeletePayloadFragment;
|
11533
|
+
declare type ArchivePayload_InitiativeArchivePayload_Fragment = {
|
11534
|
+
__typename: "InitiativeArchivePayload";
|
11535
|
+
} & Pick<InitiativeArchivePayload, "lastSyncId" | "success"> & InitiativeArchivePayloadFragment;
|
10669
11536
|
declare type ArchivePayload_IssueArchivePayload_Fragment = {
|
10670
11537
|
__typename: "IssueArchivePayload";
|
10671
11538
|
} & Pick<IssueArchivePayload, "lastSyncId" | "success"> & IssueArchivePayloadFragment;
|
@@ -10684,7 +11551,7 @@ declare type ArchivePayload_TeamArchivePayload_Fragment = {
|
|
10684
11551
|
declare type ArchivePayload_WorkflowStateArchivePayload_Fragment = {
|
10685
11552
|
__typename: "WorkflowStateArchivePayload";
|
10686
11553
|
} & Pick<WorkflowStateArchivePayload, "lastSyncId" | "success"> & WorkflowStateArchivePayloadFragment;
|
10687
|
-
export declare type ArchivePayloadFragment = ArchivePayload_AttachmentArchivePayload_Fragment | ArchivePayload_CycleArchivePayload_Fragment | ArchivePayload_DeletePayload_Fragment | ArchivePayload_IssueArchivePayload_Fragment | ArchivePayload_NotificationArchivePayload_Fragment | ArchivePayload_ProjectArchivePayload_Fragment | ArchivePayload_RoadmapArchivePayload_Fragment | ArchivePayload_TeamArchivePayload_Fragment | ArchivePayload_WorkflowStateArchivePayload_Fragment;
|
11554
|
+
export declare type ArchivePayloadFragment = ArchivePayload_AttachmentArchivePayload_Fragment | ArchivePayload_CycleArchivePayload_Fragment | ArchivePayload_DeletePayload_Fragment | ArchivePayload_InitiativeArchivePayload_Fragment | ArchivePayload_IssueArchivePayload_Fragment | ArchivePayload_NotificationArchivePayload_Fragment | ArchivePayload_ProjectArchivePayload_Fragment | ArchivePayload_RoadmapArchivePayload_Fragment | ArchivePayload_TeamArchivePayload_Fragment | ArchivePayload_WorkflowStateArchivePayload_Fragment;
|
10688
11555
|
export declare type DeletePayloadFragment = {
|
10689
11556
|
__typename: "DeletePayload";
|
10690
11557
|
} & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
|
@@ -10726,6 +11593,9 @@ declare type Notification_IssueNotification_Fragment = {
|
|
10726
11593
|
botActor?: Maybe<{
|
10727
11594
|
__typename?: "ActorBot";
|
10728
11595
|
} & ActorBotFragment>;
|
11596
|
+
externalUserActor?: Maybe<{
|
11597
|
+
__typename?: "ExternalUser";
|
11598
|
+
} & Pick<ExternalUser, "id">>;
|
10729
11599
|
actor?: Maybe<{
|
10730
11600
|
__typename?: "User";
|
10731
11601
|
} & Pick<User, "id">>;
|
@@ -10739,6 +11609,9 @@ declare type Notification_OauthClientApprovalNotification_Fragment = {
|
|
10739
11609
|
botActor?: Maybe<{
|
10740
11610
|
__typename?: "ActorBot";
|
10741
11611
|
} & ActorBotFragment>;
|
11612
|
+
externalUserActor?: Maybe<{
|
11613
|
+
__typename?: "ExternalUser";
|
11614
|
+
} & Pick<ExternalUser, "id">>;
|
10742
11615
|
actor?: Maybe<{
|
10743
11616
|
__typename?: "User";
|
10744
11617
|
} & Pick<User, "id">>;
|
@@ -10752,6 +11625,9 @@ declare type Notification_ProjectNotification_Fragment = {
|
|
10752
11625
|
botActor?: Maybe<{
|
10753
11626
|
__typename?: "ActorBot";
|
10754
11627
|
} & ActorBotFragment>;
|
11628
|
+
externalUserActor?: Maybe<{
|
11629
|
+
__typename?: "ExternalUser";
|
11630
|
+
} & Pick<ExternalUser, "id">>;
|
10755
11631
|
actor?: Maybe<{
|
10756
11632
|
__typename?: "User";
|
10757
11633
|
} & Pick<User, "id">>;
|
@@ -10791,6 +11667,9 @@ export declare type ProjectNotificationFragment = {
|
|
10791
11667
|
botActor?: Maybe<{
|
10792
11668
|
__typename?: "ActorBot";
|
10793
11669
|
} & ActorBotFragment>;
|
11670
|
+
externalUserActor?: Maybe<{
|
11671
|
+
__typename?: "ExternalUser";
|
11672
|
+
} & Pick<ExternalUser, "id">>;
|
10794
11673
|
project: {
|
10795
11674
|
__typename?: "Project";
|
10796
11675
|
} & Pick<Project, "id">;
|
@@ -10974,6 +11853,9 @@ export declare type TriageResponsibilityFragment = {
|
|
10974
11853
|
team: {
|
10975
11854
|
__typename?: "Team";
|
10976
11855
|
} & Pick<Team, "id">;
|
11856
|
+
timeSchedule: {
|
11857
|
+
__typename?: "TimeSchedule";
|
11858
|
+
} & Pick<TimeSchedule, "id">;
|
10977
11859
|
};
|
10978
11860
|
export declare type TemplateFragment = {
|
10979
11861
|
__typename: "Template";
|
@@ -10988,19 +11870,32 @@ export declare type TemplateFragment = {
|
|
10988
11870
|
__typename?: "User";
|
10989
11871
|
} & Pick<User, "id">>;
|
10990
11872
|
};
|
11873
|
+
export declare type TimeScheduleFragment = {
|
11874
|
+
__typename: "TimeSchedule";
|
11875
|
+
} & Pick<TimeSchedule, "externalUrl" | "externalId" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id" | "error"> & {
|
11876
|
+
integration?: Maybe<{
|
11877
|
+
__typename?: "Integration";
|
11878
|
+
} & Pick<Integration, "id">>;
|
11879
|
+
entries: Array<{
|
11880
|
+
__typename?: "TimeScheduleEntry";
|
11881
|
+
} & TimeScheduleEntryFragment>;
|
11882
|
+
};
|
10991
11883
|
export declare type GitAutomationStateFragment = {
|
10992
11884
|
__typename: "GitAutomationState";
|
10993
|
-
} & Pick<GitAutomationState, "updatedAt" | "
|
11885
|
+
} & Pick<GitAutomationState, "updatedAt" | "archivedAt" | "createdAt" | "id" | "branchPattern"> & {
|
10994
11886
|
state?: Maybe<{
|
10995
11887
|
__typename?: "WorkflowState";
|
10996
11888
|
} & Pick<WorkflowState, "id">>;
|
11889
|
+
targetBranch?: Maybe<{
|
11890
|
+
__typename?: "GitAutomationTargetBranch";
|
11891
|
+
} & GitAutomationTargetBranchFragment>;
|
10997
11892
|
team: {
|
10998
11893
|
__typename?: "Team";
|
10999
11894
|
} & Pick<Team, "id">;
|
11000
11895
|
};
|
11001
11896
|
export declare type ProjectUpdateFragment = {
|
11002
11897
|
__typename: "ProjectUpdate";
|
11003
|
-
} & Pick<ProjectUpdate, "url" | "diffMarkdown" | "diff" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body"> & {
|
11898
|
+
} & Pick<ProjectUpdate, "url" | "diffMarkdown" | "diff" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body" | "isDiffHidden"> & {
|
11004
11899
|
project: {
|
11005
11900
|
__typename?: "Project";
|
11006
11901
|
} & Pick<Project, "id">;
|
@@ -11010,7 +11905,7 @@ export declare type ProjectUpdateFragment = {
|
|
11010
11905
|
};
|
11011
11906
|
export declare type UserAccountFragment = {
|
11012
11907
|
__typename: "UserAccount";
|
11013
|
-
} & Pick<UserAccount, "service" | "id" | "archivedAt" | "createdAt" | "updatedAt" | "email" | "name">;
|
11908
|
+
} & Pick<UserAccount, "service" | "id" | "archivedAt" | "createdAt" | "updatedAt" | "email" | "name" | "authTokenLinkDisabled">;
|
11014
11909
|
export declare type UserNotificationSubscriptionFragment = {
|
11015
11910
|
__typename: "UserNotificationSubscription";
|
11016
11911
|
} & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
|
@@ -11038,7 +11933,7 @@ export declare type UserNotificationSubscriptionFragment = {
|
|
11038
11933
|
};
|
11039
11934
|
export declare type AuthUserFragment = {
|
11040
11935
|
__typename: "AuthUser";
|
11041
|
-
} & Pick<AuthUser, "avatarUrl" | "displayName" | "email" | "name" | "active" | "id"> & {
|
11936
|
+
} & Pick<AuthUser, "avatarUrl" | "displayName" | "email" | "name" | "userAccountId" | "active" | "id"> & {
|
11042
11937
|
organization: {
|
11043
11938
|
__typename?: "AuthOrganization";
|
11044
11939
|
} & AuthOrganizationFragment;
|
@@ -11068,10 +11963,16 @@ export declare type EmailIntakeAddressFragment = {
|
|
11068
11963
|
team: {
|
11069
11964
|
__typename?: "Team";
|
11070
11965
|
} & Pick<Team, "id">;
|
11966
|
+
template?: Maybe<{
|
11967
|
+
__typename?: "Template";
|
11968
|
+
} & Pick<Template, "id">>;
|
11071
11969
|
creator?: Maybe<{
|
11072
11970
|
__typename?: "User";
|
11073
11971
|
} & Pick<User, "id">>;
|
11074
11972
|
};
|
11973
|
+
export declare type ExternalUserFragment = {
|
11974
|
+
__typename: "ExternalUser";
|
11975
|
+
} & Pick<ExternalUser, "avatarUrl" | "displayName" | "email" | "name" | "updatedAt" | "lastSeen" | "archivedAt" | "createdAt" | "id">;
|
11075
11976
|
export declare type ProjectLinkFragment = {
|
11076
11977
|
__typename: "ProjectLink";
|
11077
11978
|
} & Pick<ProjectLink, "updatedAt" | "url" | "label" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
@@ -11095,6 +11996,9 @@ export declare type IntegrationFragment = {
|
|
11095
11996
|
__typename?: "User";
|
11096
11997
|
} & Pick<User, "id">;
|
11097
11998
|
};
|
11999
|
+
export declare type AuthOrganizationInviteFragment = {
|
12000
|
+
__typename: "AuthOrganizationInvite";
|
12001
|
+
} & Pick<AuthOrganizationInvite, "id">;
|
11098
12002
|
export declare type OrganizationInviteFragment = {
|
11099
12003
|
__typename: "OrganizationInvite";
|
11100
12004
|
} & Pick<OrganizationInvite, "metadata" | "external" | "email" | "updatedAt" | "archivedAt" | "createdAt" | "acceptedAt" | "expiresAt" | "id"> & {
|
@@ -11114,6 +12018,9 @@ export declare type IssueNotificationFragment = {
|
|
11114
12018
|
comment?: Maybe<{
|
11115
12019
|
__typename?: "Comment";
|
11116
12020
|
} & Pick<Comment, "id">>;
|
12021
|
+
externalUserActor?: Maybe<{
|
12022
|
+
__typename?: "ExternalUser";
|
12023
|
+
} & Pick<ExternalUser, "id">>;
|
11117
12024
|
issue: {
|
11118
12025
|
__typename?: "Issue";
|
11119
12026
|
} & Pick<Issue, "id">;
|
@@ -11149,6 +12056,9 @@ export declare type IssueFragment = {
|
|
11149
12056
|
cycle?: Maybe<{
|
11150
12057
|
__typename?: "Cycle";
|
11151
12058
|
} & Pick<Cycle, "id">>;
|
12059
|
+
externalUserCreator?: Maybe<{
|
12060
|
+
__typename?: "ExternalUser";
|
12061
|
+
} & Pick<ExternalUser, "id">>;
|
11152
12062
|
lastAppliedTemplate?: Maybe<{
|
11153
12063
|
__typename?: "Template";
|
11154
12064
|
} & Pick<Template, "id">>;
|
@@ -11189,6 +12099,9 @@ export declare type OauthClientApprovalNotificationFragment = {
|
|
11189
12099
|
botActor?: Maybe<{
|
11190
12100
|
__typename?: "ActorBot";
|
11191
12101
|
} & ActorBotFragment>;
|
12102
|
+
externalUserActor?: Maybe<{
|
12103
|
+
__typename?: "ExternalUser";
|
12104
|
+
} & Pick<ExternalUser, "id">>;
|
11192
12105
|
actor?: Maybe<{
|
11193
12106
|
__typename?: "User";
|
11194
12107
|
} & Pick<User, "id">>;
|
@@ -11205,7 +12118,7 @@ export declare type OrganizationFragment = {
|
|
11205
12118
|
};
|
11206
12119
|
export declare type AuthOrganizationFragment = {
|
11207
12120
|
__typename: "AuthOrganization";
|
11208
|
-
} & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
|
12121
|
+
} & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
|
11209
12122
|
export declare type TeamFragment = {
|
11210
12123
|
__typename: "Team";
|
11211
12124
|
} & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "issueOrderingNoPriorityFirst" | "private" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueSortOrderDefaultToBottom"> & {
|
@@ -11316,6 +12229,9 @@ export declare type AttachmentFragment = {
|
|
11316
12229
|
issue: {
|
11317
12230
|
__typename?: "Issue";
|
11318
12231
|
} & Pick<Issue, "id">;
|
12232
|
+
externalUserCreator?: Maybe<{
|
12233
|
+
__typename?: "ExternalUser";
|
12234
|
+
} & Pick<ExternalUser, "id">>;
|
11319
12235
|
};
|
11320
12236
|
export declare type IssueRelationHistoryPayloadFragment = {
|
11321
12237
|
__typename: "IssueRelationHistoryPayload";
|
@@ -11366,6 +12282,9 @@ export declare type IssueLabelFragment = {
|
|
11366
12282
|
__typename?: "User";
|
11367
12283
|
} & Pick<User, "id">>;
|
11368
12284
|
};
|
12285
|
+
export declare type TeamRepoMappingFragment = {
|
12286
|
+
__typename: "TeamRepoMapping";
|
12287
|
+
} & Pick<TeamRepoMapping, "gitHubRepoId" | "linearTeamId" | "bidirectional" | "default">;
|
11369
12288
|
export declare type JiraProjectDataFragment = {
|
11370
12289
|
__typename: "JiraProjectData";
|
11371
12290
|
} & Pick<JiraProjectData, "id" | "key" | "name">;
|
@@ -11578,7 +12497,7 @@ export declare type ApplicationFragment = {
|
|
11578
12497
|
} & Pick<Application, "name" | "imageUrl" | "description" | "developer" | "id" | "clientId" | "developerUrl">;
|
11579
12498
|
export declare type GithubOrgFragment = {
|
11580
12499
|
__typename: "GithubOrg";
|
11581
|
-
} & Pick<GithubOrg, "id" | "login" | "
|
12500
|
+
} & Pick<GithubOrg, "id" | "login" | "isPersonal"> & {
|
11582
12501
|
repositories: Array<{
|
11583
12502
|
__typename?: "GithubRepo";
|
11584
12503
|
} & GithubRepoFragment>;
|
@@ -11670,9 +12589,6 @@ export declare type IntegrationSettingsFragment = {
|
|
11670
12589
|
__typename?: "ZendeskSettings";
|
11671
12590
|
} & ZendeskSettingsFragment>;
|
11672
12591
|
};
|
11673
|
-
export declare type SamlConfigurationPayloadFragment = {
|
11674
|
-
__typename: "SamlConfigurationPayload";
|
11675
|
-
} & Pick<SamlConfigurationPayload, "ssoBinding" | "ssoEndpoint" | "ssoSignAlgo" | "issuerEntityId">;
|
11676
12592
|
export declare type PaidSubscriptionFragment = {
|
11677
12593
|
__typename: "PaidSubscription";
|
11678
12594
|
} & Pick<PaidSubscription, "collectionMethod" | "canceledAt" | "nextBillingAt" | "updatedAt" | "seatsMaximum" | "seatsMinimum" | "seats" | "pendingChangeType" | "type" | "archivedAt" | "createdAt" | "id"> & {
|
@@ -11690,9 +12606,6 @@ export declare type UserSettingsFragment = {
|
|
11690
12606
|
export declare type JiraLinearMappingFragment = {
|
11691
12607
|
__typename: "JiraLinearMapping";
|
11692
12608
|
} & Pick<JiraLinearMapping, "jiraProjectId" | "linearTeamId" | "bidirectional" | "default">;
|
11693
|
-
export declare type TeamRepoMappingFragment = {
|
11694
|
-
__typename: "TeamRepoMapping";
|
11695
|
-
} & Pick<TeamRepoMapping, "gitHubRepoId" | "linearTeamId">;
|
11696
12609
|
export declare type SlackAsksTeamSettingsFragment = {
|
11697
12610
|
__typename: "SlackAsksTeamSettings";
|
11698
12611
|
} & Pick<SlackAsksTeamSettings, "id" | "hasDefaultAsk">;
|
@@ -11822,22 +12735,6 @@ export declare type AuthApiKeyPayloadFragment = {
|
|
11822
12735
|
__typename?: "AuthApiKey";
|
11823
12736
|
} & AuthApiKeyFragment;
|
11824
12737
|
};
|
11825
|
-
export declare type AuthCreateOrJoinOrganizationResponseFragment = {
|
11826
|
-
__typename: "AuthCreateOrJoinOrganizationResponse";
|
11827
|
-
} & Pick<AuthCreateOrJoinOrganizationResponse, "grantDomainAccess"> & {
|
11828
|
-
authOrganization: {
|
11829
|
-
__typename?: "AuthOrganization";
|
11830
|
-
} & AuthOrganizationFragment;
|
11831
|
-
authUser: {
|
11832
|
-
__typename?: "AuthUser";
|
11833
|
-
} & AuthUserFragment;
|
11834
|
-
organization: {
|
11835
|
-
__typename?: "AuthOrganization";
|
11836
|
-
} & AuthOrganizationFragment;
|
11837
|
-
user: {
|
11838
|
-
__typename?: "AuthUser";
|
11839
|
-
} & AuthUserFragment;
|
11840
|
-
};
|
11841
12738
|
export declare type AuthIntegrationFragment = {
|
11842
12739
|
__typename: "AuthIntegration";
|
11843
12740
|
} & Pick<AuthIntegration, "id">;
|
@@ -11856,19 +12753,19 @@ export declare type AuthOauthClientWithTokensFragment = {
|
|
11856
12753
|
};
|
11857
12754
|
export declare type AuthOrganizationDomainFragment = {
|
11858
12755
|
__typename: "AuthOrganizationDomain";
|
11859
|
-
} & Pick<AuthOrganizationDomain, "id">;
|
12756
|
+
} & Pick<AuthOrganizationDomain, "id" | "claimed" | "name" | "organizationId" | "verified">;
|
11860
12757
|
export declare type AuthResolverResponseFragment = {
|
11861
12758
|
__typename: "AuthResolverResponse";
|
11862
|
-
} & Pick<AuthResolverResponse, "
|
12759
|
+
} & Pick<AuthResolverResponse, "token" | "email" | "lastUsedOrganizationId" | "allowDomainAccess" | "id"> & {
|
12760
|
+
users: Array<{
|
12761
|
+
__typename?: "AuthUser";
|
12762
|
+
} & AuthUserFragment>;
|
11863
12763
|
lockedOrganizations?: Maybe<Array<{
|
11864
12764
|
__typename?: "AuthOrganization";
|
11865
12765
|
} & AuthOrganizationFragment>>;
|
11866
12766
|
availableOrganizations?: Maybe<Array<{
|
11867
12767
|
__typename?: "AuthOrganization";
|
11868
12768
|
} & AuthOrganizationFragment>>;
|
11869
|
-
users: Array<{
|
11870
|
-
__typename?: "AuthUser";
|
11871
|
-
} & AuthUserFragment>;
|
11872
12769
|
};
|
11873
12770
|
export declare type AuthSuccessPayloadFragment = {
|
11874
12771
|
__typename: "AuthSuccessPayload";
|
@@ -12001,7 +12898,7 @@ export declare type DocumentSearchPayloadFragment = {
|
|
12001
12898
|
};
|
12002
12899
|
export declare type DocumentSearchResultFragment = {
|
12003
12900
|
__typename: "DocumentSearchResult";
|
12004
|
-
} & Pick<DocumentSearchResult, "metadata" | "color" | "title" | "slugId" | "
|
12901
|
+
} & Pick<DocumentSearchResult, "metadata" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
12005
12902
|
lastAppliedTemplate?: Maybe<{
|
12006
12903
|
__typename?: "Template";
|
12007
12904
|
} & Pick<Template, "id">>;
|
@@ -12025,6 +12922,13 @@ export declare type DocumentSearchResultConnectionFragment = {
|
|
12025
12922
|
__typename?: "PageInfo";
|
12026
12923
|
} & PageInfoFragment;
|
12027
12924
|
};
|
12925
|
+
export declare type EmailIntakeAddressPayloadFragment = {
|
12926
|
+
__typename: "EmailIntakeAddressPayload";
|
12927
|
+
} & Pick<EmailIntakeAddressPayload, "lastSyncId" | "success"> & {
|
12928
|
+
emailIntakeAddress: {
|
12929
|
+
__typename?: "EmailIntakeAddress";
|
12930
|
+
} & EmailIntakeAddressFragment;
|
12931
|
+
};
|
12028
12932
|
export declare type EmailUnsubscribePayloadFragment = {
|
12029
12933
|
__typename: "EmailUnsubscribePayload";
|
12030
12934
|
} & Pick<EmailUnsubscribePayload, "success">;
|
@@ -12048,6 +12952,16 @@ export declare type EmojiPayloadFragment = {
|
|
12048
12952
|
__typename?: "Emoji";
|
12049
12953
|
} & Pick<Emoji, "id">;
|
12050
12954
|
};
|
12955
|
+
export declare type ExternalUserConnectionFragment = {
|
12956
|
+
__typename: "ExternalUserConnection";
|
12957
|
+
} & {
|
12958
|
+
nodes: Array<{
|
12959
|
+
__typename?: "ExternalUser";
|
12960
|
+
} & ExternalUserFragment>;
|
12961
|
+
pageInfo: {
|
12962
|
+
__typename?: "PageInfo";
|
12963
|
+
} & PageInfoFragment;
|
12964
|
+
};
|
12051
12965
|
export declare type FavoriteConnectionFragment = {
|
12052
12966
|
__typename: "FavoriteConnection";
|
12053
12967
|
} & {
|
@@ -12085,6 +12999,13 @@ export declare type GitAutomationStatePayloadFragment = {
|
|
12085
12999
|
__typename?: "GitAutomationState";
|
12086
13000
|
} & GitAutomationStateFragment;
|
12087
13001
|
};
|
13002
|
+
export declare type GitAutomationTargetBranchPayloadFragment = {
|
13003
|
+
__typename: "GitAutomationTargetBranchPayload";
|
13004
|
+
} & Pick<GitAutomationTargetBranchPayload, "lastSyncId" | "success"> & {
|
13005
|
+
targetBranch: {
|
13006
|
+
__typename?: "GitAutomationTargetBranch";
|
13007
|
+
} & GitAutomationTargetBranchFragment;
|
13008
|
+
};
|
12088
13009
|
export declare type GitHubCommitIntegrationPayloadFragment = {
|
12089
13010
|
__typename: "GitHubCommitIntegrationPayload";
|
12090
13011
|
} & Pick<GitHubCommitIntegrationPayload, "lastSyncId" | "webhookSecret" | "success"> & {
|
@@ -12105,6 +13026,9 @@ export declare type IntegrationConnectionFragment = {
|
|
12105
13026
|
__typename?: "PageInfo";
|
12106
13027
|
} & PageInfoFragment;
|
12107
13028
|
};
|
13029
|
+
export declare type IntegrationHasScopesPayloadFragment = {
|
13030
|
+
__typename: "IntegrationHasScopesPayload";
|
13031
|
+
} & Pick<IntegrationHasScopesPayload, "missingScopes" | "hasAllScopes">;
|
12108
13032
|
export declare type IntegrationPayloadFragment = {
|
12109
13033
|
__typename: "IntegrationPayload";
|
12110
13034
|
} & Pick<IntegrationPayload, "lastSyncId" | "success"> & {
|
@@ -12262,6 +13186,9 @@ export declare type IssueSearchResultFragment = {
|
|
12262
13186
|
cycle?: Maybe<{
|
12263
13187
|
__typename?: "Cycle";
|
12264
13188
|
} & Pick<Cycle, "id">>;
|
13189
|
+
externalUserCreator?: Maybe<{
|
13190
|
+
__typename?: "ExternalUser";
|
13191
|
+
} & Pick<ExternalUser, "id">>;
|
12265
13192
|
lastAppliedTemplate?: Maybe<{
|
12266
13193
|
__typename?: "Template";
|
12267
13194
|
} & Pick<Template, "id">>;
|
@@ -12354,12 +13281,24 @@ declare type Node_Emoji_Fragment = {
|
|
12354
13281
|
declare type Node_ExternalUser_Fragment = {
|
12355
13282
|
__typename: "ExternalUser";
|
12356
13283
|
} & Pick<ExternalUser, "id">;
|
13284
|
+
declare type Node_Facet_Fragment = {
|
13285
|
+
__typename: "Facet";
|
13286
|
+
} & Pick<Facet, "id">;
|
12357
13287
|
declare type Node_Favorite_Fragment = {
|
12358
13288
|
__typename: "Favorite";
|
12359
13289
|
} & Pick<Favorite, "id">;
|
12360
13290
|
declare type Node_GitAutomationState_Fragment = {
|
12361
13291
|
__typename: "GitAutomationState";
|
12362
13292
|
} & Pick<GitAutomationState, "id">;
|
13293
|
+
declare type Node_GitAutomationTargetBranch_Fragment = {
|
13294
|
+
__typename: "GitAutomationTargetBranch";
|
13295
|
+
} & Pick<GitAutomationTargetBranch, "id">;
|
13296
|
+
declare type Node_Initiative_Fragment = {
|
13297
|
+
__typename: "Initiative";
|
13298
|
+
} & Pick<Initiative, "id">;
|
13299
|
+
declare type Node_InitiativeToProject_Fragment = {
|
13300
|
+
__typename: "InitiativeToProject";
|
13301
|
+
} & Pick<InitiativeToProject, "id">;
|
12363
13302
|
declare type Node_Integration_Fragment = {
|
12364
13303
|
__typename: "Integration";
|
12365
13304
|
} & Pick<Integration, "id">;
|
@@ -12435,6 +13374,9 @@ declare type Node_ProjectNotificationSubscription_Fragment = {
|
|
12435
13374
|
declare type Node_ProjectSearchResult_Fragment = {
|
12436
13375
|
__typename: "ProjectSearchResult";
|
12437
13376
|
} & Pick<ProjectSearchResult, "id">;
|
13377
|
+
declare type Node_ProjectStatus_Fragment = {
|
13378
|
+
__typename: "ProjectStatus";
|
13379
|
+
} & Pick<ProjectStatus, "id">;
|
12438
13380
|
declare type Node_ProjectUpdate_Fragment = {
|
12439
13381
|
__typename: "ProjectUpdate";
|
12440
13382
|
} & Pick<ProjectUpdate, "id">;
|
@@ -12465,6 +13407,9 @@ declare type Node_TeamNotificationSubscription_Fragment = {
|
|
12465
13407
|
declare type Node_Template_Fragment = {
|
12466
13408
|
__typename: "Template";
|
12467
13409
|
} & Pick<Template, "id">;
|
13410
|
+
declare type Node_TimeSchedule_Fragment = {
|
13411
|
+
__typename: "TimeSchedule";
|
13412
|
+
} & Pick<TimeSchedule, "id">;
|
12468
13413
|
declare type Node_TriageResponsibility_Fragment = {
|
12469
13414
|
__typename: "TriageResponsibility";
|
12470
13415
|
} & Pick<TriageResponsibility, "id">;
|
@@ -12492,7 +13437,7 @@ declare type Node_WorkflowDefinition_Fragment = {
|
|
12492
13437
|
declare type Node_WorkflowState_Fragment = {
|
12493
13438
|
__typename: "WorkflowState";
|
12494
13439
|
} & Pick<WorkflowState, "id">;
|
12495
|
-
export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentContentHistory_Fragment | Node_DocumentSearchResult_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_ExternalUser_Fragment | Node_Favorite_Fragment | Node_GitAutomationState_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
|
13440
|
+
export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentContentHistory_Fragment | Node_DocumentSearchResult_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_ExternalUser_Fragment | Node_Facet_Fragment | Node_Favorite_Fragment | Node_GitAutomationState_Fragment | Node_GitAutomationTargetBranch_Fragment | Node_Initiative_Fragment | Node_InitiativeToProject_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectStatus_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TimeSchedule_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
|
12496
13441
|
export declare type NotificationBatchActionPayloadFragment = {
|
12497
13442
|
__typename: "NotificationBatchActionPayload";
|
12498
13443
|
} & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
|
@@ -12578,7 +13523,14 @@ export declare type OauthClientConnectionFragment = {
|
|
12578
13523
|
};
|
12579
13524
|
export declare type OauthTokenFragment = {
|
12580
13525
|
__typename: "OauthToken";
|
12581
|
-
} & Pick<OauthToken, "createdAt" | "id"
|
13526
|
+
} & Pick<OauthToken, "userId" | "clientId" | "createdAt" | "id" | "revokedAt"> & {
|
13527
|
+
user: {
|
13528
|
+
__typename?: "AuthUser";
|
13529
|
+
} & AuthUserFragment;
|
13530
|
+
client: {
|
13531
|
+
__typename?: "AuthOauthClient";
|
13532
|
+
} & AuthOauthClientFragment;
|
13533
|
+
};
|
12582
13534
|
export declare type OrganizationCancelDeletePayloadFragment = {
|
12583
13535
|
__typename: "OrganizationCancelDeletePayload";
|
12584
13536
|
} & Pick<OrganizationCancelDeletePayload, "success">;
|
@@ -12841,9 +13793,6 @@ export declare type RoadmapToProjectPayloadFragment = {
|
|
12841
13793
|
__typename?: "RoadmapToProject";
|
12842
13794
|
} & Pick<RoadmapToProject, "id">;
|
12843
13795
|
};
|
12844
|
-
export declare type SamlConfigurationFragment = {
|
12845
|
-
__typename: "SamlConfiguration";
|
12846
|
-
} & Pick<SamlConfiguration, "ssoBinding" | "ssoEndpoint" | "ssoSignAlgo" | "issuerEntityId" | "ssoSigningCert">;
|
12847
13796
|
export declare type SlackChannelConnectPayloadFragment = {
|
12848
13797
|
__typename: "SlackChannelConnectPayload";
|
12849
13798
|
} & Pick<SlackChannelConnectPayload, "lastSyncId" | "nudgeToConnectMainSlackIntegration" | "nudgeToUpdateMainSlackIntegration" | "addBot" | "success"> & {
|
@@ -12908,6 +13857,26 @@ export declare type TemplatePayloadFragment = {
|
|
12908
13857
|
__typename?: "Template";
|
12909
13858
|
} & Pick<Template, "id">;
|
12910
13859
|
};
|
13860
|
+
export declare type TimeScheduleConnectionFragment = {
|
13861
|
+
__typename: "TimeScheduleConnection";
|
13862
|
+
} & {
|
13863
|
+
nodes: Array<{
|
13864
|
+
__typename?: "TimeSchedule";
|
13865
|
+
} & TimeScheduleFragment>;
|
13866
|
+
pageInfo: {
|
13867
|
+
__typename?: "PageInfo";
|
13868
|
+
} & PageInfoFragment;
|
13869
|
+
};
|
13870
|
+
export declare type TimeScheduleEntryFragment = {
|
13871
|
+
__typename: "TimeScheduleEntry";
|
13872
|
+
} & Pick<TimeScheduleEntry, "userId" | "userEmail" | "endsAt" | "startsAt">;
|
13873
|
+
export declare type TimeSchedulePayloadFragment = {
|
13874
|
+
__typename: "TimeSchedulePayload";
|
13875
|
+
} & Pick<TimeSchedulePayload, "lastSyncId" | "success"> & {
|
13876
|
+
timeSchedule: {
|
13877
|
+
__typename?: "TimeSchedule";
|
13878
|
+
} & Pick<TimeSchedule, "id">;
|
13879
|
+
};
|
12911
13880
|
export declare type TriageResponsibilityConnectionFragment = {
|
12912
13881
|
__typename: "TriageResponsibilityConnection";
|
12913
13882
|
} & {
|
@@ -13386,7 +14355,9 @@ export declare type AvailableUsersQuery = {
|
|
13386
14355
|
} & AuthResolverResponseFragment;
|
13387
14356
|
};
|
13388
14357
|
export declare type CommentQueryVariables = Exact<{
|
13389
|
-
|
14358
|
+
hash?: Maybe<Scalars["String"]>;
|
14359
|
+
id?: Maybe<Scalars["String"]>;
|
14360
|
+
issueId?: Maybe<Scalars["String"]>;
|
13390
14361
|
}>;
|
13391
14362
|
export declare type CommentQuery = {
|
13392
14363
|
__typename?: "Query";
|
@@ -13396,7 +14367,9 @@ export declare type CommentQuery = {
|
|
13396
14367
|
} & CommentFragment;
|
13397
14368
|
};
|
13398
14369
|
export declare type Comment_BotActorQueryVariables = Exact<{
|
13399
|
-
|
14370
|
+
hash?: Maybe<Scalars["String"]>;
|
14371
|
+
id?: Maybe<Scalars["String"]>;
|
14372
|
+
issueId?: Maybe<Scalars["String"]>;
|
13400
14373
|
}>;
|
13401
14374
|
export declare type Comment_BotActorQuery = {
|
13402
14375
|
__typename?: "Query";
|
@@ -13410,7 +14383,9 @@ export declare type Comment_BotActorQuery = {
|
|
13410
14383
|
};
|
13411
14384
|
};
|
13412
14385
|
export declare type Comment_ChildrenQueryVariables = Exact<{
|
13413
|
-
|
14386
|
+
hash?: Maybe<Scalars["String"]>;
|
14387
|
+
id?: Maybe<Scalars["String"]>;
|
14388
|
+
issueId?: Maybe<Scalars["String"]>;
|
13414
14389
|
after?: Maybe<Scalars["String"]>;
|
13415
14390
|
before?: Maybe<Scalars["String"]>;
|
13416
14391
|
filter?: Maybe<CommentFilter>;
|
@@ -13431,7 +14406,9 @@ export declare type Comment_ChildrenQuery = {
|
|
13431
14406
|
};
|
13432
14407
|
};
|
13433
14408
|
export declare type Comment_DocumentContentQueryVariables = Exact<{
|
13434
|
-
|
14409
|
+
hash?: Maybe<Scalars["String"]>;
|
14410
|
+
id?: Maybe<Scalars["String"]>;
|
14411
|
+
issueId?: Maybe<Scalars["String"]>;
|
13435
14412
|
}>;
|
13436
14413
|
export declare type Comment_DocumentContentQuery = {
|
13437
14414
|
__typename?: "Query";
|
@@ -13470,6 +14447,27 @@ export declare type CustomViewQuery = {
|
|
13470
14447
|
__typename?: "CustomView";
|
13471
14448
|
} & CustomViewFragment;
|
13472
14449
|
};
|
14450
|
+
export declare type CustomView_IssuesQueryVariables = Exact<{
|
14451
|
+
id: Scalars["String"];
|
14452
|
+
after?: Maybe<Scalars["String"]>;
|
14453
|
+
before?: Maybe<Scalars["String"]>;
|
14454
|
+
filter?: Maybe<IssueFilter>;
|
14455
|
+
first?: Maybe<Scalars["Int"]>;
|
14456
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
14457
|
+
last?: Maybe<Scalars["Int"]>;
|
14458
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
14459
|
+
}>;
|
14460
|
+
export declare type CustomView_IssuesQuery = {
|
14461
|
+
__typename?: "Query";
|
14462
|
+
} & {
|
14463
|
+
customView: {
|
14464
|
+
__typename?: "CustomView";
|
14465
|
+
} & {
|
14466
|
+
issues: {
|
14467
|
+
__typename?: "IssueConnection";
|
14468
|
+
} & IssueConnectionFragment;
|
14469
|
+
};
|
14470
|
+
};
|
13473
14471
|
export declare type CustomViewHasSubscribersQueryVariables = Exact<{
|
13474
14472
|
id: Scalars["String"];
|
13475
14473
|
}>;
|
@@ -13586,6 +14584,7 @@ export declare type DocumentContentHistoryQuery = {
|
|
13586
14584
|
export declare type DocumentsQueryVariables = Exact<{
|
13587
14585
|
after?: Maybe<Scalars["String"]>;
|
13588
14586
|
before?: Maybe<Scalars["String"]>;
|
14587
|
+
filter?: Maybe<DocumentFilter>;
|
13589
14588
|
first?: Maybe<Scalars["Int"]>;
|
13590
14589
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
13591
14590
|
last?: Maybe<Scalars["Int"]>;
|
@@ -13623,6 +14622,31 @@ export declare type EmojisQuery = {
|
|
13623
14622
|
__typename?: "EmojiConnection";
|
13624
14623
|
} & EmojiConnectionFragment;
|
13625
14624
|
};
|
14625
|
+
export declare type ExternalUserQueryVariables = Exact<{
|
14626
|
+
id: Scalars["String"];
|
14627
|
+
}>;
|
14628
|
+
export declare type ExternalUserQuery = {
|
14629
|
+
__typename?: "Query";
|
14630
|
+
} & {
|
14631
|
+
externalUser: {
|
14632
|
+
__typename?: "ExternalUser";
|
14633
|
+
} & ExternalUserFragment;
|
14634
|
+
};
|
14635
|
+
export declare type ExternalUsersQueryVariables = Exact<{
|
14636
|
+
after?: Maybe<Scalars["String"]>;
|
14637
|
+
before?: Maybe<Scalars["String"]>;
|
14638
|
+
first?: Maybe<Scalars["Int"]>;
|
14639
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
14640
|
+
last?: Maybe<Scalars["Int"]>;
|
14641
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
14642
|
+
}>;
|
14643
|
+
export declare type ExternalUsersQuery = {
|
14644
|
+
__typename?: "Query";
|
14645
|
+
} & {
|
14646
|
+
externalUsers: {
|
14647
|
+
__typename?: "ExternalUserConnection";
|
14648
|
+
} & ExternalUserConnectionFragment;
|
14649
|
+
};
|
13626
14650
|
export declare type FavoriteQueryVariables = Exact<{
|
13627
14651
|
id: Scalars["String"];
|
13628
14652
|
}>;
|
@@ -13678,6 +14702,17 @@ export declare type IntegrationQuery = {
|
|
13678
14702
|
__typename?: "Integration";
|
13679
14703
|
} & IntegrationFragment;
|
13680
14704
|
};
|
14705
|
+
export declare type IntegrationHasScopesQueryVariables = Exact<{
|
14706
|
+
integrationId: Scalars["String"];
|
14707
|
+
scopes: Array<Scalars["String"]> | Scalars["String"];
|
14708
|
+
}>;
|
14709
|
+
export declare type IntegrationHasScopesQuery = {
|
14710
|
+
__typename?: "Query";
|
14711
|
+
} & {
|
14712
|
+
integrationHasScopes: {
|
14713
|
+
__typename?: "IntegrationHasScopesPayload";
|
14714
|
+
} & IntegrationHasScopesPayloadFragment;
|
14715
|
+
};
|
13681
14716
|
export declare type IntegrationTemplateQueryVariables = Exact<{
|
13682
14717
|
id: Scalars["String"];
|
13683
14718
|
}>;
|
@@ -14526,6 +15561,7 @@ export declare type Project_DocumentsQueryVariables = Exact<{
|
|
14526
15561
|
id: Scalars["String"];
|
14527
15562
|
after?: Maybe<Scalars["String"]>;
|
14528
15563
|
before?: Maybe<Scalars["String"]>;
|
15564
|
+
filter?: Maybe<DocumentFilter>;
|
14529
15565
|
first?: Maybe<Scalars["Int"]>;
|
14530
15566
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
14531
15567
|
last?: Maybe<Scalars["Int"]>;
|
@@ -14609,6 +15645,7 @@ export declare type Project_ProjectMilestonesQueryVariables = Exact<{
|
|
14609
15645
|
id: Scalars["String"];
|
14610
15646
|
after?: Maybe<Scalars["String"]>;
|
14611
15647
|
before?: Maybe<Scalars["String"]>;
|
15648
|
+
filter?: Maybe<ProjectMilestoneFilter>;
|
14612
15649
|
first?: Maybe<Scalars["Int"]>;
|
14613
15650
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
14614
15651
|
last?: Maybe<Scalars["Int"]>;
|
@@ -14711,6 +15748,27 @@ export declare type ProjectMilestoneQuery = {
|
|
14711
15748
|
__typename?: "ProjectMilestone";
|
14712
15749
|
} & ProjectMilestoneFragment;
|
14713
15750
|
};
|
15751
|
+
export declare type ProjectMilestone_IssuesQueryVariables = Exact<{
|
15752
|
+
id: Scalars["String"];
|
15753
|
+
after?: Maybe<Scalars["String"]>;
|
15754
|
+
before?: Maybe<Scalars["String"]>;
|
15755
|
+
filter?: Maybe<IssueFilter>;
|
15756
|
+
first?: Maybe<Scalars["Int"]>;
|
15757
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
15758
|
+
last?: Maybe<Scalars["Int"]>;
|
15759
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
15760
|
+
}>;
|
15761
|
+
export declare type ProjectMilestone_IssuesQuery = {
|
15762
|
+
__typename?: "Query";
|
15763
|
+
} & {
|
15764
|
+
projectMilestone: {
|
15765
|
+
__typename?: "ProjectMilestone";
|
15766
|
+
} & {
|
15767
|
+
issues: {
|
15768
|
+
__typename?: "IssueConnection";
|
15769
|
+
} & IssueConnectionFragment;
|
15770
|
+
};
|
15771
|
+
};
|
14714
15772
|
export declare type ProjectMilestonesQueryVariables = Exact<{
|
14715
15773
|
after?: Maybe<Scalars["String"]>;
|
14716
15774
|
before?: Maybe<Scalars["String"]>;
|
@@ -14894,6 +15952,7 @@ export declare type SearchDocumentsQueryVariables = Exact<{
|
|
14894
15952
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
14895
15953
|
last?: Maybe<Scalars["Int"]>;
|
14896
15954
|
orderBy?: Maybe<PaginationOrderBy>;
|
15955
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
14897
15956
|
teamId?: Maybe<Scalars["String"]>;
|
14898
15957
|
term: Scalars["String"];
|
14899
15958
|
}>;
|
@@ -14912,6 +15971,7 @@ export declare type SearchDocuments_ArchivePayloadQueryVariables = Exact<{
|
|
14912
15971
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
14913
15972
|
last?: Maybe<Scalars["Int"]>;
|
14914
15973
|
orderBy?: Maybe<PaginationOrderBy>;
|
15974
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
14915
15975
|
teamId?: Maybe<Scalars["String"]>;
|
14916
15976
|
term: Scalars["String"];
|
14917
15977
|
}>;
|
@@ -14935,6 +15995,7 @@ export declare type SearchIssuesQueryVariables = Exact<{
|
|
14935
15995
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
14936
15996
|
last?: Maybe<Scalars["Int"]>;
|
14937
15997
|
orderBy?: Maybe<PaginationOrderBy>;
|
15998
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
14938
15999
|
teamId?: Maybe<Scalars["String"]>;
|
14939
16000
|
term: Scalars["String"];
|
14940
16001
|
}>;
|
@@ -14954,6 +16015,7 @@ export declare type SearchIssues_ArchivePayloadQueryVariables = Exact<{
|
|
14954
16015
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
14955
16016
|
last?: Maybe<Scalars["Int"]>;
|
14956
16017
|
orderBy?: Maybe<PaginationOrderBy>;
|
16018
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
14957
16019
|
teamId?: Maybe<Scalars["String"]>;
|
14958
16020
|
term: Scalars["String"];
|
14959
16021
|
}>;
|
@@ -14976,6 +16038,7 @@ export declare type SearchProjectsQueryVariables = Exact<{
|
|
14976
16038
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
14977
16039
|
last?: Maybe<Scalars["Int"]>;
|
14978
16040
|
orderBy?: Maybe<PaginationOrderBy>;
|
16041
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
14979
16042
|
teamId?: Maybe<Scalars["String"]>;
|
14980
16043
|
term: Scalars["String"];
|
14981
16044
|
}>;
|
@@ -14994,6 +16057,7 @@ export declare type SearchProjects_ArchivePayloadQueryVariables = Exact<{
|
|
14994
16057
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
14995
16058
|
last?: Maybe<Scalars["Int"]>;
|
14996
16059
|
orderBy?: Maybe<PaginationOrderBy>;
|
16060
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
14997
16061
|
teamId?: Maybe<Scalars["String"]>;
|
14998
16062
|
term: Scalars["String"];
|
14999
16063
|
}>;
|
@@ -15029,45 +16093,45 @@ export declare type TeamQuery = {
|
|
15029
16093
|
__typename?: "Team";
|
15030
16094
|
} & TeamFragment;
|
15031
16095
|
};
|
15032
|
-
export declare type
|
16096
|
+
export declare type Team_CyclesQueryVariables = Exact<{
|
15033
16097
|
id: Scalars["String"];
|
15034
16098
|
after?: Maybe<Scalars["String"]>;
|
15035
16099
|
before?: Maybe<Scalars["String"]>;
|
16100
|
+
filter?: Maybe<CycleFilter>;
|
15036
16101
|
first?: Maybe<Scalars["Int"]>;
|
15037
16102
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
15038
16103
|
last?: Maybe<Scalars["Int"]>;
|
15039
16104
|
orderBy?: Maybe<PaginationOrderBy>;
|
15040
16105
|
}>;
|
15041
|
-
export declare type
|
16106
|
+
export declare type Team_CyclesQuery = {
|
15042
16107
|
__typename?: "Query";
|
15043
16108
|
} & {
|
15044
16109
|
team: {
|
15045
16110
|
__typename?: "Team";
|
15046
16111
|
} & {
|
15047
|
-
|
15048
|
-
__typename?: "
|
15049
|
-
} &
|
16112
|
+
cycles: {
|
16113
|
+
__typename?: "CycleConnection";
|
16114
|
+
} & CycleConnectionFragment;
|
15050
16115
|
};
|
15051
16116
|
};
|
15052
|
-
export declare type
|
16117
|
+
export declare type Team_GitAutomationStatesQueryVariables = Exact<{
|
15053
16118
|
id: Scalars["String"];
|
15054
16119
|
after?: Maybe<Scalars["String"]>;
|
15055
16120
|
before?: Maybe<Scalars["String"]>;
|
15056
|
-
filter?: Maybe<CycleFilter>;
|
15057
16121
|
first?: Maybe<Scalars["Int"]>;
|
15058
16122
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
15059
16123
|
last?: Maybe<Scalars["Int"]>;
|
15060
16124
|
orderBy?: Maybe<PaginationOrderBy>;
|
15061
16125
|
}>;
|
15062
|
-
export declare type
|
16126
|
+
export declare type Team_GitAutomationStatesQuery = {
|
15063
16127
|
__typename?: "Query";
|
15064
16128
|
} & {
|
15065
16129
|
team: {
|
15066
16130
|
__typename?: "Team";
|
15067
16131
|
} & {
|
15068
|
-
|
15069
|
-
__typename?: "
|
15070
|
-
} &
|
16132
|
+
gitAutomationStates: {
|
16133
|
+
__typename?: "GitAutomationStateConnection";
|
16134
|
+
} & GitAutomationStateConnectionFragment;
|
15071
16135
|
};
|
15072
16136
|
};
|
15073
16137
|
export declare type Team_IssuesQueryVariables = Exact<{
|
@@ -15655,6 +16719,7 @@ export declare type AttachmentLinkDiscordMutationVariables = Exact<{
|
|
15655
16719
|
id?: Maybe<Scalars["String"]>;
|
15656
16720
|
issueId: Scalars["String"];
|
15657
16721
|
messageId: Scalars["String"];
|
16722
|
+
title?: Maybe<Scalars["String"]>;
|
15658
16723
|
url: Scalars["String"];
|
15659
16724
|
}>;
|
15660
16725
|
export declare type AttachmentLinkDiscordMutation = {
|
@@ -15670,6 +16735,7 @@ export declare type AttachmentLinkFrontMutationVariables = Exact<{
|
|
15670
16735
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
15671
16736
|
id?: Maybe<Scalars["String"]>;
|
15672
16737
|
issueId: Scalars["String"];
|
16738
|
+
title?: Maybe<Scalars["String"]>;
|
15673
16739
|
}>;
|
15674
16740
|
export declare type AttachmentLinkFrontMutation = {
|
15675
16741
|
__typename?: "Mutation";
|
@@ -15683,6 +16749,7 @@ export declare type AttachmentLinkGitHubIssueMutationVariables = Exact<{
|
|
15683
16749
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
15684
16750
|
id?: Maybe<Scalars["String"]>;
|
15685
16751
|
issueId: Scalars["String"];
|
16752
|
+
title?: Maybe<Scalars["String"]>;
|
15686
16753
|
url: Scalars["String"];
|
15687
16754
|
}>;
|
15688
16755
|
export declare type AttachmentLinkGitHubIssueMutation = {
|
@@ -15700,6 +16767,7 @@ export declare type AttachmentLinkGitHubPrMutationVariables = Exact<{
|
|
15700
16767
|
number?: Maybe<Scalars["Float"]>;
|
15701
16768
|
owner?: Maybe<Scalars["String"]>;
|
15702
16769
|
repo?: Maybe<Scalars["String"]>;
|
16770
|
+
title?: Maybe<Scalars["String"]>;
|
15703
16771
|
url: Scalars["String"];
|
15704
16772
|
}>;
|
15705
16773
|
export declare type AttachmentLinkGitHubPrMutation = {
|
@@ -15716,6 +16784,7 @@ export declare type AttachmentLinkGitLabMrMutationVariables = Exact<{
|
|
15716
16784
|
issueId: Scalars["String"];
|
15717
16785
|
number: Scalars["Float"];
|
15718
16786
|
projectPathWithNamespace: Scalars["String"];
|
16787
|
+
title?: Maybe<Scalars["String"]>;
|
15719
16788
|
url: Scalars["String"];
|
15720
16789
|
}>;
|
15721
16790
|
export declare type AttachmentLinkGitLabMrMutation = {
|
@@ -15731,6 +16800,7 @@ export declare type AttachmentLinkIntercomMutationVariables = Exact<{
|
|
15731
16800
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
15732
16801
|
id?: Maybe<Scalars["String"]>;
|
15733
16802
|
issueId: Scalars["String"];
|
16803
|
+
title?: Maybe<Scalars["String"]>;
|
15734
16804
|
}>;
|
15735
16805
|
export declare type AttachmentLinkIntercomMutation = {
|
15736
16806
|
__typename?: "Mutation";
|
@@ -15789,6 +16859,7 @@ export declare type AttachmentLinkZendeskMutationVariables = Exact<{
|
|
15789
16859
|
id?: Maybe<Scalars["String"]>;
|
15790
16860
|
issueId: Scalars["String"];
|
15791
16861
|
ticketId: Scalars["String"];
|
16862
|
+
title?: Maybe<Scalars["String"]>;
|
15792
16863
|
}>;
|
15793
16864
|
export declare type AttachmentLinkZendeskMutation = {
|
15794
16865
|
__typename?: "Mutation";
|
@@ -16015,6 +17086,47 @@ export declare type UpdateDocumentMutation = {
|
|
16015
17086
|
__typename?: "DocumentPayload";
|
16016
17087
|
} & DocumentPayloadFragment;
|
16017
17088
|
};
|
17089
|
+
export declare type CreateEmailIntakeAddressMutationVariables = Exact<{
|
17090
|
+
input: EmailIntakeAddressCreateInput;
|
17091
|
+
}>;
|
17092
|
+
export declare type CreateEmailIntakeAddressMutation = {
|
17093
|
+
__typename?: "Mutation";
|
17094
|
+
} & {
|
17095
|
+
emailIntakeAddressCreate: {
|
17096
|
+
__typename?: "EmailIntakeAddressPayload";
|
17097
|
+
} & EmailIntakeAddressPayloadFragment;
|
17098
|
+
};
|
17099
|
+
export declare type DeleteEmailIntakeAddressMutationVariables = Exact<{
|
17100
|
+
id: Scalars["String"];
|
17101
|
+
}>;
|
17102
|
+
export declare type DeleteEmailIntakeAddressMutation = {
|
17103
|
+
__typename?: "Mutation";
|
17104
|
+
} & {
|
17105
|
+
emailIntakeAddressDelete: {
|
17106
|
+
__typename?: "DeletePayload";
|
17107
|
+
} & DeletePayloadFragment;
|
17108
|
+
};
|
17109
|
+
export declare type EmailIntakeAddressRotateMutationVariables = Exact<{
|
17110
|
+
id: Scalars["String"];
|
17111
|
+
}>;
|
17112
|
+
export declare type EmailIntakeAddressRotateMutation = {
|
17113
|
+
__typename?: "Mutation";
|
17114
|
+
} & {
|
17115
|
+
emailIntakeAddressRotate: {
|
17116
|
+
__typename?: "EmailIntakeAddressPayload";
|
17117
|
+
} & EmailIntakeAddressPayloadFragment;
|
17118
|
+
};
|
17119
|
+
export declare type UpdateEmailIntakeAddressMutationVariables = Exact<{
|
17120
|
+
id: Scalars["String"];
|
17121
|
+
input: EmailIntakeAddressUpdateInput;
|
17122
|
+
}>;
|
17123
|
+
export declare type UpdateEmailIntakeAddressMutation = {
|
17124
|
+
__typename?: "Mutation";
|
17125
|
+
} & {
|
17126
|
+
emailIntakeAddressUpdate: {
|
17127
|
+
__typename?: "EmailIntakeAddressPayload";
|
17128
|
+
} & EmailIntakeAddressPayloadFragment;
|
17129
|
+
};
|
16018
17130
|
export declare type EmailTokenUserAccountAuthMutationVariables = Exact<{
|
16019
17131
|
input: TokenUserAccountAuthInput;
|
16020
17132
|
}>;
|
@@ -16141,6 +17253,37 @@ export declare type UpdateGitAutomationStateMutation = {
|
|
16141
17253
|
__typename?: "GitAutomationStatePayload";
|
16142
17254
|
} & GitAutomationStatePayloadFragment;
|
16143
17255
|
};
|
17256
|
+
export declare type CreateGitAutomationTargetBranchMutationVariables = Exact<{
|
17257
|
+
input: GitAutomationTargetBranchCreateInput;
|
17258
|
+
}>;
|
17259
|
+
export declare type CreateGitAutomationTargetBranchMutation = {
|
17260
|
+
__typename?: "Mutation";
|
17261
|
+
} & {
|
17262
|
+
gitAutomationTargetBranchCreate: {
|
17263
|
+
__typename?: "GitAutomationTargetBranchPayload";
|
17264
|
+
} & GitAutomationTargetBranchPayloadFragment;
|
17265
|
+
};
|
17266
|
+
export declare type DeleteGitAutomationTargetBranchMutationVariables = Exact<{
|
17267
|
+
id: Scalars["String"];
|
17268
|
+
}>;
|
17269
|
+
export declare type DeleteGitAutomationTargetBranchMutation = {
|
17270
|
+
__typename?: "Mutation";
|
17271
|
+
} & {
|
17272
|
+
gitAutomationTargetBranchDelete: {
|
17273
|
+
__typename?: "DeletePayload";
|
17274
|
+
} & DeletePayloadFragment;
|
17275
|
+
};
|
17276
|
+
export declare type UpdateGitAutomationTargetBranchMutationVariables = Exact<{
|
17277
|
+
id: Scalars["String"];
|
17278
|
+
input: GitAutomationTargetBranchUpdateInput;
|
17279
|
+
}>;
|
17280
|
+
export declare type UpdateGitAutomationTargetBranchMutation = {
|
17281
|
+
__typename?: "Mutation";
|
17282
|
+
} & {
|
17283
|
+
gitAutomationTargetBranchUpdate: {
|
17284
|
+
__typename?: "GitAutomationTargetBranchPayload";
|
17285
|
+
} & GitAutomationTargetBranchPayloadFragment;
|
17286
|
+
};
|
16144
17287
|
export declare type GoogleUserAccountAuthMutationVariables = Exact<{
|
16145
17288
|
input: GoogleUserAccountAuthInput;
|
16146
17289
|
}>;
|
@@ -16174,6 +17317,16 @@ export declare type ImportFileUploadMutation = {
|
|
16174
17317
|
__typename?: "UploadPayload";
|
16175
17318
|
} & UploadPayloadFragment;
|
16176
17319
|
};
|
17320
|
+
export declare type ArchiveIntegrationMutationVariables = Exact<{
|
17321
|
+
id: Scalars["String"];
|
17322
|
+
}>;
|
17323
|
+
export declare type ArchiveIntegrationMutation = {
|
17324
|
+
__typename?: "Mutation";
|
17325
|
+
} & {
|
17326
|
+
integrationArchive: {
|
17327
|
+
__typename?: "DeletePayload";
|
17328
|
+
} & DeletePayloadFragment;
|
17329
|
+
};
|
16177
17330
|
export declare type IntegrationAsksConnectChannelMutationVariables = Exact<{
|
16178
17331
|
code: Scalars["String"];
|
16179
17332
|
redirectUri: Scalars["String"];
|
@@ -17745,6 +18898,7 @@ export declare const DocumentContentHistoryFragmentDoc: DocumentNode<DocumentCon
|
|
17745
18898
|
export declare const AttachmentArchivePayloadFragmentDoc: DocumentNode<AttachmentArchivePayloadFragment, unknown>;
|
17746
18899
|
export declare const CycleArchivePayloadFragmentDoc: DocumentNode<CycleArchivePayloadFragment, unknown>;
|
17747
18900
|
export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragment, unknown>;
|
18901
|
+
export declare const InitiativeArchivePayloadFragmentDoc: DocumentNode<InitiativeArchivePayloadFragment, unknown>;
|
17748
18902
|
export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
|
17749
18903
|
export declare const ActorBotFragmentDoc: DocumentNode<ActorBotFragment, unknown>;
|
17750
18904
|
export declare const NotificationSubscriptionFragmentDoc: DocumentNode<NotificationSubscriptionFragment, unknown>;
|
@@ -17764,7 +18918,7 @@ export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<Pr
|
|
17764
18918
|
export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
|
17765
18919
|
export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
|
17766
18920
|
export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
|
17767
|
-
export declare const
|
18921
|
+
export declare const AuthOrganizationInviteFragmentDoc: DocumentNode<AuthOrganizationInviteFragment, unknown>;
|
17768
18922
|
export declare const PaidSubscriptionFragmentDoc: DocumentNode<PaidSubscriptionFragment, unknown>;
|
17769
18923
|
export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment, unknown>;
|
17770
18924
|
export declare const AuthOauthClientWithScopeFragmentDoc: DocumentNode<AuthOauthClientWithScopeFragment, unknown>;
|
@@ -17799,7 +18953,6 @@ export declare const SlackAsksSettingsFragmentDoc: DocumentNode<SlackAsksSetting
|
|
17799
18953
|
export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
|
17800
18954
|
export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFragment, unknown>;
|
17801
18955
|
export declare const IntegrationSettingsFragmentDoc: DocumentNode<IntegrationSettingsFragment, unknown>;
|
17802
|
-
export declare const SamlConfigurationPayloadFragmentDoc: DocumentNode<SamlConfigurationPayloadFragment, unknown>;
|
17803
18956
|
export declare const UserSettingsFragmentDoc: DocumentNode<UserSettingsFragment, unknown>;
|
17804
18957
|
export declare const AuthenticationSessionFragmentDoc: DocumentNode<AuthenticationSessionFragment, unknown>;
|
17805
18958
|
export declare const ApiKeyFragmentDoc: DocumentNode<ApiKeyFragment, unknown>;
|
@@ -17816,11 +18969,10 @@ export declare const AuditEntryConnectionFragmentDoc: DocumentNode<AuditEntryCon
|
|
17816
18969
|
export declare const AuditEntryTypeFragmentDoc: DocumentNode<AuditEntryTypeFragment, unknown>;
|
17817
18970
|
export declare const AuthApiKeyFragmentDoc: DocumentNode<AuthApiKeyFragment, unknown>;
|
17818
18971
|
export declare const AuthApiKeyPayloadFragmentDoc: DocumentNode<AuthApiKeyPayloadFragment, unknown>;
|
17819
|
-
export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationFragment, unknown>;
|
17820
|
-
export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
|
17821
|
-
export declare const AuthCreateOrJoinOrganizationResponseFragmentDoc: DocumentNode<AuthCreateOrJoinOrganizationResponseFragment, unknown>;
|
17822
18972
|
export declare const AuthIntegrationFragmentDoc: DocumentNode<AuthIntegrationFragment, unknown>;
|
17823
18973
|
export declare const AuthOauthClientFragmentDoc: DocumentNode<AuthOauthClientFragment, unknown>;
|
18974
|
+
export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationFragment, unknown>;
|
18975
|
+
export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
|
17824
18976
|
export declare const OauthTokenFragmentDoc: DocumentNode<OauthTokenFragment, unknown>;
|
17825
18977
|
export declare const AuthOauthClientWithTokensFragmentDoc: DocumentNode<AuthOauthClientWithTokensFragment, unknown>;
|
17826
18978
|
export declare const AuthOrganizationDomainFragmentDoc: DocumentNode<AuthOrganizationDomainFragment, unknown>;
|
@@ -17852,22 +19004,29 @@ export declare const ArchiveResponseFragmentDoc: DocumentNode<ArchiveResponseFra
|
|
17852
19004
|
export declare const DocumentSearchResultFragmentDoc: DocumentNode<DocumentSearchResultFragment, unknown>;
|
17853
19005
|
export declare const DocumentSearchPayloadFragmentDoc: DocumentNode<DocumentSearchPayloadFragment, unknown>;
|
17854
19006
|
export declare const DocumentSearchResultConnectionFragmentDoc: DocumentNode<DocumentSearchResultConnectionFragment, unknown>;
|
19007
|
+
export declare const EmailIntakeAddressFragmentDoc: DocumentNode<EmailIntakeAddressFragment, unknown>;
|
19008
|
+
export declare const EmailIntakeAddressPayloadFragmentDoc: DocumentNode<EmailIntakeAddressPayloadFragment, unknown>;
|
17855
19009
|
export declare const EmailUnsubscribePayloadFragmentDoc: DocumentNode<EmailUnsubscribePayloadFragment, unknown>;
|
17856
19010
|
export declare const EmailUserAccountAuthChallengeResponseFragmentDoc: DocumentNode<EmailUserAccountAuthChallengeResponseFragment, unknown>;
|
17857
19011
|
export declare const EmojiFragmentDoc: DocumentNode<EmojiFragment, unknown>;
|
17858
19012
|
export declare const EmojiConnectionFragmentDoc: DocumentNode<EmojiConnectionFragment, unknown>;
|
17859
19013
|
export declare const EmojiPayloadFragmentDoc: DocumentNode<EmojiPayloadFragment, unknown>;
|
19014
|
+
export declare const ExternalUserFragmentDoc: DocumentNode<ExternalUserFragment, unknown>;
|
19015
|
+
export declare const ExternalUserConnectionFragmentDoc: DocumentNode<ExternalUserConnectionFragment, unknown>;
|
17860
19016
|
export declare const FavoriteFragmentDoc: DocumentNode<FavoriteFragment, unknown>;
|
17861
19017
|
export declare const FavoriteConnectionFragmentDoc: DocumentNode<FavoriteConnectionFragment, unknown>;
|
17862
19018
|
export declare const FavoritePayloadFragmentDoc: DocumentNode<FavoritePayloadFragment, unknown>;
|
17863
19019
|
export declare const FrontAttachmentPayloadFragmentDoc: DocumentNode<FrontAttachmentPayloadFragment, unknown>;
|
19020
|
+
export declare const GitAutomationTargetBranchFragmentDoc: DocumentNode<GitAutomationTargetBranchFragment, unknown>;
|
17864
19021
|
export declare const GitAutomationStateFragmentDoc: DocumentNode<GitAutomationStateFragment, unknown>;
|
17865
19022
|
export declare const GitAutomationStateConnectionFragmentDoc: DocumentNode<GitAutomationStateConnectionFragment, unknown>;
|
17866
19023
|
export declare const GitAutomationStatePayloadFragmentDoc: DocumentNode<GitAutomationStatePayloadFragment, unknown>;
|
19024
|
+
export declare const GitAutomationTargetBranchPayloadFragmentDoc: DocumentNode<GitAutomationTargetBranchPayloadFragment, unknown>;
|
17867
19025
|
export declare const GitHubCommitIntegrationPayloadFragmentDoc: DocumentNode<GitHubCommitIntegrationPayloadFragment, unknown>;
|
17868
19026
|
export declare const ImageUploadFromUrlPayloadFragmentDoc: DocumentNode<ImageUploadFromUrlPayloadFragment, unknown>;
|
17869
19027
|
export declare const IntegrationFragmentDoc: DocumentNode<IntegrationFragment, unknown>;
|
17870
19028
|
export declare const IntegrationConnectionFragmentDoc: DocumentNode<IntegrationConnectionFragment, unknown>;
|
19029
|
+
export declare const IntegrationHasScopesPayloadFragmentDoc: DocumentNode<IntegrationHasScopesPayloadFragment, unknown>;
|
17871
19030
|
export declare const IntegrationPayloadFragmentDoc: DocumentNode<IntegrationPayloadFragment, unknown>;
|
17872
19031
|
export declare const IntegrationRequestPayloadFragmentDoc: DocumentNode<IntegrationRequestPayloadFragment, unknown>;
|
17873
19032
|
export declare const IntegrationTemplateFragmentDoc: DocumentNode<IntegrationTemplateFragment, unknown>;
|
@@ -17952,7 +19111,6 @@ export declare const RoadmapPayloadFragmentDoc: DocumentNode<RoadmapPayloadFragm
|
|
17952
19111
|
export declare const RoadmapToProjectFragmentDoc: DocumentNode<RoadmapToProjectFragment, unknown>;
|
17953
19112
|
export declare const RoadmapToProjectConnectionFragmentDoc: DocumentNode<RoadmapToProjectConnectionFragment, unknown>;
|
17954
19113
|
export declare const RoadmapToProjectPayloadFragmentDoc: DocumentNode<RoadmapToProjectPayloadFragment, unknown>;
|
17955
|
-
export declare const SamlConfigurationFragmentDoc: DocumentNode<SamlConfigurationFragment, unknown>;
|
17956
19114
|
export declare const SlackChannelConnectPayloadFragmentDoc: DocumentNode<SlackChannelConnectPayloadFragment, unknown>;
|
17957
19115
|
export declare const SsoUrlFromEmailResponseFragmentDoc: DocumentNode<SsoUrlFromEmailResponseFragment, unknown>;
|
17958
19116
|
export declare const SynchronizedPayloadFragmentDoc: DocumentNode<SynchronizedPayloadFragment, unknown>;
|
@@ -17965,6 +19123,10 @@ export declare const TeamPayloadFragmentDoc: DocumentNode<TeamPayloadFragment, u
|
|
17965
19123
|
export declare const TemplateFragmentDoc: DocumentNode<TemplateFragment, unknown>;
|
17966
19124
|
export declare const TemplateConnectionFragmentDoc: DocumentNode<TemplateConnectionFragment, unknown>;
|
17967
19125
|
export declare const TemplatePayloadFragmentDoc: DocumentNode<TemplatePayloadFragment, unknown>;
|
19126
|
+
export declare const TimeScheduleEntryFragmentDoc: DocumentNode<TimeScheduleEntryFragment, unknown>;
|
19127
|
+
export declare const TimeScheduleFragmentDoc: DocumentNode<TimeScheduleFragment, unknown>;
|
19128
|
+
export declare const TimeScheduleConnectionFragmentDoc: DocumentNode<TimeScheduleConnectionFragment, unknown>;
|
19129
|
+
export declare const TimeSchedulePayloadFragmentDoc: DocumentNode<TimeSchedulePayloadFragment, unknown>;
|
17968
19130
|
export declare const TriageResponsibilityFragmentDoc: DocumentNode<TriageResponsibilityFragment, unknown>;
|
17969
19131
|
export declare const TriageResponsibilityConnectionFragmentDoc: DocumentNode<TriageResponsibilityConnectionFragment, unknown>;
|
17970
19132
|
export declare const UploadFileHeaderFragmentDoc: DocumentNode<UploadFileHeaderFragment, unknown>;
|
@@ -18139,13 +19301,19 @@ export declare const AvailableUsersDocument: DocumentNode<AvailableUsersQuery, E
|
|
18139
19301
|
[key: string]: never;
|
18140
19302
|
}>>;
|
18141
19303
|
export declare const CommentDocument: DocumentNode<CommentQuery, Exact<{
|
18142
|
-
|
19304
|
+
hash?: Maybe<string> | undefined;
|
19305
|
+
id?: Maybe<string> | undefined;
|
19306
|
+
issueId?: Maybe<string> | undefined;
|
18143
19307
|
}>>;
|
18144
19308
|
export declare const Comment_BotActorDocument: DocumentNode<Comment_BotActorQuery, Exact<{
|
18145
|
-
|
19309
|
+
hash?: Maybe<string> | undefined;
|
19310
|
+
id?: Maybe<string> | undefined;
|
19311
|
+
issueId?: Maybe<string> | undefined;
|
18146
19312
|
}>>;
|
18147
19313
|
export declare const Comment_ChildrenDocument: DocumentNode<Comment_ChildrenQuery, Exact<{
|
18148
|
-
|
19314
|
+
hash?: Maybe<string> | undefined;
|
19315
|
+
id?: Maybe<string> | undefined;
|
19316
|
+
issueId?: Maybe<string> | undefined;
|
18149
19317
|
after?: Maybe<string> | undefined;
|
18150
19318
|
before?: Maybe<string> | undefined;
|
18151
19319
|
filter?: Maybe<CommentFilter> | undefined;
|
@@ -18155,7 +19323,9 @@ export declare const Comment_ChildrenDocument: DocumentNode<Comment_ChildrenQuer
|
|
18155
19323
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
18156
19324
|
}>>;
|
18157
19325
|
export declare const Comment_DocumentContentDocument: DocumentNode<Comment_DocumentContentQuery, Exact<{
|
18158
|
-
|
19326
|
+
hash?: Maybe<string> | undefined;
|
19327
|
+
id?: Maybe<string> | undefined;
|
19328
|
+
issueId?: Maybe<string> | undefined;
|
18159
19329
|
}>>;
|
18160
19330
|
export declare const CommentsDocument: DocumentNode<CommentsQuery, Exact<{
|
18161
19331
|
after?: Maybe<string> | undefined;
|
@@ -18169,6 +19339,16 @@ export declare const CommentsDocument: DocumentNode<CommentsQuery, Exact<{
|
|
18169
19339
|
export declare const CustomViewDocument: DocumentNode<CustomViewQuery, Exact<{
|
18170
19340
|
id: Scalars["String"];
|
18171
19341
|
}>>;
|
19342
|
+
export declare const CustomView_IssuesDocument: DocumentNode<CustomView_IssuesQuery, Exact<{
|
19343
|
+
id: Scalars["String"];
|
19344
|
+
after?: Maybe<string> | undefined;
|
19345
|
+
before?: Maybe<string> | undefined;
|
19346
|
+
filter?: Maybe<IssueFilter> | undefined;
|
19347
|
+
first?: Maybe<number> | undefined;
|
19348
|
+
includeArchived?: Maybe<boolean> | undefined;
|
19349
|
+
last?: Maybe<number> | undefined;
|
19350
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
19351
|
+
}>>;
|
18172
19352
|
export declare const CustomViewHasSubscribersDocument: DocumentNode<CustomViewHasSubscribersQuery, Exact<{
|
18173
19353
|
id: Scalars["String"];
|
18174
19354
|
}>>;
|
@@ -18221,6 +19401,7 @@ export declare const DocumentContentHistoryDocument: DocumentNode<DocumentConten
|
|
18221
19401
|
export declare const DocumentsDocument: DocumentNode<DocumentsQuery, Exact<{
|
18222
19402
|
after?: Maybe<string> | undefined;
|
18223
19403
|
before?: Maybe<string> | undefined;
|
19404
|
+
filter?: Maybe<DocumentFilter> | undefined;
|
18224
19405
|
first?: Maybe<number> | undefined;
|
18225
19406
|
includeArchived?: Maybe<boolean> | undefined;
|
18226
19407
|
last?: Maybe<number> | undefined;
|
@@ -18237,6 +19418,17 @@ export declare const EmojisDocument: DocumentNode<EmojisQuery, Exact<{
|
|
18237
19418
|
last?: Maybe<number> | undefined;
|
18238
19419
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
18239
19420
|
}>>;
|
19421
|
+
export declare const ExternalUserDocument: DocumentNode<ExternalUserQuery, Exact<{
|
19422
|
+
id: Scalars["String"];
|
19423
|
+
}>>;
|
19424
|
+
export declare const ExternalUsersDocument: DocumentNode<ExternalUsersQuery, Exact<{
|
19425
|
+
after?: Maybe<string> | undefined;
|
19426
|
+
before?: Maybe<string> | undefined;
|
19427
|
+
first?: Maybe<number> | undefined;
|
19428
|
+
includeArchived?: Maybe<boolean> | undefined;
|
19429
|
+
last?: Maybe<number> | undefined;
|
19430
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
19431
|
+
}>>;
|
18240
19432
|
export declare const FavoriteDocument: DocumentNode<FavoriteQuery, Exact<{
|
18241
19433
|
id: Scalars["String"];
|
18242
19434
|
}>>;
|
@@ -18260,6 +19452,10 @@ export declare const FavoritesDocument: DocumentNode<FavoritesQuery, Exact<{
|
|
18260
19452
|
export declare const IntegrationDocument: DocumentNode<IntegrationQuery, Exact<{
|
18261
19453
|
id: Scalars["String"];
|
18262
19454
|
}>>;
|
19455
|
+
export declare const IntegrationHasScopesDocument: DocumentNode<IntegrationHasScopesQuery, Exact<{
|
19456
|
+
integrationId: Scalars["String"];
|
19457
|
+
scopes: Array<Scalars["String"]> | Scalars["String"];
|
19458
|
+
}>>;
|
18263
19459
|
export declare const IntegrationTemplateDocument: DocumentNode<IntegrationTemplateQuery, Exact<{
|
18264
19460
|
id: Scalars["String"];
|
18265
19461
|
}>>;
|
@@ -18626,6 +19822,7 @@ export declare const Project_DocumentsDocument: DocumentNode<Project_DocumentsQu
|
|
18626
19822
|
id: Scalars["String"];
|
18627
19823
|
after?: Maybe<string> | undefined;
|
18628
19824
|
before?: Maybe<string> | undefined;
|
19825
|
+
filter?: Maybe<DocumentFilter> | undefined;
|
18629
19826
|
first?: Maybe<number> | undefined;
|
18630
19827
|
includeArchived?: Maybe<boolean> | undefined;
|
18631
19828
|
last?: Maybe<number> | undefined;
|
@@ -18665,6 +19862,7 @@ export declare const Project_ProjectMilestonesDocument: DocumentNode<Project_Pro
|
|
18665
19862
|
id: Scalars["String"];
|
18666
19863
|
after?: Maybe<string> | undefined;
|
18667
19864
|
before?: Maybe<string> | undefined;
|
19865
|
+
filter?: Maybe<ProjectMilestoneFilter> | undefined;
|
18668
19866
|
first?: Maybe<number> | undefined;
|
18669
19867
|
includeArchived?: Maybe<boolean> | undefined;
|
18670
19868
|
last?: Maybe<number> | undefined;
|
@@ -18706,6 +19904,16 @@ export declare const ProjectLinksDocument: DocumentNode<ProjectLinksQuery, Exact
|
|
18706
19904
|
export declare const ProjectMilestoneDocument: DocumentNode<ProjectMilestoneQuery, Exact<{
|
18707
19905
|
id: Scalars["String"];
|
18708
19906
|
}>>;
|
19907
|
+
export declare const ProjectMilestone_IssuesDocument: DocumentNode<ProjectMilestone_IssuesQuery, Exact<{
|
19908
|
+
id: Scalars["String"];
|
19909
|
+
after?: Maybe<string> | undefined;
|
19910
|
+
before?: Maybe<string> | undefined;
|
19911
|
+
filter?: Maybe<IssueFilter> | undefined;
|
19912
|
+
first?: Maybe<number> | undefined;
|
19913
|
+
includeArchived?: Maybe<boolean> | undefined;
|
19914
|
+
last?: Maybe<number> | undefined;
|
19915
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
19916
|
+
}>>;
|
18709
19917
|
export declare const ProjectMilestonesDocument: DocumentNode<ProjectMilestonesQuery, Exact<{
|
18710
19918
|
after?: Maybe<string> | undefined;
|
18711
19919
|
before?: Maybe<string> | undefined;
|
@@ -18794,6 +20002,7 @@ export declare const SearchDocumentsDocument: DocumentNode<SearchDocumentsQuery,
|
|
18794
20002
|
includeComments?: Maybe<boolean> | undefined;
|
18795
20003
|
last?: Maybe<number> | undefined;
|
18796
20004
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20005
|
+
snippetSize?: Maybe<number> | undefined;
|
18797
20006
|
teamId?: Maybe<string> | undefined;
|
18798
20007
|
term: Scalars["String"];
|
18799
20008
|
}>>;
|
@@ -18805,6 +20014,7 @@ export declare const SearchDocuments_ArchivePayloadDocument: DocumentNode<Search
|
|
18805
20014
|
includeComments?: Maybe<boolean> | undefined;
|
18806
20015
|
last?: Maybe<number> | undefined;
|
18807
20016
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20017
|
+
snippetSize?: Maybe<number> | undefined;
|
18808
20018
|
teamId?: Maybe<string> | undefined;
|
18809
20019
|
term: Scalars["String"];
|
18810
20020
|
}>>;
|
@@ -18817,6 +20027,7 @@ export declare const SearchIssuesDocument: DocumentNode<SearchIssuesQuery, Exact
|
|
18817
20027
|
includeComments?: Maybe<boolean> | undefined;
|
18818
20028
|
last?: Maybe<number> | undefined;
|
18819
20029
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20030
|
+
snippetSize?: Maybe<number> | undefined;
|
18820
20031
|
teamId?: Maybe<string> | undefined;
|
18821
20032
|
term: Scalars["String"];
|
18822
20033
|
}>>;
|
@@ -18829,6 +20040,7 @@ export declare const SearchIssues_ArchivePayloadDocument: DocumentNode<SearchIss
|
|
18829
20040
|
includeComments?: Maybe<boolean> | undefined;
|
18830
20041
|
last?: Maybe<number> | undefined;
|
18831
20042
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20043
|
+
snippetSize?: Maybe<number> | undefined;
|
18832
20044
|
teamId?: Maybe<string> | undefined;
|
18833
20045
|
term: Scalars["String"];
|
18834
20046
|
}>>;
|
@@ -18840,6 +20052,7 @@ export declare const SearchProjectsDocument: DocumentNode<SearchProjectsQuery, E
|
|
18840
20052
|
includeComments?: Maybe<boolean> | undefined;
|
18841
20053
|
last?: Maybe<number> | undefined;
|
18842
20054
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20055
|
+
snippetSize?: Maybe<number> | undefined;
|
18843
20056
|
teamId?: Maybe<string> | undefined;
|
18844
20057
|
term: Scalars["String"];
|
18845
20058
|
}>>;
|
@@ -18851,6 +20064,7 @@ export declare const SearchProjects_ArchivePayloadDocument: DocumentNode<SearchP
|
|
18851
20064
|
includeComments?: Maybe<boolean> | undefined;
|
18852
20065
|
last?: Maybe<number> | undefined;
|
18853
20066
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20067
|
+
snippetSize?: Maybe<number> | undefined;
|
18854
20068
|
teamId?: Maybe<string> | undefined;
|
18855
20069
|
term: Scalars["String"];
|
18856
20070
|
}>>;
|
@@ -18861,20 +20075,20 @@ export declare const SsoUrlFromEmailDocument: DocumentNode<SsoUrlFromEmailQuery,
|
|
18861
20075
|
export declare const TeamDocument: DocumentNode<TeamQuery, Exact<{
|
18862
20076
|
id: Scalars["String"];
|
18863
20077
|
}>>;
|
18864
|
-
export declare const
|
20078
|
+
export declare const Team_CyclesDocument: DocumentNode<Team_CyclesQuery, Exact<{
|
18865
20079
|
id: Scalars["String"];
|
18866
20080
|
after?: Maybe<string> | undefined;
|
18867
20081
|
before?: Maybe<string> | undefined;
|
20082
|
+
filter?: Maybe<CycleFilter> | undefined;
|
18868
20083
|
first?: Maybe<number> | undefined;
|
18869
20084
|
includeArchived?: Maybe<boolean> | undefined;
|
18870
20085
|
last?: Maybe<number> | undefined;
|
18871
20086
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
18872
20087
|
}>>;
|
18873
|
-
export declare const
|
20088
|
+
export declare const Team_GitAutomationStatesDocument: DocumentNode<Team_GitAutomationStatesQuery, Exact<{
|
18874
20089
|
id: Scalars["String"];
|
18875
20090
|
after?: Maybe<string> | undefined;
|
18876
20091
|
before?: Maybe<string> | undefined;
|
18877
|
-
filter?: Maybe<CycleFilter> | undefined;
|
18878
20092
|
first?: Maybe<number> | undefined;
|
18879
20093
|
includeArchived?: Maybe<boolean> | undefined;
|
18880
20094
|
last?: Maybe<number> | undefined;
|
@@ -19138,6 +20352,7 @@ export declare const AttachmentLinkDiscordDocument: DocumentNode<AttachmentLinkD
|
|
19138
20352
|
id?: Maybe<string> | undefined;
|
19139
20353
|
issueId: Scalars["String"];
|
19140
20354
|
messageId: Scalars["String"];
|
20355
|
+
title?: Maybe<string> | undefined;
|
19141
20356
|
url: Scalars["String"];
|
19142
20357
|
}>>;
|
19143
20358
|
export declare const AttachmentLinkFrontDocument: DocumentNode<AttachmentLinkFrontMutation, Exact<{
|
@@ -19146,12 +20361,14 @@ export declare const AttachmentLinkFrontDocument: DocumentNode<AttachmentLinkFro
|
|
19146
20361
|
displayIconUrl?: Maybe<string> | undefined;
|
19147
20362
|
id?: Maybe<string> | undefined;
|
19148
20363
|
issueId: Scalars["String"];
|
20364
|
+
title?: Maybe<string> | undefined;
|
19149
20365
|
}>>;
|
19150
20366
|
export declare const AttachmentLinkGitHubIssueDocument: DocumentNode<AttachmentLinkGitHubIssueMutation, Exact<{
|
19151
20367
|
createAsUser?: Maybe<string> | undefined;
|
19152
20368
|
displayIconUrl?: Maybe<string> | undefined;
|
19153
20369
|
id?: Maybe<string> | undefined;
|
19154
20370
|
issueId: Scalars["String"];
|
20371
|
+
title?: Maybe<string> | undefined;
|
19155
20372
|
url: Scalars["String"];
|
19156
20373
|
}>>;
|
19157
20374
|
export declare const AttachmentLinkGitHubPrDocument: DocumentNode<AttachmentLinkGitHubPrMutation, Exact<{
|
@@ -19162,6 +20379,7 @@ export declare const AttachmentLinkGitHubPrDocument: DocumentNode<AttachmentLink
|
|
19162
20379
|
number?: Maybe<number> | undefined;
|
19163
20380
|
owner?: Maybe<string> | undefined;
|
19164
20381
|
repo?: Maybe<string> | undefined;
|
20382
|
+
title?: Maybe<string> | undefined;
|
19165
20383
|
url: Scalars["String"];
|
19166
20384
|
}>>;
|
19167
20385
|
export declare const AttachmentLinkGitLabMrDocument: DocumentNode<AttachmentLinkGitLabMrMutation, Exact<{
|
@@ -19171,6 +20389,7 @@ export declare const AttachmentLinkGitLabMrDocument: DocumentNode<AttachmentLink
|
|
19171
20389
|
issueId: Scalars["String"];
|
19172
20390
|
number: Scalars["Float"];
|
19173
20391
|
projectPathWithNamespace: Scalars["String"];
|
20392
|
+
title?: Maybe<string> | undefined;
|
19174
20393
|
url: Scalars["String"];
|
19175
20394
|
}>>;
|
19176
20395
|
export declare const AttachmentLinkIntercomDocument: DocumentNode<AttachmentLinkIntercomMutation, Exact<{
|
@@ -19179,6 +20398,7 @@ export declare const AttachmentLinkIntercomDocument: DocumentNode<AttachmentLink
|
|
19179
20398
|
displayIconUrl?: Maybe<string> | undefined;
|
19180
20399
|
id?: Maybe<string> | undefined;
|
19181
20400
|
issueId: Scalars["String"];
|
20401
|
+
title?: Maybe<string> | undefined;
|
19182
20402
|
}>>;
|
19183
20403
|
export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLinkJiraIssueMutation, Exact<{
|
19184
20404
|
issueId: Scalars["String"];
|
@@ -19209,6 +20429,7 @@ export declare const AttachmentLinkZendeskDocument: DocumentNode<AttachmentLinkZ
|
|
19209
20429
|
id?: Maybe<string> | undefined;
|
19210
20430
|
issueId: Scalars["String"];
|
19211
20431
|
ticketId: Scalars["String"];
|
20432
|
+
title?: Maybe<string> | undefined;
|
19212
20433
|
}>>;
|
19213
20434
|
export declare const AttachmentUnsyncSlackDocument: DocumentNode<AttachmentUnsyncSlackMutation, Exact<{
|
19214
20435
|
id: Scalars["String"];
|
@@ -19281,6 +20502,19 @@ export declare const UpdateDocumentDocument: DocumentNode<UpdateDocumentMutation
|
|
19281
20502
|
id: Scalars["String"];
|
19282
20503
|
input: DocumentUpdateInput;
|
19283
20504
|
}>>;
|
20505
|
+
export declare const CreateEmailIntakeAddressDocument: DocumentNode<CreateEmailIntakeAddressMutation, Exact<{
|
20506
|
+
input: EmailIntakeAddressCreateInput;
|
20507
|
+
}>>;
|
20508
|
+
export declare const DeleteEmailIntakeAddressDocument: DocumentNode<DeleteEmailIntakeAddressMutation, Exact<{
|
20509
|
+
id: Scalars["String"];
|
20510
|
+
}>>;
|
20511
|
+
export declare const EmailIntakeAddressRotateDocument: DocumentNode<EmailIntakeAddressRotateMutation, Exact<{
|
20512
|
+
id: Scalars["String"];
|
20513
|
+
}>>;
|
20514
|
+
export declare const UpdateEmailIntakeAddressDocument: DocumentNode<UpdateEmailIntakeAddressMutation, Exact<{
|
20515
|
+
id: Scalars["String"];
|
20516
|
+
input: EmailIntakeAddressUpdateInput;
|
20517
|
+
}>>;
|
19284
20518
|
export declare const EmailTokenUserAccountAuthDocument: DocumentNode<EmailTokenUserAccountAuthMutation, Exact<{
|
19285
20519
|
input: TokenUserAccountAuthInput;
|
19286
20520
|
}>>;
|
@@ -19323,6 +20557,16 @@ export declare const UpdateGitAutomationStateDocument: DocumentNode<UpdateGitAut
|
|
19323
20557
|
id: Scalars["String"];
|
19324
20558
|
input: GitAutomationStateUpdateInput;
|
19325
20559
|
}>>;
|
20560
|
+
export declare const CreateGitAutomationTargetBranchDocument: DocumentNode<CreateGitAutomationTargetBranchMutation, Exact<{
|
20561
|
+
input: GitAutomationTargetBranchCreateInput;
|
20562
|
+
}>>;
|
20563
|
+
export declare const DeleteGitAutomationTargetBranchDocument: DocumentNode<DeleteGitAutomationTargetBranchMutation, Exact<{
|
20564
|
+
id: Scalars["String"];
|
20565
|
+
}>>;
|
20566
|
+
export declare const UpdateGitAutomationTargetBranchDocument: DocumentNode<UpdateGitAutomationTargetBranchMutation, Exact<{
|
20567
|
+
id: Scalars["String"];
|
20568
|
+
input: GitAutomationTargetBranchUpdateInput;
|
20569
|
+
}>>;
|
19326
20570
|
export declare const GoogleUserAccountAuthDocument: DocumentNode<GoogleUserAccountAuthMutation, Exact<{
|
19327
20571
|
input: GoogleUserAccountAuthInput;
|
19328
20572
|
}>>;
|
@@ -19335,6 +20579,9 @@ export declare const ImportFileUploadDocument: DocumentNode<ImportFileUploadMuta
|
|
19335
20579
|
metaData?: Maybe<Record<string, unknown>> | undefined;
|
19336
20580
|
size: Scalars["Int"];
|
19337
20581
|
}>>;
|
20582
|
+
export declare const ArchiveIntegrationDocument: DocumentNode<ArchiveIntegrationMutation, Exact<{
|
20583
|
+
id: Scalars["String"];
|
20584
|
+
}>>;
|
19338
20585
|
export declare const IntegrationAsksConnectChannelDocument: DocumentNode<IntegrationAsksConnectChannelMutation, Exact<{
|
19339
20586
|
code: Scalars["String"];
|
19340
20587
|
redirectUri: Scalars["String"];
|