@linear/sdk 23.0.0 → 24.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_generated_documents.d.ts +677 -70
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +619 -13
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +2381 -254
- 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 +2358 -255
- 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 +2382 -255
- 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
@@ -542,6 +542,8 @@ export declare type AuthOrganizationBucketNamePayload = {
|
|
542
542
|
__typename?: "AuthOrganizationBucketNamePayload";
|
543
543
|
/** The imports bucket name for the organization. */
|
544
544
|
importsBucketName: Scalars["String"];
|
545
|
+
/** The region for the organization. */
|
546
|
+
region: Scalars["String"];
|
545
547
|
/** The uploads bucket name for the organization. */
|
546
548
|
uploadsBucketName: Scalars["String"];
|
547
549
|
};
|
@@ -919,6 +921,14 @@ export declare type CommentFilter = {
|
|
919
921
|
/** Filters that the comments creator must satisfy. */
|
920
922
|
user?: Maybe<UserFilter>;
|
921
923
|
};
|
924
|
+
/** A comment related notification. */
|
925
|
+
export declare type CommentNotification = {
|
926
|
+
__typename?: "CommentNotification";
|
927
|
+
/** Related comment ID. Null if the notification is not related to a comment. */
|
928
|
+
commentId?: Maybe<Scalars["String"]>;
|
929
|
+
/** Related parent comment ID. Null if the notification is not related to a comment. */
|
930
|
+
parentCommentId?: Maybe<Scalars["String"]>;
|
931
|
+
};
|
922
932
|
export declare type CommentPayload = {
|
923
933
|
__typename?: "CommentPayload";
|
924
934
|
/** The comment that was created or updated. */
|
@@ -1165,13 +1175,15 @@ export declare type CustomViewCreateInput = {
|
|
1165
1175
|
icon?: Maybe<Scalars["String"]>;
|
1166
1176
|
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
1167
1177
|
id?: Maybe<Scalars["String"]>;
|
1178
|
+
/** The id of the initiative associated with the custom view. */
|
1179
|
+
initiativeId?: Maybe<Scalars["String"]>;
|
1168
1180
|
/** The name of the custom view. */
|
1169
1181
|
name: Scalars["String"];
|
1170
1182
|
/** The owner of the custom view. */
|
1171
1183
|
ownerId?: Maybe<Scalars["String"]>;
|
1172
1184
|
/** The project filter applied to issues in the custom view. */
|
1173
1185
|
projectFilterData?: Maybe<ProjectFilter>;
|
1174
|
-
/**
|
1186
|
+
/** The id of the project associated with the custom view. */
|
1175
1187
|
projectId?: Maybe<Scalars["String"]>;
|
1176
1188
|
/** Whether the custom view is shared with everyone in the organization. */
|
1177
1189
|
shared?: Maybe<Scalars["Boolean"]>;
|
@@ -1256,6 +1268,8 @@ export declare type CustomViewUpdateInput = {
|
|
1256
1268
|
filters?: Maybe<Scalars["JSONObject"]>;
|
1257
1269
|
/** The icon of the custom view. */
|
1258
1270
|
icon?: Maybe<Scalars["String"]>;
|
1271
|
+
/** [Internal] The id of the initiative associated with the custom view. */
|
1272
|
+
initiativeId?: Maybe<Scalars["String"]>;
|
1259
1273
|
/** The name of the custom view. */
|
1260
1274
|
name?: Maybe<Scalars["String"]>;
|
1261
1275
|
/** The owner of the custom view. */
|
@@ -1840,10 +1854,18 @@ export declare type DocumentNotification = Entity & Node & Notification & {
|
|
1840
1854
|
__typename?: "DocumentNotification";
|
1841
1855
|
/** The user that caused the notification. */
|
1842
1856
|
actor?: Maybe<User>;
|
1857
|
+
/** [Internal] Notification actor initials if avatar is not available. */
|
1858
|
+
actorAvatarColor?: Maybe<Scalars["String"]>;
|
1859
|
+
/** [Internal] Notification avatar URL. */
|
1860
|
+
actorAvatarUrl?: Maybe<Scalars["String"]>;
|
1861
|
+
/** [Internal] Notification actor initials if avatar is not available. */
|
1862
|
+
actorInitials?: Maybe<Scalars["String"]>;
|
1843
1863
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
1844
1864
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
1845
1865
|
/** The bot that caused the notification. */
|
1846
1866
|
botActor?: Maybe<ActorBot>;
|
1867
|
+
/** Related comment ID. Null if the notification is not related to a comment. */
|
1868
|
+
commentId?: Maybe<Scalars["String"]>;
|
1847
1869
|
/** The time at which the entity was created. */
|
1848
1870
|
createdAt: Scalars["DateTime"];
|
1849
1871
|
/**
|
@@ -1853,12 +1875,26 @@ export declare type DocumentNotification = Entity & Node & Notification & {
|
|
1853
1875
|
emailedAt?: Maybe<Scalars["DateTime"]>;
|
1854
1876
|
/** The external user that caused the notification. */
|
1855
1877
|
externalUserActor?: Maybe<ExternalUser>;
|
1878
|
+
/** [ALPHA] Notifications with the same grouping key will be grouped together in the UI. */
|
1879
|
+
groupingKey: Scalars["String"];
|
1856
1880
|
/** The unique identifier of the entity. */
|
1857
1881
|
id: Scalars["ID"];
|
1882
|
+
/** [Internal] If notification actor was Linear. */
|
1883
|
+
isLinearActor?: Maybe<Scalars["Boolean"]>;
|
1884
|
+
/** [Internal] Issue's status type for issue notifications. */
|
1885
|
+
issueStatusType?: Maybe<Scalars["String"]>;
|
1886
|
+
/** Related parent comment ID. Null if the notification is not related to a comment. */
|
1887
|
+
parentCommentId?: Maybe<Scalars["String"]>;
|
1888
|
+
/** [Internal] Project update health for new updates. */
|
1889
|
+
projectUpdateHealth?: Maybe<Scalars["String"]>;
|
1858
1890
|
/** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
|
1859
1891
|
readAt?: Maybe<Scalars["DateTime"]>;
|
1860
1892
|
/** The time until a notification will be snoozed. After that it will appear in the inbox again. */
|
1861
1893
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
1894
|
+
/** [Internal] Notification subtitle. */
|
1895
|
+
subtitle: Scalars["String"];
|
1896
|
+
/** [Internal] Notification title. */
|
1897
|
+
title: Scalars["String"];
|
1862
1898
|
/** Notification type. */
|
1863
1899
|
type: Scalars["String"];
|
1864
1900
|
/** The time at which a notification was unsnoozed.. */
|
@@ -1869,6 +1905,8 @@ export declare type DocumentNotification = Entity & Node & Notification & {
|
|
1869
1905
|
* been updated after creation.
|
1870
1906
|
*/
|
1871
1907
|
updatedAt: Scalars["DateTime"];
|
1908
|
+
/** [Internal] URL to the target of the notification. */
|
1909
|
+
url: Scalars["String"];
|
1872
1910
|
/** The user that received the notification. */
|
1873
1911
|
user: User;
|
1874
1912
|
};
|
@@ -1976,6 +2014,40 @@ export declare type DocumentUpdateInput = {
|
|
1976
2014
|
sortOrder?: Maybe<Scalars["Float"]>;
|
1977
2015
|
/** The title of the document. */
|
1978
2016
|
title?: Maybe<Scalars["String"]>;
|
2017
|
+
/** Whether the document has been trashed. */
|
2018
|
+
trashed?: Maybe<Scalars["Boolean"]>;
|
2019
|
+
};
|
2020
|
+
/** A general purpose draft. Used for comments, project updates, etc. */
|
2021
|
+
export declare type Draft = Node & {
|
2022
|
+
__typename?: "Draft";
|
2023
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
2024
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
2025
|
+
/** The text content as a Prosemirror document. */
|
2026
|
+
bodyData: Scalars["JSON"];
|
2027
|
+
/** The time at which the entity was created. */
|
2028
|
+
createdAt: Scalars["DateTime"];
|
2029
|
+
/** Additional properties for the draft. */
|
2030
|
+
data?: Maybe<Scalars["JSONObject"]>;
|
2031
|
+
/** The unique identifier of the entity. */
|
2032
|
+
id: Scalars["ID"];
|
2033
|
+
/** Whether the draft was autogenerated for the user. */
|
2034
|
+
isAutogenerated: Scalars["Boolean"];
|
2035
|
+
/** The issue for which this is a draft comment. */
|
2036
|
+
issue?: Maybe<Issue>;
|
2037
|
+
/** The comment for which this is a draft comment reply. */
|
2038
|
+
parentComment?: Maybe<Comment>;
|
2039
|
+
/** The project for which this is a draft project update. */
|
2040
|
+
project?: Maybe<Project>;
|
2041
|
+
/** The project update for which this is a draft comment. */
|
2042
|
+
projectUpdate?: Maybe<ProjectUpdate>;
|
2043
|
+
/**
|
2044
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
2045
|
+
* 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
|
2046
|
+
* been updated after creation.
|
2047
|
+
*/
|
2048
|
+
updatedAt: Scalars["DateTime"];
|
2049
|
+
/** The user who created the draft. */
|
2050
|
+
user: User;
|
1979
2051
|
};
|
1980
2052
|
/** Issue due date sorting options. */
|
1981
2053
|
export declare type DueDateSort = {
|
@@ -2344,6 +2416,8 @@ export declare type Favorite = Node & {
|
|
2344
2416
|
folderName?: Maybe<Scalars["String"]>;
|
2345
2417
|
/** The unique identifier of the entity. */
|
2346
2418
|
id: Scalars["ID"];
|
2419
|
+
/** The targeted tab of the initiative. */
|
2420
|
+
initiativeTab?: Maybe<InitiativeTab>;
|
2347
2421
|
/** The favorited issue. */
|
2348
2422
|
issue?: Maybe<Issue>;
|
2349
2423
|
/** The favorited label. */
|
@@ -2360,7 +2434,7 @@ export declare type Favorite = Node & {
|
|
2360
2434
|
project?: Maybe<Project>;
|
2361
2435
|
/** The targeted tab of the project. */
|
2362
2436
|
projectTab?: Maybe<ProjectTab>;
|
2363
|
-
/** The favorited team of the project. */
|
2437
|
+
/** [DEPRECATED] The favorited team of the project. */
|
2364
2438
|
projectTeam?: Maybe<Team>;
|
2365
2439
|
/** The favorited roadmap. */
|
2366
2440
|
roadmap?: Maybe<Roadmap>;
|
@@ -2374,6 +2448,8 @@ export declare type Favorite = Node & {
|
|
2374
2448
|
* been updated after creation.
|
2375
2449
|
*/
|
2376
2450
|
updatedAt: Scalars["DateTime"];
|
2451
|
+
/** URL of the favorited entity. Folders return 'null' value. */
|
2452
|
+
url?: Maybe<Scalars["String"]>;
|
2377
2453
|
/** The favorited user. */
|
2378
2454
|
user?: Maybe<User>;
|
2379
2455
|
};
|
@@ -2407,6 +2483,8 @@ export declare type FavoriteCreateInput = {
|
|
2407
2483
|
id?: Maybe<Scalars["String"]>;
|
2408
2484
|
/** [INTERNAL] The identifier of the initiative to favorite. */
|
2409
2485
|
initiativeId?: Maybe<Scalars["String"]>;
|
2486
|
+
/** The tab of the initiative to favorite. */
|
2487
|
+
initiativeTab?: Maybe<InitiativeTab>;
|
2410
2488
|
/** The identifier of the issue to favorite. */
|
2411
2489
|
issueId?: Maybe<Scalars["String"]>;
|
2412
2490
|
/** The identifier of the label to favorite. */
|
@@ -2421,8 +2499,6 @@ export declare type FavoriteCreateInput = {
|
|
2421
2499
|
projectId?: Maybe<Scalars["String"]>;
|
2422
2500
|
/** The tab of the project to favorite. */
|
2423
2501
|
projectTab?: Maybe<ProjectTab>;
|
2424
|
-
/** The identifier of the project team to favorite. */
|
2425
|
-
projectTeamId?: Maybe<Scalars["String"]>;
|
2426
2502
|
/** The identifier of the roadmap to favorite. */
|
2427
2503
|
roadmapId?: Maybe<Scalars["String"]>;
|
2428
2504
|
/** The position of the item in the favorites list. */
|
@@ -2740,6 +2816,19 @@ export declare type GitHubCommitIntegrationPayload = {
|
|
2740
2816
|
/** The webhook secret to provide to GitHub. */
|
2741
2817
|
webhookSecret: Scalars["String"];
|
2742
2818
|
};
|
2819
|
+
export declare type GitHubEnterpriseServerPayload = {
|
2820
|
+
__typename?: "GitHubEnterpriseServerPayload";
|
2821
|
+
/** The integration that was created or updated. */
|
2822
|
+
integration?: Maybe<Integration>;
|
2823
|
+
/** The identifier of the last sync operation. */
|
2824
|
+
lastSyncId: Scalars["Float"];
|
2825
|
+
/** The setup address. */
|
2826
|
+
setupUrl: Scalars["String"];
|
2827
|
+
/** Whether the operation was successful. */
|
2828
|
+
success: Scalars["Boolean"];
|
2829
|
+
/** The webhook secret to provide to GitHub. */
|
2830
|
+
webhookSecret: Scalars["String"];
|
2831
|
+
};
|
2743
2832
|
/** Metadata and settings for a GitHub import integration. */
|
2744
2833
|
export declare type GitHubImportSettings = {
|
2745
2834
|
__typename?: "GitHubImportSettings";
|
@@ -2790,7 +2879,7 @@ export declare type GitHubRepoInput = {
|
|
2790
2879
|
export declare type GitHubSettings = {
|
2791
2880
|
__typename?: "GitHubSettings";
|
2792
2881
|
/** The avatar URL for the GitHub organization. */
|
2793
|
-
orgAvatarUrl
|
2882
|
+
orgAvatarUrl?: Maybe<Scalars["String"]>;
|
2794
2883
|
/** The GitHub organization's name. */
|
2795
2884
|
orgLogin: Scalars["String"];
|
2796
2885
|
/** The type of Github org */
|
@@ -2802,7 +2891,7 @@ export declare type GitHubSettings = {
|
|
2802
2891
|
};
|
2803
2892
|
export declare type GitHubSettingsInput = {
|
2804
2893
|
/** The avatar URL for the GitHub organization. */
|
2805
|
-
orgAvatarUrl
|
2894
|
+
orgAvatarUrl?: Maybe<Scalars["String"]>;
|
2806
2895
|
/** The GitHub organization's name. */
|
2807
2896
|
orgLogin: Scalars["String"];
|
2808
2897
|
/** The type of Github org */
|
@@ -2884,7 +2973,7 @@ export declare type ImageUploadFromUrlPayload = {
|
|
2884
2973
|
/** The URL containing the image. */
|
2885
2974
|
url?: Maybe<Scalars["String"]>;
|
2886
2975
|
};
|
2887
|
-
/**
|
2976
|
+
/** An initiative to group projects. */
|
2888
2977
|
export declare type Initiative = Node & {
|
2889
2978
|
__typename?: "Initiative";
|
2890
2979
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
@@ -2895,7 +2984,7 @@ export declare type Initiative = Node & {
|
|
2895
2984
|
createdAt: Scalars["DateTime"];
|
2896
2985
|
/** The user who created the initiative. */
|
2897
2986
|
creator: User;
|
2898
|
-
/**
|
2987
|
+
/** The description of the initiative. */
|
2899
2988
|
description?: Maybe<Scalars["String"]>;
|
2900
2989
|
/** The icon of the initiative. */
|
2901
2990
|
icon?: Maybe<Scalars["String"]>;
|
@@ -2919,7 +3008,7 @@ export declare type Initiative = Node & {
|
|
2919
3008
|
status: InitiativeStatus;
|
2920
3009
|
/** The estimated completion date of the initiative. */
|
2921
3010
|
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
2922
|
-
/**
|
3011
|
+
/** The resolution of the initiative's estimated completion date. */
|
2923
3012
|
targetDateResolution?: Maybe<DateResolutionType>;
|
2924
3013
|
/** A flag that indicates whether the initiative is in the trash bin. */
|
2925
3014
|
trashed?: Maybe<Scalars["Boolean"]>;
|
@@ -2930,7 +3019,7 @@ export declare type Initiative = Node & {
|
|
2930
3019
|
*/
|
2931
3020
|
updatedAt: Scalars["DateTime"];
|
2932
3021
|
};
|
2933
|
-
/**
|
3022
|
+
/** An initiative to group projects. */
|
2934
3023
|
export declare type InitiativeLinksArgs = {
|
2935
3024
|
after?: Maybe<Scalars["String"]>;
|
2936
3025
|
before?: Maybe<Scalars["String"]>;
|
@@ -2939,7 +3028,7 @@ export declare type InitiativeLinksArgs = {
|
|
2939
3028
|
last?: Maybe<Scalars["Int"]>;
|
2940
3029
|
orderBy?: Maybe<PaginationOrderBy>;
|
2941
3030
|
};
|
2942
|
-
/**
|
3031
|
+
/** An initiative to group projects. */
|
2943
3032
|
export declare type InitiativeProjectsArgs = {
|
2944
3033
|
after?: Maybe<Scalars["String"]>;
|
2945
3034
|
before?: Maybe<Scalars["String"]>;
|
@@ -2990,11 +3079,11 @@ export declare type InitiativeConnection = {
|
|
2990
3079
|
nodes: Array<Initiative>;
|
2991
3080
|
pageInfo: PageInfo;
|
2992
3081
|
};
|
2993
|
-
/**
|
3082
|
+
/** The properties of the initiative to create. */
|
2994
3083
|
export declare type InitiativeCreateInput = {
|
2995
3084
|
/** The initiative's color. */
|
2996
3085
|
color?: Maybe<Scalars["String"]>;
|
2997
|
-
/**
|
3086
|
+
/** The description of the initiative. */
|
2998
3087
|
description?: Maybe<Scalars["String"]>;
|
2999
3088
|
/** The initiative's icon. */
|
3000
3089
|
icon?: Maybe<Scalars["String"]>;
|
@@ -3043,10 +3132,18 @@ export declare type InitiativeNotification = Entity & Node & Notification & {
|
|
3043
3132
|
__typename?: "InitiativeNotification";
|
3044
3133
|
/** The user that caused the notification. */
|
3045
3134
|
actor?: Maybe<User>;
|
3135
|
+
/** [Internal] Notification actor initials if avatar is not available. */
|
3136
|
+
actorAvatarColor?: Maybe<Scalars["String"]>;
|
3137
|
+
/** [Internal] Notification avatar URL. */
|
3138
|
+
actorAvatarUrl?: Maybe<Scalars["String"]>;
|
3139
|
+
/** [Internal] Notification actor initials if avatar is not available. */
|
3140
|
+
actorInitials?: Maybe<Scalars["String"]>;
|
3046
3141
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
3047
3142
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
3048
3143
|
/** The bot that caused the notification. */
|
3049
3144
|
botActor?: Maybe<ActorBot>;
|
3145
|
+
/** Related comment ID. Null if the notification is not related to a comment. */
|
3146
|
+
commentId?: Maybe<Scalars["String"]>;
|
3050
3147
|
/** The time at which the entity was created. */
|
3051
3148
|
createdAt: Scalars["DateTime"];
|
3052
3149
|
/**
|
@@ -3056,12 +3153,26 @@ export declare type InitiativeNotification = Entity & Node & Notification & {
|
|
3056
3153
|
emailedAt?: Maybe<Scalars["DateTime"]>;
|
3057
3154
|
/** The external user that caused the notification. */
|
3058
3155
|
externalUserActor?: Maybe<ExternalUser>;
|
3156
|
+
/** [ALPHA] Notifications with the same grouping key will be grouped together in the UI. */
|
3157
|
+
groupingKey: Scalars["String"];
|
3059
3158
|
/** The unique identifier of the entity. */
|
3060
3159
|
id: Scalars["ID"];
|
3160
|
+
/** [Internal] If notification actor was Linear. */
|
3161
|
+
isLinearActor?: Maybe<Scalars["Boolean"]>;
|
3162
|
+
/** [Internal] Issue's status type for issue notifications. */
|
3163
|
+
issueStatusType?: Maybe<Scalars["String"]>;
|
3164
|
+
/** Related parent comment ID. Null if the notification is not related to a comment. */
|
3165
|
+
parentCommentId?: Maybe<Scalars["String"]>;
|
3166
|
+
/** [Internal] Project update health for new updates. */
|
3167
|
+
projectUpdateHealth?: Maybe<Scalars["String"]>;
|
3061
3168
|
/** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
|
3062
3169
|
readAt?: Maybe<Scalars["DateTime"]>;
|
3063
3170
|
/** The time until a notification will be snoozed. After that it will appear in the inbox again. */
|
3064
3171
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
3172
|
+
/** [Internal] Notification subtitle. */
|
3173
|
+
subtitle: Scalars["String"];
|
3174
|
+
/** [Internal] Notification title. */
|
3175
|
+
title: Scalars["String"];
|
3065
3176
|
/** Notification type. */
|
3066
3177
|
type: Scalars["String"];
|
3067
3178
|
/** The time at which a notification was unsnoozed.. */
|
@@ -3072,10 +3183,12 @@ export declare type InitiativeNotification = Entity & Node & Notification & {
|
|
3072
3183
|
* been updated after creation.
|
3073
3184
|
*/
|
3074
3185
|
updatedAt: Scalars["DateTime"];
|
3186
|
+
/** [Internal] URL to the target of the notification. */
|
3187
|
+
url: Scalars["String"];
|
3075
3188
|
/** The user that received the notification. */
|
3076
3189
|
user: User;
|
3077
3190
|
};
|
3078
|
-
/**
|
3191
|
+
/** The payload returned by the initiative mutations. */
|
3079
3192
|
export declare type InitiativePayload = {
|
3080
3193
|
__typename?: "InitiativePayload";
|
3081
3194
|
/** The initiative that was created or updated. */
|
@@ -3090,7 +3203,12 @@ export declare enum InitiativeStatus {
|
|
3090
3203
|
Completed = "Completed",
|
3091
3204
|
Planned = "Planned"
|
3092
3205
|
}
|
3093
|
-
/**
|
3206
|
+
/** Different tabs available inside an initiative. */
|
3207
|
+
export declare enum InitiativeTab {
|
3208
|
+
Overview = "overview",
|
3209
|
+
Projects = "projects"
|
3210
|
+
}
|
3211
|
+
/** Join table between projects and initiatives. */
|
3094
3212
|
export declare type InitiativeToProject = Node & {
|
3095
3213
|
__typename?: "InitiativeToProject";
|
3096
3214
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
@@ -3118,7 +3236,7 @@ export declare type InitiativeToProjectConnection = {
|
|
3118
3236
|
nodes: Array<InitiativeToProject>;
|
3119
3237
|
pageInfo: PageInfo;
|
3120
3238
|
};
|
3121
|
-
/**
|
3239
|
+
/** The properties of the initiativeToProject to create. */
|
3122
3240
|
export declare type InitiativeToProjectCreateInput = {
|
3123
3241
|
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
3124
3242
|
id?: Maybe<Scalars["String"]>;
|
@@ -3135,7 +3253,7 @@ export declare type InitiativeToProjectEdge = {
|
|
3135
3253
|
cursor: Scalars["String"];
|
3136
3254
|
node: InitiativeToProject;
|
3137
3255
|
};
|
3138
|
-
/**
|
3256
|
+
/** The result of a initiativeToProject mutation. */
|
3139
3257
|
export declare type InitiativeToProjectPayload = {
|
3140
3258
|
__typename?: "InitiativeToProjectPayload";
|
3141
3259
|
/** The initiativeToProject that was created or updated. */
|
@@ -3145,16 +3263,16 @@ export declare type InitiativeToProjectPayload = {
|
|
3145
3263
|
/** Whether the operation was successful. */
|
3146
3264
|
success: Scalars["Boolean"];
|
3147
3265
|
};
|
3148
|
-
/**
|
3266
|
+
/** The properties of the initiativeToProject to update. */
|
3149
3267
|
export declare type InitiativeToProjectUpdateInput = {
|
3150
3268
|
/** The sort order for the project within its organization. */
|
3151
3269
|
sortOrder?: Maybe<Scalars["Float"]>;
|
3152
3270
|
};
|
3153
|
-
/**
|
3271
|
+
/** The properties of the initiative to update. */
|
3154
3272
|
export declare type InitiativeUpdateInput = {
|
3155
3273
|
/** The initiative's color. */
|
3156
3274
|
color?: Maybe<Scalars["String"]>;
|
3157
|
-
/**
|
3275
|
+
/** The description of the initiative. */
|
3158
3276
|
description?: Maybe<Scalars["String"]>;
|
3159
3277
|
/** The initiative's icon. */
|
3160
3278
|
icon?: Maybe<Scalars["String"]>;
|
@@ -3170,6 +3288,8 @@ export declare type InitiativeUpdateInput = {
|
|
3170
3288
|
targetDate?: Maybe<Scalars["TimelessDate"]>;
|
3171
3289
|
/** The resolution of the initiative's estimated completion date. */
|
3172
3290
|
targetDateResolution?: Maybe<DateResolutionType>;
|
3291
|
+
/** Whether the initiative has been trashed. */
|
3292
|
+
trashed?: Maybe<Scalars["Boolean"]>;
|
3173
3293
|
};
|
3174
3294
|
/** An integration with an external service. */
|
3175
3295
|
export declare type Integration = Node & {
|
@@ -3244,6 +3364,7 @@ export declare enum IntegrationService {
|
|
3244
3364
|
Front = "front",
|
3245
3365
|
Github = "github",
|
3246
3366
|
GithubCommit = "githubCommit",
|
3367
|
+
GithubEnterpriseServer = "githubEnterpriseServer",
|
3247
3368
|
GithubImport = "githubImport",
|
3248
3369
|
GithubPersonal = "githubPersonal",
|
3249
3370
|
Gitlab = "gitlab",
|
@@ -4192,6 +4313,8 @@ export declare type IssueImport = Node & {
|
|
4192
4313
|
creatorId: Scalars["String"];
|
4193
4314
|
/** File URL for the uploaded CSV for the import, if there is one. */
|
4194
4315
|
csvFileUrl?: Maybe<Scalars["String"]>;
|
4316
|
+
/** The display name of the import service. */
|
4317
|
+
displayName: Scalars["String"];
|
4195
4318
|
/** User readable error message, if one has occurred during the import. */
|
4196
4319
|
error?: Maybe<Scalars["String"]>;
|
4197
4320
|
/** Error code and metadata, if one has occurred during the import. */
|
@@ -4415,12 +4538,20 @@ export declare type IssueNotification = Entity & Node & Notification & {
|
|
4415
4538
|
__typename?: "IssueNotification";
|
4416
4539
|
/** The user that caused the notification. */
|
4417
4540
|
actor?: Maybe<User>;
|
4541
|
+
/** [Internal] Notification actor initials if avatar is not available. */
|
4542
|
+
actorAvatarColor?: Maybe<Scalars["String"]>;
|
4543
|
+
/** [Internal] Notification avatar URL. */
|
4544
|
+
actorAvatarUrl?: Maybe<Scalars["String"]>;
|
4545
|
+
/** [Internal] Notification actor initials if avatar is not available. */
|
4546
|
+
actorInitials?: Maybe<Scalars["String"]>;
|
4418
4547
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
4419
4548
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
4420
4549
|
/** The bot that caused the notification. */
|
4421
4550
|
botActor?: Maybe<ActorBot>;
|
4422
4551
|
/** The comment related to the notification. */
|
4423
4552
|
comment?: Maybe<Comment>;
|
4553
|
+
/** Related comment ID. Null if the notification is not related to a comment. */
|
4554
|
+
commentId?: Maybe<Scalars["String"]>;
|
4424
4555
|
/** The time at which the entity was created. */
|
4425
4556
|
createdAt: Scalars["DateTime"];
|
4426
4557
|
/**
|
@@ -4430,10 +4561,22 @@ export declare type IssueNotification = Entity & Node & Notification & {
|
|
4430
4561
|
emailedAt?: Maybe<Scalars["DateTime"]>;
|
4431
4562
|
/** The external user that caused the notification. */
|
4432
4563
|
externalUserActor?: Maybe<ExternalUser>;
|
4564
|
+
/** [ALPHA] Notifications with the same grouping key will be grouped together in the UI. */
|
4565
|
+
groupingKey: Scalars["String"];
|
4433
4566
|
/** The unique identifier of the entity. */
|
4434
4567
|
id: Scalars["ID"];
|
4568
|
+
/** [Internal] If notification actor was Linear. */
|
4569
|
+
isLinearActor?: Maybe<Scalars["Boolean"]>;
|
4435
4570
|
/** The issue related to the notification. */
|
4436
4571
|
issue: Issue;
|
4572
|
+
/** [Internal] Issue's status type for issue notifications. */
|
4573
|
+
issueStatusType?: Maybe<Scalars["String"]>;
|
4574
|
+
/** The parent comment related to the notification, if a notification is a reply comment notification. */
|
4575
|
+
parentComment?: Maybe<Comment>;
|
4576
|
+
/** Related parent comment ID. Null if the notification is not related to a comment. */
|
4577
|
+
parentCommentId?: Maybe<Scalars["String"]>;
|
4578
|
+
/** [Internal] Project update health for new updates. */
|
4579
|
+
projectUpdateHealth?: Maybe<Scalars["String"]>;
|
4437
4580
|
/** Name of the reaction emoji related to the notification. */
|
4438
4581
|
reactionEmoji?: Maybe<Scalars["String"]>;
|
4439
4582
|
/** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
|
@@ -4442,8 +4585,12 @@ export declare type IssueNotification = Entity & Node & Notification & {
|
|
4442
4585
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
4443
4586
|
/** The subscriptions related to the notification. */
|
4444
4587
|
subscriptions?: Maybe<Array<NotificationSubscription>>;
|
4588
|
+
/** [Internal] Notification subtitle. */
|
4589
|
+
subtitle: Scalars["String"];
|
4445
4590
|
/** The team related to the issue notification. */
|
4446
4591
|
team: Team;
|
4592
|
+
/** [Internal] Notification title. */
|
4593
|
+
title: Scalars["String"];
|
4447
4594
|
/** Notification type. */
|
4448
4595
|
type: Scalars["String"];
|
4449
4596
|
/** The time at which a notification was unsnoozed.. */
|
@@ -4454,6 +4601,8 @@ export declare type IssueNotification = Entity & Node & Notification & {
|
|
4454
4601
|
* been updated after creation.
|
4455
4602
|
*/
|
4456
4603
|
updatedAt: Scalars["DateTime"];
|
4604
|
+
/** [Internal] URL to the target of the notification. */
|
4605
|
+
url: Scalars["String"];
|
4457
4606
|
/** The user that received the notification. */
|
4458
4607
|
user: User;
|
4459
4608
|
};
|
@@ -5179,21 +5328,21 @@ export declare type Mutation = {
|
|
5179
5328
|
imageUploadFromUrl: ImageUploadFromUrlPayload;
|
5180
5329
|
/** XHR request payload to upload a file for import, directly to Linear's cloud storage. */
|
5181
5330
|
importFileUpload: UploadPayload;
|
5182
|
-
/**
|
5331
|
+
/** Archives a initiative. */
|
5183
5332
|
initiativeArchive: InitiativeArchivePayload;
|
5184
|
-
/**
|
5333
|
+
/** Creates a new initiative. */
|
5185
5334
|
initiativeCreate: InitiativePayload;
|
5186
|
-
/**
|
5335
|
+
/** Deletes (trashes) an initiative. */
|
5187
5336
|
initiativeDelete: DeletePayload;
|
5188
|
-
/**
|
5337
|
+
/** Creates a new initiativeToProject join. */
|
5189
5338
|
initiativeToProjectCreate: InitiativeToProjectPayload;
|
5190
|
-
/**
|
5339
|
+
/** Deletes a initiativeToProject. */
|
5191
5340
|
initiativeToProjectDelete: DeletePayload;
|
5192
|
-
/**
|
5341
|
+
/** Updates a initiativeToProject. */
|
5193
5342
|
initiativeToProjectUpdate: InitiativeToProjectPayload;
|
5194
|
-
/**
|
5343
|
+
/** Unarchives a initiative. */
|
5195
5344
|
initiativeUnarchive: InitiativeArchivePayload;
|
5196
|
-
/**
|
5345
|
+
/** Updates a initiative. */
|
5197
5346
|
initiativeUpdate: InitiativePayload;
|
5198
5347
|
/** Archives an integration. */
|
5199
5348
|
integrationArchive: DeletePayload;
|
@@ -5207,6 +5356,8 @@ export declare type Mutation = {
|
|
5207
5356
|
integrationFigma: IntegrationPayload;
|
5208
5357
|
/** Integrates the organization with Front. */
|
5209
5358
|
integrationFront: IntegrationPayload;
|
5359
|
+
/** Connects the organization with a GitHub Enterprise Server. */
|
5360
|
+
integrationGitHubEnterpriseServerConnect: GitHubEnterpriseServerPayload;
|
5210
5361
|
/** Connect your GitHub account to Linear. */
|
5211
5362
|
integrationGitHubPersonal: IntegrationPayload;
|
5212
5363
|
/** Generates a webhook for the GitHub commit integration. */
|
@@ -5889,6 +6040,10 @@ export declare type MutationIntegrationFrontArgs = {
|
|
5889
6040
|
code: Scalars["String"];
|
5890
6041
|
redirectUri: Scalars["String"];
|
5891
6042
|
};
|
6043
|
+
export declare type MutationIntegrationGitHubEnterpriseServerConnectArgs = {
|
6044
|
+
githubUrl: Scalars["String"];
|
6045
|
+
organizationName?: Maybe<Scalars["String"]>;
|
6046
|
+
};
|
5892
6047
|
export declare type MutationIntegrationGitHubPersonalArgs = {
|
5893
6048
|
code: Scalars["String"];
|
5894
6049
|
};
|
@@ -6025,6 +6180,7 @@ export declare type MutationIssueCreateArgs = {
|
|
6025
6180
|
};
|
6026
6181
|
export declare type MutationIssueDeleteArgs = {
|
6027
6182
|
id: Scalars["String"];
|
6183
|
+
permanentlyDelete?: Maybe<Scalars["Boolean"]>;
|
6028
6184
|
};
|
6029
6185
|
export declare type MutationIssueDescriptionUpdateFromFrontArgs = {
|
6030
6186
|
description: Scalars["String"];
|
@@ -6068,7 +6224,7 @@ export declare type MutationIssueImportCreateGithubArgs = {
|
|
6068
6224
|
githubToken?: Maybe<Scalars["String"]>;
|
6069
6225
|
includeClosedIssues?: Maybe<Scalars["Boolean"]>;
|
6070
6226
|
instantProcess?: Maybe<Scalars["Boolean"]>;
|
6071
|
-
integrationId
|
6227
|
+
integrationId?: Maybe<Scalars["String"]>;
|
6072
6228
|
organizationId?: Maybe<Scalars["String"]>;
|
6073
6229
|
teamId?: Maybe<Scalars["String"]>;
|
6074
6230
|
teamName?: Maybe<Scalars["String"]>;
|
@@ -6496,6 +6652,12 @@ export declare type Node = {
|
|
6496
6652
|
export declare type Notification = {
|
6497
6653
|
/** The user that caused the notification. */
|
6498
6654
|
actor?: Maybe<User>;
|
6655
|
+
/** [Internal] Notification actor initials if avatar is not available. */
|
6656
|
+
actorAvatarColor?: Maybe<Scalars["String"]>;
|
6657
|
+
/** [Internal] Notification avatar URL. */
|
6658
|
+
actorAvatarUrl?: Maybe<Scalars["String"]>;
|
6659
|
+
/** [Internal] Notification actor initials if avatar is not available. */
|
6660
|
+
actorInitials?: Maybe<Scalars["String"]>;
|
6499
6661
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
6500
6662
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
6501
6663
|
/** The bot that caused the notification. */
|
@@ -6509,12 +6671,24 @@ export declare type Notification = {
|
|
6509
6671
|
emailedAt?: Maybe<Scalars["DateTime"]>;
|
6510
6672
|
/** The external user that caused the notification. */
|
6511
6673
|
externalUserActor?: Maybe<ExternalUser>;
|
6674
|
+
/** [ALPHA] Notifications with the same grouping key will be grouped together in the UI. */
|
6675
|
+
groupingKey: Scalars["String"];
|
6512
6676
|
/** The unique identifier of the entity. */
|
6513
6677
|
id: Scalars["ID"];
|
6678
|
+
/** [Internal] If notification actor was Linear. */
|
6679
|
+
isLinearActor?: Maybe<Scalars["Boolean"]>;
|
6680
|
+
/** [Internal] Issue's status type for issue notifications. */
|
6681
|
+
issueStatusType?: Maybe<Scalars["String"]>;
|
6682
|
+
/** [Internal] Project update health for new updates. */
|
6683
|
+
projectUpdateHealth?: Maybe<Scalars["String"]>;
|
6514
6684
|
/** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
|
6515
6685
|
readAt?: Maybe<Scalars["DateTime"]>;
|
6516
6686
|
/** The time until a notification will be snoozed. After that it will appear in the inbox again. */
|
6517
6687
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
6688
|
+
/** [Internal] Notification subtitle. */
|
6689
|
+
subtitle: Scalars["String"];
|
6690
|
+
/** [Internal] Notification title. */
|
6691
|
+
title: Scalars["String"];
|
6518
6692
|
/** Notification type. */
|
6519
6693
|
type: Scalars["String"];
|
6520
6694
|
/** The time at which a notification was unsnoozed.. */
|
@@ -6525,6 +6699,8 @@ export declare type Notification = {
|
|
6525
6699
|
* been updated after creation.
|
6526
6700
|
*/
|
6527
6701
|
updatedAt: Scalars["DateTime"];
|
6702
|
+
/** [Internal] URL to the target of the notification. */
|
6703
|
+
url: Scalars["String"];
|
6528
6704
|
/** The user that received the notification. */
|
6529
6705
|
user: User;
|
6530
6706
|
};
|
@@ -7349,6 +7525,12 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
|
|
7349
7525
|
__typename?: "OauthClientApprovalNotification";
|
7350
7526
|
/** The user that caused the notification. */
|
7351
7527
|
actor?: Maybe<User>;
|
7528
|
+
/** [Internal] Notification actor initials if avatar is not available. */
|
7529
|
+
actorAvatarColor?: Maybe<Scalars["String"]>;
|
7530
|
+
/** [Internal] Notification avatar URL. */
|
7531
|
+
actorAvatarUrl?: Maybe<Scalars["String"]>;
|
7532
|
+
/** [Internal] Notification actor initials if avatar is not available. */
|
7533
|
+
actorInitials?: Maybe<Scalars["String"]>;
|
7352
7534
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
7353
7535
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
7354
7536
|
/** The bot that caused the notification. */
|
@@ -7362,14 +7544,26 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
|
|
7362
7544
|
emailedAt?: Maybe<Scalars["DateTime"]>;
|
7363
7545
|
/** The external user that caused the notification. */
|
7364
7546
|
externalUserActor?: Maybe<ExternalUser>;
|
7547
|
+
/** [ALPHA] Notifications with the same grouping key will be grouped together in the UI. */
|
7548
|
+
groupingKey: Scalars["String"];
|
7365
7549
|
/** The unique identifier of the entity. */
|
7366
7550
|
id: Scalars["ID"];
|
7551
|
+
/** [Internal] If notification actor was Linear. */
|
7552
|
+
isLinearActor?: Maybe<Scalars["Boolean"]>;
|
7553
|
+
/** [Internal] Issue's status type for issue notifications. */
|
7554
|
+
issueStatusType?: Maybe<Scalars["String"]>;
|
7367
7555
|
/** The OAuth client approval request related to the notification. */
|
7368
7556
|
oauthClientApproval: OauthClientApproval;
|
7557
|
+
/** [Internal] Project update health for new updates. */
|
7558
|
+
projectUpdateHealth?: Maybe<Scalars["String"]>;
|
7369
7559
|
/** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
|
7370
7560
|
readAt?: Maybe<Scalars["DateTime"]>;
|
7371
7561
|
/** The time until a notification will be snoozed. After that it will appear in the inbox again. */
|
7372
7562
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
7563
|
+
/** [Internal] Notification subtitle. */
|
7564
|
+
subtitle: Scalars["String"];
|
7565
|
+
/** [Internal] Notification title. */
|
7566
|
+
title: Scalars["String"];
|
7373
7567
|
/** Notification type. */
|
7374
7568
|
type: Scalars["String"];
|
7375
7569
|
/** The time at which a notification was unsnoozed.. */
|
@@ -7380,6 +7574,8 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
|
|
7380
7574
|
* been updated after creation.
|
7381
7575
|
*/
|
7382
7576
|
updatedAt: Scalars["DateTime"];
|
7577
|
+
/** [Internal] URL to the target of the notification. */
|
7578
|
+
url: Scalars["String"];
|
7383
7579
|
/** The user that received the notification. */
|
7384
7580
|
user: User;
|
7385
7581
|
};
|
@@ -8564,10 +8760,20 @@ export declare type ProjectNotification = Entity & Node & Notification & {
|
|
8564
8760
|
__typename?: "ProjectNotification";
|
8565
8761
|
/** The user that caused the notification. */
|
8566
8762
|
actor?: Maybe<User>;
|
8763
|
+
/** [Internal] Notification actor initials if avatar is not available. */
|
8764
|
+
actorAvatarColor?: Maybe<Scalars["String"]>;
|
8765
|
+
/** [Internal] Notification avatar URL. */
|
8766
|
+
actorAvatarUrl?: Maybe<Scalars["String"]>;
|
8767
|
+
/** [Internal] Notification actor initials if avatar is not available. */
|
8768
|
+
actorInitials?: Maybe<Scalars["String"]>;
|
8567
8769
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
8568
8770
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
8569
8771
|
/** The bot that caused the notification. */
|
8570
8772
|
botActor?: Maybe<ActorBot>;
|
8773
|
+
/** The comment related to the notification. */
|
8774
|
+
comment?: Maybe<Comment>;
|
8775
|
+
/** Related comment ID. Null if the notification is not related to a comment. */
|
8776
|
+
commentId?: Maybe<Scalars["String"]>;
|
8571
8777
|
/** The time at which the entity was created. */
|
8572
8778
|
createdAt: Scalars["DateTime"];
|
8573
8779
|
/**
|
@@ -8577,16 +8783,32 @@ export declare type ProjectNotification = Entity & Node & Notification & {
|
|
8577
8783
|
emailedAt?: Maybe<Scalars["DateTime"]>;
|
8578
8784
|
/** The external user that caused the notification. */
|
8579
8785
|
externalUserActor?: Maybe<ExternalUser>;
|
8786
|
+
/** [ALPHA] Notifications with the same grouping key will be grouped together in the UI. */
|
8787
|
+
groupingKey: Scalars["String"];
|
8580
8788
|
/** The unique identifier of the entity. */
|
8581
8789
|
id: Scalars["ID"];
|
8790
|
+
/** [Internal] If notification actor was Linear. */
|
8791
|
+
isLinearActor?: Maybe<Scalars["Boolean"]>;
|
8792
|
+
/** [Internal] Issue's status type for issue notifications. */
|
8793
|
+
issueStatusType?: Maybe<Scalars["String"]>;
|
8794
|
+
/** The parent comment related to the notification, if a notification is a reply comment notification. */
|
8795
|
+
parentComment?: Maybe<Comment>;
|
8796
|
+
/** Related parent comment ID. Null if the notification is not related to a comment. */
|
8797
|
+
parentCommentId?: Maybe<Scalars["String"]>;
|
8582
8798
|
/** The project related to the notification. */
|
8583
8799
|
project: Project;
|
8584
8800
|
/** The project update related to the notification. */
|
8585
8801
|
projectUpdate?: Maybe<ProjectUpdate>;
|
8802
|
+
/** [Internal] Project update health for new updates. */
|
8803
|
+
projectUpdateHealth?: Maybe<Scalars["String"]>;
|
8586
8804
|
/** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
|
8587
8805
|
readAt?: Maybe<Scalars["DateTime"]>;
|
8588
8806
|
/** The time until a notification will be snoozed. After that it will appear in the inbox again. */
|
8589
8807
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
8808
|
+
/** [Internal] Notification subtitle. */
|
8809
|
+
subtitle: Scalars["String"];
|
8810
|
+
/** [Internal] Notification title. */
|
8811
|
+
title: Scalars["String"];
|
8590
8812
|
/** Notification type. */
|
8591
8813
|
type: Scalars["String"];
|
8592
8814
|
/** The time at which a notification was unsnoozed.. */
|
@@ -8597,6 +8819,8 @@ export declare type ProjectNotification = Entity & Node & Notification & {
|
|
8597
8819
|
* been updated after creation.
|
8598
8820
|
*/
|
8599
8821
|
updatedAt: Scalars["DateTime"];
|
8822
|
+
/** [Internal] URL to the target of the notification. */
|
8823
|
+
url: Scalars["String"];
|
8600
8824
|
/** The user that received the notification. */
|
8601
8825
|
user: User;
|
8602
8826
|
};
|
@@ -9158,6 +9382,8 @@ export declare type ProjectUpdateInput = {
|
|
9158
9382
|
targetDateResolution?: Maybe<DateResolutionType>;
|
9159
9383
|
/** The identifiers of the teams this project is associated with. */
|
9160
9384
|
teamIds?: Maybe<Array<Scalars["String"]>>;
|
9385
|
+
/** Whether the project has been trashed. */
|
9386
|
+
trashed?: Maybe<Scalars["Boolean"]>;
|
9161
9387
|
};
|
9162
9388
|
/** Holds information about when a user has interacted with a project update. */
|
9163
9389
|
export declare type ProjectUpdateInteraction = Node & {
|
@@ -9286,7 +9512,7 @@ export declare type ProjectUpdatesFilter = {
|
|
9286
9512
|
/** Comparator for the updated at date. */
|
9287
9513
|
updatedAt?: Maybe<DateComparator>;
|
9288
9514
|
};
|
9289
|
-
/** A user's web
|
9515
|
+
/** A user's web or mobile push notification subscription. */
|
9290
9516
|
export declare type PushSubscription = Node & {
|
9291
9517
|
__typename?: "PushSubscription";
|
9292
9518
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
@@ -9429,13 +9655,13 @@ export declare type Query = {
|
|
9429
9655
|
favorite: Favorite;
|
9430
9656
|
/** The user's favorites. */
|
9431
9657
|
favorites: FavoriteConnection;
|
9432
|
-
/**
|
9658
|
+
/** One specific initiative. */
|
9433
9659
|
initiative: Initiative;
|
9434
|
-
/**
|
9660
|
+
/** One specific initiativeToProject. */
|
9435
9661
|
initiativeToProject: InitiativeToProject;
|
9436
|
-
/**
|
9662
|
+
/** returns a list of initiative to project entities. */
|
9437
9663
|
initiativeToProjects: InitiativeToProjectConnection;
|
9438
|
-
/**
|
9664
|
+
/** All initiatives in the workspace. */
|
9439
9665
|
initiatives: InitiativeConnection;
|
9440
9666
|
/** One specific integration. */
|
9441
9667
|
integration: Integration;
|
@@ -11580,7 +11806,7 @@ export declare type TemplateUpdateInput = {
|
|
11580
11806
|
/** The template data as JSON encoded attributes of the type of entity, such as an issue. */
|
11581
11807
|
templateData?: Maybe<Scalars["JSON"]>;
|
11582
11808
|
};
|
11583
|
-
/** A text draft, used for comments and project updates. */
|
11809
|
+
/** [DEPRECATED] A text draft, used for comments and project updates. */
|
11584
11810
|
export declare type TextDraft = Node & {
|
11585
11811
|
__typename?: "TextDraft";
|
11586
11812
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
@@ -11589,6 +11815,8 @@ export declare type TextDraft = Node & {
|
|
11589
11815
|
bodyData: Scalars["JSON"];
|
11590
11816
|
/** The time at which the entity was created. */
|
11591
11817
|
createdAt: Scalars["DateTime"];
|
11818
|
+
/** Additional properties for the draft. */
|
11819
|
+
data?: Maybe<Scalars["JSONObject"]>;
|
11592
11820
|
/** The unique identifier of the entity. */
|
11593
11821
|
id: Scalars["ID"];
|
11594
11822
|
/** Whether the draft was autogenerated for the user. */
|
@@ -11874,6 +12102,8 @@ export declare type User = Node & {
|
|
11874
12102
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
11875
12103
|
/** Issues assigned to the user. */
|
11876
12104
|
assignedIssues: IssueConnection;
|
12105
|
+
/** The background color of the avatar for users without set avatar. */
|
12106
|
+
avatarBackgroundColor: Scalars["String"];
|
11877
12107
|
/** An URL to the user's avatar image. */
|
11878
12108
|
avatarUrl?: Maybe<Scalars["String"]>;
|
11879
12109
|
/** [DEPRECATED] Hash for the user to be used in calendar URLs. */
|
@@ -11896,6 +12126,8 @@ export declare type User = Node & {
|
|
11896
12126
|
guest: Scalars["Boolean"];
|
11897
12127
|
/** The unique identifier of the entity. */
|
11898
12128
|
id: Scalars["ID"];
|
12129
|
+
/** The initials of the user. */
|
12130
|
+
initials: Scalars["String"];
|
11899
12131
|
/** Unique hash for the user to be used in invite URLs. */
|
11900
12132
|
inviteHash: Scalars["String"];
|
11901
12133
|
/** Whether the user is the currently authenticated user. */
|
@@ -12138,6 +12370,7 @@ export declare enum UserFlagType {
|
|
12138
12370
|
FigmaPromptDismissed = "figmaPromptDismissed",
|
12139
12371
|
HelpIslandFeatureInsightsDismissed = "helpIslandFeatureInsightsDismissed",
|
12140
12372
|
ImportBannerDismissed = "importBannerDismissed",
|
12373
|
+
InitiativesBannerDismissed = "initiativesBannerDismissed",
|
12141
12374
|
InsightsHelpDismissed = "insightsHelpDismissed",
|
12142
12375
|
InsightsWelcomeDismissed = "insightsWelcomeDismissed",
|
12143
12376
|
IssueLabelSuggestionUsed = "issueLabelSuggestionUsed",
|
@@ -12935,6 +13168,9 @@ export declare type CommentFragment = {
|
|
12935
13168
|
__typename?: "User";
|
12936
13169
|
} & Pick<User, "id">>;
|
12937
13170
|
};
|
13171
|
+
export declare type CommentNotificationFragment = {
|
13172
|
+
__typename: "CommentNotification";
|
13173
|
+
} & Pick<CommentNotification, "commentId" | "parentCommentId">;
|
12938
13174
|
export declare type CompanyFragment = {
|
12939
13175
|
__typename: "Company";
|
12940
13176
|
} & Pick<Company, "externalId" | "logoUrl" | "name" | "websiteUrl" | "companyProperties" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
|
@@ -13037,6 +13273,9 @@ export declare type DocumentContentFragment = {
|
|
13037
13273
|
document?: Maybe<{
|
13038
13274
|
__typename?: "Document";
|
13039
13275
|
} & Pick<Document, "id">>;
|
13276
|
+
initiative?: Maybe<{
|
13277
|
+
__typename?: "Initiative";
|
13278
|
+
} & Pick<Initiative, "id">>;
|
13040
13279
|
issue?: Maybe<{
|
13041
13280
|
__typename?: "Issue";
|
13042
13281
|
} & Pick<Issue, "id">>;
|
@@ -13056,7 +13295,7 @@ export declare type DocumentContentHistoryFragment = {
|
|
13056
13295
|
};
|
13057
13296
|
export declare type DocumentNotificationFragment = {
|
13058
13297
|
__typename: "DocumentNotification";
|
13059
|
-
} & Pick<DocumentNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
|
13298
|
+
} & Pick<DocumentNotification, "type" | "commentId" | "parentCommentId" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
|
13060
13299
|
botActor?: Maybe<{
|
13061
13300
|
__typename?: "ActorBot";
|
13062
13301
|
} & ActorBotFragment>;
|
@@ -13089,6 +13328,9 @@ export declare type DocumentFragment = {
|
|
13089
13328
|
export declare type FacetFragment = {
|
13090
13329
|
__typename: "Facet";
|
13091
13330
|
} & Pick<Facet, "updatedAt" | "sourcePage" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
13331
|
+
sourceInitiative?: Maybe<{
|
13332
|
+
__typename?: "Initiative";
|
13333
|
+
} & Pick<Initiative, "id">>;
|
13092
13334
|
sourceProject?: Maybe<{
|
13093
13335
|
__typename?: "Project";
|
13094
13336
|
} & Pick<Project, "id">>;
|
@@ -13121,6 +13363,25 @@ export declare type FeatureFlagFragment = {
|
|
13121
13363
|
__typename?: "User";
|
13122
13364
|
} & Pick<User, "id">>;
|
13123
13365
|
};
|
13366
|
+
export declare type DraftFragment = {
|
13367
|
+
__typename: "Draft";
|
13368
|
+
} & Pick<Draft, "data" | "updatedAt" | "bodyData" | "archivedAt" | "createdAt" | "id" | "isAutogenerated"> & {
|
13369
|
+
parentComment?: Maybe<{
|
13370
|
+
__typename?: "Comment";
|
13371
|
+
} & Pick<Comment, "id">>;
|
13372
|
+
issue?: Maybe<{
|
13373
|
+
__typename?: "Issue";
|
13374
|
+
} & Pick<Issue, "id">>;
|
13375
|
+
project?: Maybe<{
|
13376
|
+
__typename?: "Project";
|
13377
|
+
} & Pick<Project, "id">>;
|
13378
|
+
projectUpdate?: Maybe<{
|
13379
|
+
__typename?: "ProjectUpdate";
|
13380
|
+
} & Pick<ProjectUpdate, "id">>;
|
13381
|
+
user: {
|
13382
|
+
__typename?: "User";
|
13383
|
+
} & Pick<User, "id">;
|
13384
|
+
};
|
13124
13385
|
export declare type AttachmentArchivePayloadFragment = {
|
13125
13386
|
__typename: "AttachmentArchivePayload";
|
13126
13387
|
} & Pick<AttachmentArchivePayload, "lastSyncId" | "success"> & {
|
@@ -13144,7 +13405,11 @@ export declare type DocumentArchivePayloadFragment = {
|
|
13144
13405
|
};
|
13145
13406
|
export declare type InitiativeArchivePayloadFragment = {
|
13146
13407
|
__typename: "InitiativeArchivePayload";
|
13147
|
-
} & Pick<InitiativeArchivePayload, "lastSyncId" | "success"
|
13408
|
+
} & Pick<InitiativeArchivePayload, "lastSyncId" | "success"> & {
|
13409
|
+
entity?: Maybe<{
|
13410
|
+
__typename?: "Initiative";
|
13411
|
+
} & Pick<Initiative, "id">>;
|
13412
|
+
};
|
13148
13413
|
export declare type IssueArchivePayloadFragment = {
|
13149
13414
|
__typename: "IssueArchivePayload";
|
13150
13415
|
} & Pick<IssueArchivePayload, "lastSyncId" | "success"> & {
|
@@ -13372,13 +13637,19 @@ export declare type ProjectNotificationSubscriptionFragment = {
|
|
13372
13637
|
};
|
13373
13638
|
export declare type ProjectNotificationFragment = {
|
13374
13639
|
__typename: "ProjectNotification";
|
13375
|
-
} & Pick<ProjectNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
|
13640
|
+
} & Pick<ProjectNotification, "type" | "commentId" | "parentCommentId" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
|
13376
13641
|
botActor?: Maybe<{
|
13377
13642
|
__typename?: "ActorBot";
|
13378
13643
|
} & ActorBotFragment>;
|
13644
|
+
comment?: Maybe<{
|
13645
|
+
__typename?: "Comment";
|
13646
|
+
} & Pick<Comment, "id">>;
|
13379
13647
|
externalUserActor?: Maybe<{
|
13380
13648
|
__typename?: "ExternalUser";
|
13381
13649
|
} & Pick<ExternalUser, "id">>;
|
13650
|
+
parentComment?: Maybe<{
|
13651
|
+
__typename?: "Comment";
|
13652
|
+
} & Pick<Comment, "id">>;
|
13382
13653
|
project: {
|
13383
13654
|
__typename?: "Project";
|
13384
13655
|
} & Pick<Project, "id">;
|
@@ -13636,25 +13907,6 @@ export declare type TemplateFragment = {
|
|
13636
13907
|
__typename?: "User";
|
13637
13908
|
} & Pick<User, "id">>;
|
13638
13909
|
};
|
13639
|
-
export declare type TextDraftFragment = {
|
13640
|
-
__typename: "TextDraft";
|
13641
|
-
} & Pick<TextDraft, "updatedAt" | "bodyData" | "archivedAt" | "createdAt" | "id" | "isAutogenerated"> & {
|
13642
|
-
parentComment?: Maybe<{
|
13643
|
-
__typename?: "Comment";
|
13644
|
-
} & Pick<Comment, "id">>;
|
13645
|
-
issue?: Maybe<{
|
13646
|
-
__typename?: "Issue";
|
13647
|
-
} & Pick<Issue, "id">>;
|
13648
|
-
project?: Maybe<{
|
13649
|
-
__typename?: "Project";
|
13650
|
-
} & Pick<Project, "id">>;
|
13651
|
-
projectUpdate?: Maybe<{
|
13652
|
-
__typename?: "ProjectUpdate";
|
13653
|
-
} & Pick<ProjectUpdate, "id">>;
|
13654
|
-
user: {
|
13655
|
-
__typename?: "User";
|
13656
|
-
} & Pick<User, "id">;
|
13657
|
-
};
|
13658
13910
|
export declare type TimeScheduleFragment = {
|
13659
13911
|
__typename: "TimeSchedule";
|
13660
13912
|
} & Pick<TimeSchedule, "externalUrl" | "externalId" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id"> & {
|
@@ -13728,7 +13980,7 @@ export declare type AuthUserFragment = {
|
|
13728
13980
|
};
|
13729
13981
|
export declare type UserFragment = {
|
13730
13982
|
__typename: "User";
|
13731
|
-
} & 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">;
|
13983
|
+
} & Pick<User, "statusUntilAt" | "description" | "avatarUrl" | "createdIssueCount" | "disableReason" | "avatarBackgroundColor" | "statusEmoji" | "initials" | "statusLabel" | "updatedAt" | "lastSeen" | "timezone" | "archivedAt" | "createdAt" | "id" | "displayName" | "email" | "name" | "inviteHash" | "url" | "active" | "guest" | "admin" | "isMe" | "calendarHash">;
|
13732
13984
|
export declare type NotificationDeliveryPreferencesFragment = {
|
13733
13985
|
__typename: "NotificationDeliveryPreferences";
|
13734
13986
|
} & {
|
@@ -13826,16 +14078,19 @@ export declare type ProjectLinkFragment = {
|
|
13826
14078
|
export declare type EntityExternalLinkFragment = {
|
13827
14079
|
__typename: "EntityExternalLink";
|
13828
14080
|
} & Pick<EntityExternalLink, "updatedAt" | "url" | "label" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
14081
|
+
initiative: {
|
14082
|
+
__typename?: "Initiative";
|
14083
|
+
} & Pick<Initiative, "id">;
|
13829
14084
|
creator: {
|
13830
14085
|
__typename?: "User";
|
13831
14086
|
} & Pick<User, "id">;
|
13832
14087
|
};
|
13833
14088
|
export declare type IssueImportFragment = {
|
13834
14089
|
__typename: "IssueImport";
|
13835
|
-
} & Pick<IssueImport, "progress" | "errorMetadata" | "csvFileUrl" | "serviceMetadata" | "teamName" | "mapping" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
|
14090
|
+
} & Pick<IssueImport, "progress" | "errorMetadata" | "csvFileUrl" | "serviceMetadata" | "teamName" | "mapping" | "displayName" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
|
13836
14091
|
export declare type InitiativeNotificationFragment = {
|
13837
14092
|
__typename: "InitiativeNotification";
|
13838
|
-
} & Pick<InitiativeNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
|
14093
|
+
} & Pick<InitiativeNotification, "type" | "commentId" | "parentCommentId" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
|
13839
14094
|
botActor?: Maybe<{
|
13840
14095
|
__typename?: "ActorBot";
|
13841
14096
|
} & ActorBotFragment>;
|
@@ -13849,6 +14104,16 @@ export declare type InitiativeNotificationFragment = {
|
|
13849
14104
|
__typename?: "User";
|
13850
14105
|
} & Pick<User, "id">;
|
13851
14106
|
};
|
14107
|
+
export declare type InitiativeFragment = {
|
14108
|
+
__typename: "Initiative";
|
14109
|
+
} & Pick<Initiative, "trashed" | "description" | "targetDate" | "icon" | "color" | "slugId" | "updatedAt" | "name" | "targetDateResolution" | "sortOrder" | "status" | "archivedAt" | "createdAt" | "id"> & {
|
14110
|
+
creator: {
|
14111
|
+
__typename?: "User";
|
14112
|
+
} & Pick<User, "id">;
|
14113
|
+
owner: {
|
14114
|
+
__typename?: "User";
|
14115
|
+
} & Pick<User, "id">;
|
14116
|
+
};
|
13852
14117
|
export declare type IntegrationFragment = {
|
13853
14118
|
__typename: "Integration";
|
13854
14119
|
} & Pick<Integration, "service" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
|
@@ -13874,7 +14139,7 @@ export declare type OrganizationInviteFragment = {
|
|
13874
14139
|
};
|
13875
14140
|
export declare type IssueNotificationFragment = {
|
13876
14141
|
__typename: "IssueNotification";
|
13877
|
-
} & Pick<IssueNotification, "reactionEmoji" | "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
|
14142
|
+
} & Pick<IssueNotification, "reactionEmoji" | "type" | "commentId" | "parentCommentId" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
|
13878
14143
|
botActor?: Maybe<{
|
13879
14144
|
__typename?: "ActorBot";
|
13880
14145
|
} & ActorBotFragment>;
|
@@ -13887,6 +14152,9 @@ export declare type IssueNotificationFragment = {
|
|
13887
14152
|
issue: {
|
13888
14153
|
__typename?: "Issue";
|
13889
14154
|
} & Pick<Issue, "id">;
|
14155
|
+
parentComment?: Maybe<{
|
14156
|
+
__typename?: "Comment";
|
14157
|
+
} & Pick<Comment, "id">>;
|
13890
14158
|
subscriptions?: Maybe<Array<({
|
13891
14159
|
__typename?: "CustomViewNotificationSubscription";
|
13892
14160
|
} & NotificationSubscription_CustomViewNotificationSubscription_Fragment) | ({
|
@@ -14120,6 +14388,16 @@ export declare type JiraSettingsFragment = {
|
|
14120
14388
|
__typename?: "JiraLinearMapping";
|
14121
14389
|
} & JiraLinearMappingFragment>>;
|
14122
14390
|
};
|
14391
|
+
export declare type InitiativeToProjectFragment = {
|
14392
|
+
__typename: "InitiativeToProject";
|
14393
|
+
} & Pick<InitiativeToProject, "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
14394
|
+
initiative: {
|
14395
|
+
__typename?: "Initiative";
|
14396
|
+
} & Pick<Initiative, "id">;
|
14397
|
+
project: {
|
14398
|
+
__typename?: "Project";
|
14399
|
+
} & Pick<Project, "id">;
|
14400
|
+
};
|
14123
14401
|
export declare type RoadmapToProjectFragment = {
|
14124
14402
|
__typename: "RoadmapToProject";
|
14125
14403
|
} & Pick<RoadmapToProject, "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
@@ -14481,6 +14759,20 @@ export declare type PaidSubscriptionFragment = {
|
|
14481
14759
|
__typename?: "User";
|
14482
14760
|
} & Pick<User, "id">>;
|
14483
14761
|
};
|
14762
|
+
export declare type InitiativePayloadFragment = {
|
14763
|
+
__typename: "InitiativePayload";
|
14764
|
+
} & Pick<InitiativePayload, "lastSyncId" | "success"> & {
|
14765
|
+
initiative: {
|
14766
|
+
__typename?: "Initiative";
|
14767
|
+
} & Pick<Initiative, "id">;
|
14768
|
+
};
|
14769
|
+
export declare type InitiativeToProjectPayloadFragment = {
|
14770
|
+
__typename: "InitiativeToProjectPayload";
|
14771
|
+
} & Pick<InitiativeToProjectPayload, "lastSyncId" | "success"> & {
|
14772
|
+
initiativeToProject: {
|
14773
|
+
__typename?: "InitiativeToProject";
|
14774
|
+
} & Pick<InitiativeToProject, "id">;
|
14775
|
+
};
|
14484
14776
|
export declare type UserSettingsFragment = {
|
14485
14777
|
__typename: "UserSettings";
|
14486
14778
|
} & Pick<UserSettings, "calendarHash" | "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id" | "subscribedToDPA" | "subscribedToChangelog" | "subscribedToInviteAccepted" | "subscribedToPrivacyLegalUpdates" | "subscribedToUnreadNotificationsReminder" | "showFullUserNames"> & {
|
@@ -14502,7 +14794,7 @@ export declare type AuthenticationSessionFragment = {
|
|
14502
14794
|
} & Pick<AuthenticationSession, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "locationRegionCode" | "name" | "operatingSystem" | "userAgent" | "type" | "browserType" | "lastActiveAt" | "id">;
|
14503
14795
|
export declare type FavoriteFragment = {
|
14504
14796
|
__typename: "Favorite";
|
14505
|
-
} & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "projectTab" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
|
14797
|
+
} & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "initiativeTab" | "projectTab" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id" | "url"> & {
|
14506
14798
|
customView?: Maybe<{
|
14507
14799
|
__typename?: "CustomView";
|
14508
14800
|
} & Pick<CustomView, "id">>;
|
@@ -14524,9 +14816,6 @@ export declare type FavoriteFragment = {
|
|
14524
14816
|
roadmap?: Maybe<{
|
14525
14817
|
__typename?: "Roadmap";
|
14526
14818
|
} & Pick<Roadmap, "id">>;
|
14527
|
-
projectTeam?: Maybe<{
|
14528
|
-
__typename?: "Team";
|
14529
|
-
} & Pick<Team, "id">>;
|
14530
14819
|
user?: Maybe<{
|
14531
14820
|
__typename?: "User";
|
14532
14821
|
} & Pick<User, "id">>;
|
@@ -14539,6 +14828,9 @@ export declare type FavoriteFragment = {
|
|
14539
14828
|
predefinedViewTeam?: Maybe<{
|
14540
14829
|
__typename?: "Team";
|
14541
14830
|
} & Pick<Team, "id">>;
|
14831
|
+
projectTeam?: Maybe<{
|
14832
|
+
__typename?: "Team";
|
14833
|
+
} & Pick<Team, "id">>;
|
14542
14834
|
};
|
14543
14835
|
export declare type ViewPreferencesFragment = {
|
14544
14836
|
__typename: "ViewPreferences";
|
@@ -14560,6 +14852,25 @@ export declare type AuditEntryFragment = {
|
|
14560
14852
|
export declare type ZendeskSettingsFragment = {
|
14561
14853
|
__typename: "ZendeskSettings";
|
14562
14854
|
} & Pick<ZendeskSettings, "botUserId" | "url" | "subdomain" | "automateTicketReopeningOnComment" | "automateTicketReopeningOnCancellation" | "automateTicketReopeningOnCompletion" | "sendNoteOnStatusChange" | "sendNoteOnComment">;
|
14855
|
+
export declare type TextDraftFragment = {
|
14856
|
+
__typename: "TextDraft";
|
14857
|
+
} & Pick<TextDraft, "data" | "updatedAt" | "bodyData" | "archivedAt" | "createdAt" | "id" | "isAutogenerated"> & {
|
14858
|
+
parentComment?: Maybe<{
|
14859
|
+
__typename?: "Comment";
|
14860
|
+
} & Pick<Comment, "id">>;
|
14861
|
+
issue?: Maybe<{
|
14862
|
+
__typename?: "Issue";
|
14863
|
+
} & Pick<Issue, "id">>;
|
14864
|
+
project?: Maybe<{
|
14865
|
+
__typename?: "Project";
|
14866
|
+
} & Pick<Project, "id">>;
|
14867
|
+
projectUpdate?: Maybe<{
|
14868
|
+
__typename?: "ProjectUpdate";
|
14869
|
+
} & Pick<ProjectUpdate, "id">>;
|
14870
|
+
user: {
|
14871
|
+
__typename?: "User";
|
14872
|
+
} & Pick<User, "id">;
|
14873
|
+
};
|
14563
14874
|
export declare type ApiKeyConnectionFragment = {
|
14564
14875
|
__typename: "ApiKeyConnection";
|
14565
14876
|
} & {
|
@@ -14648,7 +14959,7 @@ export declare type AuthOauthClientWithTokensFragment = {
|
|
14648
14959
|
};
|
14649
14960
|
export declare type AuthOrganizationBucketNamePayloadFragment = {
|
14650
14961
|
__typename: "AuthOrganizationBucketNamePayload";
|
14651
|
-
} & Pick<AuthOrganizationBucketNamePayload, "importsBucketName" | "uploadsBucketName">;
|
14962
|
+
} & Pick<AuthOrganizationBucketNamePayload, "importsBucketName" | "region" | "uploadsBucketName">;
|
14652
14963
|
export declare type AuthOrganizationDomainFragment = {
|
14653
14964
|
__typename: "AuthOrganizationDomain";
|
14654
14965
|
} & Pick<AuthOrganizationDomain, "disableOrganizationCreation" | "id" | "authType" | "claimed" | "name" | "organizationId" | "verified">;
|
@@ -14988,9 +15299,36 @@ export declare type GitHubCommitIntegrationPayloadFragment = {
|
|
14988
15299
|
__typename?: "Integration";
|
14989
15300
|
} & Pick<Integration, "id">>;
|
14990
15301
|
};
|
15302
|
+
export declare type GitHubEnterpriseServerPayloadFragment = {
|
15303
|
+
__typename: "GitHubEnterpriseServerPayload";
|
15304
|
+
} & Pick<GitHubEnterpriseServerPayload, "lastSyncId" | "setupUrl" | "webhookSecret" | "success"> & {
|
15305
|
+
integration?: Maybe<{
|
15306
|
+
__typename?: "Integration";
|
15307
|
+
} & Pick<Integration, "id">>;
|
15308
|
+
};
|
14991
15309
|
export declare type ImageUploadFromUrlPayloadFragment = {
|
14992
15310
|
__typename: "ImageUploadFromUrlPayload";
|
14993
15311
|
} & Pick<ImageUploadFromUrlPayload, "url" | "lastSyncId" | "success">;
|
15312
|
+
export declare type InitiativeConnectionFragment = {
|
15313
|
+
__typename: "InitiativeConnection";
|
15314
|
+
} & {
|
15315
|
+
nodes: Array<{
|
15316
|
+
__typename?: "Initiative";
|
15317
|
+
} & InitiativeFragment>;
|
15318
|
+
pageInfo: {
|
15319
|
+
__typename?: "PageInfo";
|
15320
|
+
} & PageInfoFragment;
|
15321
|
+
};
|
15322
|
+
export declare type InitiativeToProjectConnectionFragment = {
|
15323
|
+
__typename: "InitiativeToProjectConnection";
|
15324
|
+
} & {
|
15325
|
+
nodes: Array<{
|
15326
|
+
__typename?: "InitiativeToProject";
|
15327
|
+
} & InitiativeToProjectFragment>;
|
15328
|
+
pageInfo: {
|
15329
|
+
__typename?: "PageInfo";
|
15330
|
+
} & PageInfoFragment;
|
15331
|
+
};
|
14994
15332
|
export declare type IntegrationConnectionFragment = {
|
14995
15333
|
__typename: "IntegrationConnection";
|
14996
15334
|
} & {
|
@@ -15259,6 +15597,9 @@ declare type Node_DocumentNotification_Fragment = {
|
|
15259
15597
|
declare type Node_DocumentSearchResult_Fragment = {
|
15260
15598
|
__typename: "DocumentSearchResult";
|
15261
15599
|
} & Pick<DocumentSearchResult, "id">;
|
15600
|
+
declare type Node_Draft_Fragment = {
|
15601
|
+
__typename: "Draft";
|
15602
|
+
} & Pick<Draft, "id">;
|
15262
15603
|
declare type Node_EmailIntakeAddress_Fragment = {
|
15263
15604
|
__typename: "EmailIntakeAddress";
|
15264
15605
|
} & Pick<EmailIntakeAddress, "id">;
|
@@ -15445,7 +15786,7 @@ declare type Node_WorkflowDefinition_Fragment = {
|
|
15445
15786
|
declare type Node_WorkflowState_Fragment = {
|
15446
15787
|
__typename: "WorkflowState";
|
15447
15788
|
} & Pick<WorkflowState, "id">;
|
15448
|
-
export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_DiaryEntry_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentContentHistory_Fragment | Node_DocumentNotification_Fragment | Node_DocumentSearchResult_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_EntityExternalLink_Fragment | Node_ExternalUser_Fragment | Node_Facet_Fragment | Node_Favorite_Fragment | Node_FeatureFlag_Fragment | Node_FeatureFlagRolloutStage_Fragment | Node_GitAutomationState_Fragment | Node_GitAutomationTargetBranch_Fragment | Node_Initiative_Fragment | Node_InitiativeNotification_Fragment | Node_InitiativeToProject_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectRelation_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectStatus_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Reminder_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TextDraft_Fragment | Node_TimeSchedule_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
|
15789
|
+
export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_DiaryEntry_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentContentHistory_Fragment | Node_DocumentNotification_Fragment | Node_DocumentSearchResult_Fragment | Node_Draft_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_EntityExternalLink_Fragment | Node_ExternalUser_Fragment | Node_Facet_Fragment | Node_Favorite_Fragment | Node_FeatureFlag_Fragment | Node_FeatureFlagRolloutStage_Fragment | Node_GitAutomationState_Fragment | Node_GitAutomationTargetBranch_Fragment | Node_Initiative_Fragment | Node_InitiativeNotification_Fragment | Node_InitiativeToProject_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectRelation_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectStatus_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Reminder_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TextDraft_Fragment | Node_TimeSchedule_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
|
15449
15790
|
export declare type NotificationBatchActionPayloadFragment = {
|
15450
15791
|
__typename: "NotificationBatchActionPayload";
|
15451
15792
|
} & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
|
@@ -16902,6 +17243,97 @@ export declare type FavoritesQuery = {
|
|
16902
17243
|
__typename?: "FavoriteConnection";
|
16903
17244
|
} & FavoriteConnectionFragment;
|
16904
17245
|
};
|
17246
|
+
export declare type InitiativeQueryVariables = Exact<{
|
17247
|
+
id: Scalars["String"];
|
17248
|
+
}>;
|
17249
|
+
export declare type InitiativeQuery = {
|
17250
|
+
__typename?: "Query";
|
17251
|
+
} & {
|
17252
|
+
initiative: {
|
17253
|
+
__typename?: "Initiative";
|
17254
|
+
} & InitiativeFragment;
|
17255
|
+
};
|
17256
|
+
export declare type Initiative_LinksQueryVariables = Exact<{
|
17257
|
+
id: Scalars["String"];
|
17258
|
+
after?: Maybe<Scalars["String"]>;
|
17259
|
+
before?: Maybe<Scalars["String"]>;
|
17260
|
+
first?: Maybe<Scalars["Int"]>;
|
17261
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
17262
|
+
last?: Maybe<Scalars["Int"]>;
|
17263
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
17264
|
+
}>;
|
17265
|
+
export declare type Initiative_LinksQuery = {
|
17266
|
+
__typename?: "Query";
|
17267
|
+
} & {
|
17268
|
+
initiative: {
|
17269
|
+
__typename?: "Initiative";
|
17270
|
+
} & {
|
17271
|
+
links: {
|
17272
|
+
__typename?: "EntityExternalLinkConnection";
|
17273
|
+
} & EntityExternalLinkConnectionFragment;
|
17274
|
+
};
|
17275
|
+
};
|
17276
|
+
export declare type Initiative_ProjectsQueryVariables = Exact<{
|
17277
|
+
id: Scalars["String"];
|
17278
|
+
after?: Maybe<Scalars["String"]>;
|
17279
|
+
before?: Maybe<Scalars["String"]>;
|
17280
|
+
filter?: Maybe<ProjectFilter>;
|
17281
|
+
first?: Maybe<Scalars["Int"]>;
|
17282
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
17283
|
+
last?: Maybe<Scalars["Int"]>;
|
17284
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
17285
|
+
}>;
|
17286
|
+
export declare type Initiative_ProjectsQuery = {
|
17287
|
+
__typename?: "Query";
|
17288
|
+
} & {
|
17289
|
+
initiative: {
|
17290
|
+
__typename?: "Initiative";
|
17291
|
+
} & {
|
17292
|
+
projects: {
|
17293
|
+
__typename?: "ProjectConnection";
|
17294
|
+
} & ProjectConnectionFragment;
|
17295
|
+
};
|
17296
|
+
};
|
17297
|
+
export declare type InitiativeToProjectQueryVariables = Exact<{
|
17298
|
+
id: Scalars["String"];
|
17299
|
+
}>;
|
17300
|
+
export declare type InitiativeToProjectQuery = {
|
17301
|
+
__typename?: "Query";
|
17302
|
+
} & {
|
17303
|
+
initiativeToProject: {
|
17304
|
+
__typename?: "InitiativeToProject";
|
17305
|
+
} & InitiativeToProjectFragment;
|
17306
|
+
};
|
17307
|
+
export declare type InitiativeToProjectsQueryVariables = Exact<{
|
17308
|
+
after?: Maybe<Scalars["String"]>;
|
17309
|
+
before?: Maybe<Scalars["String"]>;
|
17310
|
+
first?: Maybe<Scalars["Int"]>;
|
17311
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
17312
|
+
last?: Maybe<Scalars["Int"]>;
|
17313
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
17314
|
+
}>;
|
17315
|
+
export declare type InitiativeToProjectsQuery = {
|
17316
|
+
__typename?: "Query";
|
17317
|
+
} & {
|
17318
|
+
initiativeToProjects: {
|
17319
|
+
__typename?: "InitiativeToProjectConnection";
|
17320
|
+
} & InitiativeToProjectConnectionFragment;
|
17321
|
+
};
|
17322
|
+
export declare type InitiativesQueryVariables = Exact<{
|
17323
|
+
after?: Maybe<Scalars["String"]>;
|
17324
|
+
before?: Maybe<Scalars["String"]>;
|
17325
|
+
first?: Maybe<Scalars["Int"]>;
|
17326
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
17327
|
+
last?: Maybe<Scalars["Int"]>;
|
17328
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
17329
|
+
}>;
|
17330
|
+
export declare type InitiativesQuery = {
|
17331
|
+
__typename?: "Query";
|
17332
|
+
} & {
|
17333
|
+
initiatives: {
|
17334
|
+
__typename?: "InitiativeConnection";
|
17335
|
+
} & InitiativeConnectionFragment;
|
17336
|
+
};
|
16905
17337
|
export declare type IntegrationQueryVariables = Exact<{
|
16906
17338
|
id: Scalars["String"];
|
16907
17339
|
}>;
|
@@ -19946,6 +20378,88 @@ export declare type ImportFileUploadMutation = {
|
|
19946
20378
|
__typename?: "UploadPayload";
|
19947
20379
|
} & UploadPayloadFragment;
|
19948
20380
|
};
|
20381
|
+
export declare type ArchiveInitiativeMutationVariables = Exact<{
|
20382
|
+
id: Scalars["String"];
|
20383
|
+
}>;
|
20384
|
+
export declare type ArchiveInitiativeMutation = {
|
20385
|
+
__typename?: "Mutation";
|
20386
|
+
} & {
|
20387
|
+
initiativeArchive: {
|
20388
|
+
__typename?: "InitiativeArchivePayload";
|
20389
|
+
} & InitiativeArchivePayloadFragment;
|
20390
|
+
};
|
20391
|
+
export declare type CreateInitiativeMutationVariables = Exact<{
|
20392
|
+
input: InitiativeCreateInput;
|
20393
|
+
}>;
|
20394
|
+
export declare type CreateInitiativeMutation = {
|
20395
|
+
__typename?: "Mutation";
|
20396
|
+
} & {
|
20397
|
+
initiativeCreate: {
|
20398
|
+
__typename?: "InitiativePayload";
|
20399
|
+
} & InitiativePayloadFragment;
|
20400
|
+
};
|
20401
|
+
export declare type DeleteInitiativeMutationVariables = Exact<{
|
20402
|
+
id: Scalars["String"];
|
20403
|
+
}>;
|
20404
|
+
export declare type DeleteInitiativeMutation = {
|
20405
|
+
__typename?: "Mutation";
|
20406
|
+
} & {
|
20407
|
+
initiativeDelete: {
|
20408
|
+
__typename?: "DeletePayload";
|
20409
|
+
} & DeletePayloadFragment;
|
20410
|
+
};
|
20411
|
+
export declare type CreateInitiativeToProjectMutationVariables = Exact<{
|
20412
|
+
input: InitiativeToProjectCreateInput;
|
20413
|
+
}>;
|
20414
|
+
export declare type CreateInitiativeToProjectMutation = {
|
20415
|
+
__typename?: "Mutation";
|
20416
|
+
} & {
|
20417
|
+
initiativeToProjectCreate: {
|
20418
|
+
__typename?: "InitiativeToProjectPayload";
|
20419
|
+
} & InitiativeToProjectPayloadFragment;
|
20420
|
+
};
|
20421
|
+
export declare type DeleteInitiativeToProjectMutationVariables = Exact<{
|
20422
|
+
id: Scalars["String"];
|
20423
|
+
}>;
|
20424
|
+
export declare type DeleteInitiativeToProjectMutation = {
|
20425
|
+
__typename?: "Mutation";
|
20426
|
+
} & {
|
20427
|
+
initiativeToProjectDelete: {
|
20428
|
+
__typename?: "DeletePayload";
|
20429
|
+
} & DeletePayloadFragment;
|
20430
|
+
};
|
20431
|
+
export declare type UpdateInitiativeToProjectMutationVariables = Exact<{
|
20432
|
+
id: Scalars["String"];
|
20433
|
+
input: InitiativeToProjectUpdateInput;
|
20434
|
+
}>;
|
20435
|
+
export declare type UpdateInitiativeToProjectMutation = {
|
20436
|
+
__typename?: "Mutation";
|
20437
|
+
} & {
|
20438
|
+
initiativeToProjectUpdate: {
|
20439
|
+
__typename?: "InitiativeToProjectPayload";
|
20440
|
+
} & InitiativeToProjectPayloadFragment;
|
20441
|
+
};
|
20442
|
+
export declare type UnarchiveInitiativeMutationVariables = Exact<{
|
20443
|
+
id: Scalars["String"];
|
20444
|
+
}>;
|
20445
|
+
export declare type UnarchiveInitiativeMutation = {
|
20446
|
+
__typename?: "Mutation";
|
20447
|
+
} & {
|
20448
|
+
initiativeUnarchive: {
|
20449
|
+
__typename?: "InitiativeArchivePayload";
|
20450
|
+
} & InitiativeArchivePayloadFragment;
|
20451
|
+
};
|
20452
|
+
export declare type UpdateInitiativeMutationVariables = Exact<{
|
20453
|
+
id: Scalars["String"];
|
20454
|
+
input: InitiativeUpdateInput;
|
20455
|
+
}>;
|
20456
|
+
export declare type UpdateInitiativeMutation = {
|
20457
|
+
__typename?: "Mutation";
|
20458
|
+
} & {
|
20459
|
+
initiativeUpdate: {
|
20460
|
+
__typename?: "InitiativePayload";
|
20461
|
+
} & InitiativePayloadFragment;
|
20462
|
+
};
|
19949
20463
|
export declare type ArchiveIntegrationMutationVariables = Exact<{
|
19950
20464
|
id: Scalars["String"];
|
19951
20465
|
}>;
|
@@ -20010,6 +20524,17 @@ export declare type IntegrationFrontMutation = {
|
|
20010
20524
|
__typename?: "IntegrationPayload";
|
20011
20525
|
} & IntegrationPayloadFragment;
|
20012
20526
|
};
|
20527
|
+
export declare type IntegrationGitHubEnterpriseServerConnectMutationVariables = Exact<{
|
20528
|
+
githubUrl: Scalars["String"];
|
20529
|
+
organizationName?: Maybe<Scalars["String"]>;
|
20530
|
+
}>;
|
20531
|
+
export declare type IntegrationGitHubEnterpriseServerConnectMutation = {
|
20532
|
+
__typename?: "Mutation";
|
20533
|
+
} & {
|
20534
|
+
integrationGitHubEnterpriseServerConnect: {
|
20535
|
+
__typename?: "GitHubEnterpriseServerPayload";
|
20536
|
+
} & GitHubEnterpriseServerPayloadFragment;
|
20537
|
+
};
|
20013
20538
|
export declare type IntegrationGitHubPersonalMutationVariables = Exact<{
|
20014
20539
|
code: Scalars["String"];
|
20015
20540
|
}>;
|
@@ -20350,6 +20875,7 @@ export declare type CreateIssueMutation = {
|
|
20350
20875
|
};
|
20351
20876
|
export declare type DeleteIssueMutationVariables = Exact<{
|
20352
20877
|
id: Scalars["String"];
|
20878
|
+
permanentlyDelete?: Maybe<Scalars["Boolean"]>;
|
20353
20879
|
}>;
|
20354
20880
|
export declare type DeleteIssueMutation = {
|
20355
20881
|
__typename?: "Mutation";
|
@@ -20417,7 +20943,7 @@ export declare type IssueImportCreateGithubMutationVariables = Exact<{
|
|
20417
20943
|
githubToken?: Maybe<Scalars["String"]>;
|
20418
20944
|
includeClosedIssues?: Maybe<Scalars["Boolean"]>;
|
20419
20945
|
instantProcess?: Maybe<Scalars["Boolean"]>;
|
20420
|
-
integrationId
|
20946
|
+
integrationId?: Maybe<Scalars["String"]>;
|
20421
20947
|
organizationId?: Maybe<Scalars["String"]>;
|
20422
20948
|
teamId?: Maybe<Scalars["String"]>;
|
20423
20949
|
teamName?: Maybe<Scalars["String"]>;
|
@@ -21619,10 +22145,12 @@ export declare type UpdateWorkflowStateMutation = {
|
|
21619
22145
|
} & WorkflowStatePayloadFragment;
|
21620
22146
|
};
|
21621
22147
|
export declare const EntityFragmentDoc: DocumentNode<EntityFragment, unknown>;
|
22148
|
+
export declare const CommentNotificationFragmentDoc: DocumentNode<CommentNotificationFragment, unknown>;
|
21622
22149
|
export declare const CustomViewNotificationSubscriptionFragmentDoc: DocumentNode<CustomViewNotificationSubscriptionFragment, unknown>;
|
21623
22150
|
export declare const CycleNotificationSubscriptionFragmentDoc: DocumentNode<CycleNotificationSubscriptionFragment, unknown>;
|
21624
22151
|
export declare const DocumentContentFragmentDoc: DocumentNode<DocumentContentFragment, unknown>;
|
21625
22152
|
export declare const DocumentContentHistoryFragmentDoc: DocumentNode<DocumentContentHistoryFragment, unknown>;
|
22153
|
+
export declare const DraftFragmentDoc: DocumentNode<DraftFragment, unknown>;
|
21626
22154
|
export declare const AttachmentArchivePayloadFragmentDoc: DocumentNode<AttachmentArchivePayloadFragment, unknown>;
|
21627
22155
|
export declare const CycleArchivePayloadFragmentDoc: DocumentNode<CycleArchivePayloadFragment, unknown>;
|
21628
22156
|
export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragment, unknown>;
|
@@ -21648,7 +22176,6 @@ export declare const LabelNotificationSubscriptionFragmentDoc: DocumentNode<Labe
|
|
21648
22176
|
export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
|
21649
22177
|
export declare const ReminderFragmentDoc: DocumentNode<ReminderFragment, unknown>;
|
21650
22178
|
export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
|
21651
|
-
export declare const TextDraftFragmentDoc: DocumentNode<TextDraftFragment, unknown>;
|
21652
22179
|
export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
|
21653
22180
|
export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
|
21654
22181
|
export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationFragment, unknown>;
|
@@ -21692,6 +22219,8 @@ export declare const SlackAsksSettingsFragmentDoc: DocumentNode<SlackAsksSetting
|
|
21692
22219
|
export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
|
21693
22220
|
export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFragment, unknown>;
|
21694
22221
|
export declare const IntegrationSettingsFragmentDoc: DocumentNode<IntegrationSettingsFragment, unknown>;
|
22222
|
+
export declare const InitiativePayloadFragmentDoc: DocumentNode<InitiativePayloadFragment, unknown>;
|
22223
|
+
export declare const InitiativeToProjectPayloadFragmentDoc: DocumentNode<InitiativeToProjectPayloadFragment, unknown>;
|
21695
22224
|
export declare const NotificationDeliveryPreferencesDayFragmentDoc: DocumentNode<NotificationDeliveryPreferencesDayFragment, unknown>;
|
21696
22225
|
export declare const NotificationDeliveryPreferencesScheduleFragmentDoc: DocumentNode<NotificationDeliveryPreferencesScheduleFragment, unknown>;
|
21697
22226
|
export declare const NotificationDeliveryPreferencesChannelFragmentDoc: DocumentNode<NotificationDeliveryPreferencesChannelFragment, unknown>;
|
@@ -21699,6 +22228,7 @@ export declare const NotificationDeliveryPreferencesFragmentDoc: DocumentNode<No
|
|
21699
22228
|
export declare const UserSettingsFragmentDoc: DocumentNode<UserSettingsFragment, unknown>;
|
21700
22229
|
export declare const AuthenticationSessionFragmentDoc: DocumentNode<AuthenticationSessionFragment, unknown>;
|
21701
22230
|
export declare const IssueImportSyncCheckPayloadFragmentDoc: DocumentNode<IssueImportSyncCheckPayloadFragment, unknown>;
|
22231
|
+
export declare const TextDraftFragmentDoc: DocumentNode<TextDraftFragment, unknown>;
|
21702
22232
|
export declare const ApiKeyFragmentDoc: DocumentNode<ApiKeyFragment, unknown>;
|
21703
22233
|
export declare const PageInfoFragmentDoc: DocumentNode<PageInfoFragment, unknown>;
|
21704
22234
|
export declare const ApiKeyConnectionFragmentDoc: DocumentNode<ApiKeyConnectionFragment, unknown>;
|
@@ -21783,7 +22313,12 @@ export declare const GitAutomationStateConnectionFragmentDoc: DocumentNode<GitAu
|
|
21783
22313
|
export declare const GitAutomationStatePayloadFragmentDoc: DocumentNode<GitAutomationStatePayloadFragment, unknown>;
|
21784
22314
|
export declare const GitAutomationTargetBranchPayloadFragmentDoc: DocumentNode<GitAutomationTargetBranchPayloadFragment, unknown>;
|
21785
22315
|
export declare const GitHubCommitIntegrationPayloadFragmentDoc: DocumentNode<GitHubCommitIntegrationPayloadFragment, unknown>;
|
22316
|
+
export declare const GitHubEnterpriseServerPayloadFragmentDoc: DocumentNode<GitHubEnterpriseServerPayloadFragment, unknown>;
|
21786
22317
|
export declare const ImageUploadFromUrlPayloadFragmentDoc: DocumentNode<ImageUploadFromUrlPayloadFragment, unknown>;
|
22318
|
+
export declare const InitiativeFragmentDoc: DocumentNode<InitiativeFragment, unknown>;
|
22319
|
+
export declare const InitiativeConnectionFragmentDoc: DocumentNode<InitiativeConnectionFragment, unknown>;
|
22320
|
+
export declare const InitiativeToProjectFragmentDoc: DocumentNode<InitiativeToProjectFragment, unknown>;
|
22321
|
+
export declare const InitiativeToProjectConnectionFragmentDoc: DocumentNode<InitiativeToProjectConnectionFragment, unknown>;
|
21787
22322
|
export declare const IntegrationFragmentDoc: DocumentNode<IntegrationFragment, unknown>;
|
21788
22323
|
export declare const IntegrationConnectionFragmentDoc: DocumentNode<IntegrationConnectionFragment, unknown>;
|
21789
22324
|
export declare const IntegrationHasScopesPayloadFragmentDoc: DocumentNode<IntegrationHasScopesPayloadFragment, unknown>;
|
@@ -22252,6 +22787,47 @@ export declare const FavoritesDocument: DocumentNode<FavoritesQuery, Exact<{
|
|
22252
22787
|
last?: Maybe<number> | undefined;
|
22253
22788
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
22254
22789
|
}>>;
|
22790
|
+
export declare const InitiativeDocument: DocumentNode<InitiativeQuery, Exact<{
|
22791
|
+
id: Scalars["String"];
|
22792
|
+
}>>;
|
22793
|
+
export declare const Initiative_LinksDocument: DocumentNode<Initiative_LinksQuery, Exact<{
|
22794
|
+
id: Scalars["String"];
|
22795
|
+
after?: Maybe<string> | undefined;
|
22796
|
+
before?: Maybe<string> | undefined;
|
22797
|
+
first?: Maybe<number> | undefined;
|
22798
|
+
includeArchived?: Maybe<boolean> | undefined;
|
22799
|
+
last?: Maybe<number> | undefined;
|
22800
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
22801
|
+
}>>;
|
22802
|
+
export declare const Initiative_ProjectsDocument: DocumentNode<Initiative_ProjectsQuery, Exact<{
|
22803
|
+
id: Scalars["String"];
|
22804
|
+
after?: Maybe<string> | undefined;
|
22805
|
+
before?: Maybe<string> | undefined;
|
22806
|
+
filter?: Maybe<ProjectFilter> | undefined;
|
22807
|
+
first?: Maybe<number> | undefined;
|
22808
|
+
includeArchived?: Maybe<boolean> | undefined;
|
22809
|
+
last?: Maybe<number> | undefined;
|
22810
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
22811
|
+
}>>;
|
22812
|
+
export declare const InitiativeToProjectDocument: DocumentNode<InitiativeToProjectQuery, Exact<{
|
22813
|
+
id: Scalars["String"];
|
22814
|
+
}>>;
|
22815
|
+
export declare const InitiativeToProjectsDocument: DocumentNode<InitiativeToProjectsQuery, Exact<{
|
22816
|
+
after?: Maybe<string> | undefined;
|
22817
|
+
before?: Maybe<string> | undefined;
|
22818
|
+
first?: Maybe<number> | undefined;
|
22819
|
+
includeArchived?: Maybe<boolean> | undefined;
|
22820
|
+
last?: Maybe<number> | undefined;
|
22821
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
22822
|
+
}>>;
|
22823
|
+
export declare const InitiativesDocument: DocumentNode<InitiativesQuery, Exact<{
|
22824
|
+
after?: Maybe<string> | undefined;
|
22825
|
+
before?: Maybe<string> | undefined;
|
22826
|
+
first?: Maybe<number> | undefined;
|
22827
|
+
includeArchived?: Maybe<boolean> | undefined;
|
22828
|
+
last?: Maybe<number> | undefined;
|
22829
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
22830
|
+
}>>;
|
22255
22831
|
export declare const IntegrationDocument: DocumentNode<IntegrationQuery, Exact<{
|
22256
22832
|
id: Scalars["String"];
|
22257
22833
|
}>>;
|
@@ -23481,6 +24057,32 @@ export declare const ImportFileUploadDocument: DocumentNode<ImportFileUploadMuta
|
|
23481
24057
|
metaData?: Maybe<Record<string, unknown>> | undefined;
|
23482
24058
|
size: Scalars["Int"];
|
23483
24059
|
}>>;
|
24060
|
+
export declare const ArchiveInitiativeDocument: DocumentNode<ArchiveInitiativeMutation, Exact<{
|
24061
|
+
id: Scalars["String"];
|
24062
|
+
}>>;
|
24063
|
+
export declare const CreateInitiativeDocument: DocumentNode<CreateInitiativeMutation, Exact<{
|
24064
|
+
input: InitiativeCreateInput;
|
24065
|
+
}>>;
|
24066
|
+
export declare const DeleteInitiativeDocument: DocumentNode<DeleteInitiativeMutation, Exact<{
|
24067
|
+
id: Scalars["String"];
|
24068
|
+
}>>;
|
24069
|
+
export declare const CreateInitiativeToProjectDocument: DocumentNode<CreateInitiativeToProjectMutation, Exact<{
|
24070
|
+
input: InitiativeToProjectCreateInput;
|
24071
|
+
}>>;
|
24072
|
+
export declare const DeleteInitiativeToProjectDocument: DocumentNode<DeleteInitiativeToProjectMutation, Exact<{
|
24073
|
+
id: Scalars["String"];
|
24074
|
+
}>>;
|
24075
|
+
export declare const UpdateInitiativeToProjectDocument: DocumentNode<UpdateInitiativeToProjectMutation, Exact<{
|
24076
|
+
id: Scalars["String"];
|
24077
|
+
input: InitiativeToProjectUpdateInput;
|
24078
|
+
}>>;
|
24079
|
+
export declare const UnarchiveInitiativeDocument: DocumentNode<UnarchiveInitiativeMutation, Exact<{
|
24080
|
+
id: Scalars["String"];
|
24081
|
+
}>>;
|
24082
|
+
export declare const UpdateInitiativeDocument: DocumentNode<UpdateInitiativeMutation, Exact<{
|
24083
|
+
id: Scalars["String"];
|
24084
|
+
input: InitiativeUpdateInput;
|
24085
|
+
}>>;
|
23484
24086
|
export declare const ArchiveIntegrationDocument: DocumentNode<ArchiveIntegrationMutation, Exact<{
|
23485
24087
|
id: Scalars["String"];
|
23486
24088
|
}>>;
|
@@ -23503,6 +24105,10 @@ export declare const IntegrationFrontDocument: DocumentNode<IntegrationFrontMuta
|
|
23503
24105
|
code: Scalars["String"];
|
23504
24106
|
redirectUri: Scalars["String"];
|
23505
24107
|
}>>;
|
24108
|
+
export declare const IntegrationGitHubEnterpriseServerConnectDocument: DocumentNode<IntegrationGitHubEnterpriseServerConnectMutation, Exact<{
|
24109
|
+
githubUrl: Scalars["String"];
|
24110
|
+
organizationName?: Maybe<string> | undefined;
|
24111
|
+
}>>;
|
23506
24112
|
export declare const IntegrationGitHubPersonalDocument: DocumentNode<IntegrationGitHubPersonalMutation, Exact<{
|
23507
24113
|
code: Scalars["String"];
|
23508
24114
|
}>>;
|
@@ -23626,6 +24232,7 @@ export declare const CreateIssueDocument: DocumentNode<CreateIssueMutation, Exac
|
|
23626
24232
|
}>>;
|
23627
24233
|
export declare const DeleteIssueDocument: DocumentNode<DeleteIssueMutation, Exact<{
|
23628
24234
|
id: Scalars["String"];
|
24235
|
+
permanentlyDelete?: Maybe<boolean> | undefined;
|
23629
24236
|
}>>;
|
23630
24237
|
export declare const IssueImportCreateAsanaDocument: DocumentNode<IssueImportCreateAsanaMutation, Exact<{
|
23631
24238
|
asanaTeamName: Scalars["String"];
|
@@ -23665,7 +24272,7 @@ export declare const IssueImportCreateGithubDocument: DocumentNode<IssueImportCr
|
|
23665
24272
|
githubToken?: Maybe<string> | undefined;
|
23666
24273
|
includeClosedIssues?: Maybe<boolean> | undefined;
|
23667
24274
|
instantProcess?: Maybe<boolean> | undefined;
|
23668
|
-
integrationId
|
24275
|
+
integrationId?: Maybe<string> | undefined;
|
23669
24276
|
organizationId?: Maybe<string> | undefined;
|
23670
24277
|
teamId?: Maybe<string> | undefined;
|
23671
24278
|
teamName?: Maybe<string> | undefined;
|