@linear/sdk 4.0.0 → 5.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 CHANGED
@@ -1,5 +1,64 @@
1
1
  # Change Log
2
2
 
3
+ ## 5.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - fa27be6: feat(schema): [breaking] Field 'ExternalUser.email' changed type from 'String!' to 'String' (ExternalUser.email)
8
+
9
+ feat(schema): [breaking] 'OrganizationInviteDetailsPayload' kind changed from 'ObjectTypeDefinition' to 'UnionTypeDefinition' (OrganizationInviteDetailsPayload)
10
+
11
+ feat(schema): [dangerous] Input field 'completedProjectMilestones' was added to input object type 'NullableProjectFilter' (NullableProjectFilter.completedProjectMilestones)
12
+
13
+ feat(schema): [dangerous] Input field 'nextProjectMilestone' was added to input object type 'NullableProjectFilter' (NullableProjectFilter.nextProjectMilestone)
14
+
15
+ feat(schema): [dangerous] Input field 'projectMilestones' was added to input object type 'NullableProjectFilter' (NullableProjectFilter.projectMilestones)
16
+
17
+ feat(schema): [dangerous] Input field 'name' was added to input object type 'NullableProjectMilestoneFilter' (NullableProjectMilestoneFilter.name)
18
+
19
+ feat(schema): [dangerous] Input field 'targetDate' was added to input object type 'NullableProjectMilestoneFilter' (NullableProjectMilestoneFilter.targetDate)
20
+
21
+ feat(schema): [dangerous] Input field 'completedProjectMilestones' was added to input object type 'ProjectCollectionFilter' (ProjectCollectionFilter.completedProjectMilestones)
22
+
23
+ feat(schema): [dangerous] Input field 'nextProjectMilestone' was added to input object type 'ProjectCollectionFilter' (ProjectCollectionFilter.nextProjectMilestone)
24
+
25
+ feat(schema): [dangerous] Input field 'projectMilestones' was added to input object type 'ProjectCollectionFilter' (ProjectCollectionFilter.projectMilestones)
26
+
27
+ feat(schema): [dangerous] Input field 'completedProjectMilestones' was added to input object type 'ProjectFilter' (ProjectFilter.completedProjectMilestones)
28
+
29
+ feat(schema): [dangerous] Input field 'nextProjectMilestone' was added to input object type 'ProjectFilter' (ProjectFilter.nextProjectMilestone)
30
+
31
+ feat(schema): [dangerous] Input field 'projectMilestones' was added to input object type 'ProjectFilter' (ProjectFilter.projectMilestones)
32
+
33
+ feat(schema): [dangerous] Argument 'filter: ProjectMilestoneFilter' added to field 'Query.ProjectMilestones' (Query.ProjectMilestones.filter)
34
+
35
+ feat(schema): [non_breaking] Type 'OrganizationAcceptedOrExpiredInviteDetailsPayload' was added (OrganizationAcceptedOrExpiredInviteDetailsPayload)
36
+
37
+ feat(schema): [non_breaking] Type 'OrganizationInviteFullDetailsPayload' was added (OrganizationInviteFullDetailsPayload)
38
+
39
+ feat(schema): [non_breaking] Type 'OrganizationInviteStatus' was added (OrganizationInviteStatus)
40
+
41
+ feat(schema): [non_breaking] Type 'ProjectMilestoneCollectionFilter' was added (ProjectMilestoneCollectionFilter)
42
+
43
+ feat(schema): [non_breaking] Type 'ProjectMilestoneFilter' was added (ProjectMilestoneFilter)
44
+
45
+ feat(schema): [non_breaking] Field 'userJiraConnect' was added to object type 'Mutation' (Mutation.userJiraConnect)
46
+
47
+ feat(schema): [non_breaking] Field 'infoSnapshot' was added to object type 'ProjectUpdate' (ProjectUpdate.infoSnapshot)
48
+
49
+ feat(schema): [non_breaking] Field 'Team.issueEstimationType' description changed from 'The issue estimation type to use.' to 'The issue estimation type to use. Must be one of "notUsed", "exponential", "fibonacci", "linear", "tShirt".' (Team.issueEstimationType)
50
+
51
+ feat(schema): [non_breaking] Input field 'TeamCreateInput.issueEstimationType' description changed from 'The issue estimation type to use.' to 'The issue estimation type to use. Must be one of "notUsed", "exponential", "fibonacci", "linear", "tShirt".' (TeamCreateInput.issueEstimationType)
52
+
53
+ feat(schema): [non_breaking] Input field 'TeamUpdateInput.issueEstimationType' description changed from 'The issue estimation type to use.' to 'The issue estimation type to use. Must be one of "notUsed", "exponential", "fibonacci", "linear", "tShirt".' (TeamUpdateInput.issueEstimationType)
54
+
55
+ feat(schema): [non_breaking] Field 'showFullUserNames' was added to object type 'UserSettings' (UserSettings.showFullUserNames)
56
+
57
+ ### Patch Changes
58
+
59
+ - e485d5f: chore(deps): update dependency patch versions
60
+ - 8ffdc08: fix: add retry mechanism for mock server in test startup sequence
61
+
3
62
  ## 4.0.0
