graphlit-client 1.0.20250627005__py3-none-any.whl → 1.0.20250628002__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 +38 -0
- graphlit_api/create_view.py +16 -0
- graphlit_api/enums.py +11 -0
- graphlit_api/get_alert.py +8 -0
- graphlit_api/get_connector.py +3 -0
- graphlit_api/get_conversation.py +16 -0
- graphlit_api/get_feed.py +8 -3
- graphlit_api/get_user.py +3 -0
- graphlit_api/get_user_by_identifier.py +3 -0
- graphlit_api/get_view.py +16 -0
- graphlit_api/input_types.py +57 -5
- graphlit_api/operations.py +78 -0
- graphlit_api/query_alerts.py +8 -0
- graphlit_api/query_connectors.py +3 -0
- graphlit_api/query_conversations.py +16 -0
- graphlit_api/query_feeds.py +8 -3
- graphlit_api/query_users.py +3 -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.20250627005.dist-info → graphlit_client-1.0.20250628002.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250627005.dist-info → graphlit_client-1.0.20250628002.dist-info}/RECORD +25 -25
- {graphlit_client-1.0.20250627005.dist-info → graphlit_client-1.0.20250628002.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250627005.dist-info → graphlit_client-1.0.20250628002.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250627005.dist-info → graphlit_client-1.0.20250628002.dist-info}/top_level.txt +0 -0
graphlit_api/input_types.py
CHANGED
@@ -9,6 +9,7 @@ from .base_model import BaseModel
|
|
9
9
|
from .enums import (
|
10
10
|
AlertTypes,
|
11
11
|
AnthropicModels,
|
12
|
+
ArcadeProviders,
|
12
13
|
AssemblyAIModels,
|
13
14
|
AuthenticationServiceTypes,
|
14
15
|
AzureDocumentIntelligenceModels,
|
@@ -80,6 +81,7 @@ from .enums import (
|
|
80
81
|
MetadataTypes,
|
81
82
|
MicrosoftCalendarAuthenticationTypes,
|
82
83
|
MicrosoftEmailAuthenticationTypes,
|
84
|
+
MicrosoftTeamsAuthenticationTypes,
|
83
85
|
MistralModels,
|
84
86
|
ModelServiceTypes,
|
85
87
|
ModelTypes,
|
@@ -286,7 +288,13 @@ class H3IndexFilter(BaseModel):
|
|
286
288
|
|
287
289
|
|
288
290
|
class MicrosoftTeamsTeamsInput(BaseModel):
|
289
|
-
|
291
|
+
authentication_type: Optional[MicrosoftTeamsAuthenticationTypes] = Field(
|
292
|
+
alias="authenticationType", default=None
|
293
|
+
)
|
294
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
295
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
296
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
297
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
290
298
|
|
291
299
|
|
292
300
|
class RetrievalStrategyUpdateInput(BaseModel):
|
@@ -1135,6 +1143,8 @@ class OrganizationFilter(BaseModel):
|
|
1135
1143
|
|
1136
1144
|
class ArcadeAuthenticationPropertiesInput(BaseModel):
|
1137
1145
|
authorization_id: str = Field(alias="authorizationId")
|
1146
|
+
provider: ArcadeProviders
|
1147
|
+
metadata: Optional[str] = None
|
1138
1148
|
|
1139
1149
|
|
1140
1150
|
class ContentCriteriaLevelInput(BaseModel):
|
@@ -1608,9 +1618,13 @@ class ViewUpdateInput(BaseModel):
|
|
1608
1618
|
|
1609
1619
|
|
1610
1620
|
class GoogleCalendarsInput(BaseModel):
|
1621
|
+
authentication_type: Optional[GoogleCalendarAuthenticationTypes] = Field(
|
1622
|
+
alias="authenticationType", default=None
|
1623
|
+
)
|
1611
1624
|
client_id: str = Field(alias="clientId")
|
1612
1625
|
client_secret: str = Field(alias="clientSecret")
|
1613
1626
|
refresh_token: str = Field(alias="refreshToken")
|
1627
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
1614
1628
|
|
1615
1629
|
|
1616
1630
|
class ConversationInput(BaseModel):
|
@@ -1806,13 +1820,23 @@ class MedicalTestFilter(BaseModel):
|
|
1806
1820
|
|
1807
1821
|
|
1808
1822
|
class OneDriveFoldersInput(BaseModel):
|
1823
|
+
authentication_type: Optional[OneDriveAuthenticationTypes] = Field(
|
1824
|
+
alias="authenticationType", default=None
|
1825
|
+
)
|
1809
1826
|
client_id: str = Field(alias="clientId")
|
1810
1827
|
client_secret: str = Field(alias="clientSecret")
|
1811
1828
|
refresh_token: str = Field(alias="refreshToken")
|
1829
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
1812
1830
|
|
1813
1831
|
|
1814
1832
|
class MicrosoftTeamsChannelsInput(BaseModel):
|
1815
|
-
|
1833
|
+
authentication_type: Optional[MicrosoftTeamsAuthenticationTypes] = Field(
|
1834
|
+
alias="authenticationType", default=None
|
1835
|
+
)
|
1836
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
1837
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
1838
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
1839
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
1816
1840
|
|
1817
1841
|
|
1818
1842
|
class MedicalTherapyUpdateInput(BaseModel):
|
@@ -2068,6 +2092,11 @@ class ContentCriteriaInput(BaseModel):
|
|
2068
2092
|
)
|
2069
2093
|
types: Optional[List[ContentTypes]] = None
|
2070
2094
|
file_types: Optional[List[FileTypes]] = Field(alias="fileTypes", default=None)
|
2095
|
+
formats: Optional[List[Optional[str]]] = None
|
2096
|
+
file_extensions: Optional[List[str]] = Field(alias="fileExtensions", default=None)
|
2097
|
+
file_size_range: Optional["Int64RangeInput"] = Field(
|
2098
|
+
alias="fileSizeRange", default=None
|
2099
|
+
)
|
2071
2100
|
similar_contents: Optional[List["EntityReferenceInput"]] = Field(
|
2072
2101
|
alias="similarContents", default=None
|
2073
2102
|
)
|
@@ -2328,6 +2357,11 @@ class PackageMetadataInput(BaseModel):
|
|
2328
2357
|
folder_count: Optional[int] = Field(alias="folderCount", default=None)
|
2329
2358
|
|
2330
2359
|
|
2360
|
+
class Int64RangeInput(BaseModel):
|
2361
|
+
from_: Optional[Any] = Field(alias="from", default=None)
|
2362
|
+
to: Optional[Any] = None
|
2363
|
+
|
2364
|
+
|
2331
2365
|
class MicrosoftCalendarFeedPropertiesInput(BaseModel):
|
2332
2366
|
calendar_id: Optional[str] = Field(alias="calendarId", default=None)
|
2333
2367
|
before_date: Optional[Any] = Field(alias="beforeDate", default=None)
|
@@ -2436,9 +2470,13 @@ class MicrosoftEmailFeedPropertiesInput(BaseModel):
|
|
2436
2470
|
|
2437
2471
|
class MicrosoftTeamsFeedPropertiesUpdateInput(BaseModel):
|
2438
2472
|
type: Optional[FeedListingTypes] = None
|
2473
|
+
authentication_type: Optional[MicrosoftTeamsAuthenticationTypes] = Field(
|
2474
|
+
alias="authenticationType", default=None
|
2475
|
+
)
|
2439
2476
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2440
2477
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2441
2478
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2479
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2442
2480
|
team_id: str = Field(alias="teamId")
|
2443
2481
|
channel_id: str = Field(alias="channelId")
|
2444
2482
|
read_limit: Optional[int] = Field(alias="readLimit", default=None)
|
@@ -2578,9 +2616,13 @@ class OneDriveFeedPropertiesInput(BaseModel):
|
|
2578
2616
|
|
2579
2617
|
|
2580
2618
|
class GoogleDriveFoldersInput(BaseModel):
|
2619
|
+
authentication_type: Optional[GoogleDriveAuthenticationTypes] = Field(
|
2620
|
+
alias="authenticationType", default=None
|
2621
|
+
)
|
2581
2622
|
client_id: str = Field(alias="clientId")
|
2582
2623
|
client_secret: str = Field(alias="clientSecret")
|
2583
2624
|
refresh_token: str = Field(alias="refreshToken")
|
2625
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2584
2626
|
|
2585
2627
|
|
2586
2628
|
class SharePointFoldersInput(BaseModel):
|
@@ -2591,6 +2633,7 @@ class SharePointFoldersInput(BaseModel):
|
|
2591
2633
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2592
2634
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2593
2635
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2636
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2594
2637
|
|
2595
2638
|
|
2596
2639
|
class SharePointLibrariesInput(BaseModel):
|
@@ -2601,6 +2644,7 @@ class SharePointLibrariesInput(BaseModel):
|
|
2601
2644
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2602
2645
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2603
2646
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2647
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2604
2648
|
|
2605
2649
|
|
2606
2650
|
class ContentClassificationConnectorInput(BaseModel):
|
@@ -3515,9 +3559,13 @@ class MedicalDrugUpdateInput(BaseModel):
|
|
3515
3559
|
|
3516
3560
|
class MicrosoftTeamsFeedPropertiesInput(BaseModel):
|
3517
3561
|
type: Optional[FeedListingTypes] = None
|
3518
|
-
|
3519
|
-
|
3520
|
-
|
3562
|
+
authentication_type: Optional[MicrosoftTeamsAuthenticationTypes] = Field(
|
3563
|
+
alias="authenticationType", default=None
|
3564
|
+
)
|
3565
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
3566
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
3567
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
3568
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
3521
3569
|
team_id: str = Field(alias="teamId")
|
3522
3570
|
channel_id: str = Field(alias="channelId")
|
3523
3571
|
read_limit: Optional[int] = Field(alias="readLimit", default=None)
|
@@ -3900,9 +3948,13 @@ class AlertInput(BaseModel):
|
|
3900
3948
|
|
3901
3949
|
|
3902
3950
|
class MicrosoftCalendarsInput(BaseModel):
|
3951
|
+
authentication_type: Optional[MicrosoftCalendarAuthenticationTypes] = Field(
|
3952
|
+
alias="authenticationType", default=None
|
3953
|
+
)
|
3903
3954
|
client_id: str = Field(alias="clientId")
|
3904
3955
|
client_secret: str = Field(alias="clientSecret")
|
3905
3956
|
refresh_token: str = Field(alias="refreshToken")
|
3957
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
3906
3958
|
|
3907
3959
|
|
3908
3960
|
class NotionPagesInput(BaseModel):
|
graphlit_api/operations.py
CHANGED
@@ -426,6 +426,10 @@ query GetAlert($id: ID!, $correlationId: String) {
|
|
426
426
|
fileTypes
|
427
427
|
formats
|
428
428
|
fileExtensions
|
429
|
+
fileSizeRange {
|
430
|
+
from
|
431
|
+
to
|
432
|
+
}
|
429
433
|
similarContents {
|
430
434
|
id
|
431
435
|
}
|
@@ -569,6 +573,10 @@ query QueryAlerts($filter: AlertFilter, $correlationId: String) {
|
|
569
573
|
fileTypes
|
570
574
|
formats
|
571
575
|
fileExtensions
|
576
|
+
fileSizeRange {
|
577
|
+
from
|
578
|
+
to
|
579
|
+
}
|
572
580
|
similarContents {
|
573
581
|
id
|
574
582
|
}
|
@@ -966,6 +974,8 @@ query GetConnector($id: ID!, $correlationId: String) {
|
|
966
974
|
}
|
967
975
|
arcade {
|
968
976
|
authorizationId
|
977
|
+
provider
|
978
|
+
metadata
|
969
979
|
}
|
970
980
|
}
|
971
981
|
integration {
|
@@ -1017,6 +1027,8 @@ query QueryConnectors($filter: ConnectorFilter, $correlationId: String) {
|
|
1017
1027
|
}
|
1018
1028
|
arcade {
|
1019
1029
|
authorizationId
|
1030
|
+
provider
|
1031
|
+
metadata
|
1020
1032
|
}
|
1021
1033
|
}
|
1022
1034
|
integration {
|
@@ -4845,6 +4857,10 @@ query GetConversation($id: ID!, $correlationId: String) {
|
|
4845
4857
|
fileTypes
|
4846
4858
|
formats
|
4847
4859
|
fileExtensions
|
4860
|
+
fileSizeRange {
|
4861
|
+
from
|
4862
|
+
to
|
4863
|
+
}
|
4848
4864
|
similarContents {
|
4849
4865
|
id
|
4850
4866
|
}
|
@@ -4928,6 +4944,10 @@ query GetConversation($id: ID!, $correlationId: String) {
|
|
4928
4944
|
fileTypes
|
4929
4945
|
formats
|
4930
4946
|
fileExtensions
|
4947
|
+
fileSizeRange {
|
4948
|
+
from
|
4949
|
+
to
|
4950
|
+
}
|
4931
4951
|
similarContents {
|
4932
4952
|
id
|
4933
4953
|
}
|
@@ -5762,6 +5782,10 @@ query QueryConversations($filter: ConversationFilter, $correlationId: String) {
|
|
5762
5782
|
fileTypes
|
5763
5783
|
formats
|
5764
5784
|
fileExtensions
|
5785
|
+
fileSizeRange {
|
5786
|
+
from
|
5787
|
+
to
|
5788
|
+
}
|
5765
5789
|
similarContents {
|
5766
5790
|
id
|
5767
5791
|
}
|
@@ -5845,6 +5869,10 @@ query QueryConversations($filter: ConversationFilter, $correlationId: String) {
|
|
5845
5869
|
fileTypes
|
5846
5870
|
formats
|
5847
5871
|
fileExtensions
|
5872
|
+
fileSizeRange {
|
5873
|
+
from
|
5874
|
+
to
|
5875
|
+
}
|
5848
5876
|
similarContents {
|
5849
5877
|
id
|
5850
5878
|
}
|
@@ -7020,9 +7048,11 @@ query GetFeed($id: ID!, $correlationId: String) {
|
|
7020
7048
|
microsoftTeams {
|
7021
7049
|
readLimit
|
7022
7050
|
type
|
7051
|
+
authenticationType
|
7023
7052
|
clientId
|
7024
7053
|
clientSecret
|
7025
7054
|
refreshToken
|
7055
|
+
connectorId
|
7026
7056
|
teamId
|
7027
7057
|
channelId
|
7028
7058
|
}
|
@@ -7357,9 +7387,11 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
7357
7387
|
microsoftTeams {
|
7358
7388
|
readLimit
|
7359
7389
|
type
|
7390
|
+
authenticationType
|
7360
7391
|
clientId
|
7361
7392
|
clientSecret
|
7362
7393
|
refreshToken
|
7394
|
+
connectorId
|
7363
7395
|
teamId
|
7364
7396
|
channelId
|
7365
7397
|
}
|
@@ -10281,6 +10313,8 @@ query GetUser {
|
|
10281
10313
|
}
|
10282
10314
|
arcade {
|
10283
10315
|
authorizationId
|
10316
|
+
provider
|
10317
|
+
metadata
|
10284
10318
|
}
|
10285
10319
|
}
|
10286
10320
|
integration {
|
@@ -10339,6 +10373,8 @@ query GetUserByIdentifier($identifier: String!) {
|
|
10339
10373
|
}
|
10340
10374
|
arcade {
|
10341
10375
|
authorizationId
|
10376
|
+
provider
|
10377
|
+
metadata
|
10342
10378
|
}
|
10343
10379
|
}
|
10344
10380
|
integration {
|
@@ -10398,6 +10434,8 @@ query QueryUsers($filter: UserFilter, $correlationId: String) {
|
|
10398
10434
|
}
|
10399
10435
|
arcade {
|
10400
10436
|
authorizationId
|
10437
|
+
provider
|
10438
|
+
metadata
|
10401
10439
|
}
|
10402
10440
|
}
|
10403
10441
|
integration {
|
@@ -10468,6 +10506,10 @@ mutation CreateView($view: ViewInput!) {
|
|
10468
10506
|
fileTypes
|
10469
10507
|
formats
|
10470
10508
|
fileExtensions
|
10509
|
+
fileSizeRange {
|
10510
|
+
from
|
10511
|
+
to
|
10512
|
+
}
|
10471
10513
|
similarContents {
|
10472
10514
|
id
|
10473
10515
|
}
|
@@ -10551,6 +10593,10 @@ mutation CreateView($view: ViewInput!) {
|
|
10551
10593
|
fileTypes
|
10552
10594
|
formats
|
10553
10595
|
fileExtensions
|
10596
|
+
fileSizeRange {
|
10597
|
+
from
|
10598
|
+
to
|
10599
|
+
}
|
10554
10600
|
similarContents {
|
10555
10601
|
id
|
10556
10602
|
}
|
@@ -10681,6 +10727,10 @@ query GetView($id: ID!, $correlationId: String) {
|
|
10681
10727
|
fileTypes
|
10682
10728
|
formats
|
10683
10729
|
fileExtensions
|
10730
|
+
fileSizeRange {
|
10731
|
+
from
|
10732
|
+
to
|
10733
|
+
}
|
10684
10734
|
similarContents {
|
10685
10735
|
id
|
10686
10736
|
}
|
@@ -10764,6 +10814,10 @@ query GetView($id: ID!, $correlationId: String) {
|
|
10764
10814
|
fileTypes
|
10765
10815
|
formats
|
10766
10816
|
fileExtensions
|
10817
|
+
fileSizeRange {
|
10818
|
+
from
|
10819
|
+
to
|
10820
|
+
}
|
10767
10821
|
similarContents {
|
10768
10822
|
id
|
10769
10823
|
}
|
@@ -10864,6 +10918,10 @@ query QueryViews($filter: ViewFilter, $correlationId: String) {
|
|
10864
10918
|
fileTypes
|
10865
10919
|
formats
|
10866
10920
|
fileExtensions
|
10921
|
+
fileSizeRange {
|
10922
|
+
from
|
10923
|
+
to
|
10924
|
+
}
|
10867
10925
|
similarContents {
|
10868
10926
|
id
|
10869
10927
|
}
|
@@ -10947,6 +11005,10 @@ query QueryViews($filter: ViewFilter, $correlationId: String) {
|
|
10947
11005
|
fileTypes
|
10948
11006
|
formats
|
10949
11007
|
fileExtensions
|
11008
|
+
fileSizeRange {
|
11009
|
+
from
|
11010
|
+
to
|
11011
|
+
}
|
10950
11012
|
similarContents {
|
10951
11013
|
id
|
10952
11014
|
}
|
@@ -11042,6 +11104,10 @@ mutation UpdateView($view: ViewUpdateInput!) {
|
|
11042
11104
|
fileTypes
|
11043
11105
|
formats
|
11044
11106
|
fileExtensions
|
11107
|
+
fileSizeRange {
|
11108
|
+
from
|
11109
|
+
to
|
11110
|
+
}
|
11045
11111
|
similarContents {
|
11046
11112
|
id
|
11047
11113
|
}
|
@@ -11125,6 +11191,10 @@ mutation UpdateView($view: ViewUpdateInput!) {
|
|
11125
11191
|
fileTypes
|
11126
11192
|
formats
|
11127
11193
|
fileExtensions
|
11194
|
+
fileSizeRange {
|
11195
|
+
from
|
11196
|
+
to
|
11197
|
+
}
|
11128
11198
|
similarContents {
|
11129
11199
|
id
|
11130
11200
|
}
|
@@ -11219,6 +11289,10 @@ mutation UpsertView($view: ViewInput!) {
|
|
11219
11289
|
fileTypes
|
11220
11290
|
formats
|
11221
11291
|
fileExtensions
|
11292
|
+
fileSizeRange {
|
11293
|
+
from
|
11294
|
+
to
|
11295
|
+
}
|
11222
11296
|
similarContents {
|
11223
11297
|
id
|
11224
11298
|
}
|
@@ -11302,6 +11376,10 @@ mutation UpsertView($view: ViewInput!) {
|
|
11302
11376
|
fileTypes
|
11303
11377
|
formats
|
11304
11378
|
fileExtensions
|
11379
|
+
fileSizeRange {
|
11380
|
+
from
|
11381
|
+
to
|
11382
|
+
}
|
11305
11383
|
similarContents {
|
11306
11384
|
id
|
11307
11385
|
}
|
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
|
|
graphlit_api/query_connectors.py
CHANGED
@@ -7,6 +7,7 @@ from pydantic import Field
|
|
7
7
|
|
8
8
|
from .base_model import BaseModel
|
9
9
|
from .enums import (
|
10
|
+
ArcadeProviders,
|
10
11
|
AuthenticationServiceTypes,
|
11
12
|
ConnectorTypes,
|
12
13
|
EntityState,
|
@@ -58,6 +59,8 @@ class QueryConnectorsConnectorsResultsAuthenticationGoogle(BaseModel):
|
|
58
59
|
|
59
60
|
class QueryConnectorsConnectorsResultsAuthenticationArcade(BaseModel):
|
60
61
|
authorization_id: str = Field(alias="authorizationId")
|
62
|
+
provider: ArcadeProviders
|
63
|
+
metadata: Optional[str]
|
61
64
|
|
62
65
|
|
63
66
|
class QueryConnectorsConnectorsResultsIntegration(BaseModel):
|
@@ -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
|
|
graphlit_api/query_feeds.py
CHANGED
@@ -17,6 +17,7 @@ from .enums import (
|
|
17
17
|
GoogleEmailAuthenticationTypes,
|
18
18
|
MicrosoftCalendarAuthenticationTypes,
|
19
19
|
MicrosoftEmailAuthenticationTypes,
|
20
|
+
MicrosoftTeamsAuthenticationTypes,
|
20
21
|
NotionTypes,
|
21
22
|
OneDriveAuthenticationTypes,
|
22
23
|
SearchServiceTypes,
|
@@ -390,9 +391,13 @@ class QueryFeedsFeedsResultsSlack(BaseModel):
|
|
390
391
|
class QueryFeedsFeedsResultsMicrosoftTeams(BaseModel):
|
391
392
|
read_limit: Optional[int] = Field(alias="readLimit")
|
392
393
|
type: Optional[FeedListingTypes]
|
393
|
-
|
394
|
-
|
395
|
-
|
394
|
+
authentication_type: Optional[MicrosoftTeamsAuthenticationTypes] = Field(
|
395
|
+
alias="authenticationType"
|
396
|
+
)
|
397
|
+
client_id: Optional[str] = Field(alias="clientId")
|
398
|
+
client_secret: Optional[str] = Field(alias="clientSecret")
|
399
|
+
refresh_token: Optional[str] = Field(alias="refreshToken")
|
400
|
+
connector_id: Optional[str] = Field(alias="connectorId")
|
396
401
|
team_id: str = Field(alias="teamId")
|
397
402
|
channel_id: str = Field(alias="channelId")
|
398
403
|
|
graphlit_api/query_users.py
CHANGED
@@ -7,6 +7,7 @@ from pydantic import Field
|
|
7
7
|
|
8
8
|
from .base_model import BaseModel
|
9
9
|
from .enums import (
|
10
|
+
ArcadeProviders,
|
10
11
|
AuthenticationServiceTypes,
|
11
12
|
ConnectorTypes,
|
12
13
|
EntityState,
|
@@ -69,6 +70,8 @@ class QueryUsersUsersResultsConnectorsAuthenticationGoogle(BaseModel):
|
|
69
70
|
|
70
71
|
class QueryUsersUsersResultsConnectorsAuthenticationArcade(BaseModel):
|
71
72
|
authorization_id: str = Field(alias="authorizationId")
|
73
|
+
provider: ArcadeProviders
|
74
|
+
metadata: Optional[str]
|
72
75
|
|
73
76
|
|
74
77
|
class QueryUsersUsersResultsConnectorsIntegration(BaseModel):
|
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
|
|