graphlit-client 1.0.20250301001 → 1.0.20250301002

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
@@ -82,6 +82,11 @@ declare class Graphlit {
82
82
  continueConversation(id: string, responses: [Types.ConversationToolResponseInput], correlationId?: string): Promise<Types.ContinueConversationMutation>;
83
83
  publishConversation(id: string, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput, isSynchronous?: boolean, correlationId?: string): Promise<Types.PublishConversationMutation>;
84
84
  suggestConversation(id: string, count?: number, correlationId?: string): Promise<Types.SuggestConversationMutation>;
85
+ queryOneDriveFolders(properties: Types.OneDriveFoldersInput, folderId?: string): Promise<Types.QueryOneDriveFoldersQuery>;
86
+ querySharePointFolders(properties: Types.SharePointFoldersInput, libraryId: string, folderId?: string): Promise<Types.QuerySharePointFoldersQuery>;
87
+ querySharePointLibraries(properties: Types.SharePointLibrariesInput): Promise<Types.QuerySharePointLibrariesQuery>;
88
+ queryMicrosoftTeamsTeams(properties: Types.MicrosoftTeamsTeamsInput): Promise<Types.QueryMicrosoftTeamsTeamsQuery>;
89
+ queryMicrosoftTeamsChannels(properties: Types.MicrosoftTeamsChannelsInput, teamId: string): Promise<Types.QueryMicrosoftTeamsChannelsQuery>;
85
90
  querySlackChannels(properties: Types.SlackChannelsInput): Promise<Types.QuerySlackChannelsQuery>;
86
91
  createFeed(feed: Types.FeedInput, correlationId?: string): Promise<Types.CreateFeedMutation>;
87
92
  updateFeed(feed: Types.FeedUpdateInput): Promise<Types.UpdateFeedMutation>;
package/dist/client.js CHANGED
@@ -468,6 +468,31 @@ class Graphlit {
468
468
  return this.mutateAndCheckError(Documents.SuggestConversation, { id: id, count: count, correlationId: correlationId });
469
469
  });
470
470
  }
471
+ queryOneDriveFolders(properties, folderId) {
472
+ return __awaiter(this, void 0, void 0, function* () {
473
+ return this.queryAndCheckError(Documents.QueryOneDriveFolders, { properties: properties, folderId: folderId });
474
+ });
475
+ }
476
+ querySharePointFolders(properties, libraryId, folderId) {
477
+ return __awaiter(this, void 0, void 0, function* () {
478
+ return this.queryAndCheckError(Documents.QuerySharePointFolders, { properties: properties, libraryId: libraryId, folderId: folderId });
479
+ });
480
+ }
481
+ querySharePointLibraries(properties) {
482
+ return __awaiter(this, void 0, void 0, function* () {
483
+ return this.queryAndCheckError(Documents.QuerySharePointLibraries, { properties: properties });
484
+ });
485
+ }
486
+ queryMicrosoftTeamsTeams(properties) {
487
+ return __awaiter(this, void 0, void 0, function* () {
488
+ return this.queryAndCheckError(Documents.QueryMicrosoftTeamsTeams, { properties: properties });
489
+ });
490
+ }
491
+ queryMicrosoftTeamsChannels(properties, teamId) {
492
+ return __awaiter(this, void 0, void 0, function* () {
493
+ return this.queryAndCheckError(Documents.QueryMicrosoftTeamsChannels, { properties: properties, teamId: teamId });
494
+ });
495
+ }
471
496
  querySlackChannels(properties) {
472
497
  return __awaiter(this, void 0, void 0, function* () {
473
498
  return this.queryAndCheckError(Documents.QuerySlackChannels, { properties: properties });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250301001",
3
+ "version": "1.0.20250301002",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",