@linear/sdk 19.1.0 → 19.2.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.
@@ -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
  };
@@ -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. */
@@ -12858,13 +12880,13 @@ export declare type SentrySettingsFragment = {
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" | "shouldUnfurl"> & {
12868
12890
  slackChannelMapping?: Maybe<Array<{
12869
12891
  __typename?: "SlackChannelNameMapping";
12870
12892
  } & SlackChannelNameMappingFragment>>;
@@ -14166,6 +14188,9 @@ export declare type SlackChannelConnectPayloadFragment = {
14166
14188
  export declare type SsoUrlFromEmailResponseFragment = {
14167
14189
  __typename: "SsoUrlFromEmailResponse";
14168
14190
  } & Pick<SsoUrlFromEmailResponse, "samlSsoUrl" | "success">;
14191
+ export declare type SummaryPayloadFragment = {
14192
+ __typename: "SummaryPayload";
14193
+ } & Pick<SummaryPayload, "summary">;
14169
14194
  export declare type SynchronizedPayloadFragment = {
14170
14195
  __typename: "SynchronizedPayload";
14171
14196
  } & Pick<SynchronizedPayload, "lastSyncId">;
@@ -19483,6 +19508,7 @@ export declare const RoadmapToProjectConnectionFragmentDoc: DocumentNode<Roadmap
19483
19508
  export declare const RoadmapToProjectPayloadFragmentDoc: DocumentNode<RoadmapToProjectPayloadFragment, unknown>;
19484
19509
  export declare const SlackChannelConnectPayloadFragmentDoc: DocumentNode<SlackChannelConnectPayloadFragment, unknown>;
19485
19510
  export declare const SsoUrlFromEmailResponseFragmentDoc: DocumentNode<SsoUrlFromEmailResponseFragment, unknown>;
19511
+ export declare const SummaryPayloadFragmentDoc: DocumentNode<SummaryPayloadFragment, unknown>;
19486
19512
  export declare const SynchronizedPayloadFragmentDoc: DocumentNode<SynchronizedPayloadFragment, unknown>;
19487
19513
  export declare const TeamFragmentDoc: DocumentNode<TeamFragment, unknown>;
19488
19514
  export declare const TeamConnectionFragmentDoc: DocumentNode<TeamConnectionFragment, unknown>;