@linear/sdk 11.0.0 → 12.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.
@@ -410,6 +410,23 @@ export declare class AuthIntegration extends Request {
410
410
  /** The unique identifier of the entity. */
411
411
  id: string;
412
412
  }
413
+ /**
414
+ * AuthOauthClient model
415
+ *
416
+ * @param request - function to call the graphql client
417
+ * @param data - L.AuthOauthClientFragment response data
418
+ */
419
+ export declare class AuthOauthClient extends Request {
420
+ constructor(request: LinearRequest, data: L.AuthOauthClientFragment);
421
+ /** OAuth application's client ID. */
422
+ clientId: string;
423
+ /** OAuth application's client secret. */
424
+ clientSecret: string;
425
+ /** The unique identifier of the entity. */
426
+ id: string;
427
+ /** List of allowed redirect URIs for the application. */
428
+ redirectUris: string[];
429
+ }
413
430
  /**
414
431
  * An organization. Organizations are root-level objects that contain users and teams.
415
432
  *
@@ -2689,6 +2706,8 @@ export declare class IssueSearchResultConnection extends Connection<IssueSearchR
2689
2706
  */
2690
2707
  export declare class JiraLinearMapping extends Request {
2691
2708
  constructor(request: LinearRequest, data: L.JiraLinearMappingFragment);
2709
+ /** Whether the sync for this mapping is bidirectional. */
2710
+ bidirectional?: boolean;
2692
2711
  /** The Jira id for this project. */
2693
2712
  jiraProjectId: string;
2694
2713
  /** The Linear team id to map to the given project. */