@linear/sdk 25.0.0 → 26.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.
@@ -1698,6 +1698,8 @@ export declare type Cycle = Node & {
1698
1698
  completedScopeHistory: Array<Scalars["Float"]>;
1699
1699
  /** The time at which the entity was created. */
1700
1700
  createdAt: Scalars["DateTime"];
1701
+ /** [Internal] The current progress of the cycle. */
1702
+ currentProgress: Scalars["JSONObject"];
1701
1703
  /** The cycle's description. */
1702
1704
  description?: Maybe<Scalars["String"]>;
1703
1705
  /** The end time of the cycle. */
@@ -4423,7 +4425,7 @@ export declare type IssueCollectionFilter = {
4423
4425
  /** Comparator for the collection length. */
4424
4426
  length?: Maybe<NumberComparator>;
4425
4427
  /** Filters that the issue's customer needs must satisfy. */
4426
- needs?: Maybe<CustomerNeedFilter>;
4428
+ needs?: Maybe<CustomerNeedCollectionFilter>;
4427
4429
  /** Comparator for the issues number. */
4428
4430
  number?: Maybe<NumberComparator>;
4429
4431
  /** Compound filters, one of which need to be matched by the issue. */
@@ -4636,7 +4638,7 @@ export declare type IssueFilter = {
4636
4638
  /** Filters that the last applied template must satisfy. */
4637
4639
  lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
4638
4640
  /** Filters that the issue's customer needs must satisfy. */
4639
- needs?: Maybe<CustomerNeedFilter>;
4641
+ needs?: Maybe<CustomerNeedCollectionFilter>;
4640
4642
  /** Comparator for the issues number. */
4641
4643
  number?: Maybe<NumberComparator>;
4642
4644
  /** Compound filters, one of which need to be matched by the issue. */
@@ -7719,7 +7721,7 @@ export declare type NullableIssueFilter = {
7719
7721
  /** Filters that the last applied template must satisfy. */
7720
7722
  lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
7721
7723
  /** Filters that the issue's customer needs must satisfy. */
7722
- needs?: Maybe<CustomerNeedFilter>;
7724
+ needs?: Maybe<CustomerNeedCollectionFilter>;
7723
7725
  /** Filter based on the existence of the relation. */
7724
7726
  null?: Maybe<Scalars["Boolean"]>;
7725
7727
  /** Comparator for the issues number. */
@@ -8825,6 +8827,8 @@ export declare type Project = Node & {
8825
8827
  createdAt: Scalars["DateTime"];
8826
8828
  /** The user who created the project. */
8827
8829
  creator?: Maybe<User>;
8830
+ /** [Internal] The current progress of the project. */
8831
+ currentProgress: Scalars["JSONObject"];
8828
8832
  /** The project's description. */
8829
8833
  description: Scalars["String"];
8830
8834
  /** Documents associated with the project. */
@@ -9661,6 +9665,8 @@ export declare type ProjectSearchResult = Node & {
9661
9665
  createdAt: Scalars["DateTime"];
9662
9666
  /** The user who created the project. */
9663
9667
  creator?: Maybe<User>;
9668
+ /** [Internal] The current progress of the project. */
9669
+ currentProgress: Scalars["JSONObject"];
9664
9670
  /** The project's description. */
9665
9671
  description: Scalars["String"];
9666
9672
  /** Documents associated with the project. */
@@ -11914,6 +11920,8 @@ export declare type Team = Node & {
11914
11920
  color?: Maybe<Scalars["String"]>;
11915
11921
  /** The time at which the entity was created. */
11916
11922
  createdAt: Scalars["DateTime"];
11923
+ /** [Internal] The current progress of the team. */
11924
+ currentProgress: Scalars["JSONObject"];
11917
11925
  /** Calendar feed URL (iCal) for cycles. */
11918
11926
  cycleCalenderUrl: Scalars["String"];
11919
11927
  /** The cooldown time after each cycle in weeks. */
@@ -11998,7 +12006,7 @@ export declare type Team = Node & {
11998
12006
  markedAsDuplicateWorkflowState?: Maybe<WorkflowState>;
11999
12007
  /** Users who are members of this team. */
12000
12008
  members: UserConnection;
12001
- /** The membership of the given user in the team. */
12009
+ /** [ALPHA] The membership of the given user in the team. */
12002
12010
  membership?: Maybe<TeamMembership>;
12003
12011
  /** Memberships associated with the team. For easier access of the same data, use `members` query. */
12004
12012
  memberships: TeamMembershipConnection;
@@ -12125,7 +12133,7 @@ export declare type TeamMembersArgs = {
12125
12133
  };
12126
12134
  /** An organizational unit that contains issues. */
12127
12135
  export declare type TeamMembershipArgs = {
12128
- userId?: Maybe<Scalars["String"]>;
12136
+ userId: Scalars["String"];
12129
12137
  };
12130
12138
  /** An organizational unit that contains issues. */
12131
12139
  export declare type TeamMembershipsArgs = {
@@ -15166,9 +15174,6 @@ export declare type TeamFragment = {
15166
15174
  defaultIssueState?: Maybe<{
15167
15175
  __typename?: "WorkflowState";
15168
15176
  } & Pick<WorkflowState, "id">>;
15169
- membership?: Maybe<{
15170
- __typename?: "TeamMembership";
15171
- } & Pick<TeamMembership, "id">>;
15172
15177
  mergeWorkflowState?: Maybe<{
15173
15178
  __typename?: "WorkflowState";
15174
15179
  } & Pick<WorkflowState, "id">>;