4
63
 
5
64
  ### Major Changes
@@ -1202,7 +1202,7 @@ export declare type ExternalUser = Node & {
1202
1202
  /** The external user's display name. Unique within each organization. Can match the display name of an actual user. */
1203
1203
  displayName: Scalars["String"];
1204
1204
  /** The external user's email address. */
1205
- email: Scalars["String"];
1205
+ email?: Maybe<Scalars["String"]>;
1206
1206
  /** The unique identifier of the entity. */
1207
1207
  id: Scalars["ID"];
1208
1208
  /** The last time the external user was seen interacting with Linear. */
@@ -3387,6 +3387,8 @@ export declare type Mutation = {
3387
3387
  userGitHubConnect: UserPayload;
3388
3388
  /** Connects the Google Calendar to the user to this Linear account via OAuth2. */
3389
3389
  userGoogleCalendarConnect: UserPayload;
3390
+ /** Connects the Jira user to this Linear account via OAuth2. */
3391
+ userJiraConnect: UserPayload;
3390
3392
  /** Makes user an admin. Can only be called by an admin. */
3391
3393
  userPromoteAdmin: UserAdminPayload;
3392
3394
  /** Makes user a regular user. Can only be called by an admin. */
@@ -4006,6 +4008,9 @@ export declare type MutationUserGitHubConnectArgs = {
4006
4008
  export declare type MutationUserGoogleCalendarConnectArgs = {
4007
4009
  code: Scalars["String"];
4008
4010
  };
4011
+ export declare type MutationUserJiraConnectArgs = {
4012
+ code: Scalars["String"];
4013
+ };
4009
4014
  export declare type MutationUserPromoteAdminArgs = {
4010
4015
  id: Scalars["String"];
4011
4016
  };
@@ -4373,6 +4378,8 @@ export declare type NullableProjectFilter = {
4373
4378
  and?: Maybe<Array<NullableProjectFilter>>;
4374
4379
  /** Comparator for the project completion date. */
4375
4380
  completedAt?: Maybe<NullableDateComparator>;
4381
+ /** Filters that the project's completed milestones must satisfy. */
4382
+ completedProjectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
4376
4383
  /** Comparator for the created at date. */
4377
4384
  createdAt?: Maybe<DateComparator>;
4378
4385
  /** Filters that the projects creator must satisfy. */
@@ -4387,10 +4394,14 @@ export declare type NullableProjectFilter = {
4387
4394
  members?: Maybe<UserFilter>;
4388
4395
  /** Comparator for the project name. */
4389
4396
  name?: Maybe<StringComparator>;
4397
+ /** Filters that the project's next milestone must satisfy. */
4398
+ nextProjectMilestone?: Maybe<ProjectMilestoneFilter>;
4390
4399
  /** Filter based on the existence of the relation. */
4391
4400
  null?: Maybe<Scalars["Boolean"]>;
4392
4401
  /** Compound filters, one of which need to be matched by the project. */
4393
4402
  or?: Maybe<Array<NullableProjectFilter>>;
4403
+ /** Filters that the project's milestones must satisfy. */
4404
+ projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
4394
4405
  /** Filters that the projects roadmaps must satisfy. */
4395
4406
  roadmaps?: Maybe<RoadmapCollectionFilter>;
4396
4407
  /** [Internal] Comparator for the projects content. */
@@ -4414,10 +4425,14 @@ export declare type NullableProjectMilestoneFilter = {
4414
4425
  createdAt?: Maybe<DateComparator>;
4415
4426
  /** Comparator for the identifier. */
4416
4427
  id?: Maybe<IdComparator>;
4428
+ /** Comparator for the project milestone name. */
4429
+ name?: Maybe<StringComparator>;
4417
4430
  /** Filter based on the existence of the relation. */
4418
4431
  null?: Maybe<Scalars["Boolean"]>;
4419
4432
  /** Compound filters, one of which need to be matched by the project milestone. */
4420
4433
  or?: Maybe<Array<NullableProjectMilestoneFilter>>;
4434
+ /** Comparator for the project milestone target date. */
4435
+ targetDate?: Maybe<NullableDateComparator>;
4421
4436
  /** Comparator for the updated at date. */
4422
4437
  updatedAt?: Maybe<DateComparator>;
4423
4438
  };
@@ -4773,6 +4788,11 @@ export declare type OrganizationUsersArgs = {
4773
4788
  last?: Maybe<Scalars["Int"]>;
4774
4789
  orderBy?: Maybe<PaginationOrderBy>;
4775
4790
  };
4791
+ export declare type OrganizationAcceptedOrExpiredInviteDetailsPayload = {
4792
+ __typename?: "OrganizationAcceptedOrExpiredInviteDetailsPayload";
4793
+ /** The status of the invite */
4794
+ status: OrganizationInviteStatus;
4795
+ };
4776
4796
  export declare type OrganizationCancelDeletePayload = {
4777
4797
  __typename?: "OrganizationCancelDeletePayload";
4778
4798
  /** Whether the operation was successful. */
@@ -4911,8 +4931,15 @@ export declare type OrganizationInviteCreateInput = {
4911
4931
  /** The teams that the user has been invited to. */
4912
4932
  teamIds?: Maybe<Array<Scalars["String"]>>;
4913
4933
  };
4914
- export declare type OrganizationInviteDetailsPayload = {
4915
- __typename?: "OrganizationInviteDetailsPayload";
4934
+ export declare type OrganizationInviteDetailsPayload = OrganizationAcceptedOrExpiredInviteDetailsPayload | OrganizationInviteFullDetailsPayload;
4935
+ export declare type OrganizationInviteEdge = {
4936
+ __typename?: "OrganizationInviteEdge";
4937
+ /** Used in `before` and `after` args */
4938
+ cursor: Scalars["String"];
4939
+ node: OrganizationInvite;
4940
+ };
4941
+ export declare type OrganizationInviteFullDetailsPayload = {
4942
+ __typename?: "OrganizationInviteFullDetailsPayload";
4916
4943
  /** Whether the invite has already been accepted. */
4917
4944
  accepted: Scalars["Boolean"];
4918
4945
  /** When the invite was created. */
@@ -4931,12 +4958,8 @@ export declare type OrganizationInviteDetailsPayload = {
4931
4958
  organizationName: Scalars["String"];
4932
4959
  /** What user role the invite should grant. */
4933
4960
  role: UserRoleType;
4934
- };
4935
- export declare type OrganizationInviteEdge = {
4936
- __typename?: "OrganizationInviteEdge";
4937
- /** Used in `before` and `after` args */
4938
- cursor: Scalars["String"];
4939
- node: OrganizationInvite;
4961
+ /** The status of the invite */
4962
+ status: OrganizationInviteStatus;
4940
4963
  };
4941
4964
  export declare type OrganizationInvitePayload = {
4942
4965
  __typename?: "OrganizationInvitePayload";
@@ -4947,6 +4970,12 @@ export declare type OrganizationInvitePayload = {
4947
4970
  /** Whether the operation was successful. */
4948
4971
  success: Scalars["Boolean"];
4949
4972
  };
4973
+ /** The different statuses possible for an organization invite. */
4974
+ export declare enum OrganizationInviteStatus {
4975
+ Accepted = "accepted",
4976
+ Expired = "expired",
4977
+ Pending = "pending"
4978
+ }
4950
4979
  export declare type OrganizationInviteUpdateInput = {
4951
4980
  /** The teams that the user has been invited to. */
4952
4981
  teamIds: Array<Scalars["String"]>;
@@ -5176,6 +5205,8 @@ export declare type ProjectCollectionFilter = {
5176
5205
  and?: Maybe<Array<ProjectCollectionFilter>>;
5177
5206
  /** Comparator for the project completion date. */
5178
5207
  completedAt?: Maybe<NullableDateComparator>;
5208
+ /** Filters that the project's completed milestones must satisfy. */
5209
+ completedProjectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
5179
5210
  /** Comparator for the created at date. */
5180
5211
  createdAt?: Maybe<DateComparator>;
5181
5212
  /** Filters that the projects creator must satisfy. */
@@ -5194,8 +5225,12 @@ export declare type ProjectCollectionFilter = {
5194
5225
  members?: Maybe<UserFilter>;
5195
5226
  /** Comparator for the project name. */
5196
5227
  name?: Maybe<StringComparator>;
5228
+ /** Filters that the project's next milestone must satisfy. */
5229
+ nextProjectMilestone?: Maybe<ProjectMilestoneFilter>;
5197
5230
  /** Compound filters, one of which need to be matched by the project. */
5198
5231
  or?: Maybe<Array<ProjectCollectionFilter>>;
5232
+ /** Filters that the project's milestones must satisfy. */
5233
+ projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
5199
5234
  /** Filters that the projects roadmaps must satisfy. */
5200
5235
  roadmaps?: Maybe<RoadmapCollectionFilter>;
5201
5236
  /** [Internal] Comparator for the projects content. */
@@ -5259,6 +5294,8 @@ export declare type ProjectFilter = {
5259
5294
  and?: Maybe<Array<ProjectFilter>>;
5260
5295
  /** Comparator for the project completion date. */
5261
5296
  completedAt?: Maybe<NullableDateComparator>;
5297
+ /** Filters that the project's completed milestones must satisfy. */
5298
+ completedProjectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
5262
5299
  /** Comparator for the created at date. */
5263
5300
  createdAt?: Maybe<DateComparator>;
5264
5301
  /** Filters that the projects creator must satisfy. */
@@ -5273,8 +5310,12 @@ export declare type ProjectFilter = {
5273
5310
  members?: Maybe<UserFilter>;
5274
5311
  /** Comparator for the project name. */
5275
5312
  name?: Maybe<StringComparator>;
5313
+ /** Filters that the project's next milestone must satisfy. */
5314
+ nextProjectMilestone?: Maybe<ProjectMilestoneFilter>;
5276
5315
  /** Compound filters, one of which need to be matched by the project. */
5277
5316
  or?: Maybe<Array<ProjectFilter>>;
5317
+ /** Filters that the project's milestones must satisfy. */
5318
+ projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
5278
5319
  /** Filters that the projects roadmaps must satisfy. */
5279
5320
  roadmaps?: Maybe<RoadmapCollectionFilter>;
5280
5321
  /** [Internal] Comparator for the projects content. */
@@ -5382,6 +5423,29 @@ export declare type ProjectMilestone = Node & {
5382
5423
  */
5383
5424
  updatedAt: Scalars["DateTime"];
5384
5425
  };
5426
+ /** Milestone collection filtering options. */
5427
+ export declare type ProjectMilestoneCollectionFilter = {
5428
+ /** Compound filters, all of which need to be matched by the milestone. */
5429
+ and?: Maybe<Array<ProjectMilestoneCollectionFilter>>;
5430
+ /** Comparator for the created at date. */
5431
+ createdAt?: Maybe<DateComparator>;
5432
+ /** Filters that needs to be matched by all milestones. */
5433
+ every?: Maybe<ProjectMilestoneFilter>;
5434
+ /** Comparator for the identifier. */
5435
+ id?: Maybe<IdComparator>;
5436
+ /** Comparator for the collection length. */
5437
+ length?: Maybe<NumberComparator>;
5438
+ /** Comparator for the project milestone name. */
5439
+ name?: Maybe<StringComparator>;
5440
+ /** Compound filters, one of which need to be matched by the milestone. */
5441
+ or?: Maybe<Array<ProjectMilestoneCollectionFilter>>;
5442
+ /** Filters that needs to be matched by some milestones. */
5443
+ some?: Maybe<ProjectMilestoneFilter>;
5444
+ /** Comparator for the project milestone target date. */
5445
+ targetDate?: Maybe<NullableDateComparator>;
5446
+ /** Comparator for the updated at date. */
5447
+ updatedAt?: Maybe<DateComparator>;
5448
+ };
5385
5449
  export declare type ProjectMilestoneConnection = {
5386
5450
  __typename?: "ProjectMilestoneConnection";
5387
5451
  edges: Array<ProjectMilestoneEdge>;
@@ -5408,6 +5472,23 @@ export declare type ProjectMilestoneEdge = {
5408
5472
  cursor: Scalars["String"];
5409
5473
  node: ProjectMilestone;
5410
5474
  };
5475
+ /** Project milestone filtering options. */
5476
+ export declare type ProjectMilestoneFilter = {
5477
+ /** Compound filters, all of which need to be matched by the project milestone. */
5478
+ and?: Maybe<Array<ProjectMilestoneFilter>>;
5479
+ /** Comparator for the created at date. */
5480
+ createdAt?: Maybe<DateComparator>;
5481
+ /** Comparator for the identifier. */
5482
+ id?: Maybe<IdComparator>;
5483
+ /** Comparator for the project milestone name. */
5484
+ name?: Maybe<StringComparator>;
5485
+ /** Compound filters, one of which need to be matched by the project milestone. */
5486
+ or?: Maybe<Array<ProjectMilestoneFilter>>;
5487
+ /** Comparator for the project milestone target date. */
5488
+ targetDate?: Maybe<NullableDateComparator>;
5489
+ /** Comparator for the updated at date. */
5490
+ updatedAt?: Maybe<DateComparator>;
5491
+ };
5411
5492
  export declare type ProjectMilestonePayload = {
5412
5493
  __typename?: "ProjectMilestonePayload";
5413
5494
  /** The identifier of the last sync operation. */
@@ -5695,6 +5776,8 @@ export declare type ProjectUpdate = Node & {
5695
5776
  health: ProjectUpdateHealthType;
5696
5777
  /** The unique identifier of the entity. */
5697
5778
  id: Scalars["ID"];
5779
+ /** [Internal] Serialized JSON representing current state of the project properties when posting the project update. */
5780
+ infoSnapshot?: Maybe<Scalars["JSONObject"]>;
5698
5781
  /** The project that the update is associated with. */
5699
5782
  project: Project;
5700
5783
  /**
@@ -6123,6 +6206,7 @@ export declare type QueryProjectMilestoneArgs = {
6123
6206
  export declare type QueryProjectMilestonesArgs = {
6124
6207
  after?: Maybe<Scalars["String"]>;
6125
6208
  before?: Maybe<Scalars["String"]>;
6209
+ filter?: Maybe<ProjectMilestoneFilter>;
6126
6210
  first?: Maybe<Scalars["Int"]>;
6127
6211
  includeArchived?: Maybe<Scalars["Boolean"]>;
6128
6212
  last?: Maybe<Scalars["Int"]>;
@@ -7108,7 +7192,7 @@ export declare type Team = Node & {
7108
7192
  issueEstimationAllowZero: Scalars["Boolean"];
7109
7193
  /** Whether to add additional points to the estimate scale. */
7110
7194
  issueEstimationExtended: Scalars["Boolean"];
7111
- /** The issue estimation type to use. */
7195
+ /** The issue estimation type to use. Must be one of "notUsed", "exponential", "fibonacci", "linear", "tShirt". */
7112
7196
  issueEstimationType: Scalars["String"];
7113
7197
  /** Whether issues without priority should be sorted first. */
7114
7198
  issueOrderingNoPriorityFirst: Scalars["Boolean"];
@@ -7304,7 +7388,7 @@ export declare type TeamCreateInput = {
7304
7388
  issueEstimationAllowZero?: Maybe<Scalars["Boolean"]>;
7305
7389
  /** Whether to add additional points to the estimate scale. */
7306
7390
  issueEstimationExtended?: Maybe<Scalars["Boolean"]>;
7307
- /** The issue estimation type to use. */
7391
+ /** The issue estimation type to use. Must be one of "notUsed", "exponential", "fibonacci", "linear", "tShirt". */
7308
7392
  issueEstimationType?: Maybe<Scalars["String"]>;
7309
7393
  /** Whether issues without priority should be sorted first. */
7310
7394
  issueOrderingNoPriorityFirst?: Maybe<Scalars["Boolean"]>;
@@ -7497,7 +7581,7 @@ export declare type TeamUpdateInput = {
7497
7581
  issueEstimationAllowZero?: Maybe<Scalars["Boolean"]>;
7498
7582
  /** Whether to add additional points to the estimate scale. */
7499
7583
  issueEstimationExtended?: Maybe<Scalars["Boolean"]>;
7500
- /** The issue estimation type to use. */
7584
+ /** The issue estimation type to use. Must be one of "notUsed", "exponential", "fibonacci", "linear", "tShirt". */
7501
7585
  issueEstimationType?: Maybe<Scalars["String"]>;
7502
7586
  /** Whether issues without priority should be sorted first. */
7503
7587
  issueOrderingNoPriorityFirst?: Maybe<Scalars["Boolean"]>;
@@ -8050,6 +8134,8 @@ export declare type UserSettings = Node & {
8050
8134
  id: Scalars["ID"];
8051
8135
  /** The notification channel settings the user has selected. */
8052
8136
  notificationPreferences: Scalars["JSONObject"];
8137
+ /** Whether to show full user names instead of display names. */
8138
+ showFullUserNames: Scalars["Boolean"];
8053
8139
  /** The email types the user has unsubscribed from. */
8054
8140
  unsubscribedFrom: Array<Scalars["String"]>;
8055
8141
  /**
@@ -9261,7 +9347,7 @@ export declare type PaidSubscriptionFragment = {
9261
9347
  };
9262
9348
  export declare type UserSettingsFragment = {
9263
9349
  __typename: "UserSettings";
9264
- } & Pick<UserSettings, "calendarHash" | "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id"> & {
9350
+ } & Pick<UserSettings, "calendarHash" | "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id" | "showFullUserNames"> & {
9265
9351
  user: {
9266
9352
  __typename?: "User";
9267
9353
  } & Pick<User, "id">;
@@ -10002,9 +10088,9 @@ export declare type OrganizationInviteConnectionFragment = {
10002
10088
  __typename?: "PageInfo";
10003
10089
  } & PageInfoFragment;
10004
10090
  };
10005
- export declare type OrganizationInviteDetailsPayloadFragment = {
10006
- __typename: "OrganizationInviteDetailsPayload";
10007
- } & Pick<OrganizationInviteDetailsPayload, "organizationId" | "organizationName" | "email" | "inviter" | "organizationLogoUrl" | "createdAt" | "accepted" | "expired">;
10091
+ export declare type OrganizationInviteFullDetailsPayloadFragment = {
10092
+ __typename: "OrganizationInviteFullDetailsPayload";
10093
+ } & Pick<OrganizationInviteFullDetailsPayload, "organizationId" | "organizationName" | "email" | "inviter" | "organizationLogoUrl" | "createdAt" | "accepted" | "expired">;
10008
10094
  export declare type OrganizationInvitePayloadFragment = {
10009
10095
  __typename: "OrganizationInvitePayload";
10010
10096
  } & Pick<OrganizationInvitePayload, "lastSyncId" | "success"> & {
@@ -12082,6 +12168,16 @@ export declare type UserGoogleCalendarConnectMutation = {
12082
12168
  __typename?: "UserPayload";
12083
12169
  } & UserPayloadFragment;
12084
12170
  };
12171
+ export declare type UserJiraConnectMutationVariables = Exact<{
12172
+ code: Scalars["String"];
12173
+ }>;
12174
+ export declare type UserJiraConnectMutation = {
12175
+ __typename?: "Mutation";
12176
+ } & {
12177
+ userJiraConnect: {
12178
+ __typename?: "UserPayload";
12179
+ } & UserPayloadFragment;
12180
+ };
12085
12181
  export declare type UserPromoteAdminMutationVariables = Exact<{
12086
12182
  id: Scalars["String"];
12087
12183
  }>;
@@ -12270,6 +12366,7 @@ export declare type ProjectMilestoneQuery = {
12270
12366
  export declare type ProjectMilestonesQueryVariables = Exact<{
12271
12367
  after?: Maybe<Scalars["String"]>;
12272
12368
  before?: Maybe<Scalars["String"]>;
12369
+ filter?: Maybe<ProjectMilestoneFilter>;
12273
12370
  first?: Maybe<Scalars["Int"]>;
12274
12371
  includeArchived?: Maybe<Scalars["Boolean"]>;
12275
12372
  last?: Maybe<Scalars["Int"]>;
@@ -13627,16 +13724,6 @@ export declare type OrganizationInviteQuery = {
13627
13724
  __typename?: "OrganizationInvite";
13628
13725
  } & OrganizationInviteFragment;
13629
13726
  };
13630
- export declare type OrganizationInviteDetailsQueryVariables = Exact<{
13631
- id: Scalars["String"];
13632
- }>;
13633
- export declare type OrganizationInviteDetailsQuery = {
13634
- __typename?: "Query";
13635
- } & {
13636
- organizationInviteDetails: {
13637
- __typename?: "OrganizationInviteDetailsPayload";
13638
- } & OrganizationInviteDetailsPayloadFragment;
13639
- };
13640
13727
  export declare type OrganizationInvitesQueryVariables = Exact<{
13641
13728
  after?: Maybe<Scalars["String"]>;
13642
13729
  before?: Maybe<Scalars["String"]>;
@@ -14785,7 +14872,7 @@ export declare const OrganizationDeletePayloadFragmentDoc: DocumentNode<Organiza
14785
14872
  export declare const OrganizationExistsPayloadFragmentDoc: DocumentNode<OrganizationExistsPayloadFragment, unknown>;
14786
14873
  export declare const OrganizationInviteFragmentDoc: DocumentNode<OrganizationInviteFragment, unknown>;
14787
14874
  export declare const OrganizationInviteConnectionFragmentDoc: DocumentNode<OrganizationInviteConnectionFragment, unknown>;
14788
- export declare const OrganizationInviteDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteDetailsPayloadFragment, unknown>;
14875
+ export declare const OrganizationInviteFullDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteFullDetailsPayloadFragment, unknown>;
14789
14876
  export declare const OrganizationInvitePayloadFragmentDoc: DocumentNode<OrganizationInvitePayloadFragment, unknown>;
14790
14877
  export declare const OrganizationPayloadFragmentDoc: DocumentNode<OrganizationPayloadFragment, unknown>;
14791
14878
  export declare const OrganizationStartPlusTrialPayloadFragmentDoc: DocumentNode<OrganizationStartPlusTrialPayloadFragment, unknown>;
@@ -15434,6 +15521,9 @@ export declare const UserGitHubConnectDocument: DocumentNode<UserGitHubConnectMu
15434
15521
  export declare const UserGoogleCalendarConnectDocument: DocumentNode<UserGoogleCalendarConnectMutation, Exact<{
15435
15522
  code: Scalars["String"];
15436
15523
  }>>;
15524
+ export declare const UserJiraConnectDocument: DocumentNode<UserJiraConnectMutation, Exact<{
15525
+ code: Scalars["String"];
15526
+ }>>;
15437
15527
  export declare const UserPromoteAdminDocument: DocumentNode<UserPromoteAdminMutation, Exact<{
15438
15528
  id: Scalars["String"];
15439
15529
  }>>;
@@ -15496,6 +15586,7 @@ export declare const ProjectMilestoneDocument: DocumentNode<ProjectMilestoneQuer
15496
15586
  export declare const ProjectMilestonesDocument: DocumentNode<ProjectMilestonesQuery, Exact<{
15497
15587
  after?: Maybe<string> | undefined;
15498
15588
  before?: Maybe<string> | undefined;
15589
+ filter?: Maybe<ProjectMilestoneFilter> | undefined;
15499
15590
  first?: Maybe<number> | undefined;
15500
15591
  includeArchived?: Maybe<boolean> | undefined;
15501
15592
  last?: Maybe<number> | undefined;
@@ -16097,9 +16188,6 @@ export declare const OrganizationExistsDocument: DocumentNode<OrganizationExists
16097
16188
  export declare const OrganizationInviteDocument: DocumentNode<OrganizationInviteQuery, Exact<{
16098
16189
  id: Scalars["String"];
16099
16190
  }>>;
16100
- export declare const OrganizationInviteDetailsDocument: DocumentNode<OrganizationInviteDetailsQuery, Exact<{
16101
- id: Scalars["String"];
16102
- }>>;
16103
16191
  export declare const OrganizationInvitesDocument: DocumentNode<OrganizationInvitesQuery, Exact<{
16104
16192
  after?: Maybe<string> | undefined;
16105
16193
  before?: Maybe<string> | undefined;