@linear/sdk 2.5.0 → 3.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/CHANGELOG.md +118 -0
- package/dist/_generated_documents.d.ts +281 -23
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +131 -5
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +660 -21
- 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 +655 -22
- 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 +661 -22
- 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/dist/webhooks.d.ts +1 -1
- package/dist/webhooks.d.ts.map +1 -1
- package/package.json +1 -1
@@ -125,7 +125,7 @@ export declare type Attachment = Node & {
|
|
125
125
|
/** Information about the source which created the attachment. */
|
126
126
|
source?: Maybe<Scalars["JSONObject"]>;
|
127
127
|
/** An accessor helper to source.type, defines the source type of the attachment. */
|
128
|
-
sourceType?: Maybe<Scalars["
|
128
|
+
sourceType?: Maybe<Scalars["String"]>;
|
129
129
|
/** Content for the subtitle line in the Linear attachment widget. */
|
130
130
|
subtitle?: Maybe<Scalars["String"]>;
|
131
131
|
/** Content for the title line in the Linear attachment widget. */
|
@@ -376,6 +376,8 @@ export declare type Comment = Node & {
|
|
376
376
|
createdAt: Scalars["DateTime"];
|
377
377
|
/** The time user edited the comment. */
|
378
378
|
editedAt?: Maybe<Scalars["DateTime"]>;
|
379
|
+
/** [ALPHA] The external user who wrote the comment. */
|
380
|
+
externalUser?: Maybe<ExternalUser>;
|
379
381
|
/** The unique identifier of the entity. */
|
380
382
|
id: Scalars["ID"];
|
381
383
|
/** The issue that the comment is associated with. */
|
@@ -583,6 +585,8 @@ export declare type CustomView = Node & {
|
|
583
585
|
name: Scalars["String"];
|
584
586
|
/** The organization of the custom view. */
|
585
587
|
organization: Organization;
|
588
|
+
/** [ALPHA] The filter applied to projects in the custom view. */
|
589
|
+
projectFilterData?: Maybe<Scalars["JSONObject"]>;
|
586
590
|
/** Whether the custom view is shared with everyone in the organization. */
|
587
591
|
shared: Scalars["Boolean"];
|
588
592
|
/** The team associated with the custom view. */
|
@@ -615,6 +619,8 @@ export declare type CustomViewCreateInput = {
|
|
615
619
|
id?: Maybe<Scalars["String"]>;
|
616
620
|
/** The name of the custom view. */
|
617
621
|
name: Scalars["String"];
|
622
|
+
/** [ALPHA] The project filter applied to issues in the custom view. */
|
623
|
+
projectFilterData?: Maybe<Scalars["JSONObject"]>;
|
618
624
|
/** Whether the custom view is shared with everyone in the organization. */
|
619
625
|
shared?: Maybe<Scalars["Boolean"]>;
|
620
626
|
/** The id of the team associated with the custom view. */
|
@@ -635,6 +641,15 @@ export declare type CustomViewPayload = {
|
|
635
641
|
/** Whether the operation was successful. */
|
636
642
|
success: Scalars["Boolean"];
|
637
643
|
};
|
644
|
+
export declare type CustomViewSuggestionPayload = {
|
645
|
+
__typename?: "CustomViewSuggestionPayload";
|
646
|
+
/** The suggested view description. */
|
647
|
+
suggestedDescription?: Maybe<Scalars["String"]>;
|
648
|
+
/** The suggested view icon. */
|
649
|
+
suggestedIcon?: Maybe<Scalars["String"]>;
|
650
|
+
/** The suggested view name. */
|
651
|
+
suggestedName?: Maybe<Scalars["String"]>;
|
652
|
+
};
|
638
653
|
export declare type CustomViewUpdateInput = {
|
639
654
|
/** The color of the icon of the custom view. */
|
640
655
|
color?: Maybe<Scalars["String"]>;
|
@@ -648,6 +663,8 @@ export declare type CustomViewUpdateInput = {
|
|
648
663
|
icon?: Maybe<Scalars["String"]>;
|
649
664
|
/** The name of the custom view. */
|
650
665
|
name?: Maybe<Scalars["String"]>;
|
666
|
+
/** [ALPHA] The project filter applied to issues in the custom view. */
|
667
|
+
projectFilterData?: Maybe<Scalars["JSONObject"]>;
|
651
668
|
/** Whether the custom view is shared with everyone in the organization. */
|
652
669
|
shared?: Maybe<Scalars["Boolean"]>;
|
653
670
|
/** The id of the team associated with the custom view. */
|
@@ -1076,6 +1093,46 @@ export declare type EventPayload = {
|
|
1076
1093
|
/** Whether the operation was successful. */
|
1077
1094
|
success: Scalars["Boolean"];
|
1078
1095
|
};
|
1096
|
+
/** [ALPHA] 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. */
|
1097
|
+
export declare type ExternalUser = Node & {
|
1098
|
+
__typename?: "ExternalUser";
|
1099
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
1100
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
1101
|
+
/** An URL to the external user's avatar image. */
|
1102
|
+
avatarUrl?: Maybe<Scalars["String"]>;
|
1103
|
+
/** The time at which the entity was created. */
|
1104
|
+
createdAt: Scalars["DateTime"];
|
1105
|
+
/** The external user's display name. Unique within each organization. Can match the display name of an actual user. */
|
1106
|
+
displayName: Scalars["String"];
|
1107
|
+
/** The external user's email address. */
|
1108
|
+
email: Scalars["String"];
|
1109
|
+
/** The unique identifier of the entity. */
|
1110
|
+
id: Scalars["ID"];
|
1111
|
+
/** The last time the external user was seen interacting with Linear. */
|
1112
|
+
lastSeen?: Maybe<Scalars["DateTime"]>;
|
1113
|
+
/** The external user's full name. */
|
1114
|
+
name: Scalars["String"];
|
1115
|
+
/** Organization the external user belongs to. */
|
1116
|
+
organization: Organization;
|
1117
|
+
/**
|
1118
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
1119
|
+
* 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
|
1120
|
+
* been updated after creation.
|
1121
|
+
*/
|
1122
|
+
updatedAt: Scalars["DateTime"];
|
1123
|
+
};
|
1124
|
+
export declare type ExternalUserConnection = {
|
1125
|
+
__typename?: "ExternalUserConnection";
|
1126
|
+
edges: Array<ExternalUserEdge>;
|
1127
|
+
nodes: Array<ExternalUser>;
|
1128
|
+
pageInfo: PageInfo;
|
1129
|
+
};
|
1130
|
+
export declare type ExternalUserEdge = {
|
1131
|
+
__typename?: "ExternalUserEdge";
|
1132
|
+
/** Used in `before` and `after` args */
|
1133
|
+
cursor: Scalars["String"];
|
1134
|
+
node: ExternalUser;
|
1135
|
+
};
|
1079
1136
|
/** User favorites presented in the sidebar. */
|
1080
1137
|
export declare type Favorite = Node & {
|
1081
1138
|
__typename?: "Favorite";
|
@@ -1659,6 +1716,8 @@ export declare type Issue = Node & {
|
|
1659
1716
|
dueDate?: Maybe<Scalars["TimelessDate"]>;
|
1660
1717
|
/** The estimate of the complexity of the issue.. */
|
1661
1718
|
estimate?: Maybe<Scalars["Float"]>;
|
1719
|
+
/** [ALPHA] The external user who created the issue. */
|
1720
|
+
externalUserCreator?: Maybe<ExternalUser>;
|
1662
1721
|
/** History entries associated with the issue. */
|
1663
1722
|
history: IssueHistoryConnection;
|
1664
1723
|
/** The unique identifier of the entity. */
|
@@ -1675,13 +1734,13 @@ export declare type Issue = Node & {
|
|
1675
1734
|
parent?: Maybe<Issue>;
|
1676
1735
|
/** Previous identifiers of the issue if it has been moved between teams. */
|
1677
1736
|
previousIdentifiers: Array<Scalars["String"]>;
|
1678
|
-
/** The priority of the issue. */
|
1737
|
+
/** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
|
1679
1738
|
priority: Scalars["Float"];
|
1680
1739
|
/** Label for the priority. */
|
1681
1740
|
priorityLabel: Scalars["String"];
|
1682
1741
|
/** The project that the issue is associated with. */
|
1683
1742
|
project?: Maybe<Project>;
|
1684
|
-
/**
|
1743
|
+
/** The projectMilestone that the issue is associated with. */
|
1685
1744
|
projectMilestone?: Maybe<ProjectMilestone>;
|
1686
1745
|
/** Relations associated with this issue. */
|
1687
1746
|
relations: IssueRelationConnection;
|
@@ -1867,7 +1926,7 @@ export declare type IssueCollectionFilter = {
|
|
1867
1926
|
priority?: Maybe<NullableNumberComparator>;
|
1868
1927
|
/** Filters that the issues project must satisfy. */
|
1869
1928
|
project?: Maybe<NullableProjectFilter>;
|
1870
|
-
/**
|
1929
|
+
/** Filters that the issues project milestone must satisfy. */
|
1871
1930
|
projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
|
1872
1931
|
/** [Internal] Comparator for the issues content. */
|
1873
1932
|
searchableContent?: Maybe<ContentComparator>;
|
@@ -1889,6 +1948,8 @@ export declare type IssueCollectionFilter = {
|
|
1889
1948
|
team?: Maybe<TeamFilter>;
|
1890
1949
|
/** Comparator for the issues title. */
|
1891
1950
|
title?: Maybe<StringComparator>;
|
1951
|
+
/** Comparator for the issues triaged at date. */
|
1952
|
+
triagedAt?: Maybe<NullableDateComparator>;
|
1892
1953
|
/** Comparator for the updated at date. */
|
1893
1954
|
updatedAt?: Maybe<DateComparator>;
|
1894
1955
|
};
|
@@ -1925,11 +1986,11 @@ export declare type IssueCreateInput = {
|
|
1925
1986
|
labelIds?: Maybe<Array<Scalars["String"]>>;
|
1926
1987
|
/** The identifier of the parent issue. */
|
1927
1988
|
parentId?: Maybe<Scalars["String"]>;
|
1928
|
-
/** The priority of the issue. */
|
1989
|
+
/** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
|
1929
1990
|
priority?: Maybe<Scalars["Int"]>;
|
1930
1991
|
/** The project associated with the issue. */
|
1931
1992
|
projectId?: Maybe<Scalars["String"]>;
|
1932
|
-
/**
|
1993
|
+
/** The project milestone associated with the issue. */
|
1933
1994
|
projectMilestoneId?: Maybe<Scalars["String"]>;
|
1934
1995
|
/** The comment the issue is referencing. */
|
1935
1996
|
referenceCommentId?: Maybe<Scalars["String"]>;
|
@@ -1983,6 +2044,8 @@ export declare type IssueDraft = Node & {
|
|
1983
2044
|
priorityLabel: Scalars["String"];
|
1984
2045
|
/** The project associated with the draft. */
|
1985
2046
|
projectId?: Maybe<Scalars["String"]>;
|
2047
|
+
/** The project milestone associated with the draft. */
|
2048
|
+
projectMilestoneId?: Maybe<Scalars["String"]>;
|
1986
2049
|
/** The workflow state associated with the draft. */
|
1987
2050
|
stateId: Scalars["String"];
|
1988
2051
|
/** The order of items in the sub-draft list. Only set if the draft has `parent` set. */
|
@@ -2058,7 +2121,7 @@ export declare type IssueFilter = {
|
|
2058
2121
|
priority?: Maybe<NullableNumberComparator>;
|
2059
2122
|
/** Filters that the issues project must satisfy. */
|
2060
2123
|
project?: Maybe<NullableProjectFilter>;
|
2061
|
-
/**
|
2124
|
+
/** Filters that the issues project milestone must satisfy. */
|
2062
2125
|
projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
|
2063
2126
|
/** [Internal] Comparator for the issues content. */
|
2064
2127
|
searchableContent?: Maybe<ContentComparator>;
|
@@ -2078,6 +2141,8 @@ export declare type IssueFilter = {
|
|
2078
2141
|
team?: Maybe<TeamFilter>;
|
2079
2142
|
/** Comparator for the issues title. */
|
2080
2143
|
title?: Maybe<StringComparator>;
|
2144
|
+
/** Comparator for the issues triaged at date. */
|
2145
|
+
triagedAt?: Maybe<NullableDateComparator>;
|
2081
2146
|
/** Comparator for the updated at date. */
|
2082
2147
|
updatedAt?: Maybe<DateComparator>;
|
2083
2148
|
};
|
@@ -2566,11 +2631,11 @@ export declare type IssueUpdateInput = {
|
|
2566
2631
|
labelIds?: Maybe<Array<Scalars["String"]>>;
|
2567
2632
|
/** The identifier of the parent issue. */
|
2568
2633
|
parentId?: Maybe<Scalars["String"]>;
|
2569
|
-
/** The priority of the issue. */
|
2634
|
+
/** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
|
2570
2635
|
priority?: Maybe<Scalars["Int"]>;
|
2571
2636
|
/** The project associated with the issue. */
|
2572
2637
|
projectId?: Maybe<Scalars["String"]>;
|
2573
|
-
/**
|
2638
|
+
/** The project milestone associated with the issue. */
|
2574
2639
|
projectMilestoneId?: Maybe<Scalars["String"]>;
|
2575
2640
|
/** [Internal] The timestamp at which an issue will be considered in breach of SLA. */
|
2576
2641
|
slaBreachesAt?: Maybe<Scalars["DateTime"]>;
|
@@ -2894,6 +2959,8 @@ export declare type Mutation = {
|
|
2894
2959
|
organizationInviteDelete: ArchivePayload;
|
2895
2960
|
/** Updates an organization invite. */
|
2896
2961
|
organizationInviteUpdate: OrganizationInvitePayload;
|
2962
|
+
/** Starts a plus trial for the organization. Administrator privileges required. */
|
2963
|
+
organizationStartPlusTrial: OrganizationStartPlusTrialPayload;
|
2897
2964
|
/** Updates the user's organization. */
|
2898
2965
|
organizationUpdate: OrganizationPayload;
|
2899
2966
|
/**
|
@@ -2943,6 +3010,8 @@ export declare type Mutation = {
|
|
2943
3010
|
refreshGoogleSheetsData: IntegrationPayload;
|
2944
3011
|
/** Re-send an organization invite. */
|
2945
3012
|
resendOrganizationInvite: ArchivePayload;
|
3013
|
+
/** Archives a roadmap. */
|
3014
|
+
roadmapArchive: ArchivePayload;
|
2946
3015
|
/** Creates a new roadmap. */
|
2947
3016
|
roadmapCreate: RoadmapPayload;
|
2948
3017
|
/** Deletes a roadmap. */
|
@@ -2953,6 +3022,8 @@ export declare type Mutation = {
|
|
2953
3022
|
roadmapToProjectDelete: ArchivePayload;
|
2954
3023
|
/** Updates a roadmapToProject. */
|
2955
3024
|
roadmapToProjectUpdate: RoadmapToProjectPayload;
|
3025
|
+
/** Unarchives a roadmap. */
|
3026
|
+
roadmapUnarchive: ArchivePayload;
|
2956
3027
|
/** Updates a roadmap. */
|
2957
3028
|
roadmapUpdate: RoadmapPayload;
|
2958
3029
|
/** Authenticates a user account via email and authentication token for SAML. */
|
@@ -3508,6 +3579,9 @@ export declare type MutationRefreshGoogleSheetsDataArgs = {
|
|
3508
3579
|
export declare type MutationResendOrganizationInviteArgs = {
|
3509
3580
|
id: Scalars["String"];
|
3510
3581
|
};
|
3582
|
+
export declare type MutationRoadmapArchiveArgs = {
|
3583
|
+
id: Scalars["String"];
|
3584
|
+
};
|
3511
3585
|
export declare type MutationRoadmapCreateArgs = {
|
3512
3586
|
input: RoadmapCreateInput;
|
3513
3587
|
};
|
@@ -3524,6 +3598,9 @@ export declare type MutationRoadmapToProjectUpdateArgs = {
|
|
3524
3598
|
id: Scalars["String"];
|
3525
3599
|
input: RoadmapToProjectUpdateInput;
|
3526
3600
|
};
|
3601
|
+
export declare type MutationRoadmapUnarchiveArgs = {
|
3602
|
+
id: Scalars["String"];
|
3603
|
+
};
|
3527
3604
|
export declare type MutationRoadmapUpdateArgs = {
|
3528
3605
|
id: Scalars["String"];
|
3529
3606
|
input: RoadmapUpdateInput;
|
@@ -3904,7 +3981,7 @@ export declare type NullableIssueFilter = {
|
|
3904
3981
|
priority?: Maybe<NullableNumberComparator>;
|
3905
3982
|
/** Filters that the issues project must satisfy. */
|
3906
3983
|
project?: Maybe<NullableProjectFilter>;
|
3907
|
-
/**
|
3984
|
+
/** Filters that the issues project milestone must satisfy. */
|
3908
3985
|
projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
|
3909
3986
|
/** [Internal] Comparator for the issues content. */
|
3910
3987
|
searchableContent?: Maybe<ContentComparator>;
|
@@ -3924,6 +4001,8 @@ export declare type NullableIssueFilter = {
|
|
3924
4001
|
team?: Maybe<TeamFilter>;
|
3925
4002
|
/** Comparator for the issues title. */
|
3926
4003
|
title?: Maybe<StringComparator>;
|
4004
|
+
/** Comparator for the issues triaged at date. */
|
4005
|
+
triagedAt?: Maybe<NullableDateComparator>;
|
3927
4006
|
/** Comparator for the updated at date. */
|
3928
4007
|
updatedAt?: Maybe<DateComparator>;
|
3929
4008
|
};
|
@@ -3983,7 +4062,7 @@ export declare type NullableProjectFilter = {
|
|
3983
4062
|
/** Comparator for the updated at date. */
|
3984
4063
|
updatedAt?: Maybe<DateComparator>;
|
3985
4064
|
};
|
3986
|
-
/**
|
4065
|
+
/** Project milestone filtering options. */
|
3987
4066
|
export declare type NullableProjectMilestoneFilter = {
|
3988
4067
|
/** Compound filters, all of which need to be matched by the project milestone. */
|
3989
4068
|
and?: Maybe<Array<NullableProjectMilestoneFilter>>;
|
@@ -4283,6 +4362,8 @@ export declare type Organization = Node & {
|
|
4283
4362
|
teams: TeamConnection;
|
4284
4363
|
/** Templates associated with the organization. */
|
4285
4364
|
templates: TemplateConnection;
|
4365
|
+
/** The time at which the trial of the plus plan will end. */
|
4366
|
+
trialEndsAt?: Maybe<Scalars["DateTime"]>;
|
4286
4367
|
/**
|
4287
4368
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
4288
4369
|
* 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
|
@@ -4531,6 +4612,11 @@ export declare type OrganizationPayload = {
|
|
4531
4612
|
/** Whether the operation was successful. */
|
4532
4613
|
success: Scalars["Boolean"];
|
4533
4614
|
};
|
4615
|
+
export declare type OrganizationStartPlusTrialPayload = {
|
4616
|
+
__typename?: "OrganizationStartPlusTrialPayload";
|
4617
|
+
/** Whether the operation was successful. */
|
4618
|
+
success: Scalars["Boolean"];
|
4619
|
+
};
|
4534
4620
|
export declare type PageInfo = {
|
4535
4621
|
__typename?: "PageInfo";
|
4536
4622
|
/** Cursor representing the last result in the paginated results. */
|
@@ -4650,7 +4736,7 @@ export declare type Project = Node & {
|
|
4650
4736
|
name: Scalars["String"];
|
4651
4737
|
/** The overall progress of the project. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points. */
|
4652
4738
|
progress: Scalars["Float"];
|
4653
|
-
/**
|
4739
|
+
/** Milestones associated with the project. */
|
4654
4740
|
projectMilestones: ProjectMilestoneConnection;
|
4655
4741
|
/** The time until which project update reminders are paused. */
|
4656
4742
|
projectUpdateRemindersPausedUntilAt?: Maybe<Scalars["DateTime"]>;
|
@@ -4668,7 +4754,7 @@ export declare type Project = Node & {
|
|
4668
4754
|
slackNewIssue: Scalars["Boolean"];
|
4669
4755
|
/** The project's unique URL slug. */
|
4670
4756
|
slugId: Scalars["String"];
|
4671
|
-
/** The sort order for the project within the
|
4757
|
+
/** The sort order for the project within the organization. */
|
4672
4758
|
sortOrder: Scalars["Float"];
|
4673
4759
|
/** [Internal] The estimated start date of the project. */
|
4674
4760
|
startDate?: Maybe<Scalars["TimelessDate"]>;
|
@@ -5364,6 +5450,8 @@ export declare type Query = {
|
|
5364
5450
|
comments: CommentConnection;
|
5365
5451
|
/** One specific custom view. */
|
5366
5452
|
customView: CustomView;
|
5453
|
+
/** [INTERNAL] Suggests metadata for a view based on it's filters. */
|
5454
|
+
customViewSuggestion: CustomViewSuggestionPayload;
|
5367
5455
|
/** Custom views for the user. */
|
5368
5456
|
customViews: CustomViewConnection;
|
5369
5457
|
/** One specific cycle. */
|
@@ -5378,6 +5466,10 @@ export declare type Query = {
|
|
5378
5466
|
emoji: Emoji;
|
5379
5467
|
/** All custom emojis. */
|
5380
5468
|
emojis: EmojiConnection;
|
5469
|
+
/** One specific external user. */
|
5470
|
+
externalUser: ExternalUser;
|
5471
|
+
/** All external users for the organization. */
|
5472
|
+
externalUsers: ExternalUserConnection;
|
5381
5473
|
/** One specific favorite. */
|
5382
5474
|
favorite: Favorite;
|
5383
5475
|
/** The user's favorites. */
|
@@ -5585,6 +5677,9 @@ export declare type QueryCommentsArgs = {
|
|
5585
5677
|
export declare type QueryCustomViewArgs = {
|
5586
5678
|
id: Scalars["String"];
|
5587
5679
|
};
|
5680
|
+
export declare type QueryCustomViewSuggestionArgs = {
|
5681
|
+
filter: Scalars["JSONObject"];
|
5682
|
+
};
|
5588
5683
|
export declare type QueryCustomViewsArgs = {
|
5589
5684
|
after?: Maybe<Scalars["String"]>;
|
5590
5685
|
before?: Maybe<Scalars["String"]>;
|
@@ -5627,6 +5722,17 @@ export declare type QueryEmojisArgs = {
|
|
5627
5722
|
last?: Maybe<Scalars["Int"]>;
|
5628
5723
|
orderBy?: Maybe<PaginationOrderBy>;
|
5629
5724
|
};
|
5725
|
+
export declare type QueryExternalUserArgs = {
|
5726
|
+
id: Scalars["String"];
|
5727
|
+
};
|
5728
|
+
export declare type QueryExternalUsersArgs = {
|
5729
|
+
after?: Maybe<Scalars["String"]>;
|
5730
|
+
before?: Maybe<Scalars["String"]>;
|
5731
|
+
first?: Maybe<Scalars["Int"]>;
|
5732
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
5733
|
+
last?: Maybe<Scalars["Int"]>;
|
5734
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
5735
|
+
};
|
5630
5736
|
export declare type QueryFavoriteArgs = {
|
5631
5737
|
id: Scalars["String"];
|
5632
5738
|
};
|
@@ -5704,7 +5810,7 @@ export declare type QueryIssueSearchArgs = {
|
|
5704
5810
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
5705
5811
|
last?: Maybe<Scalars["Int"]>;
|
5706
5812
|
orderBy?: Maybe<PaginationOrderBy>;
|
5707
|
-
query
|
5813
|
+
query?: Maybe<Scalars["String"]>;
|
5708
5814
|
};
|
5709
5815
|
export declare type QueryIssueVcsBranchSearchArgs = {
|
5710
5816
|
branchName: Scalars["String"];
|
@@ -5938,7 +6044,7 @@ export declare type Reaction = Node & {
|
|
5938
6044
|
*/
|
5939
6045
|
updatedAt: Scalars["DateTime"];
|
5940
6046
|
/** The user who reacted. */
|
5941
|
-
user
|
6047
|
+
user?: Maybe<User>;
|
5942
6048
|
};
|
5943
6049
|
export declare type ReactionConnection = {
|
5944
6050
|
__typename?: "ReactionConnection";
|
@@ -5988,6 +6094,8 @@ export declare type Roadmap = Node & {
|
|
5988
6094
|
__typename?: "Roadmap";
|
5989
6095
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
5990
6096
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
6097
|
+
/** The roadmap's color. */
|
6098
|
+
color?: Maybe<Scalars["String"]>;
|
5991
6099
|
/** The time at which the entity was created. */
|
5992
6100
|
createdAt: Scalars["DateTime"];
|
5993
6101
|
/** The user who created the roadmap. */
|
@@ -6006,6 +6114,8 @@ export declare type Roadmap = Node & {
|
|
6006
6114
|
projects: ProjectConnection;
|
6007
6115
|
/** The roadmap's unique URL slug. */
|
6008
6116
|
slugId: Scalars["String"];
|
6117
|
+
/** The sort order of the roadmap within the organization. */
|
6118
|
+
sortOrder: Scalars["Float"];
|
6009
6119
|
/**
|
6010
6120
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
6011
6121
|
* 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
|
@@ -6055,6 +6165,8 @@ export declare type RoadmapConnection = {
|
|
6055
6165
|
pageInfo: PageInfo;
|
6056
6166
|
};
|
6057
6167
|
export declare type RoadmapCreateInput = {
|
6168
|
+
/** The roadmap's color. */
|
6169
|
+
color?: Maybe<Scalars["String"]>;
|
6058
6170
|
/** The description of the roadmap. */
|
6059
6171
|
description?: Maybe<Scalars["String"]>;
|
6060
6172
|
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
@@ -6063,6 +6175,8 @@ export declare type RoadmapCreateInput = {
|
|
6063
6175
|
name: Scalars["String"];
|
6064
6176
|
/** The owner of the roadmap */
|
6065
6177
|
ownerId?: Maybe<Scalars["String"]>;
|
6178
|
+
/** The sort order of the roadmap within the organization. */
|
6179
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
6066
6180
|
};
|
6067
6181
|
export declare type RoadmapEdge = {
|
6068
6182
|
__typename?: "RoadmapEdge";
|
@@ -6156,12 +6270,16 @@ export declare type RoadmapToProjectUpdateInput = {
|
|
6156
6270
|
sortOrder?: Maybe<Scalars["Float"]>;
|
6157
6271
|
};
|
6158
6272
|
export declare type RoadmapUpdateInput = {
|
6273
|
+
/** The roadmap's color. */
|
6274
|
+
color?: Maybe<Scalars["String"]>;
|
6159
6275
|
/** The description of the roadmap. */
|
6160
6276
|
description?: Maybe<Scalars["String"]>;
|
6161
6277
|
/** The name of the roadmap. */
|
6162
6278
|
name?: Maybe<Scalars["String"]>;
|
6163
6279
|
/** The owner of the roadmap */
|
6164
6280
|
ownerId?: Maybe<Scalars["String"]>;
|
6281
|
+
/** The sort order of the roadmap within the organization. */
|
6282
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
6165
6283
|
};
|
6166
6284
|
export declare type SamlConfiguration = {
|
6167
6285
|
__typename?: "SamlConfiguration";
|
@@ -6213,6 +6331,7 @@ export declare type SentrySettingsInput = {
|
|
6213
6331
|
export declare enum SlaStatus {
|
6214
6332
|
Breached = "Breached",
|
6215
6333
|
Completed = "Completed",
|
6334
|
+
Failed = "Failed",
|
6216
6335
|
HighRisk = "HighRisk",
|
6217
6336
|
LowRisk = "LowRisk",
|
6218
6337
|
MediumRisk = "MediumRisk"
|
@@ -7041,7 +7160,7 @@ export declare type User = Node & {
|
|
7041
7160
|
assignedIssues: IssueConnection;
|
7042
7161
|
/** An URL to the user's avatar image. */
|
7043
7162
|
avatarUrl?: Maybe<Scalars["String"]>;
|
7044
|
-
/** Hash for the user to be used in calendar URLs. */
|
7163
|
+
/** [DEPRECATED] Hash for the user to be used in calendar URLs. */
|
7045
7164
|
calendarHash?: Maybe<Scalars["String"]>;
|
7046
7165
|
/** The time at which the entity was created. */
|
7047
7166
|
createdAt: Scalars["DateTime"];
|
@@ -7292,6 +7411,7 @@ export declare enum UserFlagType {
|
|
7292
7411
|
CycleWelcomeDismissed = "cycleWelcomeDismissed",
|
7293
7412
|
DesktopDownloadToastDismissed = "desktopDownloadToastDismissed",
|
7294
7413
|
DesktopInstalled = "desktopInstalled",
|
7414
|
+
DesktopTabsOnboardingDismissed = "desktopTabsOnboardingDismissed",
|
7295
7415
|
DueDateShortcutMigration = "dueDateShortcutMigration",
|
7296
7416
|
EmptyActiveIssuesDismissed = "emptyActiveIssuesDismissed",
|
7297
7417
|
EmptyBacklogDismissed = "emptyBacklogDismissed",
|
@@ -7299,12 +7419,14 @@ export declare enum UserFlagType {
|
|
7299
7419
|
EmptyMyIssuesDismissed = "emptyMyIssuesDismissed",
|
7300
7420
|
FigmaPromptDismissed = "figmaPromptDismissed",
|
7301
7421
|
ImportBannerDismissed = "importBannerDismissed",
|
7422
|
+
InsightsHelpDismissed = "insightsHelpDismissed",
|
7302
7423
|
InsightsWelcomeDismissed = "insightsWelcomeDismissed",
|
7303
7424
|
IssueLabelSuggestionUsed = "issueLabelSuggestionUsed",
|
7304
7425
|
IssueMovePromptCompleted = "issueMovePromptCompleted",
|
7305
7426
|
JoinTeamIntroductionDismissed = "joinTeamIntroductionDismissed",
|
7306
7427
|
ListSelectionTip = "listSelectionTip",
|
7307
7428
|
MigrateThemePreference = "migrateThemePreference",
|
7429
|
+
MilestoneOnboardingIsSeenAndDismissed = "milestoneOnboardingIsSeenAndDismissed",
|
7308
7430
|
ProjectBacklogWelcomeDismissed = "projectBacklogWelcomeDismissed",
|
7309
7431
|
ProjectUpdatesWelcomeDismissed = "projectUpdatesWelcomeDismissed",
|
7310
7432
|
ProjectWelcomeDismissed = "projectWelcomeDismissed",
|
@@ -7341,6 +7463,8 @@ export declare type UserSettings = Node & {
|
|
7341
7463
|
__typename?: "UserSettings";
|
7342
7464
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
7343
7465
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
7466
|
+
/** Hash for the user to be used in calendar URLs. */
|
7467
|
+
calendarHash?: Maybe<Scalars["String"]>;
|
7344
7468
|
/** The time at which the entity was created. */
|
7345
7469
|
createdAt: Scalars["DateTime"];
|
7346
7470
|
/** The unique identifier of the entity. */
|
@@ -7481,6 +7605,7 @@ export declare enum ViewType {
|
|
7481
7605
|
RoadmapAll = "roadmapAll",
|
7482
7606
|
RoadmapBacklog = "roadmapBacklog",
|
7483
7607
|
RoadmapClosed = "roadmapClosed",
|
7608
|
+
Roadmaps = "roadmaps",
|
7484
7609
|
Search = "search",
|
7485
7610
|
Teams = "teams",
|
7486
7611
|
Triage = "triage",
|
@@ -8006,9 +8131,9 @@ export declare type ProjectFragment = {
|
|
8006
8131
|
export declare type ReactionFragment = {
|
8007
8132
|
__typename: "Reaction";
|
8008
8133
|
} & Pick<Reaction, "emoji" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
|
8009
|
-
user
|
8134
|
+
user?: Maybe<{
|
8010
8135
|
__typename?: "User";
|
8011
|
-
} & Pick<User, "id"
|
8136
|
+
} & Pick<User, "id">>;
|
8012
8137
|
};
|
8013
8138
|
export declare type IssueHistoryFragment = {
|
8014
8139
|
__typename: "IssueHistory";
|
@@ -8080,7 +8205,7 @@ export declare type IssueRelationFragment = {
|
|
8080
8205
|
};
|
8081
8206
|
export declare type RoadmapFragment = {
|
8082
8207
|
__typename: "Roadmap";
|
8083
|
-
} & Pick<Roadmap, "description" | "updatedAt" | "name" | "slugId" | "archivedAt" | "createdAt" | "id"> & {
|
8208
|
+
} & Pick<Roadmap, "description" | "updatedAt" | "name" | "color" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
8084
8209
|
creator: {
|
8085
8210
|
__typename?: "User";
|
8086
8211
|
} & Pick<User, "id">;
|
@@ -8147,7 +8272,7 @@ export declare type UserAccountFragment = {
|
|
8147
8272
|
};
|
8148
8273
|
export declare type UserFragment = {
|
8149
8274
|
__typename: "User";
|
8150
|
-
} & Pick<User, "statusUntilAt" | "description" | "avatarUrl" | "
|
8275
|
+
} & Pick<User, "statusUntilAt" | "description" | "avatarUrl" | "createdIssueCount" | "disableReason" | "statusEmoji" | "statusLabel" | "updatedAt" | "lastSeen" | "timezone" | "archivedAt" | "createdAt" | "id" | "displayName" | "email" | "name" | "inviteHash" | "url" | "active" | "guest" | "admin" | "isMe" | "calendarHash">;
|
8151
8276
|
export declare type PushSubscriptionFragment = {
|
8152
8277
|
__typename: "PushSubscription";
|
8153
8278
|
} & Pick<PushSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
|
@@ -8228,6 +8353,9 @@ export declare type IssueFragment = {
|
|
8228
8353
|
project?: Maybe<{
|
8229
8354
|
__typename?: "Project";
|
8230
8355
|
} & Pick<Project, "id">>;
|
8356
|
+
projectMilestone?: Maybe<{
|
8357
|
+
__typename?: "ProjectMilestone";
|
8358
|
+
} & Pick<ProjectMilestone, "id">>;
|
8231
8359
|
team: {
|
8232
8360
|
__typename?: "Team";
|
8233
8361
|
} & Pick<Team, "id">;
|
@@ -8259,7 +8387,7 @@ export declare type OauthClientApprovalNotificationFragment = {
|
|
8259
8387
|
};
|
8260
8388
|
export declare type OrganizationFragment = {
|
8261
8389
|
__typename: "Organization";
|
8262
|
-
} & Pick<Organization, "allowedAuthServices" | "gitBranchFormat" | "userCount" | "createdIssueCount" | "previousUrlKeys" | "periodUploadVolume" | "projectUpdateRemindersHour" | "updatedAt" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "archivedAt" | "createdAt" | "id" | "samlEnabled" | "scimEnabled" | "gitLinkbackMessagesEnabled" | "gitPublicLinkbackMessagesEnabled" | "roadmapEnabled"> & {
|
8390
|
+
} & Pick<Organization, "allowedAuthServices" | "gitBranchFormat" | "userCount" | "createdIssueCount" | "previousUrlKeys" | "periodUploadVolume" | "projectUpdateRemindersHour" | "updatedAt" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "archivedAt" | "createdAt" | "trialEndsAt" | "id" | "samlEnabled" | "scimEnabled" | "gitLinkbackMessagesEnabled" | "gitPublicLinkbackMessagesEnabled" | "roadmapEnabled"> & {
|
8263
8391
|
subscription?: Maybe<{
|
8264
8392
|
__typename?: "PaidSubscription";
|
8265
8393
|
} & PaidSubscriptionFragment>;
|
@@ -8540,7 +8668,7 @@ export declare type PaidSubscriptionFragment = {
|
|
8540
8668
|
};
|
8541
8669
|
export declare type UserSettingsFragment = {
|
8542
8670
|
__typename: "UserSettings";
|
8543
|
-
} & Pick<UserSettings, "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id"> & {
|
8671
|
+
} & Pick<UserSettings, "calendarHash" | "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id"> & {
|
8544
8672
|
user: {
|
8545
8673
|
__typename?: "User";
|
8546
8674
|
} & Pick<User, "id">;
|
@@ -8705,6 +8833,9 @@ export declare type CustomViewPayloadFragment = {
|
|
8705
8833
|
__typename?: "CustomView";
|
8706
8834
|
} & Pick<CustomView, "id">;
|
8707
8835
|
};
|
8836
|
+
export declare type CustomViewSuggestionPayloadFragment = {
|
8837
|
+
__typename: "CustomViewSuggestionPayload";
|
8838
|
+
} & Pick<CustomViewSuggestionPayload, "suggestedDescription" | "suggestedIcon" | "suggestedName">;
|
8708
8839
|
export declare type CycleConnectionFragment = {
|
8709
8840
|
__typename: "CycleConnection";
|
8710
8841
|
} & {
|
@@ -8968,6 +9099,9 @@ declare type Node_Document_Fragment = {
|
|
8968
9099
|
declare type Node_Emoji_Fragment = {
|
8969
9100
|
__typename: "Emoji";
|
8970
9101
|
} & Pick<Emoji, "id">;
|
9102
|
+
declare type Node_ExternalUser_Fragment = {
|
9103
|
+
__typename: "ExternalUser";
|
9104
|
+
} & Pick<ExternalUser, "id">;
|
8971
9105
|
declare type Node_Favorite_Fragment = {
|
8972
9106
|
__typename: "Favorite";
|
8973
9107
|
} & Pick<Favorite, "id">;
|
@@ -9091,7 +9225,7 @@ declare type Node_WorkflowDefinition_Fragment = {
|
|
9091
9225
|
declare type Node_WorkflowState_Fragment = {
|
9092
9226
|
__typename: "WorkflowState";
|
9093
9227
|
} & Pick<WorkflowState, "id">;
|
9094
|
-
export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_CustomView_Fragment | Node_Cycle_Fragment | Node_Document_Fragment | Node_Emoji_Fragment | Node_Favorite_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_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_PersonalNote_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_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_User_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
|
9228
|
+
export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_CustomView_Fragment | Node_Cycle_Fragment | Node_Document_Fragment | Node_Emoji_Fragment | Node_ExternalUser_Fragment | Node_Favorite_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_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_PersonalNote_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_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_User_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
|
9095
9229
|
export declare type NotificationConnectionFragment = {
|
9096
9230
|
__typename: "NotificationConnection";
|
9097
9231
|
} & {
|
@@ -9180,6 +9314,9 @@ export declare type OrganizationInvitePayloadFragment = {
|
|
9180
9314
|
export declare type OrganizationPayloadFragment = {
|
9181
9315
|
__typename: "OrganizationPayload";
|
9182
9316
|
} & Pick<OrganizationPayload, "lastSyncId" | "success">;
|
9317
|
+
export declare type OrganizationStartPlusTrialPayloadFragment = {
|
9318
|
+
__typename: "OrganizationStartPlusTrialPayload";
|
9319
|
+
} & Pick<OrganizationStartPlusTrialPayload, "success">;
|
9183
9320
|
export declare type PageInfoFragment = {
|
9184
9321
|
__typename: "PageInfo";
|
9185
9322
|
} & Pick<PageInfo, "startCursor" | "endCursor" | "hasPreviousPage" | "hasNextPage">;
|
@@ -10651,6 +10788,16 @@ export declare type UpdateOrganizationInviteMutation = {
|
|
10651
10788
|
__typename?: "OrganizationInvitePayload";
|
10652
10789
|
} & OrganizationInvitePayloadFragment;
|
10653
10790
|
};
|
10791
|
+
export declare type OrganizationStartPlusTrialMutationVariables = Exact<{
|
10792
|
+
[key: string]: never;
|
10793
|
+
}>;
|
10794
|
+
export declare type OrganizationStartPlusTrialMutation = {
|
10795
|
+
__typename?: "Mutation";
|
10796
|
+
} & {
|
10797
|
+
organizationStartPlusTrial: {
|
10798
|
+
__typename?: "OrganizationStartPlusTrialPayload";
|
10799
|
+
} & OrganizationStartPlusTrialPayloadFragment;
|
10800
|
+
};
|
10654
10801
|
export declare type UpdateOrganizationMutationVariables = Exact<{
|
10655
10802
|
input: UpdateOrganizationInput;
|
10656
10803
|
}>;
|
@@ -10885,6 +11032,16 @@ export declare type ResendOrganizationInviteMutation = {
|
|
10885
11032
|
__typename?: "ArchivePayload";
|
10886
11033
|
} & ArchivePayloadFragment;
|
10887
11034
|
};
|
11035
|
+
export declare type ArchiveRoadmapMutationVariables = Exact<{
|
11036
|
+
id: Scalars["String"];
|
11037
|
+
}>;
|
11038
|
+
export declare type ArchiveRoadmapMutation = {
|
11039
|
+
__typename?: "Mutation";
|
11040
|
+
} & {
|
11041
|
+
roadmapArchive: {
|
11042
|
+
__typename?: "ArchivePayload";
|
11043
|
+
} & ArchivePayloadFragment;
|
11044
|
+
};
|
10888
11045
|
export declare type CreateRoadmapMutationVariables = Exact<{
|
10889
11046
|
input: RoadmapCreateInput;
|
10890
11047
|
}>;
|
@@ -10936,6 +11093,16 @@ export declare type UpdateRoadmapToProjectMutation = {
|
|
10936
11093
|
__typename?: "RoadmapToProjectPayload";
|
10937
11094
|
} & RoadmapToProjectPayloadFragment;
|
10938
11095
|
};
|
11096
|
+
export declare type UnarchiveRoadmapMutationVariables = Exact<{
|
11097
|
+
id: Scalars["String"];
|
11098
|
+
}>;
|
11099
|
+
export declare type UnarchiveRoadmapMutation = {
|
11100
|
+
__typename?: "Mutation";
|
11101
|
+
} & {
|
11102
|
+
roadmapUnarchive: {
|
11103
|
+
__typename?: "ArchivePayload";
|
11104
|
+
} & ArchivePayloadFragment;
|
11105
|
+
};
|
10939
11106
|
export declare type UpdateRoadmapMutationVariables = Exact<{
|
10940
11107
|
id: Scalars["String"];
|
10941
11108
|
input: RoadmapUpdateInput;
|
@@ -11841,6 +12008,46 @@ export declare type EmojisQuery = {
|
|
11841
12008
|
__typename?: "EmojiConnection";
|
11842
12009
|
} & EmojiConnectionFragment;
|
11843
12010
|
};
|
12011
|
+
export declare type ExternalUserQueryVariables = Exact<{
|
12012
|
+
id: Scalars["String"];
|
12013
|
+
}>;
|
12014
|
+
export declare type ExternalUserQuery = {
|
12015
|
+
__typename?: "Query";
|
12016
|
+
} & {
|
12017
|
+
externalUser: {
|
12018
|
+
__typename?: "ExternalUser";
|
12019
|
+
} & Pick<ExternalUser, "archivedAt" | "avatarUrl" | "createdAt" | "displayName" | "email" | "id" | "lastSeen" | "name" | "updatedAt"> & {
|
12020
|
+
organization: {
|
12021
|
+
__typename?: "Organization";
|
12022
|
+
} & OrganizationFragment;
|
12023
|
+
};
|
12024
|
+
};
|
12025
|
+
export declare type ExternalUsersQueryVariables = Exact<{
|
12026
|
+
after?: Maybe<Scalars["String"]>;
|
12027
|
+
before?: Maybe<Scalars["String"]>;
|
12028
|
+
first?: Maybe<Scalars["Int"]>;
|
12029
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
12030
|
+
last?: Maybe<Scalars["Int"]>;
|
12031
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
12032
|
+
}>;
|
12033
|
+
export declare type ExternalUsersQuery = {
|
12034
|
+
__typename?: "Query";
|
12035
|
+
} & {
|
12036
|
+
externalUsers: {
|
12037
|
+
__typename?: "ExternalUserConnection";
|
12038
|
+
} & {
|
12039
|
+
nodes: Array<{
|
12040
|
+
__typename?: "ExternalUser";
|
12041
|
+
} & Pick<ExternalUser, "archivedAt" | "avatarUrl" | "createdAt" | "displayName" | "email" | "id" | "lastSeen" | "name" | "updatedAt"> & {
|
12042
|
+
organization: {
|
12043
|
+
__typename?: "Organization";
|
12044
|
+
} & OrganizationFragment;
|
12045
|
+
}>;
|
12046
|
+
pageInfo: {
|
12047
|
+
__typename?: "PageInfo";
|
12048
|
+
} & PageInfoFragment;
|
12049
|
+
};
|
12050
|
+
};
|
11844
12051
|
export declare type FavoriteQueryVariables = Exact<{
|
11845
12052
|
id: Scalars["String"];
|
11846
12053
|
}>;
|
@@ -12769,6 +12976,26 @@ export declare type Project_MembersQuery = {
|
|
12769
12976
|
} & UserConnectionFragment;
|
12770
12977
|
};
|
12771
12978
|
};
|
12979
|
+
export declare type Project_ProjectMilestonesQueryVariables = Exact<{
|
12980
|
+
id: Scalars["String"];
|
12981
|
+
after?: Maybe<Scalars["String"]>;
|
12982
|
+
before?: Maybe<Scalars["String"]>;
|
12983
|
+
first?: Maybe<Scalars["Int"]>;
|
12984
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
12985
|
+
last?: Maybe<Scalars["Int"]>;
|
12986
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
12987
|
+
}>;
|
12988
|
+
export declare type Project_ProjectMilestonesQuery = {
|
12989
|
+
__typename?: "Query";
|
12990
|
+
} & {
|
12991
|
+
project: {
|
12992
|
+
__typename?: "Project";
|
12993
|
+
} & {
|
12994
|
+
projectMilestones: {
|
12995
|
+
__typename?: "ProjectMilestoneConnection";
|
12996
|
+
} & ProjectMilestoneConnectionFragment;
|
12997
|
+
};
|
12998
|
+
};
|
12772
12999
|
export declare type Project_ProjectUpdatesQueryVariables = Exact<{
|
12773
13000
|
id: Scalars["String"];
|
12774
13001
|
after?: Maybe<Scalars["String"]>;
|
@@ -13593,6 +13820,7 @@ export declare const CreateOrJoinOrganizationResponseFragmentDoc: DocumentNode<C
|
|
13593
13820
|
export declare const CustomViewFragmentDoc: DocumentNode<CustomViewFragment, unknown>;
|
13594
13821
|
export declare const CustomViewConnectionFragmentDoc: DocumentNode<CustomViewConnectionFragment, unknown>;
|
13595
13822
|
export declare const CustomViewPayloadFragmentDoc: DocumentNode<CustomViewPayloadFragment, unknown>;
|
13823
|
+
export declare const CustomViewSuggestionPayloadFragmentDoc: DocumentNode<CustomViewSuggestionPayloadFragment, unknown>;
|
13596
13824
|
export declare const CycleFragmentDoc: DocumentNode<CycleFragment, unknown>;
|
13597
13825
|
export declare const CycleConnectionFragmentDoc: DocumentNode<CycleConnectionFragment, unknown>;
|
13598
13826
|
export declare const CyclePayloadFragmentDoc: DocumentNode<CyclePayloadFragment, unknown>;
|
@@ -13662,6 +13890,7 @@ export declare const OrganizationInviteConnectionFragmentDoc: DocumentNode<Organ
|
|
13662
13890
|
export declare const OrganizationInviteDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteDetailsPayloadFragment, unknown>;
|
13663
13891
|
export declare const OrganizationInvitePayloadFragmentDoc: DocumentNode<OrganizationInvitePayloadFragment, unknown>;
|
13664
13892
|
export declare const OrganizationPayloadFragmentDoc: DocumentNode<OrganizationPayloadFragment, unknown>;
|
13893
|
+
export declare const OrganizationStartPlusTrialPayloadFragmentDoc: DocumentNode<OrganizationStartPlusTrialPayloadFragment, unknown>;
|
13665
13894
|
export declare const ProjectFragmentDoc: DocumentNode<ProjectFragment, unknown>;
|
13666
13895
|
export declare const ProjectConnectionFragmentDoc: DocumentNode<ProjectConnectionFragment, unknown>;
|
13667
13896
|
export declare const ProjectLinkFragmentDoc: DocumentNode<ProjectLinkFragment, unknown>;
|
@@ -14123,6 +14352,9 @@ export declare const UpdateOrganizationInviteDocument: DocumentNode<UpdateOrgani
|
|
14123
14352
|
id: Scalars["String"];
|
14124
14353
|
input: OrganizationInviteUpdateInput;
|
14125
14354
|
}>>;
|
14355
|
+
export declare const OrganizationStartPlusTrialDocument: DocumentNode<OrganizationStartPlusTrialMutation, Exact<{
|
14356
|
+
[key: string]: never;
|
14357
|
+
}>>;
|
14126
14358
|
export declare const UpdateOrganizationDocument: DocumentNode<UpdateOrganizationMutation, Exact<{
|
14127
14359
|
input: UpdateOrganizationInput;
|
14128
14360
|
}>>;
|
@@ -14196,6 +14428,9 @@ export declare const RefreshGoogleSheetsDataDocument: DocumentNode<RefreshGoogle
|
|
14196
14428
|
export declare const ResendOrganizationInviteDocument: DocumentNode<ResendOrganizationInviteMutation, Exact<{
|
14197
14429
|
id: Scalars["String"];
|
14198
14430
|
}>>;
|
14431
|
+
export declare const ArchiveRoadmapDocument: DocumentNode<ArchiveRoadmapMutation, Exact<{
|
14432
|
+
id: Scalars["String"];
|
14433
|
+
}>>;
|
14199
14434
|
export declare const CreateRoadmapDocument: DocumentNode<CreateRoadmapMutation, Exact<{
|
14200
14435
|
input: RoadmapCreateInput;
|
14201
14436
|
}>>;
|
@@ -14212,6 +14447,9 @@ export declare const UpdateRoadmapToProjectDocument: DocumentNode<UpdateRoadmapT
|
|
14212
14447
|
id: Scalars["String"];
|
14213
14448
|
input: RoadmapToProjectUpdateInput;
|
14214
14449
|
}>>;
|
14450
|
+
export declare const UnarchiveRoadmapDocument: DocumentNode<UnarchiveRoadmapMutation, Exact<{
|
14451
|
+
id: Scalars["String"];
|
14452
|
+
}>>;
|
14215
14453
|
export declare const UpdateRoadmapDocument: DocumentNode<UpdateRoadmapMutation, Exact<{
|
14216
14454
|
id: Scalars["String"];
|
14217
14455
|
input: RoadmapUpdateInput;
|
@@ -14576,6 +14814,17 @@ export declare const EmojisDocument: DocumentNode<EmojisQuery, Exact<{
|
|
14576
14814
|
last?: Maybe<number> | undefined;
|
14577
14815
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
14578
14816
|
}>>;
|
14817
|
+
export declare const ExternalUserDocument: DocumentNode<ExternalUserQuery, Exact<{
|
14818
|
+
id: Scalars["String"];
|
14819
|
+
}>>;
|
14820
|
+
export declare const ExternalUsersDocument: DocumentNode<ExternalUsersQuery, Exact<{
|
14821
|
+
after?: Maybe<string> | undefined;
|
14822
|
+
before?: Maybe<string> | undefined;
|
14823
|
+
first?: Maybe<number> | undefined;
|
14824
|
+
includeArchived?: Maybe<boolean> | undefined;
|
14825
|
+
last?: Maybe<number> | undefined;
|
14826
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
14827
|
+
}>>;
|
14579
14828
|
export declare const FavoriteDocument: DocumentNode<FavoriteQuery, Exact<{
|
14580
14829
|
id: Scalars["String"];
|
14581
14830
|
}>>;
|
@@ -14979,6 +15228,15 @@ export declare const Project_MembersDocument: DocumentNode<Project_MembersQuery,
|
|
14979
15228
|
last?: Maybe<number> | undefined;
|
14980
15229
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
14981
15230
|
}>>;
|
15231
|
+
export declare const Project_ProjectMilestonesDocument: DocumentNode<Project_ProjectMilestonesQuery, Exact<{
|
15232
|
+
id: Scalars["String"];
|
15233
|
+
after?: Maybe<string> | undefined;
|
15234
|
+
before?: Maybe<string> | undefined;
|
15235
|
+
first?: Maybe<number> | undefined;
|
15236
|
+
includeArchived?: Maybe<boolean> | undefined;
|
15237
|
+
last?: Maybe<number> | undefined;
|
15238
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
15239
|
+
}>>;
|
14982
15240
|
export declare const Project_ProjectUpdatesDocument: DocumentNode<Project_ProjectUpdatesQuery, Exact<{
|
14983
15241
|
id: Scalars["String"];
|
14984
15242
|
after?: Maybe<string> | undefined;
|