graphlit-client 1.0.20260131001__py3-none-any.whl → 1.0.20260205001__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.
Files changed (35) hide show
  1. graphlit_api/__init__.py +78 -48
  2. graphlit_api/client.py +147 -0
  3. graphlit_api/count_emotions.py +21 -0
  4. graphlit_api/create_emotion.py +22 -0
  5. graphlit_api/create_workflow.py +5 -0
  6. graphlit_api/delete_all_emotions.py +23 -0
  7. graphlit_api/delete_emotion.py +23 -0
  8. graphlit_api/delete_emotions.py +23 -0
  9. graphlit_api/enums.py +26 -0
  10. graphlit_api/extract_observables.py +6 -0
  11. graphlit_api/get_content.py +0 -55
  12. graphlit_api/get_conversation.py +0 -57
  13. graphlit_api/get_emotion.py +29 -0
  14. graphlit_api/get_fact.py +2 -1
  15. graphlit_api/get_feed.py +2 -0
  16. graphlit_api/get_specification.py +2 -0
  17. graphlit_api/get_workflow.py +5 -0
  18. graphlit_api/input_types.py +76 -0
  19. graphlit_api/lookup_contents.py +0 -63
  20. graphlit_api/operations.py +132 -103
  21. graphlit_api/query_emotions.py +35 -0
  22. graphlit_api/query_facts.py +2 -1
  23. graphlit_api/query_facts_clusters.py +2 -1
  24. graphlit_api/query_feeds.py +2 -0
  25. graphlit_api/query_specifications.py +2 -0
  26. graphlit_api/query_workflows.py +5 -0
  27. graphlit_api/retrieve_facts.py +8 -1
  28. graphlit_api/update_emotion.py +22 -0
  29. graphlit_api/update_workflow.py +5 -0
  30. graphlit_api/upsert_workflow.py +5 -0
  31. {graphlit_client-1.0.20260131001.dist-info → graphlit_client-1.0.20260205001.dist-info}/METADATA +1 -1
  32. {graphlit_client-1.0.20260131001.dist-info → graphlit_client-1.0.20260205001.dist-info}/RECORD +35 -27
  33. {graphlit_client-1.0.20260131001.dist-info → graphlit_client-1.0.20260205001.dist-info}/WHEEL +0 -0
  34. {graphlit_client-1.0.20260131001.dist-info → graphlit_client-1.0.20260205001.dist-info}/licenses/LICENSE +0 -0
  35. {graphlit_client-1.0.20260131001.dist-info → graphlit_client-1.0.20260205001.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
@@ -626,6 +632,7 @@ from .enrich_places import EnrichPlaces, EnrichPlacesEnrichPlaces
626
632
  from .enrich_products import EnrichProducts, EnrichProductsEnrichProducts
627
633
  from .enums import (
628
634
  AlertTypes,
635
+ AnthropicEffortLevels,
629
636
  AnthropicModels,
630
637
  ApplyPolicy,
631
638
  ArcadeProviders,
@@ -672,6 +679,7 @@ from .enums import (
672
679
  ElevenLabsScribeModels,
673
680
  EmailListingTypes,
674
681
  EmbeddingTypes,
682
+ EmotionFacetTypes,
675
683
  EntityEnrichmentServiceTypes,
676
684
  EntityExtractionServiceTypes,
677
685
  EntityResolutionStrategyTypes,
@@ -732,6 +740,7 @@ from .enums import (
732
740
  MedicalStudyFacetTypes,
733
741
  MedicalTestFacetTypes,
734
742
  MedicalTherapyFacetTypes,
743
+ MeetingContentTypes,
735
744
  MetadataTypes,
736
745
  MicrosoftCalendarAuthenticationTypes,
737
746
  MicrosoftContactsAuthenticationTypes,
@@ -822,6 +831,7 @@ from .extract_observables import (
822
831
  ExtractObservables,
823
832
  ExtractObservablesExtractObservables,
824
833
  ExtractObservablesExtractObservablesCategories,
834
+ ExtractObservablesExtractObservablesEmotions,
825
835
  ExtractObservablesExtractObservablesEvents,
826
836
  ExtractObservablesExtractObservablesInvestmentFunds,
827
837
  ExtractObservablesExtractObservablesInvestments,
@@ -973,14 +983,6 @@ from .get_content import (
973
983
  GetContentContentEventRecurrence,
974
984
  GetContentContentEventReminders,
975
985
  GetContentContentFacts,
976
- GetContentContentFactsAssertions,
977
- GetContentContentFactsAssertionsMentions,
978
- GetContentContentFactsAssertionsMentionsObservable,
979
- GetContentContentFactsContent,
980
- GetContentContentFactsConversation,
981
- GetContentContentFactsFeeds,
982
- GetContentContentFactsMentions,
983
- GetContentContentFactsMentionsObservable,
984
986
  GetContentContentFeed,
985
987
  GetContentContentFrames,
986
988
  GetContentContentH3,
@@ -1046,14 +1048,6 @@ from .get_conversation import (
1046
1048
  GetConversationConversationAugmentedFilterUsers,
1047
1049
  GetConversationConversationAugmentedFilterWorkflows,
1048
1050
  GetConversationConversationFacts,
1049
- GetConversationConversationFactsAssertions,
1050
- GetConversationConversationFactsAssertionsMentions,
1051
- GetConversationConversationFactsAssertionsMentionsObservable,
1052
- GetConversationConversationFactsContent,
1053
- GetConversationConversationFactsConversation,
1054
- GetConversationConversationFactsFeeds,
1055
- GetConversationConversationFactsMentions,
1056
- GetConversationConversationFactsMentionsObservable,
1057
1051
  GetConversationConversationFallbacks,
1058
1052
  GetConversationConversationFilter,
1059
1053
  GetConversationConversationFilterAnd,
@@ -1099,6 +1093,7 @@ from .get_conversation import (
1099
1093
  GetConversationConversationTurns,
1100
1094
  GetConversationConversationTurnsMessages,
1101
1095
  )
1096
+ from .get_emotion import GetEmotion, GetEmotionEmotion, GetEmotionEmotionFeeds
1102
1097
  from .get_event import (
1103
1098
  GetEvent,
1104
1099
  GetEventEvent,
@@ -1604,6 +1599,7 @@ from .get_workflow import (
1604
1599
  GetWorkflowWorkflowExtractionJobsConnector,
1605
1600
  GetWorkflowWorkflowExtractionJobsConnectorAzureImage,
1606
1601
  GetWorkflowWorkflowExtractionJobsConnectorAzureText,
1602
+ GetWorkflowWorkflowExtractionJobsConnectorHume,
1607
1603
  GetWorkflowWorkflowExtractionJobsConnectorModelImage,
1608
1604
  GetWorkflowWorkflowExtractionJobsConnectorModelImageSpecification,
1609
1605
  GetWorkflowWorkflowExtractionJobsConnectorModelText,
@@ -1831,6 +1827,10 @@ from .input_types import (
1831
1827
  EmailMetadataInput,
1832
1828
  EmailPreparationPropertiesInput,
1833
1829
  EmbeddingsStrategyInput,
1830
+ EmotionFacetInput,
1831
+ EmotionFilter,
1832
+ EmotionInput,
1833
+ EmotionUpdateInput,
1834
1834
  EnrichmentWorkflowJobInput,
1835
1835
  EnrichmentWorkflowStageInput,
1836
1836
  EntityClustersInput,
@@ -1914,6 +1914,7 @@ from .input_types import (
1914
1914
  HubSpotMeetingPropertiesUpdateInput,
1915
1915
  HubSpotTasksFeedPropertiesInput,
1916
1916
  HubSpotTasksFeedPropertiesUpdateInput,
1917
+ HumeExtractionPropertiesInput,
1917
1918
  ImageMetadataInput,
1918
1919
  IndexingWorkflowJobInput,
1919
1920
  IndexingWorkflowStageInput,
@@ -2197,14 +2198,6 @@ from .lookup_contents import (
2197
2198
  LookupContentsLookupContentsResultsEventRecurrence,
2198
2199
  LookupContentsLookupContentsResultsEventReminders,
2199
2200
  LookupContentsLookupContentsResultsFacts,
2200
- LookupContentsLookupContentsResultsFactsAssertions,
2201
- LookupContentsLookupContentsResultsFactsAssertionsMentions,
2202
- LookupContentsLookupContentsResultsFactsAssertionsMentionsObservable,
2203
- LookupContentsLookupContentsResultsFactsContent,
2204
- LookupContentsLookupContentsResultsFactsConversation,
2205
- LookupContentsLookupContentsResultsFactsFeeds,
2206
- LookupContentsLookupContentsResultsFactsMentions,
2207
- LookupContentsLookupContentsResultsFactsMentionsObservable,
2208
2201
  LookupContentsLookupContentsResultsFeed,
2209
2202
  LookupContentsLookupContentsResultsFrames,
2210
2203
  LookupContentsLookupContentsResultsH3,
@@ -2270,6 +2263,7 @@ from .operations import (
2270
2263
  COUNT_CONNECTORS_GQL,
2271
2264
  COUNT_CONTENTS_GQL,
2272
2265
  COUNT_CONVERSATIONS_GQL,
2266
+ COUNT_EMOTIONS_GQL,
2273
2267
  COUNT_EVENTS_GQL,
2274
2268
  COUNT_FACTS_GQL,
2275
2269
  COUNT_FEEDS_GQL,
@@ -2302,6 +2296,7 @@ from .operations import (
2302
2296
  CREATE_COLLECTION_GQL,
2303
2297
  CREATE_CONNECTOR_GQL,
2304
2298
  CREATE_CONVERSATION_GQL,
2299
+ CREATE_EMOTION_GQL,
2305
2300
  CREATE_EVENT_GQL,
2306
2301
  CREATE_FACT_GQL,
2307
2302
  CREATE_FEED_GQL,
@@ -2337,6 +2332,7 @@ from .operations import (
2337
2332
  DELETE_ALL_COLLECTIONS_GQL,
2338
2333
  DELETE_ALL_CONTENTS_GQL,
2339
2334
  DELETE_ALL_CONVERSATIONS_GQL,
2335
+ DELETE_ALL_EMOTIONS_GQL,
2340
2336
  DELETE_ALL_EVENTS_GQL,
2341
2337
  DELETE_ALL_FACTS_GQL,
2342
2338
  DELETE_ALL_FEEDS_GQL,
@@ -2372,6 +2368,8 @@ from .operations import (
2372
2368
  DELETE_CONTENTS_GQL,
2373
2369
  DELETE_CONVERSATION_GQL,
2374
2370
  DELETE_CONVERSATIONS_GQL,
2371
+ DELETE_EMOTION_GQL,
2372
+ DELETE_EMOTIONS_GQL,
2375
2373
  DELETE_EVENT_GQL,
2376
2374
  DELETE_EVENTS_GQL,
2377
2375
  DELETE_FACT_GQL,
@@ -2449,6 +2447,7 @@ from .operations import (
2449
2447
  GET_CONNECTOR_GQL,
2450
2448
  GET_CONTENT_GQL,
2451
2449
  GET_CONVERSATION_GQL,
2450
+ GET_EMOTION_GQL,
2452
2451
  GET_EVENT_GQL,
2453
2452
  GET_FACT_GQL,
2454
2453
  GET_FEED_GQL,
@@ -2523,6 +2522,7 @@ from .operations import (
2523
2522
  QUERY_DISCORD_CHANNELS_GQL,
2524
2523
  QUERY_DISCORD_GUILDS_GQL,
2525
2524
  QUERY_DROPBOX_FOLDERS_GQL,
2525
+ QUERY_EMOTIONS_GQL,
2526
2526
  QUERY_EVENTS_CLUSTERS_GQL,
2527
2527
  QUERY_EVENTS_GQL,
2528
2528
  QUERY_FACTS_CLUSTERS_GQL,
@@ -2626,6 +2626,7 @@ from .operations import (
2626
2626
  UPDATE_CONNECTOR_GQL,
2627
2627
  UPDATE_CONTENT_GQL,
2628
2628
  UPDATE_CONVERSATION_GQL,
2629
+ UPDATE_EMOTION_GQL,
2629
2630
  UPDATE_EVENT_GQL,
2630
2631
  UPDATE_FACT_GQL,
2631
2632
  UPDATE_FEED_GQL,
@@ -3144,6 +3145,12 @@ from .query_dropbox_folders import (
3144
3145
  QueryDropboxFoldersDropboxFolders,
3145
3146
  QueryDropboxFoldersDropboxFoldersResults,
3146
3147
  )
3148
+ from .query_emotions import (
3149
+ QueryEmotions,
3150
+ QueryEmotionsEmotions,
3151
+ QueryEmotionsEmotionsResults,
3152
+ QueryEmotionsEmotionsResultsFeeds,
3153
+ )
3147
3154
  from .query_events import (
3148
3155
  QueryEvents,
3149
3156
  QueryEventsEvents,
@@ -4125,6 +4132,7 @@ from .query_workflows import (
4125
4132
  QueryWorkflowsWorkflowsResultsExtractionJobsConnector,
4126
4133
  QueryWorkflowsWorkflowsResultsExtractionJobsConnectorAzureImage,
4127
4134
  QueryWorkflowsWorkflowsResultsExtractionJobsConnectorAzureText,
4135
+ QueryWorkflowsWorkflowsResultsExtractionJobsConnectorHume,
4128
4136
  QueryWorkflowsWorkflowsResultsExtractionJobsConnectorModelImage,
4129
4137
  QueryWorkflowsWorkflowsResultsExtractionJobsConnectorModelImageSpecification,
4130
4138
  QueryWorkflowsWorkflowsResultsExtractionJobsConnectorModelText,
@@ -4203,6 +4211,7 @@ from .retrieve_facts import (
4203
4211
  RetrieveFactsRetrieveFactsResultsFactFeeds,
4204
4212
  RetrieveFactsRetrieveFactsResultsFactMentions,
4205
4213
  RetrieveFactsRetrieveFactsResultsFactMentionsObservable,
4214
+ RetrieveFactsRetrieveFactsResultsFactOwner,
4206
4215
  )
4207
4216
  from .retrieve_sources import (
4208
4217
  RetrieveSources,
@@ -4321,6 +4330,7 @@ from .update_conversation import (
4321
4330
  UpdateConversation,
4322
4331
  UpdateConversationUpdateConversation,
4323
4332
  )
4333
+ from .update_emotion import UpdateEmotion, UpdateEmotionUpdateEmotion
4324
4334
  from .update_event import UpdateEvent, UpdateEventUpdateEvent
4325
4335
  from .update_fact import UpdateFact, UpdateFactUpdateFact
4326
4336
  from .update_feed import UpdateFeed, UpdateFeedUpdateFeed
@@ -4471,6 +4481,7 @@ from .update_workflow import (
4471
4481
  UpdateWorkflowUpdateWorkflowExtractionJobsConnector,
4472
4482
  UpdateWorkflowUpdateWorkflowExtractionJobsConnectorAzureImage,
4473
4483
  UpdateWorkflowUpdateWorkflowExtractionJobsConnectorAzureText,
4484
+ UpdateWorkflowUpdateWorkflowExtractionJobsConnectorHume,
4474
4485
  UpdateWorkflowUpdateWorkflowExtractionJobsConnectorModelImage,
4475
4486
  UpdateWorkflowUpdateWorkflowExtractionJobsConnectorModelImageSpecification,
4476
4487
  UpdateWorkflowUpdateWorkflowExtractionJobsConnectorModelText,
@@ -4599,6 +4610,7 @@ from .upsert_workflow import (
4599
4610
  UpsertWorkflowUpsertWorkflowExtractionJobsConnector,
4600
4611
  UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureImage,
4601
4612
  UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureText,
4613
+ UpsertWorkflowUpsertWorkflowExtractionJobsConnectorHume,
4602
4614
  UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImage,
4603
4615
  UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImageSpecification,
4604
4616
  UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelText,
@@ -4652,6 +4664,7 @@ __all__ = [
4652
4664
  "AlertUpdateInput",
4653
4665
  "AmazonFeedPropertiesInput",
4654
4666
  "AmazonFeedPropertiesUpdateInput",
4667
+ "AnthropicEffortLevels",
4655
4668
  "AnthropicModelPropertiesInput",
4656
4669
  "AnthropicModelPropertiesUpdateInput",
4657
4670
  "AnthropicModels",
@@ -4735,6 +4748,7 @@ __all__ = [
4735
4748
  "COUNT_CONNECTORS_GQL",
4736
4749
  "COUNT_CONTENTS_GQL",
4737
4750
  "COUNT_CONVERSATIONS_GQL",
4751
+ "COUNT_EMOTIONS_GQL",
4738
4752
  "COUNT_EVENTS_GQL",
4739
4753
  "COUNT_FACTS_GQL",
4740
4754
  "COUNT_FEEDS_GQL",
@@ -4767,6 +4781,7 @@ __all__ = [
4767
4781
  "CREATE_COLLECTION_GQL",
4768
4782
  "CREATE_CONNECTOR_GQL",
4769
4783
  "CREATE_CONVERSATION_GQL",
4784
+ "CREATE_EMOTION_GQL",
4770
4785
  "CREATE_EVENT_GQL",
4771
4786
  "CREATE_FACT_GQL",
4772
4787
  "CREATE_FEED_GQL",
@@ -4938,6 +4953,8 @@ __all__ = [
4938
4953
  "CountContentsCountContents",
4939
4954
  "CountConversations",
4940
4955
  "CountConversationsCountConversations",
4956
+ "CountEmotions",
4957
+ "CountEmotionsCountEmotions",
4941
4958
  "CountEvents",
4942
4959
  "CountEventsCountEvents",
4943
4960
  "CountFacts",
@@ -5002,6 +5019,8 @@ __all__ = [
5002
5019
  "CreateConnectorCreateConnector",
5003
5020
  "CreateConversation",
5004
5021
  "CreateConversationCreateConversation",
5022
+ "CreateEmotion",
5023
+ "CreateEmotionCreateEmotion",
5005
5024
  "CreateEvent",
5006
5025
  "CreateEventCreateEvent",
5007
5026
  "CreateFact",
@@ -5138,6 +5157,7 @@ __all__ = [
5138
5157
  "CreateWorkflowCreateWorkflowExtractionJobsConnector",
5139
5158
  "CreateWorkflowCreateWorkflowExtractionJobsConnectorAzureImage",
5140
5159
  "CreateWorkflowCreateWorkflowExtractionJobsConnectorAzureText",
5160
+ "CreateWorkflowCreateWorkflowExtractionJobsConnectorHume",
5141
5161
  "CreateWorkflowCreateWorkflowExtractionJobsConnectorModelImage",
5142
5162
  "CreateWorkflowCreateWorkflowExtractionJobsConnectorModelImageSpecification",
5143
5163
  "CreateWorkflowCreateWorkflowExtractionJobsConnectorModelText",
@@ -5178,6 +5198,7 @@ __all__ = [
5178
5198
  "DELETE_ALL_COLLECTIONS_GQL",
5179
5199
  "DELETE_ALL_CONTENTS_GQL",
5180
5200
  "DELETE_ALL_CONVERSATIONS_GQL",
5201
+ "DELETE_ALL_EMOTIONS_GQL",
5181
5202
  "DELETE_ALL_EVENTS_GQL",
5182
5203
  "DELETE_ALL_FACTS_GQL",
5183
5204
  "DELETE_ALL_FEEDS_GQL",
@@ -5213,6 +5234,8 @@ __all__ = [
5213
5234
  "DELETE_CONTENT_GQL",
5214
5235
  "DELETE_CONVERSATIONS_GQL",
5215
5236
  "DELETE_CONVERSATION_GQL",
5237
+ "DELETE_EMOTIONS_GQL",
5238
+ "DELETE_EMOTION_GQL",
5216
5239
  "DELETE_EVENTS_GQL",
5217
5240
  "DELETE_EVENT_GQL",
5218
5241
  "DELETE_FACTS_GQL",
@@ -5293,6 +5316,8 @@ __all__ = [
5293
5316
  "DeleteAllContentsDeleteAllContents",
5294
5317
  "DeleteAllConversations",
5295
5318
  "DeleteAllConversationsDeleteAllConversations",
5319
+ "DeleteAllEmotions",
5320
+ "DeleteAllEmotionsDeleteAllEmotions",
5296
5321
  "DeleteAllEvents",
5297
5322
  "DeleteAllEventsDeleteAllEvents",
5298
5323
  "DeleteAllFacts",
@@ -5363,6 +5388,10 @@ __all__ = [
5363
5388
  "DeleteConversationDeleteConversation",
5364
5389
  "DeleteConversations",
5365
5390
  "DeleteConversationsDeleteConversations",
5391
+ "DeleteEmotion",
5392
+ "DeleteEmotionDeleteEmotion",
5393
+ "DeleteEmotions",
5394
+ "DeleteEmotionsDeleteEmotions",
5366
5395
  "DeleteEvent",
5367
5396
  "DeleteEventDeleteEvent",
5368
5397
  "DeleteEvents",
@@ -5530,6 +5559,11 @@ __all__ = [
5530
5559
  "EmailPreparationPropertiesInput",
5531
5560
  "EmbeddingTypes",
5532
5561
  "EmbeddingsStrategyInput",
5562
+ "EmotionFacetInput",
5563
+ "EmotionFacetTypes",
5564
+ "EmotionFilter",
5565
+ "EmotionInput",
5566
+ "EmotionUpdateInput",
5533
5567
  "EnableAlert",
5534
5568
  "EnableAlertEnableAlert",
5535
5569
  "EnableFeed",
@@ -5574,6 +5608,7 @@ __all__ = [
5574
5608
  "ExtractObservables",
5575
5609
  "ExtractObservablesExtractObservables",
5576
5610
  "ExtractObservablesExtractObservablesCategories",
5611
+ "ExtractObservablesExtractObservablesEmotions",
5577
5612
  "ExtractObservablesExtractObservablesEvents",
5578
5613
  "ExtractObservablesExtractObservablesInvestmentFunds",
5579
5614
  "ExtractObservablesExtractObservablesInvestments",
@@ -5666,6 +5701,7 @@ __all__ = [
5666
5701
  "GET_CONNECTOR_GQL",
5667
5702
  "GET_CONTENT_GQL",
5668
5703
  "GET_CONVERSATION_GQL",
5704
+ "GET_EMOTION_GQL",
5669
5705
  "GET_EVENT_GQL",
5670
5706
  "GET_FACT_GQL",
5671
5707
  "GET_FEED_GQL",
@@ -5785,14 +5821,6 @@ __all__ = [
5785
5821
  "GetContentContentEventRecurrence",
5786
5822
  "GetContentContentEventReminders",
5787
5823
  "GetContentContentFacts",
5788
- "GetContentContentFactsAssertions",
5789
- "GetContentContentFactsAssertionsMentions",
5790
- "GetContentContentFactsAssertionsMentionsObservable",
5791
- "GetContentContentFactsContent",
5792
- "GetContentContentFactsConversation",
5793
- "GetContentContentFactsFeeds",
5794
- "GetContentContentFactsMentions",
5795
- "GetContentContentFactsMentionsObservable",
5796
5824
  "GetContentContentFeed",
5797
5825
  "GetContentContentFrames",
5798
5826
  "GetContentContentH3",
@@ -5856,14 +5884,6 @@ __all__ = [
5856
5884
  "GetConversationConversationAugmentedFilterUsers",
5857
5885
  "GetConversationConversationAugmentedFilterWorkflows",
5858
5886
  "GetConversationConversationFacts",
5859
- "GetConversationConversationFactsAssertions",
5860
- "GetConversationConversationFactsAssertionsMentions",
5861
- "GetConversationConversationFactsAssertionsMentionsObservable",
5862
- "GetConversationConversationFactsContent",
5863
- "GetConversationConversationFactsConversation",
5864
- "GetConversationConversationFactsFeeds",
5865
- "GetConversationConversationFactsMentions",
5866
- "GetConversationConversationFactsMentionsObservable",
5867
5887
  "GetConversationConversationFallbacks",
5868
5888
  "GetConversationConversationFilter",
5869
5889
  "GetConversationConversationFilterAnd",
@@ -5908,6 +5928,9 @@ __all__ = [
5908
5928
  "GetConversationConversationSpecification",
5909
5929
  "GetConversationConversationTurns",
5910
5930
  "GetConversationConversationTurnsMessages",
5931
+ "GetEmotion",
5932
+ "GetEmotionEmotion",
5933
+ "GetEmotionEmotionFeeds",
5911
5934
  "GetEvent",
5912
5935
  "GetEventEvent",
5913
5936
  "GetEventEventAddress",
@@ -6358,6 +6381,7 @@ __all__ = [
6358
6381
  "GetWorkflowWorkflowExtractionJobsConnector",
6359
6382
  "GetWorkflowWorkflowExtractionJobsConnectorAzureImage",
6360
6383
  "GetWorkflowWorkflowExtractionJobsConnectorAzureText",
6384
+ "GetWorkflowWorkflowExtractionJobsConnectorHume",
6361
6385
  "GetWorkflowWorkflowExtractionJobsConnectorModelImage",
6362
6386
  "GetWorkflowWorkflowExtractionJobsConnectorModelImageSpecification",
6363
6387
  "GetWorkflowWorkflowExtractionJobsConnectorModelText",
@@ -6463,6 +6487,7 @@ __all__ = [
6463
6487
  "HubSpotMeetingPropertiesUpdateInput",
6464
6488
  "HubSpotTasksFeedPropertiesInput",
6465
6489
  "HubSpotTasksFeedPropertiesUpdateInput",
6490
+ "HumeExtractionPropertiesInput",
6466
6491
  "INGEST_BATCH_GQL",
6467
6492
  "INGEST_ENCODED_FILE_GQL",
6468
6493
  "INGEST_EVENT_GQL",
@@ -6605,14 +6630,6 @@ __all__ = [
6605
6630
  "LookupContentsLookupContentsResultsEventRecurrence",
6606
6631
  "LookupContentsLookupContentsResultsEventReminders",
6607
6632
  "LookupContentsLookupContentsResultsFacts",
6608
- "LookupContentsLookupContentsResultsFactsAssertions",
6609
- "LookupContentsLookupContentsResultsFactsAssertionsMentions",
6610
- "LookupContentsLookupContentsResultsFactsAssertionsMentionsObservable",
6611
- "LookupContentsLookupContentsResultsFactsContent",
6612
- "LookupContentsLookupContentsResultsFactsConversation",
6613
- "LookupContentsLookupContentsResultsFactsFeeds",
6614
- "LookupContentsLookupContentsResultsFactsMentions",
6615
- "LookupContentsLookupContentsResultsFactsMentionsObservable",
6616
6633
  "LookupContentsLookupContentsResultsFeed",
6617
6634
  "LookupContentsLookupContentsResultsFrames",
6618
6635
  "LookupContentsLookupContentsResultsH3",
@@ -6723,6 +6740,7 @@ __all__ = [
6723
6740
  "MedicalTherapyFilter",
6724
6741
  "MedicalTherapyInput",
6725
6742
  "MedicalTherapyUpdateInput",
6743
+ "MeetingContentTypes",
6726
6744
  "MeetingFeedPropertiesInput",
6727
6745
  "MeetingFeedPropertiesUpdateInput",
6728
6746
  "MentionReferenceFilter",
@@ -6948,6 +6966,7 @@ __all__ = [
6948
6966
  "QUERY_DISCORD_CHANNELS_GQL",
6949
6967
  "QUERY_DISCORD_GUILDS_GQL",
6950
6968
  "QUERY_DROPBOX_FOLDERS_GQL",
6969
+ "QUERY_EMOTIONS_GQL",
6951
6970
  "QUERY_EVENTS_CLUSTERS_GQL",
6952
6971
  "QUERY_EVENTS_GQL",
6953
6972
  "QUERY_FACTS_CLUSTERS_GQL",
@@ -7375,6 +7394,10 @@ __all__ = [
7375
7394
  "QueryDropboxFolders",
7376
7395
  "QueryDropboxFoldersDropboxFolders",
7377
7396
  "QueryDropboxFoldersDropboxFoldersResults",
7397
+ "QueryEmotions",
7398
+ "QueryEmotionsEmotions",
7399
+ "QueryEmotionsEmotionsResults",
7400
+ "QueryEmotionsEmotionsResultsFeeds",
7378
7401
  "QueryEvents",
7379
7402
  "QueryEventsClusters",
7380
7403
  "QueryEventsClustersEvents",
@@ -8219,6 +8242,7 @@ __all__ = [
8219
8242
  "QueryWorkflowsWorkflowsResultsExtractionJobsConnector",
8220
8243
  "QueryWorkflowsWorkflowsResultsExtractionJobsConnectorAzureImage",
8221
8244
  "QueryWorkflowsWorkflowsResultsExtractionJobsConnectorAzureText",
8245
+ "QueryWorkflowsWorkflowsResultsExtractionJobsConnectorHume",
8222
8246
  "QueryWorkflowsWorkflowsResultsExtractionJobsConnectorModelImage",
8223
8247
  "QueryWorkflowsWorkflowsResultsExtractionJobsConnectorModelImageSpecification",
8224
8248
  "QueryWorkflowsWorkflowsResultsExtractionJobsConnectorModelText",
@@ -8335,6 +8359,7 @@ __all__ = [
8335
8359
  "RetrieveFactsRetrieveFactsResultsFactFeeds",
8336
8360
  "RetrieveFactsRetrieveFactsResultsFactMentions",
8337
8361
  "RetrieveFactsRetrieveFactsResultsFactMentionsObservable",
8362
+ "RetrieveFactsRetrieveFactsResultsFactOwner",
8338
8363
  "RetrieveSources",
8339
8364
  "RetrieveSourcesRetrieveSources",
8340
8365
  "RetrieveSourcesRetrieveSourcesResults",
@@ -8494,6 +8519,7 @@ __all__ = [
8494
8519
  "UPDATE_CONNECTOR_GQL",
8495
8520
  "UPDATE_CONTENT_GQL",
8496
8521
  "UPDATE_CONVERSATION_GQL",
8522
+ "UPDATE_EMOTION_GQL",
8497
8523
  "UPDATE_EVENT_GQL",
8498
8524
  "UPDATE_FACT_GQL",
8499
8525
  "UPDATE_FEED_GQL",
@@ -8548,6 +8574,8 @@ __all__ = [
8548
8574
  "UpdateContentUpdateContentObservationsRelated",
8549
8575
  "UpdateConversation",
8550
8576
  "UpdateConversationUpdateConversation",
8577
+ "UpdateEmotion",
8578
+ "UpdateEmotionUpdateEmotion",
8551
8579
  "UpdateEvent",
8552
8580
  "UpdateEventUpdateEvent",
8553
8581
  "UpdateFact",
@@ -8686,6 +8714,7 @@ __all__ = [
8686
8714
  "UpdateWorkflowUpdateWorkflowExtractionJobsConnector",
8687
8715
  "UpdateWorkflowUpdateWorkflowExtractionJobsConnectorAzureImage",
8688
8716
  "UpdateWorkflowUpdateWorkflowExtractionJobsConnectorAzureText",
8717
+ "UpdateWorkflowUpdateWorkflowExtractionJobsConnectorHume",
8689
8718
  "UpdateWorkflowUpdateWorkflowExtractionJobsConnectorModelImage",
8690
8719
  "UpdateWorkflowUpdateWorkflowExtractionJobsConnectorModelImageSpecification",
8691
8720
  "UpdateWorkflowUpdateWorkflowExtractionJobsConnectorModelText",
@@ -8812,6 +8841,7 @@ __all__ = [
8812
8841
  "UpsertWorkflowUpsertWorkflowExtractionJobsConnector",
8813
8842
  "UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureImage",
8814
8843
  "UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureText",
8844
+ "UpsertWorkflowUpsertWorkflowExtractionJobsConnectorHume",
8815
8845
  "UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImage",
8816
8846
  "UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImageSpecification",
8817
8847
  "UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelText",