graphlit-client 1.0.20260113001__py3-none-any.whl → 1.0.20260129001__py3-none-any.whl
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.
- graphlit_api/__init__.py +268 -0
- graphlit_api/client.py +172 -0
- graphlit_api/create_workflow.py +13 -0
- graphlit_api/enums.py +1199 -1118
- graphlit_api/get_conversation.py +20 -0
- graphlit_api/get_feed.py +166 -0
- graphlit_api/get_specification.py +2 -0
- graphlit_api/get_workflow.py +13 -0
- graphlit_api/input_types.py +4165 -3767
- graphlit_api/operations.py +398 -0
- graphlit_api/query_asana_projects.py +21 -0
- graphlit_api/query_asana_workspaces.py +21 -0
- graphlit_api/query_bamboo_hr_departments.py +29 -0
- graphlit_api/query_bamboo_hr_divisions.py +27 -0
- graphlit_api/query_bamboo_hr_employment_statuses.py +31 -0
- graphlit_api/query_bamboo_hr_locations.py +27 -0
- graphlit_api/query_confluence_spaces.py +28 -0
- graphlit_api/query_conversations.py +22 -0
- graphlit_api/query_feeds.py +166 -0
- graphlit_api/query_gusto_companies.py +28 -0
- graphlit_api/query_gusto_departments.py +27 -0
- graphlit_api/query_gusto_locations.py +32 -0
- graphlit_api/query_monday_boards.py +21 -0
- graphlit_api/query_specifications.py +2 -0
- graphlit_api/query_workflows.py +13 -0
- graphlit_api/update_workflow.py +13 -0
- graphlit_api/upsert_workflow.py +13 -0
- {graphlit_client-1.0.20260113001.dist-info → graphlit_client-1.0.20260129001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20260113001.dist-info → graphlit_client-1.0.20260129001.dist-info}/RECORD +32 -21
- {graphlit_client-1.0.20260113001.dist-info → graphlit_client-1.0.20260129001.dist-info}/WHEEL +1 -1
- {graphlit_client-1.0.20260113001.dist-info → graphlit_client-1.0.20260129001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20260113001.dist-info → graphlit_client-1.0.20260129001.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
|
@@ -334,6 +334,7 @@ from .create_workflow import (
|
|
|
334
334
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorAzureDocument,
|
|
335
335
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorDeepgram,
|
|
336
336
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorDocument,
|
|
337
|
+
CreateWorkflowCreateWorkflowPreparationJobsConnectorElevenLabsScribe,
|
|
337
338
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorEmail,
|
|
338
339
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorMistral,
|
|
339
340
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorModelDocument,
|
|
@@ -628,12 +629,14 @@ from .enums import (
|
|
|
628
629
|
AnthropicModels,
|
|
629
630
|
ApplyPolicy,
|
|
630
631
|
ArcadeProviders,
|
|
632
|
+
AsanaAuthenticationTypes,
|
|
631
633
|
AssemblyAIModels,
|
|
632
634
|
AttioAuthenticationTypes,
|
|
633
635
|
AuthenticationServiceTypes,
|
|
634
636
|
AzureDocumentIntelligenceModels,
|
|
635
637
|
AzureDocumentIntelligenceVersions,
|
|
636
638
|
AzureOpenAIModels,
|
|
639
|
+
BambooHRAuthenticationTypes,
|
|
637
640
|
BedrockModels,
|
|
638
641
|
BillableMetrics,
|
|
639
642
|
BlobListingTypes,
|
|
@@ -648,6 +651,7 @@ from .enums import (
|
|
|
648
651
|
CerebrasModels,
|
|
649
652
|
CohereModels,
|
|
650
653
|
CollectionTypes,
|
|
654
|
+
ConfluenceTypes,
|
|
651
655
|
ConnectorTypes,
|
|
652
656
|
ContentClassificationServiceTypes,
|
|
653
657
|
ContentFacetTypes,
|
|
@@ -665,6 +669,7 @@ from .enums import (
|
|
|
665
669
|
DeviceTypes,
|
|
666
670
|
DropboxAuthenticationTypes,
|
|
667
671
|
ElevenLabsModels,
|
|
672
|
+
ElevenLabsScribeModels,
|
|
668
673
|
EmailListingTypes,
|
|
669
674
|
EmbeddingTypes,
|
|
670
675
|
EntityEnrichmentServiceTypes,
|
|
@@ -696,11 +701,17 @@ from .enums import (
|
|
|
696
701
|
GoogleEmailAuthenticationTypes,
|
|
697
702
|
GoogleImageModels,
|
|
698
703
|
GoogleModels,
|
|
704
|
+
GoogleThinkingLevels,
|
|
699
705
|
GraphStrategyTypes,
|
|
700
706
|
GroqModels,
|
|
707
|
+
GustoAuthenticationTypes,
|
|
701
708
|
H3ResolutionTypes,
|
|
709
|
+
HubSpotAuthenticationTypes,
|
|
710
|
+
HubSpotFeedAuthenticationTypes,
|
|
711
|
+
HubSpotIssueAuthenticationTypes,
|
|
702
712
|
ImageProjectionTypes,
|
|
703
713
|
IntegrationServiceTypes,
|
|
714
|
+
IntercomConversationsAuthenticationTypes,
|
|
704
715
|
InvestmentFacetTypes,
|
|
705
716
|
InvestmentFundFacetTypes,
|
|
706
717
|
JinaModels,
|
|
@@ -1061,6 +1072,8 @@ from .get_conversation import (
|
|
|
1061
1072
|
GetConversationConversationMessagesToolCalls,
|
|
1062
1073
|
GetConversationConversationOwner,
|
|
1063
1074
|
GetConversationConversationSpecification,
|
|
1075
|
+
GetConversationConversationTurns,
|
|
1076
|
+
GetConversationConversationTurnsMessages,
|
|
1064
1077
|
)
|
|
1065
1078
|
from .get_event import (
|
|
1066
1079
|
GetEvent,
|
|
@@ -1097,10 +1110,13 @@ from .get_feed import (
|
|
|
1097
1110
|
GetFeedFeedCommit,
|
|
1098
1111
|
GetFeedFeedCommitGithub,
|
|
1099
1112
|
GetFeedFeedCommitGithubConnector,
|
|
1113
|
+
GetFeedFeedConfluence,
|
|
1100
1114
|
GetFeedFeedCrm,
|
|
1101
1115
|
GetFeedFeedCrmAttio,
|
|
1102
1116
|
GetFeedFeedCrmGoogleContacts,
|
|
1103
1117
|
GetFeedFeedCrmGoogleContactsConnector,
|
|
1118
|
+
GetFeedFeedCrmHubSpot,
|
|
1119
|
+
GetFeedFeedCrmHubSpotConnector,
|
|
1104
1120
|
GetFeedFeedCrmMicrosoftContacts,
|
|
1105
1121
|
GetFeedFeedCrmMicrosoftContactsConnector,
|
|
1106
1122
|
GetFeedFeedCrmSalesforce,
|
|
@@ -1113,14 +1129,25 @@ from .get_feed import (
|
|
|
1113
1129
|
GetFeedFeedEmailMicrosoftConnector,
|
|
1114
1130
|
GetFeedFeedEntity,
|
|
1115
1131
|
GetFeedFeedEntityParallel,
|
|
1132
|
+
GetFeedFeedHris,
|
|
1133
|
+
GetFeedFeedHrisBambooHr,
|
|
1134
|
+
GetFeedFeedHrisGusto,
|
|
1135
|
+
GetFeedFeedHubSpotConversations,
|
|
1136
|
+
GetFeedFeedHubSpotConversationsConnector,
|
|
1116
1137
|
GetFeedFeedIntercom,
|
|
1138
|
+
GetFeedFeedIntercomConversations,
|
|
1139
|
+
GetFeedFeedIntercomConversationsConnector,
|
|
1117
1140
|
GetFeedFeedIssue,
|
|
1141
|
+
GetFeedFeedIssueAsana,
|
|
1118
1142
|
GetFeedFeedIssueAttio,
|
|
1119
1143
|
GetFeedFeedIssueGithub,
|
|
1120
1144
|
GetFeedFeedIssueGithubConnector,
|
|
1145
|
+
GetFeedFeedIssueHubSpot,
|
|
1146
|
+
GetFeedFeedIssueHubSpotConnector,
|
|
1121
1147
|
GetFeedFeedIssueIntercom,
|
|
1122
1148
|
GetFeedFeedIssueJira,
|
|
1123
1149
|
GetFeedFeedIssueLinear,
|
|
1150
|
+
GetFeedFeedIssueMonday,
|
|
1124
1151
|
GetFeedFeedIssueSalesforce,
|
|
1125
1152
|
GetFeedFeedIssueSalesforceConnector,
|
|
1126
1153
|
GetFeedFeedIssueTrello,
|
|
@@ -1129,6 +1156,9 @@ from .get_feed import (
|
|
|
1129
1156
|
GetFeedFeedMeetingAttio,
|
|
1130
1157
|
GetFeedFeedMeetingFathom,
|
|
1131
1158
|
GetFeedFeedMeetingFireflies,
|
|
1159
|
+
GetFeedFeedMeetingHubSpot,
|
|
1160
|
+
GetFeedFeedMeetingHubSpotConnector,
|
|
1161
|
+
GetFeedFeedMeetingKrisp,
|
|
1132
1162
|
GetFeedFeedMicrosoftTeams,
|
|
1133
1163
|
GetFeedFeedMicrosoftTeamsConnector,
|
|
1134
1164
|
GetFeedFeedNotion,
|
|
@@ -1569,6 +1599,7 @@ from .get_workflow import (
|
|
|
1569
1599
|
GetWorkflowWorkflowPreparationJobsConnectorAzureDocument,
|
|
1570
1600
|
GetWorkflowWorkflowPreparationJobsConnectorDeepgram,
|
|
1571
1601
|
GetWorkflowWorkflowPreparationJobsConnectorDocument,
|
|
1602
|
+
GetWorkflowWorkflowPreparationJobsConnectorElevenLabsScribe,
|
|
1572
1603
|
GetWorkflowWorkflowPreparationJobsConnectorEmail,
|
|
1573
1604
|
GetWorkflowWorkflowPreparationJobsConnectorMistral,
|
|
1574
1605
|
GetWorkflowWorkflowPreparationJobsConnectorModelDocument,
|
|
@@ -1665,6 +1696,10 @@ from .input_types import (
|
|
|
1665
1696
|
AnthropicModelPropertiesInput,
|
|
1666
1697
|
AnthropicModelPropertiesUpdateInput,
|
|
1667
1698
|
ArcadeAuthenticationPropertiesInput,
|
|
1699
|
+
AsanaFeedPropertiesInput,
|
|
1700
|
+
AsanaFeedPropertiesUpdateInput,
|
|
1701
|
+
AsanaProjectsInput,
|
|
1702
|
+
AsanaWorkspacesInput,
|
|
1668
1703
|
AssemblyAIAudioPreparationPropertiesInput,
|
|
1669
1704
|
AtlassianJiraFeedPropertiesInput,
|
|
1670
1705
|
AtlassianJiraFeedPropertiesUpdateInput,
|
|
@@ -1689,6 +1724,9 @@ from .input_types import (
|
|
|
1689
1724
|
AzureOpenAIModelPropertiesInput,
|
|
1690
1725
|
AzureOpenAIModelPropertiesUpdateInput,
|
|
1691
1726
|
AzureTextExtractionPropertiesInput,
|
|
1727
|
+
BambooHRHRISFeedPropertiesInput,
|
|
1728
|
+
BambooHRHRISFeedPropertiesUpdateInput,
|
|
1729
|
+
BambooHROptionsInput,
|
|
1692
1730
|
BedrockModelPropertiesInput,
|
|
1693
1731
|
BedrockModelPropertiesUpdateInput,
|
|
1694
1732
|
BoundingBoxInput,
|
|
@@ -1715,6 +1753,9 @@ from .input_types import (
|
|
|
1715
1753
|
CollectionUpdateInput,
|
|
1716
1754
|
CommitFeedPropertiesInput,
|
|
1717
1755
|
CommitFeedPropertiesUpdateInput,
|
|
1756
|
+
ConfluenceFeedPropertiesInput,
|
|
1757
|
+
ConfluenceFeedPropertiesUpdateInput,
|
|
1758
|
+
ConfluenceSpacesInput,
|
|
1718
1759
|
ConnectorFilter,
|
|
1719
1760
|
ConnectorInput,
|
|
1720
1761
|
ConnectorUpdateInput,
|
|
@@ -1757,6 +1798,7 @@ from .input_types import (
|
|
|
1757
1798
|
DropboxFeedPropertiesUpdateInput,
|
|
1758
1799
|
DropboxFoldersInput,
|
|
1759
1800
|
ElevenLabsPublishingPropertiesInput,
|
|
1801
|
+
ElevenLabsScribeAudioPreparationPropertiesInput,
|
|
1760
1802
|
EmailFeedPropertiesInput,
|
|
1761
1803
|
EmailFeedPropertiesUpdateInput,
|
|
1762
1804
|
EmailIntegrationPropertiesInput,
|
|
@@ -1830,8 +1872,22 @@ from .input_types import (
|
|
|
1830
1872
|
GraphStrategyUpdateInput,
|
|
1831
1873
|
GroqModelPropertiesInput,
|
|
1832
1874
|
GroqModelPropertiesUpdateInput,
|
|
1875
|
+
GustoCompaniesInput,
|
|
1876
|
+
GustoHRISFeedPropertiesInput,
|
|
1877
|
+
GustoHRISFeedPropertiesUpdateInput,
|
|
1878
|
+
GustoOptionsInput,
|
|
1833
1879
|
H3Filter,
|
|
1834
1880
|
H3IndexFilter,
|
|
1881
|
+
HRISFeedPropertiesInput,
|
|
1882
|
+
HRISFeedPropertiesUpdateInput,
|
|
1883
|
+
HubSpotConversationsFeedPropertiesInput,
|
|
1884
|
+
HubSpotConversationsFeedPropertiesUpdateInput,
|
|
1885
|
+
HubSpotCRMFeedPropertiesInput,
|
|
1886
|
+
HubSpotCRMFeedPropertiesUpdateInput,
|
|
1887
|
+
HubSpotMeetingPropertiesInput,
|
|
1888
|
+
HubSpotMeetingPropertiesUpdateInput,
|
|
1889
|
+
HubSpotTasksFeedPropertiesInput,
|
|
1890
|
+
HubSpotTasksFeedPropertiesUpdateInput,
|
|
1835
1891
|
ImageMetadataInput,
|
|
1836
1892
|
IndexingWorkflowJobInput,
|
|
1837
1893
|
IndexingWorkflowStageInput,
|
|
@@ -1841,6 +1897,8 @@ from .input_types import (
|
|
|
1841
1897
|
Int64RangeInput,
|
|
1842
1898
|
IntegrationConnectorInput,
|
|
1843
1899
|
IntegrationConnectorUpdateInput,
|
|
1900
|
+
IntercomConversationsFeedPropertiesInput,
|
|
1901
|
+
IntercomConversationsFeedPropertiesUpdateInput,
|
|
1844
1902
|
IntercomFeedPropertiesInput,
|
|
1845
1903
|
IntercomFeedPropertiesUpdateInput,
|
|
1846
1904
|
IntercomTicketsFeedPropertiesInput,
|
|
@@ -1858,6 +1916,8 @@ from .input_types import (
|
|
|
1858
1916
|
IssueMetadataInput,
|
|
1859
1917
|
JinaModelPropertiesInput,
|
|
1860
1918
|
JinaModelPropertiesUpdateInput,
|
|
1919
|
+
KrispPropertiesInput,
|
|
1920
|
+
KrispPropertiesUpdateInput,
|
|
1861
1921
|
LabelFacetInput,
|
|
1862
1922
|
LabelFilter,
|
|
1863
1923
|
LabelInput,
|
|
@@ -1941,6 +2001,9 @@ from .input_types import (
|
|
|
1941
2001
|
ModelFilter,
|
|
1942
2002
|
ModelImageExtractionPropertiesInput,
|
|
1943
2003
|
ModelTextExtractionPropertiesInput,
|
|
2004
|
+
MondayBoardsInput,
|
|
2005
|
+
MondayFeedPropertiesInput,
|
|
2006
|
+
MondayFeedPropertiesUpdateInput,
|
|
1944
2007
|
NamedEntityReferenceInput,
|
|
1945
2008
|
NotionDatabasesInput,
|
|
1946
2009
|
NotionFeedPropertiesInput,
|
|
@@ -2403,9 +2466,16 @@ from .operations import (
|
|
|
2403
2466
|
PUBLISH_CONVERSATION_GQL,
|
|
2404
2467
|
PUBLISH_TEXT_GQL,
|
|
2405
2468
|
QUERY_ALERTS_GQL,
|
|
2469
|
+
QUERY_ASANA_PROJECTS_GQL,
|
|
2470
|
+
QUERY_ASANA_WORKSPACES_GQL,
|
|
2471
|
+
QUERY_BAMBOO_HR_DEPARTMENTS_GQL,
|
|
2472
|
+
QUERY_BAMBOO_HR_DIVISIONS_GQL,
|
|
2473
|
+
QUERY_BAMBOO_HR_EMPLOYMENT_STATUSES_GQL,
|
|
2474
|
+
QUERY_BAMBOO_HR_LOCATIONS_GQL,
|
|
2406
2475
|
QUERY_BOX_FOLDERS_GQL,
|
|
2407
2476
|
QUERY_CATEGORIES_GQL,
|
|
2408
2477
|
QUERY_COLLECTIONS_GQL,
|
|
2478
|
+
QUERY_CONFLUENCE_SPACES_GQL,
|
|
2409
2479
|
QUERY_CONNECTORS_GQL,
|
|
2410
2480
|
QUERY_CONTENTS_FACETS_GQL,
|
|
2411
2481
|
QUERY_CONTENTS_GQL,
|
|
@@ -2426,6 +2496,9 @@ from .operations import (
|
|
|
2426
2496
|
QUERY_GOOGLE_CALENDARS_GQL,
|
|
2427
2497
|
QUERY_GOOGLE_DRIVE_FOLDERS_GQL,
|
|
2428
2498
|
QUERY_GRAPH_GQL,
|
|
2499
|
+
QUERY_GUSTO_COMPANIES_GQL,
|
|
2500
|
+
QUERY_GUSTO_DEPARTMENTS_GQL,
|
|
2501
|
+
QUERY_GUSTO_LOCATIONS_GQL,
|
|
2429
2502
|
QUERY_INVESTMENT_FUNDS_CLUSTERS_GQL,
|
|
2430
2503
|
QUERY_INVESTMENT_FUNDS_EXPANDED_GQL,
|
|
2431
2504
|
QUERY_INVESTMENT_FUNDS_GQL,
|
|
@@ -2460,6 +2533,7 @@ from .operations import (
|
|
|
2460
2533
|
QUERY_MICROSOFT_TEAMS_CHANNELS_GQL,
|
|
2461
2534
|
QUERY_MICROSOFT_TEAMS_TEAMS_GQL,
|
|
2462
2535
|
QUERY_MODELS_GQL,
|
|
2536
|
+
QUERY_MONDAY_BOARDS_GQL,
|
|
2463
2537
|
QUERY_NOTION_DATABASES_GQL,
|
|
2464
2538
|
QUERY_NOTION_PAGES_GQL,
|
|
2465
2539
|
QUERY_OBSERVABLES_GQL,
|
|
@@ -2691,6 +2765,31 @@ from .query_alerts import (
|
|
|
2691
2765
|
QueryAlertsAlertsResultsSummarySpecification,
|
|
2692
2766
|
QueryAlertsAlertsResultsView,
|
|
2693
2767
|
)
|
|
2768
|
+
from .query_asana_projects import QueryAsanaProjects, QueryAsanaProjectsAsanaProjects
|
|
2769
|
+
from .query_asana_workspaces import (
|
|
2770
|
+
QueryAsanaWorkspaces,
|
|
2771
|
+
QueryAsanaWorkspacesAsanaWorkspaces,
|
|
2772
|
+
)
|
|
2773
|
+
from .query_bamboo_hr_departments import (
|
|
2774
|
+
QueryBambooHRDepartments,
|
|
2775
|
+
QueryBambooHRDepartmentsBambooHrDepartments,
|
|
2776
|
+
QueryBambooHRDepartmentsBambooHrDepartmentsResults,
|
|
2777
|
+
)
|
|
2778
|
+
from .query_bamboo_hr_divisions import (
|
|
2779
|
+
QueryBambooHRDivisions,
|
|
2780
|
+
QueryBambooHRDivisionsBambooHrDivisions,
|
|
2781
|
+
QueryBambooHRDivisionsBambooHrDivisionsResults,
|
|
2782
|
+
)
|
|
2783
|
+
from .query_bamboo_hr_employment_statuses import (
|
|
2784
|
+
QueryBambooHREmploymentStatuses,
|
|
2785
|
+
QueryBambooHREmploymentStatusesBambooHrEmploymentStatuses,
|
|
2786
|
+
QueryBambooHREmploymentStatusesBambooHrEmploymentStatusesResults,
|
|
2787
|
+
)
|
|
2788
|
+
from .query_bamboo_hr_locations import (
|
|
2789
|
+
QueryBambooHRLocations,
|
|
2790
|
+
QueryBambooHRLocationsBambooHrLocations,
|
|
2791
|
+
QueryBambooHRLocationsBambooHrLocationsResults,
|
|
2792
|
+
)
|
|
2694
2793
|
from .query_box_folders import (
|
|
2695
2794
|
QueryBoxFolders,
|
|
2696
2795
|
QueryBoxFoldersBoxFolders,
|
|
@@ -2708,6 +2807,11 @@ from .query_collections import (
|
|
|
2708
2807
|
QueryCollectionsCollectionsResults,
|
|
2709
2808
|
QueryCollectionsCollectionsResultsOwner,
|
|
2710
2809
|
)
|
|
2810
|
+
from .query_confluence_spaces import (
|
|
2811
|
+
QueryConfluenceSpaces,
|
|
2812
|
+
QueryConfluenceSpacesConfluenceSpaces,
|
|
2813
|
+
QueryConfluenceSpacesConfluenceSpacesResults,
|
|
2814
|
+
)
|
|
2711
2815
|
from .query_connectors import (
|
|
2712
2816
|
QueryConnectors,
|
|
2713
2817
|
QueryConnectorsConnectors,
|
|
@@ -2905,6 +3009,8 @@ from .query_conversations import (
|
|
|
2905
3009
|
QueryConversationsConversationsResultsMessagesToolCalls,
|
|
2906
3010
|
QueryConversationsConversationsResultsOwner,
|
|
2907
3011
|
QueryConversationsConversationsResultsSpecification,
|
|
3012
|
+
QueryConversationsConversationsResultsTurns,
|
|
3013
|
+
QueryConversationsConversationsResultsTurnsMessages,
|
|
2908
3014
|
)
|
|
2909
3015
|
from .query_credits import QueryCredits, QueryCreditsCredits
|
|
2910
3016
|
from .query_discord_channels import (
|
|
@@ -2997,10 +3103,13 @@ from .query_feeds import (
|
|
|
2997
3103
|
QueryFeedsFeedsResultsCommit,
|
|
2998
3104
|
QueryFeedsFeedsResultsCommitGithub,
|
|
2999
3105
|
QueryFeedsFeedsResultsCommitGithubConnector,
|
|
3106
|
+
QueryFeedsFeedsResultsConfluence,
|
|
3000
3107
|
QueryFeedsFeedsResultsCrm,
|
|
3001
3108
|
QueryFeedsFeedsResultsCrmAttio,
|
|
3002
3109
|
QueryFeedsFeedsResultsCrmGoogleContacts,
|
|
3003
3110
|
QueryFeedsFeedsResultsCrmGoogleContactsConnector,
|
|
3111
|
+
QueryFeedsFeedsResultsCrmHubSpot,
|
|
3112
|
+
QueryFeedsFeedsResultsCrmHubSpotConnector,
|
|
3004
3113
|
QueryFeedsFeedsResultsCrmMicrosoftContacts,
|
|
3005
3114
|
QueryFeedsFeedsResultsCrmMicrosoftContactsConnector,
|
|
3006
3115
|
QueryFeedsFeedsResultsCrmSalesforce,
|
|
@@ -3013,14 +3122,25 @@ from .query_feeds import (
|
|
|
3013
3122
|
QueryFeedsFeedsResultsEmailMicrosoftConnector,
|
|
3014
3123
|
QueryFeedsFeedsResultsEntity,
|
|
3015
3124
|
QueryFeedsFeedsResultsEntityParallel,
|
|
3125
|
+
QueryFeedsFeedsResultsHris,
|
|
3126
|
+
QueryFeedsFeedsResultsHrisBambooHr,
|
|
3127
|
+
QueryFeedsFeedsResultsHrisGusto,
|
|
3128
|
+
QueryFeedsFeedsResultsHubSpotConversations,
|
|
3129
|
+
QueryFeedsFeedsResultsHubSpotConversationsConnector,
|
|
3016
3130
|
QueryFeedsFeedsResultsIntercom,
|
|
3131
|
+
QueryFeedsFeedsResultsIntercomConversations,
|
|
3132
|
+
QueryFeedsFeedsResultsIntercomConversationsConnector,
|
|
3017
3133
|
QueryFeedsFeedsResultsIssue,
|
|
3134
|
+
QueryFeedsFeedsResultsIssueAsana,
|
|
3018
3135
|
QueryFeedsFeedsResultsIssueAttio,
|
|
3019
3136
|
QueryFeedsFeedsResultsIssueGithub,
|
|
3020
3137
|
QueryFeedsFeedsResultsIssueGithubConnector,
|
|
3138
|
+
QueryFeedsFeedsResultsIssueHubSpot,
|
|
3139
|
+
QueryFeedsFeedsResultsIssueHubSpotConnector,
|
|
3021
3140
|
QueryFeedsFeedsResultsIssueIntercom,
|
|
3022
3141
|
QueryFeedsFeedsResultsIssueJira,
|
|
3023
3142
|
QueryFeedsFeedsResultsIssueLinear,
|
|
3143
|
+
QueryFeedsFeedsResultsIssueMonday,
|
|
3024
3144
|
QueryFeedsFeedsResultsIssueSalesforce,
|
|
3025
3145
|
QueryFeedsFeedsResultsIssueSalesforceConnector,
|
|
3026
3146
|
QueryFeedsFeedsResultsIssueTrello,
|
|
@@ -3029,6 +3149,9 @@ from .query_feeds import (
|
|
|
3029
3149
|
QueryFeedsFeedsResultsMeetingAttio,
|
|
3030
3150
|
QueryFeedsFeedsResultsMeetingFathom,
|
|
3031
3151
|
QueryFeedsFeedsResultsMeetingFireflies,
|
|
3152
|
+
QueryFeedsFeedsResultsMeetingHubSpot,
|
|
3153
|
+
QueryFeedsFeedsResultsMeetingHubSpotConnector,
|
|
3154
|
+
QueryFeedsFeedsResultsMeetingKrisp,
|
|
3032
3155
|
QueryFeedsFeedsResultsMicrosoftTeams,
|
|
3033
3156
|
QueryFeedsFeedsResultsMicrosoftTeamsConnector,
|
|
3034
3157
|
QueryFeedsFeedsResultsNotion,
|
|
@@ -3090,6 +3213,21 @@ from .query_graph import (
|
|
|
3090
3213
|
QueryGraphGraphEdges,
|
|
3091
3214
|
QueryGraphGraphNodes,
|
|
3092
3215
|
)
|
|
3216
|
+
from .query_gusto_companies import (
|
|
3217
|
+
QueryGustoCompanies,
|
|
3218
|
+
QueryGustoCompaniesGustoCompanies,
|
|
3219
|
+
QueryGustoCompaniesGustoCompaniesResults,
|
|
3220
|
+
)
|
|
3221
|
+
from .query_gusto_departments import (
|
|
3222
|
+
QueryGustoDepartments,
|
|
3223
|
+
QueryGustoDepartmentsGustoDepartments,
|
|
3224
|
+
QueryGustoDepartmentsGustoDepartmentsResults,
|
|
3225
|
+
)
|
|
3226
|
+
from .query_gusto_locations import (
|
|
3227
|
+
QueryGustoLocations,
|
|
3228
|
+
QueryGustoLocationsGustoLocations,
|
|
3229
|
+
QueryGustoLocationsGustoLocationsResults,
|
|
3230
|
+
)
|
|
3093
3231
|
from .query_investment_funds import (
|
|
3094
3232
|
QueryInvestmentFunds,
|
|
3095
3233
|
QueryInvestmentFundsInvestmentFunds,
|
|
@@ -3483,6 +3621,7 @@ from .query_models import (
|
|
|
3483
3621
|
QueryModelsModelsResultsFeatures,
|
|
3484
3622
|
QueryModelsModelsResultsMetadata,
|
|
3485
3623
|
)
|
|
3624
|
+
from .query_monday_boards import QueryMondayBoards, QueryMondayBoardsMondayBoards
|
|
3486
3625
|
from .query_notion_databases import (
|
|
3487
3626
|
QueryNotionDatabases,
|
|
3488
3627
|
QueryNotionDatabasesNotionDatabases,
|
|
@@ -3888,6 +4027,7 @@ from .query_workflows import (
|
|
|
3888
4027
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorAzureDocument,
|
|
3889
4028
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorDeepgram,
|
|
3890
4029
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorDocument,
|
|
4030
|
+
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorElevenLabsScribe,
|
|
3891
4031
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorEmail,
|
|
3892
4032
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorMistral,
|
|
3893
4033
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorModelDocument,
|
|
@@ -4231,6 +4371,7 @@ from .update_workflow import (
|
|
|
4231
4371
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorAzureDocument,
|
|
4232
4372
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorDeepgram,
|
|
4233
4373
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorDocument,
|
|
4374
|
+
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorElevenLabsScribe,
|
|
4234
4375
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorEmail,
|
|
4235
4376
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorMistral,
|
|
4236
4377
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorModelDocument,
|
|
@@ -4358,6 +4499,7 @@ from .upsert_workflow import (
|
|
|
4358
4499
|
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorAzureDocument,
|
|
4359
4500
|
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDeepgram,
|
|
4360
4501
|
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDocument,
|
|
4502
|
+
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorElevenLabsScribe,
|
|
4361
4503
|
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorEmail,
|
|
4362
4504
|
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorMistral,
|
|
4363
4505
|
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorModelDocument,
|
|
@@ -4399,6 +4541,11 @@ __all__ = [
|
|
|
4399
4541
|
"ApproveContentApproveContent",
|
|
4400
4542
|
"ArcadeAuthenticationPropertiesInput",
|
|
4401
4543
|
"ArcadeProviders",
|
|
4544
|
+
"AsanaAuthenticationTypes",
|
|
4545
|
+
"AsanaFeedPropertiesInput",
|
|
4546
|
+
"AsanaFeedPropertiesUpdateInput",
|
|
4547
|
+
"AsanaProjectsInput",
|
|
4548
|
+
"AsanaWorkspacesInput",
|
|
4402
4549
|
"AskGraphlit",
|
|
4403
4550
|
"AskGraphlitAskGraphlit",
|
|
4404
4551
|
"AskGraphlitAskGraphlitConversation",
|
|
@@ -4442,6 +4589,10 @@ __all__ = [
|
|
|
4442
4589
|
"AzureOpenAIModels",
|
|
4443
4590
|
"AzureTextExtractionPropertiesInput",
|
|
4444
4591
|
"BRANCH_CONVERSATION_GQL",
|
|
4592
|
+
"BambooHRAuthenticationTypes",
|
|
4593
|
+
"BambooHRHRISFeedPropertiesInput",
|
|
4594
|
+
"BambooHRHRISFeedPropertiesUpdateInput",
|
|
4595
|
+
"BambooHROptionsInput",
|
|
4445
4596
|
"BaseModel",
|
|
4446
4597
|
"BedrockModelPropertiesInput",
|
|
4447
4598
|
"BedrockModelPropertiesUpdateInput",
|
|
@@ -4589,6 +4740,10 @@ __all__ = [
|
|
|
4589
4740
|
"CompleteConversationCompleteConversationMessageCitationsContentImage",
|
|
4590
4741
|
"CompleteConversationCompleteConversationMessageCitationsContentVideo",
|
|
4591
4742
|
"CompleteConversationCompleteConversationMessageToolCalls",
|
|
4743
|
+
"ConfluenceFeedPropertiesInput",
|
|
4744
|
+
"ConfluenceFeedPropertiesUpdateInput",
|
|
4745
|
+
"ConfluenceSpacesInput",
|
|
4746
|
+
"ConfluenceTypes",
|
|
4592
4747
|
"ConnectorFilter",
|
|
4593
4748
|
"ConnectorInput",
|
|
4594
4749
|
"ConnectorTypes",
|
|
@@ -4882,6 +5037,7 @@ __all__ = [
|
|
|
4882
5037
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorAzureDocument",
|
|
4883
5038
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorDeepgram",
|
|
4884
5039
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorDocument",
|
|
5040
|
+
"CreateWorkflowCreateWorkflowPreparationJobsConnectorElevenLabsScribe",
|
|
4885
5041
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorEmail",
|
|
4886
5042
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorMistral",
|
|
4887
5043
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorModelDocument",
|
|
@@ -5244,6 +5400,8 @@ __all__ = [
|
|
|
5244
5400
|
"EXTRACT_TEXT_GQL",
|
|
5245
5401
|
"ElevenLabsModels",
|
|
5246
5402
|
"ElevenLabsPublishingPropertiesInput",
|
|
5403
|
+
"ElevenLabsScribeAudioPreparationPropertiesInput",
|
|
5404
|
+
"ElevenLabsScribeModels",
|
|
5247
5405
|
"EmailFeedPropertiesInput",
|
|
5248
5406
|
"EmailFeedPropertiesUpdateInput",
|
|
5249
5407
|
"EmailIntegrationPropertiesInput",
|
|
@@ -5605,6 +5763,8 @@ __all__ = [
|
|
|
5605
5763
|
"GetConversationConversationMessagesToolCalls",
|
|
5606
5764
|
"GetConversationConversationOwner",
|
|
5607
5765
|
"GetConversationConversationSpecification",
|
|
5766
|
+
"GetConversationConversationTurns",
|
|
5767
|
+
"GetConversationConversationTurnsMessages",
|
|
5608
5768
|
"GetEvent",
|
|
5609
5769
|
"GetEventEvent",
|
|
5610
5770
|
"GetEventEventAddress",
|
|
@@ -5635,10 +5795,13 @@ __all__ = [
|
|
|
5635
5795
|
"GetFeedFeedCommit",
|
|
5636
5796
|
"GetFeedFeedCommitGithub",
|
|
5637
5797
|
"GetFeedFeedCommitGithubConnector",
|
|
5798
|
+
"GetFeedFeedConfluence",
|
|
5638
5799
|
"GetFeedFeedCrm",
|
|
5639
5800
|
"GetFeedFeedCrmAttio",
|
|
5640
5801
|
"GetFeedFeedCrmGoogleContacts",
|
|
5641
5802
|
"GetFeedFeedCrmGoogleContactsConnector",
|
|
5803
|
+
"GetFeedFeedCrmHubSpot",
|
|
5804
|
+
"GetFeedFeedCrmHubSpotConnector",
|
|
5642
5805
|
"GetFeedFeedCrmMicrosoftContacts",
|
|
5643
5806
|
"GetFeedFeedCrmMicrosoftContactsConnector",
|
|
5644
5807
|
"GetFeedFeedCrmSalesforce",
|
|
@@ -5651,14 +5814,25 @@ __all__ = [
|
|
|
5651
5814
|
"GetFeedFeedEmailMicrosoftConnector",
|
|
5652
5815
|
"GetFeedFeedEntity",
|
|
5653
5816
|
"GetFeedFeedEntityParallel",
|
|
5817
|
+
"GetFeedFeedHris",
|
|
5818
|
+
"GetFeedFeedHrisBambooHr",
|
|
5819
|
+
"GetFeedFeedHrisGusto",
|
|
5820
|
+
"GetFeedFeedHubSpotConversations",
|
|
5821
|
+
"GetFeedFeedHubSpotConversationsConnector",
|
|
5654
5822
|
"GetFeedFeedIntercom",
|
|
5823
|
+
"GetFeedFeedIntercomConversations",
|
|
5824
|
+
"GetFeedFeedIntercomConversationsConnector",
|
|
5655
5825
|
"GetFeedFeedIssue",
|
|
5826
|
+
"GetFeedFeedIssueAsana",
|
|
5656
5827
|
"GetFeedFeedIssueAttio",
|
|
5657
5828
|
"GetFeedFeedIssueGithub",
|
|
5658
5829
|
"GetFeedFeedIssueGithubConnector",
|
|
5830
|
+
"GetFeedFeedIssueHubSpot",
|
|
5831
|
+
"GetFeedFeedIssueHubSpotConnector",
|
|
5659
5832
|
"GetFeedFeedIssueIntercom",
|
|
5660
5833
|
"GetFeedFeedIssueJira",
|
|
5661
5834
|
"GetFeedFeedIssueLinear",
|
|
5835
|
+
"GetFeedFeedIssueMonday",
|
|
5662
5836
|
"GetFeedFeedIssueSalesforce",
|
|
5663
5837
|
"GetFeedFeedIssueSalesforceConnector",
|
|
5664
5838
|
"GetFeedFeedIssueTrello",
|
|
@@ -5667,6 +5841,9 @@ __all__ = [
|
|
|
5667
5841
|
"GetFeedFeedMeetingAttio",
|
|
5668
5842
|
"GetFeedFeedMeetingFathom",
|
|
5669
5843
|
"GetFeedFeedMeetingFireflies",
|
|
5844
|
+
"GetFeedFeedMeetingHubSpot",
|
|
5845
|
+
"GetFeedFeedMeetingHubSpotConnector",
|
|
5846
|
+
"GetFeedFeedMeetingKrisp",
|
|
5670
5847
|
"GetFeedFeedMicrosoftTeams",
|
|
5671
5848
|
"GetFeedFeedMicrosoftTeamsConnector",
|
|
5672
5849
|
"GetFeedFeedNotion",
|
|
@@ -6057,6 +6234,7 @@ __all__ = [
|
|
|
6057
6234
|
"GetWorkflowWorkflowPreparationJobsConnectorAzureDocument",
|
|
6058
6235
|
"GetWorkflowWorkflowPreparationJobsConnectorDeepgram",
|
|
6059
6236
|
"GetWorkflowWorkflowPreparationJobsConnectorDocument",
|
|
6237
|
+
"GetWorkflowWorkflowPreparationJobsConnectorElevenLabsScribe",
|
|
6060
6238
|
"GetWorkflowWorkflowPreparationJobsConnectorEmail",
|
|
6061
6239
|
"GetWorkflowWorkflowPreparationJobsConnectorMistral",
|
|
6062
6240
|
"GetWorkflowWorkflowPreparationJobsConnectorModelDocument",
|
|
@@ -6106,6 +6284,7 @@ __all__ = [
|
|
|
6106
6284
|
"GoogleModelPropertiesInput",
|
|
6107
6285
|
"GoogleModelPropertiesUpdateInput",
|
|
6108
6286
|
"GoogleModels",
|
|
6287
|
+
"GoogleThinkingLevels",
|
|
6109
6288
|
"GraphFilter",
|
|
6110
6289
|
"GraphInput",
|
|
6111
6290
|
"GraphQLClientError",
|
|
@@ -6119,9 +6298,27 @@ __all__ = [
|
|
|
6119
6298
|
"GroqModelPropertiesInput",
|
|
6120
6299
|
"GroqModelPropertiesUpdateInput",
|
|
6121
6300
|
"GroqModels",
|
|
6301
|
+
"GustoAuthenticationTypes",
|
|
6302
|
+
"GustoCompaniesInput",
|
|
6303
|
+
"GustoHRISFeedPropertiesInput",
|
|
6304
|
+
"GustoHRISFeedPropertiesUpdateInput",
|
|
6305
|
+
"GustoOptionsInput",
|
|
6122
6306
|
"H3Filter",
|
|
6123
6307
|
"H3IndexFilter",
|
|
6124
6308
|
"H3ResolutionTypes",
|
|
6309
|
+
"HRISFeedPropertiesInput",
|
|
6310
|
+
"HRISFeedPropertiesUpdateInput",
|
|
6311
|
+
"HubSpotAuthenticationTypes",
|
|
6312
|
+
"HubSpotCRMFeedPropertiesInput",
|
|
6313
|
+
"HubSpotCRMFeedPropertiesUpdateInput",
|
|
6314
|
+
"HubSpotConversationsFeedPropertiesInput",
|
|
6315
|
+
"HubSpotConversationsFeedPropertiesUpdateInput",
|
|
6316
|
+
"HubSpotFeedAuthenticationTypes",
|
|
6317
|
+
"HubSpotIssueAuthenticationTypes",
|
|
6318
|
+
"HubSpotMeetingPropertiesInput",
|
|
6319
|
+
"HubSpotMeetingPropertiesUpdateInput",
|
|
6320
|
+
"HubSpotTasksFeedPropertiesInput",
|
|
6321
|
+
"HubSpotTasksFeedPropertiesUpdateInput",
|
|
6125
6322
|
"INGEST_BATCH_GQL",
|
|
6126
6323
|
"INGEST_ENCODED_FILE_GQL",
|
|
6127
6324
|
"INGEST_EVENT_GQL",
|
|
@@ -6198,6 +6395,9 @@ __all__ = [
|
|
|
6198
6395
|
"IntegrationConnectorInput",
|
|
6199
6396
|
"IntegrationConnectorUpdateInput",
|
|
6200
6397
|
"IntegrationServiceTypes",
|
|
6398
|
+
"IntercomConversationsAuthenticationTypes",
|
|
6399
|
+
"IntercomConversationsFeedPropertiesInput",
|
|
6400
|
+
"IntercomConversationsFeedPropertiesUpdateInput",
|
|
6201
6401
|
"IntercomFeedPropertiesInput",
|
|
6202
6402
|
"IntercomFeedPropertiesUpdateInput",
|
|
6203
6403
|
"IntercomTicketsFeedPropertiesInput",
|
|
@@ -6222,6 +6422,8 @@ __all__ = [
|
|
|
6222
6422
|
"JinaModelPropertiesInput",
|
|
6223
6423
|
"JinaModelPropertiesUpdateInput",
|
|
6224
6424
|
"JinaModels",
|
|
6425
|
+
"KrispPropertiesInput",
|
|
6426
|
+
"KrispPropertiesUpdateInput",
|
|
6225
6427
|
"LOOKUP_CONTENTS_GQL",
|
|
6226
6428
|
"LOOKUP_CREDITS_GQL",
|
|
6227
6429
|
"LOOKUP_ENTITY_GQL",
|
|
@@ -6404,6 +6606,9 @@ __all__ = [
|
|
|
6404
6606
|
"ModelServiceTypes",
|
|
6405
6607
|
"ModelTextExtractionPropertiesInput",
|
|
6406
6608
|
"ModelTypes",
|
|
6609
|
+
"MondayBoardsInput",
|
|
6610
|
+
"MondayFeedPropertiesInput",
|
|
6611
|
+
"MondayFeedPropertiesUpdateInput",
|
|
6407
6612
|
"NamedEntityReferenceInput",
|
|
6408
6613
|
"NotionDatabasesInput",
|
|
6409
6614
|
"NotionFeedPropertiesInput",
|
|
@@ -6568,9 +6773,16 @@ __all__ = [
|
|
|
6568
6773
|
"PullRequestFeedPropertiesInput",
|
|
6569
6774
|
"PullRequestFeedPropertiesUpdateInput",
|
|
6570
6775
|
"QUERY_ALERTS_GQL",
|
|
6776
|
+
"QUERY_ASANA_PROJECTS_GQL",
|
|
6777
|
+
"QUERY_ASANA_WORKSPACES_GQL",
|
|
6778
|
+
"QUERY_BAMBOO_HR_DEPARTMENTS_GQL",
|
|
6779
|
+
"QUERY_BAMBOO_HR_DIVISIONS_GQL",
|
|
6780
|
+
"QUERY_BAMBOO_HR_EMPLOYMENT_STATUSES_GQL",
|
|
6781
|
+
"QUERY_BAMBOO_HR_LOCATIONS_GQL",
|
|
6571
6782
|
"QUERY_BOX_FOLDERS_GQL",
|
|
6572
6783
|
"QUERY_CATEGORIES_GQL",
|
|
6573
6784
|
"QUERY_COLLECTIONS_GQL",
|
|
6785
|
+
"QUERY_CONFLUENCE_SPACES_GQL",
|
|
6574
6786
|
"QUERY_CONNECTORS_GQL",
|
|
6575
6787
|
"QUERY_CONTENTS_FACETS_GQL",
|
|
6576
6788
|
"QUERY_CONTENTS_GQL",
|
|
@@ -6591,6 +6803,9 @@ __all__ = [
|
|
|
6591
6803
|
"QUERY_GOOGLE_CALENDARS_GQL",
|
|
6592
6804
|
"QUERY_GOOGLE_DRIVE_FOLDERS_GQL",
|
|
6593
6805
|
"QUERY_GRAPH_GQL",
|
|
6806
|
+
"QUERY_GUSTO_COMPANIES_GQL",
|
|
6807
|
+
"QUERY_GUSTO_DEPARTMENTS_GQL",
|
|
6808
|
+
"QUERY_GUSTO_LOCATIONS_GQL",
|
|
6594
6809
|
"QUERY_INVESTMENTS_CLUSTERS_GQL",
|
|
6595
6810
|
"QUERY_INVESTMENTS_EXPANDED_GQL",
|
|
6596
6811
|
"QUERY_INVESTMENTS_GQL",
|
|
@@ -6625,6 +6840,7 @@ __all__ = [
|
|
|
6625
6840
|
"QUERY_MICROSOFT_TEAMS_CHANNELS_GQL",
|
|
6626
6841
|
"QUERY_MICROSOFT_TEAMS_TEAMS_GQL",
|
|
6627
6842
|
"QUERY_MODELS_GQL",
|
|
6843
|
+
"QUERY_MONDAY_BOARDS_GQL",
|
|
6628
6844
|
"QUERY_NOTION_DATABASES_GQL",
|
|
6629
6845
|
"QUERY_NOTION_PAGES_GQL",
|
|
6630
6846
|
"QUERY_OBSERVABLES_GQL",
|
|
@@ -6700,6 +6916,22 @@ __all__ = [
|
|
|
6700
6916
|
"QueryAlertsAlertsResultsSchedulePolicy",
|
|
6701
6917
|
"QueryAlertsAlertsResultsSummarySpecification",
|
|
6702
6918
|
"QueryAlertsAlertsResultsView",
|
|
6919
|
+
"QueryAsanaProjects",
|
|
6920
|
+
"QueryAsanaProjectsAsanaProjects",
|
|
6921
|
+
"QueryAsanaWorkspaces",
|
|
6922
|
+
"QueryAsanaWorkspacesAsanaWorkspaces",
|
|
6923
|
+
"QueryBambooHRDepartments",
|
|
6924
|
+
"QueryBambooHRDepartmentsBambooHrDepartments",
|
|
6925
|
+
"QueryBambooHRDepartmentsBambooHrDepartmentsResults",
|
|
6926
|
+
"QueryBambooHRDivisions",
|
|
6927
|
+
"QueryBambooHRDivisionsBambooHrDivisions",
|
|
6928
|
+
"QueryBambooHRDivisionsBambooHrDivisionsResults",
|
|
6929
|
+
"QueryBambooHREmploymentStatuses",
|
|
6930
|
+
"QueryBambooHREmploymentStatusesBambooHrEmploymentStatuses",
|
|
6931
|
+
"QueryBambooHREmploymentStatusesBambooHrEmploymentStatusesResults",
|
|
6932
|
+
"QueryBambooHRLocations",
|
|
6933
|
+
"QueryBambooHRLocationsBambooHrLocations",
|
|
6934
|
+
"QueryBambooHRLocationsBambooHrLocationsResults",
|
|
6703
6935
|
"QueryBoxFolders",
|
|
6704
6936
|
"QueryBoxFoldersBoxFolders",
|
|
6705
6937
|
"QueryBoxFoldersBoxFoldersResults",
|
|
@@ -6711,6 +6943,9 @@ __all__ = [
|
|
|
6711
6943
|
"QueryCollectionsCollections",
|
|
6712
6944
|
"QueryCollectionsCollectionsResults",
|
|
6713
6945
|
"QueryCollectionsCollectionsResultsOwner",
|
|
6946
|
+
"QueryConfluenceSpaces",
|
|
6947
|
+
"QueryConfluenceSpacesConfluenceSpaces",
|
|
6948
|
+
"QueryConfluenceSpacesConfluenceSpacesResults",
|
|
6714
6949
|
"QueryConnectors",
|
|
6715
6950
|
"QueryConnectorsConnectors",
|
|
6716
6951
|
"QueryConnectorsConnectorsResults",
|
|
@@ -6897,6 +7132,8 @@ __all__ = [
|
|
|
6897
7132
|
"QueryConversationsConversationsResultsMessagesToolCalls",
|
|
6898
7133
|
"QueryConversationsConversationsResultsOwner",
|
|
6899
7134
|
"QueryConversationsConversationsResultsSpecification",
|
|
7135
|
+
"QueryConversationsConversationsResultsTurns",
|
|
7136
|
+
"QueryConversationsConversationsResultsTurnsMessages",
|
|
6900
7137
|
"QueryCredits",
|
|
6901
7138
|
"QueryCreditsCredits",
|
|
6902
7139
|
"QueryDiscordChannels",
|
|
@@ -6972,10 +7209,13 @@ __all__ = [
|
|
|
6972
7209
|
"QueryFeedsFeedsResultsCommit",
|
|
6973
7210
|
"QueryFeedsFeedsResultsCommitGithub",
|
|
6974
7211
|
"QueryFeedsFeedsResultsCommitGithubConnector",
|
|
7212
|
+
"QueryFeedsFeedsResultsConfluence",
|
|
6975
7213
|
"QueryFeedsFeedsResultsCrm",
|
|
6976
7214
|
"QueryFeedsFeedsResultsCrmAttio",
|
|
6977
7215
|
"QueryFeedsFeedsResultsCrmGoogleContacts",
|
|
6978
7216
|
"QueryFeedsFeedsResultsCrmGoogleContactsConnector",
|
|
7217
|
+
"QueryFeedsFeedsResultsCrmHubSpot",
|
|
7218
|
+
"QueryFeedsFeedsResultsCrmHubSpotConnector",
|
|
6979
7219
|
"QueryFeedsFeedsResultsCrmMicrosoftContacts",
|
|
6980
7220
|
"QueryFeedsFeedsResultsCrmMicrosoftContactsConnector",
|
|
6981
7221
|
"QueryFeedsFeedsResultsCrmSalesforce",
|
|
@@ -6988,14 +7228,25 @@ __all__ = [
|
|
|
6988
7228
|
"QueryFeedsFeedsResultsEmailMicrosoftConnector",
|
|
6989
7229
|
"QueryFeedsFeedsResultsEntity",
|
|
6990
7230
|
"QueryFeedsFeedsResultsEntityParallel",
|
|
7231
|
+
"QueryFeedsFeedsResultsHris",
|
|
7232
|
+
"QueryFeedsFeedsResultsHrisBambooHr",
|
|
7233
|
+
"QueryFeedsFeedsResultsHrisGusto",
|
|
7234
|
+
"QueryFeedsFeedsResultsHubSpotConversations",
|
|
7235
|
+
"QueryFeedsFeedsResultsHubSpotConversationsConnector",
|
|
6991
7236
|
"QueryFeedsFeedsResultsIntercom",
|
|
7237
|
+
"QueryFeedsFeedsResultsIntercomConversations",
|
|
7238
|
+
"QueryFeedsFeedsResultsIntercomConversationsConnector",
|
|
6992
7239
|
"QueryFeedsFeedsResultsIssue",
|
|
7240
|
+
"QueryFeedsFeedsResultsIssueAsana",
|
|
6993
7241
|
"QueryFeedsFeedsResultsIssueAttio",
|
|
6994
7242
|
"QueryFeedsFeedsResultsIssueGithub",
|
|
6995
7243
|
"QueryFeedsFeedsResultsIssueGithubConnector",
|
|
7244
|
+
"QueryFeedsFeedsResultsIssueHubSpot",
|
|
7245
|
+
"QueryFeedsFeedsResultsIssueHubSpotConnector",
|
|
6996
7246
|
"QueryFeedsFeedsResultsIssueIntercom",
|
|
6997
7247
|
"QueryFeedsFeedsResultsIssueJira",
|
|
6998
7248
|
"QueryFeedsFeedsResultsIssueLinear",
|
|
7249
|
+
"QueryFeedsFeedsResultsIssueMonday",
|
|
6999
7250
|
"QueryFeedsFeedsResultsIssueSalesforce",
|
|
7000
7251
|
"QueryFeedsFeedsResultsIssueSalesforceConnector",
|
|
7001
7252
|
"QueryFeedsFeedsResultsIssueTrello",
|
|
@@ -7004,6 +7255,9 @@ __all__ = [
|
|
|
7004
7255
|
"QueryFeedsFeedsResultsMeetingAttio",
|
|
7005
7256
|
"QueryFeedsFeedsResultsMeetingFathom",
|
|
7006
7257
|
"QueryFeedsFeedsResultsMeetingFireflies",
|
|
7258
|
+
"QueryFeedsFeedsResultsMeetingHubSpot",
|
|
7259
|
+
"QueryFeedsFeedsResultsMeetingHubSpotConnector",
|
|
7260
|
+
"QueryFeedsFeedsResultsMeetingKrisp",
|
|
7007
7261
|
"QueryFeedsFeedsResultsMicrosoftTeams",
|
|
7008
7262
|
"QueryFeedsFeedsResultsMicrosoftTeamsConnector",
|
|
7009
7263
|
"QueryFeedsFeedsResultsNotion",
|
|
@@ -7056,6 +7310,15 @@ __all__ = [
|
|
|
7056
7310
|
"QueryGraphGraph",
|
|
7057
7311
|
"QueryGraphGraphEdges",
|
|
7058
7312
|
"QueryGraphGraphNodes",
|
|
7313
|
+
"QueryGustoCompanies",
|
|
7314
|
+
"QueryGustoCompaniesGustoCompanies",
|
|
7315
|
+
"QueryGustoCompaniesGustoCompaniesResults",
|
|
7316
|
+
"QueryGustoDepartments",
|
|
7317
|
+
"QueryGustoDepartmentsGustoDepartments",
|
|
7318
|
+
"QueryGustoDepartmentsGustoDepartmentsResults",
|
|
7319
|
+
"QueryGustoLocations",
|
|
7320
|
+
"QueryGustoLocationsGustoLocations",
|
|
7321
|
+
"QueryGustoLocationsGustoLocationsResults",
|
|
7059
7322
|
"QueryInvestmentFunds",
|
|
7060
7323
|
"QueryInvestmentFundsClusters",
|
|
7061
7324
|
"QueryInvestmentFundsClustersInvestmentFunds",
|
|
@@ -7381,6 +7644,8 @@ __all__ = [
|
|
|
7381
7644
|
"QueryModelsModelsResults",
|
|
7382
7645
|
"QueryModelsModelsResultsFeatures",
|
|
7383
7646
|
"QueryModelsModelsResultsMetadata",
|
|
7647
|
+
"QueryMondayBoards",
|
|
7648
|
+
"QueryMondayBoardsMondayBoards",
|
|
7384
7649
|
"QueryNotionDatabases",
|
|
7385
7650
|
"QueryNotionDatabasesNotionDatabases",
|
|
7386
7651
|
"QueryNotionDatabasesNotionDatabasesResults",
|
|
@@ -7742,6 +8007,7 @@ __all__ = [
|
|
|
7742
8007
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorAzureDocument",
|
|
7743
8008
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorDeepgram",
|
|
7744
8009
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorDocument",
|
|
8010
|
+
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorElevenLabsScribe",
|
|
7745
8011
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorEmail",
|
|
7746
8012
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorMistral",
|
|
7747
8013
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorModelDocument",
|
|
@@ -8205,6 +8471,7 @@ __all__ = [
|
|
|
8205
8471
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorAzureDocument",
|
|
8206
8472
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorDeepgram",
|
|
8207
8473
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorDocument",
|
|
8474
|
+
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorElevenLabsScribe",
|
|
8208
8475
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorEmail",
|
|
8209
8476
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorMistral",
|
|
8210
8477
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorModelDocument",
|
|
@@ -8330,6 +8597,7 @@ __all__ = [
|
|
|
8330
8597
|
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorAzureDocument",
|
|
8331
8598
|
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDeepgram",
|
|
8332
8599
|
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDocument",
|
|
8600
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorElevenLabsScribe",
|
|
8333
8601
|
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorEmail",
|
|
8334
8602
|
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorMistral",
|
|
8335
8603
|
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorModelDocument",
|