@linear/sdk 18.1.0 → 19.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.
- package/dist/_generated_documents.d.ts +6 -24
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +10 -30
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/client.d.ts +1 -8
- package/dist/client.d.ts.map +1 -1
- package/dist/index-cjs.js +25 -105
- 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 +26 -105
- 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 +26 -106
- 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
@@ -5056,12 +5056,12 @@ export declare type MutationAttachmentLinkJiraIssueArgs = {
|
|
5056
5056
|
jiraIssueId: Scalars["String"];
|
5057
5057
|
};
|
5058
5058
|
export declare type MutationAttachmentLinkSlackArgs = {
|
5059
|
-
channel
|
5059
|
+
channel?: Maybe<Scalars["String"]>;
|
5060
5060
|
createAsUser?: Maybe<Scalars["String"]>;
|
5061
5061
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
5062
5062
|
id?: Maybe<Scalars["String"]>;
|
5063
5063
|
issueId: Scalars["String"];
|
5064
|
-
latest
|
5064
|
+
latest?: Maybe<Scalars["String"]>;
|
5065
5065
|
title?: Maybe<Scalars["String"]>;
|
5066
5066
|
ts?: Maybe<Scalars["String"]>;
|
5067
5067
|
url: Scalars["String"];
|
@@ -8439,8 +8439,6 @@ export declare type Query = {
|
|
8439
8439
|
organizationInviteDetails: OrganizationInviteDetailsPayload;
|
8440
8440
|
/** All invites for the organization. */
|
8441
8441
|
organizationInvites: OrganizationInviteConnection;
|
8442
|
-
/** Fetch the region for the organization. */
|
8443
|
-
organizationRegion: OrganizationRegionResponse;
|
8444
8442
|
/** One specific project. */
|
8445
8443
|
project: Project;
|
8446
8444
|
/** Suggests filters for a project view based on a text prompt. */
|
@@ -8846,9 +8844,6 @@ export declare type QueryOrganizationInvitesArgs = {
|
|
8846
8844
|
last?: Maybe<Scalars["Int"]>;
|
8847
8845
|
orderBy?: Maybe<PaginationOrderBy>;
|
8848
8846
|
};
|
8849
|
-
export declare type QueryOrganizationRegionArgs = {
|
8850
|
-
id: Scalars["String"];
|
8851
|
-
};
|
8852
8847
|
export declare type QueryProjectArgs = {
|
8853
8848
|
id: Scalars["String"];
|
8854
8849
|
};
|
@@ -15928,16 +15923,6 @@ export declare type OrganizationInvitesQuery = {
|
|
15928
15923
|
__typename?: "OrganizationInviteConnection";
|
15929
15924
|
} & OrganizationInviteConnectionFragment;
|
15930
15925
|
};
|
15931
|
-
export declare type OrganizationRegionQueryVariables = Exact<{
|
15932
|
-
id: Scalars["String"];
|
15933
|
-
}>;
|
15934
|
-
export declare type OrganizationRegionQuery = {
|
15935
|
-
__typename?: "Query";
|
15936
|
-
} & {
|
15937
|
-
organizationRegion: {
|
15938
|
-
__typename?: "OrganizationRegionResponse";
|
15939
|
-
} & OrganizationRegionResponseFragment;
|
15940
|
-
};
|
15941
15926
|
export declare type ProjectQueryVariables = Exact<{
|
15942
15927
|
id: Scalars["String"];
|
15943
15928
|
}>;
|
@@ -17212,12 +17197,12 @@ export declare type AttachmentLinkJiraIssueMutation = {
|
|
17212
17197
|
} & AttachmentPayloadFragment;
|
17213
17198
|
};
|
17214
17199
|
export declare type AttachmentLinkSlackMutationVariables = Exact<{
|
17215
|
-
channel
|
17200
|
+
channel?: Maybe<Scalars["String"]>;
|
17216
17201
|
createAsUser?: Maybe<Scalars["String"]>;
|
17217
17202
|
displayIconUrl?: Maybe<Scalars["String"]>;
|
17218
17203
|
id?: Maybe<Scalars["String"]>;
|
17219
17204
|
issueId: Scalars["String"];
|
17220
|
-
latest
|
17205
|
+
latest?: Maybe<Scalars["String"]>;
|
17221
17206
|
title?: Maybe<Scalars["String"]>;
|
17222
17207
|
ts?: Maybe<Scalars["String"]>;
|
17223
17208
|
url: Scalars["String"];
|
@@ -20205,9 +20190,6 @@ export declare const OrganizationInvitesDocument: DocumentNode<OrganizationInvit
|
|
20205
20190
|
last?: Maybe<number> | undefined;
|
20206
20191
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20207
20192
|
}>>;
|
20208
|
-
export declare const OrganizationRegionDocument: DocumentNode<OrganizationRegionQuery, Exact<{
|
20209
|
-
id: Scalars["String"];
|
20210
|
-
}>>;
|
20211
20193
|
export declare const ProjectDocument: DocumentNode<ProjectQuery, Exact<{
|
20212
20194
|
id: Scalars["String"];
|
20213
20195
|
}>>;
|
@@ -20798,12 +20780,12 @@ export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLin
|
|
20798
20780
|
jiraIssueId: Scalars["String"];
|
20799
20781
|
}>>;
|
20800
20782
|
export declare const AttachmentLinkSlackDocument: DocumentNode<AttachmentLinkSlackMutation, Exact<{
|
20801
|
-
channel
|
20783
|
+
channel?: Maybe<string> | undefined;
|
20802
20784
|
createAsUser?: Maybe<string> | undefined;
|
20803
20785
|
displayIconUrl?: Maybe<string> | undefined;
|
20804
20786
|
id?: Maybe<string> | undefined;
|
20805
20787
|
issueId: Scalars["String"];
|
20806
|
-
latest
|
20788
|
+
latest?: Maybe<string> | undefined;
|
20807
20789
|
title?: Maybe<string> | undefined;
|
20808
20790
|
ts?: Maybe<string> | undefined;
|
20809
20791
|
url: Scalars["String"];
|