@linear/sdk 13.0.0 → 15.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 +1812 -339
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +746 -188
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +2995 -714
- 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 +2968 -711
- 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 +2996 -715
- 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. */
|
@@ -145,6 +145,13 @@ export declare type AsksChannelConnectPayload = {
|
|
145
145
|
/** Whether the operation was successful. */
|
146
146
|
success: Scalars["Boolean"];
|
147
147
|
};
|
148
|
+
/** Issue assignee sorting options. */
|
149
|
+
export declare type AssigneeSort = {
|
150
|
+
/** Whether nulls should be sorted first or last */
|
151
|
+
nulls?: Maybe<PaginationNulls>;
|
152
|
+
/** The order for the individual sort */
|
153
|
+
order?: Maybe<PaginationSortOrder>;
|
154
|
+
};
|
148
155
|
/** Issue attachment (e.g. support ticket, pull request). */
|
149
156
|
export declare type Attachment = Node & {
|
150
157
|
__typename?: "Attachment";
|
@@ -290,7 +297,7 @@ export declare type AttachmentPayload = {
|
|
290
297
|
};
|
291
298
|
export declare type AttachmentSourcesPayload = {
|
292
299
|
__typename?: "AttachmentSourcesPayload";
|
293
|
-
/** A unique list of all source types used in this workspace */
|
300
|
+
/** A unique list of all source types used in this workspace. */
|
294
301
|
sources: Scalars["JSONObject"];
|
295
302
|
};
|
296
303
|
export declare type AttachmentUpdateInput = {
|
@@ -380,6 +387,8 @@ export declare type AuthApiKeyCreateInput = {
|
|
380
387
|
id?: Maybe<Scalars["String"]>;
|
381
388
|
/** The API key value. */
|
382
389
|
key: Scalars["String"];
|
390
|
+
/** The label for the API key. */
|
391
|
+
label: Scalars["String"];
|
383
392
|
};
|
384
393
|
export declare type AuthApiKeyPayload = {
|
385
394
|
__typename?: "AuthApiKeyPayload";
|
@@ -388,14 +397,6 @@ export declare type AuthApiKeyPayload = {
|
|
388
397
|
/** Whether the operation was successful. */
|
389
398
|
success: Scalars["Boolean"];
|
390
399
|
};
|
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
400
|
export declare type AuthIntegration = {
|
400
401
|
__typename?: "AuthIntegration";
|
401
402
|
/** The unique identifier of the entity. */
|
@@ -497,18 +498,35 @@ export declare type AuthOrganization = {
|
|
497
498
|
name: Scalars["String"];
|
498
499
|
/** Previously used URL keys for the organization (last 3 are kept and redirected). */
|
499
500
|
previousUrlKeys: Array<Scalars["String"]>;
|
501
|
+
/** The feature release channel the organization belongs to. */
|
502
|
+
releaseChannel: ReleaseChannel;
|
500
503
|
/** Whether SAML authentication is enabled for organization. */
|
501
504
|
samlEnabled: Scalars["Boolean"];
|
502
505
|
/** [INTERNAL] SAML settings */
|
503
506
|
samlSettings?: Maybe<Scalars["JSONObject"]>;
|
504
507
|
/** Whether SCIM provisioning is enabled for organization. */
|
505
508
|
scimEnabled: Scalars["Boolean"];
|
509
|
+
/** The email domain or URL key for the organization. */
|
510
|
+
serviceId: Scalars["String"];
|
506
511
|
/** The organization's unique URL key. */
|
507
512
|
urlKey: Scalars["String"];
|
508
513
|
userCount: Scalars["Float"];
|
509
514
|
};
|
510
515
|
export declare type AuthOrganizationDomain = {
|
511
516
|
__typename?: "AuthOrganizationDomain";
|
517
|
+
authType: OrganizationDomainAuthType;
|
518
|
+
claimed?: Maybe<Scalars["Boolean"]>;
|
519
|
+
/** The unique identifier of the entity. */
|
520
|
+
id: Scalars["ID"];
|
521
|
+
name: Scalars["String"];
|
522
|
+
organizationId: Scalars["String"];
|
523
|
+
verified: Scalars["Boolean"];
|
524
|
+
};
|
525
|
+
/** An invitation to the organization that has been sent via email. */
|
526
|
+
export declare type AuthOrganizationInvite = {
|
527
|
+
__typename?: "AuthOrganizationInvite";
|
528
|
+
/** The time at which the invite will be expiring. Null, if the invite shouldn't expire. */
|
529
|
+
expiresAt?: Maybe<Scalars["DateTime"]>;
|
512
530
|
/** The unique identifier of the entity. */
|
513
531
|
id: Scalars["ID"];
|
514
532
|
};
|
@@ -516,19 +534,22 @@ export declare type AuthResolverResponse = {
|
|
516
534
|
__typename?: "AuthResolverResponse";
|
517
535
|
/** Should the signup flow allow access for the domain. */
|
518
536
|
allowDomainAccess?: Maybe<Scalars["Boolean"]>;
|
519
|
-
/**
|
537
|
+
/** List of organizations allowing this user account to join automatically. */
|
520
538
|
availableOrganizations?: Maybe<Array<AuthOrganization>>;
|
521
539
|
/** Email for the authenticated account. */
|
522
|
-
email
|
540
|
+
email: Scalars["String"];
|
523
541
|
/** User account ID. */
|
524
542
|
id: Scalars["String"];
|
525
543
|
/** ID of the organization last accessed by the user. */
|
526
544
|
lastUsedOrganizationId?: Maybe<Scalars["String"]>;
|
527
|
-
/** List of
|
545
|
+
/** List of organization available to this user account but locked due to the current auth method. */
|
528
546
|
lockedOrganizations?: Maybe<Array<AuthOrganization>>;
|
529
|
-
/**
|
547
|
+
/**
|
548
|
+
* Application token.
|
549
|
+
* @deprecated Deprecated and not used anymore. Never populated.
|
550
|
+
*/
|
530
551
|
token?: Maybe<Scalars["String"]>;
|
531
|
-
/**
|
552
|
+
/** List of active users that belong to the user account. */
|
532
553
|
users: Array<AuthUser>;
|
533
554
|
};
|
534
555
|
export declare type AuthSuccessPayload = {
|
@@ -552,6 +573,8 @@ export declare type AuthUser = {
|
|
552
573
|
name: Scalars["String"];
|
553
574
|
/** Organization the user belongs to. */
|
554
575
|
organization: AuthOrganization;
|
576
|
+
/** User account id the user belongs to. */
|
577
|
+
userAccountId: Scalars["String"];
|
555
578
|
};
|
556
579
|
/** User authentication session. */
|
557
580
|
export declare type AuthenticationSession = {
|
@@ -588,7 +611,7 @@ export declare type AuthenticationSession = {
|
|
588
611
|
/** Session's user-agent. */
|
589
612
|
userAgent?: Maybe<Scalars["String"]>;
|
590
613
|
};
|
591
|
-
/** Authentication session information */
|
614
|
+
/** Authentication session information. */
|
592
615
|
export declare type AuthenticationSessionResponse = {
|
593
616
|
__typename?: "AuthenticationSessionResponse";
|
594
617
|
/** Used web browser. */
|
@@ -676,7 +699,7 @@ export declare type Comment = Node & {
|
|
676
699
|
body: Scalars["String"];
|
677
700
|
/** [Internal] The comment content as a Prosemirror document. */
|
678
701
|
bodyData: Scalars["String"];
|
679
|
-
/** The bot that created the comment */
|
702
|
+
/** The bot that created the comment. */
|
680
703
|
botActor?: Maybe<ActorBot>;
|
681
704
|
/** The children of the comment. */
|
682
705
|
children: CommentConnection;
|
@@ -696,7 +719,9 @@ export declare type Comment = Node & {
|
|
696
719
|
parent?: Maybe<Comment>;
|
697
720
|
/** The project update that the comment is associated with. */
|
698
721
|
projectUpdate?: Maybe<ProjectUpdate>;
|
699
|
-
/**
|
722
|
+
/** The text that this comment references. Only defined for inline comments. */
|
723
|
+
quotedText?: Maybe<Scalars["String"]>;
|
724
|
+
/** Emoji reaction summary, grouped by emoji type. */
|
700
725
|
reactionData: Scalars["JSONObject"];
|
701
726
|
/** The time the resolvingUser resolved the thread. */
|
702
727
|
resolvedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -704,6 +729,8 @@ export declare type Comment = Node & {
|
|
704
729
|
resolvingComment?: Maybe<Comment>;
|
705
730
|
/** The user that resolved the thread. */
|
706
731
|
resolvingUser?: Maybe<User>;
|
732
|
+
/** [Internal] Summary for comment thread. */
|
733
|
+
summaryText?: Maybe<Scalars["String"]>;
|
707
734
|
/**
|
708
735
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
709
736
|
* 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 +810,10 @@ export declare type CommentCreateInput = {
|
|
783
810
|
issueId?: Maybe<Scalars["String"]>;
|
784
811
|
/** The parent comment under which to nest a current comment. */
|
785
812
|
parentId?: Maybe<Scalars["String"]>;
|
786
|
-
/** The
|
813
|
+
/** The project update to associate the comment with. */
|
787
814
|
projectUpdateId?: Maybe<Scalars["String"]>;
|
815
|
+
/** The text that this comment references. Only defined for inline comments. */
|
816
|
+
quotedText?: Maybe<Scalars["String"]>;
|
788
817
|
};
|
789
818
|
export declare type CommentEdge = {
|
790
819
|
__typename?: "CommentEdge";
|
@@ -829,6 +858,8 @@ export declare type CommentUpdateInput = {
|
|
829
858
|
body?: Maybe<Scalars["String"]>;
|
830
859
|
/** The comment content as a Prosemirror document. */
|
831
860
|
bodyData?: Maybe<Scalars["JSON"]>;
|
861
|
+
/** The text that this comment references. Only defined for inline comments. */
|
862
|
+
quotedText?: Maybe<Scalars["String"]>;
|
832
863
|
/** [INTERNAL] The child comment that resolves this thread. */
|
833
864
|
resolvingCommentId?: Maybe<Scalars["String"]>;
|
834
865
|
/** [INTERNAL] The user who resolved this thread. */
|
@@ -876,6 +907,13 @@ export declare type CompanyEdge = {
|
|
876
907
|
cursor: Scalars["String"];
|
877
908
|
node: Company;
|
878
909
|
};
|
910
|
+
/** Issue completion date sorting options. */
|
911
|
+
export declare type CompletedAtSort = {
|
912
|
+
/** Whether nulls should be sorted first or last */
|
913
|
+
nulls?: Maybe<PaginationNulls>;
|
914
|
+
/** The order for the individual sort */
|
915
|
+
order?: Maybe<PaginationSortOrder>;
|
916
|
+
};
|
879
917
|
export declare type ContactCreateInput = {
|
880
918
|
/** User's browser information. */
|
881
919
|
browser?: Maybe<Scalars["String"]>;
|
@@ -897,7 +935,7 @@ export declare type ContactPayload = {
|
|
897
935
|
/** Whether the operation was successful. */
|
898
936
|
success: Scalars["Boolean"];
|
899
937
|
};
|
900
|
-
/** [INTERNAL] Input for sending a message to the Linear Sales team */
|
938
|
+
/** [INTERNAL] Input for sending a message to the Linear Sales team. */
|
901
939
|
export declare type ContactSalesCreateInput = {
|
902
940
|
/** Size of the company. */
|
903
941
|
companySize?: Maybe<Scalars["String"]>;
|
@@ -944,6 +982,13 @@ export declare type CreateOrganizationInput = {
|
|
944
982
|
/** JSON serialized UTM parameters associated with the creation of the workspace. */
|
945
983
|
utm?: Maybe<Scalars["String"]>;
|
946
984
|
};
|
985
|
+
/** Issue creation date sorting options. */
|
986
|
+
export declare type CreatedAtSort = {
|
987
|
+
/** Whether nulls should be sorted first or last */
|
988
|
+
nulls?: Maybe<PaginationNulls>;
|
989
|
+
/** The order for the individual sort */
|
990
|
+
order?: Maybe<PaginationSortOrder>;
|
991
|
+
};
|
947
992
|
/** A custom view that has been saved by a user. */
|
948
993
|
export declare type CustomView = Node & {
|
949
994
|
__typename?: "CustomView";
|
@@ -968,6 +1013,8 @@ export declare type CustomView = Node & {
|
|
968
1013
|
icon?: Maybe<Scalars["String"]>;
|
969
1014
|
/** The unique identifier of the entity. */
|
970
1015
|
id: Scalars["ID"];
|
1016
|
+
/** Issues associated with the custom view. */
|
1017
|
+
issues: IssueConnection;
|
971
1018
|
/** The model name of the custom view. */
|
972
1019
|
modelName: Scalars["String"];
|
973
1020
|
/** The name of the custom view. */
|
@@ -976,7 +1023,7 @@ export declare type CustomView = Node & {
|
|
976
1023
|
organization: Organization;
|
977
1024
|
/** The user who owns the custom view. */
|
978
1025
|
owner: User;
|
979
|
-
/**
|
1026
|
+
/** The filter applied to projects in the custom view. */
|
980
1027
|
projectFilterData?: Maybe<Scalars["JSONObject"]>;
|
981
1028
|
/** Whether the custom view is shared with everyone in the organization. */
|
982
1029
|
shared: Scalars["Boolean"];
|
@@ -988,9 +1035,19 @@ export declare type CustomView = Node & {
|
|
988
1035
|
* been updated after creation.
|
989
1036
|
*/
|
990
1037
|
updatedAt: Scalars["DateTime"];
|
991
|
-
/**
|
1038
|
+
/** The user who last updated the custom view. */
|
992
1039
|
updatedBy: User;
|
993
1040
|
};
|
1041
|
+
/** A custom view that has been saved by a user. */
|
1042
|
+
export declare type CustomViewIssuesArgs = {
|
1043
|
+
after?: Maybe<Scalars["String"]>;
|
1044
|
+
before?: Maybe<Scalars["String"]>;
|
1045
|
+
filter?: Maybe<IssueFilter>;
|
1046
|
+
first?: Maybe<Scalars["Int"]>;
|
1047
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
1048
|
+
last?: Maybe<Scalars["Int"]>;
|
1049
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
1050
|
+
};
|
994
1051
|
export declare type CustomViewConnection = {
|
995
1052
|
__typename?: "CustomViewConnection";
|
996
1053
|
edges: Array<CustomViewEdge>;
|
@@ -1014,8 +1071,10 @@ export declare type CustomViewCreateInput = {
|
|
1014
1071
|
name: Scalars["String"];
|
1015
1072
|
/** The owner of the custom view. */
|
1016
1073
|
ownerId?: Maybe<Scalars["String"]>;
|
1017
|
-
/**
|
1074
|
+
/** The project filter applied to issues in the custom view. */
|
1018
1075
|
projectFilterData?: Maybe<Scalars["JSONObject"]>;
|
1076
|
+
/** [Internal] The id of the project associated with the custom view. */
|
1077
|
+
projectId?: Maybe<Scalars["String"]>;
|
1019
1078
|
/** Whether the custom view is shared with everyone in the organization. */
|
1020
1079
|
shared?: Maybe<Scalars["Boolean"]>;
|
1021
1080
|
/** The id of the team associated with the custom view. */
|
@@ -1035,7 +1094,7 @@ export declare type CustomViewHasSubscribersPayload = {
|
|
1035
1094
|
/** A custom view notification subscription. */
|
1036
1095
|
export declare type CustomViewNotificationSubscription = Entity & Node & NotificationSubscription & {
|
1037
1096
|
__typename?: "CustomViewNotificationSubscription";
|
1038
|
-
/** Whether the subscription is active or not */
|
1097
|
+
/** Whether the subscription is active or not. */
|
1039
1098
|
active: Scalars["Boolean"];
|
1040
1099
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
1041
1100
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -1103,8 +1162,10 @@ export declare type CustomViewUpdateInput = {
|
|
1103
1162
|
name?: Maybe<Scalars["String"]>;
|
1104
1163
|
/** The owner of the custom view. */
|
1105
1164
|
ownerId?: Maybe<Scalars["String"]>;
|
1106
|
-
/**
|
1165
|
+
/** The project filter applied to issues in the custom view. */
|
1107
1166
|
projectFilterData?: Maybe<Scalars["JSONObject"]>;
|
1167
|
+
/** [Internal] The id of the project associated with the custom view. */
|
1168
|
+
projectId?: Maybe<Scalars["String"]>;
|
1108
1169
|
/** Whether the custom view is shared with everyone in the organization. */
|
1109
1170
|
shared?: Maybe<Scalars["Boolean"]>;
|
1110
1171
|
/** The id of the team associated with the custom view. */
|
@@ -1256,7 +1317,7 @@ export declare type CycleFilter = {
|
|
1256
1317
|
/** A cycle notification subscription. */
|
1257
1318
|
export declare type CycleNotificationSubscription = Entity & Node & NotificationSubscription & {
|
1258
1319
|
__typename?: "CycleNotificationSubscription";
|
1259
|
-
/** Whether the subscription is active or not */
|
1320
|
+
/** Whether the subscription is active or not. */
|
1260
1321
|
active: Scalars["Boolean"];
|
1261
1322
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
1262
1323
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -1300,12 +1361,20 @@ export declare type CyclePayload = {
|
|
1300
1361
|
/** Whether the operation was successful. */
|
1301
1362
|
success: Scalars["Boolean"];
|
1302
1363
|
};
|
1364
|
+
/** [DEPRECATED] Input for shifting all cycles by a certain number of days. Mutation is now deprecated. */
|
1303
1365
|
export declare type CycleShiftAllInput = {
|
1304
|
-
/** The number of days to shift the cycles by. */
|
1366
|
+
/** [DEPRECATED] The number of days to shift the cycles by. */
|
1305
1367
|
daysToShift: Scalars["Float"];
|
1306
|
-
/** The cycle id at which to start the shift. */
|
1368
|
+
/** [DEPRECATED] The cycle id at which to start the shift. */
|
1307
1369
|
id: Scalars["String"];
|
1308
1370
|
};
|
1371
|
+
/** Issue cycle sorting options. */
|
1372
|
+
export declare type CycleSort = {
|
1373
|
+
/** Whether nulls should be sorted first or last */
|
1374
|
+
nulls?: Maybe<PaginationNulls>;
|
1375
|
+
/** The order for the individual sort */
|
1376
|
+
order?: Maybe<PaginationSortOrder>;
|
1377
|
+
};
|
1309
1378
|
export declare type CycleUpdateInput = {
|
1310
1379
|
/** The end date of the cycle. */
|
1311
1380
|
completedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -1378,10 +1447,12 @@ export declare type Document = Node & {
|
|
1378
1447
|
/** The documents content in markdown format. */
|
1379
1448
|
content?: Maybe<Scalars["String"]>;
|
1380
1449
|
/**
|
1381
|
-
* The documents content as a Prosemirror document.
|
1450
|
+
* [Internal] The documents content as a Prosemirror document.
|
1382
1451
|
* @deprecated Use content instead.
|
1383
1452
|
*/
|
1384
1453
|
contentData?: Maybe<Scalars["JSON"]>;
|
1454
|
+
/** [Internal] The documents content as YJS state. */
|
1455
|
+
contentState?: Maybe<Scalars["String"]>;
|
1385
1456
|
/** The time at which the entity was created. */
|
1386
1457
|
createdAt: Scalars["DateTime"];
|
1387
1458
|
/** The user who created the document. */
|
@@ -1409,6 +1480,33 @@ export declare type Document = Node & {
|
|
1409
1480
|
/** The user who last updated the document. */
|
1410
1481
|
updatedBy: User;
|
1411
1482
|
};
|
1483
|
+
/** Document filtering options. */
|
1484
|
+
export declare type DocumentCollectionFilter = {
|
1485
|
+
/** Compound filters, all of which need to be matched by the document. */
|
1486
|
+
and?: Maybe<Array<DocumentCollectionFilter>>;
|
1487
|
+
/** Comparator for the created at date. */
|
1488
|
+
createdAt?: Maybe<DateComparator>;
|
1489
|
+
/** Filters that the document's creator must satisfy. */
|
1490
|
+
creator?: Maybe<UserFilter>;
|
1491
|
+
/** Filters that needs to be matched by all documents. */
|
1492
|
+
every?: Maybe<DocumentFilter>;
|
1493
|
+
/** Comparator for the identifier. */
|
1494
|
+
id?: Maybe<IdComparator>;
|
1495
|
+
/** Comparator for the collection length. */
|
1496
|
+
length?: Maybe<NumberComparator>;
|
1497
|
+
/** Compound filters, one of which need to be matched by the document. */
|
1498
|
+
or?: Maybe<Array<DocumentCollectionFilter>>;
|
1499
|
+
/** Filters that the document's project must satisfy. */
|
1500
|
+
project?: Maybe<ProjectFilter>;
|
1501
|
+
/** Comparator for the document slug ID. */
|
1502
|
+
slugId?: Maybe<StringComparator>;
|
1503
|
+
/** Filters that needs to be matched by some documents. */
|
1504
|
+
some?: Maybe<DocumentFilter>;
|
1505
|
+
/** Comparator for the document title. */
|
1506
|
+
title?: Maybe<StringComparator>;
|
1507
|
+
/** Comparator for the updated at date. */
|
1508
|
+
updatedAt?: Maybe<DateComparator>;
|
1509
|
+
};
|
1412
1510
|
export declare type DocumentConnection = {
|
1413
1511
|
__typename?: "DocumentConnection";
|
1414
1512
|
edges: Array<DocumentEdge>;
|
@@ -1422,7 +1520,10 @@ export declare type DocumentContent = Node & {
|
|
1422
1520
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
1423
1521
|
/** The document content in markdown format. */
|
1424
1522
|
content?: Maybe<Scalars["String"]>;
|
1425
|
-
/**
|
1523
|
+
/**
|
1524
|
+
* [Internal] The document content as a Prosemirror document.
|
1525
|
+
* @deprecated Use `contentState` instead
|
1526
|
+
*/
|
1426
1527
|
contentData?: Maybe<Scalars["JSONObject"]>;
|
1427
1528
|
/** The document content state as a base64 encoded string. */
|
1428
1529
|
contentState?: Maybe<Scalars["String"]>;
|
@@ -1438,7 +1539,7 @@ export declare type DocumentContent = Node & {
|
|
1438
1539
|
project?: Maybe<Project>;
|
1439
1540
|
/** The project milestone that the content is associated with. */
|
1440
1541
|
projectMilestone?: Maybe<ProjectMilestone>;
|
1441
|
-
/** The time at which the document content was restored from a previous version */
|
1542
|
+
/** The time at which the document content was restored from a previous version. */
|
1442
1543
|
restoredAt?: Maybe<Scalars["DateTime"]>;
|
1443
1544
|
/**
|
1444
1545
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
@@ -1451,12 +1552,16 @@ export declare type DocumentContent = Node & {
|
|
1451
1552
|
export declare type DocumentContentFilter = {
|
1452
1553
|
/** Comparator for the created at date. */
|
1453
1554
|
createdAt?: Maybe<DateComparator>;
|
1555
|
+
/** Filters that the document content document must satisfy. */
|
1556
|
+
document?: Maybe<DocumentFilter>;
|
1454
1557
|
/** Comparator for the identifier. */
|
1455
1558
|
id?: Maybe<IdComparator>;
|
1559
|
+
/** Filters that the document content project must satisfy. */
|
1560
|
+
project?: Maybe<ProjectFilter>;
|
1456
1561
|
/** Comparator for the updated at date. */
|
1457
1562
|
updatedAt?: Maybe<DateComparator>;
|
1458
1563
|
};
|
1459
|
-
/** A document content history for a document */
|
1564
|
+
/** A document content history for a document. */
|
1460
1565
|
export declare type DocumentContentHistory = Node & {
|
1461
1566
|
__typename?: "DocumentContentHistory";
|
1462
1567
|
/** IDs of actors whose edits went into this history item. */
|
@@ -1465,7 +1570,7 @@ export declare type DocumentContentHistory = Node & {
|
|
1465
1570
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
1466
1571
|
/** [Internal] The document content as a Prosemirror document. */
|
1467
1572
|
contentData?: Maybe<Scalars["JSONObject"]>;
|
1468
|
-
/** The timestamp associated with the DocumentContent when it was originally saved */
|
1573
|
+
/** The timestamp associated with the DocumentContent when it was originally saved. */
|
1469
1574
|
contentDataSnapshotAt: Scalars["DateTime"];
|
1470
1575
|
/** The time at which the entity was created. */
|
1471
1576
|
createdAt: Scalars["DateTime"];
|
@@ -1526,6 +1631,27 @@ export declare type DocumentEdge = {
|
|
1526
1631
|
cursor: Scalars["String"];
|
1527
1632
|
node: Document;
|
1528
1633
|
};
|
1634
|
+
/** Document filtering options. */
|
1635
|
+
export declare type DocumentFilter = {
|
1636
|
+
/** Compound filters, all of which need to be matched by the document. */
|
1637
|
+
and?: Maybe<Array<DocumentFilter>>;
|
1638
|
+
/** Comparator for the created at date. */
|
1639
|
+
createdAt?: Maybe<DateComparator>;
|
1640
|
+
/** Filters that the document's creator must satisfy. */
|
1641
|
+
creator?: Maybe<UserFilter>;
|
1642
|
+
/** Comparator for the identifier. */
|
1643
|
+
id?: Maybe<IdComparator>;
|
1644
|
+
/** Compound filters, one of which need to be matched by the document. */
|
1645
|
+
or?: Maybe<Array<DocumentFilter>>;
|
1646
|
+
/** Filters that the document's project must satisfy. */
|
1647
|
+
project?: Maybe<ProjectFilter>;
|
1648
|
+
/** Comparator for the document slug ID. */
|
1649
|
+
slugId?: Maybe<StringComparator>;
|
1650
|
+
/** Comparator for the document title. */
|
1651
|
+
title?: Maybe<StringComparator>;
|
1652
|
+
/** Comparator for the updated at date. */
|
1653
|
+
updatedAt?: Maybe<DateComparator>;
|
1654
|
+
};
|
1529
1655
|
export declare type DocumentPayload = {
|
1530
1656
|
__typename?: "DocumentPayload";
|
1531
1657
|
/** The document that was created or updated. */
|
@@ -1554,10 +1680,12 @@ export declare type DocumentSearchResult = Node & {
|
|
1554
1680
|
/** The documents content in markdown format. */
|
1555
1681
|
content?: Maybe<Scalars["String"]>;
|
1556
1682
|
/**
|
1557
|
-
* The documents content as a Prosemirror document.
|
1683
|
+
* [Internal] The documents content as a Prosemirror document.
|
1558
1684
|
* @deprecated Use content instead.
|
1559
1685
|
*/
|
1560
1686
|
contentData?: Maybe<Scalars["JSON"]>;
|
1687
|
+
/** [Internal] The documents content as YJS state. */
|
1688
|
+
contentState?: Maybe<Scalars["String"]>;
|
1561
1689
|
/** The time at which the entity was created. */
|
1562
1690
|
createdAt: Scalars["DateTime"];
|
1563
1691
|
/** The user who created the document. */
|
@@ -1568,7 +1696,7 @@ export declare type DocumentSearchResult = Node & {
|
|
1568
1696
|
id: Scalars["ID"];
|
1569
1697
|
/** The last template that was applied to this document. */
|
1570
1698
|
lastAppliedTemplate?: Maybe<Template>;
|
1571
|
-
/** Metadata related to search result */
|
1699
|
+
/** Metadata related to search result. */
|
1572
1700
|
metadata: Scalars["JSONObject"];
|
1573
1701
|
/** The project that the document is associated with. */
|
1574
1702
|
project: Project;
|
@@ -1617,7 +1745,14 @@ export declare type DocumentUpdateInput = {
|
|
1617
1745
|
/** The title of the document. */
|
1618
1746
|
title?: Maybe<Scalars["String"]>;
|
1619
1747
|
};
|
1620
|
-
/**
|
1748
|
+
/** Issue due date sorting options. */
|
1749
|
+
export declare type DueDateSort = {
|
1750
|
+
/** Whether nulls should be sorted first or last */
|
1751
|
+
nulls?: Maybe<PaginationNulls>;
|
1752
|
+
/** The order for the individual sort */
|
1753
|
+
order?: Maybe<PaginationSortOrder>;
|
1754
|
+
};
|
1755
|
+
/** An email address that can be used for submitting issues. */
|
1621
1756
|
export declare type EmailIntakeAddress = Node & {
|
1622
1757
|
__typename?: "EmailIntakeAddress";
|
1623
1758
|
/** Unique email address user name (before @) used for incoming email. */
|
@@ -1632,8 +1767,12 @@ export declare type EmailIntakeAddress = Node & {
|
|
1632
1767
|
enabled: Scalars["Boolean"];
|
1633
1768
|
/** The unique identifier of the entity. */
|
1634
1769
|
id: Scalars["ID"];
|
1770
|
+
/** The organization that the email address is associated with. */
|
1771
|
+
organization: Organization;
|
1635
1772
|
/** The team that the email address is associated with. */
|
1636
1773
|
team: Team;
|
1774
|
+
/** The template that the email address is associated with. */
|
1775
|
+
template?: Maybe<Template>;
|
1637
1776
|
/**
|
1638
1777
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
1639
1778
|
* 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 +1780,27 @@ export declare type EmailIntakeAddress = Node & {
|
|
1641
1780
|
*/
|
1642
1781
|
updatedAt: Scalars["DateTime"];
|
1643
1782
|
};
|
1783
|
+
export declare type EmailIntakeAddressCreateInput = {
|
1784
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
1785
|
+
id?: Maybe<Scalars["String"]>;
|
1786
|
+
/** The identifier or key of the team this email address will intake issues for. */
|
1787
|
+
teamId?: Maybe<Scalars["String"]>;
|
1788
|
+
/** The identifier of the template this email address will intake issues for. */
|
1789
|
+
templateId?: Maybe<Scalars["String"]>;
|
1790
|
+
};
|
1791
|
+
export declare type EmailIntakeAddressPayload = {
|
1792
|
+
__typename?: "EmailIntakeAddressPayload";
|
1793
|
+
/** The email address that was created or updated. */
|
1794
|
+
emailIntakeAddress: EmailIntakeAddress;
|
1795
|
+
/** The identifier of the last sync operation. */
|
1796
|
+
lastSyncId: Scalars["Float"];
|
1797
|
+
/** Whether the operation was successful. */
|
1798
|
+
success: Scalars["Boolean"];
|
1799
|
+
};
|
1800
|
+
export declare type EmailIntakeAddressUpdateInput = {
|
1801
|
+
/** Whether the email address is currently enabled. If set to false, the email address will be disabled and no longer accept incoming emails. */
|
1802
|
+
enabled: Scalars["Boolean"];
|
1803
|
+
};
|
1644
1804
|
export declare type EmailSubscribeInput = {
|
1645
1805
|
/** [INTERNAL] Email to subscribe. */
|
1646
1806
|
email: Scalars["String"];
|
@@ -1777,7 +1937,14 @@ export declare type EstimateComparator = {
|
|
1777
1937
|
/** Compound filters, all of which need to be matched by the estimate. */
|
1778
1938
|
or?: Maybe<Array<NullableNumberComparator>>;
|
1779
1939
|
};
|
1780
|
-
/**
|
1940
|
+
/** Issue estimate sorting options. */
|
1941
|
+
export declare type EstimateSort = {
|
1942
|
+
/** Whether nulls should be sorted first or last */
|
1943
|
+
nulls?: Maybe<PaginationNulls>;
|
1944
|
+
/** The order for the individual sort */
|
1945
|
+
order?: Maybe<PaginationSortOrder>;
|
1946
|
+
};
|
1947
|
+
/** 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
1948
|
export declare type ExternalUser = Node & {
|
1782
1949
|
__typename?: "ExternalUser";
|
1783
1950
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
@@ -1817,6 +1984,36 @@ export declare type ExternalUserEdge = {
|
|
1817
1984
|
cursor: Scalars["String"];
|
1818
1985
|
node: ExternalUser;
|
1819
1986
|
};
|
1987
|
+
/** [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. */
|
1988
|
+
export declare type Facet = Node & {
|
1989
|
+
__typename?: "Facet";
|
1990
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
1991
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
1992
|
+
/** The time at which the entity was created. */
|
1993
|
+
createdAt: Scalars["DateTime"];
|
1994
|
+
/** The unique identifier of the entity. */
|
1995
|
+
id: Scalars["ID"];
|
1996
|
+
/** The sort order of the facet. */
|
1997
|
+
sortOrder: Scalars["Float"];
|
1998
|
+
/**
|
1999
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
2000
|
+
* 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
|
2001
|
+
* been updated after creation.
|
2002
|
+
*/
|
2003
|
+
updatedAt: Scalars["DateTime"];
|
2004
|
+
};
|
2005
|
+
export declare type FacetConnection = {
|
2006
|
+
__typename?: "FacetConnection";
|
2007
|
+
edges: Array<FacetEdge>;
|
2008
|
+
nodes: Array<Facet>;
|
2009
|
+
pageInfo: PageInfo;
|
2010
|
+
};
|
2011
|
+
export declare type FacetEdge = {
|
2012
|
+
__typename?: "FacetEdge";
|
2013
|
+
/** Used in `before` and `after` args */
|
2014
|
+
cursor: Scalars["String"];
|
2015
|
+
node: Facet;
|
2016
|
+
};
|
1820
2017
|
/** User favorites presented in the sidebar. */
|
1821
2018
|
export declare type Favorite = Node & {
|
1822
2019
|
__typename?: "Favorite";
|
@@ -1891,10 +2088,14 @@ export declare type FavoriteCreateInput = {
|
|
1891
2088
|
cycleId?: Maybe<Scalars["String"]>;
|
1892
2089
|
/** The identifier of the document to favorite. */
|
1893
2090
|
documentId?: Maybe<Scalars["String"]>;
|
2091
|
+
/** [INTERNAL] The identifier of the facet to favorite. */
|
2092
|
+
facetId?: Maybe<Scalars["String"]>;
|
1894
2093
|
/** The name of the favorite folder. */
|
1895
2094
|
folderName?: Maybe<Scalars["String"]>;
|
1896
2095
|
/** The identifier. If none is provided, the backend will generate one. */
|
1897
2096
|
id?: Maybe<Scalars["String"]>;
|
2097
|
+
/** [INTERNAL] The identifier of the initiative to favorite. */
|
2098
|
+
initiativeId?: Maybe<Scalars["String"]>;
|
1898
2099
|
/** The identifier of the issue to favorite. */
|
1899
2100
|
issueId?: Maybe<Scalars["String"]>;
|
1900
2101
|
/** The identifier of the label to favorite. */
|
@@ -1979,8 +2180,11 @@ export declare type GitAutomationState = Node & {
|
|
1979
2180
|
__typename?: "GitAutomationState";
|
1980
2181
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
1981
2182
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
1982
|
-
/**
|
1983
|
-
|
2183
|
+
/**
|
2184
|
+
* [DEPRECATED] The target branch, if null, the automation will be triggered on any branch.
|
2185
|
+
* @deprecated Use targetBranch instead.
|
2186
|
+
*/
|
2187
|
+
branchPattern?: Maybe<Scalars["String"]>;
|
1984
2188
|
/** The time at which the entity was created. */
|
1985
2189
|
createdAt: Scalars["DateTime"];
|
1986
2190
|
/** The event that triggers the automation. */
|
@@ -1989,6 +2193,8 @@ export declare type GitAutomationState = Node & {
|
|
1989
2193
|
id: Scalars["ID"];
|
1990
2194
|
/** The associated workflow state. */
|
1991
2195
|
state?: Maybe<WorkflowState>;
|
2196
|
+
/** The target branch associated to this automation state. */
|
2197
|
+
targetBranch?: Maybe<GitAutomationTargetBranch>;
|
1992
2198
|
/** The team to which this automation state belongs. */
|
1993
2199
|
team: Team;
|
1994
2200
|
/**
|
@@ -2005,7 +2211,7 @@ export declare type GitAutomationStateConnection = {
|
|
2005
2211
|
pageInfo: PageInfo;
|
2006
2212
|
};
|
2007
2213
|
export declare type GitAutomationStateCreateInput = {
|
2008
|
-
/** The target branch pattern. If null, all branches are targeted. */
|
2214
|
+
/** [DEPRECATED] The target branch pattern. If null, all branches are targeted. */
|
2009
2215
|
branchPattern?: Maybe<Scalars["String"]>;
|
2010
2216
|
/** The event that triggers the automation. */
|
2011
2217
|
event: GitAutomationStates;
|
@@ -2013,6 +2219,8 @@ export declare type GitAutomationStateCreateInput = {
|
|
2013
2219
|
id?: Maybe<Scalars["String"]>;
|
2014
2220
|
/** The associated workflow state. If null, will override default behaviour and take no action. */
|
2015
2221
|
stateId?: Maybe<Scalars["String"]>;
|
2222
|
+
/** The associated target branch. If null, all branches are targeted. */
|
2223
|
+
targetBranchId?: Maybe<Scalars["String"]>;
|
2016
2224
|
/** The team associated with the automation state. */
|
2017
2225
|
teamId: Scalars["String"];
|
2018
2226
|
};
|
@@ -2032,12 +2240,14 @@ export declare type GitAutomationStatePayload = {
|
|
2032
2240
|
success: Scalars["Boolean"];
|
2033
2241
|
};
|
2034
2242
|
export declare type GitAutomationStateUpdateInput = {
|
2035
|
-
/** The target branch pattern. If null, all branches are targeted. */
|
2243
|
+
/** [DEPRECATED] The target branch pattern. If null, all branches are targeted. */
|
2036
2244
|
branchPattern?: Maybe<Scalars["String"]>;
|
2037
2245
|
/** The event that triggers the automation. */
|
2038
2246
|
event?: Maybe<GitAutomationStates>;
|
2039
2247
|
/** The associated workflow state. */
|
2040
2248
|
stateId?: Maybe<Scalars["String"]>;
|
2249
|
+
/** The associated target branch. If null, all branches are targeted. */
|
2250
|
+
targetBranchId?: Maybe<Scalars["String"]>;
|
2041
2251
|
};
|
2042
2252
|
/** The various states of a pull/merge request. */
|
2043
2253
|
export declare enum GitAutomationStates {
|
@@ -2047,6 +2257,64 @@ export declare enum GitAutomationStates {
|
|
2047
2257
|
Review = "review",
|
2048
2258
|
Start = "start"
|
2049
2259
|
}
|
2260
|
+
/** A Git target branch for which there are automations (GitAutomationState). */
|
2261
|
+
export declare type GitAutomationTargetBranch = Node & {
|
2262
|
+
__typename?: "GitAutomationTargetBranch";
|
2263
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
2264
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
2265
|
+
/** Automation states associated with the target branch. */
|
2266
|
+
automationStates: GitAutomationStateConnection;
|
2267
|
+
/** The target branch pattern. */
|
2268
|
+
branchPattern: Scalars["String"];
|
2269
|
+
/** The time at which the entity was created. */
|
2270
|
+
createdAt: Scalars["DateTime"];
|
2271
|
+
/** The unique identifier of the entity. */
|
2272
|
+
id: Scalars["ID"];
|
2273
|
+
/** Whether the branch pattern is a regular expression. */
|
2274
|
+
isRegex: Scalars["Boolean"];
|
2275
|
+
/** The team to which this Git target branch automation belongs. */
|
2276
|
+
team: Team;
|
2277
|
+
/**
|
2278
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
2279
|
+
* 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
|
2280
|
+
* been updated after creation.
|
2281
|
+
*/
|
2282
|
+
updatedAt: Scalars["DateTime"];
|
2283
|
+
};
|
2284
|
+
/** A Git target branch for which there are automations (GitAutomationState). */
|
2285
|
+
export declare type GitAutomationTargetBranchAutomationStatesArgs = {
|
2286
|
+
after?: Maybe<Scalars["String"]>;
|
2287
|
+
before?: Maybe<Scalars["String"]>;
|
2288
|
+
first?: Maybe<Scalars["Int"]>;
|
2289
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
2290
|
+
last?: Maybe<Scalars["Int"]>;
|
2291
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
2292
|
+
};
|
2293
|
+
export declare type GitAutomationTargetBranchCreateInput = {
|
2294
|
+
/** The target branch pattern. */
|
2295
|
+
branchPattern: Scalars["String"];
|
2296
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
2297
|
+
id?: Maybe<Scalars["String"]>;
|
2298
|
+
/** Whether the branch pattern is a regular expression. */
|
2299
|
+
isRegex?: Maybe<Scalars["Boolean"]>;
|
2300
|
+
/** The team associated with the Git target branch automation. */
|
2301
|
+
teamId: Scalars["String"];
|
2302
|
+
};
|
2303
|
+
export declare type GitAutomationTargetBranchPayload = {
|
2304
|
+
__typename?: "GitAutomationTargetBranchPayload";
|
2305
|
+
/** The identifier of the last sync operation. */
|
2306
|
+
lastSyncId: Scalars["Float"];
|
2307
|
+
/** Whether the operation was successful. */
|
2308
|
+
success: Scalars["Boolean"];
|
2309
|
+
/** The Git target branch automation that was created or updated. */
|
2310
|
+
targetBranch: GitAutomationTargetBranch;
|
2311
|
+
};
|
2312
|
+
export declare type GitAutomationTargetBranchUpdateInput = {
|
2313
|
+
/** The target branch pattern. */
|
2314
|
+
branchPattern?: Maybe<Scalars["String"]>;
|
2315
|
+
/** Whether the branch pattern is a regular expression. */
|
2316
|
+
isRegex?: Maybe<Scalars["Boolean"]>;
|
2317
|
+
};
|
2050
2318
|
export declare type GitHubCommitIntegrationPayload = {
|
2051
2319
|
__typename?: "GitHubCommitIntegrationPayload";
|
2052
2320
|
/** The integration that was created or updated. */
|
@@ -2061,11 +2329,11 @@ export declare type GitHubCommitIntegrationPayload = {
|
|
2061
2329
|
/** Metadata and settings for a GitHub Personal integration. */
|
2062
2330
|
export declare type GitHubPersonalSettings = {
|
2063
2331
|
__typename?: "GitHubPersonalSettings";
|
2064
|
-
/** The GitHub user's name */
|
2332
|
+
/** The GitHub user's name. */
|
2065
2333
|
login: Scalars["String"];
|
2066
2334
|
};
|
2067
2335
|
export declare type GitHubPersonalSettingsInput = {
|
2068
|
-
/** The GitHub user's name */
|
2336
|
+
/** The GitHub user's name. */
|
2069
2337
|
login: Scalars["String"];
|
2070
2338
|
};
|
2071
2339
|
/** GitHub repos available to sync. */
|
@@ -2085,41 +2353,41 @@ export declare type GitHubRepoInput = {
|
|
2085
2353
|
/** Metadata and settings for a GitHub integration. */
|
2086
2354
|
export declare type GitHubSettings = {
|
2087
2355
|
__typename?: "GitHubSettings";
|
2088
|
-
/** The avatar URL for the GitHub organization */
|
2356
|
+
/** The avatar URL for the GitHub organization. */
|
2089
2357
|
orgAvatarUrl: Scalars["String"];
|
2090
|
-
/** The GitHub organization's name */
|
2358
|
+
/** The GitHub organization's name. */
|
2091
2359
|
orgLogin: Scalars["String"];
|
2092
|
-
/** The names of the repositories connected for the GitHub integration */
|
2360
|
+
/** The names of the repositories connected for the GitHub integration. */
|
2093
2361
|
repositories?: Maybe<Array<GitHubRepo>>;
|
2094
|
-
/** Mapping of team to repository for syncing */
|
2362
|
+
/** Mapping of team to repository for syncing. */
|
2095
2363
|
repositoriesMapping?: Maybe<Array<TeamRepoMapping>>;
|
2096
2364
|
};
|
2097
2365
|
export declare type GitHubSettingsInput = {
|
2098
|
-
/** The avatar URL for the GitHub organization */
|
2366
|
+
/** The avatar URL for the GitHub organization. */
|
2099
2367
|
orgAvatarUrl: Scalars["String"];
|
2100
|
-
/** The GitHub organization's name */
|
2368
|
+
/** The GitHub organization's name. */
|
2101
2369
|
orgLogin: Scalars["String"];
|
2102
|
-
/** The names of the repositories connected for the GitHub integration */
|
2370
|
+
/** The names of the repositories connected for the GitHub integration. */
|
2103
2371
|
repositories?: Maybe<Array<GitHubRepoInput>>;
|
2104
|
-
/** Mapping of team to repository for syncing */
|
2372
|
+
/** Mapping of team to repository for syncing. */
|
2105
2373
|
repositoriesMapping?: Maybe<Array<TeamRepoMappingInput>>;
|
2106
2374
|
};
|
2107
2375
|
/** Metadata and settings for a GitLab integration. */
|
2108
2376
|
export declare type GitLabSettings = {
|
2109
2377
|
__typename?: "GitLabSettings";
|
2110
|
-
/** The ISO timestamp the GitLab access token expires */
|
2378
|
+
/** The ISO timestamp the GitLab access token expires. */
|
2111
2379
|
expiresAt?: Maybe<Scalars["String"]>;
|
2112
|
-
/** Whether the token is limited to a read-only scope */
|
2380
|
+
/** Whether the token is limited to a read-only scope. */
|
2113
2381
|
readonly?: Maybe<Scalars["Boolean"]>;
|
2114
|
-
/** The self-hosted URL of the GitLab instance */
|
2382
|
+
/** The self-hosted URL of the GitLab instance. */
|
2115
2383
|
url?: Maybe<Scalars["String"]>;
|
2116
2384
|
};
|
2117
2385
|
export declare type GitLabSettingsInput = {
|
2118
|
-
/** The ISO timestamp the GitLab access token expires */
|
2386
|
+
/** The ISO timestamp the GitLab access token expires. */
|
2119
2387
|
expiresAt?: Maybe<Scalars["String"]>;
|
2120
|
-
/** Whether the token is limited to a read-only scope */
|
2388
|
+
/** Whether the token is limited to a read-only scope. */
|
2121
2389
|
readonly?: Maybe<Scalars["Boolean"]>;
|
2122
|
-
/** The self-hosted URL of the GitLab instance */
|
2390
|
+
/** The self-hosted URL of the GitLab instance. */
|
2123
2391
|
url?: Maybe<Scalars["String"]>;
|
2124
2392
|
};
|
2125
2393
|
/** GitHub OAuth token, plus information about the organizations the user is a member of. */
|
@@ -2139,8 +2407,6 @@ export declare type GithubOrg = {
|
|
2139
2407
|
isPersonal?: Maybe<Scalars["Boolean"]>;
|
2140
2408
|
/** The login for the GitHub organization. */
|
2141
2409
|
login: Scalars["String"];
|
2142
|
-
/** The name of the GitHub organization. */
|
2143
|
-
name: Scalars["String"];
|
2144
2410
|
/** Repositories that the organization owns. */
|
2145
2411
|
repositories: Array<GithubRepo>;
|
2146
2412
|
};
|
@@ -2169,7 +2435,7 @@ export declare type GoogleSheetsSettingsInput = {
|
|
2169
2435
|
export declare type GoogleUserAccountAuthInput = {
|
2170
2436
|
/** Code returned from Google's OAuth flow. */
|
2171
2437
|
code: Scalars["String"];
|
2172
|
-
/** An optional invite link for an organization. */
|
2438
|
+
/** An optional invite link for an organization used to populate available organizations. */
|
2173
2439
|
inviteLink?: Maybe<Scalars["String"]>;
|
2174
2440
|
/** The URI to redirect the user to. */
|
2175
2441
|
redirectUri?: Maybe<Scalars["String"]>;
|
@@ -2200,6 +2466,220 @@ export declare type ImageUploadFromUrlPayload = {
|
|
2200
2466
|
/** The URL containing the image. */
|
2201
2467
|
url?: Maybe<Scalars["String"]>;
|
2202
2468
|
};
|
2469
|
+
/** [INTERNAL] An initiative to group projects. */
|
2470
|
+
export declare type Initiative = Node & {
|
2471
|
+
__typename?: "Initiative";
|
2472
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
2473
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
2474
|
+
/** The initiative's color. */
|
2475
|
+
color?: Maybe<Scalars["String"]>;
|
2476
|
+
/** The time at which the entity was created. */
|
2477
|
+
createdAt: Scalars["DateTime"];
|
2478
|
+
/** The user who created the initiative. */
|
2479
|
+
creator: User;
|
2480
|
+
/** The description of the initiative. */
|
2481
|
+
description?: Maybe<Scalars["String"]>;
|
2482
|
+
/** The unique identifier of the entity. */
|
2483
|
+
id: Scalars["ID"];
|
2484
|
+
/** The name of the initiative. */
|
2485
|
+
name: Scalars["String"];
|
2486
|
+
/** The organization of the initiative. */
|
2487
|
+
organization: Organization;
|
2488
|
+
/** The user who owns the initiative. */
|
2489
|
+
owner: User;
|
2490
|
+
/** Projects associated with the initiative. */
|
2491
|
+
projects: ProjectConnection;
|
2492
|
+
/** The initiative's unique URL slug. */
|
2493
|
+
slugId: Scalars["String"];
|
2494
|
+
/** The sort order of the initiative within the organization. */
|
2495
|
+
sortOrder: Scalars["Float"];
|
2496
|
+
/** The estimated completion date of the initiative. */
|
2497
|
+
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
2498
|
+
/** [INTERNAL] The resolution of the initiative's estimated completion date. */
|
2499
|
+
targetDateResolution?: Maybe<DateResolutionType>;
|
2500
|
+
/**
|
2501
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
2502
|
+
* 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
|
2503
|
+
* been updated after creation.
|
2504
|
+
*/
|
2505
|
+
updatedAt: Scalars["DateTime"];
|
2506
|
+
};
|
2507
|
+
/** [INTERNAL] An initiative to group projects. */
|
2508
|
+
export declare type InitiativeProjectsArgs = {
|
2509
|
+
after?: Maybe<Scalars["String"]>;
|
2510
|
+
before?: Maybe<Scalars["String"]>;
|
2511
|
+
filter?: Maybe<ProjectFilter>;
|
2512
|
+
first?: Maybe<Scalars["Int"]>;
|
2513
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
2514
|
+
last?: Maybe<Scalars["Int"]>;
|
2515
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
2516
|
+
};
|
2517
|
+
/** A generic payload return from entity archive mutations. */
|
2518
|
+
export declare type InitiativeArchivePayload = ArchivePayload & {
|
2519
|
+
__typename?: "InitiativeArchivePayload";
|
2520
|
+
/** The archived/unarchived entity. Null if entity was deleted. */
|
2521
|
+
entity?: Maybe<Initiative>;
|
2522
|
+
/** The identifier of the last sync operation. */
|
2523
|
+
lastSyncId: Scalars["Float"];
|
2524
|
+
/** Whether the operation was successful. */
|
2525
|
+
success: Scalars["Boolean"];
|
2526
|
+
};
|
2527
|
+
/** Initiative collection filtering options. */
|
2528
|
+
export declare type InitiativeCollectionFilter = {
|
2529
|
+
/** Compound filters, all of which need to be matched by the initiative. */
|
2530
|
+
and?: Maybe<Array<InitiativeCollectionFilter>>;
|
2531
|
+
/** Comparator for the created at date. */
|
2532
|
+
createdAt?: Maybe<DateComparator>;
|
2533
|
+
/** Filters that the initiative creator must satisfy. */
|
2534
|
+
creator?: Maybe<UserFilter>;
|
2535
|
+
/** Filters that needs to be matched by all initiatives. */
|
2536
|
+
every?: Maybe<InitiativeFilter>;
|
2537
|
+
/** Comparator for the identifier. */
|
2538
|
+
id?: Maybe<IdComparator>;
|
2539
|
+
/** Comparator for the collection length. */
|
2540
|
+
length?: Maybe<NumberComparator>;
|
2541
|
+
/** Comparator for the initiative name. */
|
2542
|
+
name?: Maybe<StringComparator>;
|
2543
|
+
/** Compound filters, one of which need to be matched by the initiative. */
|
2544
|
+
or?: Maybe<Array<InitiativeCollectionFilter>>;
|
2545
|
+
/** Comparator for the initiative slug ID. */
|
2546
|
+
slugId?: Maybe<StringComparator>;
|
2547
|
+
/** Filters that needs to be matched by some initiatives. */
|
2548
|
+
some?: Maybe<InitiativeFilter>;
|
2549
|
+
/** Comparator for the updated at date. */
|
2550
|
+
updatedAt?: Maybe<DateComparator>;
|
2551
|
+
};
|
2552
|
+
export declare type InitiativeConnection = {
|
2553
|
+
__typename?: "InitiativeConnection";
|
2554
|
+
edges: Array<InitiativeEdge>;
|
2555
|
+
nodes: Array<Initiative>;
|
2556
|
+
pageInfo: PageInfo;
|
2557
|
+
};
|
2558
|
+
/** [Internal] The properties of the initiative to create. */
|
2559
|
+
export declare type InitiativeCreateInput = {
|
2560
|
+
/** The initiative's color. */
|
2561
|
+
color?: Maybe<Scalars["String"]>;
|
2562
|
+
/** The description of the initiative. */
|
2563
|
+
description?: Maybe<Scalars["String"]>;
|
2564
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
2565
|
+
id?: Maybe<Scalars["String"]>;
|
2566
|
+
/** The name of the initiative. */
|
2567
|
+
name: Scalars["String"];
|
2568
|
+
/** The owner of the initiative. */
|
2569
|
+
ownerId?: Maybe<Scalars["String"]>;
|
2570
|
+
/** The sort order of the initiative within the organization. */
|
2571
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
2572
|
+
};
|
2573
|
+
export declare type InitiativeEdge = {
|
2574
|
+
__typename?: "InitiativeEdge";
|
2575
|
+
/** Used in `before` and `after` args */
|
2576
|
+
cursor: Scalars["String"];
|
2577
|
+
node: Initiative;
|
2578
|
+
};
|
2579
|
+
/** Initiative filtering options. */
|
2580
|
+
export declare type InitiativeFilter = {
|
2581
|
+
/** Compound filters, all of which need to be matched by the initiative. */
|
2582
|
+
and?: Maybe<Array<InitiativeFilter>>;
|
2583
|
+
/** Comparator for the created at date. */
|
2584
|
+
createdAt?: Maybe<DateComparator>;
|
2585
|
+
/** Filters that the initiative creator must satisfy. */
|
2586
|
+
creator?: Maybe<UserFilter>;
|
2587
|
+
/** Comparator for the identifier. */
|
2588
|
+
id?: Maybe<IdComparator>;
|
2589
|
+
/** Comparator for the initiative name. */
|
2590
|
+
name?: Maybe<StringComparator>;
|
2591
|
+
/** Compound filters, one of which need to be matched by the initiative. */
|
2592
|
+
or?: Maybe<Array<InitiativeFilter>>;
|
2593
|
+
/** Comparator for the initiative slug ID. */
|
2594
|
+
slugId?: Maybe<StringComparator>;
|
2595
|
+
/** Comparator for the updated at date. */
|
2596
|
+
updatedAt?: Maybe<DateComparator>;
|
2597
|
+
};
|
2598
|
+
/** [Internal] The payload returned by the initiative mutations. */
|
2599
|
+
export declare type InitiativePayload = {
|
2600
|
+
__typename?: "InitiativePayload";
|
2601
|
+
/** The initiative that was created or updated. */
|
2602
|
+
initiative: Initiative;
|
2603
|
+
/** The identifier of the last sync operation. */
|
2604
|
+
lastSyncId: Scalars["Float"];
|
2605
|
+
/** Whether the operation was successful. */
|
2606
|
+
success: Scalars["Boolean"];
|
2607
|
+
};
|
2608
|
+
/** [INTERNAL] Join table between projects and initiatives. */
|
2609
|
+
export declare type InitiativeToProject = Node & {
|
2610
|
+
__typename?: "InitiativeToProject";
|
2611
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
2612
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
2613
|
+
/** The time at which the entity was created. */
|
2614
|
+
createdAt: Scalars["DateTime"];
|
2615
|
+
/** The unique identifier of the entity. */
|
2616
|
+
id: Scalars["ID"];
|
2617
|
+
/** The initiative that the project is associated with. */
|
2618
|
+
initiative: Initiative;
|
2619
|
+
/** The project that the initiative is associated with. */
|
2620
|
+
project: Project;
|
2621
|
+
/** The sort order of the project within the initiative. */
|
2622
|
+
sortOrder: Scalars["String"];
|
2623
|
+
/**
|
2624
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
2625
|
+
* 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
|
2626
|
+
* been updated after creation.
|
2627
|
+
*/
|
2628
|
+
updatedAt: Scalars["DateTime"];
|
2629
|
+
};
|
2630
|
+
export declare type InitiativeToProjectConnection = {
|
2631
|
+
__typename?: "InitiativeToProjectConnection";
|
2632
|
+
edges: Array<InitiativeToProjectEdge>;
|
2633
|
+
nodes: Array<InitiativeToProject>;
|
2634
|
+
pageInfo: PageInfo;
|
2635
|
+
};
|
2636
|
+
/** [INTERNAL] The properties of the initiativeToProject to create. */
|
2637
|
+
export declare type InitiativeToProjectCreateInput = {
|
2638
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
2639
|
+
id?: Maybe<Scalars["String"]>;
|
2640
|
+
/** The identifier of the initiative. */
|
2641
|
+
initiativeId: Scalars["String"];
|
2642
|
+
/** The identifier of the project. */
|
2643
|
+
projectId: Scalars["String"];
|
2644
|
+
/** The sort order for the project within its organization. */
|
2645
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
2646
|
+
};
|
2647
|
+
export declare type InitiativeToProjectEdge = {
|
2648
|
+
__typename?: "InitiativeToProjectEdge";
|
2649
|
+
/** Used in `before` and `after` args */
|
2650
|
+
cursor: Scalars["String"];
|
2651
|
+
node: InitiativeToProject;
|
2652
|
+
};
|
2653
|
+
/** [INTERNAL] The result of a initiativeToProject mutation. */
|
2654
|
+
export declare type InitiativeToProjectPayload = {
|
2655
|
+
__typename?: "InitiativeToProjectPayload";
|
2656
|
+
/** The initiativeToProject that was created or updated. */
|
2657
|
+
initiativeToProject: InitiativeToProject;
|
2658
|
+
/** The identifier of the last sync operation. */
|
2659
|
+
lastSyncId: Scalars["Float"];
|
2660
|
+
/** Whether the operation was successful. */
|
2661
|
+
success: Scalars["Boolean"];
|
2662
|
+
};
|
2663
|
+
/** [INTERNAL] The properties of the initiativeToProject to update. */
|
2664
|
+
export declare type InitiativeToProjectUpdateInput = {
|
2665
|
+
/** The sort order for the project within its organization. */
|
2666
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
2667
|
+
};
|
2668
|
+
/** [Internal] The properties of the initiative to update. */
|
2669
|
+
export declare type InitiativeUpdateInput = {
|
2670
|
+
/** The initiative's color. */
|
2671
|
+
color?: Maybe<Scalars["String"]>;
|
2672
|
+
/** The description of the initiative. */
|
2673
|
+
description?: Maybe<Scalars["String"]>;
|
2674
|
+
/** The name of the initiative. */
|
2675
|
+
name?: Maybe<Scalars["String"]>;
|
2676
|
+
/** The owner of the initiative. */
|
2677
|
+
ownerId?: Maybe<Scalars["String"]>;
|
2678
|
+
/** The sort order of the initiative within the organization. */
|
2679
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
2680
|
+
/** The estimated completion date of the initiative. */
|
2681
|
+
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
2682
|
+
};
|
2203
2683
|
/** An integration with an external service. */
|
2204
2684
|
export declare type Integration = Node & {
|
2205
2685
|
__typename?: "Integration";
|
@@ -2236,6 +2716,13 @@ export declare type IntegrationEdge = {
|
|
2236
2716
|
cursor: Scalars["String"];
|
2237
2717
|
node: Integration;
|
2238
2718
|
};
|
2719
|
+
export declare type IntegrationHasScopesPayload = {
|
2720
|
+
__typename?: "IntegrationHasScopesPayload";
|
2721
|
+
/** Whether the integration has the required scopes. */
|
2722
|
+
hasAllScopes: Scalars["Boolean"];
|
2723
|
+
/** The missing scopes. */
|
2724
|
+
missingScopes?: Maybe<Array<Scalars["String"]>>;
|
2725
|
+
};
|
2239
2726
|
export declare type IntegrationPayload = {
|
2240
2727
|
__typename?: "IntegrationPayload";
|
2241
2728
|
/** The integration that was created or updated. */
|
@@ -2285,7 +2772,7 @@ export declare enum IntegrationService {
|
|
2285
2772
|
SlackProjectUpdatesPost = "slackProjectUpdatesPost",
|
2286
2773
|
Zendesk = "zendesk"
|
2287
2774
|
}
|
2288
|
-
/** The integration resource's settings */
|
2775
|
+
/** The integration resource's settings. */
|
2289
2776
|
export declare type IntegrationSettings = {
|
2290
2777
|
__typename?: "IntegrationSettings";
|
2291
2778
|
front?: Maybe<FrontSettings>;
|
@@ -2325,7 +2812,7 @@ export declare type IntegrationSettingsInput = {
|
|
2325
2812
|
slackProjectPost?: Maybe<SlackPostSettingsInput>;
|
2326
2813
|
zendesk?: Maybe<ZendeskSettingsInput>;
|
2327
2814
|
};
|
2328
|
-
/** Join table between templates and integrations */
|
2815
|
+
/** Join table between templates and integrations. */
|
2329
2816
|
export declare type IntegrationTemplate = Node & {
|
2330
2817
|
__typename?: "IntegrationTemplate";
|
2331
2818
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
@@ -2395,9 +2882,9 @@ export declare type IntegrationsSettings = Node & {
|
|
2395
2882
|
slackIssueCreated?: Maybe<Scalars["Boolean"]>;
|
2396
2883
|
/** Whether to send a Slack message when a comment is created on any of the project or team's issues. */
|
2397
2884
|
slackIssueNewComment?: Maybe<Scalars["Boolean"]>;
|
2398
|
-
/** Whether to send a Slack message when an SLA is breached */
|
2885
|
+
/** Whether to send a Slack message when an SLA is breached. */
|
2399
2886
|
slackIssueSlaBreached?: Maybe<Scalars["Boolean"]>;
|
2400
|
-
/** Whether to send a Slack message when an SLA is at high risk */
|
2887
|
+
/** Whether to send a Slack message when an SLA is at high risk. */
|
2401
2888
|
slackIssueSlaHighRisk?: Maybe<Scalars["Boolean"]>;
|
2402
2889
|
/** Whether to send a Slack message when any of the project or team's issues has a change in status. */
|
2403
2890
|
slackIssueStatusChangedAll?: Maybe<Scalars["Boolean"]>;
|
@@ -2437,7 +2924,7 @@ export declare type IntegrationsSettingsCreateInput = {
|
|
2437
2924
|
slackIssueNewComment?: Maybe<Scalars["Boolean"]>;
|
2438
2925
|
/** Whether to receive notification when an SLA has breached on Slack. */
|
2439
2926
|
slackIssueSlaBreached?: Maybe<Scalars["Boolean"]>;
|
2440
|
-
/** Whether to send a Slack message when an SLA is at high risk */
|
2927
|
+
/** Whether to send a Slack message when an SLA is at high risk. */
|
2441
2928
|
slackIssueSlaHighRisk?: Maybe<Scalars["Boolean"]>;
|
2442
2929
|
/** Whether to send a Slack message when any of the project or team's issues has a change in status. */
|
2443
2930
|
slackIssueStatusChangedAll?: Maybe<Scalars["Boolean"]>;
|
@@ -2476,7 +2963,7 @@ export declare type IntegrationsSettingsUpdateInput = {
|
|
2476
2963
|
slackIssueNewComment?: Maybe<Scalars["Boolean"]>;
|
2477
2964
|
/** Whether to receive notification when an SLA has breached on Slack. */
|
2478
2965
|
slackIssueSlaBreached?: Maybe<Scalars["Boolean"]>;
|
2479
|
-
/** Whether to send a Slack message when an SLA is at high risk */
|
2966
|
+
/** Whether to send a Slack message when an SLA is at high risk. */
|
2480
2967
|
slackIssueSlaHighRisk?: Maybe<Scalars["Boolean"]>;
|
2481
2968
|
/** Whether to send a Slack message when any of the project or team's issues has a change in status. */
|
2482
2969
|
slackIssueStatusChangedAll?: Maybe<Scalars["Boolean"]>;
|
@@ -2560,11 +3047,13 @@ export declare type Issue = Node & {
|
|
2560
3047
|
* @deprecated Use description instead.
|
2561
3048
|
*/
|
2562
3049
|
descriptionData?: Maybe<Scalars["JSON"]>;
|
3050
|
+
/** [Internal] The issue's description content as YJS state. */
|
3051
|
+
descriptionState?: Maybe<Scalars["String"]>;
|
2563
3052
|
/** The date at which the issue is due. */
|
2564
3053
|
dueDate?: Maybe<Scalars["TimelessDate"]>;
|
2565
3054
|
/** The estimate of the complexity of the issue.. */
|
2566
3055
|
estimate?: Maybe<Scalars["Float"]>;
|
2567
|
-
/**
|
3056
|
+
/** The external user who created the issue. */
|
2568
3057
|
externalUserCreator?: Maybe<ExternalUser>;
|
2569
3058
|
/** The users favorite associated with this issue. */
|
2570
3059
|
favorite?: Maybe<Favorite>;
|
@@ -2858,7 +3347,7 @@ export declare type IssueCreateInput = {
|
|
2858
3347
|
lastAppliedTemplateId?: Maybe<Scalars["String"]>;
|
2859
3348
|
/** The identifier of the parent issue. */
|
2860
3349
|
parentId?: Maybe<Scalars["String"]>;
|
2861
|
-
/** Whether the passed sort order should be preserved */
|
3350
|
+
/** Whether the passed sort order should be preserved. */
|
2862
3351
|
preserveSortOrderOnCreate?: Maybe<Scalars["Boolean"]>;
|
2863
3352
|
/** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
|
2864
3353
|
priority?: Maybe<Scalars["Int"]>;
|
@@ -3053,7 +3542,7 @@ export declare type IssueHistory = Node & {
|
|
3053
3542
|
autoArchived?: Maybe<Scalars["Boolean"]>;
|
3054
3543
|
/** Whether the issue was auto-closed. */
|
3055
3544
|
autoClosed?: Maybe<Scalars["Boolean"]>;
|
3056
|
-
/** The bot that performed the action */
|
3545
|
+
/** The bot that performed the action. */
|
3057
3546
|
botActor?: Maybe<ActorBot>;
|
3058
3547
|
/** [Internal] Serialized JSON representing changes for certain non-relational properties. */
|
3059
3548
|
changes?: Maybe<Scalars["JSONObject"]>;
|
@@ -3067,7 +3556,7 @@ export declare type IssueHistory = Node & {
|
|
3067
3556
|
fromCycle?: Maybe<Cycle>;
|
3068
3557
|
/** The id of previous cycle of the issue. */
|
3069
3558
|
fromCycleId?: Maybe<Scalars["String"]>;
|
3070
|
-
/** What the due date was changed from */
|
3559
|
+
/** What the due date was changed from. */
|
3071
3560
|
fromDueDate?: Maybe<Scalars["TimelessDate"]>;
|
3072
3561
|
/** What the estimate was changed from. */
|
3073
3562
|
fromEstimate?: Maybe<Scalars["Float"]>;
|
@@ -3114,7 +3603,7 @@ export declare type IssueHistory = Node & {
|
|
3114
3603
|
toCycle?: Maybe<Cycle>;
|
3115
3604
|
/** The id of new cycle of the issue. */
|
3116
3605
|
toCycleId?: Maybe<Scalars["String"]>;
|
3117
|
-
/** What the due date was changed to */
|
3606
|
+
/** What the due date was changed to. */
|
3118
3607
|
toDueDate?: Maybe<Scalars["TimelessDate"]>;
|
3119
3608
|
/** What the estimate was changed to. */
|
3120
3609
|
toEstimate?: Maybe<Scalars["Float"]>;
|
@@ -3161,7 +3650,7 @@ export declare type IssueHistoryEdge = {
|
|
3161
3650
|
cursor: Scalars["String"];
|
3162
3651
|
node: IssueHistory;
|
3163
3652
|
};
|
3164
|
-
/** An import job for data from an external service */
|
3653
|
+
/** An import job for data from an external service. */
|
3165
3654
|
export declare type IssueImport = Node & {
|
3166
3655
|
__typename?: "IssueImport";
|
3167
3656
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
@@ -3174,7 +3663,7 @@ export declare type IssueImport = Node & {
|
|
3174
3663
|
csvFileUrl?: Maybe<Scalars["String"]>;
|
3175
3664
|
/** User readable error message, if one has occurred during the import. */
|
3176
3665
|
error?: Maybe<Scalars["String"]>;
|
3177
|
-
/** Error code and metadata, if one has occurred during the import */
|
3666
|
+
/** Error code and metadata, if one has occurred during the import. */
|
3178
3667
|
errorMetadata?: Maybe<Scalars["JSONObject"]>;
|
3179
3668
|
/** The unique identifier of the entity. */
|
3180
3669
|
id: Scalars["ID"];
|
@@ -3186,7 +3675,7 @@ export declare type IssueImport = Node & {
|
|
3186
3675
|
service: Scalars["String"];
|
3187
3676
|
/** The status for the import job. */
|
3188
3677
|
status: Scalars["String"];
|
3189
|
-
/** New team's name in cases when teamId not set */
|
3678
|
+
/** New team's name in cases when teamId not set. */
|
3190
3679
|
teamName?: Maybe<Scalars["String"]>;
|
3191
3680
|
/**
|
3192
3681
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
@@ -3209,13 +3698,13 @@ export declare type IssueImportDeletePayload = {
|
|
3209
3698
|
/** Whether the operation was successful. */
|
3210
3699
|
success: Scalars["Boolean"];
|
3211
3700
|
};
|
3212
|
-
/** Issue import mapping input */
|
3701
|
+
/** Issue import mapping input. */
|
3213
3702
|
export declare type IssueImportMappingInput = {
|
3214
|
-
/** The mapping configuration for epics */
|
3703
|
+
/** The mapping configuration for epics. */
|
3215
3704
|
epics?: Maybe<Scalars["JSONObject"]>;
|
3216
|
-
/** The mapping configuration for users */
|
3705
|
+
/** The mapping configuration for users. */
|
3217
3706
|
users?: Maybe<Scalars["JSONObject"]>;
|
3218
|
-
/** The mapping configuration for workflow states */
|
3707
|
+
/** The mapping configuration for workflow states. */
|
3219
3708
|
workflowStates?: Maybe<Scalars["JSONObject"]>;
|
3220
3709
|
};
|
3221
3710
|
export declare type IssueImportPayload = {
|
@@ -3380,7 +3869,7 @@ export declare type IssueLabelUpdateInput = {
|
|
3380
3869
|
/** The identifier of the parent label. */
|
3381
3870
|
parentId?: Maybe<Scalars["String"]>;
|
3382
3871
|
};
|
3383
|
-
/** An issue related notification */
|
3872
|
+
/** An issue related notification. */
|
3384
3873
|
export declare type IssueNotification = Entity & Node & Notification & {
|
3385
3874
|
__typename?: "IssueNotification";
|
3386
3875
|
/** The user that caused the notification. */
|
@@ -3412,9 +3901,9 @@ export declare type IssueNotification = Entity & Node & Notification & {
|
|
3412
3901
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
3413
3902
|
/** The subscriptions related to the notification. */
|
3414
3903
|
subscriptions?: Maybe<Array<NotificationSubscription>>;
|
3415
|
-
/** The team related to the notification. */
|
3904
|
+
/** The team related to the issue notification. */
|
3416
3905
|
team: Team;
|
3417
|
-
/** Notification type */
|
3906
|
+
/** Notification type. */
|
3418
3907
|
type: Scalars["String"];
|
3419
3908
|
/** The time at which a notification was unsnoozed.. */
|
3420
3909
|
unsnoozedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -3487,7 +3976,7 @@ export declare type IssueRelationEdge = {
|
|
3487
3976
|
cursor: Scalars["String"];
|
3488
3977
|
node: IssueRelation;
|
3489
3978
|
};
|
3490
|
-
/** Issue relation history's payload */
|
3979
|
+
/** Issue relation history's payload. */
|
3491
3980
|
export declare type IssueRelationHistoryPayload = {
|
3492
3981
|
__typename?: "IssueRelationHistoryPayload";
|
3493
3982
|
/** The identifier of the related issue. */
|
@@ -3572,11 +4061,13 @@ export declare type IssueSearchResult = Node & {
|
|
3572
4061
|
* @deprecated Use description instead.
|
3573
4062
|
*/
|
3574
4063
|
descriptionData?: Maybe<Scalars["JSON"]>;
|
4064
|
+
/** [Internal] The issue's description content as YJS state. */
|
4065
|
+
descriptionState?: Maybe<Scalars["String"]>;
|
3575
4066
|
/** The date at which the issue is due. */
|
3576
4067
|
dueDate?: Maybe<Scalars["TimelessDate"]>;
|
3577
4068
|
/** The estimate of the complexity of the issue.. */
|
3578
4069
|
estimate?: Maybe<Scalars["Float"]>;
|
3579
|
-
/**
|
4070
|
+
/** The external user who created the issue. */
|
3580
4071
|
externalUserCreator?: Maybe<ExternalUser>;
|
3581
4072
|
/** The users favorite associated with this issue. */
|
3582
4073
|
favorite?: Maybe<Favorite>;
|
@@ -3596,7 +4087,7 @@ export declare type IssueSearchResult = Node & {
|
|
3596
4087
|
labels: IssueLabelConnection;
|
3597
4088
|
/** The last template that was applied to this issue. */
|
3598
4089
|
lastAppliedTemplate?: Maybe<Template>;
|
3599
|
-
/** Metadata related to search result */
|
4090
|
+
/** Metadata related to search result. */
|
3600
4091
|
metadata: Scalars["JSONObject"];
|
3601
4092
|
/** The issue's unique number. */
|
3602
4093
|
number: Scalars["Float"];
|
@@ -3733,6 +4224,41 @@ export declare type IssueSearchResultEdge = {
|
|
3733
4224
|
cursor: Scalars["String"];
|
3734
4225
|
node: IssueSearchResult;
|
3735
4226
|
};
|
4227
|
+
/** Issue filtering options. */
|
4228
|
+
export declare type IssueSortInput = {
|
4229
|
+
/** Sort by assignee name */
|
4230
|
+
assignee?: Maybe<AssigneeSort>;
|
4231
|
+
/** Sort by issue completion date */
|
4232
|
+
completedAt?: Maybe<CompletedAtSort>;
|
4233
|
+
/** Sort by issue creation date */
|
4234
|
+
createdAt?: Maybe<CreatedAtSort>;
|
4235
|
+
/** Sort by Cycle start date */
|
4236
|
+
cycle?: Maybe<CycleSort>;
|
4237
|
+
/** Sort by issue due date */
|
4238
|
+
dueDate?: Maybe<DueDateSort>;
|
4239
|
+
/** Sort by estimate */
|
4240
|
+
estimate?: Maybe<EstimateSort>;
|
4241
|
+
/** Sort by label */
|
4242
|
+
label?: Maybe<LabelSort>;
|
4243
|
+
/** Sort by manual order */
|
4244
|
+
manual?: Maybe<ManualSort>;
|
4245
|
+
/** Sort by Project Milestone target date */
|
4246
|
+
milestone?: Maybe<MilestoneSort>;
|
4247
|
+
/** Sort by priority */
|
4248
|
+
priority?: Maybe<PrioritySort>;
|
4249
|
+
/** Sort by Project name */
|
4250
|
+
project?: Maybe<ProjectSort>;
|
4251
|
+
/** Sort by SLA status */
|
4252
|
+
slaStatus?: Maybe<SlaStatusSort>;
|
4253
|
+
/** Sort by Team name */
|
4254
|
+
team?: Maybe<TeamSort>;
|
4255
|
+
/** Sort by issue title */
|
4256
|
+
title?: Maybe<TitleSort>;
|
4257
|
+
/** Sort by issue update date */
|
4258
|
+
updatedAt?: Maybe<UpdatedAtSort>;
|
4259
|
+
/** Sort by workflow state type */
|
4260
|
+
workflowState?: Maybe<WorkflowStateSort>;
|
4261
|
+
};
|
3736
4262
|
export declare type IssueUpdateInput = {
|
3737
4263
|
/** The identifier of the user to assign the issue to. */
|
3738
4264
|
assigneeId?: Maybe<Scalars["String"]>;
|
@@ -3862,9 +4388,11 @@ export declare type JiraSettingsInput = {
|
|
3862
4388
|
projects: Array<JiraProjectDataInput>;
|
3863
4389
|
};
|
3864
4390
|
export declare type JiraUpdateInput = {
|
3865
|
-
/** The id of the integration to update */
|
4391
|
+
/** The id of the integration to update. */
|
3866
4392
|
id: Scalars["String"];
|
3867
|
-
/** Whether to refresh Jira
|
4393
|
+
/** Whether to refresh Jira metadata for the integration. */
|
4394
|
+
updateMetadata?: Maybe<Scalars["Boolean"]>;
|
4395
|
+
/** Whether to refresh Jira Projects for the integration. */
|
3868
4396
|
updateProjects?: Maybe<Scalars["Boolean"]>;
|
3869
4397
|
};
|
3870
4398
|
export declare type JoinOrganizationInput = {
|
@@ -3876,7 +4404,7 @@ export declare type JoinOrganizationInput = {
|
|
3876
4404
|
/** A label notification subscription. */
|
3877
4405
|
export declare type LabelNotificationSubscription = Entity & Node & NotificationSubscription & {
|
3878
4406
|
__typename?: "LabelNotificationSubscription";
|
3879
|
-
/** Whether the subscription is active or not */
|
4407
|
+
/** Whether the subscription is active or not. */
|
3880
4408
|
active: Scalars["Boolean"];
|
3881
4409
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
3882
4410
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -3911,14 +4439,35 @@ export declare type LabelNotificationSubscription = Entity & Node & Notification
|
|
3911
4439
|
/** The type of user view to which the notification subscription context is associated with. */
|
3912
4440
|
userContextViewType?: Maybe<UserContextViewType>;
|
3913
4441
|
};
|
4442
|
+
/** Issue sorting options. */
|
4443
|
+
export declare type LabelSort = {
|
4444
|
+
/** Whether nulls should be sorted first or last */
|
4445
|
+
nulls?: Maybe<PaginationNulls>;
|
4446
|
+
/** The order for the individual sort */
|
4447
|
+
order?: Maybe<PaginationSortOrder>;
|
4448
|
+
};
|
3914
4449
|
export declare type LogoutResponse = {
|
3915
4450
|
__typename?: "LogoutResponse";
|
3916
4451
|
/** Whether the operation was successful. */
|
3917
4452
|
success: Scalars["Boolean"];
|
3918
4453
|
};
|
4454
|
+
/** Issue manual sorting options. */
|
4455
|
+
export declare type ManualSort = {
|
4456
|
+
/** Whether nulls should be sorted first or last */
|
4457
|
+
nulls?: Maybe<PaginationNulls>;
|
4458
|
+
/** The order for the individual sort */
|
4459
|
+
order?: Maybe<PaginationSortOrder>;
|
4460
|
+
};
|
4461
|
+
/** Issue project milestone options. */
|
4462
|
+
export declare type MilestoneSort = {
|
4463
|
+
/** Whether nulls should be sorted first or last */
|
4464
|
+
nulls?: Maybe<PaginationNulls>;
|
4465
|
+
/** The order for the individual sort */
|
4466
|
+
order?: Maybe<PaginationSortOrder>;
|
4467
|
+
};
|
3919
4468
|
export declare type Mutation = {
|
3920
4469
|
__typename?: "Mutation";
|
3921
|
-
/** Creates an integration api key for Airbyte to connect with Linear */
|
4470
|
+
/** Creates an integration api key for Airbyte to connect with Linear. */
|
3922
4471
|
airbyteIntegrationConnect: IntegrationPayload;
|
3923
4472
|
/** Creates a new API key. */
|
3924
4473
|
apiKeyCreate: ApiKeyPayload;
|
@@ -3987,7 +4536,7 @@ export declare type Mutation = {
|
|
3987
4536
|
cycleArchive: CycleArchivePayload;
|
3988
4537
|
/** Creates a new cycle. */
|
3989
4538
|
cycleCreate: CyclePayload;
|
3990
|
-
/** Shifts all cycles starts by a certain number of weeks. */
|
4539
|
+
/** [DEPRECATED] Shifts all cycles starts by a certain number of weeks. */
|
3991
4540
|
cycleShiftAll: CyclePayload;
|
3992
4541
|
/** Updates a cycle. */
|
3993
4542
|
cycleUpdate: CyclePayload;
|
@@ -3997,6 +4546,14 @@ export declare type Mutation = {
|
|
3997
4546
|
documentDelete: DeletePayload;
|
3998
4547
|
/** Updates a document. */
|
3999
4548
|
documentUpdate: DocumentPayload;
|
4549
|
+
/** Creates a new email intake address. */
|
4550
|
+
emailIntakeAddressCreate: EmailIntakeAddressPayload;
|
4551
|
+
/** Deletes an email intake address object. */
|
4552
|
+
emailIntakeAddressDelete: DeletePayload;
|
4553
|
+
/** Rotates an existing email intake address. */
|
4554
|
+
emailIntakeAddressRotate: EmailIntakeAddressPayload;
|
4555
|
+
/** Updates an existing email intake address. */
|
4556
|
+
emailIntakeAddressUpdate: EmailIntakeAddressPayload;
|
4000
4557
|
/** [INTERNAL] Subscribes the email to the newsletter. */
|
4001
4558
|
emailSubscribe: EmailSubscribePayload;
|
4002
4559
|
/** Authenticates a user account via email and authentication token. */
|
@@ -4023,12 +4580,36 @@ export declare type Mutation = {
|
|
4023
4580
|
gitAutomationStateDelete: DeletePayload;
|
4024
4581
|
/** Updates an existing state. */
|
4025
4582
|
gitAutomationStateUpdate: GitAutomationStatePayload;
|
4583
|
+
/** Creates a Git target branch automation. */
|
4584
|
+
gitAutomationTargetBranchCreate: GitAutomationTargetBranchPayload;
|
4585
|
+
/** Archives a Git target branch automation. */
|
4586
|
+
gitAutomationTargetBranchDelete: DeletePayload;
|
4587
|
+
/** Updates an existing Git target branch automation. */
|
4588
|
+
gitAutomationTargetBranchUpdate: GitAutomationTargetBranchPayload;
|
4026
4589
|
/** Authenticate user account through Google OAuth. This is the 2nd step of OAuth flow. */
|
4027
4590
|
googleUserAccountAuth: AuthResolverResponse;
|
4028
4591
|
/** Upload an image from an URL to Linear. */
|
4029
4592
|
imageUploadFromUrl: ImageUploadFromUrlPayload;
|
4030
4593
|
/** XHR request payload to upload a file for import, directly to Linear's cloud storage. */
|
4031
4594
|
importFileUpload: UploadPayload;
|
4595
|
+
/** [Internal] Archives a initiative. */
|
4596
|
+
initiativeArchive: InitiativeArchivePayload;
|
4597
|
+
/** [Internal] Creates a new initiative. */
|
4598
|
+
initiativeCreate: InitiativePayload;
|
4599
|
+
/** [Internal] Deletes a initiative. */
|
4600
|
+
initiativeDelete: DeletePayload;
|
4601
|
+
/** [INTERNAL] Creates a new initiativeToProject join. */
|
4602
|
+
initiativeToProjectCreate: InitiativeToProjectPayload;
|
4603
|
+
/** [INTERNAL] Deletes a initiativeToProject. */
|
4604
|
+
initiativeToProjectDelete: DeletePayload;
|
4605
|
+
/** [INTERNAL] Updates a initiativeToProject. */
|
4606
|
+
initiativeToProjectUpdate: InitiativeToProjectPayload;
|
4607
|
+
/** [Internal] Unarchives a initiative. */
|
4608
|
+
initiativeUnarchive: InitiativeArchivePayload;
|
4609
|
+
/** [Internal] Updates a initiative. */
|
4610
|
+
initiativeUpdate: InitiativePayload;
|
4611
|
+
/** Archives an integration. */
|
4612
|
+
integrationArchive: DeletePayload;
|
4032
4613
|
/** Connect a Slack channel to Asks. */
|
4033
4614
|
integrationAsksConnectChannel: AsksChannelConnectPayload;
|
4034
4615
|
/** Deletes an integration. */
|
@@ -4062,7 +4643,7 @@ export declare type Mutation = {
|
|
4062
4643
|
integrationIntercomSettingsUpdate: IntegrationPayload;
|
4063
4644
|
/** Connect your Jira account to Linear. */
|
4064
4645
|
integrationJiraPersonal: IntegrationPayload;
|
4065
|
-
/** [INTERNAL] Updates a Jira Integration */
|
4646
|
+
/** [INTERNAL] Updates a Jira Integration. */
|
4066
4647
|
integrationJiraUpdate: IntegrationPayload;
|
4067
4648
|
/**
|
4068
4649
|
* Enables Loom integration for the organization.
|
@@ -4081,7 +4662,7 @@ export declare type Mutation = {
|
|
4081
4662
|
integrationSettingsUpdate: IntegrationPayload;
|
4082
4663
|
/** Integrates the organization with Slack. */
|
4083
4664
|
integrationSlack: IntegrationPayload;
|
4084
|
-
/** Integrates the organization with the Slack Asks app */
|
4665
|
+
/** Integrates the organization with the Slack Asks app. */
|
4085
4666
|
integrationSlackAsks: IntegrationPayload;
|
4086
4667
|
/** Imports custom emojis from your Slack workspace. */
|
4087
4668
|
integrationSlackImportEmojis: IntegrationPayload;
|
@@ -4309,6 +4890,22 @@ export declare type Mutation = {
|
|
4309
4890
|
templateDelete: DeletePayload;
|
4310
4891
|
/** Updates an existing template. */
|
4311
4892
|
templateUpdate: TemplatePayload;
|
4893
|
+
/** [ALPHA] Creates a new time schedule. */
|
4894
|
+
timeScheduleCreate: TimeSchedulePayload;
|
4895
|
+
/** [ALPHA] Deletes a time schedule. */
|
4896
|
+
timeScheduleDelete: DeletePayload;
|
4897
|
+
/** [ALPHA] Refresh the integration schedule information. */
|
4898
|
+
timeScheduleRefreshIntegrationSchedule: TimeSchedulePayload;
|
4899
|
+
/** [ALPHA] Updates a time schedule. */
|
4900
|
+
timeScheduleUpdate: TimeSchedulePayload;
|
4901
|
+
/** [ALPHA] Upsert an external time schedule. */
|
4902
|
+
timeScheduleUpsertExternal: TimeSchedulePayload;
|
4903
|
+
/** [ALPHA] Creates a new triage responsibility. */
|
4904
|
+
triageResponsibilityCreate: TriageResponsibilityPayload;
|
4905
|
+
/** [ALPHA] Deletes a triage responsibility. */
|
4906
|
+
triageResponsibilityDelete: DeletePayload;
|
4907
|
+
/** [ALPHA] Updates an existing triage responsibility. */
|
4908
|
+
triageResponsibilityUpdate: TriageResponsibilityPayload;
|
4312
4909
|
/** Makes user a regular user. Can only be called by an admin. */
|
4313
4910
|
userDemoteAdmin: UserAdminPayload;
|
4314
4911
|
/** Makes user a guest. Can only be called by an admin. */
|
@@ -4379,6 +4976,7 @@ export declare type MutationAttachmentLinkDiscordArgs = {
|
|
4379
4976
|
id?: Maybe<Scalars["String"]>;
|
4380
4977
|
issueId: Scalars["String"];
|
4381
4978
|
messageId: Scalars["String"];
|
4979
|
+
title?: Maybe<Scalars["String"]>;
|
4382
4980
|
url: Scalars["String"];
|
4383
4981
|
};
|
4384
4982
|
export declare type MutationAttachmentLinkFrontArgs = {
|
@@ -4387,12 +4985,14 @@ export declare type MutationAttachmentLinkFrontArgs = {
|
|
4387
4985
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
4388
4986
|
id?: Maybe<Scalars["String"]>;
|
4389
4987
|
issueId: Scalars["String"];
|
4988
|
+
title?: Maybe<Scalars["String"]>;
|
4390
4989
|
};
|
4391
4990
|
export declare type MutationAttachmentLinkGitHubIssueArgs = {
|
4392
4991
|
createAsUser?: Maybe<Scalars["String"]>;
|
4393
4992
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
4394
4993
|
id?: Maybe<Scalars["String"]>;
|
4395
4994
|
issueId: Scalars["String"];
|
4995
|
+
title?: Maybe<Scalars["String"]>;
|
4396
4996
|
url: Scalars["String"];
|
4397
4997
|
};
|
4398
4998
|
export declare type MutationAttachmentLinkGitHubPrArgs = {
|
@@ -4403,6 +5003,7 @@ export declare type MutationAttachmentLinkGitHubPrArgs = {
|
|
4403
5003
|
number?: Maybe<Scalars["Float"]>;
|
4404
5004
|
owner?: Maybe<Scalars["String"]>;
|
4405
5005
|
repo?: Maybe<Scalars["String"]>;
|
5006
|
+
title?: Maybe<Scalars["String"]>;
|
4406
5007
|
url: Scalars["String"];
|
4407
5008
|
};
|
4408
5009
|
export declare type MutationAttachmentLinkGitLabMrArgs = {
|
@@ -4412,6 +5013,7 @@ export declare type MutationAttachmentLinkGitLabMrArgs = {
|
|
4412
5013
|
issueId: Scalars["String"];
|
4413
5014
|
number: Scalars["Float"];
|
4414
5015
|
projectPathWithNamespace: Scalars["String"];
|
5016
|
+
title?: Maybe<Scalars["String"]>;
|
4415
5017
|
url: Scalars["String"];
|
4416
5018
|
};
|
4417
5019
|
export declare type MutationAttachmentLinkIntercomArgs = {
|
@@ -4420,6 +5022,7 @@ export declare type MutationAttachmentLinkIntercomArgs = {
|
|
4420
5022
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
4421
5023
|
id?: Maybe<Scalars["String"]>;
|
4422
5024
|
issueId: Scalars["String"];
|
5025
|
+
title?: Maybe<Scalars["String"]>;
|
4423
5026
|
};
|
4424
5027
|
export declare type MutationAttachmentLinkJiraIssueArgs = {
|
4425
5028
|
issueId: Scalars["String"];
|
@@ -4450,6 +5053,7 @@ export declare type MutationAttachmentLinkZendeskArgs = {
|
|
4450
5053
|
id?: Maybe<Scalars["String"]>;
|
4451
5054
|
issueId: Scalars["String"];
|
4452
5055
|
ticketId: Scalars["String"];
|
5056
|
+
title?: Maybe<Scalars["String"]>;
|
4453
5057
|
};
|
4454
5058
|
export declare type MutationAttachmentUnsyncSlackArgs = {
|
4455
5059
|
id: Scalars["String"];
|
@@ -4525,6 +5129,19 @@ export declare type MutationDocumentUpdateArgs = {
|
|
4525
5129
|
id: Scalars["String"];
|
4526
5130
|
input: DocumentUpdateInput;
|
4527
5131
|
};
|
5132
|
+
export declare type MutationEmailIntakeAddressCreateArgs = {
|
5133
|
+
input: EmailIntakeAddressCreateInput;
|
5134
|
+
};
|
5135
|
+
export declare type MutationEmailIntakeAddressDeleteArgs = {
|
5136
|
+
id: Scalars["String"];
|
5137
|
+
};
|
5138
|
+
export declare type MutationEmailIntakeAddressRotateArgs = {
|
5139
|
+
id: Scalars["String"];
|
5140
|
+
};
|
5141
|
+
export declare type MutationEmailIntakeAddressUpdateArgs = {
|
5142
|
+
id: Scalars["String"];
|
5143
|
+
input: EmailIntakeAddressUpdateInput;
|
5144
|
+
};
|
4528
5145
|
export declare type MutationEmailSubscribeArgs = {
|
4529
5146
|
input: EmailSubscribeInput;
|
4530
5147
|
};
|
@@ -4570,6 +5187,16 @@ export declare type MutationGitAutomationStateUpdateArgs = {
|
|
4570
5187
|
id: Scalars["String"];
|
4571
5188
|
input: GitAutomationStateUpdateInput;
|
4572
5189
|
};
|
5190
|
+
export declare type MutationGitAutomationTargetBranchCreateArgs = {
|
5191
|
+
input: GitAutomationTargetBranchCreateInput;
|
5192
|
+
};
|
5193
|
+
export declare type MutationGitAutomationTargetBranchDeleteArgs = {
|
5194
|
+
id: Scalars["String"];
|
5195
|
+
};
|
5196
|
+
export declare type MutationGitAutomationTargetBranchUpdateArgs = {
|
5197
|
+
id: Scalars["String"];
|
5198
|
+
input: GitAutomationTargetBranchUpdateInput;
|
5199
|
+
};
|
4573
5200
|
export declare type MutationGoogleUserAccountAuthArgs = {
|
4574
5201
|
input: GoogleUserAccountAuthInput;
|
4575
5202
|
};
|
@@ -4582,6 +5209,35 @@ export declare type MutationImportFileUploadArgs = {
|
|
4582
5209
|
metaData?: Maybe<Scalars["JSON"]>;
|
4583
5210
|
size: Scalars["Int"];
|
4584
5211
|
};
|
5212
|
+
export declare type MutationInitiativeArchiveArgs = {
|
5213
|
+
id: Scalars["String"];
|
5214
|
+
};
|
5215
|
+
export declare type MutationInitiativeCreateArgs = {
|
5216
|
+
input: InitiativeCreateInput;
|
5217
|
+
};
|
5218
|
+
export declare type MutationInitiativeDeleteArgs = {
|
5219
|
+
id: Scalars["String"];
|
5220
|
+
};
|
5221
|
+
export declare type MutationInitiativeToProjectCreateArgs = {
|
5222
|
+
input: InitiativeToProjectCreateInput;
|
5223
|
+
};
|
5224
|
+
export declare type MutationInitiativeToProjectDeleteArgs = {
|
5225
|
+
id: Scalars["String"];
|
5226
|
+
};
|
5227
|
+
export declare type MutationInitiativeToProjectUpdateArgs = {
|
5228
|
+
id: Scalars["String"];
|
5229
|
+
input: InitiativeToProjectUpdateInput;
|
5230
|
+
};
|
5231
|
+
export declare type MutationInitiativeUnarchiveArgs = {
|
5232
|
+
id: Scalars["String"];
|
5233
|
+
};
|
5234
|
+
export declare type MutationInitiativeUpdateArgs = {
|
5235
|
+
id: Scalars["String"];
|
5236
|
+
input: InitiativeUpdateInput;
|
5237
|
+
};
|
5238
|
+
export declare type MutationIntegrationArchiveArgs = {
|
5239
|
+
id: Scalars["String"];
|
5240
|
+
};
|
4585
5241
|
export declare type MutationIntegrationAsksConnectChannelArgs = {
|
4586
5242
|
code: Scalars["String"];
|
4587
5243
|
redirectUri: Scalars["String"];
|
@@ -5054,6 +5710,33 @@ export declare type MutationTemplateUpdateArgs = {
|
|
5054
5710
|
id: Scalars["String"];
|
5055
5711
|
input: TemplateUpdateInput;
|
5056
5712
|
};
|
5713
|
+
export declare type MutationTimeScheduleCreateArgs = {
|
5714
|
+
input: TimeScheduleCreateInput;
|
5715
|
+
};
|
5716
|
+
export declare type MutationTimeScheduleDeleteArgs = {
|
5717
|
+
id: Scalars["String"];
|
5718
|
+
};
|
5719
|
+
export declare type MutationTimeScheduleRefreshIntegrationScheduleArgs = {
|
5720
|
+
id: Scalars["String"];
|
5721
|
+
};
|
5722
|
+
export declare type MutationTimeScheduleUpdateArgs = {
|
5723
|
+
id: Scalars["String"];
|
5724
|
+
input: TimeScheduleUpdateInput;
|
5725
|
+
};
|
5726
|
+
export declare type MutationTimeScheduleUpsertExternalArgs = {
|
5727
|
+
externalId: Scalars["String"];
|
5728
|
+
input: TimeScheduleUpdateInput;
|
5729
|
+
};
|
5730
|
+
export declare type MutationTriageResponsibilityCreateArgs = {
|
5731
|
+
input: TriageResponsibilityCreateInput;
|
5732
|
+
};
|
5733
|
+
export declare type MutationTriageResponsibilityDeleteArgs = {
|
5734
|
+
id: Scalars["String"];
|
5735
|
+
};
|
5736
|
+
export declare type MutationTriageResponsibilityUpdateArgs = {
|
5737
|
+
id: Scalars["String"];
|
5738
|
+
input: TriageResponsibilityUpdateInput;
|
5739
|
+
};
|
5057
5740
|
export declare type MutationUserDemoteAdminArgs = {
|
5058
5741
|
id: Scalars["String"];
|
5059
5742
|
};
|
@@ -5154,7 +5837,7 @@ export declare type Notification = {
|
|
5154
5837
|
readAt?: Maybe<Scalars["DateTime"]>;
|
5155
5838
|
/** The time until a notification will be snoozed. After that it will appear in the inbox again. */
|
5156
5839
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
5157
|
-
/** Notification type */
|
5840
|
+
/** Notification type. */
|
5158
5841
|
type: Scalars["String"];
|
5159
5842
|
/** The time at which a notification was unsnoozed.. */
|
5160
5843
|
unsnoozedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -5220,7 +5903,7 @@ export declare type NotificationPayload = {
|
|
5220
5903
|
};
|
5221
5904
|
/** Notification subscriptions for models. */
|
5222
5905
|
export declare type NotificationSubscription = {
|
5223
|
-
/** Whether the subscription is active or not */
|
5906
|
+
/** Whether the subscription is active or not. */
|
5224
5907
|
active: Scalars["Boolean"];
|
5225
5908
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
5226
5909
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -5390,8 +6073,35 @@ export declare type NullableDateComparator = {
|
|
5390
6073
|
export declare type NullableDocumentContentFilter = {
|
5391
6074
|
/** Comparator for the created at date. */
|
5392
6075
|
createdAt?: Maybe<DateComparator>;
|
6076
|
+
/** Filters that the document content document must satisfy. */
|
6077
|
+
document?: Maybe<DocumentFilter>;
|
6078
|
+
/** Comparator for the identifier. */
|
6079
|
+
id?: Maybe<IdComparator>;
|
6080
|
+
/** Filters that the document content project must satisfy. */
|
6081
|
+
project?: Maybe<ProjectFilter>;
|
6082
|
+
/** Comparator for the updated at date. */
|
6083
|
+
updatedAt?: Maybe<DateComparator>;
|
6084
|
+
};
|
6085
|
+
/** Document filtering options. */
|
6086
|
+
export declare type NullableDocumentFilter = {
|
6087
|
+
/** Compound filters, all of which need to be matched by the document. */
|
6088
|
+
and?: Maybe<Array<NullableDocumentFilter>>;
|
6089
|
+
/** Comparator for the created at date. */
|
6090
|
+
createdAt?: Maybe<DateComparator>;
|
6091
|
+
/** Filters that the document's creator must satisfy. */
|
6092
|
+
creator?: Maybe<UserFilter>;
|
5393
6093
|
/** Comparator for the identifier. */
|
5394
6094
|
id?: Maybe<IdComparator>;
|
6095
|
+
/** Filter based on the existence of the relation. */
|
6096
|
+
null?: Maybe<Scalars["Boolean"]>;
|
6097
|
+
/** Compound filters, one of which need to be matched by the document. */
|
6098
|
+
or?: Maybe<Array<NullableDocumentFilter>>;
|
6099
|
+
/** Filters that the document's project must satisfy. */
|
6100
|
+
project?: Maybe<ProjectFilter>;
|
6101
|
+
/** Comparator for the document slug ID. */
|
6102
|
+
slugId?: Maybe<StringComparator>;
|
6103
|
+
/** Comparator for the document title. */
|
6104
|
+
title?: Maybe<StringComparator>;
|
5395
6105
|
/** Comparator for the updated at date. */
|
5396
6106
|
updatedAt?: Maybe<DateComparator>;
|
5397
6107
|
};
|
@@ -5519,6 +6229,8 @@ export declare type NullableProjectFilter = {
|
|
5519
6229
|
health?: Maybe<StringComparator>;
|
5520
6230
|
/** Comparator for the identifier. */
|
5521
6231
|
id?: Maybe<IdComparator>;
|
6232
|
+
/** Filters that the projects initiatives must satisfy. */
|
6233
|
+
initiatives?: Maybe<InitiativeCollectionFilter>;
|
5522
6234
|
/** Filters that the projects issues must satisfy. */
|
5523
6235
|
issues?: Maybe<IssueCollectionFilter>;
|
5524
6236
|
/** Filters that the last applied template must satisfy. */
|
@@ -5535,11 +6247,13 @@ export declare type NullableProjectFilter = {
|
|
5535
6247
|
null?: Maybe<Scalars["Boolean"]>;
|
5536
6248
|
/** Compound filters, one of which need to be matched by the project. */
|
5537
6249
|
or?: Maybe<Array<NullableProjectFilter>>;
|
6250
|
+
/** [Internal] Comparator for the date when the project was last paused. */
|
6251
|
+
pausedAt?: Maybe<NullableDateComparator>;
|
5538
6252
|
/** Filters that the project's milestones must satisfy. */
|
5539
6253
|
projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
|
5540
6254
|
/** Filters that the projects roadmaps must satisfy. */
|
5541
6255
|
roadmaps?: Maybe<RoadmapCollectionFilter>;
|
5542
|
-
/** [Internal] Comparator for the
|
6256
|
+
/** [Internal] Comparator for the project's content. */
|
5543
6257
|
searchableContent?: Maybe<ContentComparator>;
|
5544
6258
|
/** Comparator for the project slug ID. */
|
5545
6259
|
slugId?: Maybe<StringComparator>;
|
@@ -5547,6 +6261,8 @@ export declare type NullableProjectFilter = {
|
|
5547
6261
|
startDate?: Maybe<NullableDateComparator>;
|
5548
6262
|
/** Comparator for the project state. */
|
5549
6263
|
state?: Maybe<StringComparator>;
|
6264
|
+
/** [Internal] Filters that the project's status must satisfy. */
|
6265
|
+
status?: Maybe<ProjectStatusFilter>;
|
5550
6266
|
/** Comparator for the project target date. */
|
5551
6267
|
targetDate?: Maybe<NullableDateComparator>;
|
5552
6268
|
/** Comparator for the updated at date. */
|
@@ -5714,7 +6430,7 @@ export declare type NumberComparator = {
|
|
5714
6430
|
/** Not-in-array constraint. */
|
5715
6431
|
nin?: Maybe<Array<Scalars["Float"]>>;
|
5716
6432
|
};
|
5717
|
-
/** The different requests statuses possible for an OAuth client approval request */
|
6433
|
+
/** The different requests statuses possible for an OAuth client approval request. */
|
5718
6434
|
export declare enum OAuthClientApprovalStatus {
|
5719
6435
|
Approved = "approved",
|
5720
6436
|
Denied = "denied",
|
@@ -5761,7 +6477,7 @@ export declare type OauthClient = Node & {
|
|
5761
6477
|
webhookResourceTypes: Array<Scalars["String"]>;
|
5762
6478
|
/** Webhook secret token for verifying the origin on the recipient side. */
|
5763
6479
|
webhookSecret?: Maybe<Scalars["String"]>;
|
5764
|
-
/** Webhook URL */
|
6480
|
+
/** Webhook URL. */
|
5765
6481
|
webhookUrl?: Maybe<Scalars["String"]>;
|
5766
6482
|
};
|
5767
6483
|
/** Request to install OAuth clients on organizations and the response to the request. */
|
@@ -5794,7 +6510,7 @@ export declare type OauthClientApproval = Node & {
|
|
5794
6510
|
*/
|
5795
6511
|
updatedAt: Scalars["DateTime"];
|
5796
6512
|
};
|
5797
|
-
/** An oauth client approval related notification */
|
6513
|
+
/** An oauth client approval related notification. */
|
5798
6514
|
export declare type OauthClientApprovalNotification = Entity & Node & Notification & {
|
5799
6515
|
__typename?: "OauthClientApprovalNotification";
|
5800
6516
|
/** The user that caused the notification. */
|
@@ -5820,7 +6536,7 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
|
|
5820
6536
|
readAt?: Maybe<Scalars["DateTime"]>;
|
5821
6537
|
/** The time until a notification will be snoozed. After that it will appear in the inbox again. */
|
5822
6538
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
5823
|
-
/** Notification type */
|
6539
|
+
/** Notification type. */
|
5824
6540
|
type: Scalars["String"];
|
5825
6541
|
/** The time at which a notification was unsnoozed.. */
|
5826
6542
|
unsnoozedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -5847,8 +6563,16 @@ export declare type OauthClientEdge = {
|
|
5847
6563
|
};
|
5848
6564
|
export declare type OauthToken = {
|
5849
6565
|
__typename?: "OauthToken";
|
6566
|
+
/** OAuth2 client for which the access token belongs to. */
|
6567
|
+
client: AuthOauthClient;
|
6568
|
+
clientId: Scalars["String"];
|
5850
6569
|
createdAt: Scalars["DateTime"];
|
5851
|
-
id: Scalars["
|
6570
|
+
id: Scalars["Float"];
|
6571
|
+
revokedAt?: Maybe<Scalars["DateTime"]>;
|
6572
|
+
/** Auth user who authorized the OAuth application. */
|
6573
|
+
user: AuthUser;
|
6574
|
+
/** Id of the user who authorized the OAuth application. */
|
6575
|
+
userId: Scalars["String"];
|
5852
6576
|
};
|
5853
6577
|
export declare type OnboardingCustomerSurvey = {
|
5854
6578
|
companyRole?: Maybe<Scalars["String"]>;
|
@@ -5857,9 +6581,9 @@ export declare type OnboardingCustomerSurvey = {
|
|
5857
6581
|
/** An organization. Organizations are root-level objects that contain user accounts and teams. */
|
5858
6582
|
export declare type Organization = Node & {
|
5859
6583
|
__typename?: "Organization";
|
5860
|
-
/** Whether member users are allowed to send invites */
|
6584
|
+
/** Whether member users are allowed to send invites. */
|
5861
6585
|
allowMembersToInvite?: Maybe<Scalars["Boolean"]>;
|
5862
|
-
/** Allowed authentication providers, empty array means all are allowed */
|
6586
|
+
/** Allowed authentication providers, empty array means all are allowed. */
|
5863
6587
|
allowedAuthServices: Array<Scalars["String"]>;
|
5864
6588
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
5865
6589
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -5903,11 +6627,11 @@ export declare type Organization = Node & {
|
|
5903
6627
|
roadmapEnabled: Scalars["Boolean"];
|
5904
6628
|
/** Whether SAML authentication is enabled for organization. */
|
5905
6629
|
samlEnabled: Scalars["Boolean"];
|
5906
|
-
/** [INTERNAL] SAML settings */
|
6630
|
+
/** [INTERNAL] SAML settings. */
|
5907
6631
|
samlSettings?: Maybe<Scalars["JSONObject"]>;
|
5908
6632
|
/** Whether SCIM provisioning is enabled for organization. */
|
5909
6633
|
scimEnabled: Scalars["Boolean"];
|
5910
|
-
/** Which day count to use for SLA calculations */
|
6634
|
+
/** Which day count to use for SLA calculations. */
|
5911
6635
|
slaDayCount: SlaDayCountType;
|
5912
6636
|
/** The organization's subscription to a paid plan. */
|
5913
6637
|
subscription?: Maybe<PaidSubscription>;
|
@@ -5980,7 +6704,7 @@ export declare type OrganizationUsersArgs = {
|
|
5980
6704
|
};
|
5981
6705
|
export declare type OrganizationAcceptedOrExpiredInviteDetailsPayload = {
|
5982
6706
|
__typename?: "OrganizationAcceptedOrExpiredInviteDetailsPayload";
|
5983
|
-
/** The status of the invite */
|
6707
|
+
/** The status of the invite. */
|
5984
6708
|
status: OrganizationInviteStatus;
|
5985
6709
|
};
|
5986
6710
|
export declare type OrganizationCancelDeletePayload = {
|
@@ -5998,7 +6722,7 @@ export declare type OrganizationDomain = Node & {
|
|
5998
6722
|
__typename?: "OrganizationDomain";
|
5999
6723
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
6000
6724
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
6001
|
-
/** What type of auth is the domain used for */
|
6725
|
+
/** What type of auth is the domain used for. */
|
6002
6726
|
authType: OrganizationDomainAuthType;
|
6003
6727
|
/** Whether the domains was claimed by the organization through DNS verification. */
|
6004
6728
|
claimed?: Maybe<Scalars["Boolean"]>;
|
@@ -6008,7 +6732,7 @@ export declare type OrganizationDomain = Node & {
|
|
6008
6732
|
creator?: Maybe<User>;
|
6009
6733
|
/** The unique identifier of the entity. */
|
6010
6734
|
id: Scalars["ID"];
|
6011
|
-
/** Domain name */
|
6735
|
+
/** Domain name. */
|
6012
6736
|
name: Scalars["String"];
|
6013
6737
|
/**
|
6014
6738
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
@@ -6016,9 +6740,9 @@ export declare type OrganizationDomain = Node & {
|
|
6016
6740
|
* been updated after creation.
|
6017
6741
|
*/
|
6018
6742
|
updatedAt: Scalars["DateTime"];
|
6019
|
-
/** E-mail used to verify this domain */
|
6743
|
+
/** E-mail used to verify this domain. */
|
6020
6744
|
verificationEmail?: Maybe<Scalars["String"]>;
|
6021
|
-
/** Is this domain verified */
|
6745
|
+
/** Is this domain verified. */
|
6022
6746
|
verified: Scalars["Boolean"];
|
6023
6747
|
};
|
6024
6748
|
/** What type of auth is the domain used for. */
|
@@ -6074,7 +6798,7 @@ export declare type OrganizationExistsPayload = {
|
|
6074
6798
|
/** An invitation to the organization that has been sent via email. */
|
6075
6799
|
export declare type OrganizationInvite = Node & {
|
6076
6800
|
__typename?: "OrganizationInvite";
|
6077
|
-
/** The time at which the invite was accepted. Null, if the invite hasn't been accepted */
|
6801
|
+
/** The time at which the invite was accepted. Null, if the invite hasn't been accepted. */
|
6078
6802
|
acceptedAt?: Maybe<Scalars["DateTime"]>;
|
6079
6803
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
6080
6804
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -6082,7 +6806,7 @@ export declare type OrganizationInvite = Node & {
|
|
6082
6806
|
createdAt: Scalars["DateTime"];
|
6083
6807
|
/** The invitees email address. */
|
6084
6808
|
email: Scalars["String"];
|
6085
|
-
/** The time at which the invite will be expiring. Null, if the invite shouldn't expire */
|
6809
|
+
/** The time at which the invite will be expiring. Null, if the invite shouldn't expire. */
|
6086
6810
|
expiresAt?: Maybe<Scalars["DateTime"]>;
|
6087
6811
|
/** The invite was sent to external address. */
|
6088
6812
|
external: Scalars["Boolean"];
|
@@ -6118,7 +6842,7 @@ export declare type OrganizationInviteCreateInput = {
|
|
6118
6842
|
id?: Maybe<Scalars["String"]>;
|
6119
6843
|
/** The message to send to the invitee. */
|
6120
6844
|
message?: Maybe<Scalars["String"]>;
|
6121
|
-
/** [INTERNAL] Optional metadata about the invite */
|
6845
|
+
/** [INTERNAL] Optional metadata about the invite. */
|
6122
6846
|
metadata?: Maybe<Scalars["JSONObject"]>;
|
6123
6847
|
/** What user role the invite should grant. */
|
6124
6848
|
role?: Maybe<UserRoleType>;
|
@@ -6138,11 +6862,11 @@ export declare type OrganizationInviteFullDetailsPayload = {
|
|
6138
6862
|
accepted: Scalars["Boolean"];
|
6139
6863
|
/** When the invite was created. */
|
6140
6864
|
createdAt: Scalars["DateTime"];
|
6141
|
-
/** The email of the invitee */
|
6865
|
+
/** The email of the invitee. */
|
6142
6866
|
email: Scalars["String"];
|
6143
6867
|
/** Whether the invite has expired. */
|
6144
6868
|
expired: Scalars["Boolean"];
|
6145
|
-
/** The name of the inviter */
|
6869
|
+
/** The name of the inviter. */
|
6146
6870
|
inviter: Scalars["String"];
|
6147
6871
|
/** ID of the workspace the invite is for. */
|
6148
6872
|
organizationId: Scalars["String"];
|
@@ -6152,7 +6876,7 @@ export declare type OrganizationInviteFullDetailsPayload = {
|
|
6152
6876
|
organizationName: Scalars["String"];
|
6153
6877
|
/** What user role the invite should grant. */
|
6154
6878
|
role: UserRoleType;
|
6155
|
-
/** The status of the invite */
|
6879
|
+
/** The status of the invite. */
|
6156
6880
|
status: OrganizationInviteStatus;
|
6157
6881
|
};
|
6158
6882
|
export declare type OrganizationInvitePayload = {
|
@@ -6201,7 +6925,7 @@ export declare type OrganizationUpdateInput = {
|
|
6201
6925
|
gitLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
|
6202
6926
|
/** Whether the Git integration linkback messages should be sent for public repositories. */
|
6203
6927
|
gitPublicLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
|
6204
|
-
/** Linear Preview feature flags */
|
6928
|
+
/** Linear Preview feature flags. */
|
6205
6929
|
linearPreviewFlags?: Maybe<Scalars["JSONObject"]>;
|
6206
6930
|
/** The logo of the organization. */
|
6207
6931
|
logoUrl?: Maybe<Scalars["String"]>;
|
@@ -6265,11 +6989,21 @@ export declare type PagerDutySettings = {
|
|
6265
6989
|
/** Metadata about a PagerDuty schedule. */
|
6266
6990
|
scheduleMapping: Array<PagerDutyScheduleInfo>;
|
6267
6991
|
};
|
6992
|
+
/** How to treat NULL values, whether they should appear first or last */
|
6993
|
+
export declare enum PaginationNulls {
|
6994
|
+
First = "first",
|
6995
|
+
Last = "last"
|
6996
|
+
}
|
6268
6997
|
/** By which field should the pagination order by */
|
6269
6998
|
export declare enum PaginationOrderBy {
|
6270
6999
|
CreatedAt = "createdAt",
|
6271
7000
|
UpdatedAt = "updatedAt"
|
6272
7001
|
}
|
7002
|
+
/** Whether to sort in ascending or descending order */
|
7003
|
+
export declare enum PaginationSortOrder {
|
7004
|
+
Ascending = "Ascending",
|
7005
|
+
Descending = "Descending"
|
7006
|
+
}
|
6273
7007
|
/** The paid subscription of an organization. */
|
6274
7008
|
export declare type PaidSubscription = Node & {
|
6275
7009
|
__typename?: "PaidSubscription";
|
@@ -6306,6 +7040,15 @@ export declare type PaidSubscription = Node & {
|
|
6306
7040
|
*/
|
6307
7041
|
updatedAt: Scalars["DateTime"];
|
6308
7042
|
};
|
7043
|
+
/** Issue priority sorting options. */
|
7044
|
+
export declare type PrioritySort = {
|
7045
|
+
/** Whether to consider no priority as the highest or lowest priority */
|
7046
|
+
noPriorityFirst?: Maybe<Scalars["Boolean"]>;
|
7047
|
+
/** Whether nulls should be sorted first or last */
|
7048
|
+
nulls?: Maybe<PaginationNulls>;
|
7049
|
+
/** The order for the individual sort */
|
7050
|
+
order?: Maybe<PaginationSortOrder>;
|
7051
|
+
};
|
6309
7052
|
/** A project. */
|
6310
7053
|
export declare type Project = Node & {
|
6311
7054
|
__typename?: "Project";
|
@@ -6325,6 +7068,8 @@ export declare type Project = Node & {
|
|
6325
7068
|
completedScopeHistory: Array<Scalars["Float"]>;
|
6326
7069
|
/** The project's content in markdown format. */
|
6327
7070
|
content?: Maybe<Scalars["String"]>;
|
7071
|
+
/** [Internal] The project's content as YJS state. */
|
7072
|
+
contentState?: Maybe<Scalars["String"]>;
|
6328
7073
|
/** The project was created based on this issue. */
|
6329
7074
|
convertedFromIssue?: Maybe<Issue>;
|
6330
7075
|
/** The time at which the entity was created. */
|
@@ -6357,6 +7102,8 @@ export declare type Project = Node & {
|
|
6357
7102
|
members: UserConnection;
|
6358
7103
|
/** The project's name. */
|
6359
7104
|
name: Scalars["String"];
|
7105
|
+
/** [INTERNAL] The latest time at which the project was paused. */
|
7106
|
+
pausedAt?: Maybe<Scalars["DateTime"]>;
|
6360
7107
|
/** The overall progress of the project. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points. */
|
6361
7108
|
progress: Scalars["Float"];
|
6362
7109
|
/** Milestones associated with the project. */
|
@@ -6387,6 +7134,8 @@ export declare type Project = Node & {
|
|
6387
7134
|
startedAt?: Maybe<Scalars["DateTime"]>;
|
6388
7135
|
/** The type of the state. */
|
6389
7136
|
state: Scalars["String"];
|
7137
|
+
/** [Internal] The status that the project is associated with. */
|
7138
|
+
status: ProjectStatus;
|
6390
7139
|
/** The estimated completion date of the project. */
|
6391
7140
|
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
6392
7141
|
/** [INTERNAL] The resolution of the project's estimated completion date. */
|
@@ -6408,6 +7157,7 @@ export declare type Project = Node & {
|
|
6408
7157
|
export declare type ProjectDocumentsArgs = {
|
6409
7158
|
after?: Maybe<Scalars["String"]>;
|
6410
7159
|
before?: Maybe<Scalars["String"]>;
|
7160
|
+
filter?: Maybe<DocumentFilter>;
|
6411
7161
|
first?: Maybe<Scalars["Int"]>;
|
6412
7162
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
6413
7163
|
last?: Maybe<Scalars["Int"]>;
|
@@ -6447,6 +7197,7 @@ export declare type ProjectMembersArgs = {
|
|
6447
7197
|
export declare type ProjectProjectMilestonesArgs = {
|
6448
7198
|
after?: Maybe<Scalars["String"]>;
|
6449
7199
|
before?: Maybe<Scalars["String"]>;
|
7200
|
+
filter?: Maybe<ProjectMilestoneFilter>;
|
6450
7201
|
first?: Maybe<Scalars["Int"]>;
|
6451
7202
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
6452
7203
|
last?: Maybe<Scalars["Int"]>;
|
@@ -6501,6 +7252,8 @@ export declare type ProjectCollectionFilter = {
|
|
6501
7252
|
health?: Maybe<StringComparator>;
|
6502
7253
|
/** Comparator for the identifier. */
|
6503
7254
|
id?: Maybe<IdComparator>;
|
7255
|
+
/** Filters that the projects initiatives must satisfy. */
|
7256
|
+
initiatives?: Maybe<InitiativeCollectionFilter>;
|
6504
7257
|
/** Filters that the projects issues must satisfy. */
|
6505
7258
|
issues?: Maybe<IssueCollectionFilter>;
|
6506
7259
|
/** Filters that the last applied template must satisfy. */
|
@@ -6517,11 +7270,13 @@ export declare type ProjectCollectionFilter = {
|
|
6517
7270
|
nextProjectMilestone?: Maybe<ProjectMilestoneFilter>;
|
6518
7271
|
/** Compound filters, one of which need to be matched by the project. */
|
6519
7272
|
or?: Maybe<Array<ProjectCollectionFilter>>;
|
7273
|
+
/** [Internal] Comparator for the date when the project was last paused. */
|
7274
|
+
pausedAt?: Maybe<NullableDateComparator>;
|
6520
7275
|
/** Filters that the project's milestones must satisfy. */
|
6521
7276
|
projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
|
6522
7277
|
/** Filters that the projects roadmaps must satisfy. */
|
6523
7278
|
roadmaps?: Maybe<RoadmapCollectionFilter>;
|
6524
|
-
/** [Internal] Comparator for the
|
7279
|
+
/** [Internal] Comparator for the project's content. */
|
6525
7280
|
searchableContent?: Maybe<ContentComparator>;
|
6526
7281
|
/** Comparator for the project slug ID. */
|
6527
7282
|
slugId?: Maybe<StringComparator>;
|
@@ -6531,6 +7286,8 @@ export declare type ProjectCollectionFilter = {
|
|
6531
7286
|
startDate?: Maybe<NullableDateComparator>;
|
6532
7287
|
/** Comparator for the project state. */
|
6533
7288
|
state?: Maybe<StringComparator>;
|
7289
|
+
/** [Internal] Filters that the project's status must satisfy. */
|
7290
|
+
status?: Maybe<ProjectStatusFilter>;
|
6534
7291
|
/** Comparator for the project target date. */
|
6535
7292
|
targetDate?: Maybe<NullableDateComparator>;
|
6536
7293
|
/** Comparator for the updated at date. */
|
@@ -6569,6 +7326,8 @@ export declare type ProjectCreateInput = {
|
|
6569
7326
|
startDateResolution?: Maybe<DateResolutionType>;
|
6570
7327
|
/** The state of the project. */
|
6571
7328
|
state?: Maybe<Scalars["String"]>;
|
7329
|
+
/** [INTERNAL] The ID of the project status. */
|
7330
|
+
statusId?: Maybe<Scalars["String"]>;
|
6572
7331
|
/** The planned target date of the project. */
|
6573
7332
|
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
6574
7333
|
/** [INTERNAL] The resolution of the project's estimated completion date. */
|
@@ -6600,6 +7359,8 @@ export declare type ProjectFilter = {
|
|
6600
7359
|
health?: Maybe<StringComparator>;
|
6601
7360
|
/** Comparator for the identifier. */
|
6602
7361
|
id?: Maybe<IdComparator>;
|
7362
|
+
/** Filters that the projects initiatives must satisfy. */
|
7363
|
+
initiatives?: Maybe<InitiativeCollectionFilter>;
|
6603
7364
|
/** Filters that the projects issues must satisfy. */
|
6604
7365
|
issues?: Maybe<IssueCollectionFilter>;
|
6605
7366
|
/** Filters that the last applied template must satisfy. */
|
@@ -6614,11 +7375,13 @@ export declare type ProjectFilter = {
|
|
6614
7375
|
nextProjectMilestone?: Maybe<ProjectMilestoneFilter>;
|
6615
7376
|
/** Compound filters, one of which need to be matched by the project. */
|
6616
7377
|
or?: Maybe<Array<ProjectFilter>>;
|
7378
|
+
/** [Internal] Comparator for the date when the project was last paused. */
|
7379
|
+
pausedAt?: Maybe<NullableDateComparator>;
|
6617
7380
|
/** Filters that the project's milestones must satisfy. */
|
6618
7381
|
projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
|
6619
7382
|
/** Filters that the projects roadmaps must satisfy. */
|
6620
7383
|
roadmaps?: Maybe<RoadmapCollectionFilter>;
|
6621
|
-
/** [Internal] Comparator for the
|
7384
|
+
/** [Internal] Comparator for the project's content. */
|
6622
7385
|
searchableContent?: Maybe<ContentComparator>;
|
6623
7386
|
/** Comparator for the project slug ID. */
|
6624
7387
|
slugId?: Maybe<StringComparator>;
|
@@ -6626,6 +7389,8 @@ export declare type ProjectFilter = {
|
|
6626
7389
|
startDate?: Maybe<NullableDateComparator>;
|
6627
7390
|
/** Comparator for the project state. */
|
6628
7391
|
state?: Maybe<StringComparator>;
|
7392
|
+
/** [Internal] Filters that the project's status must satisfy. */
|
7393
|
+
status?: Maybe<ProjectStatusFilter>;
|
6629
7394
|
/** Comparator for the project target date. */
|
6630
7395
|
targetDate?: Maybe<NullableDateComparator>;
|
6631
7396
|
/** Comparator for the updated at date. */
|
@@ -6712,10 +7477,17 @@ export declare type ProjectMilestone = Node & {
|
|
6712
7477
|
createdAt: Scalars["DateTime"];
|
6713
7478
|
/** The project milestone's description in markdown format. */
|
6714
7479
|
description?: Maybe<Scalars["String"]>;
|
6715
|
-
/**
|
7480
|
+
/**
|
7481
|
+
* [Internal] The project milestone's description as a Prosemirror document.
|
7482
|
+
* @deprecated Use `descriptionState` instead.
|
7483
|
+
*/
|
6716
7484
|
descriptionData?: Maybe<Scalars["JSON"]>;
|
7485
|
+
/** [Internal] The project milestone's description as YJS state. */
|
7486
|
+
descriptionState?: Maybe<Scalars["String"]>;
|
6717
7487
|
/** The unique identifier of the entity. */
|
6718
7488
|
id: Scalars["ID"];
|
7489
|
+
/** Issues associated with the project milestone. */
|
7490
|
+
issues: IssueConnection;
|
6719
7491
|
/** The name of the project milestone. */
|
6720
7492
|
name: Scalars["String"];
|
6721
7493
|
/** The project of the milestone. */
|
@@ -6731,6 +7503,16 @@ export declare type ProjectMilestone = Node & {
|
|
6731
7503
|
*/
|
6732
7504
|
updatedAt: Scalars["DateTime"];
|
6733
7505
|
};
|
7506
|
+
/** A milestone for a project. */
|
7507
|
+
export declare type ProjectMilestoneIssuesArgs = {
|
7508
|
+
after?: Maybe<Scalars["String"]>;
|
7509
|
+
before?: Maybe<Scalars["String"]>;
|
7510
|
+
filter?: Maybe<IssueFilter>;
|
7511
|
+
first?: Maybe<Scalars["Int"]>;
|
7512
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
7513
|
+
last?: Maybe<Scalars["Int"]>;
|
7514
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
7515
|
+
};
|
6734
7516
|
/** Milestone collection filtering options. */
|
6735
7517
|
export declare type ProjectMilestoneCollectionFilter = {
|
6736
7518
|
/** Compound filters, all of which need to be matched by the milestone. */
|
@@ -6820,7 +7602,7 @@ export declare type ProjectMilestoneUpdateInput = {
|
|
6820
7602
|
/** The planned target date of the project milestone. */
|
6821
7603
|
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
6822
7604
|
};
|
6823
|
-
/** A project related notification */
|
7605
|
+
/** A project related notification. */
|
6824
7606
|
export declare type ProjectNotification = Entity & Node & Notification & {
|
6825
7607
|
__typename?: "ProjectNotification";
|
6826
7608
|
/** The user that caused the notification. */
|
@@ -6848,7 +7630,7 @@ export declare type ProjectNotification = Entity & Node & Notification & {
|
|
6848
7630
|
readAt?: Maybe<Scalars["DateTime"]>;
|
6849
7631
|
/** The time until a notification will be snoozed. After that it will appear in the inbox again. */
|
6850
7632
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
6851
|
-
/** Notification type */
|
7633
|
+
/** Notification type. */
|
6852
7634
|
type: Scalars["String"];
|
6853
7635
|
/** The time at which a notification was unsnoozed.. */
|
6854
7636
|
unsnoozedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -6864,7 +7646,7 @@ export declare type ProjectNotification = Entity & Node & Notification & {
|
|
6864
7646
|
/** A project notification subscription. */
|
6865
7647
|
export declare type ProjectNotificationSubscription = Entity & Node & NotificationSubscription & {
|
6866
7648
|
__typename?: "ProjectNotificationSubscription";
|
6867
|
-
/** Whether the subscription is active or not */
|
7649
|
+
/** Whether the subscription is active or not. */
|
6868
7650
|
active: Scalars["Boolean"];
|
6869
7651
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
6870
7652
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -6936,6 +7718,8 @@ export declare type ProjectSearchResult = Node & {
|
|
6936
7718
|
completedScopeHistory: Array<Scalars["Float"]>;
|
6937
7719
|
/** The project's content in markdown format. */
|
6938
7720
|
content?: Maybe<Scalars["String"]>;
|
7721
|
+
/** [Internal] The project's content as YJS state. */
|
7722
|
+
contentState?: Maybe<Scalars["String"]>;
|
6939
7723
|
/** The project was created based on this issue. */
|
6940
7724
|
convertedFromIssue?: Maybe<Issue>;
|
6941
7725
|
/** The time at which the entity was created. */
|
@@ -6966,10 +7750,12 @@ export declare type ProjectSearchResult = Node & {
|
|
6966
7750
|
links: ProjectLinkConnection;
|
6967
7751
|
/** Users that are members of the project. */
|
6968
7752
|
members: UserConnection;
|
6969
|
-
/** Metadata related to search result */
|
7753
|
+
/** Metadata related to search result. */
|
6970
7754
|
metadata: Scalars["JSONObject"];
|
6971
7755
|
/** The project's name. */
|
6972
7756
|
name: Scalars["String"];
|
7757
|
+
/** [INTERNAL] The latest time at which the project was paused. */
|
7758
|
+
pausedAt?: Maybe<Scalars["DateTime"]>;
|
6973
7759
|
/** The overall progress of the project. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points. */
|
6974
7760
|
progress: Scalars["Float"];
|
6975
7761
|
/** Milestones associated with the project. */
|
@@ -7000,6 +7786,8 @@ export declare type ProjectSearchResult = Node & {
|
|
7000
7786
|
startedAt?: Maybe<Scalars["DateTime"]>;
|
7001
7787
|
/** The type of the state. */
|
7002
7788
|
state: Scalars["String"];
|
7789
|
+
/** [Internal] The status that the project is associated with. */
|
7790
|
+
status: ProjectStatus;
|
7003
7791
|
/** The estimated completion date of the project. */
|
7004
7792
|
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
7005
7793
|
/** [INTERNAL] The resolution of the project's estimated completion date. */
|
@@ -7020,6 +7808,7 @@ export declare type ProjectSearchResult = Node & {
|
|
7020
7808
|
export declare type ProjectSearchResultDocumentsArgs = {
|
7021
7809
|
after?: Maybe<Scalars["String"]>;
|
7022
7810
|
before?: Maybe<Scalars["String"]>;
|
7811
|
+
filter?: Maybe<DocumentFilter>;
|
7023
7812
|
first?: Maybe<Scalars["Int"]>;
|
7024
7813
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
7025
7814
|
last?: Maybe<Scalars["Int"]>;
|
@@ -7055,6 +7844,7 @@ export declare type ProjectSearchResultMembersArgs = {
|
|
7055
7844
|
export declare type ProjectSearchResultProjectMilestonesArgs = {
|
7056
7845
|
after?: Maybe<Scalars["String"]>;
|
7057
7846
|
before?: Maybe<Scalars["String"]>;
|
7847
|
+
filter?: Maybe<ProjectMilestoneFilter>;
|
7058
7848
|
first?: Maybe<Scalars["Int"]>;
|
7059
7849
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
7060
7850
|
last?: Maybe<Scalars["Int"]>;
|
@@ -7089,6 +7879,85 @@ export declare type ProjectSearchResultEdge = {
|
|
7089
7879
|
cursor: Scalars["String"];
|
7090
7880
|
node: ProjectSearchResult;
|
7091
7881
|
};
|
7882
|
+
/** Issue project sorting options. */
|
7883
|
+
export declare type ProjectSort = {
|
7884
|
+
/** Whether nulls should be sorted first or last */
|
7885
|
+
nulls?: Maybe<PaginationNulls>;
|
7886
|
+
/** The order for the individual sort */
|
7887
|
+
order?: Maybe<PaginationSortOrder>;
|
7888
|
+
};
|
7889
|
+
/** [ALPHA] A project status. */
|
7890
|
+
export declare type ProjectStatus = Node & {
|
7891
|
+
__typename?: "ProjectStatus";
|
7892
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
7893
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
7894
|
+
/** The UI color of the status as a HEX string. */
|
7895
|
+
color: Scalars["String"];
|
7896
|
+
/** The time at which the entity was created. */
|
7897
|
+
createdAt: Scalars["DateTime"];
|
7898
|
+
/** Description of the status. */
|
7899
|
+
description?: Maybe<Scalars["String"]>;
|
7900
|
+
/** The unique identifier of the entity. */
|
7901
|
+
id: Scalars["ID"];
|
7902
|
+
/** Whether or not a project can be in this status indefinitely. */
|
7903
|
+
indefinite: Scalars["Boolean"];
|
7904
|
+
/** The name of the status. */
|
7905
|
+
name: Scalars["String"];
|
7906
|
+
/** The position of the status in the workspace's project flow. */
|
7907
|
+
position: Scalars["Float"];
|
7908
|
+
/** The type of the project status. */
|
7909
|
+
type?: Maybe<ProjectStatusType>;
|
7910
|
+
/**
|
7911
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
7912
|
+
* 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
|
7913
|
+
* been updated after creation.
|
7914
|
+
*/
|
7915
|
+
updatedAt: Scalars["DateTime"];
|
7916
|
+
};
|
7917
|
+
export declare type ProjectStatusConnection = {
|
7918
|
+
__typename?: "ProjectStatusConnection";
|
7919
|
+
edges: Array<ProjectStatusEdge>;
|
7920
|
+
nodes: Array<ProjectStatus>;
|
7921
|
+
pageInfo: PageInfo;
|
7922
|
+
};
|
7923
|
+
export declare type ProjectStatusEdge = {
|
7924
|
+
__typename?: "ProjectStatusEdge";
|
7925
|
+
/** Used in `before` and `after` args */
|
7926
|
+
cursor: Scalars["String"];
|
7927
|
+
node: ProjectStatus;
|
7928
|
+
};
|
7929
|
+
/** Project status filtering options. */
|
7930
|
+
export declare type ProjectStatusFilter = {
|
7931
|
+
/** Compound filters, all of which need to be matched by the project status. */
|
7932
|
+
and?: Maybe<Array<ProjectStatusFilter>>;
|
7933
|
+
/** Comparator for the created at date. */
|
7934
|
+
createdAt?: Maybe<DateComparator>;
|
7935
|
+
/** Comparator for the project status description. */
|
7936
|
+
description?: Maybe<StringComparator>;
|
7937
|
+
/** Comparator for the identifier. */
|
7938
|
+
id?: Maybe<IdComparator>;
|
7939
|
+
/** Comparator for the project status name. */
|
7940
|
+
name?: Maybe<StringComparator>;
|
7941
|
+
/** Compound filters, one of which needs to be matched by the project status. */
|
7942
|
+
or?: Maybe<Array<ProjectStatusFilter>>;
|
7943
|
+
/** Comparator for the project status position. */
|
7944
|
+
position?: Maybe<NumberComparator>;
|
7945
|
+
/** Filters that the project status projects must satisfy. */
|
7946
|
+
projects?: Maybe<ProjectCollectionFilter>;
|
7947
|
+
/** Comparator for the project status type. */
|
7948
|
+
type?: Maybe<StringComparator>;
|
7949
|
+
/** Comparator for the updated at date. */
|
7950
|
+
updatedAt?: Maybe<DateComparator>;
|
7951
|
+
};
|
7952
|
+
/** A type of project status. */
|
7953
|
+
export declare enum ProjectStatusType {
|
7954
|
+
Backlog = "backlog",
|
7955
|
+
Canceled = "canceled",
|
7956
|
+
Completed = "completed",
|
7957
|
+
Paused = "paused",
|
7958
|
+
Planned = "planned",
|
7959
|
+
Started = "started"
|
7960
|
+
}
|
7092
7961
|
/** Different tabs available inside a project. */
|
7093
7962
|
export declare enum ProjectTab {
|
7094
7963
|
Activity = "activity",
|
@@ -7102,10 +7971,12 @@ export declare type ProjectUpdate = Node & {
|
|
7102
7971
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
7103
7972
|
/** The update content in markdown format. */
|
7104
7973
|
body: Scalars["String"];
|
7974
|
+
/** [Internal] The content of the project update as a Prosemirror document. */
|
7975
|
+
bodyData: Scalars["String"];
|
7105
7976
|
/** The time at which the entity was created. */
|
7106
7977
|
createdAt: Scalars["DateTime"];
|
7107
7978
|
/** The diff between the current update and the previous one. */
|
7108
|
-
diff?: Maybe<Scalars["
|
7979
|
+
diff?: Maybe<Scalars["JSONObject"]>;
|
7109
7980
|
/** The diff between the current update and the previous one, formatted as markdown. */
|
7110
7981
|
diffMarkdown?: Maybe<Scalars["String"]>;
|
7111
7982
|
/** The time the project update was edited. */
|
@@ -7116,7 +7987,7 @@ export declare type ProjectUpdate = Node & {
|
|
7116
7987
|
id: Scalars["ID"];
|
7117
7988
|
/** [Internal] Serialized JSON representing current state of the project properties when posting the project update. */
|
7118
7989
|
infoSnapshot?: Maybe<Scalars["JSONObject"]>;
|
7119
|
-
/**
|
7990
|
+
/** Whether project update diff should be hidden. */
|
7120
7991
|
isDiffHidden: Scalars["Boolean"];
|
7121
7992
|
/** The project that the update is associated with. */
|
7122
7993
|
project: Project;
|
@@ -7146,7 +8017,7 @@ export declare type ProjectUpdateCreateInput = {
|
|
7146
8017
|
health?: Maybe<ProjectUpdateHealthType>;
|
7147
8018
|
/** The identifier. If none is provided, the backend will generate one. */
|
7148
8019
|
id?: Maybe<Scalars["String"]>;
|
7149
|
-
/**
|
8020
|
+
/** Whether the diff between the current update and the previous one should be hidden. */
|
7150
8021
|
isDiffHidden?: Maybe<Scalars["Boolean"]>;
|
7151
8022
|
/** The project to associate the project update with. */
|
7152
8023
|
projectId: Scalars["String"];
|
@@ -7201,6 +8072,8 @@ export declare type ProjectUpdateInput = {
|
|
7201
8072
|
memberIds?: Maybe<Array<Scalars["String"]>>;
|
7202
8073
|
/** The name of the project. */
|
7203
8074
|
name?: Maybe<Scalars["String"]>;
|
8075
|
+
/** [INTERNAL] The date when the project was paused. */
|
8076
|
+
pausedAt?: Maybe<Scalars["DateTime"]>;
|
7204
8077
|
/** The time until which project update reminders are paused. */
|
7205
8078
|
projectUpdateRemindersPausedUntilAt?: Maybe<Scalars["DateTime"]>;
|
7206
8079
|
/** Whether to send new issue comment notifications to Slack. */
|
@@ -7217,6 +8090,8 @@ export declare type ProjectUpdateInput = {
|
|
7217
8090
|
startDateResolution?: Maybe<DateResolutionType>;
|
7218
8091
|
/** The state of the project. */
|
7219
8092
|
state?: Maybe<Scalars["String"]>;
|
8093
|
+
/** [INTERNAL] The ID of the project status. */
|
8094
|
+
statusId?: Maybe<Scalars["String"]>;
|
7220
8095
|
/** The planned target date of the project. */
|
7221
8096
|
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
7222
8097
|
/** [INTERNAL] The resolution of the project's estimated completion date. */
|
@@ -7305,7 +8180,7 @@ export declare type ProjectUpdateUpdateInput = {
|
|
7305
8180
|
bodyData?: Maybe<Scalars["JSON"]>;
|
7306
8181
|
/** The health of the project at the time of the update. */
|
7307
8182
|
health?: Maybe<ProjectUpdateHealthType>;
|
7308
|
-
/**
|
8183
|
+
/** Whether the diff between the current update and the previous one should be hidden. */
|
7309
8184
|
isDiffHidden?: Maybe<Scalars["Boolean"]>;
|
7310
8185
|
};
|
7311
8186
|
export declare type ProjectUpdateWithInteractionPayload = {
|
@@ -7346,7 +8221,7 @@ export declare type PushSubscriptionCreateInput = {
|
|
7346
8221
|
data: Scalars["String"];
|
7347
8222
|
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
7348
8223
|
id?: Maybe<Scalars["String"]>;
|
7349
|
-
/** Whether this is a subscription payload for Google Cloud Messaging or Apple Push Notification service */
|
8224
|
+
/** Whether this is a subscription payload for Google Cloud Messaging or Apple Push Notification service. */
|
7350
8225
|
type?: Maybe<PushSubscriptionType>;
|
7351
8226
|
/** The user identifier of the subscription. */
|
7352
8227
|
userId?: Maybe<Scalars["String"]>;
|
@@ -7371,7 +8246,7 @@ export declare type PushSubscriptionTestPayload = {
|
|
7371
8246
|
/** Whether the operation was successful. */
|
7372
8247
|
success: Scalars["Boolean"];
|
7373
8248
|
};
|
7374
|
-
/** The different push subscription types */
|
8249
|
+
/** The different push subscription types. */
|
7375
8250
|
export declare enum PushSubscriptionType {
|
7376
8251
|
Apple = "apple",
|
7377
8252
|
AppleDevelopment = "appleDevelopment",
|
@@ -7380,24 +8255,16 @@ export declare enum PushSubscriptionType {
|
|
7380
8255
|
}
|
7381
8256
|
export declare type Query = {
|
7382
8257
|
__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
8258
|
/** 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
8259
|
administrableTeams: TeamConnection;
|
7395
8260
|
/** All API keys for the user. */
|
7396
8261
|
apiKeys: ApiKeyConnection;
|
7397
8262
|
/** Get basic information for an application. */
|
7398
8263
|
applicationInfo: Application;
|
7399
|
-
/** [INTERNAL] Get basic information for a list of applications */
|
8264
|
+
/** [INTERNAL] Get basic information for a list of applications. */
|
7400
8265
|
applicationInfoByIds: Array<Application>;
|
8266
|
+
/** [INTERNAL] Get information for a list of applications with memberships */
|
8267
|
+
applicationInfoWithMembershipsByIds: Array<WorkspaceAuthorizedApplication>;
|
7401
8268
|
/** Get information for an application and whether a user has approved it for the given scopes. */
|
7402
8269
|
applicationWithAuthorization: UserAuthorizedApplication;
|
7403
8270
|
/** [Internal] All archived teams of the organization. */
|
@@ -7412,7 +8279,7 @@ export declare type Query = {
|
|
7412
8279
|
* @deprecated Will be removed in near future, please use `attachmentsForURL` to get attachments and their issues instead.
|
7413
8280
|
*/
|
7414
8281
|
attachmentIssue: Issue;
|
7415
|
-
/** [Internal] Get a list of all unique attachment sources in the workspace */
|
8282
|
+
/** [Internal] Get a list of all unique attachment sources in the workspace. */
|
7416
8283
|
attachmentSources: AttachmentSourcesPayload;
|
7417
8284
|
/**
|
7418
8285
|
* All issue attachments.
|
@@ -7428,7 +8295,7 @@ export declare type Query = {
|
|
7428
8295
|
auditEntryTypes: Array<AuditEntryType>;
|
7429
8296
|
/** User's active sessions. */
|
7430
8297
|
authenticationSessions: Array<AuthenticationSessionResponse>;
|
7431
|
-
/** [INTERNAL] Get all authorized applications for a user */
|
8298
|
+
/** [INTERNAL] Get all authorized applications for a user. */
|
7432
8299
|
authorizedApplications: Array<AuthorizedApplication>;
|
7433
8300
|
/** Fetch users belonging to this user account. */
|
7434
8301
|
availableUsers: AuthResolverResponse;
|
@@ -7466,8 +8333,18 @@ export declare type Query = {
|
|
7466
8333
|
favorite: Favorite;
|
7467
8334
|
/** The user's favorites. */
|
7468
8335
|
favorites: FavoriteConnection;
|
8336
|
+
/** [Internal] One specific initiative. */
|
8337
|
+
initiative: Initiative;
|
8338
|
+
/** [INTERNAL] One specific initiativeToProject. */
|
8339
|
+
initiativeToProject: InitiativeToProject;
|
8340
|
+
/** [INTERNAL] returns a list of initiative to project entities. */
|
8341
|
+
initiativeToProjects: InitiativeToProjectConnection;
|
8342
|
+
/** [Internal] All initiatives in the workspace. */
|
8343
|
+
initiatives: InitiativeConnection;
|
7469
8344
|
/** One specific integration. */
|
7470
8345
|
integration: Integration;
|
8346
|
+
/** Checks if the integration has all required scopes. */
|
8347
|
+
integrationHasScopes: IntegrationHasScopesPayload;
|
7471
8348
|
/** One specific integrationTemplate. */
|
7472
8349
|
integrationTemplate: IntegrationTemplate;
|
7473
8350
|
/** Template and integration connections. */
|
@@ -7578,6 +8455,14 @@ export declare type Query = {
|
|
7578
8455
|
templates: Array<Template>;
|
7579
8456
|
/** Returns all templates that are associated with the integration type. */
|
7580
8457
|
templatesForIntegration: Array<Template>;
|
8458
|
+
/** [ALPHA] A specific time schedule. */
|
8459
|
+
timeSchedule: TimeSchedule;
|
8460
|
+
/** [ALPHA] All time schedules. */
|
8461
|
+
timeSchedules: TimeScheduleConnection;
|
8462
|
+
/** [ALPHA] All triage responsibilities. */
|
8463
|
+
triageResponsibilities: TriageResponsibilityConnection;
|
8464
|
+
/** [ALPHA] A specific triage responsibility. */
|
8465
|
+
triageResponsibility: TriageResponsibility;
|
7581
8466
|
/** One specific user. */
|
7582
8467
|
user: User;
|
7583
8468
|
/** The user's settings. */
|
@@ -7594,21 +8479,9 @@ export declare type Query = {
|
|
7594
8479
|
workflowState: WorkflowState;
|
7595
8480
|
/** All issue workflow states. */
|
7596
8481
|
workflowStates: WorkflowStateConnection;
|
7597
|
-
/** [INTERNAL] Get
|
8482
|
+
/** [INTERNAL] Get non-internal authorized applications (with limited fields) for a workspace */
|
7598
8483
|
workspaceAuthorizedApplications: Array<WorkspaceAuthorizedApplication>;
|
7599
8484
|
};
|
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
8485
|
export declare type QueryAdministrableTeamsArgs = {
|
7613
8486
|
after?: Maybe<Scalars["String"]>;
|
7614
8487
|
before?: Maybe<Scalars["String"]>;
|
@@ -7632,6 +8505,9 @@ export declare type QueryApplicationInfoArgs = {
|
|
7632
8505
|
export declare type QueryApplicationInfoByIdsArgs = {
|
7633
8506
|
ids: Array<Scalars["String"]>;
|
7634
8507
|
};
|
8508
|
+
export declare type QueryApplicationInfoWithMembershipsByIdsArgs = {
|
8509
|
+
clientIds: Array<Scalars["String"]>;
|
8510
|
+
};
|
7635
8511
|
export declare type QueryApplicationWithAuthorizationArgs = {
|
7636
8512
|
actor?: Maybe<Scalars["String"]>;
|
7637
8513
|
clientId: Scalars["String"];
|
@@ -7675,7 +8551,9 @@ export declare type QueryAuditEntriesArgs = {
|
|
7675
8551
|
orderBy?: Maybe<PaginationOrderBy>;
|
7676
8552
|
};
|
7677
8553
|
export declare type QueryCommentArgs = {
|
7678
|
-
|
8554
|
+
hash?: Maybe<Scalars["String"]>;
|
8555
|
+
id?: Maybe<Scalars["String"]>;
|
8556
|
+
issueId?: Maybe<Scalars["String"]>;
|
7679
8557
|
};
|
7680
8558
|
export declare type QueryCommentsArgs = {
|
7681
8559
|
after?: Maybe<Scalars["String"]>;
|
@@ -7725,6 +8603,7 @@ export declare type QueryDocumentContentHistoryArgs = {
|
|
7725
8603
|
export declare type QueryDocumentsArgs = {
|
7726
8604
|
after?: Maybe<Scalars["String"]>;
|
7727
8605
|
before?: Maybe<Scalars["String"]>;
|
8606
|
+
filter?: Maybe<DocumentFilter>;
|
7728
8607
|
first?: Maybe<Scalars["Int"]>;
|
7729
8608
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
7730
8609
|
last?: Maybe<Scalars["Int"]>;
|
@@ -7763,9 +8642,35 @@ export declare type QueryFavoritesArgs = {
|
|
7763
8642
|
last?: Maybe<Scalars["Int"]>;
|
7764
8643
|
orderBy?: Maybe<PaginationOrderBy>;
|
7765
8644
|
};
|
8645
|
+
export declare type QueryInitiativeArgs = {
|
8646
|
+
id: Scalars["String"];
|
8647
|
+
};
|
8648
|
+
export declare type QueryInitiativeToProjectArgs = {
|
8649
|
+
id: Scalars["String"];
|
8650
|
+
};
|
8651
|
+
export declare type QueryInitiativeToProjectsArgs = {
|
8652
|
+
after?: Maybe<Scalars["String"]>;
|
8653
|
+
before?: Maybe<Scalars["String"]>;
|
8654
|
+
first?: Maybe<Scalars["Int"]>;
|
8655
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
8656
|
+
last?: Maybe<Scalars["Int"]>;
|
8657
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
8658
|
+
};
|
8659
|
+
export declare type QueryInitiativesArgs = {
|
8660
|
+
after?: Maybe<Scalars["String"]>;
|
8661
|
+
before?: Maybe<Scalars["String"]>;
|
8662
|
+
first?: Maybe<Scalars["Int"]>;
|
8663
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
8664
|
+
last?: Maybe<Scalars["Int"]>;
|
8665
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
8666
|
+
};
|
7766
8667
|
export declare type QueryIntegrationArgs = {
|
7767
8668
|
id: Scalars["String"];
|
7768
8669
|
};
|
8670
|
+
export declare type QueryIntegrationHasScopesArgs = {
|
8671
|
+
integrationId: Scalars["String"];
|
8672
|
+
scopes: Array<Scalars["String"]>;
|
8673
|
+
};
|
7769
8674
|
export declare type QueryIntegrationTemplateArgs = {
|
7770
8675
|
id: Scalars["String"];
|
7771
8676
|
};
|
@@ -7854,6 +8759,7 @@ export declare type QueryIssuesArgs = {
|
|
7854
8759
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
7855
8760
|
last?: Maybe<Scalars["Int"]>;
|
7856
8761
|
orderBy?: Maybe<PaginationOrderBy>;
|
8762
|
+
sort?: Maybe<Array<IssueSortInput>>;
|
7857
8763
|
};
|
7858
8764
|
export declare type QueryNotificationArgs = {
|
7859
8765
|
id: Scalars["String"];
|
@@ -7914,10 +8820,10 @@ export declare type QueryProjectLinksArgs = {
|
|
7914
8820
|
last?: Maybe<Scalars["Int"]>;
|
7915
8821
|
orderBy?: Maybe<PaginationOrderBy>;
|
7916
8822
|
};
|
7917
|
-
export declare type
|
8823
|
+
export declare type QueryProjectMilestoneArgs = {
|
7918
8824
|
id: Scalars["String"];
|
7919
8825
|
};
|
7920
|
-
export declare type
|
8826
|
+
export declare type QueryProjectMilestonesArgs = {
|
7921
8827
|
after?: Maybe<Scalars["String"]>;
|
7922
8828
|
before?: Maybe<Scalars["String"]>;
|
7923
8829
|
filter?: Maybe<ProjectMilestoneFilter>;
|
@@ -7992,6 +8898,7 @@ export declare type QuerySearchDocumentsArgs = {
|
|
7992
8898
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
7993
8899
|
last?: Maybe<Scalars["Int"]>;
|
7994
8900
|
orderBy?: Maybe<PaginationOrderBy>;
|
8901
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
7995
8902
|
teamId?: Maybe<Scalars["String"]>;
|
7996
8903
|
term: Scalars["String"];
|
7997
8904
|
};
|
@@ -8004,6 +8911,7 @@ export declare type QuerySearchIssuesArgs = {
|
|
8004
8911
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
8005
8912
|
last?: Maybe<Scalars["Int"]>;
|
8006
8913
|
orderBy?: Maybe<PaginationOrderBy>;
|
8914
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
8007
8915
|
teamId?: Maybe<Scalars["String"]>;
|
8008
8916
|
term: Scalars["String"];
|
8009
8917
|
};
|
@@ -8015,6 +8923,7 @@ export declare type QuerySearchProjectsArgs = {
|
|
8015
8923
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
8016
8924
|
last?: Maybe<Scalars["Int"]>;
|
8017
8925
|
orderBy?: Maybe<PaginationOrderBy>;
|
8926
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
8018
8927
|
teamId?: Maybe<Scalars["String"]>;
|
8019
8928
|
term: Scalars["String"];
|
8020
8929
|
};
|
@@ -8051,6 +8960,28 @@ export declare type QueryTemplateArgs = {
|
|
8051
8960
|
export declare type QueryTemplatesForIntegrationArgs = {
|
8052
8961
|
integrationType: Scalars["String"];
|
8053
8962
|
};
|
8963
|
+
export declare type QueryTimeScheduleArgs = {
|
8964
|
+
id: Scalars["String"];
|
8965
|
+
};
|
8966
|
+
export declare type QueryTimeSchedulesArgs = {
|
8967
|
+
after?: Maybe<Scalars["String"]>;
|
8968
|
+
before?: Maybe<Scalars["String"]>;
|
8969
|
+
first?: Maybe<Scalars["Int"]>;
|
8970
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
8971
|
+
last?: Maybe<Scalars["Int"]>;
|
8972
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
8973
|
+
};
|
8974
|
+
export declare type QueryTriageResponsibilitiesArgs = {
|
8975
|
+
after?: Maybe<Scalars["String"]>;
|
8976
|
+
before?: Maybe<Scalars["String"]>;
|
8977
|
+
first?: Maybe<Scalars["Int"]>;
|
8978
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
8979
|
+
last?: Maybe<Scalars["Int"]>;
|
8980
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
8981
|
+
};
|
8982
|
+
export declare type QueryTriageResponsibilityArgs = {
|
8983
|
+
id: Scalars["String"];
|
8984
|
+
};
|
8054
8985
|
export declare type QueryUserArgs = {
|
8055
8986
|
id: Scalars["String"];
|
8056
8987
|
};
|
@@ -8148,7 +9079,7 @@ export declare type ReactionCreateInput = {
|
|
8148
9079
|
commentId?: Maybe<Scalars["String"]>;
|
8149
9080
|
/** The emoji the user reacted with. */
|
8150
9081
|
emoji?: Maybe<Scalars["String"]>;
|
8151
|
-
/** The identifier in UUID v4 format. If none is provided, the backend will generate one */
|
9082
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
8152
9083
|
id?: Maybe<Scalars["String"]>;
|
8153
9084
|
/** The issue to associate the reaction with. */
|
8154
9085
|
issueId?: Maybe<Scalars["String"]>;
|
@@ -8175,7 +9106,7 @@ export declare type RelationExistsComparator = {
|
|
8175
9106
|
/** Not equals constraint. */
|
8176
9107
|
neq?: Maybe<Scalars["Boolean"]>;
|
8177
9108
|
};
|
8178
|
-
/** Features release channel */
|
9109
|
+
/** Features release channel. */
|
8179
9110
|
export declare enum ReleaseChannel {
|
8180
9111
|
Beta = "beta",
|
8181
9112
|
Internal = "internal",
|
@@ -8276,7 +9207,7 @@ export declare type RoadmapCreateInput = {
|
|
8276
9207
|
id?: Maybe<Scalars["String"]>;
|
8277
9208
|
/** The name of the roadmap. */
|
8278
9209
|
name: Scalars["String"];
|
8279
|
-
/** The owner of the roadmap */
|
9210
|
+
/** The owner of the roadmap. */
|
8280
9211
|
ownerId?: Maybe<Scalars["String"]>;
|
8281
9212
|
/** The sort order of the roadmap within the organization. */
|
8282
9213
|
sortOrder?: Maybe<Scalars["Float"]>;
|
@@ -8315,7 +9246,7 @@ export declare type RoadmapPayload = {
|
|
8315
9246
|
/** Whether the operation was successful. */
|
8316
9247
|
success: Scalars["Boolean"];
|
8317
9248
|
};
|
8318
|
-
/** Join table between projects and roadmaps */
|
9249
|
+
/** Join table between projects and roadmaps. */
|
8319
9250
|
export declare type RoadmapToProject = Node & {
|
8320
9251
|
__typename?: "RoadmapToProject";
|
8321
9252
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
@@ -8379,53 +9310,16 @@ export declare type RoadmapUpdateInput = {
|
|
8379
9310
|
description?: Maybe<Scalars["String"]>;
|
8380
9311
|
/** The name of the roadmap. */
|
8381
9312
|
name?: Maybe<Scalars["String"]>;
|
8382
|
-
/** The owner of the roadmap */
|
9313
|
+
/** The owner of the roadmap. */
|
8383
9314
|
ownerId?: Maybe<Scalars["String"]>;
|
8384
9315
|
/** The sort order of the roadmap within the organization. */
|
8385
9316
|
sortOrder?: Maybe<Scalars["Float"]>;
|
8386
9317
|
};
|
8387
|
-
/** Which day count to use for SLA calculations */
|
9318
|
+
/** Which day count to use for SLA calculations. */
|
8388
9319
|
export declare enum SlaDayCountType {
|
8389
9320
|
All = "all",
|
8390
9321
|
OnlyBusinessDays = "onlyBusinessDays"
|
8391
9322
|
}
|
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
9323
|
export declare enum SendStrategy {
|
8430
9324
|
Desktop = "desktop",
|
8431
9325
|
DesktopAndPush = "desktopAndPush",
|
@@ -8464,6 +9358,13 @@ export declare type SlaStatusComparator = {
|
|
8464
9358
|
/** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
|
8465
9359
|
null?: Maybe<Scalars["Boolean"]>;
|
8466
9360
|
};
|
9361
|
+
/** Issue SLA status sorting options. */
|
9362
|
+
export declare type SlaStatusSort = {
|
9363
|
+
/** Whether nulls should be sorted first or last */
|
9364
|
+
nulls?: Maybe<PaginationNulls>;
|
9365
|
+
/** The order for the individual sort */
|
9366
|
+
order?: Maybe<PaginationSortOrder>;
|
9367
|
+
};
|
8467
9368
|
/** Slack Asks specific settings. */
|
8468
9369
|
export declare type SlackAsksSettings = {
|
8469
9370
|
__typename?: "SlackAsksSettings";
|
@@ -8478,16 +9379,16 @@ export declare type SlackAsksSettingsInput = {
|
|
8478
9379
|
/** The mapping of Slack channel ID => Slack channel name for connected channels. */
|
8479
9380
|
slackChannelMapping?: Maybe<Array<SlackChannelNameMappingInput>>;
|
8480
9381
|
};
|
8481
|
-
/** Tuple for mapping Slack channel IDs to names */
|
9382
|
+
/** Tuple for mapping Slack channel IDs to names. */
|
8482
9383
|
export declare type SlackAsksTeamSettings = {
|
8483
9384
|
__typename?: "SlackAsksTeamSettings";
|
8484
|
-
/** Whether the default Asks template is enabled in the given channel for this team */
|
9385
|
+
/** Whether the default Asks template is enabled in the given channel for this team. */
|
8485
9386
|
hasDefaultAsk: Scalars["Boolean"];
|
8486
9387
|
/** The Linear team ID. */
|
8487
9388
|
id: Scalars["String"];
|
8488
9389
|
};
|
8489
9390
|
export declare type SlackAsksTeamSettingsInput = {
|
8490
|
-
/** Whether the default Asks template is enabled in the given channel for this team */
|
9391
|
+
/** Whether the default Asks template is enabled in the given channel for this team. */
|
8491
9392
|
hasDefaultAsk: Scalars["Boolean"];
|
8492
9393
|
/** The Linear team ID. */
|
8493
9394
|
id: Scalars["String"];
|
@@ -8507,50 +9408,50 @@ export declare type SlackChannelConnectPayload = {
|
|
8507
9408
|
/** Whether the operation was successful. */
|
8508
9409
|
success: Scalars["Boolean"];
|
8509
9410
|
};
|
8510
|
-
/** Object for mapping Slack channel IDs to names and other settings */
|
9411
|
+
/** Object for mapping Slack channel IDs to names and other settings. */
|
8511
9412
|
export declare type SlackChannelNameMapping = {
|
8512
9413
|
__typename?: "SlackChannelNameMapping";
|
8513
|
-
/** Whether or not @-mentioning the bot should automatically create an Ask with the message */
|
9414
|
+
/** Whether or not @-mentioning the bot should automatically create an Ask with the message. */
|
8514
9415
|
autoCreateOnBotMention?: Maybe<Scalars["Boolean"]>;
|
8515
|
-
/** Whether or not using the :ticket: emoji in this channel should automatically create Asks */
|
9416
|
+
/** Whether or not using the :ticket: emoji in this channel should automatically create Asks. */
|
8516
9417
|
autoCreateOnEmoji?: Maybe<Scalars["Boolean"]>;
|
8517
|
-
/** Whether or not top-level messages in this channel should automatically create Asks */
|
9418
|
+
/** Whether or not top-level messages in this channel should automatically create Asks. */
|
8518
9419
|
autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
|
8519
9420
|
/** 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
9421
|
autoCreateTemplateId?: Maybe<Scalars["String"]>;
|
8521
|
-
/** Whether or not we the Linear Asks bot has been added to this Slack channel */
|
9422
|
+
/** Whether or not we the Linear Asks bot has been added to this Slack channel. */
|
8522
9423
|
botAdded?: Maybe<Scalars["Boolean"]>;
|
8523
9424
|
/** The Slack channel ID. */
|
8524
9425
|
id: Scalars["String"];
|
8525
|
-
/** Whether or not the Slack channel is private */
|
9426
|
+
/** Whether or not the Slack channel is private. */
|
8526
9427
|
isPrivate?: Maybe<Scalars["Boolean"]>;
|
8527
|
-
/** Whether or not the Slack channel is shared with an external org */
|
9428
|
+
/** Whether or not the Slack channel is shared with an external org. */
|
8528
9429
|
isShared?: Maybe<Scalars["Boolean"]>;
|
8529
9430
|
/** The Slack channel name. */
|
8530
9431
|
name: Scalars["String"];
|
8531
|
-
/** Which teams are connected to the channel and settings for those teams */
|
9432
|
+
/** Which teams are connected to the channel and settings for those teams. */
|
8532
9433
|
teams: Array<SlackAsksTeamSettings>;
|
8533
9434
|
};
|
8534
9435
|
export declare type SlackChannelNameMappingInput = {
|
8535
|
-
/** Whether or not @-mentioning the bot should automatically create an Ask with the message */
|
9436
|
+
/** Whether or not @-mentioning the bot should automatically create an Ask with the message. */
|
8536
9437
|
autoCreateOnBotMention?: Maybe<Scalars["Boolean"]>;
|
8537
|
-
/** Whether or not using the :ticket: emoji in this channel should automatically create Asks */
|
9438
|
+
/** Whether or not using the :ticket: emoji in this channel should automatically create Asks. */
|
8538
9439
|
autoCreateOnEmoji?: Maybe<Scalars["Boolean"]>;
|
8539
|
-
/** Whether or not top-level messages in this channel should automatically create Asks */
|
9440
|
+
/** Whether or not top-level messages in this channel should automatically create Asks. */
|
8540
9441
|
autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
|
8541
9442
|
/** 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
9443
|
autoCreateTemplateId?: Maybe<Scalars["String"]>;
|
8543
|
-
/** Whether or not we the Linear Asks bot has been added to this Slack channel */
|
9444
|
+
/** Whether or not we the Linear Asks bot has been added to this Slack channel. */
|
8544
9445
|
botAdded?: Maybe<Scalars["Boolean"]>;
|
8545
9446
|
/** The Slack channel ID. */
|
8546
9447
|
id: Scalars["String"];
|
8547
|
-
/** Whether or not the Slack channel is private */
|
9448
|
+
/** Whether or not the Slack channel is private. */
|
8548
9449
|
isPrivate?: Maybe<Scalars["Boolean"]>;
|
8549
|
-
/** Whether or not the Slack channel is shared with an external org */
|
9450
|
+
/** Whether or not the Slack channel is shared with an external org. */
|
8550
9451
|
isShared?: Maybe<Scalars["Boolean"]>;
|
8551
9452
|
/** The Slack channel name. */
|
8552
9453
|
name: Scalars["String"];
|
8553
|
-
/** Which teams are connected to the channel and settings for those teams */
|
9454
|
+
/** Which teams are connected to the channel and settings for those teams. */
|
8554
9455
|
teams: Array<SlackAsksTeamSettingsInput>;
|
8555
9456
|
};
|
8556
9457
|
export declare enum SlackChannelType {
|
@@ -8702,8 +9603,6 @@ export declare type Team = Node & {
|
|
8702
9603
|
autoClosePeriod?: Maybe<Scalars["Float"]>;
|
8703
9604
|
/** The canceled workflow state which auto closed issues will be set to. Defaults to the first canceled state. */
|
8704
9605
|
autoCloseStateId?: Maybe<Scalars["String"]>;
|
8705
|
-
/** The automation states for the team. */
|
8706
|
-
automationStates: GitAutomationStateConnection;
|
8707
9606
|
/** The team's color. */
|
8708
9607
|
color?: Maybe<Scalars["String"]>;
|
8709
9608
|
/** The time at which the entity was created. */
|
@@ -8750,6 +9649,8 @@ export declare type Team = Node & {
|
|
8750
9649
|
description?: Maybe<Scalars["String"]>;
|
8751
9650
|
/** The workflow state into which issues are moved when a PR has been opened as draft. */
|
8752
9651
|
draftWorkflowState?: Maybe<WorkflowState>;
|
9652
|
+
/** The Git automation states for the team. */
|
9653
|
+
gitAutomationStates: GitAutomationStateConnection;
|
8753
9654
|
/** Whether to group recent issue history entries. */
|
8754
9655
|
groupIssueHistory: Scalars["Boolean"];
|
8755
9656
|
/** The icon of the team. */
|
@@ -8798,7 +9699,7 @@ export declare type Team = Node & {
|
|
8798
9699
|
private: Scalars["Boolean"];
|
8799
9700
|
/** Projects associated with the team. */
|
8800
9701
|
projects: ProjectConnection;
|
8801
|
-
/** Whether an issue needs to have a priority set before leaving triage */
|
9702
|
+
/** Whether an issue needs to have a priority set before leaving triage. */
|
8802
9703
|
requirePriorityToLeaveTriage: Scalars["Boolean"];
|
8803
9704
|
/** The workflow state into which issues are moved when a review has been requested for the PR. */
|
8804
9705
|
reviewWorkflowState?: Maybe<WorkflowState>;
|
@@ -8822,6 +9723,8 @@ export declare type Team = Node & {
|
|
8822
9723
|
triageEnabled: Scalars["Boolean"];
|
8823
9724
|
/** The workflow state into which issues are set when they are opened by non-team members or integrations if triage is enabled. */
|
8824
9725
|
triageIssueState?: Maybe<WorkflowState>;
|
9726
|
+
/** Team's triage responsibility. */
|
9727
|
+
triageResponsibility?: Maybe<TriageResponsibility>;
|
8825
9728
|
/** How many upcoming cycles to create. */
|
8826
9729
|
upcomingCycleCount: Scalars["Float"];
|
8827
9730
|
/**
|
@@ -8834,19 +9737,19 @@ export declare type Team = Node & {
|
|
8834
9737
|
webhooks: WebhookConnection;
|
8835
9738
|
};
|
8836
9739
|
/** An organizational unit that contains issues. */
|
8837
|
-
export declare type
|
9740
|
+
export declare type TeamCyclesArgs = {
|
8838
9741
|
after?: Maybe<Scalars["String"]>;
|
8839
9742
|
before?: Maybe<Scalars["String"]>;
|
9743
|
+
filter?: Maybe<CycleFilter>;
|
8840
9744
|
first?: Maybe<Scalars["Int"]>;
|
8841
9745
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
8842
9746
|
last?: Maybe<Scalars["Int"]>;
|
8843
9747
|
orderBy?: Maybe<PaginationOrderBy>;
|
8844
9748
|
};
|
8845
9749
|
/** An organizational unit that contains issues. */
|
8846
|
-
export declare type
|
9750
|
+
export declare type TeamGitAutomationStatesArgs = {
|
8847
9751
|
after?: Maybe<Scalars["String"]>;
|
8848
9752
|
before?: Maybe<Scalars["String"]>;
|
8849
|
-
filter?: Maybe<CycleFilter>;
|
8850
9753
|
first?: Maybe<Scalars["Int"]>;
|
8851
9754
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
8852
9755
|
last?: Maybe<Scalars["Int"]>;
|
@@ -9075,7 +9978,7 @@ export declare type TeamMembership = Node & {
|
|
9075
9978
|
createdAt: Scalars["DateTime"];
|
9076
9979
|
/** The unique identifier of the entity. */
|
9077
9980
|
id: Scalars["ID"];
|
9078
|
-
/** Whether the user is the owner of the team */
|
9981
|
+
/** Whether the user is the owner of the team. */
|
9079
9982
|
owner?: Maybe<Scalars["Boolean"]>;
|
9080
9983
|
/** The order of the item in the users team list. */
|
9081
9984
|
sortOrder: Scalars["Float"];
|
@@ -9132,7 +10035,7 @@ export declare type TeamMembershipUpdateInput = {
|
|
9132
10035
|
/** A team notification subscription. */
|
9133
10036
|
export declare type TeamNotificationSubscription = Entity & Node & NotificationSubscription & {
|
9134
10037
|
__typename?: "TeamNotificationSubscription";
|
9135
|
-
/** Whether the subscription is active or not */
|
10038
|
+
/** Whether the subscription is active or not. */
|
9136
10039
|
active: Scalars["Boolean"];
|
9137
10040
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
9138
10041
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -9176,20 +10079,35 @@ export declare type TeamPayload = {
|
|
9176
10079
|
/** The team that was created or updated. */
|
9177
10080
|
team?: Maybe<Team>;
|
9178
10081
|
};
|
9179
|
-
/**
|
10082
|
+
/** Mapping of Linear teams to GitHub repos. */
|
9180
10083
|
export declare type TeamRepoMapping = {
|
9181
10084
|
__typename?: "TeamRepoMapping";
|
10085
|
+
/** Whether the sync for this mapping is bidirectional. */
|
10086
|
+
bidirectional?: Maybe<Scalars["Boolean"]>;
|
10087
|
+
/** Whether this mapping is the default one for issue creation. */
|
10088
|
+
default?: Maybe<Scalars["Boolean"]>;
|
9182
10089
|
/** The GitHub repo id. */
|
9183
10090
|
gitHubRepoId: Scalars["Float"];
|
9184
10091
|
/** The Linear team id to map to the given project. */
|
9185
10092
|
linearTeamId: Scalars["String"];
|
9186
10093
|
};
|
9187
10094
|
export declare type TeamRepoMappingInput = {
|
10095
|
+
/** Whether the sync for this mapping is bidirectional. */
|
10096
|
+
bidirectional?: Maybe<Scalars["Boolean"]>;
|
10097
|
+
/** Whether this mapping is the default one for issue creation. */
|
10098
|
+
default?: Maybe<Scalars["Boolean"]>;
|
9188
10099
|
/** The GitHub repo id. */
|
9189
10100
|
gitHubRepoId: Scalars["Float"];
|
9190
10101
|
/** The Linear team id to map to the given project. */
|
9191
10102
|
linearTeamId: Scalars["String"];
|
9192
10103
|
};
|
10104
|
+
/** Issue team sorting options. */
|
10105
|
+
export declare type TeamSort = {
|
10106
|
+
/** Whether nulls should be sorted first or last */
|
10107
|
+
nulls?: Maybe<PaginationNulls>;
|
10108
|
+
/** The order for the individual sort */
|
10109
|
+
order?: Maybe<PaginationSortOrder>;
|
10110
|
+
};
|
9193
10111
|
export declare type TeamUpdateInput = {
|
9194
10112
|
/** Period after which closed and completed issues are automatically archived, in months. */
|
9195
10113
|
autoArchivePeriod?: Maybe<Scalars["Float"]>;
|
@@ -9203,7 +10121,9 @@ export declare type TeamUpdateInput = {
|
|
9203
10121
|
cycleCooldownTime?: Maybe<Scalars["Int"]>;
|
9204
10122
|
/** The duration of each cycle in weeks. */
|
9205
10123
|
cycleDuration?: Maybe<Scalars["Int"]>;
|
9206
|
-
/**
|
10124
|
+
/** The date to begin cycles on. */
|
10125
|
+
cycleEnabledStartDate?: Maybe<Scalars["DateTime"]>;
|
10126
|
+
/** [DEPRECATED] Whether the first cycle should start in the current or the next week. */
|
9207
10127
|
cycleEnabledStartWeek?: Maybe<Scalars["String"]>;
|
9208
10128
|
/** Auto assign completed issues to current active cycle setting. */
|
9209
10129
|
cycleIssueAutoAssignCompleted?: Maybe<Scalars["Boolean"]>;
|
@@ -9355,6 +10275,97 @@ export declare type TemplateUpdateInput = {
|
|
9355
10275
|
/** The template data as JSON encoded attributes of the type of entity, such as an issue. */
|
9356
10276
|
templateData?: Maybe<Scalars["JSON"]>;
|
9357
10277
|
};
|
10278
|
+
/** A time schedule. */
|
10279
|
+
export declare type TimeSchedule = Node & {
|
10280
|
+
__typename?: "TimeSchedule";
|
10281
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
10282
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
10283
|
+
/** The time at which the entity was created. */
|
10284
|
+
createdAt: Scalars["DateTime"];
|
10285
|
+
/** The schedule entries. */
|
10286
|
+
entries: Array<TimeScheduleEntry>;
|
10287
|
+
/** The identifier of the external schedule. */
|
10288
|
+
externalId?: Maybe<Scalars["String"]>;
|
10289
|
+
/** The URL to the external schedule. */
|
10290
|
+
externalUrl?: Maybe<Scalars["String"]>;
|
10291
|
+
/** The unique identifier of the entity. */
|
10292
|
+
id: Scalars["ID"];
|
10293
|
+
/** The identifier of the Linear integration populating the schedule. */
|
10294
|
+
integration?: Maybe<Integration>;
|
10295
|
+
/** The name of the schedule. */
|
10296
|
+
name: Scalars["String"];
|
10297
|
+
/** The organization of the schedule. */
|
10298
|
+
organization: Organization;
|
10299
|
+
/**
|
10300
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
10301
|
+
* 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
|
10302
|
+
* been updated after creation.
|
10303
|
+
*/
|
10304
|
+
updatedAt: Scalars["DateTime"];
|
10305
|
+
};
|
10306
|
+
export declare type TimeScheduleConnection = {
|
10307
|
+
__typename?: "TimeScheduleConnection";
|
10308
|
+
edges: Array<TimeScheduleEdge>;
|
10309
|
+
nodes: Array<TimeSchedule>;
|
10310
|
+
pageInfo: PageInfo;
|
10311
|
+
};
|
10312
|
+
export declare type TimeScheduleCreateInput = {
|
10313
|
+
/** The schedule entries. */
|
10314
|
+
entries: Array<TimeScheduleEntryInput>;
|
10315
|
+
/** The unique identifier of the external schedule. */
|
10316
|
+
externalId?: Maybe<Scalars["String"]>;
|
10317
|
+
/** The URL to the external schedule. */
|
10318
|
+
externalUrl?: Maybe<Scalars["String"]>;
|
10319
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
10320
|
+
id?: Maybe<Scalars["String"]>;
|
10321
|
+
/** The name of the schedule. */
|
10322
|
+
name: Scalars["String"];
|
10323
|
+
};
|
10324
|
+
export declare type TimeScheduleEdge = {
|
10325
|
+
__typename?: "TimeScheduleEdge";
|
10326
|
+
/** Used in `before` and `after` args */
|
10327
|
+
cursor: Scalars["String"];
|
10328
|
+
node: TimeSchedule;
|
10329
|
+
};
|
10330
|
+
export declare type TimeScheduleEntry = {
|
10331
|
+
__typename?: "TimeScheduleEntry";
|
10332
|
+
/** The end date of the schedule in ISO 8601 date-time format. */
|
10333
|
+
endsAt: Scalars["DateTime"];
|
10334
|
+
/** The start date of the schedule in ISO 8601 date-time format. */
|
10335
|
+
startsAt: Scalars["DateTime"];
|
10336
|
+
/** The email of the user on schedule. This is used in case the external user could not be mapped to a Linear user id. */
|
10337
|
+
userEmail?: Maybe<Scalars["String"]>;
|
10338
|
+
/** 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. */
|
10339
|
+
userId?: Maybe<Scalars["String"]>;
|
10340
|
+
};
|
10341
|
+
export declare type TimeScheduleEntryInput = {
|
10342
|
+
/** The end date of the schedule in ISO 8601 date-time format. */
|
10343
|
+
endsAt: Scalars["DateTime"];
|
10344
|
+
/** The start date of the schedule in ISO 8601 date-time format. */
|
10345
|
+
startsAt: Scalars["DateTime"];
|
10346
|
+
/** The email of the user on schedule. This is used in case the external user could not be mapped to a Linear user id. */
|
10347
|
+
userEmail?: Maybe<Scalars["String"]>;
|
10348
|
+
/** 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. */
|
10349
|
+
userId?: Maybe<Scalars["String"]>;
|
10350
|
+
};
|
10351
|
+
export declare type TimeSchedulePayload = {
|
10352
|
+
__typename?: "TimeSchedulePayload";
|
10353
|
+
/** The identifier of the last sync operation. */
|
10354
|
+
lastSyncId: Scalars["Float"];
|
10355
|
+
/** Whether the operation was successful. */
|
10356
|
+
success: Scalars["Boolean"];
|
10357
|
+
timeSchedule: TimeSchedule;
|
10358
|
+
};
|
10359
|
+
export declare type TimeScheduleUpdateInput = {
|
10360
|
+
/** The schedule entries. */
|
10361
|
+
entries?: Maybe<Array<TimeScheduleEntryInput>>;
|
10362
|
+
/** The unique identifier of the external schedule. */
|
10363
|
+
externalId?: Maybe<Scalars["String"]>;
|
10364
|
+
/** The URL to the external schedule. */
|
10365
|
+
externalUrl?: Maybe<Scalars["String"]>;
|
10366
|
+
/** The name of the schedule. */
|
10367
|
+
name?: Maybe<Scalars["String"]>;
|
10368
|
+
};
|
9358
10369
|
/** Comparator for timeless dates. */
|
9359
10370
|
export declare type TimelessDateComparator = {
|
9360
10371
|
/** Equals constraint. */
|
@@ -9374,6 +10385,13 @@ export declare type TimelessDateComparator = {
|
|
9374
10385
|
/** Not-in-array constraint. */
|
9375
10386
|
nin?: Maybe<Array<Scalars["TimelessDate"]>>;
|
9376
10387
|
};
|
10388
|
+
/** Issue title sorting options. */
|
10389
|
+
export declare type TitleSort = {
|
10390
|
+
/** Whether nulls should be sorted first or last */
|
10391
|
+
nulls?: Maybe<PaginationNulls>;
|
10392
|
+
/** The order for the individual sort */
|
10393
|
+
order?: Maybe<PaginationSortOrder>;
|
10394
|
+
};
|
9377
10395
|
export declare type TokenUserAccountAuthInput = {
|
9378
10396
|
/** The email which to login via the magic login code. */
|
9379
10397
|
email: Scalars["String"];
|
@@ -9395,16 +10413,16 @@ export declare type TriageResponsibility = Node & {
|
|
9395
10413
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
9396
10414
|
/** The time at which the entity was created. */
|
9397
10415
|
createdAt: Scalars["DateTime"];
|
10416
|
+
/** The user currently responsible for triage. */
|
10417
|
+
currentUser?: Maybe<User>;
|
9398
10418
|
/** The unique identifier of the entity. */
|
9399
10419
|
id: Scalars["ID"];
|
9400
|
-
/** The integration used for scheduling. */
|
9401
|
-
integration: Integration;
|
9402
10420
|
/** Set of users used for triage responsibility. */
|
9403
|
-
manualSelection?: Maybe<
|
9404
|
-
/** Schedule used for triage responsibility. */
|
9405
|
-
schedule?: Maybe<Scalars["JSONObject"]>;
|
10421
|
+
manualSelection?: Maybe<TriageResponsibilityManualSelection>;
|
9406
10422
|
/** The team to which the triage responsibility belongs to. */
|
9407
10423
|
team: Team;
|
10424
|
+
/** The time schedule used for scheduling. */
|
10425
|
+
timeSchedule?: Maybe<TimeSchedule>;
|
9408
10426
|
/**
|
9409
10427
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
9410
10428
|
* 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
|
@@ -9423,43 +10441,65 @@ export declare type TriageResponsibilityConnection = {
|
|
9423
10441
|
nodes: Array<TriageResponsibility>;
|
9424
10442
|
pageInfo: PageInfo;
|
9425
10443
|
};
|
10444
|
+
export declare type TriageResponsibilityCreateInput = {
|
10445
|
+
/** The action to take when an issue is added to triage. */
|
10446
|
+
action: Scalars["String"];
|
10447
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
10448
|
+
id?: Maybe<Scalars["String"]>;
|
10449
|
+
/** The manual selection of users responsible for triage. */
|
10450
|
+
manualSelection?: Maybe<TriageResponsibilityManualSelectionInput>;
|
10451
|
+
/** The identifier of the team associated with the triage responsibility. */
|
10452
|
+
teamId: Scalars["String"];
|
10453
|
+
/** The identifier of the time schedule used for scheduling triage responsibility */
|
10454
|
+
timeScheduleId?: Maybe<Scalars["String"]>;
|
10455
|
+
};
|
9426
10456
|
export declare type TriageResponsibilityEdge = {
|
9427
10457
|
__typename?: "TriageResponsibilityEdge";
|
9428
10458
|
/** Used in `before` and `after` args */
|
9429
10459
|
cursor: Scalars["String"];
|
9430
10460
|
node: TriageResponsibility;
|
9431
10461
|
};
|
9432
|
-
/** Manual triage responsibility using a set of users. */
|
9433
10462
|
export declare type TriageResponsibilityManualSelection = {
|
10463
|
+
__typename?: "TriageResponsibilityManualSelection";
|
9434
10464
|
/** [INTERNAL] The index of the current userId used for the assign action when having more than one user. */
|
9435
10465
|
assignmentIndex?: Maybe<Scalars["Int"]>;
|
9436
10466
|
/** The set of users responsible for triage. */
|
9437
10467
|
userIds: Array<Scalars["String"]>;
|
9438
10468
|
};
|
9439
|
-
/**
|
9440
|
-
export declare type
|
9441
|
-
/** The
|
9442
|
-
|
9443
|
-
/**
|
9444
|
-
|
9445
|
-
|
9446
|
-
|
9447
|
-
|
9448
|
-
/** The
|
9449
|
-
|
9450
|
-
/**
|
9451
|
-
|
9452
|
-
|
9453
|
-
|
9454
|
-
|
9455
|
-
|
9456
|
-
|
9457
|
-
|
10469
|
+
/** Manual triage responsibility using a set of users. */
|
10470
|
+
export declare type TriageResponsibilityManualSelectionInput = {
|
10471
|
+
/** [INTERNAL] The index of the current userId used for the assign action when having more than one user. */
|
10472
|
+
assignmentIndex?: Maybe<Scalars["Int"]>;
|
10473
|
+
/** The set of users responsible for triage. */
|
10474
|
+
userIds: Array<Scalars["String"]>;
|
10475
|
+
};
|
10476
|
+
export declare type TriageResponsibilityPayload = {
|
10477
|
+
__typename?: "TriageResponsibilityPayload";
|
10478
|
+
/** The identifier of the last sync operation. */
|
10479
|
+
lastSyncId: Scalars["Float"];
|
10480
|
+
/** Whether the operation was successful. */
|
10481
|
+
success: Scalars["Boolean"];
|
10482
|
+
triageResponsibility: TriageResponsibility;
|
10483
|
+
};
|
10484
|
+
export declare type TriageResponsibilityUpdateInput = {
|
10485
|
+
/** The action to take when an issue is added to triage. */
|
10486
|
+
action?: Maybe<Scalars["String"]>;
|
10487
|
+
/** The manual selection of users responsible for triage. */
|
10488
|
+
manualSelection?: Maybe<TriageResponsibilityManualSelectionInput>;
|
10489
|
+
/** The identifier of the time schedule used for scheduling triage responsibility. */
|
10490
|
+
timeScheduleId?: Maybe<Scalars["String"]>;
|
10491
|
+
};
|
10492
|
+
/** Issue update date sorting options. */
|
10493
|
+
export declare type UpdatedAtSort = {
|
10494
|
+
/** Whether nulls should be sorted first or last */
|
10495
|
+
nulls?: Maybe<PaginationNulls>;
|
10496
|
+
/** The order for the individual sort */
|
10497
|
+
order?: Maybe<PaginationSortOrder>;
|
9458
10498
|
};
|
9459
10499
|
/** Object representing Google Cloud upload policy, plus additional data. */
|
9460
10500
|
export declare type UploadFile = {
|
9461
10501
|
__typename?: "UploadFile";
|
9462
|
-
/** The asset URL for the uploaded file. (assigned automatically) */
|
10502
|
+
/** The asset URL for the uploaded file. (assigned automatically). */
|
9463
10503
|
assetUrl: Scalars["String"];
|
9464
10504
|
/** The content type. */
|
9465
10505
|
contentType: Scalars["String"];
|
@@ -9469,7 +10509,7 @@ export declare type UploadFile = {
|
|
9469
10509
|
metaData?: Maybe<Scalars["JSONObject"]>;
|
9470
10510
|
/** The size of the uploaded file. */
|
9471
10511
|
size: Scalars["Int"];
|
9472
|
-
/** The signed URL the for the uploaded file. (assigned automatically) */
|
10512
|
+
/** The signed URL the for the uploaded file. (assigned automatically). */
|
9473
10513
|
uploadUrl: Scalars["String"];
|
9474
10514
|
};
|
9475
10515
|
export declare type UploadFileHeader = {
|
@@ -9596,6 +10636,8 @@ export declare type UserAccount = {
|
|
9596
10636
|
__typename?: "UserAccount";
|
9597
10637
|
/** The time at which the model was archived. */
|
9598
10638
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
10639
|
+
/** Whether not to send email auth links in the email auth emails. */
|
10640
|
+
authTokenLinkDisabled: Scalars["Boolean"];
|
9599
10641
|
/** The time at which the model was created. */
|
9600
10642
|
createdAt: Scalars["DateTime"];
|
9601
10643
|
/** The user's email address. */
|
@@ -9639,7 +10681,7 @@ export declare type UserAdminPayload = {
|
|
9639
10681
|
/** Public information of the OAuth application, plus whether the application has been authorized for the given scopes. */
|
9640
10682
|
export declare type UserAuthorizedApplication = {
|
9641
10683
|
__typename?: "UserAuthorizedApplication";
|
9642
|
-
/** Error associated with the application needing to be requested for approval in the workspace */
|
10684
|
+
/** Error associated with the application needing to be requested for approval in the workspace. */
|
9643
10685
|
approvalErrorCode?: Maybe<Scalars["String"]>;
|
9644
10686
|
/** OAuth application's client ID. */
|
9645
10687
|
clientId: Scalars["String"];
|
@@ -9781,7 +10823,7 @@ export declare enum UserFlagType {
|
|
9781
10823
|
TryTriageDismissed = "tryTriageDismissed",
|
9782
10824
|
UpdatedSlackThreadSyncIntegration = "updatedSlackThreadSyncIntegration"
|
9783
10825
|
}
|
9784
|
-
/** Operations that can be applied to UserFlagType */
|
10826
|
+
/** Operations that can be applied to UserFlagType. */
|
9785
10827
|
export declare enum UserFlagUpdateOperation {
|
9786
10828
|
Clear = "clear",
|
9787
10829
|
Decr = "decr",
|
@@ -9791,7 +10833,7 @@ export declare enum UserFlagUpdateOperation {
|
|
9791
10833
|
/** A user notification subscription. */
|
9792
10834
|
export declare type UserNotificationSubscription = Entity & Node & NotificationSubscription & {
|
9793
10835
|
__typename?: "UserNotificationSubscription";
|
9794
|
-
/** Whether the subscription is active or not */
|
10836
|
+
/** Whether the subscription is active or not. */
|
9795
10837
|
active: Scalars["Boolean"];
|
9796
10838
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
9797
10839
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -9835,7 +10877,7 @@ export declare type UserPayload = {
|
|
9835
10877
|
/** The user that was created or updated. */
|
9836
10878
|
user?: Maybe<User>;
|
9837
10879
|
};
|
9838
|
-
/** The different permission roles available to users on an organization */
|
10880
|
+
/** The different permission roles available to users on an organization. */
|
9839
10881
|
export declare enum UserRoleType {
|
9840
10882
|
Admin = "admin",
|
9841
10883
|
Guest = "guest",
|
@@ -9955,6 +10997,8 @@ export declare type ViewPreferencesCreateInput = {
|
|
9955
10997
|
cycleId?: Maybe<Scalars["String"]>;
|
9956
10998
|
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
9957
10999
|
id?: Maybe<Scalars["String"]>;
|
11000
|
+
/** [Internal] The initiative these view preferences are associated with. */
|
11001
|
+
initiativeId?: Maybe<Scalars["String"]>;
|
9958
11002
|
/** The default parameters for the insight on that view. */
|
9959
11003
|
insights?: Maybe<Scalars["JSONObject"]>;
|
9960
11004
|
/** The label these view preferences are associated with. */
|
@@ -10007,6 +11051,8 @@ export declare enum ViewType {
|
|
10007
11051
|
CustomViews = "customViews",
|
10008
11052
|
Cycle = "cycle",
|
10009
11053
|
Inbox = "inbox",
|
11054
|
+
Initiative = "initiative",
|
11055
|
+
Initiatives = "initiatives",
|
10010
11056
|
Label = "label",
|
10011
11057
|
MyIssues = "myIssues",
|
10012
11058
|
MyIssuesActivity = "myIssuesActivity",
|
@@ -10025,12 +11071,13 @@ export declare enum ViewType {
|
|
10025
11071
|
RoadmapClosed = "roadmapClosed",
|
10026
11072
|
Roadmaps = "roadmaps",
|
10027
11073
|
Search = "search",
|
11074
|
+
SplitSearch = "splitSearch",
|
10028
11075
|
Teams = "teams",
|
10029
11076
|
Triage = "triage",
|
10030
11077
|
UserProfile = "userProfile",
|
10031
11078
|
UserProfileCreatedByUser = "userProfileCreatedByUser"
|
10032
11079
|
}
|
10033
|
-
/** A webhook used to send HTTP notifications over data updates */
|
11080
|
+
/** A webhook used to send HTTP notifications over data updates. */
|
10034
11081
|
export declare type Webhook = Node & {
|
10035
11082
|
__typename?: "Webhook";
|
10036
11083
|
/** Whether the Webhook is enabled for all public teams, including teams created after the webhook was created. */
|
@@ -10045,7 +11092,7 @@ export declare type Webhook = Node & {
|
|
10045
11092
|
enabled: Scalars["Boolean"];
|
10046
11093
|
/** The unique identifier of the entity. */
|
10047
11094
|
id: Scalars["ID"];
|
10048
|
-
/** Webhook label */
|
11095
|
+
/** Webhook label. */
|
10049
11096
|
label?: Maybe<Scalars["String"]>;
|
10050
11097
|
/** The resource types this webhook is subscribed to. */
|
10051
11098
|
resourceTypes: Array<Scalars["String"]>;
|
@@ -10059,7 +11106,7 @@ export declare type Webhook = Node & {
|
|
10059
11106
|
* been updated after creation.
|
10060
11107
|
*/
|
10061
11108
|
updatedAt: Scalars["DateTime"];
|
10062
|
-
/** Webhook URL */
|
11109
|
+
/** Webhook URL. */
|
10063
11110
|
url?: Maybe<Scalars["String"]>;
|
10064
11111
|
};
|
10065
11112
|
export declare type WebhookConnection = {
|
@@ -10338,6 +11385,13 @@ export declare type WorkflowStatePayload = {
|
|
10338
11385
|
/** The state that was created or updated. */
|
10339
11386
|
workflowState: WorkflowState;
|
10340
11387
|
};
|
11388
|
+
/** Issue workflow state sorting options. */
|
11389
|
+
export declare type WorkflowStateSort = {
|
11390
|
+
/** Whether nulls should be sorted first or last */
|
11391
|
+
nulls?: Maybe<PaginationNulls>;
|
11392
|
+
/** The order for the individual sort */
|
11393
|
+
order?: Maybe<PaginationSortOrder>;
|
11394
|
+
};
|
10341
11395
|
export declare type WorkflowStateUpdateInput = {
|
10342
11396
|
/** The color of the state. */
|
10343
11397
|
color?: Maybe<Scalars["String"]>;
|
@@ -10373,13 +11427,13 @@ export declare type WorkspaceAuthorizedApplication = {
|
|
10373
11427
|
clientId: Scalars["String"];
|
10374
11428
|
/** Image of the application. */
|
10375
11429
|
imageUrl?: Maybe<Scalars["String"]>;
|
10376
|
-
/** UserIds and membership dates of everyone who has authorized the application with the set of scopes */
|
11430
|
+
/** UserIds and membership dates of everyone who has authorized the application with the set of scopes. */
|
10377
11431
|
memberships: Array<AuthMembership>;
|
10378
11432
|
/** Application name. */
|
10379
11433
|
name: Scalars["String"];
|
10380
11434
|
/** Scopes that are authorized for this application for a given user. */
|
10381
11435
|
scope: Array<Scalars["String"]>;
|
10382
|
-
/** Total number of members that authorized the application */
|
11436
|
+
/** Total number of members that authorized the application. */
|
10383
11437
|
totalMembers: Scalars["Float"];
|
10384
11438
|
/** Whether or not webhooks are enabled for the application. */
|
10385
11439
|
webhooksEnabled: Scalars["Boolean"];
|
@@ -10422,6 +11476,13 @@ export declare type ZendeskSettingsInput = {
|
|
10422
11476
|
/** The URL of the connected Zendesk organization. */
|
10423
11477
|
url: Scalars["String"];
|
10424
11478
|
};
|
11479
|
+
export declare type GitAutomationTargetBranchFragment = {
|
11480
|
+
__typename: "GitAutomationTargetBranch";
|
11481
|
+
} & Pick<GitAutomationTargetBranch, "updatedAt" | "branchPattern" | "archivedAt" | "createdAt" | "id" | "isRegex"> & {
|
11482
|
+
team: {
|
11483
|
+
__typename?: "Team";
|
11484
|
+
} & Pick<Team, "id">;
|
11485
|
+
};
|
10425
11486
|
declare type Entity_CustomViewNotificationSubscription_Fragment = {
|
10426
11487
|
__typename: "CustomViewNotificationSubscription";
|
10427
11488
|
} & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
|
@@ -10455,7 +11516,7 @@ export declare type ActorBotFragment = {
|
|
10455
11516
|
} & Pick<ActorBot, "avatarUrl" | "name" | "userDisplayName" | "subType" | "type" | "id">;
|
10456
11517
|
export declare type CommentFragment = {
|
10457
11518
|
__typename: "Comment";
|
10458
|
-
} & Pick<Comment, "url" | "reactionData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "resolvedAt" | "editedAt" | "id"> & {
|
11519
|
+
} & Pick<Comment, "url" | "reactionData" | "body" | "updatedAt" | "quotedText" | "archivedAt" | "createdAt" | "resolvedAt" | "editedAt" | "id"> & {
|
10459
11520
|
botActor?: Maybe<{
|
10460
11521
|
__typename?: "ActorBot";
|
10461
11522
|
} & ActorBotFragment>;
|
@@ -10465,6 +11526,9 @@ export declare type CommentFragment = {
|
|
10465
11526
|
documentContent?: Maybe<{
|
10466
11527
|
__typename?: "DocumentContent";
|
10467
11528
|
} & DocumentContentFragment>;
|
11529
|
+
externalUser?: Maybe<{
|
11530
|
+
__typename?: "ExternalUser";
|
11531
|
+
} & Pick<ExternalUser, "id">>;
|
10468
11532
|
issue?: Maybe<{
|
10469
11533
|
__typename?: "Issue";
|
10470
11534
|
} & Pick<Issue, "id">>;
|
@@ -10522,13 +11586,16 @@ export declare type CustomViewNotificationSubscriptionFragment = {
|
|
10522
11586
|
};
|
10523
11587
|
export declare type CustomViewFragment = {
|
10524
11588
|
__typename: "CustomView";
|
10525
|
-
} & Pick<CustomView, "color" | "description" | "filterData" | "filters" | "icon" | "updatedAt" | "modelName" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
|
11589
|
+
} & Pick<CustomView, "color" | "description" | "filterData" | "projectFilterData" | "filters" | "icon" | "updatedAt" | "modelName" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
|
10526
11590
|
team?: Maybe<{
|
10527
11591
|
__typename?: "Team";
|
10528
11592
|
} & Pick<Team, "id">>;
|
10529
11593
|
creator: {
|
10530
11594
|
__typename?: "User";
|
10531
11595
|
} & Pick<User, "id">;
|
11596
|
+
updatedBy: {
|
11597
|
+
__typename?: "User";
|
11598
|
+
} & Pick<User, "id">;
|
10532
11599
|
owner: {
|
10533
11600
|
__typename?: "User";
|
10534
11601
|
} & Pick<User, "id">;
|
@@ -10583,7 +11650,7 @@ export declare type DocumentContentHistoryFragment = {
|
|
10583
11650
|
};
|
10584
11651
|
export declare type DocumentFragment = {
|
10585
11652
|
__typename: "Document";
|
10586
|
-
} & Pick<Document, "color" | "title" | "slugId" | "
|
11653
|
+
} & Pick<Document, "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
10587
11654
|
lastAppliedTemplate?: Maybe<{
|
10588
11655
|
__typename?: "Template";
|
10589
11656
|
} & Pick<Template, "id">>;
|
@@ -10611,6 +11678,9 @@ export declare type CycleArchivePayloadFragment = {
|
|
10611
11678
|
__typename?: "Cycle";
|
10612
11679
|
} & Pick<Cycle, "id">>;
|
10613
11680
|
};
|
11681
|
+
export declare type InitiativeArchivePayloadFragment = {
|
11682
|
+
__typename: "InitiativeArchivePayload";
|
11683
|
+
} & Pick<InitiativeArchivePayload, "lastSyncId" | "success">;
|
10614
11684
|
export declare type IssueArchivePayloadFragment = {
|
10615
11685
|
__typename: "IssueArchivePayload";
|
10616
11686
|
} & Pick<IssueArchivePayload, "lastSyncId" | "success"> & {
|
@@ -10666,6 +11736,9 @@ declare type ArchivePayload_CycleArchivePayload_Fragment = {
|
|
10666
11736
|
declare type ArchivePayload_DeletePayload_Fragment = {
|
10667
11737
|
__typename: "DeletePayload";
|
10668
11738
|
} & Pick<DeletePayload, "lastSyncId" | "success"> & DeletePayloadFragment;
|
11739
|
+
declare type ArchivePayload_InitiativeArchivePayload_Fragment = {
|
11740
|
+
__typename: "InitiativeArchivePayload";
|
11741
|
+
} & Pick<InitiativeArchivePayload, "lastSyncId" | "success"> & InitiativeArchivePayloadFragment;
|
10669
11742
|
declare type ArchivePayload_IssueArchivePayload_Fragment = {
|
10670
11743
|
__typename: "IssueArchivePayload";
|
10671
11744
|
} & Pick<IssueArchivePayload, "lastSyncId" | "success"> & IssueArchivePayloadFragment;
|
@@ -10684,7 +11757,7 @@ declare type ArchivePayload_TeamArchivePayload_Fragment = {
|
|
10684
11757
|
declare type ArchivePayload_WorkflowStateArchivePayload_Fragment = {
|
10685
11758
|
__typename: "WorkflowStateArchivePayload";
|
10686
11759
|
} & 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;
|
11760
|
+
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
11761
|
export declare type DeletePayloadFragment = {
|
10689
11762
|
__typename: "DeletePayload";
|
10690
11763
|
} & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
|
@@ -10726,6 +11799,9 @@ declare type Notification_IssueNotification_Fragment = {
|
|
10726
11799
|
botActor?: Maybe<{
|
10727
11800
|
__typename?: "ActorBot";
|
10728
11801
|
} & ActorBotFragment>;
|
11802
|
+
externalUserActor?: Maybe<{
|
11803
|
+
__typename?: "ExternalUser";
|
11804
|
+
} & Pick<ExternalUser, "id">>;
|
10729
11805
|
actor?: Maybe<{
|
10730
11806
|
__typename?: "User";
|
10731
11807
|
} & Pick<User, "id">>;
|
@@ -10739,6 +11815,9 @@ declare type Notification_OauthClientApprovalNotification_Fragment = {
|
|
10739
11815
|
botActor?: Maybe<{
|
10740
11816
|
__typename?: "ActorBot";
|
10741
11817
|
} & ActorBotFragment>;
|
11818
|
+
externalUserActor?: Maybe<{
|
11819
|
+
__typename?: "ExternalUser";
|
11820
|
+
} & Pick<ExternalUser, "id">>;
|
10742
11821
|
actor?: Maybe<{
|
10743
11822
|
__typename?: "User";
|
10744
11823
|
} & Pick<User, "id">>;
|
@@ -10752,6 +11831,9 @@ declare type Notification_ProjectNotification_Fragment = {
|
|
10752
11831
|
botActor?: Maybe<{
|
10753
11832
|
__typename?: "ActorBot";
|
10754
11833
|
} & ActorBotFragment>;
|
11834
|
+
externalUserActor?: Maybe<{
|
11835
|
+
__typename?: "ExternalUser";
|
11836
|
+
} & Pick<ExternalUser, "id">>;
|
10755
11837
|
actor?: Maybe<{
|
10756
11838
|
__typename?: "User";
|
10757
11839
|
} & Pick<User, "id">>;
|
@@ -10791,6 +11873,9 @@ export declare type ProjectNotificationFragment = {
|
|
10791
11873
|
botActor?: Maybe<{
|
10792
11874
|
__typename?: "ActorBot";
|
10793
11875
|
} & ActorBotFragment>;
|
11876
|
+
externalUserActor?: Maybe<{
|
11877
|
+
__typename?: "ExternalUser";
|
11878
|
+
} & Pick<ExternalUser, "id">>;
|
10794
11879
|
project: {
|
10795
11880
|
__typename?: "Project";
|
10796
11881
|
} & Pick<Project, "id">;
|
@@ -10967,13 +12052,19 @@ export declare type TeamNotificationSubscriptionFragment = {
|
|
10967
12052
|
};
|
10968
12053
|
export declare type TriageResponsibilityFragment = {
|
10969
12054
|
__typename: "TriageResponsibility";
|
10970
|
-
} & Pick<TriageResponsibility, "
|
10971
|
-
|
10972
|
-
__typename?: "
|
10973
|
-
} &
|
12055
|
+
} & Pick<TriageResponsibility, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
|
12056
|
+
manualSelection?: Maybe<{
|
12057
|
+
__typename?: "TriageResponsibilityManualSelection";
|
12058
|
+
} & TriageResponsibilityManualSelectionFragment>;
|
10974
12059
|
team: {
|
10975
12060
|
__typename?: "Team";
|
10976
12061
|
} & Pick<Team, "id">;
|
12062
|
+
timeSchedule?: Maybe<{
|
12063
|
+
__typename?: "TimeSchedule";
|
12064
|
+
} & Pick<TimeSchedule, "id">>;
|
12065
|
+
currentUser?: Maybe<{
|
12066
|
+
__typename?: "User";
|
12067
|
+
} & Pick<User, "id">>;
|
10977
12068
|
};
|
10978
12069
|
export declare type TemplateFragment = {
|
10979
12070
|
__typename: "Template";
|
@@ -10988,19 +12079,32 @@ export declare type TemplateFragment = {
|
|
10988
12079
|
__typename?: "User";
|
10989
12080
|
} & Pick<User, "id">>;
|
10990
12081
|
};
|
12082
|
+
export declare type TimeScheduleFragment = {
|
12083
|
+
__typename: "TimeSchedule";
|
12084
|
+
} & Pick<TimeSchedule, "externalUrl" | "externalId" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id"> & {
|
12085
|
+
integration?: Maybe<{
|
12086
|
+
__typename?: "Integration";
|
12087
|
+
} & Pick<Integration, "id">>;
|
12088
|
+
entries: Array<{
|
12089
|
+
__typename?: "TimeScheduleEntry";
|
12090
|
+
} & TimeScheduleEntryFragment>;
|
12091
|
+
};
|
10991
12092
|
export declare type GitAutomationStateFragment = {
|
10992
12093
|
__typename: "GitAutomationState";
|
10993
|
-
} & Pick<GitAutomationState, "updatedAt" | "
|
12094
|
+
} & Pick<GitAutomationState, "updatedAt" | "archivedAt" | "createdAt" | "id" | "branchPattern"> & {
|
10994
12095
|
state?: Maybe<{
|
10995
12096
|
__typename?: "WorkflowState";
|
10996
12097
|
} & Pick<WorkflowState, "id">>;
|
12098
|
+
targetBranch?: Maybe<{
|
12099
|
+
__typename?: "GitAutomationTargetBranch";
|
12100
|
+
} & GitAutomationTargetBranchFragment>;
|
10997
12101
|
team: {
|
10998
12102
|
__typename?: "Team";
|
10999
12103
|
} & Pick<Team, "id">;
|
11000
12104
|
};
|
11001
12105
|
export declare type ProjectUpdateFragment = {
|
11002
12106
|
__typename: "ProjectUpdate";
|
11003
|
-
} & Pick<ProjectUpdate, "url" | "diffMarkdown" | "diff" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body"> & {
|
12107
|
+
} & Pick<ProjectUpdate, "url" | "diffMarkdown" | "diff" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body" | "isDiffHidden"> & {
|
11004
12108
|
project: {
|
11005
12109
|
__typename?: "Project";
|
11006
12110
|
} & Pick<Project, "id">;
|
@@ -11010,7 +12114,7 @@ export declare type ProjectUpdateFragment = {
|
|
11010
12114
|
};
|
11011
12115
|
export declare type UserAccountFragment = {
|
11012
12116
|
__typename: "UserAccount";
|
11013
|
-
} & Pick<UserAccount, "service" | "id" | "archivedAt" | "createdAt" | "updatedAt" | "email" | "name">;
|
12117
|
+
} & Pick<UserAccount, "service" | "id" | "archivedAt" | "createdAt" | "updatedAt" | "email" | "name" | "authTokenLinkDisabled">;
|
11014
12118
|
export declare type UserNotificationSubscriptionFragment = {
|
11015
12119
|
__typename: "UserNotificationSubscription";
|
11016
12120
|
} & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
|
@@ -11038,7 +12142,7 @@ export declare type UserNotificationSubscriptionFragment = {
|
|
11038
12142
|
};
|
11039
12143
|
export declare type AuthUserFragment = {
|
11040
12144
|
__typename: "AuthUser";
|
11041
|
-
} & Pick<AuthUser, "avatarUrl" | "displayName" | "email" | "name" | "active" | "id"> & {
|
12145
|
+
} & Pick<AuthUser, "avatarUrl" | "displayName" | "email" | "name" | "userAccountId" | "active" | "id"> & {
|
11042
12146
|
organization: {
|
11043
12147
|
__typename?: "AuthOrganization";
|
11044
12148
|
} & AuthOrganizationFragment;
|
@@ -11068,10 +12172,16 @@ export declare type EmailIntakeAddressFragment = {
|
|
11068
12172
|
team: {
|
11069
12173
|
__typename?: "Team";
|
11070
12174
|
} & Pick<Team, "id">;
|
12175
|
+
template?: Maybe<{
|
12176
|
+
__typename?: "Template";
|
12177
|
+
} & Pick<Template, "id">>;
|
11071
12178
|
creator?: Maybe<{
|
11072
12179
|
__typename?: "User";
|
11073
12180
|
} & Pick<User, "id">>;
|
11074
12181
|
};
|
12182
|
+
export declare type ExternalUserFragment = {
|
12183
|
+
__typename: "ExternalUser";
|
12184
|
+
} & Pick<ExternalUser, "avatarUrl" | "displayName" | "email" | "name" | "updatedAt" | "lastSeen" | "archivedAt" | "createdAt" | "id">;
|
11075
12185
|
export declare type ProjectLinkFragment = {
|
11076
12186
|
__typename: "ProjectLink";
|
11077
12187
|
} & Pick<ProjectLink, "updatedAt" | "url" | "label" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
@@ -11095,6 +12205,9 @@ export declare type IntegrationFragment = {
|
|
11095
12205
|
__typename?: "User";
|
11096
12206
|
} & Pick<User, "id">;
|
11097
12207
|
};
|
12208
|
+
export declare type AuthOrganizationInviteFragment = {
|
12209
|
+
__typename: "AuthOrganizationInvite";
|
12210
|
+
} & Pick<AuthOrganizationInvite, "expiresAt" | "id">;
|
11098
12211
|
export declare type OrganizationInviteFragment = {
|
11099
12212
|
__typename: "OrganizationInvite";
|
11100
12213
|
} & Pick<OrganizationInvite, "metadata" | "external" | "email" | "updatedAt" | "archivedAt" | "createdAt" | "acceptedAt" | "expiresAt" | "id"> & {
|
@@ -11114,6 +12227,9 @@ export declare type IssueNotificationFragment = {
|
|
11114
12227
|
comment?: Maybe<{
|
11115
12228
|
__typename?: "Comment";
|
11116
12229
|
} & Pick<Comment, "id">>;
|
12230
|
+
externalUserActor?: Maybe<{
|
12231
|
+
__typename?: "ExternalUser";
|
12232
|
+
} & Pick<ExternalUser, "id">>;
|
11117
12233
|
issue: {
|
11118
12234
|
__typename?: "Issue";
|
11119
12235
|
} & Pick<Issue, "id">;
|
@@ -11149,6 +12265,9 @@ export declare type IssueFragment = {
|
|
11149
12265
|
cycle?: Maybe<{
|
11150
12266
|
__typename?: "Cycle";
|
11151
12267
|
} & Pick<Cycle, "id">>;
|
12268
|
+
externalUserCreator?: Maybe<{
|
12269
|
+
__typename?: "ExternalUser";
|
12270
|
+
} & Pick<ExternalUser, "id">>;
|
11152
12271
|
lastAppliedTemplate?: Maybe<{
|
11153
12272
|
__typename?: "Template";
|
11154
12273
|
} & Pick<Template, "id">>;
|
@@ -11189,6 +12308,9 @@ export declare type OauthClientApprovalNotificationFragment = {
|
|
11189
12308
|
botActor?: Maybe<{
|
11190
12309
|
__typename?: "ActorBot";
|
11191
12310
|
} & ActorBotFragment>;
|
12311
|
+
externalUserActor?: Maybe<{
|
12312
|
+
__typename?: "ExternalUser";
|
12313
|
+
} & Pick<ExternalUser, "id">>;
|
11192
12314
|
actor?: Maybe<{
|
11193
12315
|
__typename?: "User";
|
11194
12316
|
} & Pick<User, "id">>;
|
@@ -11205,7 +12327,7 @@ export declare type OrganizationFragment = {
|
|
11205
12327
|
};
|
11206
12328
|
export declare type AuthOrganizationFragment = {
|
11207
12329
|
__typename: "AuthOrganization";
|
11208
|
-
} & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
|
12330
|
+
} & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
|
11209
12331
|
export declare type TeamFragment = {
|
11210
12332
|
__typename: "Team";
|
11211
12333
|
} & 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"> & {
|
@@ -11215,6 +12337,9 @@ export declare type TeamFragment = {
|
|
11215
12337
|
activeCycle?: Maybe<{
|
11216
12338
|
__typename?: "Cycle";
|
11217
12339
|
} & Pick<Cycle, "id">>;
|
12340
|
+
triageResponsibility?: Maybe<{
|
12341
|
+
__typename?: "TriageResponsibility";
|
12342
|
+
} & Pick<TriageResponsibility, "id">>;
|
11218
12343
|
defaultTemplateForMembers?: Maybe<{
|
11219
12344
|
__typename?: "Template";
|
11220
12345
|
} & Pick<Template, "id">>;
|
@@ -11316,6 +12441,9 @@ export declare type AttachmentFragment = {
|
|
11316
12441
|
issue: {
|
11317
12442
|
__typename?: "Issue";
|
11318
12443
|
} & Pick<Issue, "id">;
|
12444
|
+
externalUserCreator?: Maybe<{
|
12445
|
+
__typename?: "ExternalUser";
|
12446
|
+
} & Pick<ExternalUser, "id">>;
|
11319
12447
|
};
|
11320
12448
|
export declare type IssueRelationHistoryPayloadFragment = {
|
11321
12449
|
__typename: "IssueRelationHistoryPayload";
|
@@ -11366,6 +12494,9 @@ export declare type IssueLabelFragment = {
|
|
11366
12494
|
__typename?: "User";
|
11367
12495
|
} & Pick<User, "id">>;
|
11368
12496
|
};
|
12497
|
+
export declare type TeamRepoMappingFragment = {
|
12498
|
+
__typename: "TeamRepoMapping";
|
12499
|
+
} & Pick<TeamRepoMapping, "gitHubRepoId" | "linearTeamId" | "bidirectional" | "default">;
|
11369
12500
|
export declare type JiraProjectDataFragment = {
|
11370
12501
|
__typename: "JiraProjectData";
|
11371
12502
|
} & Pick<JiraProjectData, "id" | "key" | "name">;
|
@@ -11578,7 +12709,7 @@ export declare type ApplicationFragment = {
|
|
11578
12709
|
} & Pick<Application, "name" | "imageUrl" | "description" | "developer" | "id" | "clientId" | "developerUrl">;
|
11579
12710
|
export declare type GithubOrgFragment = {
|
11580
12711
|
__typename: "GithubOrg";
|
11581
|
-
} & Pick<GithubOrg, "id" | "login" | "
|
12712
|
+
} & Pick<GithubOrg, "id" | "login" | "isPersonal"> & {
|
11582
12713
|
repositories: Array<{
|
11583
12714
|
__typename?: "GithubRepo";
|
11584
12715
|
} & GithubRepoFragment>;
|
@@ -11670,9 +12801,6 @@ export declare type IntegrationSettingsFragment = {
|
|
11670
12801
|
__typename?: "ZendeskSettings";
|
11671
12802
|
} & ZendeskSettingsFragment>;
|
11672
12803
|
};
|
11673
|
-
export declare type SamlConfigurationPayloadFragment = {
|
11674
|
-
__typename: "SamlConfigurationPayload";
|
11675
|
-
} & Pick<SamlConfigurationPayload, "ssoBinding" | "ssoEndpoint" | "ssoSignAlgo" | "issuerEntityId">;
|
11676
12804
|
export declare type PaidSubscriptionFragment = {
|
11677
12805
|
__typename: "PaidSubscription";
|
11678
12806
|
} & Pick<PaidSubscription, "collectionMethod" | "canceledAt" | "nextBillingAt" | "updatedAt" | "seatsMaximum" | "seatsMinimum" | "seats" | "pendingChangeType" | "type" | "archivedAt" | "createdAt" | "id"> & {
|
@@ -11690,9 +12818,6 @@ export declare type UserSettingsFragment = {
|
|
11690
12818
|
export declare type JiraLinearMappingFragment = {
|
11691
12819
|
__typename: "JiraLinearMapping";
|
11692
12820
|
} & Pick<JiraLinearMapping, "jiraProjectId" | "linearTeamId" | "bidirectional" | "default">;
|
11693
|
-
export declare type TeamRepoMappingFragment = {
|
11694
|
-
__typename: "TeamRepoMapping";
|
11695
|
-
} & Pick<TeamRepoMapping, "gitHubRepoId" | "linearTeamId">;
|
11696
12821
|
export declare type SlackAsksTeamSettingsFragment = {
|
11697
12822
|
__typename: "SlackAsksTeamSettings";
|
11698
12823
|
} & Pick<SlackAsksTeamSettings, "id" | "hasDefaultAsk">;
|
@@ -11822,22 +12947,6 @@ export declare type AuthApiKeyPayloadFragment = {
|
|
11822
12947
|
__typename?: "AuthApiKey";
|
11823
12948
|
} & AuthApiKeyFragment;
|
11824
12949
|
};
|
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
12950
|
export declare type AuthIntegrationFragment = {
|
11842
12951
|
__typename: "AuthIntegration";
|
11843
12952
|
} & Pick<AuthIntegration, "id">;
|
@@ -11856,19 +12965,19 @@ export declare type AuthOauthClientWithTokensFragment = {
|
|
11856
12965
|
};
|
11857
12966
|
export declare type AuthOrganizationDomainFragment = {
|
11858
12967
|
__typename: "AuthOrganizationDomain";
|
11859
|
-
} & Pick<AuthOrganizationDomain, "id">;
|
12968
|
+
} & Pick<AuthOrganizationDomain, "id" | "claimed" | "name" | "organizationId" | "verified">;
|
11860
12969
|
export declare type AuthResolverResponseFragment = {
|
11861
12970
|
__typename: "AuthResolverResponse";
|
11862
|
-
} & Pick<AuthResolverResponse, "
|
12971
|
+
} & Pick<AuthResolverResponse, "token" | "email" | "lastUsedOrganizationId" | "allowDomainAccess" | "id"> & {
|
12972
|
+
users: Array<{
|
12973
|
+
__typename?: "AuthUser";
|
12974
|
+
} & AuthUserFragment>;
|
11863
12975
|
lockedOrganizations?: Maybe<Array<{
|
11864
12976
|
__typename?: "AuthOrganization";
|
11865
12977
|
} & AuthOrganizationFragment>>;
|
11866
12978
|
availableOrganizations?: Maybe<Array<{
|
11867
12979
|
__typename?: "AuthOrganization";
|
11868
12980
|
} & AuthOrganizationFragment>>;
|
11869
|
-
users: Array<{
|
11870
|
-
__typename?: "AuthUser";
|
11871
|
-
} & AuthUserFragment>;
|
11872
12981
|
};
|
11873
12982
|
export declare type AuthSuccessPayloadFragment = {
|
11874
12983
|
__typename: "AuthSuccessPayload";
|
@@ -12001,7 +13110,7 @@ export declare type DocumentSearchPayloadFragment = {
|
|
12001
13110
|
};
|
12002
13111
|
export declare type DocumentSearchResultFragment = {
|
12003
13112
|
__typename: "DocumentSearchResult";
|
12004
|
-
} & Pick<DocumentSearchResult, "metadata" | "color" | "title" | "slugId" | "
|
13113
|
+
} & Pick<DocumentSearchResult, "metadata" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
12005
13114
|
lastAppliedTemplate?: Maybe<{
|
12006
13115
|
__typename?: "Template";
|
12007
13116
|
} & Pick<Template, "id">>;
|
@@ -12025,6 +13134,13 @@ export declare type DocumentSearchResultConnectionFragment = {
|
|
12025
13134
|
__typename?: "PageInfo";
|
12026
13135
|
} & PageInfoFragment;
|
12027
13136
|
};
|
13137
|
+
export declare type EmailIntakeAddressPayloadFragment = {
|
13138
|
+
__typename: "EmailIntakeAddressPayload";
|
13139
|
+
} & Pick<EmailIntakeAddressPayload, "lastSyncId" | "success"> & {
|
13140
|
+
emailIntakeAddress: {
|
13141
|
+
__typename?: "EmailIntakeAddress";
|
13142
|
+
} & EmailIntakeAddressFragment;
|
13143
|
+
};
|
12028
13144
|
export declare type EmailUnsubscribePayloadFragment = {
|
12029
13145
|
__typename: "EmailUnsubscribePayload";
|
12030
13146
|
} & Pick<EmailUnsubscribePayload, "success">;
|
@@ -12048,6 +13164,16 @@ export declare type EmojiPayloadFragment = {
|
|
12048
13164
|
__typename?: "Emoji";
|
12049
13165
|
} & Pick<Emoji, "id">;
|
12050
13166
|
};
|
13167
|
+
export declare type ExternalUserConnectionFragment = {
|
13168
|
+
__typename: "ExternalUserConnection";
|
13169
|
+
} & {
|
13170
|
+
nodes: Array<{
|
13171
|
+
__typename?: "ExternalUser";
|
13172
|
+
} & ExternalUserFragment>;
|
13173
|
+
pageInfo: {
|
13174
|
+
__typename?: "PageInfo";
|
13175
|
+
} & PageInfoFragment;
|
13176
|
+
};
|
12051
13177
|
export declare type FavoriteConnectionFragment = {
|
12052
13178
|
__typename: "FavoriteConnection";
|
12053
13179
|
} & {
|
@@ -12085,6 +13211,13 @@ export declare type GitAutomationStatePayloadFragment = {
|
|
12085
13211
|
__typename?: "GitAutomationState";
|
12086
13212
|
} & GitAutomationStateFragment;
|
12087
13213
|
};
|
13214
|
+
export declare type GitAutomationTargetBranchPayloadFragment = {
|
13215
|
+
__typename: "GitAutomationTargetBranchPayload";
|
13216
|
+
} & Pick<GitAutomationTargetBranchPayload, "lastSyncId" | "success"> & {
|
13217
|
+
targetBranch: {
|
13218
|
+
__typename?: "GitAutomationTargetBranch";
|
13219
|
+
} & GitAutomationTargetBranchFragment;
|
13220
|
+
};
|
12088
13221
|
export declare type GitHubCommitIntegrationPayloadFragment = {
|
12089
13222
|
__typename: "GitHubCommitIntegrationPayload";
|
12090
13223
|
} & Pick<GitHubCommitIntegrationPayload, "lastSyncId" | "webhookSecret" | "success"> & {
|
@@ -12105,6 +13238,9 @@ export declare type IntegrationConnectionFragment = {
|
|
12105
13238
|
__typename?: "PageInfo";
|
12106
13239
|
} & PageInfoFragment;
|
12107
13240
|
};
|
13241
|
+
export declare type IntegrationHasScopesPayloadFragment = {
|
13242
|
+
__typename: "IntegrationHasScopesPayload";
|
13243
|
+
} & Pick<IntegrationHasScopesPayload, "missingScopes" | "hasAllScopes">;
|
12108
13244
|
export declare type IntegrationPayloadFragment = {
|
12109
13245
|
__typename: "IntegrationPayload";
|
12110
13246
|
} & Pick<IntegrationPayload, "lastSyncId" | "success"> & {
|
@@ -12262,6 +13398,9 @@ export declare type IssueSearchResultFragment = {
|
|
12262
13398
|
cycle?: Maybe<{
|
12263
13399
|
__typename?: "Cycle";
|
12264
13400
|
} & Pick<Cycle, "id">>;
|
13401
|
+
externalUserCreator?: Maybe<{
|
13402
|
+
__typename?: "ExternalUser";
|
13403
|
+
} & Pick<ExternalUser, "id">>;
|
12265
13404
|
lastAppliedTemplate?: Maybe<{
|
12266
13405
|
__typename?: "Template";
|
12267
13406
|
} & Pick<Template, "id">>;
|
@@ -12354,12 +13493,24 @@ declare type Node_Emoji_Fragment = {
|
|
12354
13493
|
declare type Node_ExternalUser_Fragment = {
|
12355
13494
|
__typename: "ExternalUser";
|
12356
13495
|
} & Pick<ExternalUser, "id">;
|
13496
|
+
declare type Node_Facet_Fragment = {
|
13497
|
+
__typename: "Facet";
|
13498
|
+
} & Pick<Facet, "id">;
|
12357
13499
|
declare type Node_Favorite_Fragment = {
|
12358
13500
|
__typename: "Favorite";
|
12359
13501
|
} & Pick<Favorite, "id">;
|
12360
13502
|
declare type Node_GitAutomationState_Fragment = {
|
12361
13503
|
__typename: "GitAutomationState";
|
12362
13504
|
} & Pick<GitAutomationState, "id">;
|
13505
|
+
declare type Node_GitAutomationTargetBranch_Fragment = {
|
13506
|
+
__typename: "GitAutomationTargetBranch";
|
13507
|
+
} & Pick<GitAutomationTargetBranch, "id">;
|
13508
|
+
declare type Node_Initiative_Fragment = {
|
13509
|
+
__typename: "Initiative";
|
13510
|
+
} & Pick<Initiative, "id">;
|
13511
|
+
declare type Node_InitiativeToProject_Fragment = {
|
13512
|
+
__typename: "InitiativeToProject";
|
13513
|
+
} & Pick<InitiativeToProject, "id">;
|
12363
13514
|
declare type Node_Integration_Fragment = {
|
12364
13515
|
__typename: "Integration";
|
12365
13516
|
} & Pick<Integration, "id">;
|
@@ -12435,6 +13586,9 @@ declare type Node_ProjectNotificationSubscription_Fragment = {
|
|
12435
13586
|
declare type Node_ProjectSearchResult_Fragment = {
|
12436
13587
|
__typename: "ProjectSearchResult";
|
12437
13588
|
} & Pick<ProjectSearchResult, "id">;
|
13589
|
+
declare type Node_ProjectStatus_Fragment = {
|
13590
|
+
__typename: "ProjectStatus";
|
13591
|
+
} & Pick<ProjectStatus, "id">;
|
12438
13592
|
declare type Node_ProjectUpdate_Fragment = {
|
12439
13593
|
__typename: "ProjectUpdate";
|
12440
13594
|
} & Pick<ProjectUpdate, "id">;
|
@@ -12465,6 +13619,9 @@ declare type Node_TeamNotificationSubscription_Fragment = {
|
|
12465
13619
|
declare type Node_Template_Fragment = {
|
12466
13620
|
__typename: "Template";
|
12467
13621
|
} & Pick<Template, "id">;
|
13622
|
+
declare type Node_TimeSchedule_Fragment = {
|
13623
|
+
__typename: "TimeSchedule";
|
13624
|
+
} & Pick<TimeSchedule, "id">;
|
12468
13625
|
declare type Node_TriageResponsibility_Fragment = {
|
12469
13626
|
__typename: "TriageResponsibility";
|
12470
13627
|
} & Pick<TriageResponsibility, "id">;
|
@@ -12492,7 +13649,7 @@ declare type Node_WorkflowDefinition_Fragment = {
|
|
12492
13649
|
declare type Node_WorkflowState_Fragment = {
|
12493
13650
|
__typename: "WorkflowState";
|
12494
13651
|
} & 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;
|
13652
|
+
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
13653
|
export declare type NotificationBatchActionPayloadFragment = {
|
12497
13654
|
__typename: "NotificationBatchActionPayload";
|
12498
13655
|
} & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
|
@@ -12578,7 +13735,14 @@ export declare type OauthClientConnectionFragment = {
|
|
12578
13735
|
};
|
12579
13736
|
export declare type OauthTokenFragment = {
|
12580
13737
|
__typename: "OauthToken";
|
12581
|
-
} & Pick<OauthToken, "createdAt" | "id"
|
13738
|
+
} & Pick<OauthToken, "userId" | "clientId" | "createdAt" | "id" | "revokedAt"> & {
|
13739
|
+
user: {
|
13740
|
+
__typename?: "AuthUser";
|
13741
|
+
} & AuthUserFragment;
|
13742
|
+
client: {
|
13743
|
+
__typename?: "AuthOauthClient";
|
13744
|
+
} & AuthOauthClientFragment;
|
13745
|
+
};
|
12582
13746
|
export declare type OrganizationCancelDeletePayloadFragment = {
|
12583
13747
|
__typename: "OrganizationCancelDeletePayload";
|
12584
13748
|
} & Pick<OrganizationCancelDeletePayload, "success">;
|
@@ -12841,9 +14005,6 @@ export declare type RoadmapToProjectPayloadFragment = {
|
|
12841
14005
|
__typename?: "RoadmapToProject";
|
12842
14006
|
} & Pick<RoadmapToProject, "id">;
|
12843
14007
|
};
|
12844
|
-
export declare type SamlConfigurationFragment = {
|
12845
|
-
__typename: "SamlConfiguration";
|
12846
|
-
} & Pick<SamlConfiguration, "ssoBinding" | "ssoEndpoint" | "ssoSignAlgo" | "issuerEntityId" | "ssoSigningCert">;
|
12847
14008
|
export declare type SlackChannelConnectPayloadFragment = {
|
12848
14009
|
__typename: "SlackChannelConnectPayload";
|
12849
14010
|
} & Pick<SlackChannelConnectPayload, "lastSyncId" | "nudgeToConnectMainSlackIntegration" | "nudgeToUpdateMainSlackIntegration" | "addBot" | "success"> & {
|
@@ -12908,6 +14069,26 @@ export declare type TemplatePayloadFragment = {
|
|
12908
14069
|
__typename?: "Template";
|
12909
14070
|
} & Pick<Template, "id">;
|
12910
14071
|
};
|
14072
|
+
export declare type TimeScheduleConnectionFragment = {
|
14073
|
+
__typename: "TimeScheduleConnection";
|
14074
|
+
} & {
|
14075
|
+
nodes: Array<{
|
14076
|
+
__typename?: "TimeSchedule";
|
14077
|
+
} & TimeScheduleFragment>;
|
14078
|
+
pageInfo: {
|
14079
|
+
__typename?: "PageInfo";
|
14080
|
+
} & PageInfoFragment;
|
14081
|
+
};
|
14082
|
+
export declare type TimeScheduleEntryFragment = {
|
14083
|
+
__typename: "TimeScheduleEntry";
|
14084
|
+
} & Pick<TimeScheduleEntry, "userId" | "userEmail" | "endsAt" | "startsAt">;
|
14085
|
+
export declare type TimeSchedulePayloadFragment = {
|
14086
|
+
__typename: "TimeSchedulePayload";
|
14087
|
+
} & Pick<TimeSchedulePayload, "lastSyncId" | "success"> & {
|
14088
|
+
timeSchedule: {
|
14089
|
+
__typename?: "TimeSchedule";
|
14090
|
+
} & Pick<TimeSchedule, "id">;
|
14091
|
+
};
|
12911
14092
|
export declare type TriageResponsibilityConnectionFragment = {
|
12912
14093
|
__typename: "TriageResponsibilityConnection";
|
12913
14094
|
} & {
|
@@ -12918,6 +14099,16 @@ export declare type TriageResponsibilityConnectionFragment = {
|
|
12918
14099
|
__typename?: "PageInfo";
|
12919
14100
|
} & PageInfoFragment;
|
12920
14101
|
};
|
14102
|
+
export declare type TriageResponsibilityManualSelectionFragment = {
|
14103
|
+
__typename: "TriageResponsibilityManualSelection";
|
14104
|
+
} & Pick<TriageResponsibilityManualSelection, "userIds">;
|
14105
|
+
export declare type TriageResponsibilityPayloadFragment = {
|
14106
|
+
__typename: "TriageResponsibilityPayload";
|
14107
|
+
} & Pick<TriageResponsibilityPayload, "lastSyncId" | "success"> & {
|
14108
|
+
triageResponsibility: {
|
14109
|
+
__typename?: "TriageResponsibility";
|
14110
|
+
} & Pick<TriageResponsibility, "id">;
|
14111
|
+
};
|
12921
14112
|
export declare type UploadFileHeaderFragment = {
|
12922
14113
|
__typename: "UploadFileHeader";
|
12923
14114
|
} & Pick<UploadFileHeader, "key" | "value">;
|
@@ -13386,7 +14577,9 @@ export declare type AvailableUsersQuery = {
|
|
13386
14577
|
} & AuthResolverResponseFragment;
|
13387
14578
|
};
|
13388
14579
|
export declare type CommentQueryVariables = Exact<{
|
13389
|
-
|
14580
|
+
hash?: Maybe<Scalars["String"]>;
|
14581
|
+
id?: Maybe<Scalars["String"]>;
|
14582
|
+
issueId?: Maybe<Scalars["String"]>;
|
13390
14583
|
}>;
|
13391
14584
|
export declare type CommentQuery = {
|
13392
14585
|
__typename?: "Query";
|
@@ -13396,7 +14589,9 @@ export declare type CommentQuery = {
|
|
13396
14589
|
} & CommentFragment;
|
13397
14590
|
};
|
13398
14591
|
export declare type Comment_BotActorQueryVariables = Exact<{
|
13399
|
-
|
14592
|
+
hash?: Maybe<Scalars["String"]>;
|
14593
|
+
id?: Maybe<Scalars["String"]>;
|
14594
|
+
issueId?: Maybe<Scalars["String"]>;
|
13400
14595
|
}>;
|
13401
14596
|
export declare type Comment_BotActorQuery = {
|
13402
14597
|
__typename?: "Query";
|
@@ -13410,7 +14605,9 @@ export declare type Comment_BotActorQuery = {
|
|
13410
14605
|
};
|
13411
14606
|
};
|
13412
14607
|
export declare type Comment_ChildrenQueryVariables = Exact<{
|
13413
|
-
|
14608
|
+
hash?: Maybe<Scalars["String"]>;
|
14609
|
+
id?: Maybe<Scalars["String"]>;
|
14610
|
+
issueId?: Maybe<Scalars["String"]>;
|
13414
14611
|
after?: Maybe<Scalars["String"]>;
|
13415
14612
|
before?: Maybe<Scalars["String"]>;
|
13416
14613
|
filter?: Maybe<CommentFilter>;
|
@@ -13431,7 +14628,9 @@ export declare type Comment_ChildrenQuery = {
|
|
13431
14628
|
};
|
13432
14629
|
};
|
13433
14630
|
export declare type Comment_DocumentContentQueryVariables = Exact<{
|
13434
|
-
|
14631
|
+
hash?: Maybe<Scalars["String"]>;
|
14632
|
+
id?: Maybe<Scalars["String"]>;
|
14633
|
+
issueId?: Maybe<Scalars["String"]>;
|
13435
14634
|
}>;
|
13436
14635
|
export declare type Comment_DocumentContentQuery = {
|
13437
14636
|
__typename?: "Query";
|
@@ -13470,6 +14669,27 @@ export declare type CustomViewQuery = {
|
|
13470
14669
|
__typename?: "CustomView";
|
13471
14670
|
} & CustomViewFragment;
|
13472
14671
|
};
|
14672
|
+
export declare type CustomView_IssuesQueryVariables = Exact<{
|
14673
|
+
id: Scalars["String"];
|
14674
|
+
after?: Maybe<Scalars["String"]>;
|
14675
|
+
before?: Maybe<Scalars["String"]>;
|
14676
|
+
filter?: Maybe<IssueFilter>;
|
14677
|
+
first?: Maybe<Scalars["Int"]>;
|
14678
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
14679
|
+
last?: Maybe<Scalars["Int"]>;
|
14680
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
14681
|
+
}>;
|
14682
|
+
export declare type CustomView_IssuesQuery = {
|
14683
|
+
__typename?: "Query";
|
14684
|
+
} & {
|
14685
|
+
customView: {
|
14686
|
+
__typename?: "CustomView";
|
14687
|
+
} & {
|
14688
|
+
issues: {
|
14689
|
+
__typename?: "IssueConnection";
|
14690
|
+
} & IssueConnectionFragment;
|
14691
|
+
};
|
14692
|
+
};
|
13473
14693
|
export declare type CustomViewHasSubscribersQueryVariables = Exact<{
|
13474
14694
|
id: Scalars["String"];
|
13475
14695
|
}>;
|
@@ -13586,6 +14806,7 @@ export declare type DocumentContentHistoryQuery = {
|
|
13586
14806
|
export declare type DocumentsQueryVariables = Exact<{
|
13587
14807
|
after?: Maybe<Scalars["String"]>;
|
13588
14808
|
before?: Maybe<Scalars["String"]>;
|
14809
|
+
filter?: Maybe<DocumentFilter>;
|
13589
14810
|
first?: Maybe<Scalars["Int"]>;
|
13590
14811
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
13591
14812
|
last?: Maybe<Scalars["Int"]>;
|
@@ -13623,6 +14844,31 @@ export declare type EmojisQuery = {
|
|
13623
14844
|
__typename?: "EmojiConnection";
|
13624
14845
|
} & EmojiConnectionFragment;
|
13625
14846
|
};
|
14847
|
+
export declare type ExternalUserQueryVariables = Exact<{
|
14848
|
+
id: Scalars["String"];
|
14849
|
+
}>;
|
14850
|
+
export declare type ExternalUserQuery = {
|
14851
|
+
__typename?: "Query";
|
14852
|
+
} & {
|
14853
|
+
externalUser: {
|
14854
|
+
__typename?: "ExternalUser";
|
14855
|
+
} & ExternalUserFragment;
|
14856
|
+
};
|
14857
|
+
export declare type ExternalUsersQueryVariables = Exact<{
|
14858
|
+
after?: Maybe<Scalars["String"]>;
|
14859
|
+
before?: Maybe<Scalars["String"]>;
|
14860
|
+
first?: Maybe<Scalars["Int"]>;
|
14861
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
14862
|
+
last?: Maybe<Scalars["Int"]>;
|
14863
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
14864
|
+
}>;
|
14865
|
+
export declare type ExternalUsersQuery = {
|
14866
|
+
__typename?: "Query";
|
14867
|
+
} & {
|
14868
|
+
externalUsers: {
|
14869
|
+
__typename?: "ExternalUserConnection";
|
14870
|
+
} & ExternalUserConnectionFragment;
|
14871
|
+
};
|
13626
14872
|
export declare type FavoriteQueryVariables = Exact<{
|
13627
14873
|
id: Scalars["String"];
|
13628
14874
|
}>;
|
@@ -13678,6 +14924,17 @@ export declare type IntegrationQuery = {
|
|
13678
14924
|
__typename?: "Integration";
|
13679
14925
|
} & IntegrationFragment;
|
13680
14926
|
};
|
14927
|
+
export declare type IntegrationHasScopesQueryVariables = Exact<{
|
14928
|
+
integrationId: Scalars["String"];
|
14929
|
+
scopes: Array<Scalars["String"]> | Scalars["String"];
|
14930
|
+
}>;
|
14931
|
+
export declare type IntegrationHasScopesQuery = {
|
14932
|
+
__typename?: "Query";
|
14933
|
+
} & {
|
14934
|
+
integrationHasScopes: {
|
14935
|
+
__typename?: "IntegrationHasScopesPayload";
|
14936
|
+
} & IntegrationHasScopesPayloadFragment;
|
14937
|
+
};
|
13681
14938
|
export declare type IntegrationTemplateQueryVariables = Exact<{
|
13682
14939
|
id: Scalars["String"];
|
13683
14940
|
}>;
|
@@ -14283,6 +15540,7 @@ export declare type IssuesQueryVariables = Exact<{
|
|
14283
15540
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
14284
15541
|
last?: Maybe<Scalars["Int"]>;
|
14285
15542
|
orderBy?: Maybe<PaginationOrderBy>;
|
15543
|
+
sort?: Maybe<Array<IssueSortInput> | IssueSortInput>;
|
14286
15544
|
}>;
|
14287
15545
|
export declare type IssuesQuery = {
|
14288
15546
|
__typename?: "Query";
|
@@ -14526,6 +15784,7 @@ export declare type Project_DocumentsQueryVariables = Exact<{
|
|
14526
15784
|
id: Scalars["String"];
|
14527
15785
|
after?: Maybe<Scalars["String"]>;
|
14528
15786
|
before?: Maybe<Scalars["String"]>;
|
15787
|
+
filter?: Maybe<DocumentFilter>;
|
14529
15788
|
first?: Maybe<Scalars["Int"]>;
|
14530
15789
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
14531
15790
|
last?: Maybe<Scalars["Int"]>;
|
@@ -14609,6 +15868,7 @@ export declare type Project_ProjectMilestonesQueryVariables = Exact<{
|
|
14609
15868
|
id: Scalars["String"];
|
14610
15869
|
after?: Maybe<Scalars["String"]>;
|
14611
15870
|
before?: Maybe<Scalars["String"]>;
|
15871
|
+
filter?: Maybe<ProjectMilestoneFilter>;
|
14612
15872
|
first?: Maybe<Scalars["Int"]>;
|
14613
15873
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
14614
15874
|
last?: Maybe<Scalars["Int"]>;
|
@@ -14711,6 +15971,27 @@ export declare type ProjectMilestoneQuery = {
|
|
14711
15971
|
__typename?: "ProjectMilestone";
|
14712
15972
|
} & ProjectMilestoneFragment;
|
14713
15973
|
};
|
15974
|
+
export declare type ProjectMilestone_IssuesQueryVariables = Exact<{
|
15975
|
+
id: Scalars["String"];
|
15976
|
+
after?: Maybe<Scalars["String"]>;
|
15977
|
+
before?: Maybe<Scalars["String"]>;
|
15978
|
+
filter?: Maybe<IssueFilter>;
|
15979
|
+
first?: Maybe<Scalars["Int"]>;
|
15980
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
15981
|
+
last?: Maybe<Scalars["Int"]>;
|
15982
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
15983
|
+
}>;
|
15984
|
+
export declare type ProjectMilestone_IssuesQuery = {
|
15985
|
+
__typename?: "Query";
|
15986
|
+
} & {
|
15987
|
+
projectMilestone: {
|
15988
|
+
__typename?: "ProjectMilestone";
|
15989
|
+
} & {
|
15990
|
+
issues: {
|
15991
|
+
__typename?: "IssueConnection";
|
15992
|
+
} & IssueConnectionFragment;
|
15993
|
+
};
|
15994
|
+
};
|
14714
15995
|
export declare type ProjectMilestonesQueryVariables = Exact<{
|
14715
15996
|
after?: Maybe<Scalars["String"]>;
|
14716
15997
|
before?: Maybe<Scalars["String"]>;
|
@@ -14894,6 +16175,7 @@ export declare type SearchDocumentsQueryVariables = Exact<{
|
|
14894
16175
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
14895
16176
|
last?: Maybe<Scalars["Int"]>;
|
14896
16177
|
orderBy?: Maybe<PaginationOrderBy>;
|
16178
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
14897
16179
|
teamId?: Maybe<Scalars["String"]>;
|
14898
16180
|
term: Scalars["String"];
|
14899
16181
|
}>;
|
@@ -14912,6 +16194,7 @@ export declare type SearchDocuments_ArchivePayloadQueryVariables = Exact<{
|
|
14912
16194
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
14913
16195
|
last?: Maybe<Scalars["Int"]>;
|
14914
16196
|
orderBy?: Maybe<PaginationOrderBy>;
|
16197
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
14915
16198
|
teamId?: Maybe<Scalars["String"]>;
|
14916
16199
|
term: Scalars["String"];
|
14917
16200
|
}>;
|
@@ -14935,6 +16218,7 @@ export declare type SearchIssuesQueryVariables = Exact<{
|
|
14935
16218
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
14936
16219
|
last?: Maybe<Scalars["Int"]>;
|
14937
16220
|
orderBy?: Maybe<PaginationOrderBy>;
|
16221
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
14938
16222
|
teamId?: Maybe<Scalars["String"]>;
|
14939
16223
|
term: Scalars["String"];
|
14940
16224
|
}>;
|
@@ -14954,6 +16238,7 @@ export declare type SearchIssues_ArchivePayloadQueryVariables = Exact<{
|
|
14954
16238
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
14955
16239
|
last?: Maybe<Scalars["Int"]>;
|
14956
16240
|
orderBy?: Maybe<PaginationOrderBy>;
|
16241
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
14957
16242
|
teamId?: Maybe<Scalars["String"]>;
|
14958
16243
|
term: Scalars["String"];
|
14959
16244
|
}>;
|
@@ -14976,6 +16261,7 @@ export declare type SearchProjectsQueryVariables = Exact<{
|
|
14976
16261
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
14977
16262
|
last?: Maybe<Scalars["Int"]>;
|
14978
16263
|
orderBy?: Maybe<PaginationOrderBy>;
|
16264
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
14979
16265
|
teamId?: Maybe<Scalars["String"]>;
|
14980
16266
|
term: Scalars["String"];
|
14981
16267
|
}>;
|
@@ -14994,6 +16280,7 @@ export declare type SearchProjects_ArchivePayloadQueryVariables = Exact<{
|
|
14994
16280
|
includeComments?: Maybe<Scalars["Boolean"]>;
|
14995
16281
|
last?: Maybe<Scalars["Int"]>;
|
14996
16282
|
orderBy?: Maybe<PaginationOrderBy>;
|
16283
|
+
snippetSize?: Maybe<Scalars["Float"]>;
|
14997
16284
|
teamId?: Maybe<Scalars["String"]>;
|
14998
16285
|
term: Scalars["String"];
|
14999
16286
|
}>;
|
@@ -15029,45 +16316,45 @@ export declare type TeamQuery = {
|
|
15029
16316
|
__typename?: "Team";
|
15030
16317
|
} & TeamFragment;
|
15031
16318
|
};
|
15032
|
-
export declare type
|
16319
|
+
export declare type Team_CyclesQueryVariables = Exact<{
|
15033
16320
|
id: Scalars["String"];
|
15034
16321
|
after?: Maybe<Scalars["String"]>;
|
15035
16322
|
before?: Maybe<Scalars["String"]>;
|
16323
|
+
filter?: Maybe<CycleFilter>;
|
15036
16324
|
first?: Maybe<Scalars["Int"]>;
|
15037
16325
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
15038
16326
|
last?: Maybe<Scalars["Int"]>;
|
15039
16327
|
orderBy?: Maybe<PaginationOrderBy>;
|
15040
16328
|
}>;
|
15041
|
-
export declare type
|
16329
|
+
export declare type Team_CyclesQuery = {
|
15042
16330
|
__typename?: "Query";
|
15043
16331
|
} & {
|
15044
16332
|
team: {
|
15045
16333
|
__typename?: "Team";
|
15046
16334
|
} & {
|
15047
|
-
|
15048
|
-
__typename?: "
|
15049
|
-
} &
|
16335
|
+
cycles: {
|
16336
|
+
__typename?: "CycleConnection";
|
16337
|
+
} & CycleConnectionFragment;
|
15050
16338
|
};
|
15051
16339
|
};
|
15052
|
-
export declare type
|
16340
|
+
export declare type Team_GitAutomationStatesQueryVariables = Exact<{
|
15053
16341
|
id: Scalars["String"];
|
15054
16342
|
after?: Maybe<Scalars["String"]>;
|
15055
16343
|
before?: Maybe<Scalars["String"]>;
|
15056
|
-
filter?: Maybe<CycleFilter>;
|
15057
16344
|
first?: Maybe<Scalars["Int"]>;
|
15058
16345
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
15059
16346
|
last?: Maybe<Scalars["Int"]>;
|
15060
16347
|
orderBy?: Maybe<PaginationOrderBy>;
|
15061
16348
|
}>;
|
15062
|
-
export declare type
|
16349
|
+
export declare type Team_GitAutomationStatesQuery = {
|
15063
16350
|
__typename?: "Query";
|
15064
16351
|
} & {
|
15065
16352
|
team: {
|
15066
16353
|
__typename?: "Team";
|
15067
16354
|
} & {
|
15068
|
-
|
15069
|
-
__typename?: "
|
15070
|
-
} &
|
16355
|
+
gitAutomationStates: {
|
16356
|
+
__typename?: "GitAutomationStateConnection";
|
16357
|
+
} & GitAutomationStateConnectionFragment;
|
15071
16358
|
};
|
15072
16359
|
};
|
15073
16360
|
export declare type Team_IssuesQueryVariables = Exact<{
|
@@ -15655,6 +16942,7 @@ export declare type AttachmentLinkDiscordMutationVariables = Exact<{
|
|
15655
16942
|
id?: Maybe<Scalars["String"]>;
|
15656
16943
|
issueId: Scalars["String"];
|
15657
16944
|
messageId: Scalars["String"];
|
16945
|
+
title?: Maybe<Scalars["String"]>;
|
15658
16946
|
url: Scalars["String"];
|
15659
16947
|
}>;
|
15660
16948
|
export declare type AttachmentLinkDiscordMutation = {
|
@@ -15670,6 +16958,7 @@ export declare type AttachmentLinkFrontMutationVariables = Exact<{
|
|
15670
16958
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
15671
16959
|
id?: Maybe<Scalars["String"]>;
|
15672
16960
|
issueId: Scalars["String"];
|
16961
|
+
title?: Maybe<Scalars["String"]>;
|
15673
16962
|
}>;
|
15674
16963
|
export declare type AttachmentLinkFrontMutation = {
|
15675
16964
|
__typename?: "Mutation";
|
@@ -15683,6 +16972,7 @@ export declare type AttachmentLinkGitHubIssueMutationVariables = Exact<{
|
|
15683
16972
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
15684
16973
|
id?: Maybe<Scalars["String"]>;
|
15685
16974
|
issueId: Scalars["String"];
|
16975
|
+
title?: Maybe<Scalars["String"]>;
|
15686
16976
|
url: Scalars["String"];
|
15687
16977
|
}>;
|
15688
16978
|
export declare type AttachmentLinkGitHubIssueMutation = {
|
@@ -15700,6 +16990,7 @@ export declare type AttachmentLinkGitHubPrMutationVariables = Exact<{
|
|
15700
16990
|
number?: Maybe<Scalars["Float"]>;
|
15701
16991
|
owner?: Maybe<Scalars["String"]>;
|
15702
16992
|
repo?: Maybe<Scalars["String"]>;
|
16993
|
+
title?: Maybe<Scalars["String"]>;
|
15703
16994
|
url: Scalars["String"];
|
15704
16995
|
}>;
|
15705
16996
|
export declare type AttachmentLinkGitHubPrMutation = {
|
@@ -15716,6 +17007,7 @@ export declare type AttachmentLinkGitLabMrMutationVariables = Exact<{
|
|
15716
17007
|
issueId: Scalars["String"];
|
15717
17008
|
number: Scalars["Float"];
|
15718
17009
|
projectPathWithNamespace: Scalars["String"];
|
17010
|
+
title?: Maybe<Scalars["String"]>;
|
15719
17011
|
url: Scalars["String"];
|
15720
17012
|
}>;
|
15721
17013
|
export declare type AttachmentLinkGitLabMrMutation = {
|
@@ -15731,6 +17023,7 @@ export declare type AttachmentLinkIntercomMutationVariables = Exact<{
|
|
15731
17023
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
15732
17024
|
id?: Maybe<Scalars["String"]>;
|
15733
17025
|
issueId: Scalars["String"];
|
17026
|
+
title?: Maybe<Scalars["String"]>;
|
15734
17027
|
}>;
|
15735
17028
|
export declare type AttachmentLinkIntercomMutation = {
|
15736
17029
|
__typename?: "Mutation";
|
@@ -15789,6 +17082,7 @@ export declare type AttachmentLinkZendeskMutationVariables = Exact<{
|
|
15789
17082
|
id?: Maybe<Scalars["String"]>;
|
15790
17083
|
issueId: Scalars["String"];
|
15791
17084
|
ticketId: Scalars["String"];
|
17085
|
+
title?: Maybe<Scalars["String"]>;
|
15792
17086
|
}>;
|
15793
17087
|
export declare type AttachmentLinkZendeskMutation = {
|
15794
17088
|
__typename?: "Mutation";
|
@@ -16015,6 +17309,47 @@ export declare type UpdateDocumentMutation = {
|
|
16015
17309
|
__typename?: "DocumentPayload";
|
16016
17310
|
} & DocumentPayloadFragment;
|
16017
17311
|
};
|
17312
|
+
export declare type CreateEmailIntakeAddressMutationVariables = Exact<{
|
17313
|
+
input: EmailIntakeAddressCreateInput;
|
17314
|
+
}>;
|
17315
|
+
export declare type CreateEmailIntakeAddressMutation = {
|
17316
|
+
__typename?: "Mutation";
|
17317
|
+
} & {
|
17318
|
+
emailIntakeAddressCreate: {
|
17319
|
+
__typename?: "EmailIntakeAddressPayload";
|
17320
|
+
} & EmailIntakeAddressPayloadFragment;
|
17321
|
+
};
|
17322
|
+
export declare type DeleteEmailIntakeAddressMutationVariables = Exact<{
|
17323
|
+
id: Scalars["String"];
|
17324
|
+
}>;
|
17325
|
+
export declare type DeleteEmailIntakeAddressMutation = {
|
17326
|
+
__typename?: "Mutation";
|
17327
|
+
} & {
|
17328
|
+
emailIntakeAddressDelete: {
|
17329
|
+
__typename?: "DeletePayload";
|
17330
|
+
} & DeletePayloadFragment;
|
17331
|
+
};
|
17332
|
+
export declare type EmailIntakeAddressRotateMutationVariables = Exact<{
|
17333
|
+
id: Scalars["String"];
|
17334
|
+
}>;
|
17335
|
+
export declare type EmailIntakeAddressRotateMutation = {
|
17336
|
+
__typename?: "Mutation";
|
17337
|
+
} & {
|
17338
|
+
emailIntakeAddressRotate: {
|
17339
|
+
__typename?: "EmailIntakeAddressPayload";
|
17340
|
+
} & EmailIntakeAddressPayloadFragment;
|
17341
|
+
};
|
17342
|
+
export declare type UpdateEmailIntakeAddressMutationVariables = Exact<{
|
17343
|
+
id: Scalars["String"];
|
17344
|
+
input: EmailIntakeAddressUpdateInput;
|
17345
|
+
}>;
|
17346
|
+
export declare type UpdateEmailIntakeAddressMutation = {
|
17347
|
+
__typename?: "Mutation";
|
17348
|
+
} & {
|
17349
|
+
emailIntakeAddressUpdate: {
|
17350
|
+
__typename?: "EmailIntakeAddressPayload";
|
17351
|
+
} & EmailIntakeAddressPayloadFragment;
|
17352
|
+
};
|
16018
17353
|
export declare type EmailTokenUserAccountAuthMutationVariables = Exact<{
|
16019
17354
|
input: TokenUserAccountAuthInput;
|
16020
17355
|
}>;
|
@@ -16141,6 +17476,37 @@ export declare type UpdateGitAutomationStateMutation = {
|
|
16141
17476
|
__typename?: "GitAutomationStatePayload";
|
16142
17477
|
} & GitAutomationStatePayloadFragment;
|
16143
17478
|
};
|
17479
|
+
export declare type CreateGitAutomationTargetBranchMutationVariables = Exact<{
|
17480
|
+
input: GitAutomationTargetBranchCreateInput;
|
17481
|
+
}>;
|
17482
|
+
export declare type CreateGitAutomationTargetBranchMutation = {
|
17483
|
+
__typename?: "Mutation";
|
17484
|
+
} & {
|
17485
|
+
gitAutomationTargetBranchCreate: {
|
17486
|
+
__typename?: "GitAutomationTargetBranchPayload";
|
17487
|
+
} & GitAutomationTargetBranchPayloadFragment;
|
17488
|
+
};
|
17489
|
+
export declare type DeleteGitAutomationTargetBranchMutationVariables = Exact<{
|
17490
|
+
id: Scalars["String"];
|
17491
|
+
}>;
|
17492
|
+
export declare type DeleteGitAutomationTargetBranchMutation = {
|
17493
|
+
__typename?: "Mutation";
|
17494
|
+
} & {
|
17495
|
+
gitAutomationTargetBranchDelete: {
|
17496
|
+
__typename?: "DeletePayload";
|
17497
|
+
} & DeletePayloadFragment;
|
17498
|
+
};
|
17499
|
+
export declare type UpdateGitAutomationTargetBranchMutationVariables = Exact<{
|
17500
|
+
id: Scalars["String"];
|
17501
|
+
input: GitAutomationTargetBranchUpdateInput;
|
17502
|
+
}>;
|
17503
|
+
export declare type UpdateGitAutomationTargetBranchMutation = {
|
17504
|
+
__typename?: "Mutation";
|
17505
|
+
} & {
|
17506
|
+
gitAutomationTargetBranchUpdate: {
|
17507
|
+
__typename?: "GitAutomationTargetBranchPayload";
|
17508
|
+
} & GitAutomationTargetBranchPayloadFragment;
|
17509
|
+
};
|
16144
17510
|
export declare type GoogleUserAccountAuthMutationVariables = Exact<{
|
16145
17511
|
input: GoogleUserAccountAuthInput;
|
16146
17512
|
}>;
|
@@ -16174,6 +17540,16 @@ export declare type ImportFileUploadMutation = {
|
|
16174
17540
|
__typename?: "UploadPayload";
|
16175
17541
|
} & UploadPayloadFragment;
|
16176
17542
|
};
|
17543
|
+
export declare type ArchiveIntegrationMutationVariables = Exact<{
|
17544
|
+
id: Scalars["String"];
|
17545
|
+
}>;
|
17546
|
+
export declare type ArchiveIntegrationMutation = {
|
17547
|
+
__typename?: "Mutation";
|
17548
|
+
} & {
|
17549
|
+
integrationArchive: {
|
17550
|
+
__typename?: "DeletePayload";
|
17551
|
+
} & DeletePayloadFragment;
|
17552
|
+
};
|
16177
17553
|
export declare type IntegrationAsksConnectChannelMutationVariables = Exact<{
|
16178
17554
|
code: Scalars["String"];
|
16179
17555
|
redirectUri: Scalars["String"];
|
@@ -17745,6 +19121,7 @@ export declare const DocumentContentHistoryFragmentDoc: DocumentNode<DocumentCon
|
|
17745
19121
|
export declare const AttachmentArchivePayloadFragmentDoc: DocumentNode<AttachmentArchivePayloadFragment, unknown>;
|
17746
19122
|
export declare const CycleArchivePayloadFragmentDoc: DocumentNode<CycleArchivePayloadFragment, unknown>;
|
17747
19123
|
export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragment, unknown>;
|
19124
|
+
export declare const InitiativeArchivePayloadFragmentDoc: DocumentNode<InitiativeArchivePayloadFragment, unknown>;
|
17748
19125
|
export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
|
17749
19126
|
export declare const ActorBotFragmentDoc: DocumentNode<ActorBotFragment, unknown>;
|
17750
19127
|
export declare const NotificationSubscriptionFragmentDoc: DocumentNode<NotificationSubscriptionFragment, unknown>;
|
@@ -17764,7 +19141,7 @@ export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<Pr
|
|
17764
19141
|
export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
|
17765
19142
|
export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
|
17766
19143
|
export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
|
17767
|
-
export declare const
|
19144
|
+
export declare const AuthOrganizationInviteFragmentDoc: DocumentNode<AuthOrganizationInviteFragment, unknown>;
|
17768
19145
|
export declare const PaidSubscriptionFragmentDoc: DocumentNode<PaidSubscriptionFragment, unknown>;
|
17769
19146
|
export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment, unknown>;
|
17770
19147
|
export declare const AuthOauthClientWithScopeFragmentDoc: DocumentNode<AuthOauthClientWithScopeFragment, unknown>;
|
@@ -17799,7 +19176,6 @@ export declare const SlackAsksSettingsFragmentDoc: DocumentNode<SlackAsksSetting
|
|
17799
19176
|
export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
|
17800
19177
|
export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFragment, unknown>;
|
17801
19178
|
export declare const IntegrationSettingsFragmentDoc: DocumentNode<IntegrationSettingsFragment, unknown>;
|
17802
|
-
export declare const SamlConfigurationPayloadFragmentDoc: DocumentNode<SamlConfigurationPayloadFragment, unknown>;
|
17803
19179
|
export declare const UserSettingsFragmentDoc: DocumentNode<UserSettingsFragment, unknown>;
|
17804
19180
|
export declare const AuthenticationSessionFragmentDoc: DocumentNode<AuthenticationSessionFragment, unknown>;
|
17805
19181
|
export declare const ApiKeyFragmentDoc: DocumentNode<ApiKeyFragment, unknown>;
|
@@ -17816,11 +19192,10 @@ export declare const AuditEntryConnectionFragmentDoc: DocumentNode<AuditEntryCon
|
|
17816
19192
|
export declare const AuditEntryTypeFragmentDoc: DocumentNode<AuditEntryTypeFragment, unknown>;
|
17817
19193
|
export declare const AuthApiKeyFragmentDoc: DocumentNode<AuthApiKeyFragment, unknown>;
|
17818
19194
|
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
19195
|
export declare const AuthIntegrationFragmentDoc: DocumentNode<AuthIntegrationFragment, unknown>;
|
17823
19196
|
export declare const AuthOauthClientFragmentDoc: DocumentNode<AuthOauthClientFragment, unknown>;
|
19197
|
+
export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationFragment, unknown>;
|
19198
|
+
export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
|
17824
19199
|
export declare const OauthTokenFragmentDoc: DocumentNode<OauthTokenFragment, unknown>;
|
17825
19200
|
export declare const AuthOauthClientWithTokensFragmentDoc: DocumentNode<AuthOauthClientWithTokensFragment, unknown>;
|
17826
19201
|
export declare const AuthOrganizationDomainFragmentDoc: DocumentNode<AuthOrganizationDomainFragment, unknown>;
|
@@ -17852,22 +19227,29 @@ export declare const ArchiveResponseFragmentDoc: DocumentNode<ArchiveResponseFra
|
|
17852
19227
|
export declare const DocumentSearchResultFragmentDoc: DocumentNode<DocumentSearchResultFragment, unknown>;
|
17853
19228
|
export declare const DocumentSearchPayloadFragmentDoc: DocumentNode<DocumentSearchPayloadFragment, unknown>;
|
17854
19229
|
export declare const DocumentSearchResultConnectionFragmentDoc: DocumentNode<DocumentSearchResultConnectionFragment, unknown>;
|
19230
|
+
export declare const EmailIntakeAddressFragmentDoc: DocumentNode<EmailIntakeAddressFragment, unknown>;
|
19231
|
+
export declare const EmailIntakeAddressPayloadFragmentDoc: DocumentNode<EmailIntakeAddressPayloadFragment, unknown>;
|
17855
19232
|
export declare const EmailUnsubscribePayloadFragmentDoc: DocumentNode<EmailUnsubscribePayloadFragment, unknown>;
|
17856
19233
|
export declare const EmailUserAccountAuthChallengeResponseFragmentDoc: DocumentNode<EmailUserAccountAuthChallengeResponseFragment, unknown>;
|
17857
19234
|
export declare const EmojiFragmentDoc: DocumentNode<EmojiFragment, unknown>;
|
17858
19235
|
export declare const EmojiConnectionFragmentDoc: DocumentNode<EmojiConnectionFragment, unknown>;
|
17859
19236
|
export declare const EmojiPayloadFragmentDoc: DocumentNode<EmojiPayloadFragment, unknown>;
|
19237
|
+
export declare const ExternalUserFragmentDoc: DocumentNode<ExternalUserFragment, unknown>;
|
19238
|
+
export declare const ExternalUserConnectionFragmentDoc: DocumentNode<ExternalUserConnectionFragment, unknown>;
|
17860
19239
|
export declare const FavoriteFragmentDoc: DocumentNode<FavoriteFragment, unknown>;
|
17861
19240
|
export declare const FavoriteConnectionFragmentDoc: DocumentNode<FavoriteConnectionFragment, unknown>;
|
17862
19241
|
export declare const FavoritePayloadFragmentDoc: DocumentNode<FavoritePayloadFragment, unknown>;
|
17863
19242
|
export declare const FrontAttachmentPayloadFragmentDoc: DocumentNode<FrontAttachmentPayloadFragment, unknown>;
|
19243
|
+
export declare const GitAutomationTargetBranchFragmentDoc: DocumentNode<GitAutomationTargetBranchFragment, unknown>;
|
17864
19244
|
export declare const GitAutomationStateFragmentDoc: DocumentNode<GitAutomationStateFragment, unknown>;
|
17865
19245
|
export declare const GitAutomationStateConnectionFragmentDoc: DocumentNode<GitAutomationStateConnectionFragment, unknown>;
|
17866
19246
|
export declare const GitAutomationStatePayloadFragmentDoc: DocumentNode<GitAutomationStatePayloadFragment, unknown>;
|
19247
|
+
export declare const GitAutomationTargetBranchPayloadFragmentDoc: DocumentNode<GitAutomationTargetBranchPayloadFragment, unknown>;
|
17867
19248
|
export declare const GitHubCommitIntegrationPayloadFragmentDoc: DocumentNode<GitHubCommitIntegrationPayloadFragment, unknown>;
|
17868
19249
|
export declare const ImageUploadFromUrlPayloadFragmentDoc: DocumentNode<ImageUploadFromUrlPayloadFragment, unknown>;
|
17869
19250
|
export declare const IntegrationFragmentDoc: DocumentNode<IntegrationFragment, unknown>;
|
17870
19251
|
export declare const IntegrationConnectionFragmentDoc: DocumentNode<IntegrationConnectionFragment, unknown>;
|
19252
|
+
export declare const IntegrationHasScopesPayloadFragmentDoc: DocumentNode<IntegrationHasScopesPayloadFragment, unknown>;
|
17871
19253
|
export declare const IntegrationPayloadFragmentDoc: DocumentNode<IntegrationPayloadFragment, unknown>;
|
17872
19254
|
export declare const IntegrationRequestPayloadFragmentDoc: DocumentNode<IntegrationRequestPayloadFragment, unknown>;
|
17873
19255
|
export declare const IntegrationTemplateFragmentDoc: DocumentNode<IntegrationTemplateFragment, unknown>;
|
@@ -17952,7 +19334,6 @@ export declare const RoadmapPayloadFragmentDoc: DocumentNode<RoadmapPayloadFragm
|
|
17952
19334
|
export declare const RoadmapToProjectFragmentDoc: DocumentNode<RoadmapToProjectFragment, unknown>;
|
17953
19335
|
export declare const RoadmapToProjectConnectionFragmentDoc: DocumentNode<RoadmapToProjectConnectionFragment, unknown>;
|
17954
19336
|
export declare const RoadmapToProjectPayloadFragmentDoc: DocumentNode<RoadmapToProjectPayloadFragment, unknown>;
|
17955
|
-
export declare const SamlConfigurationFragmentDoc: DocumentNode<SamlConfigurationFragment, unknown>;
|
17956
19337
|
export declare const SlackChannelConnectPayloadFragmentDoc: DocumentNode<SlackChannelConnectPayloadFragment, unknown>;
|
17957
19338
|
export declare const SsoUrlFromEmailResponseFragmentDoc: DocumentNode<SsoUrlFromEmailResponseFragment, unknown>;
|
17958
19339
|
export declare const SynchronizedPayloadFragmentDoc: DocumentNode<SynchronizedPayloadFragment, unknown>;
|
@@ -17965,8 +19346,14 @@ export declare const TeamPayloadFragmentDoc: DocumentNode<TeamPayloadFragment, u
|
|
17965
19346
|
export declare const TemplateFragmentDoc: DocumentNode<TemplateFragment, unknown>;
|
17966
19347
|
export declare const TemplateConnectionFragmentDoc: DocumentNode<TemplateConnectionFragment, unknown>;
|
17967
19348
|
export declare const TemplatePayloadFragmentDoc: DocumentNode<TemplatePayloadFragment, unknown>;
|
19349
|
+
export declare const TimeScheduleEntryFragmentDoc: DocumentNode<TimeScheduleEntryFragment, unknown>;
|
19350
|
+
export declare const TimeScheduleFragmentDoc: DocumentNode<TimeScheduleFragment, unknown>;
|
19351
|
+
export declare const TimeScheduleConnectionFragmentDoc: DocumentNode<TimeScheduleConnectionFragment, unknown>;
|
19352
|
+
export declare const TimeSchedulePayloadFragmentDoc: DocumentNode<TimeSchedulePayloadFragment, unknown>;
|
19353
|
+
export declare const TriageResponsibilityManualSelectionFragmentDoc: DocumentNode<TriageResponsibilityManualSelectionFragment, unknown>;
|
17968
19354
|
export declare const TriageResponsibilityFragmentDoc: DocumentNode<TriageResponsibilityFragment, unknown>;
|
17969
19355
|
export declare const TriageResponsibilityConnectionFragmentDoc: DocumentNode<TriageResponsibilityConnectionFragment, unknown>;
|
19356
|
+
export declare const TriageResponsibilityPayloadFragmentDoc: DocumentNode<TriageResponsibilityPayloadFragment, unknown>;
|
17970
19357
|
export declare const UploadFileHeaderFragmentDoc: DocumentNode<UploadFileHeaderFragment, unknown>;
|
17971
19358
|
export declare const UploadFileFragmentDoc: DocumentNode<UploadFileFragment, unknown>;
|
17972
19359
|
export declare const UploadPayloadFragmentDoc: DocumentNode<UploadPayloadFragment, unknown>;
|
@@ -18139,13 +19526,19 @@ export declare const AvailableUsersDocument: DocumentNode<AvailableUsersQuery, E
|
|
18139
19526
|
[key: string]: never;
|
18140
19527
|
}>>;
|
18141
19528
|
export declare const CommentDocument: DocumentNode<CommentQuery, Exact<{
|
18142
|
-
|
19529
|
+
hash?: Maybe<string> | undefined;
|
19530
|
+
id?: Maybe<string> | undefined;
|
19531
|
+
issueId?: Maybe<string> | undefined;
|
18143
19532
|
}>>;
|
18144
19533
|
export declare const Comment_BotActorDocument: DocumentNode<Comment_BotActorQuery, Exact<{
|
18145
|
-
|
19534
|
+
hash?: Maybe<string> | undefined;
|
19535
|
+
id?: Maybe<string> | undefined;
|
19536
|
+
issueId?: Maybe<string> | undefined;
|
18146
19537
|
}>>;
|
18147
19538
|
export declare const Comment_ChildrenDocument: DocumentNode<Comment_ChildrenQuery, Exact<{
|
18148
|
-
|
19539
|
+
hash?: Maybe<string> | undefined;
|
19540
|
+
id?: Maybe<string> | undefined;
|
19541
|
+
issueId?: Maybe<string> | undefined;
|
18149
19542
|
after?: Maybe<string> | undefined;
|
18150
19543
|
before?: Maybe<string> | undefined;
|
18151
19544
|
filter?: Maybe<CommentFilter> | undefined;
|
@@ -18155,7 +19548,9 @@ export declare const Comment_ChildrenDocument: DocumentNode<Comment_ChildrenQuer
|
|
18155
19548
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
18156
19549
|
}>>;
|
18157
19550
|
export declare const Comment_DocumentContentDocument: DocumentNode<Comment_DocumentContentQuery, Exact<{
|
18158
|
-
|
19551
|
+
hash?: Maybe<string> | undefined;
|
19552
|
+
id?: Maybe<string> | undefined;
|
19553
|
+
issueId?: Maybe<string> | undefined;
|
18159
19554
|
}>>;
|
18160
19555
|
export declare const CommentsDocument: DocumentNode<CommentsQuery, Exact<{
|
18161
19556
|
after?: Maybe<string> | undefined;
|
@@ -18169,6 +19564,16 @@ export declare const CommentsDocument: DocumentNode<CommentsQuery, Exact<{
|
|
18169
19564
|
export declare const CustomViewDocument: DocumentNode<CustomViewQuery, Exact<{
|
18170
19565
|
id: Scalars["String"];
|
18171
19566
|
}>>;
|
19567
|
+
export declare const CustomView_IssuesDocument: DocumentNode<CustomView_IssuesQuery, Exact<{
|
19568
|
+
id: Scalars["String"];
|
19569
|
+
after?: Maybe<string> | undefined;
|
19570
|
+
before?: Maybe<string> | undefined;
|
19571
|
+
filter?: Maybe<IssueFilter> | undefined;
|
19572
|
+
first?: Maybe<number> | undefined;
|
19573
|
+
includeArchived?: Maybe<boolean> | undefined;
|
19574
|
+
last?: Maybe<number> | undefined;
|
19575
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
19576
|
+
}>>;
|
18172
19577
|
export declare const CustomViewHasSubscribersDocument: DocumentNode<CustomViewHasSubscribersQuery, Exact<{
|
18173
19578
|
id: Scalars["String"];
|
18174
19579
|
}>>;
|
@@ -18221,6 +19626,7 @@ export declare const DocumentContentHistoryDocument: DocumentNode<DocumentConten
|
|
18221
19626
|
export declare const DocumentsDocument: DocumentNode<DocumentsQuery, Exact<{
|
18222
19627
|
after?: Maybe<string> | undefined;
|
18223
19628
|
before?: Maybe<string> | undefined;
|
19629
|
+
filter?: Maybe<DocumentFilter> | undefined;
|
18224
19630
|
first?: Maybe<number> | undefined;
|
18225
19631
|
includeArchived?: Maybe<boolean> | undefined;
|
18226
19632
|
last?: Maybe<number> | undefined;
|
@@ -18237,6 +19643,17 @@ export declare const EmojisDocument: DocumentNode<EmojisQuery, Exact<{
|
|
18237
19643
|
last?: Maybe<number> | undefined;
|
18238
19644
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
18239
19645
|
}>>;
|
19646
|
+
export declare const ExternalUserDocument: DocumentNode<ExternalUserQuery, Exact<{
|
19647
|
+
id: Scalars["String"];
|
19648
|
+
}>>;
|
19649
|
+
export declare const ExternalUsersDocument: DocumentNode<ExternalUsersQuery, Exact<{
|
19650
|
+
after?: Maybe<string> | undefined;
|
19651
|
+
before?: Maybe<string> | undefined;
|
19652
|
+
first?: Maybe<number> | undefined;
|
19653
|
+
includeArchived?: Maybe<boolean> | undefined;
|
19654
|
+
last?: Maybe<number> | undefined;
|
19655
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
19656
|
+
}>>;
|
18240
19657
|
export declare const FavoriteDocument: DocumentNode<FavoriteQuery, Exact<{
|
18241
19658
|
id: Scalars["String"];
|
18242
19659
|
}>>;
|
@@ -18260,6 +19677,10 @@ export declare const FavoritesDocument: DocumentNode<FavoritesQuery, Exact<{
|
|
18260
19677
|
export declare const IntegrationDocument: DocumentNode<IntegrationQuery, Exact<{
|
18261
19678
|
id: Scalars["String"];
|
18262
19679
|
}>>;
|
19680
|
+
export declare const IntegrationHasScopesDocument: DocumentNode<IntegrationHasScopesQuery, Exact<{
|
19681
|
+
integrationId: Scalars["String"];
|
19682
|
+
scopes: Array<Scalars["String"]> | Scalars["String"];
|
19683
|
+
}>>;
|
18263
19684
|
export declare const IntegrationTemplateDocument: DocumentNode<IntegrationTemplateQuery, Exact<{
|
18264
19685
|
id: Scalars["String"];
|
18265
19686
|
}>>;
|
@@ -18533,6 +19954,7 @@ export declare const IssuesDocument: DocumentNode<IssuesQuery, Exact<{
|
|
18533
19954
|
includeArchived?: Maybe<boolean> | undefined;
|
18534
19955
|
last?: Maybe<number> | undefined;
|
18535
19956
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
19957
|
+
sort?: Maybe<IssueSortInput | IssueSortInput[]> | undefined;
|
18536
19958
|
}>>;
|
18537
19959
|
export declare const NotificationDocument: DocumentNode<NotificationQuery, Exact<{
|
18538
19960
|
id: Scalars["String"];
|
@@ -18626,6 +20048,7 @@ export declare const Project_DocumentsDocument: DocumentNode<Project_DocumentsQu
|
|
18626
20048
|
id: Scalars["String"];
|
18627
20049
|
after?: Maybe<string> | undefined;
|
18628
20050
|
before?: Maybe<string> | undefined;
|
20051
|
+
filter?: Maybe<DocumentFilter> | undefined;
|
18629
20052
|
first?: Maybe<number> | undefined;
|
18630
20053
|
includeArchived?: Maybe<boolean> | undefined;
|
18631
20054
|
last?: Maybe<number> | undefined;
|
@@ -18665,6 +20088,7 @@ export declare const Project_ProjectMilestonesDocument: DocumentNode<Project_Pro
|
|
18665
20088
|
id: Scalars["String"];
|
18666
20089
|
after?: Maybe<string> | undefined;
|
18667
20090
|
before?: Maybe<string> | undefined;
|
20091
|
+
filter?: Maybe<ProjectMilestoneFilter> | undefined;
|
18668
20092
|
first?: Maybe<number> | undefined;
|
18669
20093
|
includeArchived?: Maybe<boolean> | undefined;
|
18670
20094
|
last?: Maybe<number> | undefined;
|
@@ -18706,6 +20130,16 @@ export declare const ProjectLinksDocument: DocumentNode<ProjectLinksQuery, Exact
|
|
18706
20130
|
export declare const ProjectMilestoneDocument: DocumentNode<ProjectMilestoneQuery, Exact<{
|
18707
20131
|
id: Scalars["String"];
|
18708
20132
|
}>>;
|
20133
|
+
export declare const ProjectMilestone_IssuesDocument: DocumentNode<ProjectMilestone_IssuesQuery, Exact<{
|
20134
|
+
id: Scalars["String"];
|
20135
|
+
after?: Maybe<string> | undefined;
|
20136
|
+
before?: Maybe<string> | undefined;
|
20137
|
+
filter?: Maybe<IssueFilter> | undefined;
|
20138
|
+
first?: Maybe<number> | undefined;
|
20139
|
+
includeArchived?: Maybe<boolean> | undefined;
|
20140
|
+
last?: Maybe<number> | undefined;
|
20141
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20142
|
+
}>>;
|
18709
20143
|
export declare const ProjectMilestonesDocument: DocumentNode<ProjectMilestonesQuery, Exact<{
|
18710
20144
|
after?: Maybe<string> | undefined;
|
18711
20145
|
before?: Maybe<string> | undefined;
|
@@ -18794,6 +20228,7 @@ export declare const SearchDocumentsDocument: DocumentNode<SearchDocumentsQuery,
|
|
18794
20228
|
includeComments?: Maybe<boolean> | undefined;
|
18795
20229
|
last?: Maybe<number> | undefined;
|
18796
20230
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20231
|
+
snippetSize?: Maybe<number> | undefined;
|
18797
20232
|
teamId?: Maybe<string> | undefined;
|
18798
20233
|
term: Scalars["String"];
|
18799
20234
|
}>>;
|
@@ -18805,6 +20240,7 @@ export declare const SearchDocuments_ArchivePayloadDocument: DocumentNode<Search
|
|
18805
20240
|
includeComments?: Maybe<boolean> | undefined;
|
18806
20241
|
last?: Maybe<number> | undefined;
|
18807
20242
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20243
|
+
snippetSize?: Maybe<number> | undefined;
|
18808
20244
|
teamId?: Maybe<string> | undefined;
|
18809
20245
|
term: Scalars["String"];
|
18810
20246
|
}>>;
|
@@ -18817,6 +20253,7 @@ export declare const SearchIssuesDocument: DocumentNode<SearchIssuesQuery, Exact
|
|
18817
20253
|
includeComments?: Maybe<boolean> | undefined;
|
18818
20254
|
last?: Maybe<number> | undefined;
|
18819
20255
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20256
|
+
snippetSize?: Maybe<number> | undefined;
|
18820
20257
|
teamId?: Maybe<string> | undefined;
|
18821
20258
|
term: Scalars["String"];
|
18822
20259
|
}>>;
|
@@ -18829,6 +20266,7 @@ export declare const SearchIssues_ArchivePayloadDocument: DocumentNode<SearchIss
|
|
18829
20266
|
includeComments?: Maybe<boolean> | undefined;
|
18830
20267
|
last?: Maybe<number> | undefined;
|
18831
20268
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20269
|
+
snippetSize?: Maybe<number> | undefined;
|
18832
20270
|
teamId?: Maybe<string> | undefined;
|
18833
20271
|
term: Scalars["String"];
|
18834
20272
|
}>>;
|
@@ -18840,6 +20278,7 @@ export declare const SearchProjectsDocument: DocumentNode<SearchProjectsQuery, E
|
|
18840
20278
|
includeComments?: Maybe<boolean> | undefined;
|
18841
20279
|
last?: Maybe<number> | undefined;
|
18842
20280
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20281
|
+
snippetSize?: Maybe<number> | undefined;
|
18843
20282
|
teamId?: Maybe<string> | undefined;
|
18844
20283
|
term: Scalars["String"];
|
18845
20284
|
}>>;
|
@@ -18851,6 +20290,7 @@ export declare const SearchProjects_ArchivePayloadDocument: DocumentNode<SearchP
|
|
18851
20290
|
includeComments?: Maybe<boolean> | undefined;
|
18852
20291
|
last?: Maybe<number> | undefined;
|
18853
20292
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20293
|
+
snippetSize?: Maybe<number> | undefined;
|
18854
20294
|
teamId?: Maybe<string> | undefined;
|
18855
20295
|
term: Scalars["String"];
|
18856
20296
|
}>>;
|
@@ -18861,20 +20301,20 @@ export declare const SsoUrlFromEmailDocument: DocumentNode<SsoUrlFromEmailQuery,
|
|
18861
20301
|
export declare const TeamDocument: DocumentNode<TeamQuery, Exact<{
|
18862
20302
|
id: Scalars["String"];
|
18863
20303
|
}>>;
|
18864
|
-
export declare const
|
20304
|
+
export declare const Team_CyclesDocument: DocumentNode<Team_CyclesQuery, Exact<{
|
18865
20305
|
id: Scalars["String"];
|
18866
20306
|
after?: Maybe<string> | undefined;
|
18867
20307
|
before?: Maybe<string> | undefined;
|
20308
|
+
filter?: Maybe<CycleFilter> | undefined;
|
18868
20309
|
first?: Maybe<number> | undefined;
|
18869
20310
|
includeArchived?: Maybe<boolean> | undefined;
|
18870
20311
|
last?: Maybe<number> | undefined;
|
18871
20312
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
18872
20313
|
}>>;
|
18873
|
-
export declare const
|
20314
|
+
export declare const Team_GitAutomationStatesDocument: DocumentNode<Team_GitAutomationStatesQuery, Exact<{
|
18874
20315
|
id: Scalars["String"];
|
18875
20316
|
after?: Maybe<string> | undefined;
|
18876
20317
|
before?: Maybe<string> | undefined;
|
18877
|
-
filter?: Maybe<CycleFilter> | undefined;
|
18878
20318
|
first?: Maybe<number> | undefined;
|
18879
20319
|
includeArchived?: Maybe<boolean> | undefined;
|
18880
20320
|
last?: Maybe<number> | undefined;
|
@@ -19138,6 +20578,7 @@ export declare const AttachmentLinkDiscordDocument: DocumentNode<AttachmentLinkD
|
|
19138
20578
|
id?: Maybe<string> | undefined;
|
19139
20579
|
issueId: Scalars["String"];
|
19140
20580
|
messageId: Scalars["String"];
|
20581
|
+
title?: Maybe<string> | undefined;
|
19141
20582
|
url: Scalars["String"];
|
19142
20583
|
}>>;
|
19143
20584
|
export declare const AttachmentLinkFrontDocument: DocumentNode<AttachmentLinkFrontMutation, Exact<{
|
@@ -19146,12 +20587,14 @@ export declare const AttachmentLinkFrontDocument: DocumentNode<AttachmentLinkFro
|
|
19146
20587
|
displayIconUrl?: Maybe<string> | undefined;
|
19147
20588
|
id?: Maybe<string> | undefined;
|
19148
20589
|
issueId: Scalars["String"];
|
20590
|
+
title?: Maybe<string> | undefined;
|
19149
20591
|
}>>;
|
19150
20592
|
export declare const AttachmentLinkGitHubIssueDocument: DocumentNode<AttachmentLinkGitHubIssueMutation, Exact<{
|
19151
20593
|
createAsUser?: Maybe<string> | undefined;
|
19152
20594
|
displayIconUrl?: Maybe<string> | undefined;
|
19153
20595
|
id?: Maybe<string> | undefined;
|
19154
20596
|
issueId: Scalars["String"];
|
20597
|
+
title?: Maybe<string> | undefined;
|
19155
20598
|
url: Scalars["String"];
|
19156
20599
|
}>>;
|
19157
20600
|
export declare const AttachmentLinkGitHubPrDocument: DocumentNode<AttachmentLinkGitHubPrMutation, Exact<{
|
@@ -19162,6 +20605,7 @@ export declare const AttachmentLinkGitHubPrDocument: DocumentNode<AttachmentLink
|
|
19162
20605
|
number?: Maybe<number> | undefined;
|
19163
20606
|
owner?: Maybe<string> | undefined;
|
19164
20607
|
repo?: Maybe<string> | undefined;
|
20608
|
+
title?: Maybe<string> | undefined;
|
19165
20609
|
url: Scalars["String"];
|
19166
20610
|
}>>;
|
19167
20611
|
export declare const AttachmentLinkGitLabMrDocument: DocumentNode<AttachmentLinkGitLabMrMutation, Exact<{
|
@@ -19171,6 +20615,7 @@ export declare const AttachmentLinkGitLabMrDocument: DocumentNode<AttachmentLink
|
|
19171
20615
|
issueId: Scalars["String"];
|
19172
20616
|
number: Scalars["Float"];
|
19173
20617
|
projectPathWithNamespace: Scalars["String"];
|
20618
|
+
title?: Maybe<string> | undefined;
|
19174
20619
|
url: Scalars["String"];
|
19175
20620
|
}>>;
|
19176
20621
|
export declare const AttachmentLinkIntercomDocument: DocumentNode<AttachmentLinkIntercomMutation, Exact<{
|
@@ -19179,6 +20624,7 @@ export declare const AttachmentLinkIntercomDocument: DocumentNode<AttachmentLink
|
|
19179
20624
|
displayIconUrl?: Maybe<string> | undefined;
|
19180
20625
|
id?: Maybe<string> | undefined;
|
19181
20626
|
issueId: Scalars["String"];
|
20627
|
+
title?: Maybe<string> | undefined;
|
19182
20628
|
}>>;
|
19183
20629
|
export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLinkJiraIssueMutation, Exact<{
|
19184
20630
|
issueId: Scalars["String"];
|
@@ -19209,6 +20655,7 @@ export declare const AttachmentLinkZendeskDocument: DocumentNode<AttachmentLinkZ
|
|
19209
20655
|
id?: Maybe<string> | undefined;
|
19210
20656
|
issueId: Scalars["String"];
|
19211
20657
|
ticketId: Scalars["String"];
|
20658
|
+
title?: Maybe<string> | undefined;
|
19212
20659
|
}>>;
|
19213
20660
|
export declare const AttachmentUnsyncSlackDocument: DocumentNode<AttachmentUnsyncSlackMutation, Exact<{
|
19214
20661
|
id: Scalars["String"];
|
@@ -19281,6 +20728,19 @@ export declare const UpdateDocumentDocument: DocumentNode<UpdateDocumentMutation
|
|
19281
20728
|
id: Scalars["String"];
|
19282
20729
|
input: DocumentUpdateInput;
|
19283
20730
|
}>>;
|
20731
|
+
export declare const CreateEmailIntakeAddressDocument: DocumentNode<CreateEmailIntakeAddressMutation, Exact<{
|
20732
|
+
input: EmailIntakeAddressCreateInput;
|
20733
|
+
}>>;
|
20734
|
+
export declare const DeleteEmailIntakeAddressDocument: DocumentNode<DeleteEmailIntakeAddressMutation, Exact<{
|
20735
|
+
id: Scalars["String"];
|
20736
|
+
}>>;
|
20737
|
+
export declare const EmailIntakeAddressRotateDocument: DocumentNode<EmailIntakeAddressRotateMutation, Exact<{
|
20738
|
+
id: Scalars["String"];
|
20739
|
+
}>>;
|
20740
|
+
export declare const UpdateEmailIntakeAddressDocument: DocumentNode<UpdateEmailIntakeAddressMutation, Exact<{
|
20741
|
+
id: Scalars["String"];
|
20742
|
+
input: EmailIntakeAddressUpdateInput;
|
20743
|
+
}>>;
|
19284
20744
|
export declare const EmailTokenUserAccountAuthDocument: DocumentNode<EmailTokenUserAccountAuthMutation, Exact<{
|
19285
20745
|
input: TokenUserAccountAuthInput;
|
19286
20746
|
}>>;
|
@@ -19323,6 +20783,16 @@ export declare const UpdateGitAutomationStateDocument: DocumentNode<UpdateGitAut
|
|
19323
20783
|
id: Scalars["String"];
|
19324
20784
|
input: GitAutomationStateUpdateInput;
|
19325
20785
|
}>>;
|
20786
|
+
export declare const CreateGitAutomationTargetBranchDocument: DocumentNode<CreateGitAutomationTargetBranchMutation, Exact<{
|
20787
|
+
input: GitAutomationTargetBranchCreateInput;
|
20788
|
+
}>>;
|
20789
|
+
export declare const DeleteGitAutomationTargetBranchDocument: DocumentNode<DeleteGitAutomationTargetBranchMutation, Exact<{
|
20790
|
+
id: Scalars["String"];
|
20791
|
+
}>>;
|
20792
|
+
export declare const UpdateGitAutomationTargetBranchDocument: DocumentNode<UpdateGitAutomationTargetBranchMutation, Exact<{
|
20793
|
+
id: Scalars["String"];
|
20794
|
+
input: GitAutomationTargetBranchUpdateInput;
|
20795
|
+
}>>;
|
19326
20796
|
export declare const GoogleUserAccountAuthDocument: DocumentNode<GoogleUserAccountAuthMutation, Exact<{
|
19327
20797
|
input: GoogleUserAccountAuthInput;
|
19328
20798
|
}>>;
|
@@ -19335,6 +20805,9 @@ export declare const ImportFileUploadDocument: DocumentNode<ImportFileUploadMuta
|
|
19335
20805
|
metaData?: Maybe<Record<string, unknown>> | undefined;
|
19336
20806
|
size: Scalars["Int"];
|
19337
20807
|
}>>;
|
20808
|
+
export declare const ArchiveIntegrationDocument: DocumentNode<ArchiveIntegrationMutation, Exact<{
|
20809
|
+
id: Scalars["String"];
|
20810
|
+
}>>;
|
19338
20811
|
export declare const IntegrationAsksConnectChannelDocument: DocumentNode<IntegrationAsksConnectChannelMutation, Exact<{
|
19339
20812
|
code: Scalars["String"];
|
19340
20813
|
redirectUri: Scalars["String"];
|