@linear/sdk 2.5.0 → 2.6.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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1b163bc: feat(schema): [non_breaking] Field 'trialEndsAt' was added to object type 'Organization' (Organization.trialEndsAt)
8
+
9
+ feat(schema): [non_breaking] Type for argument 'query' on field 'Query.issueSearch' changed from 'String!' to 'String' (Query.issueSearch.query)
10
+
11
+ - 3b08e37: Make webhooks timestamp check optional
12
+
13
+ ### Patch Changes
14
+
15
+ - 658d50f: chore(deps): update dependency patch versions
16
+
3
17
  ## 2.5.0
4
18
 
5
19
  ### Minor Changes
@@ -4283,6 +4283,8 @@ export declare type Organization = Node & {
4283
4283
  teams: TeamConnection;
4284
4284
  /** Templates associated with the organization. */
4285
4285
  templates: TemplateConnection;
4286
+ /** The time at which the trial of the plus plan will end. */
4287
+ trialEndsAt?: Maybe<Scalars["DateTime"]>;
4286
4288
  /**
4287
4289
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
4288
4290
  * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
@@ -5704,7 +5706,7 @@ export declare type QueryIssueSearchArgs = {
5704
5706
  includeArchived?: Maybe<Scalars["Boolean"]>;
5705
5707
  last?: Maybe<Scalars["Int"]>;
5706
5708
  orderBy?: Maybe<PaginationOrderBy>;
5707
- query: Scalars["String"];
5709
+ query?: Maybe<Scalars["String"]>;
5708
5710
  };
5709
5711
  export declare type QueryIssueVcsBranchSearchArgs = {
5710
5712
  branchName: Scalars["String"];
@@ -8259,7 +8261,7 @@ export declare type OauthClientApprovalNotificationFragment = {
8259
8261
  };
8260
8262
  export declare type OrganizationFragment = {
8261
8263
  __typename: "Organization";
8262
- } & Pick<Organization, "allowedAuthServices" | "gitBranchFormat" | "userCount" | "createdIssueCount" | "previousUrlKeys" | "periodUploadVolume" | "projectUpdateRemindersHour" | "updatedAt" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "archivedAt" | "createdAt" | "id" | "samlEnabled" | "scimEnabled" | "gitLinkbackMessagesEnabled" | "gitPublicLinkbackMessagesEnabled" | "roadmapEnabled"> & {
8264
+ } & Pick<Organization, "allowedAuthServices" | "gitBranchFormat" | "userCount" | "createdIssueCount" | "previousUrlKeys" | "periodUploadVolume" | "projectUpdateRemindersHour" | "updatedAt" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "archivedAt" | "createdAt" | "trialEndsAt" | "id" | "samlEnabled" | "scimEnabled" | "gitLinkbackMessagesEnabled" | "gitPublicLinkbackMessagesEnabled" | "roadmapEnabled"> & {
8263
8265
  subscription?: Maybe<{
8264
8266
  __typename?: "PaidSubscription";
8265
8267
  } & PaidSubscriptionFragment>;