graphlit-client 1.0.20260131001__py3-none-any.whl → 1.0.20260203001__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 +76 -48
- graphlit_api/client.py +147 -0
- graphlit_api/count_emotions.py +21 -0
- graphlit_api/create_emotion.py +22 -0
- graphlit_api/create_workflow.py +5 -0
- graphlit_api/delete_all_emotions.py +23 -0
- graphlit_api/delete_emotion.py +23 -0
- graphlit_api/delete_emotions.py +23 -0
- graphlit_api/enums.py +14 -0
- graphlit_api/extract_observables.py +6 -0
- graphlit_api/get_content.py +0 -55
- graphlit_api/get_conversation.py +0 -57
- graphlit_api/get_emotion.py +29 -0
- graphlit_api/get_fact.py +2 -1
- graphlit_api/get_feed.py +2 -0
- graphlit_api/get_specification.py +2 -0
- graphlit_api/get_workflow.py +5 -0
- graphlit_api/input_types.py +73 -0
- graphlit_api/lookup_contents.py +0 -63
- graphlit_api/operations.py +132 -103
- graphlit_api/query_emotions.py +35 -0
- graphlit_api/query_facts.py +2 -1
- graphlit_api/query_facts_clusters.py +2 -1
- graphlit_api/query_feeds.py +2 -0
- graphlit_api/query_specifications.py +2 -0
- graphlit_api/query_workflows.py +5 -0
- graphlit_api/retrieve_facts.py +8 -1
- graphlit_api/update_emotion.py +22 -0
- graphlit_api/update_workflow.py +5 -0
- graphlit_api/upsert_workflow.py +5 -0
- {graphlit_client-1.0.20260131001.dist-info → graphlit_client-1.0.20260203001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20260131001.dist-info → graphlit_client-1.0.20260203001.dist-info}/RECORD +35 -27
- {graphlit_client-1.0.20260131001.dist-info → graphlit_client-1.0.20260203001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20260131001.dist-info → graphlit_client-1.0.20260203001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20260131001.dist-info → graphlit_client-1.0.20260203001.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
|
@@ -95,6 +95,7 @@ from .count_conversations import (
|
|
|
95
95
|
CountConversations,
|
|
96
96
|
CountConversationsCountConversations,
|
|
97
97
|
)
|
|
98
|
+
from .count_emotions import CountEmotions, CountEmotionsCountEmotions
|
|
98
99
|
from .count_events import CountEvents, CountEventsCountEvents
|
|
99
100
|
from .count_facts import CountFacts, CountFactsCountFacts
|
|
100
101
|
from .count_feeds import CountFeeds, CountFeedsCountFeeds
|
|
@@ -166,6 +167,7 @@ from .create_conversation import (
|
|
|
166
167
|
CreateConversation,
|
|
167
168
|
CreateConversationCreateConversation,
|
|
168
169
|
)
|
|
170
|
+
from .create_emotion import CreateEmotion, CreateEmotionCreateEmotion
|
|
169
171
|
from .create_event import CreateEvent, CreateEventCreateEvent
|
|
170
172
|
from .create_fact import CreateFact, CreateFactCreateFact
|
|
171
173
|
from .create_feed import CreateFeed, CreateFeedCreateFeed
|
|
@@ -315,6 +317,7 @@ from .create_workflow import (
|
|
|
315
317
|
CreateWorkflowCreateWorkflowExtractionJobsConnector,
|
|
316
318
|
CreateWorkflowCreateWorkflowExtractionJobsConnectorAzureImage,
|
|
317
319
|
CreateWorkflowCreateWorkflowExtractionJobsConnectorAzureText,
|
|
320
|
+
CreateWorkflowCreateWorkflowExtractionJobsConnectorHume,
|
|
318
321
|
CreateWorkflowCreateWorkflowExtractionJobsConnectorModelImage,
|
|
319
322
|
CreateWorkflowCreateWorkflowExtractionJobsConnectorModelImageSpecification,
|
|
320
323
|
CreateWorkflowCreateWorkflowExtractionJobsConnectorModelText,
|
|
@@ -365,6 +368,7 @@ from .delete_all_conversations import (
|
|
|
365
368
|
DeleteAllConversations,
|
|
366
369
|
DeleteAllConversationsDeleteAllConversations,
|
|
367
370
|
)
|
|
371
|
+
from .delete_all_emotions import DeleteAllEmotions, DeleteAllEmotionsDeleteAllEmotions
|
|
368
372
|
from .delete_all_events import DeleteAllEvents, DeleteAllEventsDeleteAllEvents
|
|
369
373
|
from .delete_all_facts import DeleteAllFacts, DeleteAllFactsDeleteAllFacts
|
|
370
374
|
from .delete_all_feeds import DeleteAllFeeds, DeleteAllFeedsDeleteAllFeeds
|
|
@@ -457,6 +461,8 @@ from .delete_conversations import (
|
|
|
457
461
|
DeleteConversations,
|
|
458
462
|
DeleteConversationsDeleteConversations,
|
|
459
463
|
)
|
|
464
|
+
from .delete_emotion import DeleteEmotion, DeleteEmotionDeleteEmotion
|
|
465
|
+
from .delete_emotions import DeleteEmotions, DeleteEmotionsDeleteEmotions
|
|
460
466
|
from .delete_event import DeleteEvent, DeleteEventDeleteEvent
|
|
461
467
|
from .delete_events import DeleteEvents, DeleteEventsDeleteEvents
|
|
462
468
|
from .delete_fact import DeleteFact, DeleteFactDeleteFact
|
|
@@ -672,6 +678,7 @@ from .enums import (
|
|
|
672
678
|
ElevenLabsScribeModels,
|
|
673
679
|
EmailListingTypes,
|
|
674
680
|
EmbeddingTypes,
|
|
681
|
+
EmotionFacetTypes,
|
|
675
682
|
EntityEnrichmentServiceTypes,
|
|
676
683
|
EntityExtractionServiceTypes,
|
|
677
684
|
EntityResolutionStrategyTypes,
|
|
@@ -732,6 +739,7 @@ from .enums import (
|
|
|
732
739
|
MedicalStudyFacetTypes,
|
|
733
740
|
MedicalTestFacetTypes,
|
|
734
741
|
MedicalTherapyFacetTypes,
|
|
742
|
+
MeetingContentTypes,
|
|
735
743
|
MetadataTypes,
|
|
736
744
|
MicrosoftCalendarAuthenticationTypes,
|
|
737
745
|
MicrosoftContactsAuthenticationTypes,
|
|
@@ -822,6 +830,7 @@ from .extract_observables import (
|
|
|
822
830
|
ExtractObservables,
|
|
823
831
|
ExtractObservablesExtractObservables,
|
|
824
832
|
ExtractObservablesExtractObservablesCategories,
|
|
833
|
+
ExtractObservablesExtractObservablesEmotions,
|
|
825
834
|
ExtractObservablesExtractObservablesEvents,
|
|
826
835
|
ExtractObservablesExtractObservablesInvestmentFunds,
|
|
827
836
|
ExtractObservablesExtractObservablesInvestments,
|
|
@@ -973,14 +982,6 @@ from .get_content import (
|
|
|
973
982
|
GetContentContentEventRecurrence,
|
|
974
983
|
GetContentContentEventReminders,
|
|
975
984
|
GetContentContentFacts,
|
|
976
|
-
GetContentContentFactsAssertions,
|
|
977
|
-
GetContentContentFactsAssertionsMentions,
|
|
978
|
-
GetContentContentFactsAssertionsMentionsObservable,
|
|
979
|
-
GetContentContentFactsContent,
|
|
980
|
-
GetContentContentFactsConversation,
|
|
981
|
-
GetContentContentFactsFeeds,
|
|
982
|
-
GetContentContentFactsMentions,
|
|
983
|
-
GetContentContentFactsMentionsObservable,
|
|
984
985
|
GetContentContentFeed,
|
|
985
986
|
GetContentContentFrames,
|
|
986
987
|
GetContentContentH3,
|
|
@@ -1046,14 +1047,6 @@ from .get_conversation import (
|
|
|
1046
1047
|
GetConversationConversationAugmentedFilterUsers,
|
|
1047
1048
|
GetConversationConversationAugmentedFilterWorkflows,
|
|
1048
1049
|
GetConversationConversationFacts,
|
|
1049
|
-
GetConversationConversationFactsAssertions,
|
|
1050
|
-
GetConversationConversationFactsAssertionsMentions,
|
|
1051
|
-
GetConversationConversationFactsAssertionsMentionsObservable,
|
|
1052
|
-
GetConversationConversationFactsContent,
|
|
1053
|
-
GetConversationConversationFactsConversation,
|
|
1054
|
-
GetConversationConversationFactsFeeds,
|
|
1055
|
-
GetConversationConversationFactsMentions,
|
|
1056
|
-
GetConversationConversationFactsMentionsObservable,
|
|
1057
1050
|
GetConversationConversationFallbacks,
|
|
1058
1051
|
GetConversationConversationFilter,
|
|
1059
1052
|
GetConversationConversationFilterAnd,
|
|
@@ -1099,6 +1092,7 @@ from .get_conversation import (
|
|
|
1099
1092
|
GetConversationConversationTurns,
|
|
1100
1093
|
GetConversationConversationTurnsMessages,
|
|
1101
1094
|
)
|
|
1095
|
+
from .get_emotion import GetEmotion, GetEmotionEmotion, GetEmotionEmotionFeeds
|
|
1102
1096
|
from .get_event import (
|
|
1103
1097
|
GetEvent,
|
|
1104
1098
|
GetEventEvent,
|
|
@@ -1604,6 +1598,7 @@ from .get_workflow import (
|
|
|
1604
1598
|
GetWorkflowWorkflowExtractionJobsConnector,
|
|
1605
1599
|
GetWorkflowWorkflowExtractionJobsConnectorAzureImage,
|
|
1606
1600
|
GetWorkflowWorkflowExtractionJobsConnectorAzureText,
|
|
1601
|
+
GetWorkflowWorkflowExtractionJobsConnectorHume,
|
|
1607
1602
|
GetWorkflowWorkflowExtractionJobsConnectorModelImage,
|
|
1608
1603
|
GetWorkflowWorkflowExtractionJobsConnectorModelImageSpecification,
|
|
1609
1604
|
GetWorkflowWorkflowExtractionJobsConnectorModelText,
|
|
@@ -1831,6 +1826,10 @@ from .input_types import (
|
|
|
1831
1826
|
EmailMetadataInput,
|
|
1832
1827
|
EmailPreparationPropertiesInput,
|
|
1833
1828
|
EmbeddingsStrategyInput,
|
|
1829
|
+
EmotionFacetInput,
|
|
1830
|
+
EmotionFilter,
|
|
1831
|
+
EmotionInput,
|
|
1832
|
+
EmotionUpdateInput,
|
|
1834
1833
|
EnrichmentWorkflowJobInput,
|
|
1835
1834
|
EnrichmentWorkflowStageInput,
|
|
1836
1835
|
EntityClustersInput,
|
|
@@ -1914,6 +1913,7 @@ from .input_types import (
|
|
|
1914
1913
|
HubSpotMeetingPropertiesUpdateInput,
|
|
1915
1914
|
HubSpotTasksFeedPropertiesInput,
|
|
1916
1915
|
HubSpotTasksFeedPropertiesUpdateInput,
|
|
1916
|
+
HumeExtractionPropertiesInput,
|
|
1917
1917
|
ImageMetadataInput,
|
|
1918
1918
|
IndexingWorkflowJobInput,
|
|
1919
1919
|
IndexingWorkflowStageInput,
|
|
@@ -2197,14 +2197,6 @@ from .lookup_contents import (
|
|
|
2197
2197
|
LookupContentsLookupContentsResultsEventRecurrence,
|
|
2198
2198
|
LookupContentsLookupContentsResultsEventReminders,
|
|
2199
2199
|
LookupContentsLookupContentsResultsFacts,
|
|
2200
|
-
LookupContentsLookupContentsResultsFactsAssertions,
|
|
2201
|
-
LookupContentsLookupContentsResultsFactsAssertionsMentions,
|
|
2202
|
-
LookupContentsLookupContentsResultsFactsAssertionsMentionsObservable,
|
|
2203
|
-
LookupContentsLookupContentsResultsFactsContent,
|
|
2204
|
-
LookupContentsLookupContentsResultsFactsConversation,
|
|
2205
|
-
LookupContentsLookupContentsResultsFactsFeeds,
|
|
2206
|
-
LookupContentsLookupContentsResultsFactsMentions,
|
|
2207
|
-
LookupContentsLookupContentsResultsFactsMentionsObservable,
|
|
2208
2200
|
LookupContentsLookupContentsResultsFeed,
|
|
2209
2201
|
LookupContentsLookupContentsResultsFrames,
|
|
2210
2202
|
LookupContentsLookupContentsResultsH3,
|
|
@@ -2270,6 +2262,7 @@ from .operations import (
|
|
|
2270
2262
|
COUNT_CONNECTORS_GQL,
|
|
2271
2263
|
COUNT_CONTENTS_GQL,
|
|
2272
2264
|
COUNT_CONVERSATIONS_GQL,
|
|
2265
|
+
COUNT_EMOTIONS_GQL,
|
|
2273
2266
|
COUNT_EVENTS_GQL,
|
|
2274
2267
|
COUNT_FACTS_GQL,
|
|
2275
2268
|
COUNT_FEEDS_GQL,
|
|
@@ -2302,6 +2295,7 @@ from .operations import (
|
|
|
2302
2295
|
CREATE_COLLECTION_GQL,
|
|
2303
2296
|
CREATE_CONNECTOR_GQL,
|
|
2304
2297
|
CREATE_CONVERSATION_GQL,
|
|
2298
|
+
CREATE_EMOTION_GQL,
|
|
2305
2299
|
CREATE_EVENT_GQL,
|
|
2306
2300
|
CREATE_FACT_GQL,
|
|
2307
2301
|
CREATE_FEED_GQL,
|
|
@@ -2337,6 +2331,7 @@ from .operations import (
|
|
|
2337
2331
|
DELETE_ALL_COLLECTIONS_GQL,
|
|
2338
2332
|
DELETE_ALL_CONTENTS_GQL,
|
|
2339
2333
|
DELETE_ALL_CONVERSATIONS_GQL,
|
|
2334
|
+
DELETE_ALL_EMOTIONS_GQL,
|
|
2340
2335
|
DELETE_ALL_EVENTS_GQL,
|
|
2341
2336
|
DELETE_ALL_FACTS_GQL,
|
|
2342
2337
|
DELETE_ALL_FEEDS_GQL,
|
|
@@ -2372,6 +2367,8 @@ from .operations import (
|
|
|
2372
2367
|
DELETE_CONTENTS_GQL,
|
|
2373
2368
|
DELETE_CONVERSATION_GQL,
|
|
2374
2369
|
DELETE_CONVERSATIONS_GQL,
|
|
2370
|
+
DELETE_EMOTION_GQL,
|
|
2371
|
+
DELETE_EMOTIONS_GQL,
|
|
2375
2372
|
DELETE_EVENT_GQL,
|
|
2376
2373
|
DELETE_EVENTS_GQL,
|
|
2377
2374
|
DELETE_FACT_GQL,
|
|
@@ -2449,6 +2446,7 @@ from .operations import (
|
|
|
2449
2446
|
GET_CONNECTOR_GQL,
|
|
2450
2447
|
GET_CONTENT_GQL,
|
|
2451
2448
|
GET_CONVERSATION_GQL,
|
|
2449
|
+
GET_EMOTION_GQL,
|
|
2452
2450
|
GET_EVENT_GQL,
|
|
2453
2451
|
GET_FACT_GQL,
|
|
2454
2452
|
GET_FEED_GQL,
|
|
@@ -2523,6 +2521,7 @@ from .operations import (
|
|
|
2523
2521
|
QUERY_DISCORD_CHANNELS_GQL,
|
|
2524
2522
|
QUERY_DISCORD_GUILDS_GQL,
|
|
2525
2523
|
QUERY_DROPBOX_FOLDERS_GQL,
|
|
2524
|
+
QUERY_EMOTIONS_GQL,
|
|
2526
2525
|
QUERY_EVENTS_CLUSTERS_GQL,
|
|
2527
2526
|
QUERY_EVENTS_GQL,
|
|
2528
2527
|
QUERY_FACTS_CLUSTERS_GQL,
|
|
@@ -2626,6 +2625,7 @@ from .operations import (
|
|
|
2626
2625
|
UPDATE_CONNECTOR_GQL,
|
|
2627
2626
|
UPDATE_CONTENT_GQL,
|
|
2628
2627
|
UPDATE_CONVERSATION_GQL,
|
|
2628
|
+
UPDATE_EMOTION_GQL,
|
|
2629
2629
|
UPDATE_EVENT_GQL,
|
|
2630
2630
|
UPDATE_FACT_GQL,
|
|
2631
2631
|
UPDATE_FEED_GQL,
|
|
@@ -3144,6 +3144,12 @@ from .query_dropbox_folders import (
|
|
|
3144
3144
|
QueryDropboxFoldersDropboxFolders,
|
|
3145
3145
|
QueryDropboxFoldersDropboxFoldersResults,
|
|
3146
3146
|
)
|
|
3147
|
+
from .query_emotions import (
|
|
3148
|
+
QueryEmotions,
|
|
3149
|
+
QueryEmotionsEmotions,
|
|
3150
|
+
QueryEmotionsEmotionsResults,
|
|
3151
|
+
QueryEmotionsEmotionsResultsFeeds,
|
|
3152
|
+
)
|
|
3147
3153
|
from .query_events import (
|
|
3148
3154
|
QueryEvents,
|
|
3149
3155
|
QueryEventsEvents,
|
|
@@ -4125,6 +4131,7 @@ from .query_workflows import (
|
|
|
4125
4131
|
QueryWorkflowsWorkflowsResultsExtractionJobsConnector,
|
|
4126
4132
|
QueryWorkflowsWorkflowsResultsExtractionJobsConnectorAzureImage,
|
|
4127
4133
|
QueryWorkflowsWorkflowsResultsExtractionJobsConnectorAzureText,
|
|
4134
|
+
QueryWorkflowsWorkflowsResultsExtractionJobsConnectorHume,
|
|
4128
4135
|
QueryWorkflowsWorkflowsResultsExtractionJobsConnectorModelImage,
|
|
4129
4136
|
QueryWorkflowsWorkflowsResultsExtractionJobsConnectorModelImageSpecification,
|
|
4130
4137
|
QueryWorkflowsWorkflowsResultsExtractionJobsConnectorModelText,
|
|
@@ -4203,6 +4210,7 @@ from .retrieve_facts import (
|
|
|
4203
4210
|
RetrieveFactsRetrieveFactsResultsFactFeeds,
|
|
4204
4211
|
RetrieveFactsRetrieveFactsResultsFactMentions,
|
|
4205
4212
|
RetrieveFactsRetrieveFactsResultsFactMentionsObservable,
|
|
4213
|
+
RetrieveFactsRetrieveFactsResultsFactOwner,
|
|
4206
4214
|
)
|
|
4207
4215
|
from .retrieve_sources import (
|
|
4208
4216
|
RetrieveSources,
|
|
@@ -4321,6 +4329,7 @@ from .update_conversation import (
|
|
|
4321
4329
|
UpdateConversation,
|
|
4322
4330
|
UpdateConversationUpdateConversation,
|
|
4323
4331
|
)
|
|
4332
|
+
from .update_emotion import UpdateEmotion, UpdateEmotionUpdateEmotion
|
|
4324
4333
|
from .update_event import UpdateEvent, UpdateEventUpdateEvent
|
|
4325
4334
|
from .update_fact import UpdateFact, UpdateFactUpdateFact
|
|
4326
4335
|
from .update_feed import UpdateFeed, UpdateFeedUpdateFeed
|
|
@@ -4471,6 +4480,7 @@ from .update_workflow import (
|
|
|
4471
4480
|
UpdateWorkflowUpdateWorkflowExtractionJobsConnector,
|
|
4472
4481
|
UpdateWorkflowUpdateWorkflowExtractionJobsConnectorAzureImage,
|
|
4473
4482
|
UpdateWorkflowUpdateWorkflowExtractionJobsConnectorAzureText,
|
|
4483
|
+
UpdateWorkflowUpdateWorkflowExtractionJobsConnectorHume,
|
|
4474
4484
|
UpdateWorkflowUpdateWorkflowExtractionJobsConnectorModelImage,
|
|
4475
4485
|
UpdateWorkflowUpdateWorkflowExtractionJobsConnectorModelImageSpecification,
|
|
4476
4486
|
UpdateWorkflowUpdateWorkflowExtractionJobsConnectorModelText,
|
|
@@ -4599,6 +4609,7 @@ from .upsert_workflow import (
|
|
|
4599
4609
|
UpsertWorkflowUpsertWorkflowExtractionJobsConnector,
|
|
4600
4610
|
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureImage,
|
|
4601
4611
|
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureText,
|
|
4612
|
+
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorHume,
|
|
4602
4613
|
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImage,
|
|
4603
4614
|
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImageSpecification,
|
|
4604
4615
|
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelText,
|
|
@@ -4735,6 +4746,7 @@ __all__ = [
|
|
|
4735
4746
|
"COUNT_CONNECTORS_GQL",
|
|
4736
4747
|
"COUNT_CONTENTS_GQL",
|
|
4737
4748
|
"COUNT_CONVERSATIONS_GQL",
|
|
4749
|
+
"COUNT_EMOTIONS_GQL",
|
|
4738
4750
|
"COUNT_EVENTS_GQL",
|
|
4739
4751
|
"COUNT_FACTS_GQL",
|
|
4740
4752
|
"COUNT_FEEDS_GQL",
|
|
@@ -4767,6 +4779,7 @@ __all__ = [
|
|
|
4767
4779
|
"CREATE_COLLECTION_GQL",
|
|
4768
4780
|
"CREATE_CONNECTOR_GQL",
|
|
4769
4781
|
"CREATE_CONVERSATION_GQL",
|
|
4782
|
+
"CREATE_EMOTION_GQL",
|
|
4770
4783
|
"CREATE_EVENT_GQL",
|
|
4771
4784
|
"CREATE_FACT_GQL",
|
|
4772
4785
|
"CREATE_FEED_GQL",
|
|
@@ -4938,6 +4951,8 @@ __all__ = [
|
|
|
4938
4951
|
"CountContentsCountContents",
|
|
4939
4952
|
"CountConversations",
|
|
4940
4953
|
"CountConversationsCountConversations",
|
|
4954
|
+
"CountEmotions",
|
|
4955
|
+
"CountEmotionsCountEmotions",
|
|
4941
4956
|
"CountEvents",
|
|
4942
4957
|
"CountEventsCountEvents",
|
|
4943
4958
|
"CountFacts",
|
|
@@ -5002,6 +5017,8 @@ __all__ = [
|
|
|
5002
5017
|
"CreateConnectorCreateConnector",
|
|
5003
5018
|
"CreateConversation",
|
|
5004
5019
|
"CreateConversationCreateConversation",
|
|
5020
|
+
"CreateEmotion",
|
|
5021
|
+
"CreateEmotionCreateEmotion",
|
|
5005
5022
|
"CreateEvent",
|
|
5006
5023
|
"CreateEventCreateEvent",
|
|
5007
5024
|
"CreateFact",
|
|
@@ -5138,6 +5155,7 @@ __all__ = [
|
|
|
5138
5155
|
"CreateWorkflowCreateWorkflowExtractionJobsConnector",
|
|
5139
5156
|
"CreateWorkflowCreateWorkflowExtractionJobsConnectorAzureImage",
|
|
5140
5157
|
"CreateWorkflowCreateWorkflowExtractionJobsConnectorAzureText",
|
|
5158
|
+
"CreateWorkflowCreateWorkflowExtractionJobsConnectorHume",
|
|
5141
5159
|
"CreateWorkflowCreateWorkflowExtractionJobsConnectorModelImage",
|
|
5142
5160
|
"CreateWorkflowCreateWorkflowExtractionJobsConnectorModelImageSpecification",
|
|
5143
5161
|
"CreateWorkflowCreateWorkflowExtractionJobsConnectorModelText",
|
|
@@ -5178,6 +5196,7 @@ __all__ = [
|
|
|
5178
5196
|
"DELETE_ALL_COLLECTIONS_GQL",
|
|
5179
5197
|
"DELETE_ALL_CONTENTS_GQL",
|
|
5180
5198
|
"DELETE_ALL_CONVERSATIONS_GQL",
|
|
5199
|
+
"DELETE_ALL_EMOTIONS_GQL",
|
|
5181
5200
|
"DELETE_ALL_EVENTS_GQL",
|
|
5182
5201
|
"DELETE_ALL_FACTS_GQL",
|
|
5183
5202
|
"DELETE_ALL_FEEDS_GQL",
|
|
@@ -5213,6 +5232,8 @@ __all__ = [
|
|
|
5213
5232
|
"DELETE_CONTENT_GQL",
|
|
5214
5233
|
"DELETE_CONVERSATIONS_GQL",
|
|
5215
5234
|
"DELETE_CONVERSATION_GQL",
|
|
5235
|
+
"DELETE_EMOTIONS_GQL",
|
|
5236
|
+
"DELETE_EMOTION_GQL",
|
|
5216
5237
|
"DELETE_EVENTS_GQL",
|
|
5217
5238
|
"DELETE_EVENT_GQL",
|
|
5218
5239
|
"DELETE_FACTS_GQL",
|
|
@@ -5293,6 +5314,8 @@ __all__ = [
|
|
|
5293
5314
|
"DeleteAllContentsDeleteAllContents",
|
|
5294
5315
|
"DeleteAllConversations",
|
|
5295
5316
|
"DeleteAllConversationsDeleteAllConversations",
|
|
5317
|
+
"DeleteAllEmotions",
|
|
5318
|
+
"DeleteAllEmotionsDeleteAllEmotions",
|
|
5296
5319
|
"DeleteAllEvents",
|
|
5297
5320
|
"DeleteAllEventsDeleteAllEvents",
|
|
5298
5321
|
"DeleteAllFacts",
|
|
@@ -5363,6 +5386,10 @@ __all__ = [
|
|
|
5363
5386
|
"DeleteConversationDeleteConversation",
|
|
5364
5387
|
"DeleteConversations",
|
|
5365
5388
|
"DeleteConversationsDeleteConversations",
|
|
5389
|
+
"DeleteEmotion",
|
|
5390
|
+
"DeleteEmotionDeleteEmotion",
|
|
5391
|
+
"DeleteEmotions",
|
|
5392
|
+
"DeleteEmotionsDeleteEmotions",
|
|
5366
5393
|
"DeleteEvent",
|
|
5367
5394
|
"DeleteEventDeleteEvent",
|
|
5368
5395
|
"DeleteEvents",
|
|
@@ -5530,6 +5557,11 @@ __all__ = [
|
|
|
5530
5557
|
"EmailPreparationPropertiesInput",
|
|
5531
5558
|
"EmbeddingTypes",
|
|
5532
5559
|
"EmbeddingsStrategyInput",
|
|
5560
|
+
"EmotionFacetInput",
|
|
5561
|
+
"EmotionFacetTypes",
|
|
5562
|
+
"EmotionFilter",
|
|
5563
|
+
"EmotionInput",
|
|
5564
|
+
"EmotionUpdateInput",
|
|
5533
5565
|
"EnableAlert",
|
|
5534
5566
|
"EnableAlertEnableAlert",
|
|
5535
5567
|
"EnableFeed",
|
|
@@ -5574,6 +5606,7 @@ __all__ = [
|
|
|
5574
5606
|
"ExtractObservables",
|
|
5575
5607
|
"ExtractObservablesExtractObservables",
|
|
5576
5608
|
"ExtractObservablesExtractObservablesCategories",
|
|
5609
|
+
"ExtractObservablesExtractObservablesEmotions",
|
|
5577
5610
|
"ExtractObservablesExtractObservablesEvents",
|
|
5578
5611
|
"ExtractObservablesExtractObservablesInvestmentFunds",
|
|
5579
5612
|
"ExtractObservablesExtractObservablesInvestments",
|
|
@@ -5666,6 +5699,7 @@ __all__ = [
|
|
|
5666
5699
|
"GET_CONNECTOR_GQL",
|
|
5667
5700
|
"GET_CONTENT_GQL",
|
|
5668
5701
|
"GET_CONVERSATION_GQL",
|
|
5702
|
+
"GET_EMOTION_GQL",
|
|
5669
5703
|
"GET_EVENT_GQL",
|
|
5670
5704
|
"GET_FACT_GQL",
|
|
5671
5705
|
"GET_FEED_GQL",
|
|
@@ -5785,14 +5819,6 @@ __all__ = [
|
|
|
5785
5819
|
"GetContentContentEventRecurrence",
|
|
5786
5820
|
"GetContentContentEventReminders",
|
|
5787
5821
|
"GetContentContentFacts",
|
|
5788
|
-
"GetContentContentFactsAssertions",
|
|
5789
|
-
"GetContentContentFactsAssertionsMentions",
|
|
5790
|
-
"GetContentContentFactsAssertionsMentionsObservable",
|
|
5791
|
-
"GetContentContentFactsContent",
|
|
5792
|
-
"GetContentContentFactsConversation",
|
|
5793
|
-
"GetContentContentFactsFeeds",
|
|
5794
|
-
"GetContentContentFactsMentions",
|
|
5795
|
-
"GetContentContentFactsMentionsObservable",
|
|
5796
5822
|
"GetContentContentFeed",
|
|
5797
5823
|
"GetContentContentFrames",
|
|
5798
5824
|
"GetContentContentH3",
|
|
@@ -5856,14 +5882,6 @@ __all__ = [
|
|
|
5856
5882
|
"GetConversationConversationAugmentedFilterUsers",
|
|
5857
5883
|
"GetConversationConversationAugmentedFilterWorkflows",
|
|
5858
5884
|
"GetConversationConversationFacts",
|
|
5859
|
-
"GetConversationConversationFactsAssertions",
|
|
5860
|
-
"GetConversationConversationFactsAssertionsMentions",
|
|
5861
|
-
"GetConversationConversationFactsAssertionsMentionsObservable",
|
|
5862
|
-
"GetConversationConversationFactsContent",
|
|
5863
|
-
"GetConversationConversationFactsConversation",
|
|
5864
|
-
"GetConversationConversationFactsFeeds",
|
|
5865
|
-
"GetConversationConversationFactsMentions",
|
|
5866
|
-
"GetConversationConversationFactsMentionsObservable",
|
|
5867
5885
|
"GetConversationConversationFallbacks",
|
|
5868
5886
|
"GetConversationConversationFilter",
|
|
5869
5887
|
"GetConversationConversationFilterAnd",
|
|
@@ -5908,6 +5926,9 @@ __all__ = [
|
|
|
5908
5926
|
"GetConversationConversationSpecification",
|
|
5909
5927
|
"GetConversationConversationTurns",
|
|
5910
5928
|
"GetConversationConversationTurnsMessages",
|
|
5929
|
+
"GetEmotion",
|
|
5930
|
+
"GetEmotionEmotion",
|
|
5931
|
+
"GetEmotionEmotionFeeds",
|
|
5911
5932
|
"GetEvent",
|
|
5912
5933
|
"GetEventEvent",
|
|
5913
5934
|
"GetEventEventAddress",
|
|
@@ -6358,6 +6379,7 @@ __all__ = [
|
|
|
6358
6379
|
"GetWorkflowWorkflowExtractionJobsConnector",
|
|
6359
6380
|
"GetWorkflowWorkflowExtractionJobsConnectorAzureImage",
|
|
6360
6381
|
"GetWorkflowWorkflowExtractionJobsConnectorAzureText",
|
|
6382
|
+
"GetWorkflowWorkflowExtractionJobsConnectorHume",
|
|
6361
6383
|
"GetWorkflowWorkflowExtractionJobsConnectorModelImage",
|
|
6362
6384
|
"GetWorkflowWorkflowExtractionJobsConnectorModelImageSpecification",
|
|
6363
6385
|
"GetWorkflowWorkflowExtractionJobsConnectorModelText",
|
|
@@ -6463,6 +6485,7 @@ __all__ = [
|
|
|
6463
6485
|
"HubSpotMeetingPropertiesUpdateInput",
|
|
6464
6486
|
"HubSpotTasksFeedPropertiesInput",
|
|
6465
6487
|
"HubSpotTasksFeedPropertiesUpdateInput",
|
|
6488
|
+
"HumeExtractionPropertiesInput",
|
|
6466
6489
|
"INGEST_BATCH_GQL",
|
|
6467
6490
|
"INGEST_ENCODED_FILE_GQL",
|
|
6468
6491
|
"INGEST_EVENT_GQL",
|
|
@@ -6605,14 +6628,6 @@ __all__ = [
|
|
|
6605
6628
|
"LookupContentsLookupContentsResultsEventRecurrence",
|
|
6606
6629
|
"LookupContentsLookupContentsResultsEventReminders",
|
|
6607
6630
|
"LookupContentsLookupContentsResultsFacts",
|
|
6608
|
-
"LookupContentsLookupContentsResultsFactsAssertions",
|
|
6609
|
-
"LookupContentsLookupContentsResultsFactsAssertionsMentions",
|
|
6610
|
-
"LookupContentsLookupContentsResultsFactsAssertionsMentionsObservable",
|
|
6611
|
-
"LookupContentsLookupContentsResultsFactsContent",
|
|
6612
|
-
"LookupContentsLookupContentsResultsFactsConversation",
|
|
6613
|
-
"LookupContentsLookupContentsResultsFactsFeeds",
|
|
6614
|
-
"LookupContentsLookupContentsResultsFactsMentions",
|
|
6615
|
-
"LookupContentsLookupContentsResultsFactsMentionsObservable",
|
|
6616
6631
|
"LookupContentsLookupContentsResultsFeed",
|
|
6617
6632
|
"LookupContentsLookupContentsResultsFrames",
|
|
6618
6633
|
"LookupContentsLookupContentsResultsH3",
|
|
@@ -6723,6 +6738,7 @@ __all__ = [
|
|
|
6723
6738
|
"MedicalTherapyFilter",
|
|
6724
6739
|
"MedicalTherapyInput",
|
|
6725
6740
|
"MedicalTherapyUpdateInput",
|
|
6741
|
+
"MeetingContentTypes",
|
|
6726
6742
|
"MeetingFeedPropertiesInput",
|
|
6727
6743
|
"MeetingFeedPropertiesUpdateInput",
|
|
6728
6744
|
"MentionReferenceFilter",
|
|
@@ -6948,6 +6964,7 @@ __all__ = [
|
|
|
6948
6964
|
"QUERY_DISCORD_CHANNELS_GQL",
|
|
6949
6965
|
"QUERY_DISCORD_GUILDS_GQL",
|
|
6950
6966
|
"QUERY_DROPBOX_FOLDERS_GQL",
|
|
6967
|
+
"QUERY_EMOTIONS_GQL",
|
|
6951
6968
|
"QUERY_EVENTS_CLUSTERS_GQL",
|
|
6952
6969
|
"QUERY_EVENTS_GQL",
|
|
6953
6970
|
"QUERY_FACTS_CLUSTERS_GQL",
|
|
@@ -7375,6 +7392,10 @@ __all__ = [
|
|
|
7375
7392
|
"QueryDropboxFolders",
|
|
7376
7393
|
"QueryDropboxFoldersDropboxFolders",
|
|
7377
7394
|
"QueryDropboxFoldersDropboxFoldersResults",
|
|
7395
|
+
"QueryEmotions",
|
|
7396
|
+
"QueryEmotionsEmotions",
|
|
7397
|
+
"QueryEmotionsEmotionsResults",
|
|
7398
|
+
"QueryEmotionsEmotionsResultsFeeds",
|
|
7378
7399
|
"QueryEvents",
|
|
7379
7400
|
"QueryEventsClusters",
|
|
7380
7401
|
"QueryEventsClustersEvents",
|
|
@@ -8219,6 +8240,7 @@ __all__ = [
|
|
|
8219
8240
|
"QueryWorkflowsWorkflowsResultsExtractionJobsConnector",
|
|
8220
8241
|
"QueryWorkflowsWorkflowsResultsExtractionJobsConnectorAzureImage",
|
|
8221
8242
|
"QueryWorkflowsWorkflowsResultsExtractionJobsConnectorAzureText",
|
|
8243
|
+
"QueryWorkflowsWorkflowsResultsExtractionJobsConnectorHume",
|
|
8222
8244
|
"QueryWorkflowsWorkflowsResultsExtractionJobsConnectorModelImage",
|
|
8223
8245
|
"QueryWorkflowsWorkflowsResultsExtractionJobsConnectorModelImageSpecification",
|
|
8224
8246
|
"QueryWorkflowsWorkflowsResultsExtractionJobsConnectorModelText",
|
|
@@ -8335,6 +8357,7 @@ __all__ = [
|
|
|
8335
8357
|
"RetrieveFactsRetrieveFactsResultsFactFeeds",
|
|
8336
8358
|
"RetrieveFactsRetrieveFactsResultsFactMentions",
|
|
8337
8359
|
"RetrieveFactsRetrieveFactsResultsFactMentionsObservable",
|
|
8360
|
+
"RetrieveFactsRetrieveFactsResultsFactOwner",
|
|
8338
8361
|
"RetrieveSources",
|
|
8339
8362
|
"RetrieveSourcesRetrieveSources",
|
|
8340
8363
|
"RetrieveSourcesRetrieveSourcesResults",
|
|
@@ -8494,6 +8517,7 @@ __all__ = [
|
|
|
8494
8517
|
"UPDATE_CONNECTOR_GQL",
|
|
8495
8518
|
"UPDATE_CONTENT_GQL",
|
|
8496
8519
|
"UPDATE_CONVERSATION_GQL",
|
|
8520
|
+
"UPDATE_EMOTION_GQL",
|
|
8497
8521
|
"UPDATE_EVENT_GQL",
|
|
8498
8522
|
"UPDATE_FACT_GQL",
|
|
8499
8523
|
"UPDATE_FEED_GQL",
|
|
@@ -8548,6 +8572,8 @@ __all__ = [
|
|
|
8548
8572
|
"UpdateContentUpdateContentObservationsRelated",
|
|
8549
8573
|
"UpdateConversation",
|
|
8550
8574
|
"UpdateConversationUpdateConversation",
|
|
8575
|
+
"UpdateEmotion",
|
|
8576
|
+
"UpdateEmotionUpdateEmotion",
|
|
8551
8577
|
"UpdateEvent",
|
|
8552
8578
|
"UpdateEventUpdateEvent",
|
|
8553
8579
|
"UpdateFact",
|
|
@@ -8686,6 +8712,7 @@ __all__ = [
|
|
|
8686
8712
|
"UpdateWorkflowUpdateWorkflowExtractionJobsConnector",
|
|
8687
8713
|
"UpdateWorkflowUpdateWorkflowExtractionJobsConnectorAzureImage",
|
|
8688
8714
|
"UpdateWorkflowUpdateWorkflowExtractionJobsConnectorAzureText",
|
|
8715
|
+
"UpdateWorkflowUpdateWorkflowExtractionJobsConnectorHume",
|
|
8689
8716
|
"UpdateWorkflowUpdateWorkflowExtractionJobsConnectorModelImage",
|
|
8690
8717
|
"UpdateWorkflowUpdateWorkflowExtractionJobsConnectorModelImageSpecification",
|
|
8691
8718
|
"UpdateWorkflowUpdateWorkflowExtractionJobsConnectorModelText",
|
|
@@ -8812,6 +8839,7 @@ __all__ = [
|
|
|
8812
8839
|
"UpsertWorkflowUpsertWorkflowExtractionJobsConnector",
|
|
8813
8840
|
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureImage",
|
|
8814
8841
|
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureText",
|
|
8842
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorHume",
|
|
8815
8843
|
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImage",
|
|
8816
8844
|
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImageSpecification",
|
|
8817
8845
|
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelText",
|