@linear/sdk 2.6.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 +104 -0
- package/dist/_generated_documents.d.ts +277 -21
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +129 -5
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +650 -15
- 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 +645 -16
- 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 +651 -16
- 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
@@ -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>>;
|
@@ -4533,6 +4612,11 @@ export declare type OrganizationPayload = {
|
|
4533
4612
|
/** Whether the operation was successful. */
|
4534
4613
|
success: Scalars["Boolean"];
|
4535
4614
|
};
|
4615
|
+
export declare type OrganizationStartPlusTrialPayload = {
|
4616
|
+
__typename?: "OrganizationStartPlusTrialPayload";
|
4617
|
+
/** Whether the operation was successful. */
|
4618
|
+
success: Scalars["Boolean"];
|
4619
|
+
};
|
4536
4620
|
export declare type PageInfo = {
|
4537
4621
|
__typename?: "PageInfo";
|
4538
4622
|
/** Cursor representing the last result in the paginated results. */
|
@@ -4652,7 +4736,7 @@ export declare type Project = Node & {
|
|
4652
4736
|
name: Scalars["String"];
|
4653
4737
|
/** The overall progress of the project. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points. */
|
4654
4738
|
progress: Scalars["Float"];
|
4655
|
-
/**
|
4739
|
+
/** Milestones associated with the project. */
|
4656
4740
|
projectMilestones: ProjectMilestoneConnection;
|
4657
4741
|
/** The time until which project update reminders are paused. */
|
4658
4742
|
projectUpdateRemindersPausedUntilAt?: Maybe<Scalars["DateTime"]>;
|
@@ -4670,7 +4754,7 @@ export declare type Project = Node & {
|
|
4670
4754
|
slackNewIssue: Scalars["Boolean"];
|
4671
4755
|
/** The project's unique URL slug. */
|
4672
4756
|
slugId: Scalars["String"];
|
4673
|
-
/** The sort order for the project within the
|
4757
|
+
/** The sort order for the project within the organization. */
|
4674
4758
|
sortOrder: Scalars["Float"];
|
4675
4759
|
/** [Internal] The estimated start date of the project. */
|
4676
4760
|
startDate?: Maybe<Scalars["TimelessDate"]>;
|
@@ -5366,6 +5450,8 @@ export declare type Query = {
|
|
5366
5450
|
comments: CommentConnection;
|
5367
5451
|
/** One specific custom view. */
|
5368
5452
|
customView: CustomView;
|
5453
|
+
/** [INTERNAL] Suggests metadata for a view based on it's filters. */
|
5454
|
+
customViewSuggestion: CustomViewSuggestionPayload;
|
5369
5455
|
/** Custom views for the user. */
|
5370
5456
|
customViews: CustomViewConnection;
|
5371
5457
|
/** One specific cycle. */
|
@@ -5380,6 +5466,10 @@ export declare type Query = {
|
|
5380
5466
|
emoji: Emoji;
|
5381
5467
|
/** All custom emojis. */
|
5382
5468
|
emojis: EmojiConnection;
|
5469
|
+
/** One specific external user. */
|
5470
|
+
externalUser: ExternalUser;
|
5471
|
+
/** All external users for the organization. */
|
5472
|
+
externalUsers: ExternalUserConnection;
|
5383
5473
|
/** One specific favorite. */
|
5384
5474
|
favorite: Favorite;
|
5385
5475
|
/** The user's favorites. */
|
@@ -5587,6 +5677,9 @@ export declare type QueryCommentsArgs = {
|
|
5587
5677
|
export declare type QueryCustomViewArgs = {
|
5588
5678
|
id: Scalars["String"];
|
5589
5679
|
};
|
5680
|
+
export declare type QueryCustomViewSuggestionArgs = {
|
5681
|
+
filter: Scalars["JSONObject"];
|
5682
|
+
};
|
5590
5683
|
export declare type QueryCustomViewsArgs = {
|
5591
5684
|
after?: Maybe<Scalars["String"]>;
|
5592
5685
|
before?: Maybe<Scalars["String"]>;
|
@@ -5629,6 +5722,17 @@ export declare type QueryEmojisArgs = {
|
|
5629
5722
|
last?: Maybe<Scalars["Int"]>;
|
5630
5723
|
orderBy?: Maybe<PaginationOrderBy>;
|
5631
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
|
+
};
|
5632
5736
|
export declare type QueryFavoriteArgs = {
|
5633
5737
|
id: Scalars["String"];
|
5634
5738
|
};
|
@@ -5940,7 +6044,7 @@ export declare type Reaction = Node & {
|
|
5940
6044
|
*/
|
5941
6045
|
updatedAt: Scalars["DateTime"];
|
5942
6046
|
/** The user who reacted. */
|
5943
|
-
user
|
6047
|
+
user?: Maybe<User>;
|
5944
6048
|
};
|
5945
6049
|
export declare type ReactionConnection = {
|
5946
6050
|
__typename?: "ReactionConnection";
|
@@ -5990,6 +6094,8 @@ export declare type Roadmap = Node & {
|
|
5990
6094
|
__typename?: "Roadmap";
|
5991
6095
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
5992
6096
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
6097
|
+
/** The roadmap's color. */
|
6098
|
+
color?: Maybe<Scalars["String"]>;
|
5993
6099
|
/** The time at which the entity was created. */
|
5994
6100
|
createdAt: Scalars["DateTime"];
|
5995
6101
|
/** The user who created the roadmap. */
|
@@ -6008,6 +6114,8 @@ export declare type Roadmap = Node & {
|
|
6008
6114
|
projects: ProjectConnection;
|
6009
6115
|
/** The roadmap's unique URL slug. */
|
6010
6116
|
slugId: Scalars["String"];
|
6117
|
+
/** The sort order of the roadmap within the organization. */
|
6118
|
+
sortOrder: Scalars["Float"];
|
6011
6119
|
/**
|
6012
6120
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
6013
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
|
@@ -6057,6 +6165,8 @@ export declare type RoadmapConnection = {
|
|
6057
6165
|
pageInfo: PageInfo;
|
6058
6166
|
};
|
6059
6167
|
export declare type RoadmapCreateInput = {
|
6168
|
+
/** The roadmap's color. */
|
6169
|
+
color?: Maybe<Scalars["String"]>;
|
6060
6170
|
/** The description of the roadmap. */
|
6061
6171
|
description?: Maybe<Scalars["String"]>;
|
6062
6172
|
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
@@ -6065,6 +6175,8 @@ export declare type RoadmapCreateInput = {
|
|
6065
6175
|
name: Scalars["String"];
|
6066
6176
|
/** The owner of the roadmap */
|
6067
6177
|
ownerId?: Maybe<Scalars["String"]>;
|
6178
|
+
/** The sort order of the roadmap within the organization. */
|
6179
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
6068
6180
|
};
|
6069
6181
|
export declare type RoadmapEdge = {
|
6070
6182
|
__typename?: "RoadmapEdge";
|
@@ -6158,12 +6270,16 @@ export declare type RoadmapToProjectUpdateInput = {
|
|
6158
6270
|
sortOrder?: Maybe<Scalars["Float"]>;
|
6159
6271
|
};
|
6160
6272
|
export declare type RoadmapUpdateInput = {
|
6273
|
+
/** The roadmap's color. */
|
6274
|
+
color?: Maybe<Scalars["String"]>;
|
6161
6275
|
/** The description of the roadmap. */
|
6162
6276
|
description?: Maybe<Scalars["String"]>;
|
6163
6277
|
/** The name of the roadmap. */
|
6164
6278
|
name?: Maybe<Scalars["String"]>;
|
6165
6279
|
/** The owner of the roadmap */
|
6166
6280
|
ownerId?: Maybe<Scalars["String"]>;
|
6281
|
+
/** The sort order of the roadmap within the organization. */
|
6282
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
6167
6283
|
};
|
6168
6284
|
export declare type SamlConfiguration = {
|
6169
6285
|
__typename?: "SamlConfiguration";
|
@@ -6215,6 +6331,7 @@ export declare type SentrySettingsInput = {
|
|
6215
6331
|
export declare enum SlaStatus {
|
6216
6332
|
Breached = "Breached",
|
6217
6333
|
Completed = "Completed",
|
6334
|
+
Failed = "Failed",
|
6218
6335
|
HighRisk = "HighRisk",
|
6219
6336
|
LowRisk = "LowRisk",
|
6220
6337
|
MediumRisk = "MediumRisk"
|
@@ -7043,7 +7160,7 @@ export declare type User = Node & {
|
|
7043
7160
|
assignedIssues: IssueConnection;
|
7044
7161
|
/** An URL to the user's avatar image. */
|
7045
7162
|
avatarUrl?: Maybe<Scalars["String"]>;
|
7046
|
-
/** Hash for the user to be used in calendar URLs. */
|
7163
|
+
/** [DEPRECATED] Hash for the user to be used in calendar URLs. */
|
7047
7164
|
calendarHash?: Maybe<Scalars["String"]>;
|
7048
7165
|
/** The time at which the entity was created. */
|
7049
7166
|
createdAt: Scalars["DateTime"];
|
@@ -7294,6 +7411,7 @@ export declare enum UserFlagType {
|
|
7294
7411
|
CycleWelcomeDismissed = "cycleWelcomeDismissed",
|
7295
7412
|
DesktopDownloadToastDismissed = "desktopDownloadToastDismissed",
|
7296
7413
|
DesktopInstalled = "desktopInstalled",
|
7414
|
+
DesktopTabsOnboardingDismissed = "desktopTabsOnboardingDismissed",
|
7297
7415
|
DueDateShortcutMigration = "dueDateShortcutMigration",
|
7298
7416
|
EmptyActiveIssuesDismissed = "emptyActiveIssuesDismissed",
|
7299
7417
|
EmptyBacklogDismissed = "emptyBacklogDismissed",
|
@@ -7301,12 +7419,14 @@ export declare enum UserFlagType {
|
|
7301
7419
|
EmptyMyIssuesDismissed = "emptyMyIssuesDismissed",
|
7302
7420
|
FigmaPromptDismissed = "figmaPromptDismissed",
|
7303
7421
|
ImportBannerDismissed = "importBannerDismissed",
|
7422
|
+
InsightsHelpDismissed = "insightsHelpDismissed",
|
7304
7423
|
InsightsWelcomeDismissed = "insightsWelcomeDismissed",
|
7305
7424
|
IssueLabelSuggestionUsed = "issueLabelSuggestionUsed",
|
7306
7425
|
IssueMovePromptCompleted = "issueMovePromptCompleted",
|
7307
7426
|
JoinTeamIntroductionDismissed = "joinTeamIntroductionDismissed",
|
7308
7427
|
ListSelectionTip = "listSelectionTip",
|
7309
7428
|
MigrateThemePreference = "migrateThemePreference",
|
7429
|
+
MilestoneOnboardingIsSeenAndDismissed = "milestoneOnboardingIsSeenAndDismissed",
|
7310
7430
|
ProjectBacklogWelcomeDismissed = "projectBacklogWelcomeDismissed",
|
7311
7431
|
ProjectUpdatesWelcomeDismissed = "projectUpdatesWelcomeDismissed",
|
7312
7432
|
ProjectWelcomeDismissed = "projectWelcomeDismissed",
|
@@ -7343,6 +7463,8 @@ export declare type UserSettings = Node & {
|
|
7343
7463
|
__typename?: "UserSettings";
|
7344
7464
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
7345
7465
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
7466
|
+
/** Hash for the user to be used in calendar URLs. */
|
7467
|
+
calendarHash?: Maybe<Scalars["String"]>;
|
7346
7468
|
/** The time at which the entity was created. */
|
7347
7469
|
createdAt: Scalars["DateTime"];
|
7348
7470
|
/** The unique identifier of the entity. */
|
@@ -7483,6 +7605,7 @@ export declare enum ViewType {
|
|
7483
7605
|
RoadmapAll = "roadmapAll",
|
7484
7606
|
RoadmapBacklog = "roadmapBacklog",
|
7485
7607
|
RoadmapClosed = "roadmapClosed",
|
7608
|
+
Roadmaps = "roadmaps",
|
7486
7609
|
Search = "search",
|
7487
7610
|
Teams = "teams",
|
7488
7611
|
Triage = "triage",
|
@@ -8008,9 +8131,9 @@ export declare type ProjectFragment = {
|
|
8008
8131
|
export declare type ReactionFragment = {
|
8009
8132
|
__typename: "Reaction";
|
8010
8133
|
} & Pick<Reaction, "emoji" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
|
8011
|
-
user
|
8134
|
+
user?: Maybe<{
|
8012
8135
|
__typename?: "User";
|
8013
|
-
} & Pick<User, "id"
|
8136
|
+
} & Pick<User, "id">>;
|
8014
8137
|
};
|
8015
8138
|
export declare type IssueHistoryFragment = {
|
8016
8139
|
__typename: "IssueHistory";
|
@@ -8082,7 +8205,7 @@ export declare type IssueRelationFragment = {
|
|
8082
8205
|
};
|
8083
8206
|
export declare type RoadmapFragment = {
|
8084
8207
|
__typename: "Roadmap";
|
8085
|
-
} & Pick<Roadmap, "description" | "updatedAt" | "name" | "slugId" | "archivedAt" | "createdAt" | "id"> & {
|
8208
|
+
} & Pick<Roadmap, "description" | "updatedAt" | "name" | "color" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
8086
8209
|
creator: {
|
8087
8210
|
__typename?: "User";
|
8088
8211
|
} & Pick<User, "id">;
|
@@ -8149,7 +8272,7 @@ export declare type UserAccountFragment = {
|
|
8149
8272
|
};
|
8150
8273
|
export declare type UserFragment = {
|
8151
8274
|
__typename: "User";
|
8152
|
-
} & 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">;
|
8153
8276
|
export declare type PushSubscriptionFragment = {
|
8154
8277
|
__typename: "PushSubscription";
|
8155
8278
|
} & Pick<PushSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
|
@@ -8230,6 +8353,9 @@ export declare type IssueFragment = {
|
|
8230
8353
|
project?: Maybe<{
|
8231
8354
|
__typename?: "Project";
|
8232
8355
|
} & Pick<Project, "id">>;
|
8356
|
+
projectMilestone?: Maybe<{
|
8357
|
+
__typename?: "ProjectMilestone";
|
8358
|
+
} & Pick<ProjectMilestone, "id">>;
|
8233
8359
|
team: {
|
8234
8360
|
__typename?: "Team";
|
8235
8361
|
} & Pick<Team, "id">;
|
@@ -8542,7 +8668,7 @@ export declare type PaidSubscriptionFragment = {
|
|
8542
8668
|
};
|
8543
8669
|
export declare type UserSettingsFragment = {
|
8544
8670
|
__typename: "UserSettings";
|
8545
|
-
} & Pick<UserSettings, "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id"> & {
|
8671
|
+
} & Pick<UserSettings, "calendarHash" | "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id"> & {
|
8546
8672
|
user: {
|
8547
8673
|
__typename?: "User";
|
8548
8674
|
} & Pick<User, "id">;
|
@@ -8707,6 +8833,9 @@ export declare type CustomViewPayloadFragment = {
|
|
8707
8833
|
__typename?: "CustomView";
|
8708
8834
|
} & Pick<CustomView, "id">;
|
8709
8835
|
};
|
8836
|
+
export declare type CustomViewSuggestionPayloadFragment = {
|
8837
|
+
__typename: "CustomViewSuggestionPayload";
|
8838
|
+
} & Pick<CustomViewSuggestionPayload, "suggestedDescription" | "suggestedIcon" | "suggestedName">;
|
8710
8839
|
export declare type CycleConnectionFragment = {
|
8711
8840
|
__typename: "CycleConnection";
|
8712
8841
|
} & {
|
@@ -8970,6 +9099,9 @@ declare type Node_Document_Fragment = {
|
|
8970
9099
|
declare type Node_Emoji_Fragment = {
|
8971
9100
|
__typename: "Emoji";
|
8972
9101
|
} & Pick<Emoji, "id">;
|
9102
|
+
declare type Node_ExternalUser_Fragment = {
|
9103
|
+
__typename: "ExternalUser";
|
9104
|
+
} & Pick<ExternalUser, "id">;
|
8973
9105
|
declare type Node_Favorite_Fragment = {
|
8974
9106
|
__typename: "Favorite";
|
8975
9107
|
} & Pick<Favorite, "id">;
|
@@ -9093,7 +9225,7 @@ declare type Node_WorkflowDefinition_Fragment = {
|
|
9093
9225
|
declare type Node_WorkflowState_Fragment = {
|
9094
9226
|
__typename: "WorkflowState";
|
9095
9227
|
} & Pick<WorkflowState, "id">;
|
9096
|
-
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;
|
9097
9229
|
export declare type NotificationConnectionFragment = {
|
9098
9230
|
__typename: "NotificationConnection";
|
9099
9231
|
} & {
|
@@ -9182,6 +9314,9 @@ export declare type OrganizationInvitePayloadFragment = {
|
|
9182
9314
|
export declare type OrganizationPayloadFragment = {
|
9183
9315
|
__typename: "OrganizationPayload";
|
9184
9316
|
} & Pick<OrganizationPayload, "lastSyncId" | "success">;
|
9317
|
+
export declare type OrganizationStartPlusTrialPayloadFragment = {
|
9318
|
+
__typename: "OrganizationStartPlusTrialPayload";
|
9319
|
+
} & Pick<OrganizationStartPlusTrialPayload, "success">;
|
9185
9320
|
export declare type PageInfoFragment = {
|
9186
9321
|
__typename: "PageInfo";
|
9187
9322
|
} & Pick<PageInfo, "startCursor" | "endCursor" | "hasPreviousPage" | "hasNextPage">;
|
@@ -10653,6 +10788,16 @@ export declare type UpdateOrganizationInviteMutation = {
|
|
10653
10788
|
__typename?: "OrganizationInvitePayload";
|
10654
10789
|
} & OrganizationInvitePayloadFragment;
|
10655
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
|
+
};
|
10656
10801
|
export declare type UpdateOrganizationMutationVariables = Exact<{
|
10657
10802
|
input: UpdateOrganizationInput;
|
10658
10803
|
}>;
|
@@ -10887,6 +11032,16 @@ export declare type ResendOrganizationInviteMutation = {
|
|
10887
11032
|
__typename?: "ArchivePayload";
|
10888
11033
|
} & ArchivePayloadFragment;
|
10889
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
|
+
};
|
10890
11045
|
export declare type CreateRoadmapMutationVariables = Exact<{
|
10891
11046
|
input: RoadmapCreateInput;
|
10892
11047
|
}>;
|
@@ -10938,6 +11093,16 @@ export declare type UpdateRoadmapToProjectMutation = {
|
|
10938
11093
|
__typename?: "RoadmapToProjectPayload";
|
10939
11094
|
} & RoadmapToProjectPayloadFragment;
|
10940
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
|
+
};
|
10941
11106
|
export declare type UpdateRoadmapMutationVariables = Exact<{
|
10942
11107
|
id: Scalars["String"];
|
10943
11108
|
input: RoadmapUpdateInput;
|
@@ -11843,6 +12008,46 @@ export declare type EmojisQuery = {
|
|
11843
12008
|
__typename?: "EmojiConnection";
|
11844
12009
|
} & EmojiConnectionFragment;
|
11845
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
|
+
};
|
11846
12051
|
export declare type FavoriteQueryVariables = Exact<{
|
11847
12052
|
id: Scalars["String"];
|
11848
12053
|
}>;
|
@@ -12771,6 +12976,26 @@ export declare type Project_MembersQuery = {
|
|
12771
12976
|
} & UserConnectionFragment;
|
12772
12977
|
};
|
12773
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
|
+
};
|
12774
12999
|
export declare type Project_ProjectUpdatesQueryVariables = Exact<{
|
12775
13000
|
id: Scalars["String"];
|
12776
13001
|
after?: Maybe<Scalars["String"]>;
|
@@ -13595,6 +13820,7 @@ export declare const CreateOrJoinOrganizationResponseFragmentDoc: DocumentNode<C
|
|
13595
13820
|
export declare const CustomViewFragmentDoc: DocumentNode<CustomViewFragment, unknown>;
|
13596
13821
|
export declare const CustomViewConnectionFragmentDoc: DocumentNode<CustomViewConnectionFragment, unknown>;
|
13597
13822
|
export declare const CustomViewPayloadFragmentDoc: DocumentNode<CustomViewPayloadFragment, unknown>;
|
13823
|
+
export declare const CustomViewSuggestionPayloadFragmentDoc: DocumentNode<CustomViewSuggestionPayloadFragment, unknown>;
|
13598
13824
|
export declare const CycleFragmentDoc: DocumentNode<CycleFragment, unknown>;
|
13599
13825
|
export declare const CycleConnectionFragmentDoc: DocumentNode<CycleConnectionFragment, unknown>;
|
13600
13826
|
export declare const CyclePayloadFragmentDoc: DocumentNode<CyclePayloadFragment, unknown>;
|
@@ -13664,6 +13890,7 @@ export declare const OrganizationInviteConnectionFragmentDoc: DocumentNode<Organ
|
|
13664
13890
|
export declare const OrganizationInviteDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteDetailsPayloadFragment, unknown>;
|
13665
13891
|
export declare const OrganizationInvitePayloadFragmentDoc: DocumentNode<OrganizationInvitePayloadFragment, unknown>;
|
13666
13892
|
export declare const OrganizationPayloadFragmentDoc: DocumentNode<OrganizationPayloadFragment, unknown>;
|
13893
|
+
export declare const OrganizationStartPlusTrialPayloadFragmentDoc: DocumentNode<OrganizationStartPlusTrialPayloadFragment, unknown>;
|
13667
13894
|
export declare const ProjectFragmentDoc: DocumentNode<ProjectFragment, unknown>;
|
13668
13895
|
export declare const ProjectConnectionFragmentDoc: DocumentNode<ProjectConnectionFragment, unknown>;
|
13669
13896
|
export declare const ProjectLinkFragmentDoc: DocumentNode<ProjectLinkFragment, unknown>;
|
@@ -14125,6 +14352,9 @@ export declare const UpdateOrganizationInviteDocument: DocumentNode<UpdateOrgani
|
|
14125
14352
|
id: Scalars["String"];
|
14126
14353
|
input: OrganizationInviteUpdateInput;
|
14127
14354
|
}>>;
|
14355
|
+
export declare const OrganizationStartPlusTrialDocument: DocumentNode<OrganizationStartPlusTrialMutation, Exact<{
|
14356
|
+
[key: string]: never;
|
14357
|
+
}>>;
|
14128
14358
|
export declare const UpdateOrganizationDocument: DocumentNode<UpdateOrganizationMutation, Exact<{
|
14129
14359
|
input: UpdateOrganizationInput;
|
14130
14360
|
}>>;
|
@@ -14198,6 +14428,9 @@ export declare const RefreshGoogleSheetsDataDocument: DocumentNode<RefreshGoogle
|
|
14198
14428
|
export declare const ResendOrganizationInviteDocument: DocumentNode<ResendOrganizationInviteMutation, Exact<{
|
14199
14429
|
id: Scalars["String"];
|
14200
14430
|
}>>;
|
14431
|
+
export declare const ArchiveRoadmapDocument: DocumentNode<ArchiveRoadmapMutation, Exact<{
|
14432
|
+
id: Scalars["String"];
|
14433
|
+
}>>;
|
14201
14434
|
export declare const CreateRoadmapDocument: DocumentNode<CreateRoadmapMutation, Exact<{
|
14202
14435
|
input: RoadmapCreateInput;
|
14203
14436
|
}>>;
|
@@ -14214,6 +14447,9 @@ export declare const UpdateRoadmapToProjectDocument: DocumentNode<UpdateRoadmapT
|
|
14214
14447
|
id: Scalars["String"];
|
14215
14448
|
input: RoadmapToProjectUpdateInput;
|
14216
14449
|
}>>;
|
14450
|
+
export declare const UnarchiveRoadmapDocument: DocumentNode<UnarchiveRoadmapMutation, Exact<{
|
14451
|
+
id: Scalars["String"];
|
14452
|
+
}>>;
|
14217
14453
|
export declare const UpdateRoadmapDocument: DocumentNode<UpdateRoadmapMutation, Exact<{
|
14218
14454
|
id: Scalars["String"];
|
14219
14455
|
input: RoadmapUpdateInput;
|
@@ -14578,6 +14814,17 @@ export declare const EmojisDocument: DocumentNode<EmojisQuery, Exact<{
|
|
14578
14814
|
last?: Maybe<number> | undefined;
|
14579
14815
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
14580
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
|
+
}>>;
|
14581
14828
|
export declare const FavoriteDocument: DocumentNode<FavoriteQuery, Exact<{
|
14582
14829
|
id: Scalars["String"];
|
14583
14830
|
}>>;
|
@@ -14981,6 +15228,15 @@ export declare const Project_MembersDocument: DocumentNode<Project_MembersQuery,
|
|
14981
15228
|
last?: Maybe<number> | undefined;
|
14982
15229
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
14983
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
|
+
}>>;
|
14984
15240
|
export declare const Project_ProjectUpdatesDocument: DocumentNode<Project_ProjectUpdatesQuery, Exact<{
|
14985
15241
|
id: Scalars["String"];
|
14986
15242
|
after?: Maybe<string> | undefined;
|