@linear/sdk 19.1.1 → 19.3.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 +65 -35
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +106 -0
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +253 -101
- 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 +252 -102
- 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 +254 -102
- 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
@@ -6666,7 +6666,7 @@ export declare type Organization = Node & {
|
|
6666
6666
|
/** Whether SCIM provisioning is enabled for organization. */
|
6667
6667
|
scimEnabled: Scalars["Boolean"];
|
6668
6668
|
/** Which day count to use for SLA calculations. */
|
6669
|
-
slaDayCount:
|
6669
|
+
slaDayCount: SLADayCountType;
|
6670
6670
|
/** The organization's subscription to a paid plan. */
|
6671
6671
|
subscription?: Maybe<PaidSubscription>;
|
6672
6672
|
/** Teams associated with the organization. */
|
@@ -7002,7 +7002,7 @@ export declare type OrganizationUpdateInput = {
|
|
7002
7002
|
/** Whether the organization is using roadmap. */
|
7003
7003
|
roadmapEnabled?: Maybe<Scalars["Boolean"]>;
|
7004
7004
|
/** Which day count to use for SLA calculation. */
|
7005
|
-
slaDayCount?: Maybe<
|
7005
|
+
slaDayCount?: Maybe<SLADayCountType>;
|
7006
7006
|
/** Internal. Whether SLAs have been enabled for the organization. */
|
7007
7007
|
slaEnabled?: Maybe<Scalars["Boolean"]>;
|
7008
7008
|
/** The URL key of the organization. */
|
@@ -8481,6 +8481,8 @@ export declare type Query = {
|
|
8481
8481
|
searchProjects: ProjectSearchPayload;
|
8482
8482
|
/** Fetch SSO login URL for the email provided. */
|
8483
8483
|
ssoUrlFromEmail: SsoUrlFromEmailResponse;
|
8484
|
+
/** [Internal] AI summary of the latest project updates for the given projects */
|
8485
|
+
summarizeProjectUpdates: SummaryPayload;
|
8484
8486
|
/** One specific team. */
|
8485
8487
|
team: Team;
|
8486
8488
|
/** One specific team membership. */
|
@@ -8972,6 +8974,9 @@ export declare type QuerySsoUrlFromEmailArgs = {
|
|
8972
8974
|
email: Scalars["String"];
|
8973
8975
|
isDesktop?: Maybe<Scalars["Boolean"]>;
|
8974
8976
|
};
|
8977
|
+
export declare type QuerySummarizeProjectUpdatesArgs = {
|
8978
|
+
ids: Array<Scalars["String"]>;
|
8979
|
+
};
|
8975
8980
|
export declare type QueryTeamArgs = {
|
8976
8981
|
id: Scalars["String"];
|
8977
8982
|
};
|
@@ -9357,7 +9362,7 @@ export declare type RoadmapUpdateInput = {
|
|
9357
9362
|
sortOrder?: Maybe<Scalars["Float"]>;
|
9358
9363
|
};
|
9359
9364
|
/** Which day count to use for SLA calculations. */
|
9360
|
-
export declare enum
|
9365
|
+
export declare enum SLADayCountType {
|
9361
9366
|
All = "all",
|
9362
9367
|
OnlyBusinessDays = "onlyBusinessDays"
|
9363
9368
|
}
|
@@ -9382,6 +9387,8 @@ export declare type SharedSlackSettings = {
|
|
9382
9387
|
__typename?: "SharedSlackSettings";
|
9383
9388
|
/** Enterprise name of the connected Slack enterprise */
|
9384
9389
|
enterpriseName?: Maybe<Scalars["String"]>;
|
9390
|
+
/** Whether to show unfurl previews in Slack */
|
9391
|
+
shouldUnfurl?: Maybe<Scalars["Boolean"]>;
|
9385
9392
|
/** Slack workspace id */
|
9386
9393
|
teamId?: Maybe<Scalars["String"]>;
|
9387
9394
|
/** Slack workspace name */
|
@@ -9390,6 +9397,8 @@ export declare type SharedSlackSettings = {
|
|
9390
9397
|
export declare type SharedSlackSettingsInput = {
|
9391
9398
|
/** Enterprise name of the connected Slack enterprise */
|
9392
9399
|
enterpriseName?: Maybe<Scalars["String"]>;
|
9400
|
+
/** Whether to show unfurl previews in Slack */
|
9401
|
+
shouldUnfurl?: Maybe<Scalars["Boolean"]>;
|
9393
9402
|
/** Slack workspace id */
|
9394
9403
|
teamId?: Maybe<Scalars["String"]>;
|
9395
9404
|
/** Slack workspace name */
|
@@ -9431,6 +9440,8 @@ export declare type SlackAsksSettings = {
|
|
9431
9440
|
canAdministrate: UserRoleType;
|
9432
9441
|
/** Enterprise name of the connected Slack enterprise */
|
9433
9442
|
enterpriseName?: Maybe<Scalars["String"]>;
|
9443
|
+
/** Whether to show unfurl previews in Slack */
|
9444
|
+
shouldUnfurl?: Maybe<Scalars["Boolean"]>;
|
9434
9445
|
/** The mapping of Slack channel ID => Slack channel name for connected channels. */
|
9435
9446
|
slackChannelMapping?: Maybe<Array<SlackChannelNameMapping>>;
|
9436
9447
|
/** Slack workspace id */
|
@@ -9443,6 +9454,8 @@ export declare type SlackAsksSettingsInput = {
|
|
9443
9454
|
canAdministrate: UserRoleType;
|
9444
9455
|
/** Enterprise name of the connected Slack enterprise */
|
9445
9456
|
enterpriseName?: Maybe<Scalars["String"]>;
|
9457
|
+
/** Whether to show unfurl previews in Slack */
|
9458
|
+
shouldUnfurl?: Maybe<Scalars["Boolean"]>;
|
9446
9459
|
/** The mapping of Slack channel ID => Slack channel name for connected channels. */
|
9447
9460
|
slackChannelMapping?: Maybe<Array<SlackChannelNameMappingInput>>;
|
9448
9461
|
/** Slack workspace id */
|
@@ -9552,6 +9565,8 @@ export declare type SlackSettings = {
|
|
9552
9565
|
enterpriseName?: Maybe<Scalars["String"]>;
|
9553
9566
|
/** Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message. */
|
9554
9567
|
linkOnIssueIdMention: Scalars["Boolean"];
|
9568
|
+
/** Whether to show unfurl previews in Slack */
|
9569
|
+
shouldUnfurl?: Maybe<Scalars["Boolean"]>;
|
9555
9570
|
/** Slack workspace id */
|
9556
9571
|
teamId?: Maybe<Scalars["String"]>;
|
9557
9572
|
/** Slack workspace name */
|
@@ -9562,6 +9577,8 @@ export declare type SlackSettingsInput = {
|
|
9562
9577
|
enterpriseName?: Maybe<Scalars["String"]>;
|
9563
9578
|
/** Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message. */
|
9564
9579
|
linkOnIssueIdMention: Scalars["Boolean"];
|
9580
|
+
/** Whether to show unfurl previews in Slack */
|
9581
|
+
shouldUnfurl?: Maybe<Scalars["Boolean"]>;
|
9565
9582
|
/** Slack workspace id */
|
9566
9583
|
teamId?: Maybe<Scalars["String"]>;
|
9567
9584
|
/** Slack workspace name */
|
@@ -9668,6 +9685,11 @@ export declare type SubTypeComparator = {
|
|
9668
9685
|
/** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
|
9669
9686
|
null?: Maybe<Scalars["Boolean"]>;
|
9670
9687
|
};
|
9688
|
+
export declare type SummaryPayload = {
|
9689
|
+
__typename?: "SummaryPayload";
|
9690
|
+
/** Summary for project updates. */
|
9691
|
+
summary: Scalars["String"];
|
9692
|
+
};
|
9671
9693
|
export declare type SynchronizedPayload = {
|
9672
9694
|
__typename?: "SynchronizedPayload";
|
9673
9695
|
/** The identifier of the last sync operation. */
|
@@ -11682,7 +11704,7 @@ export declare type EmojiFragment = {
|
|
11682
11704
|
};
|
11683
11705
|
export declare type CustomViewNotificationSubscriptionFragment = {
|
11684
11706
|
__typename: "CustomViewNotificationSubscription";
|
11685
|
-
} & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
|
11707
|
+
} & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
|
11686
11708
|
cycle?: Maybe<{
|
11687
11709
|
__typename?: "Cycle";
|
11688
11710
|
} & Pick<Cycle, "id">>;
|
@@ -11723,7 +11745,7 @@ export declare type CustomViewFragment = {
|
|
11723
11745
|
};
|
11724
11746
|
export declare type CycleNotificationSubscriptionFragment = {
|
11725
11747
|
__typename: "CycleNotificationSubscription";
|
11726
|
-
} & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
|
11748
|
+
} & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
|
11727
11749
|
customView?: Maybe<{
|
11728
11750
|
__typename?: "CustomView";
|
11729
11751
|
} & Pick<CustomView, "id">>;
|
@@ -11884,7 +11906,7 @@ export declare type DeletePayloadFragment = {
|
|
11884
11906
|
} & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
|
11885
11907
|
export declare type LabelNotificationSubscriptionFragment = {
|
11886
11908
|
__typename: "LabelNotificationSubscription";
|
11887
|
-
} & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
|
11909
|
+
} & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
|
11888
11910
|
customView?: Maybe<{
|
11889
11911
|
__typename?: "CustomView";
|
11890
11912
|
} & Pick<CustomView, "id">>;
|
@@ -11965,7 +11987,7 @@ declare type Notification_ProjectNotification_Fragment = {
|
|
11965
11987
|
export declare type NotificationFragment = Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
|
11966
11988
|
export declare type ProjectNotificationSubscriptionFragment = {
|
11967
11989
|
__typename: "ProjectNotificationSubscription";
|
11968
|
-
} & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
|
11990
|
+
} & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
|
11969
11991
|
customView?: Maybe<{
|
11970
11992
|
__typename?: "CustomView";
|
11971
11993
|
} & Pick<CustomView, "id">>;
|
@@ -12151,7 +12173,7 @@ export declare type WorkflowStateFragment = {
|
|
12151
12173
|
};
|
12152
12174
|
export declare type TeamNotificationSubscriptionFragment = {
|
12153
12175
|
__typename: "TeamNotificationSubscription";
|
12154
|
-
} & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
|
12176
|
+
} & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
|
12155
12177
|
customView?: Maybe<{
|
12156
12178
|
__typename?: "CustomView";
|
12157
12179
|
} & Pick<CustomView, "id">>;
|
@@ -12176,7 +12198,7 @@ export declare type TeamNotificationSubscriptionFragment = {
|
|
12176
12198
|
};
|
12177
12199
|
export declare type TriageResponsibilityFragment = {
|
12178
12200
|
__typename: "TriageResponsibility";
|
12179
|
-
} & Pick<TriageResponsibility, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
|
12201
|
+
} & Pick<TriageResponsibility, "action" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
|
12180
12202
|
manualSelection?: Maybe<{
|
12181
12203
|
__typename?: "TriageResponsibilityManualSelection";
|
12182
12204
|
} & TriageResponsibilityManualSelectionFragment>;
|
@@ -12215,7 +12237,7 @@ export declare type TimeScheduleFragment = {
|
|
12215
12237
|
};
|
12216
12238
|
export declare type GitAutomationStateFragment = {
|
12217
12239
|
__typename: "GitAutomationState";
|
12218
|
-
} & Pick<GitAutomationState, "updatedAt" | "archivedAt" | "createdAt" | "id" | "branchPattern"> & {
|
12240
|
+
} & Pick<GitAutomationState, "event" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "branchPattern"> & {
|
12219
12241
|
state?: Maybe<{
|
12220
12242
|
__typename?: "WorkflowState";
|
12221
12243
|
} & Pick<WorkflowState, "id">>;
|
@@ -12228,7 +12250,7 @@ export declare type GitAutomationStateFragment = {
|
|
12228
12250
|
};
|
12229
12251
|
export declare type ProjectUpdateFragment = {
|
12230
12252
|
__typename: "ProjectUpdate";
|
12231
|
-
} & Pick<ProjectUpdate, "url" | "diffMarkdown" | "diff" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body" | "isDiffHidden"> & {
|
12253
|
+
} & Pick<ProjectUpdate, "url" | "diffMarkdown" | "diff" | "health" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body" | "isDiffHidden"> & {
|
12232
12254
|
project: {
|
12233
12255
|
__typename?: "Project";
|
12234
12256
|
} & Pick<Project, "id">;
|
@@ -12241,7 +12263,7 @@ export declare type UserAccountFragment = {
|
|
12241
12263
|
} & Pick<UserAccount, "service" | "id" | "archivedAt" | "createdAt" | "updatedAt" | "email" | "name" | "authTokenLinkDisabled">;
|
12242
12264
|
export declare type UserNotificationSubscriptionFragment = {
|
12243
12265
|
__typename: "UserNotificationSubscription";
|
12244
|
-
} & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
|
12266
|
+
} & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
|
12245
12267
|
customView?: Maybe<{
|
12246
12268
|
__typename?: "CustomView";
|
12247
12269
|
} & Pick<CustomView, "id">>;
|
@@ -12344,7 +12366,7 @@ export declare type AuthOrganizationInviteFragment = {
|
|
12344
12366
|
} & Pick<AuthOrganizationInvite, "expiresAt" | "id">;
|
12345
12367
|
export declare type OrganizationInviteFragment = {
|
12346
12368
|
__typename: "OrganizationInvite";
|
12347
|
-
} & Pick<OrganizationInvite, "metadata" | "external" | "email" | "updatedAt" | "archivedAt" | "createdAt" | "acceptedAt" | "expiresAt" | "id"> & {
|
12369
|
+
} & Pick<OrganizationInvite, "metadata" | "external" | "email" | "updatedAt" | "archivedAt" | "createdAt" | "acceptedAt" | "expiresAt" | "id" | "role"> & {
|
12348
12370
|
inviter: {
|
12349
12371
|
__typename?: "User";
|
12350
12372
|
} & Pick<User, "id">;
|
@@ -12392,7 +12414,7 @@ export declare type IssueNotificationFragment = {
|
|
12392
12414
|
};
|
12393
12415
|
export declare type IssueFragment = {
|
12394
12416
|
__typename: "Issue";
|
12395
|
-
} & Pick<Issue, "trashed" | "labelIds" | "url" | "identifier" | "priorityLabel" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "snoozedUntilAt" | "id"> & {
|
12417
|
+
} & Pick<Issue, "trashed" | "labelIds" | "integrationSourceType" | "url" | "identifier" | "priorityLabel" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "snoozedUntilAt" | "id"> & {
|
12396
12418
|
botActor?: Maybe<{
|
12397
12419
|
__typename?: "ActorBot";
|
12398
12420
|
} & ActorBotFragment>;
|
@@ -12457,14 +12479,14 @@ export declare type OauthClientApprovalNotificationFragment = {
|
|
12457
12479
|
};
|
12458
12480
|
export declare type OrganizationFragment = {
|
12459
12481
|
__typename: "Organization";
|
12460
|
-
} & Pick<Organization, "allowedAuthServices" | "gitBranchFormat" | "userCount" | "createdIssueCount" | "previousUrlKeys" | "periodUploadVolume" | "projectUpdateRemindersHour" | "updatedAt" | "fiscalYearStartMonth" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "archivedAt" | "createdAt" | "trialEndsAt" | "id" | "samlEnabled" | "scimEnabled" | "allowMembersToInvite" | "gitLinkbackMessagesEnabled" | "gitPublicLinkbackMessagesEnabled" | "roadmapEnabled"> & {
|
12482
|
+
} & Pick<Organization, "allowedAuthServices" | "gitBranchFormat" | "userCount" | "createdIssueCount" | "previousUrlKeys" | "periodUploadVolume" | "projectUpdateRemindersDay" | "releaseChannel" | "projectUpdatesReminderFrequency" | "projectUpdateRemindersHour" | "updatedAt" | "fiscalYearStartMonth" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "archivedAt" | "createdAt" | "trialEndsAt" | "id" | "samlEnabled" | "scimEnabled" | "allowMembersToInvite" | "gitLinkbackMessagesEnabled" | "gitPublicLinkbackMessagesEnabled" | "roadmapEnabled" | "slaDayCount"> & {
|
12461
12483
|
subscription?: Maybe<{
|
12462
12484
|
__typename?: "PaidSubscription";
|
12463
12485
|
} & PaidSubscriptionFragment>;
|
12464
12486
|
};
|
12465
12487
|
export declare type AuthOrganizationFragment = {
|
12466
12488
|
__typename: "AuthOrganization";
|
12467
|
-
} & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "logoUrl" | "name" | "urlKey" | "region" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
|
12489
|
+
} & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "releaseChannel" | "logoUrl" | "name" | "urlKey" | "region" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
|
12468
12490
|
export declare type TeamFragment = {
|
12469
12491
|
__typename: "Team";
|
12470
12492
|
} & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "issueOrderingNoPriorityFirst" | "private" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueSortOrderDefaultToBottom"> & {
|
@@ -12519,7 +12541,7 @@ export declare type AuthOauthClientWithMembershipsFragment = {
|
|
12519
12541
|
} & Pick<AuthOauthClientWithMemberships, "name" | "imageUrl" | "appId" | "clientId" | "scope" | "webhookUrl" | "totalMembers">;
|
12520
12542
|
export declare type AuthenticationSessionResponseFragment = {
|
12521
12543
|
__typename: "AuthenticationSessionResponse";
|
12522
|
-
} & Pick<AuthenticationSessionResponse, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "isCurrentSession" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "browserType" | "lastActiveAt" | "id">;
|
12544
|
+
} & Pick<AuthenticationSessionResponse, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "isCurrentSession" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "type" | "browserType" | "lastActiveAt" | "id">;
|
12523
12545
|
export declare type ArchiveResponseFragment = {
|
12524
12546
|
__typename: "ArchiveResponse";
|
12525
12547
|
} & Pick<ArchiveResponse, "archive" | "totalCount" | "databaseVersion" | "includesDependencies">;
|
@@ -12535,7 +12557,7 @@ export declare type TeamMembershipFragment = {
|
|
12535
12557
|
};
|
12536
12558
|
export declare type OrganizationDomainFragment = {
|
12537
12559
|
__typename: "OrganizationDomain";
|
12538
|
-
} & Pick<OrganizationDomain, "name" | "verificationEmail" | "verified" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "claimed"> & {
|
12560
|
+
} & Pick<OrganizationDomain, "name" | "verificationEmail" | "verified" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "authType" | "claimed"> & {
|
12539
12561
|
creator?: Maybe<{
|
12540
12562
|
__typename?: "User";
|
12541
12563
|
} & Pick<User, "id">>;
|
@@ -12655,7 +12677,7 @@ export declare type GitLabSettingsFragment = {
|
|
12655
12677
|
} & Pick<GitLabSettings, "expiresAt" | "url" | "readonly">;
|
12656
12678
|
declare type NotificationSubscription_CustomViewNotificationSubscription_Fragment = {
|
12657
12679
|
__typename: "CustomViewNotificationSubscription";
|
12658
|
-
} & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
|
12680
|
+
} & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
|
12659
12681
|
customView: {
|
12660
12682
|
__typename?: "CustomView";
|
12661
12683
|
} & Pick<CustomView, "id">;
|
@@ -12680,7 +12702,7 @@ declare type NotificationSubscription_CustomViewNotificationSubscription_Fragmen
|
|
12680
12702
|
};
|
12681
12703
|
declare type NotificationSubscription_CycleNotificationSubscription_Fragment = {
|
12682
12704
|
__typename: "CycleNotificationSubscription";
|
12683
|
-
} & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
|
12705
|
+
} & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
|
12684
12706
|
customView?: Maybe<{
|
12685
12707
|
__typename?: "CustomView";
|
12686
12708
|
} & Pick<CustomView, "id">>;
|
@@ -12705,7 +12727,7 @@ declare type NotificationSubscription_CycleNotificationSubscription_Fragment = {
|
|
12705
12727
|
};
|
12706
12728
|
declare type NotificationSubscription_LabelNotificationSubscription_Fragment = {
|
12707
12729
|
__typename: "LabelNotificationSubscription";
|
12708
|
-
} & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
|
12730
|
+
} & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
|
12709
12731
|
customView?: Maybe<{
|
12710
12732
|
__typename?: "CustomView";
|
12711
12733
|
} & Pick<CustomView, "id">>;
|
@@ -12730,7 +12752,7 @@ declare type NotificationSubscription_LabelNotificationSubscription_Fragment = {
|
|
12730
12752
|
};
|
12731
12753
|
declare type NotificationSubscription_ProjectNotificationSubscription_Fragment = {
|
12732
12754
|
__typename: "ProjectNotificationSubscription";
|
12733
|
-
} & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
|
12755
|
+
} & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
|
12734
12756
|
customView?: Maybe<{
|
12735
12757
|
__typename?: "CustomView";
|
12736
12758
|
} & Pick<CustomView, "id">>;
|
@@ -12755,7 +12777,7 @@ declare type NotificationSubscription_ProjectNotificationSubscription_Fragment =
|
|
12755
12777
|
};
|
12756
12778
|
declare type NotificationSubscription_TeamNotificationSubscription_Fragment = {
|
12757
12779
|
__typename: "TeamNotificationSubscription";
|
12758
|
-
} & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
|
12780
|
+
} & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
|
12759
12781
|
customView?: Maybe<{
|
12760
12782
|
__typename?: "CustomView";
|
12761
12783
|
} & Pick<CustomView, "id">>;
|
@@ -12780,7 +12802,7 @@ declare type NotificationSubscription_TeamNotificationSubscription_Fragment = {
|
|
12780
12802
|
};
|
12781
12803
|
declare type NotificationSubscription_UserNotificationSubscription_Fragment = {
|
12782
12804
|
__typename: "UserNotificationSubscription";
|
12783
|
-
} & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
|
12805
|
+
} & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
|
12784
12806
|
customView?: Maybe<{
|
12785
12807
|
__typename?: "CustomView";
|
12786
12808
|
} & Pick<CustomView, "id">>;
|
@@ -12852,26 +12874,26 @@ export declare type GithubRepoFragment = {
|
|
12852
12874
|
} & Pick<GithubRepo, "id" | "name">;
|
12853
12875
|
export declare type OauthClientApprovalFragment = {
|
12854
12876
|
__typename: "OauthClientApproval";
|
12855
|
-
} & Pick<OauthClientApproval, "updatedAt" | "requesterId" | "responderId" | "requestReason" | "denyReason" | "scopes" | "archivedAt" | "createdAt" | "id" | "oauthClientId">;
|
12877
|
+
} & Pick<OauthClientApproval, "updatedAt" | "requesterId" | "responderId" | "requestReason" | "denyReason" | "scopes" | "status" | "archivedAt" | "createdAt" | "id" | "oauthClientId">;
|
12856
12878
|
export declare type SentrySettingsFragment = {
|
12857
12879
|
__typename: "SentrySettings";
|
12858
12880
|
} & Pick<SentrySettings, "organizationSlug">;
|
12859
12881
|
export declare type SlackSettingsFragment = {
|
12860
12882
|
__typename: "SlackSettings";
|
12861
|
-
} & Pick<SlackSettings, "enterpriseName" | "teamId" | "teamName" | "linkOnIssueIdMention">;
|
12883
|
+
} & Pick<SlackSettings, "enterpriseName" | "teamId" | "teamName" | "linkOnIssueIdMention" | "shouldUnfurl">;
|
12862
12884
|
export declare type SharedSlackSettingsFragment = {
|
12863
12885
|
__typename: "SharedSlackSettings";
|
12864
|
-
} & Pick<SharedSlackSettings, "enterpriseName" | "teamId" | "teamName">;
|
12886
|
+
} & Pick<SharedSlackSettings, "enterpriseName" | "teamId" | "teamName" | "shouldUnfurl">;
|
12865
12887
|
export declare type SlackAsksSettingsFragment = {
|
12866
12888
|
__typename: "SlackAsksSettings";
|
12867
|
-
} & Pick<SlackAsksSettings, "enterpriseName" | "teamId" | "teamName"> & {
|
12889
|
+
} & Pick<SlackAsksSettings, "enterpriseName" | "teamId" | "teamName" | "canAdministrate" | "shouldUnfurl"> & {
|
12868
12890
|
slackChannelMapping?: Maybe<Array<{
|
12869
12891
|
__typename?: "SlackChannelNameMapping";
|
12870
12892
|
} & SlackChannelNameMappingFragment>>;
|
12871
12893
|
};
|
12872
12894
|
export declare type SlackPostSettingsFragment = {
|
12873
12895
|
__typename: "SlackPostSettings";
|
12874
|
-
} & Pick<SlackPostSettings, "channel" | "channelId" | "configurationUrl">;
|
12896
|
+
} & Pick<SlackPostSettings, "channel" | "channelId" | "channelType" | "configurationUrl">;
|
12875
12897
|
export declare type IntegrationsSettingsFragment = {
|
12876
12898
|
__typename: "IntegrationsSettings";
|
12877
12899
|
} & Pick<IntegrationsSettings, "updatedAt" | "archivedAt" | "createdAt" | "id" | "slackIssueNewComment" | "slackIssueAddedToTriage" | "slackIssueCreated" | "slackProjectUpdateCreated" | "slackIssueSlaHighRisk" | "slackIssueSlaBreached" | "slackIssueStatusChangedDone" | "slackIssueStatusChangedAll" | "slackProjectUpdateCreatedToTeam" | "slackProjectUpdateCreatedToWorkspace"> & {
|
@@ -12962,10 +12984,10 @@ export declare type SlackAsksTeamSettingsFragment = {
|
|
12962
12984
|
} & Pick<SlackAsksTeamSettings, "id" | "hasDefaultAsk">;
|
12963
12985
|
export declare type AuthenticationSessionFragment = {
|
12964
12986
|
__typename: "AuthenticationSession";
|
12965
|
-
} & Pick<AuthenticationSession, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "browserType" | "lastActiveAt" | "id">;
|
12987
|
+
} & Pick<AuthenticationSession, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "type" | "browserType" | "lastActiveAt" | "id">;
|
12966
12988
|
export declare type FavoriteFragment = {
|
12967
12989
|
__typename: "Favorite";
|
12968
|
-
} & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
|
12990
|
+
} & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "projectTab" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
|
12969
12991
|
customView?: Maybe<{
|
12970
12992
|
__typename?: "CustomView";
|
12971
12993
|
} & Pick<CustomView, "id">>;
|
@@ -13104,7 +13126,7 @@ export declare type AuthOauthClientWithTokensFragment = {
|
|
13104
13126
|
};
|
13105
13127
|
export declare type AuthOrganizationDomainFragment = {
|
13106
13128
|
__typename: "AuthOrganizationDomain";
|
13107
|
-
} & Pick<AuthOrganizationDomain, "id" | "claimed" | "name" | "organizationId" | "verified">;
|
13129
|
+
} & Pick<AuthOrganizationDomain, "id" | "authType" | "claimed" | "name" | "organizationId" | "verified">;
|
13108
13130
|
export declare type AuthResolverResponseFragment = {
|
13109
13131
|
__typename: "AuthResolverResponse";
|
13110
13132
|
} & Pick<AuthResolverResponse, "token" | "email" | "lastUsedOrganizationId" | "allowDomainAccess" | "id"> & {
|
@@ -13530,7 +13552,7 @@ export declare type IssueSearchPayloadFragment = {
|
|
13530
13552
|
};
|
13531
13553
|
export declare type IssueSearchResultFragment = {
|
13532
13554
|
__typename: "IssueSearchResult";
|
13533
|
-
} & Pick<IssueSearchResult, "trashed" | "labelIds" | "url" | "identifier" | "priorityLabel" | "metadata" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "snoozedUntilAt" | "id"> & {
|
13555
|
+
} & Pick<IssueSearchResult, "trashed" | "labelIds" | "integrationSourceType" | "url" | "identifier" | "priorityLabel" | "metadata" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "snoozedUntilAt" | "id"> & {
|
13534
13556
|
botActor?: Maybe<{
|
13535
13557
|
__typename?: "ActorBot";
|
13536
13558
|
} & ActorBotFragment>;
|
@@ -13885,6 +13907,9 @@ export declare type OauthTokenFragment = {
|
|
13885
13907
|
__typename?: "AuthOauthClient";
|
13886
13908
|
} & AuthOauthClientFragment;
|
13887
13909
|
};
|
13910
|
+
export declare type OrganizationAcceptedOrExpiredInviteDetailsPayloadFragment = {
|
13911
|
+
__typename: "OrganizationAcceptedOrExpiredInviteDetailsPayload";
|
13912
|
+
} & Pick<OrganizationAcceptedOrExpiredInviteDetailsPayload, "status">;
|
13888
13913
|
export declare type OrganizationCancelDeletePayloadFragment = {
|
13889
13914
|
__typename: "OrganizationCancelDeletePayload";
|
13890
13915
|
} & Pick<OrganizationCancelDeletePayload, "success">;
|
@@ -13906,7 +13931,7 @@ export declare type OrganizationInviteConnectionFragment = {
|
|
13906
13931
|
};
|
13907
13932
|
export declare type OrganizationInviteFullDetailsPayloadFragment = {
|
13908
13933
|
__typename: "OrganizationInviteFullDetailsPayload";
|
13909
|
-
} & Pick<OrganizationInviteFullDetailsPayload, "allowedAuthServices" | "organizationId" | "organizationName" | "email" | "inviter" | "organizationLogoUrl" | "createdAt" | "accepted" | "expired">;
|
13934
|
+
} & Pick<OrganizationInviteFullDetailsPayload, "allowedAuthServices" | "organizationId" | "organizationName" | "email" | "inviter" | "status" | "organizationLogoUrl" | "role" | "createdAt" | "accepted" | "expired">;
|
13910
13935
|
export declare type OrganizationInviteLinkDetailsPayloadFragment = {
|
13911
13936
|
__typename: "OrganizationInviteLinkDetailsPayload";
|
13912
13937
|
} & Pick<OrganizationInviteLinkDetailsPayload, "allowedAuthServices" | "organizationId" | "organizationName" | "organizationRegion" | "organizationUrlKey" | "organizationLogoUrl">;
|
@@ -14166,6 +14191,9 @@ export declare type SlackChannelConnectPayloadFragment = {
|
|
14166
14191
|
export declare type SsoUrlFromEmailResponseFragment = {
|
14167
14192
|
__typename: "SsoUrlFromEmailResponse";
|
14168
14193
|
} & Pick<SsoUrlFromEmailResponse, "samlSsoUrl" | "success">;
|
14194
|
+
export declare type SummaryPayloadFragment = {
|
14195
|
+
__typename: "SummaryPayload";
|
14196
|
+
} & Pick<SummaryPayload, "summary">;
|
14169
14197
|
export declare type SynchronizedPayloadFragment = {
|
14170
14198
|
__typename: "SynchronizedPayload";
|
14171
14199
|
} & Pick<SynchronizedPayload, "lastSyncId">;
|
@@ -14345,7 +14373,7 @@ export declare type WorkflowCronJobDefinitionConnectionFragment = {
|
|
14345
14373
|
};
|
14346
14374
|
export declare type WorkflowDefinitionFragment = {
|
14347
14375
|
__typename: "WorkflowDefinition";
|
14348
|
-
} & Pick<WorkflowDefinition, "activities" | "conditions" | "description" | "updatedAt" | "groupName" | "name" | "sortOrder" | "archivedAt" | "createdAt" | "id" | "enabled"> & {
|
14376
|
+
} & Pick<WorkflowDefinition, "activities" | "conditions" | "description" | "updatedAt" | "groupName" | "name" | "triggerType" | "sortOrder" | "archivedAt" | "createdAt" | "trigger" | "type" | "userContextViewType" | "contextViewType" | "id" | "enabled"> & {
|
14349
14377
|
customView?: Maybe<{
|
14350
14378
|
__typename?: "CustomView";
|
14351
14379
|
} & Pick<CustomView, "id">>;
|
@@ -19434,6 +19462,7 @@ export declare const NotificationSubscriptionConnectionFragmentDoc: DocumentNode
|
|
19434
19462
|
export declare const NotificationSubscriptionPayloadFragmentDoc: DocumentNode<NotificationSubscriptionPayloadFragment, unknown>;
|
19435
19463
|
export declare const OauthClientFragmentDoc: DocumentNode<OauthClientFragment, unknown>;
|
19436
19464
|
export declare const OauthClientConnectionFragmentDoc: DocumentNode<OauthClientConnectionFragment, unknown>;
|
19465
|
+
export declare const OrganizationAcceptedOrExpiredInviteDetailsPayloadFragmentDoc: DocumentNode<OrganizationAcceptedOrExpiredInviteDetailsPayloadFragment, unknown>;
|
19437
19466
|
export declare const OrganizationCancelDeletePayloadFragmentDoc: DocumentNode<OrganizationCancelDeletePayloadFragment, unknown>;
|
19438
19467
|
export declare const OrganizationDeletePayloadFragmentDoc: DocumentNode<OrganizationDeletePayloadFragment, unknown>;
|
19439
19468
|
export declare const OrganizationExistsPayloadFragmentDoc: DocumentNode<OrganizationExistsPayloadFragment, unknown>;
|
@@ -19483,6 +19512,7 @@ export declare const RoadmapToProjectConnectionFragmentDoc: DocumentNode<Roadmap
|
|
19483
19512
|
export declare const RoadmapToProjectPayloadFragmentDoc: DocumentNode<RoadmapToProjectPayloadFragment, unknown>;
|
19484
19513
|
export declare const SlackChannelConnectPayloadFragmentDoc: DocumentNode<SlackChannelConnectPayloadFragment, unknown>;
|
19485
19514
|
export declare const SsoUrlFromEmailResponseFragmentDoc: DocumentNode<SsoUrlFromEmailResponseFragment, unknown>;
|
19515
|
+
export declare const SummaryPayloadFragmentDoc: DocumentNode<SummaryPayloadFragment, unknown>;
|
19486
19516
|
export declare const SynchronizedPayloadFragmentDoc: DocumentNode<SynchronizedPayloadFragment, unknown>;
|
19487
19517
|
export declare const TeamFragmentDoc: DocumentNode<TeamFragment, unknown>;
|
19488
19518
|
export declare const TeamConnectionFragmentDoc: DocumentNode<TeamConnectionFragment, unknown>;
|