graphlit-client 1.0.20250306001 → 1.0.20250306002

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/client.d.ts CHANGED
@@ -88,6 +88,7 @@ declare class Graphlit {
88
88
  queryMicrosoftTeamsTeams(properties: Types.MicrosoftTeamsTeamsInput): Promise<Types.QueryMicrosoftTeamsTeamsQuery>;
89
89
  queryMicrosoftTeamsChannels(properties: Types.MicrosoftTeamsChannelsInput, teamId: string): Promise<Types.QueryMicrosoftTeamsChannelsQuery>;
90
90
  querySlackChannels(properties: Types.SlackChannelsInput): Promise<Types.QuerySlackChannelsQuery>;
91
+ queryLinearProjects(properties: Types.LinearProjectsInput): Promise<Types.QueryLinearProjectsQuery>;
91
92
  createFeed(feed: Types.FeedInput, correlationId?: string): Promise<Types.CreateFeedMutation>;
92
93
  updateFeed(feed: Types.FeedUpdateInput): Promise<Types.UpdateFeedMutation>;
93
94
  deleteFeed(id: string): Promise<Types.DeleteFeedMutation>;
package/dist/client.js CHANGED
@@ -498,6 +498,11 @@ class Graphlit {
498
498
  return this.queryAndCheckError(Documents.QuerySlackChannels, { properties: properties });
499
499
  });
500
500
  }
501
+ queryLinearProjects(properties) {
502
+ return __awaiter(this, void 0, void 0, function* () {
503
+ return this.queryAndCheckError(Documents.QueryLinearProjects, { properties: properties });
504
+ });
505
+ }
501
506
  createFeed(feed, correlationId) {
502
507
  return __awaiter(this, void 0, void 0, function* () {
503
508
  return this.mutateAndCheckError(Documents.CreateFeed, { feed: feed, correlationId: correlationId });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250306001",
3
+ "version": "1.0.20250306002",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",