@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.
- package/dist/_generated_documents.d.ts +29 -3
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +17 -0
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +46 -9
- 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 +46 -10
- 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 +47 -10
- 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
package/dist/_generated_sdk.d.ts
CHANGED
@@ -5017,6 +5017,8 @@ export declare class SharedSlackSettings extends Request {
|
|
5017
5017
|
constructor(request: LinearRequest, data: L.SharedSlackSettingsFragment);
|
5018
5018
|
/** Enterprise name of the connected Slack enterprise */
|
5019
5019
|
enterpriseName?: string;
|
5020
|
+
/** Whether to show unfurl previews in Slack */
|
5021
|
+
shouldUnfurl?: boolean;
|
5020
5022
|
/** Slack workspace id */
|
5021
5023
|
teamId?: string;
|
5022
5024
|
/** Slack workspace name */
|
@@ -5032,6 +5034,8 @@ export declare class SlackAsksSettings extends Request {
|
|
5032
5034
|
constructor(request: LinearRequest, data: L.SlackAsksSettingsFragment);
|
5033
5035
|
/** Enterprise name of the connected Slack enterprise */
|
5034
5036
|
enterpriseName?: string;
|
5037
|
+
/** Whether to show unfurl previews in Slack */
|
5038
|
+
shouldUnfurl?: boolean;
|
5035
5039
|
/** Slack workspace id */
|
5036
5040
|
teamId?: string;
|
5037
5041
|
/** Slack workspace name */
|
@@ -5127,6 +5131,8 @@ export declare class SlackSettings extends Request {
|
|
5127
5131
|
enterpriseName?: string;
|
5128
5132
|
/** Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message. */
|
5129
5133
|
linkOnIssueIdMention: boolean;
|
5134
|
+
/** Whether to show unfurl previews in Slack */
|
5135
|
+
shouldUnfurl?: boolean;
|
5130
5136
|
/** Slack workspace id */
|
5131
5137
|
teamId?: string;
|
5132
5138
|
/** Slack workspace name */
|
@@ -5145,6 +5151,17 @@ export declare class SsoUrlFromEmailResponse extends Request {
|
|
5145
5151
|
/** Whether the operation was successful. */
|
5146
5152
|
success: boolean;
|
5147
5153
|
}
|
5154
|
+
/**
|
5155
|
+
* SummaryPayload model
|
5156
|
+
*
|
5157
|
+
* @param request - function to call the graphql client
|
5158
|
+
* @param data - L.SummaryPayloadFragment response data
|
5159
|
+
*/
|
5160
|
+
export declare class SummaryPayload extends Request {
|
5161
|
+
constructor(request: LinearRequest, data: L.SummaryPayloadFragment);
|
5162
|
+
/** Summary for project updates. */
|
5163
|
+
summary: string;
|
5164
|
+
}
|
5148
5165
|
/**
|
5149
5166
|
* SynchronizedPayload model
|
5150
5167
|
*
|