graphlit-client 1.0.20250627004__py3-none-any.whl → 1.0.20250628001__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 +54 -0
- graphlit_api/client.py +32 -0
- graphlit_api/create_view.py +16 -0
- graphlit_api/get_alert.py +8 -0
- graphlit_api/get_conversation.py +16 -0
- graphlit_api/get_view.py +16 -0
- graphlit_api/input_types.py +10 -0
- graphlit_api/operations.py +88 -0
- graphlit_api/query_alerts.py +8 -0
- graphlit_api/query_conversations.py +16 -0
- graphlit_api/query_discord_channels.py +27 -0
- graphlit_api/query_discord_guilds.py +27 -0
- graphlit_api/query_views.py +16 -0
- graphlit_api/update_view.py +16 -0
- graphlit_api/upsert_view.py +16 -0
- {graphlit_client-1.0.20250627004.dist-info → graphlit_client-1.0.20250628001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250627004.dist-info → graphlit_client-1.0.20250628001.dist-info}/RECORD +20 -18
- {graphlit_client-1.0.20250627004.dist-info → graphlit_client-1.0.20250628001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250627004.dist-info → graphlit_client-1.0.20250628001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250627004.dist-info → graphlit_client-1.0.20250628001.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
@@ -231,6 +231,7 @@ from .create_view import (
|
|
231
231
|
CreateViewCreateViewAugmentedFilterCreationDateRange,
|
232
232
|
CreateViewCreateViewAugmentedFilterDateRange,
|
233
233
|
CreateViewCreateViewAugmentedFilterFeeds,
|
234
|
+
CreateViewCreateViewAugmentedFilterFileSizeRange,
|
234
235
|
CreateViewCreateViewAugmentedFilterObservations,
|
235
236
|
CreateViewCreateViewAugmentedFilterObservationsObservable,
|
236
237
|
CreateViewCreateViewAugmentedFilterOr,
|
@@ -256,6 +257,7 @@ from .create_view import (
|
|
256
257
|
CreateViewCreateViewFilterCreationDateRange,
|
257
258
|
CreateViewCreateViewFilterDateRange,
|
258
259
|
CreateViewCreateViewFilterFeeds,
|
260
|
+
CreateViewCreateViewFilterFileSizeRange,
|
259
261
|
CreateViewCreateViewFilterObservations,
|
260
262
|
CreateViewCreateViewFilterObservationsObservable,
|
261
263
|
CreateViewCreateViewFilterOr,
|
@@ -774,6 +776,7 @@ from .get_alert import (
|
|
774
776
|
GetAlertAlertFilterCreationDateRange,
|
775
777
|
GetAlertAlertFilterDateRange,
|
776
778
|
GetAlertAlertFilterFeeds,
|
779
|
+
GetAlertAlertFilterFileSizeRange,
|
777
780
|
GetAlertAlertFilterObservations,
|
778
781
|
GetAlertAlertFilterObservationsObservable,
|
779
782
|
GetAlertAlertFilterOr,
|
@@ -875,6 +878,7 @@ from .get_conversation import (
|
|
875
878
|
GetConversationConversationAugmentedFilterCreationDateRange,
|
876
879
|
GetConversationConversationAugmentedFilterDateRange,
|
877
880
|
GetConversationConversationAugmentedFilterFeeds,
|
881
|
+
GetConversationConversationAugmentedFilterFileSizeRange,
|
878
882
|
GetConversationConversationAugmentedFilterObservations,
|
879
883
|
GetConversationConversationAugmentedFilterObservationsObservable,
|
880
884
|
GetConversationConversationAugmentedFilterOr,
|
@@ -901,6 +905,7 @@ from .get_conversation import (
|
|
901
905
|
GetConversationConversationFilterCreationDateRange,
|
902
906
|
GetConversationConversationFilterDateRange,
|
903
907
|
GetConversationConversationFilterFeeds,
|
908
|
+
GetConversationConversationFilterFileSizeRange,
|
904
909
|
GetConversationConversationFilterObservations,
|
905
910
|
GetConversationConversationFilterObservationsObservable,
|
906
911
|
GetConversationConversationFilterOr,
|
@@ -1095,6 +1100,7 @@ from .get_view import (
|
|
1095
1100
|
GetViewViewAugmentedFilterCreationDateRange,
|
1096
1101
|
GetViewViewAugmentedFilterDateRange,
|
1097
1102
|
GetViewViewAugmentedFilterFeeds,
|
1103
|
+
GetViewViewAugmentedFilterFileSizeRange,
|
1098
1104
|
GetViewViewAugmentedFilterObservations,
|
1099
1105
|
GetViewViewAugmentedFilterObservationsObservable,
|
1100
1106
|
GetViewViewAugmentedFilterOr,
|
@@ -1120,6 +1126,7 @@ from .get_view import (
|
|
1120
1126
|
GetViewViewFilterCreationDateRange,
|
1121
1127
|
GetViewViewFilterDateRange,
|
1122
1128
|
GetViewViewFilterFeeds,
|
1129
|
+
GetViewViewFilterFileSizeRange,
|
1123
1130
|
GetViewViewFilterObservations,
|
1124
1131
|
GetViewViewFilterObservationsObservable,
|
1125
1132
|
GetViewViewFilterOr,
|
@@ -1408,6 +1415,7 @@ from .input_types import (
|
|
1408
1415
|
IngestionContentFilterInput,
|
1409
1416
|
IngestionWorkflowStageInput,
|
1410
1417
|
Int64RangeFilter,
|
1418
|
+
Int64RangeInput,
|
1411
1419
|
IntegrationConnectorInput,
|
1412
1420
|
IntegrationConnectorUpdateInput,
|
1413
1421
|
IntercomFeedPropertiesInput,
|
@@ -1889,6 +1897,8 @@ from .operations import (
|
|
1889
1897
|
QUERY_CONTENTS_OBSERVATIONS_GQL,
|
1890
1898
|
QUERY_CONVERSATIONS_GQL,
|
1891
1899
|
QUERY_CREDITS_GQL,
|
1900
|
+
QUERY_DISCORD_CHANNELS_GQL,
|
1901
|
+
QUERY_DISCORD_GUILDS_GQL,
|
1892
1902
|
QUERY_DROPBOX_FOLDERS_GQL,
|
1893
1903
|
QUERY_EVENTS_GQL,
|
1894
1904
|
QUERY_FEEDS_GQL,
|
@@ -2088,6 +2098,7 @@ from .query_alerts import (
|
|
2088
2098
|
QueryAlertsAlertsResultsFilterCreationDateRange,
|
2089
2099
|
QueryAlertsAlertsResultsFilterDateRange,
|
2090
2100
|
QueryAlertsAlertsResultsFilterFeeds,
|
2101
|
+
QueryAlertsAlertsResultsFilterFileSizeRange,
|
2091
2102
|
QueryAlertsAlertsResultsFilterObservations,
|
2092
2103
|
QueryAlertsAlertsResultsFilterObservationsObservable,
|
2093
2104
|
QueryAlertsAlertsResultsFilterOr,
|
@@ -2245,6 +2256,7 @@ from .query_conversations import (
|
|
2245
2256
|
QueryConversationsConversationsResultsAugmentedFilterCreationDateRange,
|
2246
2257
|
QueryConversationsConversationsResultsAugmentedFilterDateRange,
|
2247
2258
|
QueryConversationsConversationsResultsAugmentedFilterFeeds,
|
2259
|
+
QueryConversationsConversationsResultsAugmentedFilterFileSizeRange,
|
2248
2260
|
QueryConversationsConversationsResultsAugmentedFilterObservations,
|
2249
2261
|
QueryConversationsConversationsResultsAugmentedFilterObservationsObservable,
|
2250
2262
|
QueryConversationsConversationsResultsAugmentedFilterOr,
|
@@ -2271,6 +2283,7 @@ from .query_conversations import (
|
|
2271
2283
|
QueryConversationsConversationsResultsFilterCreationDateRange,
|
2272
2284
|
QueryConversationsConversationsResultsFilterDateRange,
|
2273
2285
|
QueryConversationsConversationsResultsFilterFeeds,
|
2286
|
+
QueryConversationsConversationsResultsFilterFileSizeRange,
|
2274
2287
|
QueryConversationsConversationsResultsFilterObservations,
|
2275
2288
|
QueryConversationsConversationsResultsFilterObservationsObservable,
|
2276
2289
|
QueryConversationsConversationsResultsFilterOr,
|
@@ -2295,6 +2308,16 @@ from .query_conversations import (
|
|
2295
2308
|
QueryConversationsConversationsResultsSpecification,
|
2296
2309
|
)
|
2297
2310
|
from .query_credits import QueryCredits, QueryCreditsCredits
|
2311
|
+
from .query_discord_channels import (
|
2312
|
+
QueryDiscordChannels,
|
2313
|
+
QueryDiscordChannelsDiscordChannels,
|
2314
|
+
QueryDiscordChannelsDiscordChannelsResults,
|
2315
|
+
)
|
2316
|
+
from .query_discord_guilds import (
|
2317
|
+
QueryDiscordGuilds,
|
2318
|
+
QueryDiscordGuildsDiscordGuilds,
|
2319
|
+
QueryDiscordGuildsDiscordGuildsResults,
|
2320
|
+
)
|
2298
2321
|
from .query_dropbox_folders import (
|
2299
2322
|
QueryDropboxFolders,
|
2300
2323
|
QueryDropboxFoldersDropboxFolders,
|
@@ -2559,6 +2582,7 @@ from .query_views import (
|
|
2559
2582
|
QueryViewsViewsResultsAugmentedFilterCreationDateRange,
|
2560
2583
|
QueryViewsViewsResultsAugmentedFilterDateRange,
|
2561
2584
|
QueryViewsViewsResultsAugmentedFilterFeeds,
|
2585
|
+
QueryViewsViewsResultsAugmentedFilterFileSizeRange,
|
2562
2586
|
QueryViewsViewsResultsAugmentedFilterObservations,
|
2563
2587
|
QueryViewsViewsResultsAugmentedFilterObservationsObservable,
|
2564
2588
|
QueryViewsViewsResultsAugmentedFilterOr,
|
@@ -2584,6 +2608,7 @@ from .query_views import (
|
|
2584
2608
|
QueryViewsViewsResultsFilterCreationDateRange,
|
2585
2609
|
QueryViewsViewsResultsFilterDateRange,
|
2586
2610
|
QueryViewsViewsResultsFilterFeeds,
|
2611
|
+
QueryViewsViewsResultsFilterFileSizeRange,
|
2587
2612
|
QueryViewsViewsResultsFilterObservations,
|
2588
2613
|
QueryViewsViewsResultsFilterObservationsObservable,
|
2589
2614
|
QueryViewsViewsResultsFilterOr,
|
@@ -2851,6 +2876,7 @@ from .update_view import (
|
|
2851
2876
|
UpdateViewUpdateViewAugmentedFilterCreationDateRange,
|
2852
2877
|
UpdateViewUpdateViewAugmentedFilterDateRange,
|
2853
2878
|
UpdateViewUpdateViewAugmentedFilterFeeds,
|
2879
|
+
UpdateViewUpdateViewAugmentedFilterFileSizeRange,
|
2854
2880
|
UpdateViewUpdateViewAugmentedFilterObservations,
|
2855
2881
|
UpdateViewUpdateViewAugmentedFilterObservationsObservable,
|
2856
2882
|
UpdateViewUpdateViewAugmentedFilterOr,
|
@@ -2876,6 +2902,7 @@ from .update_view import (
|
|
2876
2902
|
UpdateViewUpdateViewFilterCreationDateRange,
|
2877
2903
|
UpdateViewUpdateViewFilterDateRange,
|
2878
2904
|
UpdateViewUpdateViewFilterFeeds,
|
2905
|
+
UpdateViewUpdateViewFilterFileSizeRange,
|
2879
2906
|
UpdateViewUpdateViewFilterObservations,
|
2880
2907
|
UpdateViewUpdateViewFilterObservationsObservable,
|
2881
2908
|
UpdateViewUpdateViewFilterOr,
|
@@ -2968,6 +2995,7 @@ from .upsert_view import (
|
|
2968
2995
|
UpsertViewUpsertViewAugmentedFilterCreationDateRange,
|
2969
2996
|
UpsertViewUpsertViewAugmentedFilterDateRange,
|
2970
2997
|
UpsertViewUpsertViewAugmentedFilterFeeds,
|
2998
|
+
UpsertViewUpsertViewAugmentedFilterFileSizeRange,
|
2971
2999
|
UpsertViewUpsertViewAugmentedFilterObservations,
|
2972
3000
|
UpsertViewUpsertViewAugmentedFilterObservationsObservable,
|
2973
3001
|
UpsertViewUpsertViewAugmentedFilterOr,
|
@@ -2993,6 +3021,7 @@ from .upsert_view import (
|
|
2993
3021
|
UpsertViewUpsertViewFilterCreationDateRange,
|
2994
3022
|
UpsertViewUpsertViewFilterDateRange,
|
2995
3023
|
UpsertViewUpsertViewFilterFeeds,
|
3024
|
+
UpsertViewUpsertViewFilterFileSizeRange,
|
2996
3025
|
UpsertViewUpsertViewFilterObservations,
|
2997
3026
|
UpsertViewUpsertViewFilterObservationsObservable,
|
2998
3027
|
UpsertViewUpsertViewFilterOr,
|
@@ -3446,6 +3475,7 @@ __all__ = [
|
|
3446
3475
|
"CreateViewCreateViewAugmentedFilterCreationDateRange",
|
3447
3476
|
"CreateViewCreateViewAugmentedFilterDateRange",
|
3448
3477
|
"CreateViewCreateViewAugmentedFilterFeeds",
|
3478
|
+
"CreateViewCreateViewAugmentedFilterFileSizeRange",
|
3449
3479
|
"CreateViewCreateViewAugmentedFilterObservations",
|
3450
3480
|
"CreateViewCreateViewAugmentedFilterObservationsObservable",
|
3451
3481
|
"CreateViewCreateViewAugmentedFilterOr",
|
@@ -3471,6 +3501,7 @@ __all__ = [
|
|
3471
3501
|
"CreateViewCreateViewFilterCreationDateRange",
|
3472
3502
|
"CreateViewCreateViewFilterDateRange",
|
3473
3503
|
"CreateViewCreateViewFilterFeeds",
|
3504
|
+
"CreateViewCreateViewFilterFileSizeRange",
|
3474
3505
|
"CreateViewCreateViewFilterObservations",
|
3475
3506
|
"CreateViewCreateViewFilterObservationsObservable",
|
3476
3507
|
"CreateViewCreateViewFilterOr",
|
@@ -3987,6 +4018,7 @@ __all__ = [
|
|
3987
4018
|
"GetAlertAlertFilterCreationDateRange",
|
3988
4019
|
"GetAlertAlertFilterDateRange",
|
3989
4020
|
"GetAlertAlertFilterFeeds",
|
4021
|
+
"GetAlertAlertFilterFileSizeRange",
|
3990
4022
|
"GetAlertAlertFilterObservations",
|
3991
4023
|
"GetAlertAlertFilterObservationsObservable",
|
3992
4024
|
"GetAlertAlertFilterOr",
|
@@ -4081,6 +4113,7 @@ __all__ = [
|
|
4081
4113
|
"GetConversationConversationAugmentedFilterCreationDateRange",
|
4082
4114
|
"GetConversationConversationAugmentedFilterDateRange",
|
4083
4115
|
"GetConversationConversationAugmentedFilterFeeds",
|
4116
|
+
"GetConversationConversationAugmentedFilterFileSizeRange",
|
4084
4117
|
"GetConversationConversationAugmentedFilterObservations",
|
4085
4118
|
"GetConversationConversationAugmentedFilterObservationsObservable",
|
4086
4119
|
"GetConversationConversationAugmentedFilterOr",
|
@@ -4107,6 +4140,7 @@ __all__ = [
|
|
4107
4140
|
"GetConversationConversationFilterCreationDateRange",
|
4108
4141
|
"GetConversationConversationFilterDateRange",
|
4109
4142
|
"GetConversationConversationFilterFeeds",
|
4143
|
+
"GetConversationConversationFilterFileSizeRange",
|
4110
4144
|
"GetConversationConversationFilterObservations",
|
4111
4145
|
"GetConversationConversationFilterObservationsObservable",
|
4112
4146
|
"GetConversationConversationFilterOr",
|
@@ -4286,6 +4320,7 @@ __all__ = [
|
|
4286
4320
|
"GetViewViewAugmentedFilterCreationDateRange",
|
4287
4321
|
"GetViewViewAugmentedFilterDateRange",
|
4288
4322
|
"GetViewViewAugmentedFilterFeeds",
|
4323
|
+
"GetViewViewAugmentedFilterFileSizeRange",
|
4289
4324
|
"GetViewViewAugmentedFilterObservations",
|
4290
4325
|
"GetViewViewAugmentedFilterObservationsObservable",
|
4291
4326
|
"GetViewViewAugmentedFilterOr",
|
@@ -4311,6 +4346,7 @@ __all__ = [
|
|
4311
4346
|
"GetViewViewFilterCreationDateRange",
|
4312
4347
|
"GetViewViewFilterDateRange",
|
4313
4348
|
"GetViewViewFilterFeeds",
|
4349
|
+
"GetViewViewFilterFileSizeRange",
|
4314
4350
|
"GetViewViewFilterObservations",
|
4315
4351
|
"GetViewViewFilterObservationsObservable",
|
4316
4352
|
"GetViewViewFilterOr",
|
@@ -4489,6 +4525,7 @@ __all__ = [
|
|
4489
4525
|
"IngestionContentFilterInput",
|
4490
4526
|
"IngestionWorkflowStageInput",
|
4491
4527
|
"Int64RangeFilter",
|
4528
|
+
"Int64RangeInput",
|
4492
4529
|
"IntegrationConnectorInput",
|
4493
4530
|
"IntegrationConnectorUpdateInput",
|
4494
4531
|
"IntegrationServiceTypes",
|
@@ -4811,6 +4848,8 @@ __all__ = [
|
|
4811
4848
|
"QUERY_CONTENTS_OBSERVATIONS_GQL",
|
4812
4849
|
"QUERY_CONVERSATIONS_GQL",
|
4813
4850
|
"QUERY_CREDITS_GQL",
|
4851
|
+
"QUERY_DISCORD_CHANNELS_GQL",
|
4852
|
+
"QUERY_DISCORD_GUILDS_GQL",
|
4814
4853
|
"QUERY_DROPBOX_FOLDERS_GQL",
|
4815
4854
|
"QUERY_EVENTS_GQL",
|
4816
4855
|
"QUERY_FEEDS_GQL",
|
@@ -4867,6 +4906,7 @@ __all__ = [
|
|
4867
4906
|
"QueryAlertsAlertsResultsFilterCreationDateRange",
|
4868
4907
|
"QueryAlertsAlertsResultsFilterDateRange",
|
4869
4908
|
"QueryAlertsAlertsResultsFilterFeeds",
|
4909
|
+
"QueryAlertsAlertsResultsFilterFileSizeRange",
|
4870
4910
|
"QueryAlertsAlertsResultsFilterObservations",
|
4871
4911
|
"QueryAlertsAlertsResultsFilterObservationsObservable",
|
4872
4912
|
"QueryAlertsAlertsResultsFilterOr",
|
@@ -5006,6 +5046,7 @@ __all__ = [
|
|
5006
5046
|
"QueryConversationsConversationsResultsAugmentedFilterCreationDateRange",
|
5007
5047
|
"QueryConversationsConversationsResultsAugmentedFilterDateRange",
|
5008
5048
|
"QueryConversationsConversationsResultsAugmentedFilterFeeds",
|
5049
|
+
"QueryConversationsConversationsResultsAugmentedFilterFileSizeRange",
|
5009
5050
|
"QueryConversationsConversationsResultsAugmentedFilterObservations",
|
5010
5051
|
"QueryConversationsConversationsResultsAugmentedFilterObservationsObservable",
|
5011
5052
|
"QueryConversationsConversationsResultsAugmentedFilterOr",
|
@@ -5032,6 +5073,7 @@ __all__ = [
|
|
5032
5073
|
"QueryConversationsConversationsResultsFilterCreationDateRange",
|
5033
5074
|
"QueryConversationsConversationsResultsFilterDateRange",
|
5034
5075
|
"QueryConversationsConversationsResultsFilterFeeds",
|
5076
|
+
"QueryConversationsConversationsResultsFilterFileSizeRange",
|
5035
5077
|
"QueryConversationsConversationsResultsFilterObservations",
|
5036
5078
|
"QueryConversationsConversationsResultsFilterObservationsObservable",
|
5037
5079
|
"QueryConversationsConversationsResultsFilterOr",
|
@@ -5056,6 +5098,12 @@ __all__ = [
|
|
5056
5098
|
"QueryConversationsConversationsResultsSpecification",
|
5057
5099
|
"QueryCredits",
|
5058
5100
|
"QueryCreditsCredits",
|
5101
|
+
"QueryDiscordChannels",
|
5102
|
+
"QueryDiscordChannelsDiscordChannels",
|
5103
|
+
"QueryDiscordChannelsDiscordChannelsResults",
|
5104
|
+
"QueryDiscordGuilds",
|
5105
|
+
"QueryDiscordGuildsDiscordGuilds",
|
5106
|
+
"QueryDiscordGuildsDiscordGuildsResults",
|
5059
5107
|
"QueryDropboxFolders",
|
5060
5108
|
"QueryDropboxFoldersDropboxFolders",
|
5061
5109
|
"QueryDropboxFoldersDropboxFoldersResults",
|
@@ -5260,6 +5308,7 @@ __all__ = [
|
|
5260
5308
|
"QueryViewsViewsResultsAugmentedFilterCreationDateRange",
|
5261
5309
|
"QueryViewsViewsResultsAugmentedFilterDateRange",
|
5262
5310
|
"QueryViewsViewsResultsAugmentedFilterFeeds",
|
5311
|
+
"QueryViewsViewsResultsAugmentedFilterFileSizeRange",
|
5263
5312
|
"QueryViewsViewsResultsAugmentedFilterObservations",
|
5264
5313
|
"QueryViewsViewsResultsAugmentedFilterObservationsObservable",
|
5265
5314
|
"QueryViewsViewsResultsAugmentedFilterOr",
|
@@ -5285,6 +5334,7 @@ __all__ = [
|
|
5285
5334
|
"QueryViewsViewsResultsFilterCreationDateRange",
|
5286
5335
|
"QueryViewsViewsResultsFilterDateRange",
|
5287
5336
|
"QueryViewsViewsResultsFilterFeeds",
|
5337
|
+
"QueryViewsViewsResultsFilterFileSizeRange",
|
5288
5338
|
"QueryViewsViewsResultsFilterObservations",
|
5289
5339
|
"QueryViewsViewsResultsFilterObservationsObservable",
|
5290
5340
|
"QueryViewsViewsResultsFilterOr",
|
@@ -5647,6 +5697,7 @@ __all__ = [
|
|
5647
5697
|
"UpdateViewUpdateViewAugmentedFilterCreationDateRange",
|
5648
5698
|
"UpdateViewUpdateViewAugmentedFilterDateRange",
|
5649
5699
|
"UpdateViewUpdateViewAugmentedFilterFeeds",
|
5700
|
+
"UpdateViewUpdateViewAugmentedFilterFileSizeRange",
|
5650
5701
|
"UpdateViewUpdateViewAugmentedFilterObservations",
|
5651
5702
|
"UpdateViewUpdateViewAugmentedFilterObservationsObservable",
|
5652
5703
|
"UpdateViewUpdateViewAugmentedFilterOr",
|
@@ -5672,6 +5723,7 @@ __all__ = [
|
|
5672
5723
|
"UpdateViewUpdateViewFilterCreationDateRange",
|
5673
5724
|
"UpdateViewUpdateViewFilterDateRange",
|
5674
5725
|
"UpdateViewUpdateViewFilterFeeds",
|
5726
|
+
"UpdateViewUpdateViewFilterFileSizeRange",
|
5675
5727
|
"UpdateViewUpdateViewFilterObservations",
|
5676
5728
|
"UpdateViewUpdateViewFilterObservationsObservable",
|
5677
5729
|
"UpdateViewUpdateViewFilterOr",
|
@@ -5761,6 +5813,7 @@ __all__ = [
|
|
5761
5813
|
"UpsertViewUpsertViewAugmentedFilterCreationDateRange",
|
5762
5814
|
"UpsertViewUpsertViewAugmentedFilterDateRange",
|
5763
5815
|
"UpsertViewUpsertViewAugmentedFilterFeeds",
|
5816
|
+
"UpsertViewUpsertViewAugmentedFilterFileSizeRange",
|
5764
5817
|
"UpsertViewUpsertViewAugmentedFilterObservations",
|
5765
5818
|
"UpsertViewUpsertViewAugmentedFilterObservationsObservable",
|
5766
5819
|
"UpsertViewUpsertViewAugmentedFilterOr",
|
@@ -5786,6 +5839,7 @@ __all__ = [
|
|
5786
5839
|
"UpsertViewUpsertViewFilterCreationDateRange",
|
5787
5840
|
"UpsertViewUpsertViewFilterDateRange",
|
5788
5841
|
"UpsertViewUpsertViewFilterFeeds",
|
5842
|
+
"UpsertViewUpsertViewFilterFileSizeRange",
|
5789
5843
|
"UpsertViewUpsertViewFilterObservations",
|
5790
5844
|
"UpsertViewUpsertViewFilterObservationsObservable",
|
5791
5845
|
"UpsertViewUpsertViewFilterOr",
|
graphlit_api/client.py
CHANGED
@@ -236,6 +236,8 @@ from .input_types import (
|
|
236
236
|
ConversationMessageInput,
|
237
237
|
ConversationToolResponseInput,
|
238
238
|
ConversationUpdateInput,
|
239
|
+
DiscordChannelsInput,
|
240
|
+
DiscordGuildsInput,
|
239
241
|
DropboxFoldersInput,
|
240
242
|
EntityReferenceInput,
|
241
243
|
EventFilter,
|
@@ -570,6 +572,8 @@ from .operations import (
|
|
570
572
|
QUERY_CONTENTS_OBSERVATIONS_GQL,
|
571
573
|
QUERY_CONVERSATIONS_GQL,
|
572
574
|
QUERY_CREDITS_GQL,
|
575
|
+
QUERY_DISCORD_CHANNELS_GQL,
|
576
|
+
QUERY_DISCORD_GUILDS_GQL,
|
573
577
|
QUERY_DROPBOX_FOLDERS_GQL,
|
574
578
|
QUERY_EVENTS_GQL,
|
575
579
|
QUERY_FEEDS_GQL,
|
@@ -681,6 +685,8 @@ from .query_contents_graph import QueryContentsGraph
|
|
681
685
|
from .query_contents_observations import QueryContentsObservations
|
682
686
|
from .query_conversations import QueryConversations
|
683
687
|
from .query_credits import QueryCredits
|
688
|
+
from .query_discord_channels import QueryDiscordChannels
|
689
|
+
from .query_discord_guilds import QueryDiscordGuilds
|
684
690
|
from .query_dropbox_folders import QueryDropboxFolders
|
685
691
|
from .query_events import QueryEvents
|
686
692
|
from .query_feeds import QueryFeeds
|
@@ -2823,6 +2829,32 @@ class Client(AsyncBaseClient):
|
|
2823
2829
|
data = self.get_data(response)
|
2824
2830
|
return QueryBoxFolders.model_validate(data)
|
2825
2831
|
|
2832
|
+
async def query_discord_channels(
|
2833
|
+
self, properties: DiscordChannelsInput, **kwargs: Any
|
2834
|
+
) -> QueryDiscordChannels:
|
2835
|
+
variables: Dict[str, object] = {"properties": properties}
|
2836
|
+
response = await self.execute(
|
2837
|
+
query=QUERY_DISCORD_CHANNELS_GQL,
|
2838
|
+
operation_name="QueryDiscordChannels",
|
2839
|
+
variables=variables,
|
2840
|
+
**kwargs
|
2841
|
+
)
|
2842
|
+
data = self.get_data(response)
|
2843
|
+
return QueryDiscordChannels.model_validate(data)
|
2844
|
+
|
2845
|
+
async def query_discord_guilds(
|
2846
|
+
self, properties: DiscordGuildsInput, **kwargs: Any
|
2847
|
+
) -> QueryDiscordGuilds:
|
2848
|
+
variables: Dict[str, object] = {"properties": properties}
|
2849
|
+
response = await self.execute(
|
2850
|
+
query=QUERY_DISCORD_GUILDS_GQL,
|
2851
|
+
operation_name="QueryDiscordGuilds",
|
2852
|
+
variables=variables,
|
2853
|
+
**kwargs
|
2854
|
+
)
|
2855
|
+
data = self.get_data(response)
|
2856
|
+
return QueryDiscordGuilds.model_validate(data)
|
2857
|
+
|
2826
2858
|
async def query_dropbox_folders(
|
2827
2859
|
self,
|
2828
2860
|
properties: DropboxFoldersInput,
|
graphlit_api/create_view.py
CHANGED
@@ -37,6 +37,9 @@ class CreateViewCreateViewFilter(BaseModel):
|
|
37
37
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
38
38
|
formats: Optional[List[Optional[str]]]
|
39
39
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
40
|
+
file_size_range: Optional["CreateViewCreateViewFilterFileSizeRange"] = Field(
|
41
|
+
alias="fileSizeRange"
|
42
|
+
)
|
40
43
|
similar_contents: Optional[List["CreateViewCreateViewFilterSimilarContents"]] = (
|
41
44
|
Field(alias="similarContents")
|
42
45
|
)
|
@@ -60,6 +63,11 @@ class CreateViewCreateViewFilterCreationDateRange(BaseModel):
|
|
60
63
|
to: Optional[Any]
|
61
64
|
|
62
65
|
|
66
|
+
class CreateViewCreateViewFilterFileSizeRange(BaseModel):
|
67
|
+
from_: Optional[Any] = Field(alias="from")
|
68
|
+
to: Optional[Any]
|
69
|
+
|
70
|
+
|
63
71
|
class CreateViewCreateViewFilterSimilarContents(BaseModel):
|
64
72
|
id: str
|
65
73
|
|
@@ -175,6 +183,9 @@ class CreateViewCreateViewAugmentedFilter(BaseModel):
|
|
175
183
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
176
184
|
formats: Optional[List[Optional[str]]]
|
177
185
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
186
|
+
file_size_range: Optional["CreateViewCreateViewAugmentedFilterFileSizeRange"] = (
|
187
|
+
Field(alias="fileSizeRange")
|
188
|
+
)
|
178
189
|
similar_contents: Optional[
|
179
190
|
List["CreateViewCreateViewAugmentedFilterSimilarContents"]
|
180
191
|
] = Field(alias="similarContents")
|
@@ -198,6 +209,11 @@ class CreateViewCreateViewAugmentedFilterCreationDateRange(BaseModel):
|
|
198
209
|
to: Optional[Any]
|
199
210
|
|
200
211
|
|
212
|
+
class CreateViewCreateViewAugmentedFilterFileSizeRange(BaseModel):
|
213
|
+
from_: Optional[Any] = Field(alias="from")
|
214
|
+
to: Optional[Any]
|
215
|
+
|
216
|
+
|
201
217
|
class CreateViewCreateViewAugmentedFilterSimilarContents(BaseModel):
|
202
218
|
id: str
|
203
219
|
|
graphlit_api/get_alert.py
CHANGED
@@ -61,6 +61,9 @@ class GetAlertAlertFilter(BaseModel):
|
|
61
61
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
62
62
|
formats: Optional[List[Optional[str]]]
|
63
63
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
64
|
+
file_size_range: Optional["GetAlertAlertFilterFileSizeRange"] = Field(
|
65
|
+
alias="fileSizeRange"
|
66
|
+
)
|
64
67
|
similar_contents: Optional[List["GetAlertAlertFilterSimilarContents"]] = Field(
|
65
68
|
alias="similarContents"
|
66
69
|
)
|
@@ -84,6 +87,11 @@ class GetAlertAlertFilterCreationDateRange(BaseModel):
|
|
84
87
|
to: Optional[Any]
|
85
88
|
|
86
89
|
|
90
|
+
class GetAlertAlertFilterFileSizeRange(BaseModel):
|
91
|
+
from_: Optional[Any] = Field(alias="from")
|
92
|
+
to: Optional[Any]
|
93
|
+
|
94
|
+
|
87
95
|
class GetAlertAlertFilterSimilarContents(BaseModel):
|
88
96
|
id: str
|
89
97
|
|
graphlit_api/get_conversation.py
CHANGED
@@ -212,6 +212,9 @@ class GetConversationConversationFilter(BaseModel):
|
|
212
212
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
213
213
|
formats: Optional[List[Optional[str]]]
|
214
214
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
215
|
+
file_size_range: Optional["GetConversationConversationFilterFileSizeRange"] = Field(
|
216
|
+
alias="fileSizeRange"
|
217
|
+
)
|
215
218
|
similar_contents: Optional[
|
216
219
|
List["GetConversationConversationFilterSimilarContents"]
|
217
220
|
] = Field(alias="similarContents")
|
@@ -235,6 +238,11 @@ class GetConversationConversationFilterCreationDateRange(BaseModel):
|
|
235
238
|
to: Optional[Any]
|
236
239
|
|
237
240
|
|
241
|
+
class GetConversationConversationFilterFileSizeRange(BaseModel):
|
242
|
+
from_: Optional[Any] = Field(alias="from")
|
243
|
+
to: Optional[Any]
|
244
|
+
|
245
|
+
|
238
246
|
class GetConversationConversationFilterSimilarContents(BaseModel):
|
239
247
|
id: str
|
240
248
|
|
@@ -350,6 +358,9 @@ class GetConversationConversationAugmentedFilter(BaseModel):
|
|
350
358
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
351
359
|
formats: Optional[List[Optional[str]]]
|
352
360
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
361
|
+
file_size_range: Optional[
|
362
|
+
"GetConversationConversationAugmentedFilterFileSizeRange"
|
363
|
+
] = Field(alias="fileSizeRange")
|
353
364
|
similar_contents: Optional[
|
354
365
|
List["GetConversationConversationAugmentedFilterSimilarContents"]
|
355
366
|
] = Field(alias="similarContents")
|
@@ -379,6 +390,11 @@ class GetConversationConversationAugmentedFilterCreationDateRange(BaseModel):
|
|
379
390
|
to: Optional[Any]
|
380
391
|
|
381
392
|
|
393
|
+
class GetConversationConversationAugmentedFilterFileSizeRange(BaseModel):
|
394
|
+
from_: Optional[Any] = Field(alias="from")
|
395
|
+
to: Optional[Any]
|
396
|
+
|
397
|
+
|
382
398
|
class GetConversationConversationAugmentedFilterSimilarContents(BaseModel):
|
383
399
|
id: str
|
384
400
|
|
graphlit_api/get_view.py
CHANGED
@@ -42,6 +42,9 @@ class GetViewViewFilter(BaseModel):
|
|
42
42
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
43
43
|
formats: Optional[List[Optional[str]]]
|
44
44
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
45
|
+
file_size_range: Optional["GetViewViewFilterFileSizeRange"] = Field(
|
46
|
+
alias="fileSizeRange"
|
47
|
+
)
|
45
48
|
similar_contents: Optional[List["GetViewViewFilterSimilarContents"]] = Field(
|
46
49
|
alias="similarContents"
|
47
50
|
)
|
@@ -65,6 +68,11 @@ class GetViewViewFilterCreationDateRange(BaseModel):
|
|
65
68
|
to: Optional[Any]
|
66
69
|
|
67
70
|
|
71
|
+
class GetViewViewFilterFileSizeRange(BaseModel):
|
72
|
+
from_: Optional[Any] = Field(alias="from")
|
73
|
+
to: Optional[Any]
|
74
|
+
|
75
|
+
|
68
76
|
class GetViewViewFilterSimilarContents(BaseModel):
|
69
77
|
id: str
|
70
78
|
|
@@ -180,6 +188,9 @@ class GetViewViewAugmentedFilter(BaseModel):
|
|
180
188
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
181
189
|
formats: Optional[List[Optional[str]]]
|
182
190
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
191
|
+
file_size_range: Optional["GetViewViewAugmentedFilterFileSizeRange"] = Field(
|
192
|
+
alias="fileSizeRange"
|
193
|
+
)
|
183
194
|
similar_contents: Optional[List["GetViewViewAugmentedFilterSimilarContents"]] = (
|
184
195
|
Field(alias="similarContents")
|
185
196
|
)
|
@@ -203,6 +214,11 @@ class GetViewViewAugmentedFilterCreationDateRange(BaseModel):
|
|
203
214
|
to: Optional[Any]
|
204
215
|
|
205
216
|
|
217
|
+
class GetViewViewAugmentedFilterFileSizeRange(BaseModel):
|
218
|
+
from_: Optional[Any] = Field(alias="from")
|
219
|
+
to: Optional[Any]
|
220
|
+
|
221
|
+
|
206
222
|
class GetViewViewAugmentedFilterSimilarContents(BaseModel):
|
207
223
|
id: str
|
208
224
|
|
graphlit_api/input_types.py
CHANGED
@@ -2068,6 +2068,11 @@ class ContentCriteriaInput(BaseModel):
|
|
2068
2068
|
)
|
2069
2069
|
types: Optional[List[ContentTypes]] = None
|
2070
2070
|
file_types: Optional[List[FileTypes]] = Field(alias="fileTypes", default=None)
|
2071
|
+
formats: Optional[List[Optional[str]]] = None
|
2072
|
+
file_extensions: Optional[List[str]] = Field(alias="fileExtensions", default=None)
|
2073
|
+
file_size_range: Optional["Int64RangeInput"] = Field(
|
2074
|
+
alias="fileSizeRange", default=None
|
2075
|
+
)
|
2071
2076
|
similar_contents: Optional[List["EntityReferenceInput"]] = Field(
|
2072
2077
|
alias="similarContents", default=None
|
2073
2078
|
)
|
@@ -2328,6 +2333,11 @@ class PackageMetadataInput(BaseModel):
|
|
2328
2333
|
folder_count: Optional[int] = Field(alias="folderCount", default=None)
|
2329
2334
|
|
2330
2335
|
|
2336
|
+
class Int64RangeInput(BaseModel):
|
2337
|
+
from_: Optional[Any] = Field(alias="from", default=None)
|
2338
|
+
to: Optional[Any] = None
|
2339
|
+
|
2340
|
+
|
2331
2341
|
class MicrosoftCalendarFeedPropertiesInput(BaseModel):
|
2332
2342
|
calendar_id: Optional[str] = Field(alias="calendarId", default=None)
|
2333
2343
|
before_date: Optional[Any] = Field(alias="beforeDate", default=None)
|
graphlit_api/operations.py
CHANGED
@@ -231,6 +231,8 @@ __all__ = [
|
|
231
231
|
"QUERY_CONTENTS_OBSERVATIONS_GQL",
|
232
232
|
"QUERY_CONVERSATIONS_GQL",
|
233
233
|
"QUERY_CREDITS_GQL",
|
234
|
+
"QUERY_DISCORD_CHANNELS_GQL",
|
235
|
+
"QUERY_DISCORD_GUILDS_GQL",
|
234
236
|
"QUERY_DROPBOX_FOLDERS_GQL",
|
235
237
|
"QUERY_EVENTS_GQL",
|
236
238
|
"QUERY_FEEDS_GQL",
|
@@ -424,6 +426,10 @@ query GetAlert($id: ID!, $correlationId: String) {
|
|
424
426
|
fileTypes
|
425
427
|
formats
|
426
428
|
fileExtensions
|
429
|
+
fileSizeRange {
|
430
|
+
from
|
431
|
+
to
|
432
|
+
}
|
427
433
|
similarContents {
|
428
434
|
id
|
429
435
|
}
|
@@ -567,6 +573,10 @@ query QueryAlerts($filter: AlertFilter, $correlationId: String) {
|
|
567
573
|
fileTypes
|
568
574
|
formats
|
569
575
|
fileExtensions
|
576
|
+
fileSizeRange {
|
577
|
+
from
|
578
|
+
to
|
579
|
+
}
|
570
580
|
similarContents {
|
571
581
|
id
|
572
582
|
}
|
@@ -4843,6 +4853,10 @@ query GetConversation($id: ID!, $correlationId: String) {
|
|
4843
4853
|
fileTypes
|
4844
4854
|
formats
|
4845
4855
|
fileExtensions
|
4856
|
+
fileSizeRange {
|
4857
|
+
from
|
4858
|
+
to
|
4859
|
+
}
|
4846
4860
|
similarContents {
|
4847
4861
|
id
|
4848
4862
|
}
|
@@ -4926,6 +4940,10 @@ query GetConversation($id: ID!, $correlationId: String) {
|
|
4926
4940
|
fileTypes
|
4927
4941
|
formats
|
4928
4942
|
fileExtensions
|
4943
|
+
fileSizeRange {
|
4944
|
+
from
|
4945
|
+
to
|
4946
|
+
}
|
4929
4947
|
similarContents {
|
4930
4948
|
id
|
4931
4949
|
}
|
@@ -5760,6 +5778,10 @@ query QueryConversations($filter: ConversationFilter, $correlationId: String) {
|
|
5760
5778
|
fileTypes
|
5761
5779
|
formats
|
5762
5780
|
fileExtensions
|
5781
|
+
fileSizeRange {
|
5782
|
+
from
|
5783
|
+
to
|
5784
|
+
}
|
5763
5785
|
similarContents {
|
5764
5786
|
id
|
5765
5787
|
}
|
@@ -5843,6 +5865,10 @@ query QueryConversations($filter: ConversationFilter, $correlationId: String) {
|
|
5843
5865
|
fileTypes
|
5844
5866
|
formats
|
5845
5867
|
fileExtensions
|
5868
|
+
fileSizeRange {
|
5869
|
+
from
|
5870
|
+
to
|
5871
|
+
}
|
5846
5872
|
similarContents {
|
5847
5873
|
id
|
5848
5874
|
}
|
@@ -7074,6 +7100,28 @@ query QueryBoxFolders($properties: BoxFoldersInput!, $folderId: ID) {
|
|
7074
7100
|
}
|
7075
7101
|
"""
|
7076
7102
|
|
7103
|
+
QUERY_DISCORD_CHANNELS_GQL = """
|
7104
|
+
query QueryDiscordChannels($properties: DiscordChannelsInput!) {
|
7105
|
+
discordChannels(properties: $properties) {
|
7106
|
+
results {
|
7107
|
+
channelName
|
7108
|
+
channelId
|
7109
|
+
}
|
7110
|
+
}
|
7111
|
+
}
|
7112
|
+
"""
|
7113
|
+
|
7114
|
+
QUERY_DISCORD_GUILDS_GQL = """
|
7115
|
+
query QueryDiscordGuilds($properties: DiscordGuildsInput!) {
|
7116
|
+
discordGuilds(properties: $properties) {
|
7117
|
+
results {
|
7118
|
+
guildName
|
7119
|
+
guildId
|
7120
|
+
}
|
7121
|
+
}
|
7122
|
+
}
|
7123
|
+
"""
|
7124
|
+
|
7077
7125
|
QUERY_DROPBOX_FOLDERS_GQL = """
|
7078
7126
|
query QueryDropboxFolders($properties: DropboxFoldersInput!, $folderPath: String) {
|
7079
7127
|
dropboxFolders(properties: $properties, folderPath: $folderPath) {
|
@@ -10444,6 +10492,10 @@ mutation CreateView($view: ViewInput!) {
|
|
10444
10492
|
fileTypes
|
10445
10493
|
formats
|
10446
10494
|
fileExtensions
|
10495
|
+
fileSizeRange {
|
10496
|
+
from
|
10497
|
+
to
|
10498
|
+
}
|
10447
10499
|
similarContents {
|
10448
10500
|
id
|
10449
10501
|
}
|
@@ -10527,6 +10579,10 @@ mutation CreateView($view: ViewInput!) {
|
|
10527
10579
|
fileTypes
|
10528
10580
|
formats
|
10529
10581
|
fileExtensions
|
10582
|
+
fileSizeRange {
|
10583
|
+
from
|
10584
|
+
to
|
10585
|
+
}
|
10530
10586
|
similarContents {
|
10531
10587
|
id
|
10532
10588
|
}
|
@@ -10657,6 +10713,10 @@ query GetView($id: ID!, $correlationId: String) {
|
|
10657
10713
|
fileTypes
|
10658
10714
|
formats
|
10659
10715
|
fileExtensions
|
10716
|
+
fileSizeRange {
|
10717
|
+
from
|
10718
|
+
to
|
10719
|
+
}
|
10660
10720
|
similarContents {
|
10661
10721
|
id
|
10662
10722
|
}
|
@@ -10740,6 +10800,10 @@ query GetView($id: ID!, $correlationId: String) {
|
|
10740
10800
|
fileTypes
|
10741
10801
|
formats
|
10742
10802
|
fileExtensions
|
10803
|
+
fileSizeRange {
|
10804
|
+
from
|
10805
|
+
to
|
10806
|
+
}
|
10743
10807
|
similarContents {
|
10744
10808
|
id
|
10745
10809
|
}
|
@@ -10840,6 +10904,10 @@ query QueryViews($filter: ViewFilter, $correlationId: String) {
|
|
10840
10904
|
fileTypes
|
10841
10905
|
formats
|
10842
10906
|
fileExtensions
|
10907
|
+
fileSizeRange {
|
10908
|
+
from
|
10909
|
+
to
|
10910
|
+
}
|
10843
10911
|
similarContents {
|
10844
10912
|
id
|
10845
10913
|
}
|
@@ -10923,6 +10991,10 @@ query QueryViews($filter: ViewFilter, $correlationId: String) {
|
|
10923
10991
|
fileTypes
|
10924
10992
|
formats
|
10925
10993
|
fileExtensions
|
10994
|
+
fileSizeRange {
|
10995
|
+
from
|
10996
|
+
to
|
10997
|
+
}
|
10926
10998
|
similarContents {
|
10927
10999
|
id
|
10928
11000
|
}
|
@@ -11018,6 +11090,10 @@ mutation UpdateView($view: ViewUpdateInput!) {
|
|
11018
11090
|
fileTypes
|
11019
11091
|
formats
|
11020
11092
|
fileExtensions
|
11093
|
+
fileSizeRange {
|
11094
|
+
from
|
11095
|
+
to
|
11096
|
+
}
|
11021
11097
|
similarContents {
|
11022
11098
|
id
|
11023
11099
|
}
|
@@ -11101,6 +11177,10 @@ mutation UpdateView($view: ViewUpdateInput!) {
|
|
11101
11177
|
fileTypes
|
11102
11178
|
formats
|
11103
11179
|
fileExtensions
|
11180
|
+
fileSizeRange {
|
11181
|
+
from
|
11182
|
+
to
|
11183
|
+
}
|
11104
11184
|
similarContents {
|
11105
11185
|
id
|
11106
11186
|
}
|
@@ -11195,6 +11275,10 @@ mutation UpsertView($view: ViewInput!) {
|
|
11195
11275
|
fileTypes
|
11196
11276
|
formats
|
11197
11277
|
fileExtensions
|
11278
|
+
fileSizeRange {
|
11279
|
+
from
|
11280
|
+
to
|
11281
|
+
}
|
11198
11282
|
similarContents {
|
11199
11283
|
id
|
11200
11284
|
}
|
@@ -11278,6 +11362,10 @@ mutation UpsertView($view: ViewInput!) {
|
|
11278
11362
|
fileTypes
|
11279
11363
|
formats
|
11280
11364
|
fileExtensions
|
11365
|
+
fileSizeRange {
|
11366
|
+
from
|
11367
|
+
to
|
11368
|
+
}
|
11281
11369
|
similarContents {
|
11282
11370
|
id
|
11283
11371
|
}
|
graphlit_api/query_alerts.py
CHANGED
@@ -67,6 +67,9 @@ class QueryAlertsAlertsResultsFilter(BaseModel):
|
|
67
67
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
68
68
|
formats: Optional[List[Optional[str]]]
|
69
69
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
70
|
+
file_size_range: Optional["QueryAlertsAlertsResultsFilterFileSizeRange"] = Field(
|
71
|
+
alias="fileSizeRange"
|
72
|
+
)
|
70
73
|
similar_contents: Optional[
|
71
74
|
List["QueryAlertsAlertsResultsFilterSimilarContents"]
|
72
75
|
] = Field(alias="similarContents")
|
@@ -90,6 +93,11 @@ class QueryAlertsAlertsResultsFilterCreationDateRange(BaseModel):
|
|
90
93
|
to: Optional[Any]
|
91
94
|
|
92
95
|
|
96
|
+
class QueryAlertsAlertsResultsFilterFileSizeRange(BaseModel):
|
97
|
+
from_: Optional[Any] = Field(alias="from")
|
98
|
+
to: Optional[Any]
|
99
|
+
|
100
|
+
|
93
101
|
class QueryAlertsAlertsResultsFilterSimilarContents(BaseModel):
|
94
102
|
id: str
|
95
103
|
|
@@ -228,6 +228,9 @@ class QueryConversationsConversationsResultsFilter(BaseModel):
|
|
228
228
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
229
229
|
formats: Optional[List[Optional[str]]]
|
230
230
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
231
|
+
file_size_range: Optional[
|
232
|
+
"QueryConversationsConversationsResultsFilterFileSizeRange"
|
233
|
+
] = Field(alias="fileSizeRange")
|
231
234
|
similar_contents: Optional[
|
232
235
|
List["QueryConversationsConversationsResultsFilterSimilarContents"]
|
233
236
|
] = Field(alias="similarContents")
|
@@ -259,6 +262,11 @@ class QueryConversationsConversationsResultsFilterCreationDateRange(BaseModel):
|
|
259
262
|
to: Optional[Any]
|
260
263
|
|
261
264
|
|
265
|
+
class QueryConversationsConversationsResultsFilterFileSizeRange(BaseModel):
|
266
|
+
from_: Optional[Any] = Field(alias="from")
|
267
|
+
to: Optional[Any]
|
268
|
+
|
269
|
+
|
262
270
|
class QueryConversationsConversationsResultsFilterSimilarContents(BaseModel):
|
263
271
|
id: str
|
264
272
|
|
@@ -384,6 +392,9 @@ class QueryConversationsConversationsResultsAugmentedFilter(BaseModel):
|
|
384
392
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
385
393
|
formats: Optional[List[Optional[str]]]
|
386
394
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
395
|
+
file_size_range: Optional[
|
396
|
+
"QueryConversationsConversationsResultsAugmentedFilterFileSizeRange"
|
397
|
+
] = Field(alias="fileSizeRange")
|
387
398
|
similar_contents: Optional[
|
388
399
|
List["QueryConversationsConversationsResultsAugmentedFilterSimilarContents"]
|
389
400
|
] = Field(alias="similarContents")
|
@@ -419,6 +430,11 @@ class QueryConversationsConversationsResultsAugmentedFilterCreationDateRange(Bas
|
|
419
430
|
to: Optional[Any]
|
420
431
|
|
421
432
|
|
433
|
+
class QueryConversationsConversationsResultsAugmentedFilterFileSizeRange(BaseModel):
|
434
|
+
from_: Optional[Any] = Field(alias="from")
|
435
|
+
to: Optional[Any]
|
436
|
+
|
437
|
+
|
422
438
|
class QueryConversationsConversationsResultsAugmentedFilterSimilarContents(BaseModel):
|
423
439
|
id: str
|
424
440
|
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: ./documents
|
3
|
+
|
4
|
+
from typing import List, Optional
|
5
|
+
|
6
|
+
from pydantic import Field
|
7
|
+
|
8
|
+
from .base_model import BaseModel
|
9
|
+
|
10
|
+
|
11
|
+
class QueryDiscordChannels(BaseModel):
|
12
|
+
discord_channels: Optional["QueryDiscordChannelsDiscordChannels"] = Field(
|
13
|
+
alias="discordChannels"
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
class QueryDiscordChannelsDiscordChannels(BaseModel):
|
18
|
+
results: Optional[List[Optional["QueryDiscordChannelsDiscordChannelsResults"]]]
|
19
|
+
|
20
|
+
|
21
|
+
class QueryDiscordChannelsDiscordChannelsResults(BaseModel):
|
22
|
+
channel_name: Optional[str] = Field(alias="channelName")
|
23
|
+
channel_id: Optional[str] = Field(alias="channelId")
|
24
|
+
|
25
|
+
|
26
|
+
QueryDiscordChannels.model_rebuild()
|
27
|
+
QueryDiscordChannelsDiscordChannels.model_rebuild()
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: ./documents
|
3
|
+
|
4
|
+
from typing import List, Optional
|
5
|
+
|
6
|
+
from pydantic import Field
|
7
|
+
|
8
|
+
from .base_model import BaseModel
|
9
|
+
|
10
|
+
|
11
|
+
class QueryDiscordGuilds(BaseModel):
|
12
|
+
discord_guilds: Optional["QueryDiscordGuildsDiscordGuilds"] = Field(
|
13
|
+
alias="discordGuilds"
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
class QueryDiscordGuildsDiscordGuilds(BaseModel):
|
18
|
+
results: Optional[List[Optional["QueryDiscordGuildsDiscordGuildsResults"]]]
|
19
|
+
|
20
|
+
|
21
|
+
class QueryDiscordGuildsDiscordGuildsResults(BaseModel):
|
22
|
+
guild_name: Optional[str] = Field(alias="guildName")
|
23
|
+
guild_id: Optional[str] = Field(alias="guildId")
|
24
|
+
|
25
|
+
|
26
|
+
QueryDiscordGuilds.model_rebuild()
|
27
|
+
QueryDiscordGuildsDiscordGuilds.model_rebuild()
|
graphlit_api/query_views.py
CHANGED
@@ -48,6 +48,9 @@ class QueryViewsViewsResultsFilter(BaseModel):
|
|
48
48
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
49
49
|
formats: Optional[List[Optional[str]]]
|
50
50
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
51
|
+
file_size_range: Optional["QueryViewsViewsResultsFilterFileSizeRange"] = Field(
|
52
|
+
alias="fileSizeRange"
|
53
|
+
)
|
51
54
|
similar_contents: Optional[List["QueryViewsViewsResultsFilterSimilarContents"]] = (
|
52
55
|
Field(alias="similarContents")
|
53
56
|
)
|
@@ -71,6 +74,11 @@ class QueryViewsViewsResultsFilterCreationDateRange(BaseModel):
|
|
71
74
|
to: Optional[Any]
|
72
75
|
|
73
76
|
|
77
|
+
class QueryViewsViewsResultsFilterFileSizeRange(BaseModel):
|
78
|
+
from_: Optional[Any] = Field(alias="from")
|
79
|
+
to: Optional[Any]
|
80
|
+
|
81
|
+
|
74
82
|
class QueryViewsViewsResultsFilterSimilarContents(BaseModel):
|
75
83
|
id: str
|
76
84
|
|
@@ -186,6 +194,9 @@ class QueryViewsViewsResultsAugmentedFilter(BaseModel):
|
|
186
194
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
187
195
|
formats: Optional[List[Optional[str]]]
|
188
196
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
197
|
+
file_size_range: Optional["QueryViewsViewsResultsAugmentedFilterFileSizeRange"] = (
|
198
|
+
Field(alias="fileSizeRange")
|
199
|
+
)
|
189
200
|
similar_contents: Optional[
|
190
201
|
List["QueryViewsViewsResultsAugmentedFilterSimilarContents"]
|
191
202
|
] = Field(alias="similarContents")
|
@@ -211,6 +222,11 @@ class QueryViewsViewsResultsAugmentedFilterCreationDateRange(BaseModel):
|
|
211
222
|
to: Optional[Any]
|
212
223
|
|
213
224
|
|
225
|
+
class QueryViewsViewsResultsAugmentedFilterFileSizeRange(BaseModel):
|
226
|
+
from_: Optional[Any] = Field(alias="from")
|
227
|
+
to: Optional[Any]
|
228
|
+
|
229
|
+
|
214
230
|
class QueryViewsViewsResultsAugmentedFilterSimilarContents(BaseModel):
|
215
231
|
id: str
|
216
232
|
|
graphlit_api/update_view.py
CHANGED
@@ -37,6 +37,9 @@ class UpdateViewUpdateViewFilter(BaseModel):
|
|
37
37
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
38
38
|
formats: Optional[List[Optional[str]]]
|
39
39
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
40
|
+
file_size_range: Optional["UpdateViewUpdateViewFilterFileSizeRange"] = Field(
|
41
|
+
alias="fileSizeRange"
|
42
|
+
)
|
40
43
|
similar_contents: Optional[List["UpdateViewUpdateViewFilterSimilarContents"]] = (
|
41
44
|
Field(alias="similarContents")
|
42
45
|
)
|
@@ -60,6 +63,11 @@ class UpdateViewUpdateViewFilterCreationDateRange(BaseModel):
|
|
60
63
|
to: Optional[Any]
|
61
64
|
|
62
65
|
|
66
|
+
class UpdateViewUpdateViewFilterFileSizeRange(BaseModel):
|
67
|
+
from_: Optional[Any] = Field(alias="from")
|
68
|
+
to: Optional[Any]
|
69
|
+
|
70
|
+
|
63
71
|
class UpdateViewUpdateViewFilterSimilarContents(BaseModel):
|
64
72
|
id: str
|
65
73
|
|
@@ -175,6 +183,9 @@ class UpdateViewUpdateViewAugmentedFilter(BaseModel):
|
|
175
183
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
176
184
|
formats: Optional[List[Optional[str]]]
|
177
185
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
186
|
+
file_size_range: Optional["UpdateViewUpdateViewAugmentedFilterFileSizeRange"] = (
|
187
|
+
Field(alias="fileSizeRange")
|
188
|
+
)
|
178
189
|
similar_contents: Optional[
|
179
190
|
List["UpdateViewUpdateViewAugmentedFilterSimilarContents"]
|
180
191
|
] = Field(alias="similarContents")
|
@@ -198,6 +209,11 @@ class UpdateViewUpdateViewAugmentedFilterCreationDateRange(BaseModel):
|
|
198
209
|
to: Optional[Any]
|
199
210
|
|
200
211
|
|
212
|
+
class UpdateViewUpdateViewAugmentedFilterFileSizeRange(BaseModel):
|
213
|
+
from_: Optional[Any] = Field(alias="from")
|
214
|
+
to: Optional[Any]
|
215
|
+
|
216
|
+
|
201
217
|
class UpdateViewUpdateViewAugmentedFilterSimilarContents(BaseModel):
|
202
218
|
id: str
|
203
219
|
|
graphlit_api/upsert_view.py
CHANGED
@@ -37,6 +37,9 @@ class UpsertViewUpsertViewFilter(BaseModel):
|
|
37
37
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
38
38
|
formats: Optional[List[Optional[str]]]
|
39
39
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
40
|
+
file_size_range: Optional["UpsertViewUpsertViewFilterFileSizeRange"] = Field(
|
41
|
+
alias="fileSizeRange"
|
42
|
+
)
|
40
43
|
similar_contents: Optional[List["UpsertViewUpsertViewFilterSimilarContents"]] = (
|
41
44
|
Field(alias="similarContents")
|
42
45
|
)
|
@@ -60,6 +63,11 @@ class UpsertViewUpsertViewFilterCreationDateRange(BaseModel):
|
|
60
63
|
to: Optional[Any]
|
61
64
|
|
62
65
|
|
66
|
+
class UpsertViewUpsertViewFilterFileSizeRange(BaseModel):
|
67
|
+
from_: Optional[Any] = Field(alias="from")
|
68
|
+
to: Optional[Any]
|
69
|
+
|
70
|
+
|
63
71
|
class UpsertViewUpsertViewFilterSimilarContents(BaseModel):
|
64
72
|
id: str
|
65
73
|
|
@@ -175,6 +183,9 @@ class UpsertViewUpsertViewAugmentedFilter(BaseModel):
|
|
175
183
|
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
176
184
|
formats: Optional[List[Optional[str]]]
|
177
185
|
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
186
|
+
file_size_range: Optional["UpsertViewUpsertViewAugmentedFilterFileSizeRange"] = (
|
187
|
+
Field(alias="fileSizeRange")
|
188
|
+
)
|
178
189
|
similar_contents: Optional[
|
179
190
|
List["UpsertViewUpsertViewAugmentedFilterSimilarContents"]
|
180
191
|
] = Field(alias="similarContents")
|
@@ -198,6 +209,11 @@ class UpsertViewUpsertViewAugmentedFilterCreationDateRange(BaseModel):
|
|
198
209
|
to: Optional[Any]
|
199
210
|
|
200
211
|
|
212
|
+
class UpsertViewUpsertViewAugmentedFilterFileSizeRange(BaseModel):
|
213
|
+
from_: Optional[Any] = Field(alias="from")
|
214
|
+
to: Optional[Any]
|
215
|
+
|
216
|
+
|
201
217
|
class UpsertViewUpsertViewAugmentedFilterSimilarContents(BaseModel):
|
202
218
|
id: str
|
203
219
|
|
{graphlit_client-1.0.20250627004.dist-info → graphlit_client-1.0.20250628001.dist-info}/RECORD
RENAMED
@@ -1,13 +1,13 @@
|
|
1
1
|
graphlit/__init__.py,sha256=4AyigTlFQWP40lnaaQ1H1iRT_B1hIXW9bgPanbwmTvs,32
|
2
2
|
graphlit/graphlit.py,sha256=g2znIWEb6fIwMKGm5G_BY4VHdaZi6hLO4Y6FdBjNesM,2389
|
3
|
-
graphlit_api/__init__.py,sha256
|
3
|
+
graphlit_api/__init__.py,sha256=qtEWlffTsFWbN3R39pCqD8U-bropaLELoprOZpkiAB0,238705
|
4
4
|
graphlit_api/add_contents_to_collections.py,sha256=K7tNpLn8-lRVaVT39iKr-VtCKRWVONyL_h6cC0L606Y,888
|
5
5
|
graphlit_api/ask_graphlit.py,sha256=U2grdqvzeFMjTzM5ACTEXV2Rk-R_WAwdslzWAtZb6i8,6489
|
6
6
|
graphlit_api/async_base_client.py,sha256=v0KUVwe2_RIQa8Mn7l_yD5McUe7B03vhclJ9SP4XGgw,12578
|
7
7
|
graphlit_api/base_model.py,sha256=o2d-DixASFCGztr3rTiGX0AwgFu7Awr7EgD70FI8a-I,620
|
8
8
|
graphlit_api/branch_conversation.py,sha256=iU3IsoM526AHUHjX0ODAyOPTpyS9N5RqSdytoAOmKbU,539
|
9
9
|
graphlit_api/clear_conversation.py,sha256=5GOmc2wfupV-7EHWyi3v6LA0pSVLtFNCzxPJm42Dp6Y,531
|
10
|
-
graphlit_api/client.py,sha256=
|
10
|
+
graphlit_api/client.py,sha256=HeB4dnZcylk8UN5IFm6rXN2NHrB8eFXf99PsXqbaywY,221669
|
11
11
|
graphlit_api/close_conversation.py,sha256=HcIUUiNf7hnuLZ7Fy6IcgfuHMSyWyJ7uOEy1EEETy_4,531
|
12
12
|
graphlit_api/complete_conversation.py,sha256=39v86YLrm9IGQVcsRHUyxoTkiT1sNoVPQZzim5FxSZo,16844
|
13
13
|
graphlit_api/continue_conversation.py,sha256=Ba_ufN-4Ji6ZjznlilvS85xxkdV5JGpnuEQUU-qGXBk,16844
|
@@ -69,7 +69,7 @@ graphlit_api/create_repo.py,sha256=hzxh3eZLzz1Re4UzDQ2U7Fzok3v2_bub-VbhG6LJuk4,3
|
|
69
69
|
graphlit_api/create_software.py,sha256=Y9hvsa5XoLzkjm2e_CycKpdIV734tGC4fBHPyGpNU-g,396
|
70
70
|
graphlit_api/create_specification.py,sha256=p23AxlkOa4UJP20C1Cn3Iqi_bVYzauH7f5MxPuhXuHY,643
|
71
71
|
graphlit_api/create_user.py,sha256=vISVh1FwTbOBHBQkxDq4AatQFkoe6hF2GLZUyUuhNMY,496
|
72
|
-
graphlit_api/create_view.py,sha256=
|
72
|
+
graphlit_api/create_view.py,sha256=NuP0w3-DvUSc1wT23XJnmhWc_OERbhs9KI6gu8086JU,10738
|
73
73
|
graphlit_api/create_workflow.py,sha256=JVd5ID6DoFViUwfMqF89uGGlTnx33xFIDaU9EwsmfE4,16804
|
74
74
|
graphlit_api/delete_alert.py,sha256=lSFt3rOfbW-Sl9QdcvvtABwqj0e_zs48UPkXjDpfJ8Y,398
|
75
75
|
graphlit_api/delete_alerts.py,sha256=Rza3SIO0ykapJk-HZ0JMuPtlG8_KcLTAOwNJbaGCH_8,442
|
@@ -172,12 +172,12 @@ graphlit_api/extract_contents.py,sha256=qsSy8UOJuqsUnCcuduaNPyaK2mZk_1noECT0Jgx3
|
|
172
172
|
graphlit_api/extract_text.py,sha256=jfkL6ep5wzXeoelZ5nRwNRT0t7oDCUt1xrigqkMj-7M,887
|
173
173
|
graphlit_api/feed_exists.py,sha256=NlvWhqVaV-coIV_orR-XsaXhG0Gll3bPVS3tPF0zEt0,351
|
174
174
|
graphlit_api/format_conversation.py,sha256=5ihjhW0dyN2M6aPqwphZMneRALHSCvjWV8abJxdhg-k,16458
|
175
|
-
graphlit_api/get_alert.py,sha256=
|
175
|
+
graphlit_api/get_alert.py,sha256=izw79lXOdV-JE08_1jUb2fFCACJN-0h2LrGwlGl7qZI,7426
|
176
176
|
graphlit_api/get_category.py,sha256=r4BhKYOT49VeBrbNkAd8Hs8ndXnvUV0nPr5CurbI_Bk,439
|
177
177
|
graphlit_api/get_collection.py,sha256=sLNFDsu139lFgk6fbhWHGLEVLHzoH_enyN2rklyHzUk,799
|
178
178
|
graphlit_api/get_connector.py,sha256=QQzpTX8O85az3twYomeIlGpl7v6gogM2Qqh1iXp92-k,2561
|
179
179
|
graphlit_api/get_content.py,sha256=hU7CYjTkWSOhq0mb75ZWtL6My91VbCh1pzg8P7jkJJI,14949
|
180
|
-
graphlit_api/get_conversation.py,sha256=
|
180
|
+
graphlit_api/get_conversation.py,sha256=CT2-lCwt38zDz2H9Wg2ySPmFWJCvyroEFeuZAQOmz-g,18237
|
181
181
|
graphlit_api/get_event.py,sha256=saVoCHle91eNLagCX8AZwcSDikEi9OSnImx-lGx3n9A,1523
|
182
182
|
graphlit_api/get_feed.py,sha256=VUSX0VYpwzrPth4amejpkH4wJ9hhi5zkgQbbwZT9pSo,14367
|
183
183
|
graphlit_api/get_label.py,sha256=0SmukTbSktKnVlx_FpVf3lxFOQVQ6RAiRj4kglnt3eI,418
|
@@ -203,7 +203,7 @@ graphlit_api/get_software.py,sha256=oFpWsAFCQfclVj7kdIzBxaIuKXavff4IP4jqVMDOzDI,
|
|
203
203
|
graphlit_api/get_specification.py,sha256=3zQhdMJ2bDffSYC0Gc_fJ5bISyUBFI9Nf8-ExCK7W_s,10713
|
204
204
|
graphlit_api/get_user.py,sha256=2QBpmB6C2sEC4o60B8hIGjz6KvEFd-oJWofzepqDkdc,2787
|
205
205
|
graphlit_api/get_user_by_identifier.py,sha256=ealLfGTZEQYbV5uVlyaQp3B18SWrLEKtNRSQVzgI2r0,3567
|
206
|
-
graphlit_api/get_view.py,sha256=
|
206
|
+
graphlit_api/get_view.py,sha256=1J9Js8_KKRWiyFay7GVeUabI_8GyWW0R49IyBGaX9Dw,9773
|
207
207
|
graphlit_api/get_workflow.py,sha256=0y-0-tfU946BqypyKnJHuJklkn2AEq17GXksG06zxes,15554
|
208
208
|
graphlit_api/ingest_batch.py,sha256=pmO_rAZdG8dPid40h8lnTfKSa5r0EAOmFF7PIg3a_r4,2366
|
209
209
|
graphlit_api/ingest_encoded_file.py,sha256=mKoEc5qziw8i-MDT8CrGCfmaupWnIVQkow7cRW_Y3Fw,2607
|
@@ -212,21 +212,21 @@ graphlit_api/ingest_memory.py,sha256=YF7sn_jvpk_iACg8encyp_gd0wrK0Om4blYzPDI-B8c
|
|
212
212
|
graphlit_api/ingest_text.py,sha256=D4lpV9LTC_u586_ILVrB2rVpHG0-8HivqeOA1GpQuFs,2286
|
213
213
|
graphlit_api/ingest_text_batch.py,sha256=gSD1bH3mAPwJzy5TeMJ6UguEgI9yrPUXyz1soExSttM,2521
|
214
214
|
graphlit_api/ingest_uri.py,sha256=f71kMRyMoAhef6sJU85ZgGz4aPq_5CDLaDvCeQnLY5A,2248
|
215
|
-
graphlit_api/input_types.py,sha256=
|
215
|
+
graphlit_api/input_types.py,sha256=6Dz1mqGIjhBkkpHa0UyT0rVILudwmuQMfIlIePkZ9JI,158508
|
216
216
|
graphlit_api/is_content_done.py,sha256=X8uevsTD6oFMbC8I3E9Emg-_yrFTWnnrVL5LpruSB6Q,390
|
217
217
|
graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,352
|
218
218
|
graphlit_api/lookup_contents.py,sha256=_s9tmHSm6WNIEKQ4J2JEdSsGg30HKhf3CxoiPMwZJXk,16735
|
219
219
|
graphlit_api/lookup_credits.py,sha256=WsV7fGbg29WWOjPRIaL2bnhISGsb0SqUlQxL7rBfNTo,1464
|
220
220
|
graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
|
221
221
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
222
|
-
graphlit_api/operations.py,sha256=
|
222
|
+
graphlit_api/operations.py,sha256=i53hsOi3nIxQuhYvefQaSppNdD4cIFAOyMNFTUxlf2s,225785
|
223
223
|
graphlit_api/prompt.py,sha256=jBlM3ywGnbVPYSBHMDPAy5ZlDDtndRsHnV7twcwLX1g,6203
|
224
224
|
graphlit_api/prompt_conversation.py,sha256=JMiDfxFaixz63wXcT-h948c5x2Uc6PgB3D7wORltkhU,16458
|
225
225
|
graphlit_api/prompt_specifications.py,sha256=GFLRlyp5pISfB0PVMw3RPCwGvqkA3qI5M2NiXXu2aT0,7090
|
226
226
|
graphlit_api/publish_contents.py,sha256=ONCYP4c5PUX8mo6Zy2I1gwvO_kc878rcOW1tuaTCxnM,5590
|
227
227
|
graphlit_api/publish_conversation.py,sha256=Mwf8wgX-FxASN_OnQb43kKb_IAGQOWPsBxCQ1lVSNrQ,5758
|
228
228
|
graphlit_api/publish_text.py,sha256=3T3YRHpBUt2_vfQrKo7gYxcMoqiS88EJ7X7pFFgWkHI,5408
|
229
|
-
graphlit_api/query_alerts.py,sha256=
|
229
|
+
graphlit_api/query_alerts.py,sha256=1-_OhH_6p7JIEu378lsAeSojIR6NbEjMxIwYSCjXR5U,8520
|
230
230
|
graphlit_api/query_box_folders.py,sha256=NA6_GZ0HOR3jutD6VG5vMuspoIZkFWoM5x5QW6iL6jo,633
|
231
231
|
graphlit_api/query_categories.py,sha256=5AiZlgWRycLmr7-ID-EIoI2Q8ss6C5vGttr_ECKIG-w,636
|
232
232
|
graphlit_api/query_collections.py,sha256=IQv3XSV7XxMyRRQUGKuIY0w5cBfYr212dHlkDGdF0Ok,891
|
@@ -235,8 +235,10 @@ graphlit_api/query_contents.py,sha256=KYpvguxxD83QRcywaf8Prj1yBosgTkLCQd-P1ZfYJa
|
|
235
235
|
graphlit_api/query_contents_facets.py,sha256=xKbOkq-F9-AYUulUQNPrR9PnQyq7M2j_u7fpQ8HYk4c,1368
|
236
236
|
graphlit_api/query_contents_graph.py,sha256=RzQHZEQOOzB0yLTvU6rBJu_Str3Gc9m8BG8fY8xVrYY,975
|
237
237
|
graphlit_api/query_contents_observations.py,sha256=_YlrtwSeD99c0xO3Ujwlj0mS1YX9d82rO4WcdWAFbKA,15413
|
238
|
-
graphlit_api/query_conversations.py,sha256=
|
238
|
+
graphlit_api/query_conversations.py,sha256=V-38BEQNV4BmWZWxHp8EfxNv63AsjN1CzmrLA8f7yws,20399
|
239
239
|
graphlit_api/query_credits.py,sha256=6uJqn4iYfBfsUtSMTCSuV4d2VTiYR4gR5tEeDH5Cf9o,1396
|
240
|
+
graphlit_api/query_discord_channels.py,sha256=nQAoOUj7HbrQVkYgXSSQzxbH5AYRjsfTQfEGWJ3YUtA,721
|
241
|
+
graphlit_api/query_discord_guilds.py,sha256=zq-sEc4AXQgWXI4xtX_bm2TnqgREKchxj8gAKiXMt6M,685
|
240
242
|
graphlit_api/query_dropbox_folders.py,sha256=KQeuBCG7GBQWV6hr3vqzhDkrgfQ73LM8jU6ETAp-21c,703
|
241
243
|
graphlit_api/query_events.py,sha256=-YWXAy3hjSHlrIk9GtiKaPow3aWppE2XO60sToSjxSc,1716
|
242
244
|
graphlit_api/query_feeds.py,sha256=347iEpFo7UjCFGpXXqv44VvTpmDXnfXsIJgPj9PT-q4,15480
|
@@ -275,7 +277,7 @@ graphlit_api/query_specifications.py,sha256=qvE25wOZGReO4b1gY4TPxo_IWP5sPU8bSEpY
|
|
275
277
|
graphlit_api/query_tokens.py,sha256=8lvoWuoTOGVxiJT089EgzwUt78UPc1dcvN1rMveO07M,1739
|
276
278
|
graphlit_api/query_usage.py,sha256=VUKzjpaZjkcQFXJlEKIQT9I87HTgcYzX1CeimAzqeIM,1645
|
277
279
|
graphlit_api/query_users.py,sha256=UD9lRke9naI5XezwhgBrJpvdEn00uW-HYJnRoOI0ftE,3195
|
278
|
-
graphlit_api/query_views.py,sha256=
|
280
|
+
graphlit_api/query_views.py,sha256=GLBBgveraWjWiuzEepK_bKZDcOR6PFkmCXkFmYL6SSg,11256
|
279
281
|
graphlit_api/query_workflows.py,sha256=xAj1xe75F9j1cf1Xkof2XF2CkCIV9QKcQSojXP6i9Qc,17360
|
280
282
|
graphlit_api/remove_contents_from_collection.py,sha256=LnUL43UNNIPY-DBn-vg0Jx89tfuEBpctGgdQ5U75UlU,950
|
281
283
|
graphlit_api/retrieve_sources.py,sha256=MLtgZ7_jKNGjf5LKFqJy-KyQESo_KvNeV_gjsfyV2XQ,1134
|
@@ -321,17 +323,17 @@ graphlit_api/update_repo.py,sha256=9BEt_65v0omSEwDmuspasvp45pCUHfmgq6u2OdLEycw,3
|
|
321
323
|
graphlit_api/update_software.py,sha256=J78h3r976bLWuiS9q7EixqWLu-G7U0IiQ2SyAePymCY,396
|
322
324
|
graphlit_api/update_specification.py,sha256=P-VoQ6uqRxIV68XDVyibXFuQ3SE973FCmaCgrnA3A84,643
|
323
325
|
graphlit_api/update_user.py,sha256=r7VfMw19P4u6POz4yEbcFW65-TVAjyBlB3te2_fY6I8,496
|
324
|
-
graphlit_api/update_view.py,sha256=
|
326
|
+
graphlit_api/update_view.py,sha256=G_kmq6UwS0MGaf3mUvJm2uPb0w94WT8sGYkgsPduUJU,10738
|
325
327
|
graphlit_api/update_workflow.py,sha256=7yo3c5v4ScPdfOkPtnqyq-0hRTIkdjuHuCXDnsj8JnA,16804
|
326
328
|
graphlit_api/upsert_category.py,sha256=Q60eV1hfyx9xV6fWNW9bhadTqWFfY4-u8V-vGMUO7Vs,396
|
327
329
|
graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,358
|
328
330
|
graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
|
329
|
-
graphlit_api/upsert_view.py,sha256=
|
331
|
+
graphlit_api/upsert_view.py,sha256=uvsK_Hjlh_9hlj5UCjsnzhqQH7xZ_urajaSIhWMj9iw,10738
|
330
332
|
graphlit_api/upsert_workflow.py,sha256=BWzMvOF7kQWs-uLuet5jCletHq8KGD7XK-ZwWpHM5MU,16804
|
331
333
|
graphlit_api/view_exists.py,sha256=OSYvGogCDHxbHfIjcjgKBSmCoIE4gOEjnPgiS5xX_yE,351
|
332
334
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
333
|
-
graphlit_client-1.0.
|
334
|
-
graphlit_client-1.0.
|
335
|
-
graphlit_client-1.0.
|
336
|
-
graphlit_client-1.0.
|
337
|
-
graphlit_client-1.0.
|
335
|
+
graphlit_client-1.0.20250628001.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
336
|
+
graphlit_client-1.0.20250628001.dist-info/METADATA,sha256=8-u9-brl_jojHDbqbRYDFQqk0dPRXc2LbwGkoNcHAxc,3408
|
337
|
+
graphlit_client-1.0.20250628001.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
338
|
+
graphlit_client-1.0.20250628001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
339
|
+
graphlit_client-1.0.20250628001.dist-info/RECORD,,
|
{graphlit_client-1.0.20250627004.dist-info → graphlit_client-1.0.20250628001.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|