graphlit-client 1.0.20260111002__py3-none-any.whl → 1.0.20260128001__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 +303 -0
- graphlit_api/approve_content.py +23 -0
- graphlit_api/client.py +213 -0
- graphlit_api/create_workflow.py +33 -0
- graphlit_api/enums.py +1186 -1105
- graphlit_api/get_conversation.py +20 -0
- graphlit_api/get_feed.py +139 -0
- graphlit_api/get_specification.py +2 -0
- graphlit_api/get_workflow.py +33 -0
- graphlit_api/input_types.py +4081 -3706
- graphlit_api/operations.py +455 -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 +139 -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 +33 -0
- graphlit_api/reject_content.py +23 -0
- graphlit_api/restart_content.py +23 -0
- graphlit_api/update_workflow.py +33 -0
- graphlit_api/upsert_workflow.py +33 -0
- {graphlit_client-1.0.20260111002.dist-info → graphlit_client-1.0.20260128001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20260111002.dist-info → graphlit_client-1.0.20260128001.dist-info}/RECORD +35 -21
- {graphlit_client-1.0.20260111002.dist-info → graphlit_client-1.0.20260128001.dist-info}/WHEEL +1 -1
- {graphlit_client-1.0.20260111002.dist-info → graphlit_client-1.0.20260128001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20260111002.dist-info → graphlit_client-1.0.20260128001.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
|
@@ -5,6 +5,7 @@ from .add_contents_to_collections import (
|
|
|
5
5
|
AddContentsToCollectionsAddContentsToCollections,
|
|
6
6
|
AddContentsToCollectionsAddContentsToCollectionsContents,
|
|
7
7
|
)
|
|
8
|
+
from .approve_content import ApproveContent, ApproveContentApproveContent
|
|
8
9
|
from .ask_graphlit import (
|
|
9
10
|
AskGraphlit,
|
|
10
11
|
AskGraphlitAskGraphlit,
|
|
@@ -333,6 +334,7 @@ from .create_workflow import (
|
|
|
333
334
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorAzureDocument,
|
|
334
335
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorDeepgram,
|
|
335
336
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorDocument,
|
|
337
|
+
CreateWorkflowCreateWorkflowPreparationJobsConnectorElevenLabsScribe,
|
|
336
338
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorEmail,
|
|
337
339
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorMistral,
|
|
338
340
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorModelDocument,
|
|
@@ -342,6 +344,9 @@ from .create_workflow import (
|
|
|
342
344
|
CreateWorkflowCreateWorkflowPreparationSummarizations,
|
|
343
345
|
CreateWorkflowCreateWorkflowPreparationSummarizationsSpecification,
|
|
344
346
|
CreateWorkflowCreateWorkflowStorage,
|
|
347
|
+
CreateWorkflowCreateWorkflowStorageGate,
|
|
348
|
+
CreateWorkflowCreateWorkflowStorageGateRules,
|
|
349
|
+
CreateWorkflowCreateWorkflowStorageGateSpecification,
|
|
345
350
|
CreateWorkflowCreateWorkflowStoragePolicy,
|
|
346
351
|
)
|
|
347
352
|
from .delete_alert import DeleteAlert, DeleteAlertDeleteAlert
|
|
@@ -624,12 +629,14 @@ from .enums import (
|
|
|
624
629
|
AnthropicModels,
|
|
625
630
|
ApplyPolicy,
|
|
626
631
|
ArcadeProviders,
|
|
632
|
+
AsanaAuthenticationTypes,
|
|
627
633
|
AssemblyAIModels,
|
|
628
634
|
AttioAuthenticationTypes,
|
|
629
635
|
AuthenticationServiceTypes,
|
|
630
636
|
AzureDocumentIntelligenceModels,
|
|
631
637
|
AzureDocumentIntelligenceVersions,
|
|
632
638
|
AzureOpenAIModels,
|
|
639
|
+
BambooHRAuthenticationTypes,
|
|
633
640
|
BedrockModels,
|
|
634
641
|
BillableMetrics,
|
|
635
642
|
BlobListingTypes,
|
|
@@ -644,6 +651,7 @@ from .enums import (
|
|
|
644
651
|
CerebrasModels,
|
|
645
652
|
CohereModels,
|
|
646
653
|
CollectionTypes,
|
|
654
|
+
ConfluenceTypes,
|
|
647
655
|
ConnectorTypes,
|
|
648
656
|
ContentClassificationServiceTypes,
|
|
649
657
|
ContentFacetTypes,
|
|
@@ -661,6 +669,7 @@ from .enums import (
|
|
|
661
669
|
DeviceTypes,
|
|
662
670
|
DropboxAuthenticationTypes,
|
|
663
671
|
ElevenLabsModels,
|
|
672
|
+
ElevenLabsScribeModels,
|
|
664
673
|
EmailListingTypes,
|
|
665
674
|
EmbeddingTypes,
|
|
666
675
|
EntityEnrichmentServiceTypes,
|
|
@@ -692,9 +701,14 @@ from .enums import (
|
|
|
692
701
|
GoogleEmailAuthenticationTypes,
|
|
693
702
|
GoogleImageModels,
|
|
694
703
|
GoogleModels,
|
|
704
|
+
GoogleThinkingLevels,
|
|
695
705
|
GraphStrategyTypes,
|
|
696
706
|
GroqModels,
|
|
707
|
+
GustoAuthenticationTypes,
|
|
697
708
|
H3ResolutionTypes,
|
|
709
|
+
HubSpotAuthenticationTypes,
|
|
710
|
+
HubSpotFeedAuthenticationTypes,
|
|
711
|
+
HubSpotIssueAuthenticationTypes,
|
|
698
712
|
ImageProjectionTypes,
|
|
699
713
|
IntegrationServiceTypes,
|
|
700
714
|
InvestmentFacetTypes,
|
|
@@ -771,6 +785,8 @@ from .enums import (
|
|
|
771
785
|
SlackAuthenticationTypes,
|
|
772
786
|
SoftwareFacetTypes,
|
|
773
787
|
SpecificationTypes,
|
|
788
|
+
StorageGateRejectionActions,
|
|
789
|
+
StorageGateTypes,
|
|
774
790
|
StoragePolicyTypes,
|
|
775
791
|
SummarizationTypes,
|
|
776
792
|
TextRoles,
|
|
@@ -1055,6 +1071,8 @@ from .get_conversation import (
|
|
|
1055
1071
|
GetConversationConversationMessagesToolCalls,
|
|
1056
1072
|
GetConversationConversationOwner,
|
|
1057
1073
|
GetConversationConversationSpecification,
|
|
1074
|
+
GetConversationConversationTurns,
|
|
1075
|
+
GetConversationConversationTurnsMessages,
|
|
1058
1076
|
)
|
|
1059
1077
|
from .get_event import (
|
|
1060
1078
|
GetEvent,
|
|
@@ -1091,10 +1109,12 @@ from .get_feed import (
|
|
|
1091
1109
|
GetFeedFeedCommit,
|
|
1092
1110
|
GetFeedFeedCommitGithub,
|
|
1093
1111
|
GetFeedFeedCommitGithubConnector,
|
|
1112
|
+
GetFeedFeedConfluence,
|
|
1094
1113
|
GetFeedFeedCrm,
|
|
1095
1114
|
GetFeedFeedCrmAttio,
|
|
1096
1115
|
GetFeedFeedCrmGoogleContacts,
|
|
1097
1116
|
GetFeedFeedCrmGoogleContactsConnector,
|
|
1117
|
+
GetFeedFeedCrmHubSpot,
|
|
1098
1118
|
GetFeedFeedCrmMicrosoftContacts,
|
|
1099
1119
|
GetFeedFeedCrmMicrosoftContactsConnector,
|
|
1100
1120
|
GetFeedFeedCrmSalesforce,
|
|
@@ -1107,14 +1127,23 @@ from .get_feed import (
|
|
|
1107
1127
|
GetFeedFeedEmailMicrosoftConnector,
|
|
1108
1128
|
GetFeedFeedEntity,
|
|
1109
1129
|
GetFeedFeedEntityParallel,
|
|
1130
|
+
GetFeedFeedHris,
|
|
1131
|
+
GetFeedFeedHrisBambooHr,
|
|
1132
|
+
GetFeedFeedHrisGusto,
|
|
1133
|
+
GetFeedFeedHubSpotConversations,
|
|
1134
|
+
GetFeedFeedHubSpotConversationsConnector,
|
|
1110
1135
|
GetFeedFeedIntercom,
|
|
1111
1136
|
GetFeedFeedIssue,
|
|
1137
|
+
GetFeedFeedIssueAsana,
|
|
1112
1138
|
GetFeedFeedIssueAttio,
|
|
1113
1139
|
GetFeedFeedIssueGithub,
|
|
1114
1140
|
GetFeedFeedIssueGithubConnector,
|
|
1141
|
+
GetFeedFeedIssueHubSpot,
|
|
1142
|
+
GetFeedFeedIssueHubSpotConnector,
|
|
1115
1143
|
GetFeedFeedIssueIntercom,
|
|
1116
1144
|
GetFeedFeedIssueJira,
|
|
1117
1145
|
GetFeedFeedIssueLinear,
|
|
1146
|
+
GetFeedFeedIssueMonday,
|
|
1118
1147
|
GetFeedFeedIssueSalesforce,
|
|
1119
1148
|
GetFeedFeedIssueSalesforceConnector,
|
|
1120
1149
|
GetFeedFeedIssueTrello,
|
|
@@ -1123,6 +1152,9 @@ from .get_feed import (
|
|
|
1123
1152
|
GetFeedFeedMeetingAttio,
|
|
1124
1153
|
GetFeedFeedMeetingFathom,
|
|
1125
1154
|
GetFeedFeedMeetingFireflies,
|
|
1155
|
+
GetFeedFeedMeetingHubSpot,
|
|
1156
|
+
GetFeedFeedMeetingHubSpotConnector,
|
|
1157
|
+
GetFeedFeedMeetingKrisp,
|
|
1126
1158
|
GetFeedFeedMicrosoftTeams,
|
|
1127
1159
|
GetFeedFeedMicrosoftTeamsConnector,
|
|
1128
1160
|
GetFeedFeedNotion,
|
|
@@ -1563,6 +1595,7 @@ from .get_workflow import (
|
|
|
1563
1595
|
GetWorkflowWorkflowPreparationJobsConnectorAzureDocument,
|
|
1564
1596
|
GetWorkflowWorkflowPreparationJobsConnectorDeepgram,
|
|
1565
1597
|
GetWorkflowWorkflowPreparationJobsConnectorDocument,
|
|
1598
|
+
GetWorkflowWorkflowPreparationJobsConnectorElevenLabsScribe,
|
|
1566
1599
|
GetWorkflowWorkflowPreparationJobsConnectorEmail,
|
|
1567
1600
|
GetWorkflowWorkflowPreparationJobsConnectorMistral,
|
|
1568
1601
|
GetWorkflowWorkflowPreparationJobsConnectorModelDocument,
|
|
@@ -1572,6 +1605,9 @@ from .get_workflow import (
|
|
|
1572
1605
|
GetWorkflowWorkflowPreparationSummarizations,
|
|
1573
1606
|
GetWorkflowWorkflowPreparationSummarizationsSpecification,
|
|
1574
1607
|
GetWorkflowWorkflowStorage,
|
|
1608
|
+
GetWorkflowWorkflowStorageGate,
|
|
1609
|
+
GetWorkflowWorkflowStorageGateRules,
|
|
1610
|
+
GetWorkflowWorkflowStorageGateSpecification,
|
|
1575
1611
|
GetWorkflowWorkflowStoragePolicy,
|
|
1576
1612
|
)
|
|
1577
1613
|
from .ingest_batch import (
|
|
@@ -1656,6 +1692,10 @@ from .input_types import (
|
|
|
1656
1692
|
AnthropicModelPropertiesInput,
|
|
1657
1693
|
AnthropicModelPropertiesUpdateInput,
|
|
1658
1694
|
ArcadeAuthenticationPropertiesInput,
|
|
1695
|
+
AsanaFeedPropertiesInput,
|
|
1696
|
+
AsanaFeedPropertiesUpdateInput,
|
|
1697
|
+
AsanaProjectsInput,
|
|
1698
|
+
AsanaWorkspacesInput,
|
|
1659
1699
|
AssemblyAIAudioPreparationPropertiesInput,
|
|
1660
1700
|
AtlassianJiraFeedPropertiesInput,
|
|
1661
1701
|
AtlassianJiraFeedPropertiesUpdateInput,
|
|
@@ -1680,6 +1720,9 @@ from .input_types import (
|
|
|
1680
1720
|
AzureOpenAIModelPropertiesInput,
|
|
1681
1721
|
AzureOpenAIModelPropertiesUpdateInput,
|
|
1682
1722
|
AzureTextExtractionPropertiesInput,
|
|
1723
|
+
BambooHRHRISFeedPropertiesInput,
|
|
1724
|
+
BambooHRHRISFeedPropertiesUpdateInput,
|
|
1725
|
+
BambooHROptionsInput,
|
|
1683
1726
|
BedrockModelPropertiesInput,
|
|
1684
1727
|
BedrockModelPropertiesUpdateInput,
|
|
1685
1728
|
BoundingBoxInput,
|
|
@@ -1706,6 +1749,9 @@ from .input_types import (
|
|
|
1706
1749
|
CollectionUpdateInput,
|
|
1707
1750
|
CommitFeedPropertiesInput,
|
|
1708
1751
|
CommitFeedPropertiesUpdateInput,
|
|
1752
|
+
ConfluenceFeedPropertiesInput,
|
|
1753
|
+
ConfluenceFeedPropertiesUpdateInput,
|
|
1754
|
+
ConfluenceSpacesInput,
|
|
1709
1755
|
ConnectorFilter,
|
|
1710
1756
|
ConnectorInput,
|
|
1711
1757
|
ConnectorUpdateInput,
|
|
@@ -1748,6 +1794,7 @@ from .input_types import (
|
|
|
1748
1794
|
DropboxFeedPropertiesUpdateInput,
|
|
1749
1795
|
DropboxFoldersInput,
|
|
1750
1796
|
ElevenLabsPublishingPropertiesInput,
|
|
1797
|
+
ElevenLabsScribeAudioPreparationPropertiesInput,
|
|
1751
1798
|
EmailFeedPropertiesInput,
|
|
1752
1799
|
EmailFeedPropertiesUpdateInput,
|
|
1753
1800
|
EmailIntegrationPropertiesInput,
|
|
@@ -1821,8 +1868,22 @@ from .input_types import (
|
|
|
1821
1868
|
GraphStrategyUpdateInput,
|
|
1822
1869
|
GroqModelPropertiesInput,
|
|
1823
1870
|
GroqModelPropertiesUpdateInput,
|
|
1871
|
+
GustoCompaniesInput,
|
|
1872
|
+
GustoHRISFeedPropertiesInput,
|
|
1873
|
+
GustoHRISFeedPropertiesUpdateInput,
|
|
1874
|
+
GustoOptionsInput,
|
|
1824
1875
|
H3Filter,
|
|
1825
1876
|
H3IndexFilter,
|
|
1877
|
+
HRISFeedPropertiesInput,
|
|
1878
|
+
HRISFeedPropertiesUpdateInput,
|
|
1879
|
+
HubSpotConversationsFeedPropertiesInput,
|
|
1880
|
+
HubSpotConversationsFeedPropertiesUpdateInput,
|
|
1881
|
+
HubSpotCRMFeedPropertiesInput,
|
|
1882
|
+
HubSpotCRMFeedPropertiesUpdateInput,
|
|
1883
|
+
HubSpotMeetingPropertiesInput,
|
|
1884
|
+
HubSpotMeetingPropertiesUpdateInput,
|
|
1885
|
+
HubSpotTasksFeedPropertiesInput,
|
|
1886
|
+
HubSpotTasksFeedPropertiesUpdateInput,
|
|
1826
1887
|
ImageMetadataInput,
|
|
1827
1888
|
IndexingWorkflowJobInput,
|
|
1828
1889
|
IndexingWorkflowStageInput,
|
|
@@ -1849,6 +1910,8 @@ from .input_types import (
|
|
|
1849
1910
|
IssueMetadataInput,
|
|
1850
1911
|
JinaModelPropertiesInput,
|
|
1851
1912
|
JinaModelPropertiesUpdateInput,
|
|
1913
|
+
KrispPropertiesInput,
|
|
1914
|
+
KrispPropertiesUpdateInput,
|
|
1852
1915
|
LabelFacetInput,
|
|
1853
1916
|
LabelFilter,
|
|
1854
1917
|
LabelInput,
|
|
@@ -1932,6 +1995,9 @@ from .input_types import (
|
|
|
1932
1995
|
ModelFilter,
|
|
1933
1996
|
ModelImageExtractionPropertiesInput,
|
|
1934
1997
|
ModelTextExtractionPropertiesInput,
|
|
1998
|
+
MondayBoardsInput,
|
|
1999
|
+
MondayFeedPropertiesInput,
|
|
2000
|
+
MondayFeedPropertiesUpdateInput,
|
|
1935
2001
|
NamedEntityReferenceInput,
|
|
1936
2002
|
NotionDatabasesInput,
|
|
1937
2003
|
NotionFeedPropertiesInput,
|
|
@@ -2039,6 +2105,8 @@ from .input_types import (
|
|
|
2039
2105
|
SpecificationFilter,
|
|
2040
2106
|
SpecificationInput,
|
|
2041
2107
|
SpecificationUpdateInput,
|
|
2108
|
+
StorageGateInput,
|
|
2109
|
+
StorageGateRuleInput,
|
|
2042
2110
|
StoragePolicyInput,
|
|
2043
2111
|
StorageWorkflowStageInput,
|
|
2044
2112
|
SummarizationStrategyInput,
|
|
@@ -2148,6 +2216,7 @@ from .match_entity import (
|
|
|
2148
2216
|
)
|
|
2149
2217
|
from .operations import (
|
|
2150
2218
|
ADD_CONTENTS_TO_COLLECTIONS_GQL,
|
|
2219
|
+
APPROVE_CONTENT_GQL,
|
|
2151
2220
|
ASK_GRAPHLIT_GQL,
|
|
2152
2221
|
BRANCH_CONVERSATION_GQL,
|
|
2153
2222
|
CLEAR_CONVERSATION_GQL,
|
|
@@ -2391,9 +2460,16 @@ from .operations import (
|
|
|
2391
2460
|
PUBLISH_CONVERSATION_GQL,
|
|
2392
2461
|
PUBLISH_TEXT_GQL,
|
|
2393
2462
|
QUERY_ALERTS_GQL,
|
|
2463
|
+
QUERY_ASANA_PROJECTS_GQL,
|
|
2464
|
+
QUERY_ASANA_WORKSPACES_GQL,
|
|
2465
|
+
QUERY_BAMBOO_HR_DEPARTMENTS_GQL,
|
|
2466
|
+
QUERY_BAMBOO_HR_DIVISIONS_GQL,
|
|
2467
|
+
QUERY_BAMBOO_HR_EMPLOYMENT_STATUSES_GQL,
|
|
2468
|
+
QUERY_BAMBOO_HR_LOCATIONS_GQL,
|
|
2394
2469
|
QUERY_BOX_FOLDERS_GQL,
|
|
2395
2470
|
QUERY_CATEGORIES_GQL,
|
|
2396
2471
|
QUERY_COLLECTIONS_GQL,
|
|
2472
|
+
QUERY_CONFLUENCE_SPACES_GQL,
|
|
2397
2473
|
QUERY_CONNECTORS_GQL,
|
|
2398
2474
|
QUERY_CONTENTS_FACETS_GQL,
|
|
2399
2475
|
QUERY_CONTENTS_GQL,
|
|
@@ -2414,6 +2490,9 @@ from .operations import (
|
|
|
2414
2490
|
QUERY_GOOGLE_CALENDARS_GQL,
|
|
2415
2491
|
QUERY_GOOGLE_DRIVE_FOLDERS_GQL,
|
|
2416
2492
|
QUERY_GRAPH_GQL,
|
|
2493
|
+
QUERY_GUSTO_COMPANIES_GQL,
|
|
2494
|
+
QUERY_GUSTO_DEPARTMENTS_GQL,
|
|
2495
|
+
QUERY_GUSTO_LOCATIONS_GQL,
|
|
2417
2496
|
QUERY_INVESTMENT_FUNDS_CLUSTERS_GQL,
|
|
2418
2497
|
QUERY_INVESTMENT_FUNDS_EXPANDED_GQL,
|
|
2419
2498
|
QUERY_INVESTMENT_FUNDS_GQL,
|
|
@@ -2448,6 +2527,7 @@ from .operations import (
|
|
|
2448
2527
|
QUERY_MICROSOFT_TEAMS_CHANNELS_GQL,
|
|
2449
2528
|
QUERY_MICROSOFT_TEAMS_TEAMS_GQL,
|
|
2450
2529
|
QUERY_MODELS_GQL,
|
|
2530
|
+
QUERY_MONDAY_BOARDS_GQL,
|
|
2451
2531
|
QUERY_NOTION_DATABASES_GQL,
|
|
2452
2532
|
QUERY_NOTION_PAGES_GQL,
|
|
2453
2533
|
QUERY_OBSERVABLES_GQL,
|
|
@@ -2475,10 +2555,12 @@ from .operations import (
|
|
|
2475
2555
|
QUERY_USERS_GQL,
|
|
2476
2556
|
QUERY_VIEWS_GQL,
|
|
2477
2557
|
QUERY_WORKFLOWS_GQL,
|
|
2558
|
+
REJECT_CONTENT_GQL,
|
|
2478
2559
|
REMOVE_CONTENTS_FROM_COLLECTION_GQL,
|
|
2479
2560
|
RESEARCH_CONTENTS_GQL,
|
|
2480
2561
|
RESOLVE_ENTITIES_GQL,
|
|
2481
2562
|
RESOLVE_ENTITY_GQL,
|
|
2563
|
+
RESTART_CONTENT_GQL,
|
|
2482
2564
|
RETRIEVE_ENTITIES_GQL,
|
|
2483
2565
|
RETRIEVE_FACTS_GQL,
|
|
2484
2566
|
RETRIEVE_SOURCES_GQL,
|
|
@@ -2677,6 +2759,31 @@ from .query_alerts import (
|
|
|
2677
2759
|
QueryAlertsAlertsResultsSummarySpecification,
|
|
2678
2760
|
QueryAlertsAlertsResultsView,
|
|
2679
2761
|
)
|
|
2762
|
+
from .query_asana_projects import QueryAsanaProjects, QueryAsanaProjectsAsanaProjects
|
|
2763
|
+
from .query_asana_workspaces import (
|
|
2764
|
+
QueryAsanaWorkspaces,
|
|
2765
|
+
QueryAsanaWorkspacesAsanaWorkspaces,
|
|
2766
|
+
)
|
|
2767
|
+
from .query_bamboo_hr_departments import (
|
|
2768
|
+
QueryBambooHRDepartments,
|
|
2769
|
+
QueryBambooHRDepartmentsBambooHrDepartments,
|
|
2770
|
+
QueryBambooHRDepartmentsBambooHrDepartmentsResults,
|
|
2771
|
+
)
|
|
2772
|
+
from .query_bamboo_hr_divisions import (
|
|
2773
|
+
QueryBambooHRDivisions,
|
|
2774
|
+
QueryBambooHRDivisionsBambooHrDivisions,
|
|
2775
|
+
QueryBambooHRDivisionsBambooHrDivisionsResults,
|
|
2776
|
+
)
|
|
2777
|
+
from .query_bamboo_hr_employment_statuses import (
|
|
2778
|
+
QueryBambooHREmploymentStatuses,
|
|
2779
|
+
QueryBambooHREmploymentStatusesBambooHrEmploymentStatuses,
|
|
2780
|
+
QueryBambooHREmploymentStatusesBambooHrEmploymentStatusesResults,
|
|
2781
|
+
)
|
|
2782
|
+
from .query_bamboo_hr_locations import (
|
|
2783
|
+
QueryBambooHRLocations,
|
|
2784
|
+
QueryBambooHRLocationsBambooHrLocations,
|
|
2785
|
+
QueryBambooHRLocationsBambooHrLocationsResults,
|
|
2786
|
+
)
|
|
2680
2787
|
from .query_box_folders import (
|
|
2681
2788
|
QueryBoxFolders,
|
|
2682
2789
|
QueryBoxFoldersBoxFolders,
|
|
@@ -2694,6 +2801,11 @@ from .query_collections import (
|
|
|
2694
2801
|
QueryCollectionsCollectionsResults,
|
|
2695
2802
|
QueryCollectionsCollectionsResultsOwner,
|
|
2696
2803
|
)
|
|
2804
|
+
from .query_confluence_spaces import (
|
|
2805
|
+
QueryConfluenceSpaces,
|
|
2806
|
+
QueryConfluenceSpacesConfluenceSpaces,
|
|
2807
|
+
QueryConfluenceSpacesConfluenceSpacesResults,
|
|
2808
|
+
)
|
|
2697
2809
|
from .query_connectors import (
|
|
2698
2810
|
QueryConnectors,
|
|
2699
2811
|
QueryConnectorsConnectors,
|
|
@@ -2891,6 +3003,8 @@ from .query_conversations import (
|
|
|
2891
3003
|
QueryConversationsConversationsResultsMessagesToolCalls,
|
|
2892
3004
|
QueryConversationsConversationsResultsOwner,
|
|
2893
3005
|
QueryConversationsConversationsResultsSpecification,
|
|
3006
|
+
QueryConversationsConversationsResultsTurns,
|
|
3007
|
+
QueryConversationsConversationsResultsTurnsMessages,
|
|
2894
3008
|
)
|
|
2895
3009
|
from .query_credits import QueryCredits, QueryCreditsCredits
|
|
2896
3010
|
from .query_discord_channels import (
|
|
@@ -2983,10 +3097,12 @@ from .query_feeds import (
|
|
|
2983
3097
|
QueryFeedsFeedsResultsCommit,
|
|
2984
3098
|
QueryFeedsFeedsResultsCommitGithub,
|
|
2985
3099
|
QueryFeedsFeedsResultsCommitGithubConnector,
|
|
3100
|
+
QueryFeedsFeedsResultsConfluence,
|
|
2986
3101
|
QueryFeedsFeedsResultsCrm,
|
|
2987
3102
|
QueryFeedsFeedsResultsCrmAttio,
|
|
2988
3103
|
QueryFeedsFeedsResultsCrmGoogleContacts,
|
|
2989
3104
|
QueryFeedsFeedsResultsCrmGoogleContactsConnector,
|
|
3105
|
+
QueryFeedsFeedsResultsCrmHubSpot,
|
|
2990
3106
|
QueryFeedsFeedsResultsCrmMicrosoftContacts,
|
|
2991
3107
|
QueryFeedsFeedsResultsCrmMicrosoftContactsConnector,
|
|
2992
3108
|
QueryFeedsFeedsResultsCrmSalesforce,
|
|
@@ -2999,14 +3115,23 @@ from .query_feeds import (
|
|
|
2999
3115
|
QueryFeedsFeedsResultsEmailMicrosoftConnector,
|
|
3000
3116
|
QueryFeedsFeedsResultsEntity,
|
|
3001
3117
|
QueryFeedsFeedsResultsEntityParallel,
|
|
3118
|
+
QueryFeedsFeedsResultsHris,
|
|
3119
|
+
QueryFeedsFeedsResultsHrisBambooHr,
|
|
3120
|
+
QueryFeedsFeedsResultsHrisGusto,
|
|
3121
|
+
QueryFeedsFeedsResultsHubSpotConversations,
|
|
3122
|
+
QueryFeedsFeedsResultsHubSpotConversationsConnector,
|
|
3002
3123
|
QueryFeedsFeedsResultsIntercom,
|
|
3003
3124
|
QueryFeedsFeedsResultsIssue,
|
|
3125
|
+
QueryFeedsFeedsResultsIssueAsana,
|
|
3004
3126
|
QueryFeedsFeedsResultsIssueAttio,
|
|
3005
3127
|
QueryFeedsFeedsResultsIssueGithub,
|
|
3006
3128
|
QueryFeedsFeedsResultsIssueGithubConnector,
|
|
3129
|
+
QueryFeedsFeedsResultsIssueHubSpot,
|
|
3130
|
+
QueryFeedsFeedsResultsIssueHubSpotConnector,
|
|
3007
3131
|
QueryFeedsFeedsResultsIssueIntercom,
|
|
3008
3132
|
QueryFeedsFeedsResultsIssueJira,
|
|
3009
3133
|
QueryFeedsFeedsResultsIssueLinear,
|
|
3134
|
+
QueryFeedsFeedsResultsIssueMonday,
|
|
3010
3135
|
QueryFeedsFeedsResultsIssueSalesforce,
|
|
3011
3136
|
QueryFeedsFeedsResultsIssueSalesforceConnector,
|
|
3012
3137
|
QueryFeedsFeedsResultsIssueTrello,
|
|
@@ -3015,6 +3140,9 @@ from .query_feeds import (
|
|
|
3015
3140
|
QueryFeedsFeedsResultsMeetingAttio,
|
|
3016
3141
|
QueryFeedsFeedsResultsMeetingFathom,
|
|
3017
3142
|
QueryFeedsFeedsResultsMeetingFireflies,
|
|
3143
|
+
QueryFeedsFeedsResultsMeetingHubSpot,
|
|
3144
|
+
QueryFeedsFeedsResultsMeetingHubSpotConnector,
|
|
3145
|
+
QueryFeedsFeedsResultsMeetingKrisp,
|
|
3018
3146
|
QueryFeedsFeedsResultsMicrosoftTeams,
|
|
3019
3147
|
QueryFeedsFeedsResultsMicrosoftTeamsConnector,
|
|
3020
3148
|
QueryFeedsFeedsResultsNotion,
|
|
@@ -3076,6 +3204,21 @@ from .query_graph import (
|
|
|
3076
3204
|
QueryGraphGraphEdges,
|
|
3077
3205
|
QueryGraphGraphNodes,
|
|
3078
3206
|
)
|
|
3207
|
+
from .query_gusto_companies import (
|
|
3208
|
+
QueryGustoCompanies,
|
|
3209
|
+
QueryGustoCompaniesGustoCompanies,
|
|
3210
|
+
QueryGustoCompaniesGustoCompaniesResults,
|
|
3211
|
+
)
|
|
3212
|
+
from .query_gusto_departments import (
|
|
3213
|
+
QueryGustoDepartments,
|
|
3214
|
+
QueryGustoDepartmentsGustoDepartments,
|
|
3215
|
+
QueryGustoDepartmentsGustoDepartmentsResults,
|
|
3216
|
+
)
|
|
3217
|
+
from .query_gusto_locations import (
|
|
3218
|
+
QueryGustoLocations,
|
|
3219
|
+
QueryGustoLocationsGustoLocations,
|
|
3220
|
+
QueryGustoLocationsGustoLocationsResults,
|
|
3221
|
+
)
|
|
3079
3222
|
from .query_investment_funds import (
|
|
3080
3223
|
QueryInvestmentFunds,
|
|
3081
3224
|
QueryInvestmentFundsInvestmentFunds,
|
|
@@ -3469,6 +3612,7 @@ from .query_models import (
|
|
|
3469
3612
|
QueryModelsModelsResultsFeatures,
|
|
3470
3613
|
QueryModelsModelsResultsMetadata,
|
|
3471
3614
|
)
|
|
3615
|
+
from .query_monday_boards import QueryMondayBoards, QueryMondayBoardsMondayBoards
|
|
3472
3616
|
from .query_notion_databases import (
|
|
3473
3617
|
QueryNotionDatabases,
|
|
3474
3618
|
QueryNotionDatabasesNotionDatabases,
|
|
@@ -3874,6 +4018,7 @@ from .query_workflows import (
|
|
|
3874
4018
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorAzureDocument,
|
|
3875
4019
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorDeepgram,
|
|
3876
4020
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorDocument,
|
|
4021
|
+
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorElevenLabsScribe,
|
|
3877
4022
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorEmail,
|
|
3878
4023
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorMistral,
|
|
3879
4024
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorModelDocument,
|
|
@@ -3883,8 +4028,12 @@ from .query_workflows import (
|
|
|
3883
4028
|
QueryWorkflowsWorkflowsResultsPreparationSummarizations,
|
|
3884
4029
|
QueryWorkflowsWorkflowsResultsPreparationSummarizationsSpecification,
|
|
3885
4030
|
QueryWorkflowsWorkflowsResultsStorage,
|
|
4031
|
+
QueryWorkflowsWorkflowsResultsStorageGate,
|
|
4032
|
+
QueryWorkflowsWorkflowsResultsStorageGateRules,
|
|
4033
|
+
QueryWorkflowsWorkflowsResultsStorageGateSpecification,
|
|
3886
4034
|
QueryWorkflowsWorkflowsResultsStoragePolicy,
|
|
3887
4035
|
)
|
|
4036
|
+
from .reject_content import RejectContent, RejectContentRejectContent
|
|
3888
4037
|
from .remove_contents_from_collection import (
|
|
3889
4038
|
RemoveContentsFromCollection,
|
|
3890
4039
|
RemoveContentsFromCollectionRemoveContentsFromCollection,
|
|
@@ -3907,6 +4056,7 @@ from .resolve_entity import (
|
|
|
3907
4056
|
ResolveEntityResolveEntityReference,
|
|
3908
4057
|
ResolveEntityResolveEntityReferenceObservable,
|
|
3909
4058
|
)
|
|
4059
|
+
from .restart_content import RestartContent, RestartContentRestartContent
|
|
3910
4060
|
from .retrieve_entities import (
|
|
3911
4061
|
RetrieveEntities,
|
|
3912
4062
|
RetrieveEntitiesRetrieveEntities,
|
|
@@ -4212,6 +4362,7 @@ from .update_workflow import (
|
|
|
4212
4362
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorAzureDocument,
|
|
4213
4363
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorDeepgram,
|
|
4214
4364
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorDocument,
|
|
4365
|
+
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorElevenLabsScribe,
|
|
4215
4366
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorEmail,
|
|
4216
4367
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorMistral,
|
|
4217
4368
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorModelDocument,
|
|
@@ -4221,6 +4372,9 @@ from .update_workflow import (
|
|
|
4221
4372
|
UpdateWorkflowUpdateWorkflowPreparationSummarizations,
|
|
4222
4373
|
UpdateWorkflowUpdateWorkflowPreparationSummarizationsSpecification,
|
|
4223
4374
|
UpdateWorkflowUpdateWorkflowStorage,
|
|
4375
|
+
UpdateWorkflowUpdateWorkflowStorageGate,
|
|
4376
|
+
UpdateWorkflowUpdateWorkflowStorageGateRules,
|
|
4377
|
+
UpdateWorkflowUpdateWorkflowStorageGateSpecification,
|
|
4224
4378
|
UpdateWorkflowUpdateWorkflowStoragePolicy,
|
|
4225
4379
|
)
|
|
4226
4380
|
from .upsert_alert import UpsertAlert, UpsertAlertUpsertAlert
|
|
@@ -4336,6 +4490,7 @@ from .upsert_workflow import (
|
|
|
4336
4490
|
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorAzureDocument,
|
|
4337
4491
|
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDeepgram,
|
|
4338
4492
|
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDocument,
|
|
4493
|
+
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorElevenLabsScribe,
|
|
4339
4494
|
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorEmail,
|
|
4340
4495
|
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorMistral,
|
|
4341
4496
|
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorModelDocument,
|
|
@@ -4345,6 +4500,9 @@ from .upsert_workflow import (
|
|
|
4345
4500
|
UpsertWorkflowUpsertWorkflowPreparationSummarizations,
|
|
4346
4501
|
UpsertWorkflowUpsertWorkflowPreparationSummarizationsSpecification,
|
|
4347
4502
|
UpsertWorkflowUpsertWorkflowStorage,
|
|
4503
|
+
UpsertWorkflowUpsertWorkflowStorageGate,
|
|
4504
|
+
UpsertWorkflowUpsertWorkflowStorageGateRules,
|
|
4505
|
+
UpsertWorkflowUpsertWorkflowStorageGateSpecification,
|
|
4348
4506
|
UpsertWorkflowUpsertWorkflowStoragePolicy,
|
|
4349
4507
|
)
|
|
4350
4508
|
from .view_exists import ViewExists, ViewExistsViewExists
|
|
@@ -4352,6 +4510,7 @@ from .workflow_exists import WorkflowExists, WorkflowExistsWorkflowExists
|
|
|
4352
4510
|
|
|
4353
4511
|
__all__ = [
|
|
4354
4512
|
"ADD_CONTENTS_TO_COLLECTIONS_GQL",
|
|
4513
|
+
"APPROVE_CONTENT_GQL",
|
|
4355
4514
|
"ASK_GRAPHLIT_GQL",
|
|
4356
4515
|
"AddContentsToCollections",
|
|
4357
4516
|
"AddContentsToCollectionsAddContentsToCollections",
|
|
@@ -4369,8 +4528,15 @@ __all__ = [
|
|
|
4369
4528
|
"AnthropicModelPropertiesUpdateInput",
|
|
4370
4529
|
"AnthropicModels",
|
|
4371
4530
|
"ApplyPolicy",
|
|
4531
|
+
"ApproveContent",
|
|
4532
|
+
"ApproveContentApproveContent",
|
|
4372
4533
|
"ArcadeAuthenticationPropertiesInput",
|
|
4373
4534
|
"ArcadeProviders",
|
|
4535
|
+
"AsanaAuthenticationTypes",
|
|
4536
|
+
"AsanaFeedPropertiesInput",
|
|
4537
|
+
"AsanaFeedPropertiesUpdateInput",
|
|
4538
|
+
"AsanaProjectsInput",
|
|
4539
|
+
"AsanaWorkspacesInput",
|
|
4374
4540
|
"AskGraphlit",
|
|
4375
4541
|
"AskGraphlitAskGraphlit",
|
|
4376
4542
|
"AskGraphlitAskGraphlitConversation",
|
|
@@ -4414,6 +4580,10 @@ __all__ = [
|
|
|
4414
4580
|
"AzureOpenAIModels",
|
|
4415
4581
|
"AzureTextExtractionPropertiesInput",
|
|
4416
4582
|
"BRANCH_CONVERSATION_GQL",
|
|
4583
|
+
"BambooHRAuthenticationTypes",
|
|
4584
|
+
"BambooHRHRISFeedPropertiesInput",
|
|
4585
|
+
"BambooHRHRISFeedPropertiesUpdateInput",
|
|
4586
|
+
"BambooHROptionsInput",
|
|
4417
4587
|
"BaseModel",
|
|
4418
4588
|
"BedrockModelPropertiesInput",
|
|
4419
4589
|
"BedrockModelPropertiesUpdateInput",
|
|
@@ -4561,6 +4731,10 @@ __all__ = [
|
|
|
4561
4731
|
"CompleteConversationCompleteConversationMessageCitationsContentImage",
|
|
4562
4732
|
"CompleteConversationCompleteConversationMessageCitationsContentVideo",
|
|
4563
4733
|
"CompleteConversationCompleteConversationMessageToolCalls",
|
|
4734
|
+
"ConfluenceFeedPropertiesInput",
|
|
4735
|
+
"ConfluenceFeedPropertiesUpdateInput",
|
|
4736
|
+
"ConfluenceSpacesInput",
|
|
4737
|
+
"ConfluenceTypes",
|
|
4564
4738
|
"ConnectorFilter",
|
|
4565
4739
|
"ConnectorInput",
|
|
4566
4740
|
"ConnectorTypes",
|
|
@@ -4854,6 +5028,7 @@ __all__ = [
|
|
|
4854
5028
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorAzureDocument",
|
|
4855
5029
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorDeepgram",
|
|
4856
5030
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorDocument",
|
|
5031
|
+
"CreateWorkflowCreateWorkflowPreparationJobsConnectorElevenLabsScribe",
|
|
4857
5032
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorEmail",
|
|
4858
5033
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorMistral",
|
|
4859
5034
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorModelDocument",
|
|
@@ -4863,6 +5038,9 @@ __all__ = [
|
|
|
4863
5038
|
"CreateWorkflowCreateWorkflowPreparationSummarizations",
|
|
4864
5039
|
"CreateWorkflowCreateWorkflowPreparationSummarizationsSpecification",
|
|
4865
5040
|
"CreateWorkflowCreateWorkflowStorage",
|
|
5041
|
+
"CreateWorkflowCreateWorkflowStorageGate",
|
|
5042
|
+
"CreateWorkflowCreateWorkflowStorageGateRules",
|
|
5043
|
+
"CreateWorkflowCreateWorkflowStorageGateSpecification",
|
|
4866
5044
|
"CreateWorkflowCreateWorkflowStoragePolicy",
|
|
4867
5045
|
"DELETE_ALERTS_GQL",
|
|
4868
5046
|
"DELETE_ALERT_GQL",
|
|
@@ -5213,6 +5391,8 @@ __all__ = [
|
|
|
5213
5391
|
"EXTRACT_TEXT_GQL",
|
|
5214
5392
|
"ElevenLabsModels",
|
|
5215
5393
|
"ElevenLabsPublishingPropertiesInput",
|
|
5394
|
+
"ElevenLabsScribeAudioPreparationPropertiesInput",
|
|
5395
|
+
"ElevenLabsScribeModels",
|
|
5216
5396
|
"EmailFeedPropertiesInput",
|
|
5217
5397
|
"EmailFeedPropertiesUpdateInput",
|
|
5218
5398
|
"EmailIntegrationPropertiesInput",
|
|
@@ -5574,6 +5754,8 @@ __all__ = [
|
|
|
5574
5754
|
"GetConversationConversationMessagesToolCalls",
|
|
5575
5755
|
"GetConversationConversationOwner",
|
|
5576
5756
|
"GetConversationConversationSpecification",
|
|
5757
|
+
"GetConversationConversationTurns",
|
|
5758
|
+
"GetConversationConversationTurnsMessages",
|
|
5577
5759
|
"GetEvent",
|
|
5578
5760
|
"GetEventEvent",
|
|
5579
5761
|
"GetEventEventAddress",
|
|
@@ -5604,10 +5786,12 @@ __all__ = [
|
|
|
5604
5786
|
"GetFeedFeedCommit",
|
|
5605
5787
|
"GetFeedFeedCommitGithub",
|
|
5606
5788
|
"GetFeedFeedCommitGithubConnector",
|
|
5789
|
+
"GetFeedFeedConfluence",
|
|
5607
5790
|
"GetFeedFeedCrm",
|
|
5608
5791
|
"GetFeedFeedCrmAttio",
|
|
5609
5792
|
"GetFeedFeedCrmGoogleContacts",
|
|
5610
5793
|
"GetFeedFeedCrmGoogleContactsConnector",
|
|
5794
|
+
"GetFeedFeedCrmHubSpot",
|
|
5611
5795
|
"GetFeedFeedCrmMicrosoftContacts",
|
|
5612
5796
|
"GetFeedFeedCrmMicrosoftContactsConnector",
|
|
5613
5797
|
"GetFeedFeedCrmSalesforce",
|
|
@@ -5620,14 +5804,23 @@ __all__ = [
|
|
|
5620
5804
|
"GetFeedFeedEmailMicrosoftConnector",
|
|
5621
5805
|
"GetFeedFeedEntity",
|
|
5622
5806
|
"GetFeedFeedEntityParallel",
|
|
5807
|
+
"GetFeedFeedHris",
|
|
5808
|
+
"GetFeedFeedHrisBambooHr",
|
|
5809
|
+
"GetFeedFeedHrisGusto",
|
|
5810
|
+
"GetFeedFeedHubSpotConversations",
|
|
5811
|
+
"GetFeedFeedHubSpotConversationsConnector",
|
|
5623
5812
|
"GetFeedFeedIntercom",
|
|
5624
5813
|
"GetFeedFeedIssue",
|
|
5814
|
+
"GetFeedFeedIssueAsana",
|
|
5625
5815
|
"GetFeedFeedIssueAttio",
|
|
5626
5816
|
"GetFeedFeedIssueGithub",
|
|
5627
5817
|
"GetFeedFeedIssueGithubConnector",
|
|
5818
|
+
"GetFeedFeedIssueHubSpot",
|
|
5819
|
+
"GetFeedFeedIssueHubSpotConnector",
|
|
5628
5820
|
"GetFeedFeedIssueIntercom",
|
|
5629
5821
|
"GetFeedFeedIssueJira",
|
|
5630
5822
|
"GetFeedFeedIssueLinear",
|
|
5823
|
+
"GetFeedFeedIssueMonday",
|
|
5631
5824
|
"GetFeedFeedIssueSalesforce",
|
|
5632
5825
|
"GetFeedFeedIssueSalesforceConnector",
|
|
5633
5826
|
"GetFeedFeedIssueTrello",
|
|
@@ -5636,6 +5829,9 @@ __all__ = [
|
|
|
5636
5829
|
"GetFeedFeedMeetingAttio",
|
|
5637
5830
|
"GetFeedFeedMeetingFathom",
|
|
5638
5831
|
"GetFeedFeedMeetingFireflies",
|
|
5832
|
+
"GetFeedFeedMeetingHubSpot",
|
|
5833
|
+
"GetFeedFeedMeetingHubSpotConnector",
|
|
5834
|
+
"GetFeedFeedMeetingKrisp",
|
|
5639
5835
|
"GetFeedFeedMicrosoftTeams",
|
|
5640
5836
|
"GetFeedFeedMicrosoftTeamsConnector",
|
|
5641
5837
|
"GetFeedFeedNotion",
|
|
@@ -6026,6 +6222,7 @@ __all__ = [
|
|
|
6026
6222
|
"GetWorkflowWorkflowPreparationJobsConnectorAzureDocument",
|
|
6027
6223
|
"GetWorkflowWorkflowPreparationJobsConnectorDeepgram",
|
|
6028
6224
|
"GetWorkflowWorkflowPreparationJobsConnectorDocument",
|
|
6225
|
+
"GetWorkflowWorkflowPreparationJobsConnectorElevenLabsScribe",
|
|
6029
6226
|
"GetWorkflowWorkflowPreparationJobsConnectorEmail",
|
|
6030
6227
|
"GetWorkflowWorkflowPreparationJobsConnectorMistral",
|
|
6031
6228
|
"GetWorkflowWorkflowPreparationJobsConnectorModelDocument",
|
|
@@ -6035,6 +6232,9 @@ __all__ = [
|
|
|
6035
6232
|
"GetWorkflowWorkflowPreparationSummarizations",
|
|
6036
6233
|
"GetWorkflowWorkflowPreparationSummarizationsSpecification",
|
|
6037
6234
|
"GetWorkflowWorkflowStorage",
|
|
6235
|
+
"GetWorkflowWorkflowStorageGate",
|
|
6236
|
+
"GetWorkflowWorkflowStorageGateRules",
|
|
6237
|
+
"GetWorkflowWorkflowStorageGateSpecification",
|
|
6038
6238
|
"GetWorkflowWorkflowStoragePolicy",
|
|
6039
6239
|
"GitHubAuthenticationTypes",
|
|
6040
6240
|
"GitHubCommitAuthenticationTypes",
|
|
@@ -6072,6 +6272,7 @@ __all__ = [
|
|
|
6072
6272
|
"GoogleModelPropertiesInput",
|
|
6073
6273
|
"GoogleModelPropertiesUpdateInput",
|
|
6074
6274
|
"GoogleModels",
|
|
6275
|
+
"GoogleThinkingLevels",
|
|
6075
6276
|
"GraphFilter",
|
|
6076
6277
|
"GraphInput",
|
|
6077
6278
|
"GraphQLClientError",
|
|
@@ -6085,9 +6286,27 @@ __all__ = [
|
|
|
6085
6286
|
"GroqModelPropertiesInput",
|
|
6086
6287
|
"GroqModelPropertiesUpdateInput",
|
|
6087
6288
|
"GroqModels",
|
|
6289
|
+
"GustoAuthenticationTypes",
|
|
6290
|
+
"GustoCompaniesInput",
|
|
6291
|
+
"GustoHRISFeedPropertiesInput",
|
|
6292
|
+
"GustoHRISFeedPropertiesUpdateInput",
|
|
6293
|
+
"GustoOptionsInput",
|
|
6088
6294
|
"H3Filter",
|
|
6089
6295
|
"H3IndexFilter",
|
|
6090
6296
|
"H3ResolutionTypes",
|
|
6297
|
+
"HRISFeedPropertiesInput",
|
|
6298
|
+
"HRISFeedPropertiesUpdateInput",
|
|
6299
|
+
"HubSpotAuthenticationTypes",
|
|
6300
|
+
"HubSpotCRMFeedPropertiesInput",
|
|
6301
|
+
"HubSpotCRMFeedPropertiesUpdateInput",
|
|
6302
|
+
"HubSpotConversationsFeedPropertiesInput",
|
|
6303
|
+
"HubSpotConversationsFeedPropertiesUpdateInput",
|
|
6304
|
+
"HubSpotFeedAuthenticationTypes",
|
|
6305
|
+
"HubSpotIssueAuthenticationTypes",
|
|
6306
|
+
"HubSpotMeetingPropertiesInput",
|
|
6307
|
+
"HubSpotMeetingPropertiesUpdateInput",
|
|
6308
|
+
"HubSpotTasksFeedPropertiesInput",
|
|
6309
|
+
"HubSpotTasksFeedPropertiesUpdateInput",
|
|
6091
6310
|
"INGEST_BATCH_GQL",
|
|
6092
6311
|
"INGEST_ENCODED_FILE_GQL",
|
|
6093
6312
|
"INGEST_EVENT_GQL",
|
|
@@ -6188,6 +6407,8 @@ __all__ = [
|
|
|
6188
6407
|
"JinaModelPropertiesInput",
|
|
6189
6408
|
"JinaModelPropertiesUpdateInput",
|
|
6190
6409
|
"JinaModels",
|
|
6410
|
+
"KrispPropertiesInput",
|
|
6411
|
+
"KrispPropertiesUpdateInput",
|
|
6191
6412
|
"LOOKUP_CONTENTS_GQL",
|
|
6192
6413
|
"LOOKUP_CREDITS_GQL",
|
|
6193
6414
|
"LOOKUP_ENTITY_GQL",
|
|
@@ -6370,6 +6591,9 @@ __all__ = [
|
|
|
6370
6591
|
"ModelServiceTypes",
|
|
6371
6592
|
"ModelTextExtractionPropertiesInput",
|
|
6372
6593
|
"ModelTypes",
|
|
6594
|
+
"MondayBoardsInput",
|
|
6595
|
+
"MondayFeedPropertiesInput",
|
|
6596
|
+
"MondayFeedPropertiesUpdateInput",
|
|
6373
6597
|
"NamedEntityReferenceInput",
|
|
6374
6598
|
"NotionDatabasesInput",
|
|
6375
6599
|
"NotionFeedPropertiesInput",
|
|
@@ -6534,9 +6758,16 @@ __all__ = [
|
|
|
6534
6758
|
"PullRequestFeedPropertiesInput",
|
|
6535
6759
|
"PullRequestFeedPropertiesUpdateInput",
|
|
6536
6760
|
"QUERY_ALERTS_GQL",
|
|
6761
|
+
"QUERY_ASANA_PROJECTS_GQL",
|
|
6762
|
+
"QUERY_ASANA_WORKSPACES_GQL",
|
|
6763
|
+
"QUERY_BAMBOO_HR_DEPARTMENTS_GQL",
|
|
6764
|
+
"QUERY_BAMBOO_HR_DIVISIONS_GQL",
|
|
6765
|
+
"QUERY_BAMBOO_HR_EMPLOYMENT_STATUSES_GQL",
|
|
6766
|
+
"QUERY_BAMBOO_HR_LOCATIONS_GQL",
|
|
6537
6767
|
"QUERY_BOX_FOLDERS_GQL",
|
|
6538
6768
|
"QUERY_CATEGORIES_GQL",
|
|
6539
6769
|
"QUERY_COLLECTIONS_GQL",
|
|
6770
|
+
"QUERY_CONFLUENCE_SPACES_GQL",
|
|
6540
6771
|
"QUERY_CONNECTORS_GQL",
|
|
6541
6772
|
"QUERY_CONTENTS_FACETS_GQL",
|
|
6542
6773
|
"QUERY_CONTENTS_GQL",
|
|
@@ -6557,6 +6788,9 @@ __all__ = [
|
|
|
6557
6788
|
"QUERY_GOOGLE_CALENDARS_GQL",
|
|
6558
6789
|
"QUERY_GOOGLE_DRIVE_FOLDERS_GQL",
|
|
6559
6790
|
"QUERY_GRAPH_GQL",
|
|
6791
|
+
"QUERY_GUSTO_COMPANIES_GQL",
|
|
6792
|
+
"QUERY_GUSTO_DEPARTMENTS_GQL",
|
|
6793
|
+
"QUERY_GUSTO_LOCATIONS_GQL",
|
|
6560
6794
|
"QUERY_INVESTMENTS_CLUSTERS_GQL",
|
|
6561
6795
|
"QUERY_INVESTMENTS_EXPANDED_GQL",
|
|
6562
6796
|
"QUERY_INVESTMENTS_GQL",
|
|
@@ -6591,6 +6825,7 @@ __all__ = [
|
|
|
6591
6825
|
"QUERY_MICROSOFT_TEAMS_CHANNELS_GQL",
|
|
6592
6826
|
"QUERY_MICROSOFT_TEAMS_TEAMS_GQL",
|
|
6593
6827
|
"QUERY_MODELS_GQL",
|
|
6828
|
+
"QUERY_MONDAY_BOARDS_GQL",
|
|
6594
6829
|
"QUERY_NOTION_DATABASES_GQL",
|
|
6595
6830
|
"QUERY_NOTION_PAGES_GQL",
|
|
6596
6831
|
"QUERY_OBSERVABLES_GQL",
|
|
@@ -6666,6 +6901,22 @@ __all__ = [
|
|
|
6666
6901
|
"QueryAlertsAlertsResultsSchedulePolicy",
|
|
6667
6902
|
"QueryAlertsAlertsResultsSummarySpecification",
|
|
6668
6903
|
"QueryAlertsAlertsResultsView",
|
|
6904
|
+
"QueryAsanaProjects",
|
|
6905
|
+
"QueryAsanaProjectsAsanaProjects",
|
|
6906
|
+
"QueryAsanaWorkspaces",
|
|
6907
|
+
"QueryAsanaWorkspacesAsanaWorkspaces",
|
|
6908
|
+
"QueryBambooHRDepartments",
|
|
6909
|
+
"QueryBambooHRDepartmentsBambooHrDepartments",
|
|
6910
|
+
"QueryBambooHRDepartmentsBambooHrDepartmentsResults",
|
|
6911
|
+
"QueryBambooHRDivisions",
|
|
6912
|
+
"QueryBambooHRDivisionsBambooHrDivisions",
|
|
6913
|
+
"QueryBambooHRDivisionsBambooHrDivisionsResults",
|
|
6914
|
+
"QueryBambooHREmploymentStatuses",
|
|
6915
|
+
"QueryBambooHREmploymentStatusesBambooHrEmploymentStatuses",
|
|
6916
|
+
"QueryBambooHREmploymentStatusesBambooHrEmploymentStatusesResults",
|
|
6917
|
+
"QueryBambooHRLocations",
|
|
6918
|
+
"QueryBambooHRLocationsBambooHrLocations",
|
|
6919
|
+
"QueryBambooHRLocationsBambooHrLocationsResults",
|
|
6669
6920
|
"QueryBoxFolders",
|
|
6670
6921
|
"QueryBoxFoldersBoxFolders",
|
|
6671
6922
|
"QueryBoxFoldersBoxFoldersResults",
|
|
@@ -6677,6 +6928,9 @@ __all__ = [
|
|
|
6677
6928
|
"QueryCollectionsCollections",
|
|
6678
6929
|
"QueryCollectionsCollectionsResults",
|
|
6679
6930
|
"QueryCollectionsCollectionsResultsOwner",
|
|
6931
|
+
"QueryConfluenceSpaces",
|
|
6932
|
+
"QueryConfluenceSpacesConfluenceSpaces",
|
|
6933
|
+
"QueryConfluenceSpacesConfluenceSpacesResults",
|
|
6680
6934
|
"QueryConnectors",
|
|
6681
6935
|
"QueryConnectorsConnectors",
|
|
6682
6936
|
"QueryConnectorsConnectorsResults",
|
|
@@ -6863,6 +7117,8 @@ __all__ = [
|
|
|
6863
7117
|
"QueryConversationsConversationsResultsMessagesToolCalls",
|
|
6864
7118
|
"QueryConversationsConversationsResultsOwner",
|
|
6865
7119
|
"QueryConversationsConversationsResultsSpecification",
|
|
7120
|
+
"QueryConversationsConversationsResultsTurns",
|
|
7121
|
+
"QueryConversationsConversationsResultsTurnsMessages",
|
|
6866
7122
|
"QueryCredits",
|
|
6867
7123
|
"QueryCreditsCredits",
|
|
6868
7124
|
"QueryDiscordChannels",
|
|
@@ -6938,10 +7194,12 @@ __all__ = [
|
|
|
6938
7194
|
"QueryFeedsFeedsResultsCommit",
|
|
6939
7195
|
"QueryFeedsFeedsResultsCommitGithub",
|
|
6940
7196
|
"QueryFeedsFeedsResultsCommitGithubConnector",
|
|
7197
|
+
"QueryFeedsFeedsResultsConfluence",
|
|
6941
7198
|
"QueryFeedsFeedsResultsCrm",
|
|
6942
7199
|
"QueryFeedsFeedsResultsCrmAttio",
|
|
6943
7200
|
"QueryFeedsFeedsResultsCrmGoogleContacts",
|
|
6944
7201
|
"QueryFeedsFeedsResultsCrmGoogleContactsConnector",
|
|
7202
|
+
"QueryFeedsFeedsResultsCrmHubSpot",
|
|
6945
7203
|
"QueryFeedsFeedsResultsCrmMicrosoftContacts",
|
|
6946
7204
|
"QueryFeedsFeedsResultsCrmMicrosoftContactsConnector",
|
|
6947
7205
|
"QueryFeedsFeedsResultsCrmSalesforce",
|
|
@@ -6954,14 +7212,23 @@ __all__ = [
|
|
|
6954
7212
|
"QueryFeedsFeedsResultsEmailMicrosoftConnector",
|
|
6955
7213
|
"QueryFeedsFeedsResultsEntity",
|
|
6956
7214
|
"QueryFeedsFeedsResultsEntityParallel",
|
|
7215
|
+
"QueryFeedsFeedsResultsHris",
|
|
7216
|
+
"QueryFeedsFeedsResultsHrisBambooHr",
|
|
7217
|
+
"QueryFeedsFeedsResultsHrisGusto",
|
|
7218
|
+
"QueryFeedsFeedsResultsHubSpotConversations",
|
|
7219
|
+
"QueryFeedsFeedsResultsHubSpotConversationsConnector",
|
|
6957
7220
|
"QueryFeedsFeedsResultsIntercom",
|
|
6958
7221
|
"QueryFeedsFeedsResultsIssue",
|
|
7222
|
+
"QueryFeedsFeedsResultsIssueAsana",
|
|
6959
7223
|
"QueryFeedsFeedsResultsIssueAttio",
|
|
6960
7224
|
"QueryFeedsFeedsResultsIssueGithub",
|
|
6961
7225
|
"QueryFeedsFeedsResultsIssueGithubConnector",
|
|
7226
|
+
"QueryFeedsFeedsResultsIssueHubSpot",
|
|
7227
|
+
"QueryFeedsFeedsResultsIssueHubSpotConnector",
|
|
6962
7228
|
"QueryFeedsFeedsResultsIssueIntercom",
|
|
6963
7229
|
"QueryFeedsFeedsResultsIssueJira",
|
|
6964
7230
|
"QueryFeedsFeedsResultsIssueLinear",
|
|
7231
|
+
"QueryFeedsFeedsResultsIssueMonday",
|
|
6965
7232
|
"QueryFeedsFeedsResultsIssueSalesforce",
|
|
6966
7233
|
"QueryFeedsFeedsResultsIssueSalesforceConnector",
|
|
6967
7234
|
"QueryFeedsFeedsResultsIssueTrello",
|
|
@@ -6970,6 +7237,9 @@ __all__ = [
|
|
|
6970
7237
|
"QueryFeedsFeedsResultsMeetingAttio",
|
|
6971
7238
|
"QueryFeedsFeedsResultsMeetingFathom",
|
|
6972
7239
|
"QueryFeedsFeedsResultsMeetingFireflies",
|
|
7240
|
+
"QueryFeedsFeedsResultsMeetingHubSpot",
|
|
7241
|
+
"QueryFeedsFeedsResultsMeetingHubSpotConnector",
|
|
7242
|
+
"QueryFeedsFeedsResultsMeetingKrisp",
|
|
6973
7243
|
"QueryFeedsFeedsResultsMicrosoftTeams",
|
|
6974
7244
|
"QueryFeedsFeedsResultsMicrosoftTeamsConnector",
|
|
6975
7245
|
"QueryFeedsFeedsResultsNotion",
|
|
@@ -7022,6 +7292,15 @@ __all__ = [
|
|
|
7022
7292
|
"QueryGraphGraph",
|
|
7023
7293
|
"QueryGraphGraphEdges",
|
|
7024
7294
|
"QueryGraphGraphNodes",
|
|
7295
|
+
"QueryGustoCompanies",
|
|
7296
|
+
"QueryGustoCompaniesGustoCompanies",
|
|
7297
|
+
"QueryGustoCompaniesGustoCompaniesResults",
|
|
7298
|
+
"QueryGustoDepartments",
|
|
7299
|
+
"QueryGustoDepartmentsGustoDepartments",
|
|
7300
|
+
"QueryGustoDepartmentsGustoDepartmentsResults",
|
|
7301
|
+
"QueryGustoLocations",
|
|
7302
|
+
"QueryGustoLocationsGustoLocations",
|
|
7303
|
+
"QueryGustoLocationsGustoLocationsResults",
|
|
7025
7304
|
"QueryInvestmentFunds",
|
|
7026
7305
|
"QueryInvestmentFundsClusters",
|
|
7027
7306
|
"QueryInvestmentFundsClustersInvestmentFunds",
|
|
@@ -7347,6 +7626,8 @@ __all__ = [
|
|
|
7347
7626
|
"QueryModelsModelsResults",
|
|
7348
7627
|
"QueryModelsModelsResultsFeatures",
|
|
7349
7628
|
"QueryModelsModelsResultsMetadata",
|
|
7629
|
+
"QueryMondayBoards",
|
|
7630
|
+
"QueryMondayBoardsMondayBoards",
|
|
7350
7631
|
"QueryNotionDatabases",
|
|
7351
7632
|
"QueryNotionDatabasesNotionDatabases",
|
|
7352
7633
|
"QueryNotionDatabasesNotionDatabasesResults",
|
|
@@ -7708,6 +7989,7 @@ __all__ = [
|
|
|
7708
7989
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorAzureDocument",
|
|
7709
7990
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorDeepgram",
|
|
7710
7991
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorDocument",
|
|
7992
|
+
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorElevenLabsScribe",
|
|
7711
7993
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorEmail",
|
|
7712
7994
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorMistral",
|
|
7713
7995
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorModelDocument",
|
|
@@ -7717,11 +7999,16 @@ __all__ = [
|
|
|
7717
7999
|
"QueryWorkflowsWorkflowsResultsPreparationSummarizations",
|
|
7718
8000
|
"QueryWorkflowsWorkflowsResultsPreparationSummarizationsSpecification",
|
|
7719
8001
|
"QueryWorkflowsWorkflowsResultsStorage",
|
|
8002
|
+
"QueryWorkflowsWorkflowsResultsStorageGate",
|
|
8003
|
+
"QueryWorkflowsWorkflowsResultsStorageGateRules",
|
|
8004
|
+
"QueryWorkflowsWorkflowsResultsStorageGateSpecification",
|
|
7720
8005
|
"QueryWorkflowsWorkflowsResultsStoragePolicy",
|
|
8006
|
+
"REJECT_CONTENT_GQL",
|
|
7721
8007
|
"REMOVE_CONTENTS_FROM_COLLECTION_GQL",
|
|
7722
8008
|
"RESEARCH_CONTENTS_GQL",
|
|
7723
8009
|
"RESOLVE_ENTITIES_GQL",
|
|
7724
8010
|
"RESOLVE_ENTITY_GQL",
|
|
8011
|
+
"RESTART_CONTENT_GQL",
|
|
7725
8012
|
"RETRIEVE_ENTITIES_GQL",
|
|
7726
8013
|
"RETRIEVE_FACTS_GQL",
|
|
7727
8014
|
"RETRIEVE_SOURCES_GQL",
|
|
@@ -7742,6 +8029,8 @@ __all__ = [
|
|
|
7742
8029
|
"RegexClassificationRuleInput",
|
|
7743
8030
|
"RegexContentClassificationPropertiesInput",
|
|
7744
8031
|
"RegexSourceTypes",
|
|
8032
|
+
"RejectContent",
|
|
8033
|
+
"RejectContentRejectContent",
|
|
7745
8034
|
"RelationshipDirections",
|
|
7746
8035
|
"RemoveContentsFromCollection",
|
|
7747
8036
|
"RemoveContentsFromCollectionRemoveContentsFromCollection",
|
|
@@ -7775,6 +8064,8 @@ __all__ = [
|
|
|
7775
8064
|
"ResolveEntityResolveEntityReference",
|
|
7776
8065
|
"ResolveEntityResolveEntityReferenceObservable",
|
|
7777
8066
|
"ResourceConnectorTypes",
|
|
8067
|
+
"RestartContent",
|
|
8068
|
+
"RestartContentRestartContent",
|
|
7778
8069
|
"RetrievalStrategyInput",
|
|
7779
8070
|
"RetrievalStrategyTypes",
|
|
7780
8071
|
"RetrievalStrategyUpdateInput",
|
|
@@ -7908,6 +8199,10 @@ __all__ = [
|
|
|
7908
8199
|
"SpecificationInput",
|
|
7909
8200
|
"SpecificationTypes",
|
|
7910
8201
|
"SpecificationUpdateInput",
|
|
8202
|
+
"StorageGateInput",
|
|
8203
|
+
"StorageGateRejectionActions",
|
|
8204
|
+
"StorageGateRuleInput",
|
|
8205
|
+
"StorageGateTypes",
|
|
7911
8206
|
"StoragePolicyInput",
|
|
7912
8207
|
"StoragePolicyTypes",
|
|
7913
8208
|
"StorageWorkflowStageInput",
|
|
@@ -8158,6 +8453,7 @@ __all__ = [
|
|
|
8158
8453
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorAzureDocument",
|
|
8159
8454
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorDeepgram",
|
|
8160
8455
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorDocument",
|
|
8456
|
+
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorElevenLabsScribe",
|
|
8161
8457
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorEmail",
|
|
8162
8458
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorMistral",
|
|
8163
8459
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorModelDocument",
|
|
@@ -8167,6 +8463,9 @@ __all__ = [
|
|
|
8167
8463
|
"UpdateWorkflowUpdateWorkflowPreparationSummarizations",
|
|
8168
8464
|
"UpdateWorkflowUpdateWorkflowPreparationSummarizationsSpecification",
|
|
8169
8465
|
"UpdateWorkflowUpdateWorkflowStorage",
|
|
8466
|
+
"UpdateWorkflowUpdateWorkflowStorageGate",
|
|
8467
|
+
"UpdateWorkflowUpdateWorkflowStorageGateRules",
|
|
8468
|
+
"UpdateWorkflowUpdateWorkflowStorageGateSpecification",
|
|
8170
8469
|
"UpdateWorkflowUpdateWorkflowStoragePolicy",
|
|
8171
8470
|
"Upload",
|
|
8172
8471
|
"UpsertAlert",
|
|
@@ -8280,6 +8579,7 @@ __all__ = [
|
|
|
8280
8579
|
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorAzureDocument",
|
|
8281
8580
|
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDeepgram",
|
|
8282
8581
|
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDocument",
|
|
8582
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorElevenLabsScribe",
|
|
8283
8583
|
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorEmail",
|
|
8284
8584
|
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorMistral",
|
|
8285
8585
|
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorModelDocument",
|
|
@@ -8289,6 +8589,9 @@ __all__ = [
|
|
|
8289
8589
|
"UpsertWorkflowUpsertWorkflowPreparationSummarizations",
|
|
8290
8590
|
"UpsertWorkflowUpsertWorkflowPreparationSummarizationsSpecification",
|
|
8291
8591
|
"UpsertWorkflowUpsertWorkflowStorage",
|
|
8592
|
+
"UpsertWorkflowUpsertWorkflowStorageGate",
|
|
8593
|
+
"UpsertWorkflowUpsertWorkflowStorageGateRules",
|
|
8594
|
+
"UpsertWorkflowUpsertWorkflowStorageGateSpecification",
|
|
8292
8595
|
"UpsertWorkflowUpsertWorkflowStoragePolicy",
|
|
8293
8596
|
"UserFilter",
|
|
8294
8597
|
"UserInput",
|