@linear/sdk 7.0.0 → 7.0.1

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.
@@ -253,6 +253,17 @@ export declare class AttachmentPayload extends Request {
253
253
  /** The issue attachment that was created. */
254
254
  get attachment(): LinearFetch<Attachment> | undefined;
255
255
  }
256
+ /**
257
+ * AttachmentSourcesPayload model
258
+ *
259
+ * @param request - function to call the graphql client
260
+ * @param data - L.AttachmentSourcesPayloadFragment response data
261
+ */
262
+ export declare class AttachmentSourcesPayload extends Request {
263
+ constructor(request: LinearRequest, data: L.AttachmentSourcesPayloadFragment);
264
+ /** A unique list of all source types used in this workspace */
265
+ sources: Record<string, unknown>;
266
+ }
256
267
  /**
257
268
  * Workspace audit log entry object.
258
269
  *
@@ -2084,6 +2095,8 @@ export declare class IssueLabel extends Request {
2084
2095
  description?: string;
2085
2096
  /** The unique identifier of the entity. */
2086
2097
  id: string;
2098
+ /** Whether this label is considered to be a group. */
2099
+ isGroup: boolean;
2087
2100
  /** The label's name. */
2088
2101
  name: string;
2089
2102
  /**