graphlit-client 1.0.20250628001__py3-none-any.whl → 1.0.20250628003__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 +22 -0
- graphlit_api/enums.py +27 -0
- graphlit_api/get_connector.py +11 -0
- graphlit_api/get_feed.py +18 -3
- graphlit_api/get_user.py +11 -0
- graphlit_api/get_user_by_identifier.py +11 -0
- graphlit_api/input_types.py +81 -13
- graphlit_api/operations.py +47 -0
- graphlit_api/query_connectors.py +11 -0
- graphlit_api/query_feeds.py +18 -3
- graphlit_api/query_users.py +11 -0
- {graphlit_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628003.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628003.dist-info}/RECORD +16 -16
- {graphlit_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628003.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628003.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628003.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
@@ -579,6 +579,7 @@ from .enums import (
|
|
579
579
|
AlertTypes,
|
580
580
|
AnthropicModels,
|
581
581
|
ApplyPolicy,
|
582
|
+
ArcadeProviders,
|
582
583
|
AssemblyAIModels,
|
583
584
|
AuthenticationServiceTypes,
|
584
585
|
AzureDocumentIntelligenceModels,
|
@@ -586,6 +587,7 @@ from .enums import (
|
|
586
587
|
AzureOpenAIModels,
|
587
588
|
BedrockModels,
|
588
589
|
BillableMetrics,
|
590
|
+
BoxAuthenticationTypes,
|
589
591
|
CalendarAttendeeResponseStatus,
|
590
592
|
CalendarEventStatus,
|
591
593
|
CalendarEventVisibility,
|
@@ -610,6 +612,7 @@ from .enums import (
|
|
610
612
|
DeepgramModels,
|
611
613
|
DeepseekModels,
|
612
614
|
DeviceTypes,
|
615
|
+
DropboxAuthenticationTypes,
|
613
616
|
ElevenLabsModels,
|
614
617
|
EmailListingTypes,
|
615
618
|
EntityEnrichmentServiceTypes,
|
@@ -656,10 +659,12 @@ from .enums import (
|
|
656
659
|
MetadataTypes,
|
657
660
|
MicrosoftCalendarAuthenticationTypes,
|
658
661
|
MicrosoftEmailAuthenticationTypes,
|
662
|
+
MicrosoftTeamsAuthenticationTypes,
|
659
663
|
MistralModels,
|
660
664
|
ModelServiceTypes,
|
661
665
|
ModelTypes,
|
662
666
|
NotionTypes,
|
667
|
+
OAuthProviders,
|
663
668
|
ObservableTypes,
|
664
669
|
OccurrenceTypes,
|
665
670
|
OneDriveAuthenticationTypes,
|
@@ -815,6 +820,7 @@ from .get_connector import (
|
|
815
820
|
GetConnectorConnectorAuthenticationArcade,
|
816
821
|
GetConnectorConnectorAuthenticationGoogle,
|
817
822
|
GetConnectorConnectorAuthenticationMicrosoft,
|
823
|
+
GetConnectorConnectorAuthenticationOauth,
|
818
824
|
GetConnectorConnectorIntegration,
|
819
825
|
GetConnectorConnectorIntegrationEmail,
|
820
826
|
GetConnectorConnectorIntegrationSlack,
|
@@ -1064,6 +1070,7 @@ from .get_user import (
|
|
1064
1070
|
GetUserUserConnectorsAuthenticationArcade,
|
1065
1071
|
GetUserUserConnectorsAuthenticationGoogle,
|
1066
1072
|
GetUserUserConnectorsAuthenticationMicrosoft,
|
1073
|
+
GetUserUserConnectorsAuthenticationOauth,
|
1067
1074
|
GetUserUserConnectorsIntegration,
|
1068
1075
|
GetUserUserConnectorsIntegrationEmail,
|
1069
1076
|
GetUserUserConnectorsIntegrationSlack,
|
@@ -1078,6 +1085,7 @@ from .get_user_by_identifier import (
|
|
1078
1085
|
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationArcade,
|
1079
1086
|
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle,
|
1080
1087
|
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationMicrosoft,
|
1088
|
+
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationOauth,
|
1081
1089
|
GetUserByIdentifierUserByIdentifierConnectorsIntegration,
|
1082
1090
|
GetUserByIdentifierUserByIdentifierConnectorsIntegrationEmail,
|
1083
1091
|
GetUserByIdentifierUserByIdentifierConnectorsIntegrationSlack,
|
@@ -1507,6 +1515,7 @@ from .input_types import (
|
|
1507
1515
|
NotionFeedPropertiesInput,
|
1508
1516
|
NotionFeedPropertiesUpdateInput,
|
1509
1517
|
NotionPagesInput,
|
1518
|
+
OAuthAuthenticationPropertiesInput,
|
1510
1519
|
ObservationCriteriaInput,
|
1511
1520
|
ObservationInput,
|
1512
1521
|
ObservationOccurrenceInput,
|
@@ -2147,6 +2156,7 @@ from .query_connectors import (
|
|
2147
2156
|
QueryConnectorsConnectorsResultsAuthenticationArcade,
|
2148
2157
|
QueryConnectorsConnectorsResultsAuthenticationGoogle,
|
2149
2158
|
QueryConnectorsConnectorsResultsAuthenticationMicrosoft,
|
2159
|
+
QueryConnectorsConnectorsResultsAuthenticationOauth,
|
2150
2160
|
QueryConnectorsConnectorsResultsIntegration,
|
2151
2161
|
QueryConnectorsConnectorsResultsIntegrationEmail,
|
2152
2162
|
QueryConnectorsConnectorsResultsIntegrationSlack,
|
@@ -2559,6 +2569,7 @@ from .query_users import (
|
|
2559
2569
|
QueryUsersUsersResultsConnectorsAuthenticationArcade,
|
2560
2570
|
QueryUsersUsersResultsConnectorsAuthenticationGoogle,
|
2561
2571
|
QueryUsersUsersResultsConnectorsAuthenticationMicrosoft,
|
2572
|
+
QueryUsersUsersResultsConnectorsAuthenticationOauth,
|
2562
2573
|
QueryUsersUsersResultsConnectorsIntegration,
|
2563
2574
|
QueryUsersUsersResultsConnectorsIntegrationEmail,
|
2564
2575
|
QueryUsersUsersResultsConnectorsIntegrationSlack,
|
@@ -3115,6 +3126,7 @@ __all__ = [
|
|
3115
3126
|
"AnthropicModels",
|
3116
3127
|
"ApplyPolicy",
|
3117
3128
|
"ArcadeAuthenticationPropertiesInput",
|
3129
|
+
"ArcadeProviders",
|
3118
3130
|
"AskGraphlit",
|
3119
3131
|
"AskGraphlitAskGraphlit",
|
3120
3132
|
"AskGraphlitAskGraphlitConversation",
|
@@ -3155,6 +3167,7 @@ __all__ = [
|
|
3155
3167
|
"BedrockModels",
|
3156
3168
|
"BillableMetrics",
|
3157
3169
|
"BoundingBoxInput",
|
3170
|
+
"BoxAuthenticationTypes",
|
3158
3171
|
"BoxFeedPropertiesInput",
|
3159
3172
|
"BoxFeedPropertiesUpdateInput",
|
3160
3173
|
"BoxFoldersInput",
|
@@ -3875,6 +3888,7 @@ __all__ = [
|
|
3875
3888
|
"DocumentMetadataInput",
|
3876
3889
|
"DocumentPreparationPropertiesInput",
|
3877
3890
|
"DrawingMetadataInput",
|
3891
|
+
"DropboxAuthenticationTypes",
|
3878
3892
|
"DropboxFeedPropertiesInput",
|
3879
3893
|
"DropboxFeedPropertiesUpdateInput",
|
3880
3894
|
"DropboxFoldersInput",
|
@@ -4054,6 +4068,7 @@ __all__ = [
|
|
4054
4068
|
"GetConnectorConnectorAuthenticationArcade",
|
4055
4069
|
"GetConnectorConnectorAuthenticationGoogle",
|
4056
4070
|
"GetConnectorConnectorAuthenticationMicrosoft",
|
4071
|
+
"GetConnectorConnectorAuthenticationOauth",
|
4057
4072
|
"GetConnectorConnectorIntegration",
|
4058
4073
|
"GetConnectorConnectorIntegrationEmail",
|
4059
4074
|
"GetConnectorConnectorIntegrationSlack",
|
@@ -4289,6 +4304,7 @@ __all__ = [
|
|
4289
4304
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationArcade",
|
4290
4305
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle",
|
4291
4306
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationMicrosoft",
|
4307
|
+
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationOauth",
|
4292
4308
|
"GetUserByIdentifierUserByIdentifierConnectorsIntegration",
|
4293
4309
|
"GetUserByIdentifierUserByIdentifierConnectorsIntegrationEmail",
|
4294
4310
|
"GetUserByIdentifierUserByIdentifierConnectorsIntegrationSlack",
|
@@ -4300,6 +4316,7 @@ __all__ = [
|
|
4300
4316
|
"GetUserUserConnectorsAuthenticationArcade",
|
4301
4317
|
"GetUserUserConnectorsAuthenticationGoogle",
|
4302
4318
|
"GetUserUserConnectorsAuthenticationMicrosoft",
|
4319
|
+
"GetUserUserConnectorsAuthenticationOauth",
|
4303
4320
|
"GetUserUserConnectorsIntegration",
|
4304
4321
|
"GetUserUserConnectorsIntegrationEmail",
|
4305
4322
|
"GetUserUserConnectorsIntegrationSlack",
|
@@ -4675,6 +4692,7 @@ __all__ = [
|
|
4675
4692
|
"MicrosoftEmailAuthenticationTypes",
|
4676
4693
|
"MicrosoftEmailFeedPropertiesInput",
|
4677
4694
|
"MicrosoftEmailFeedPropertiesUpdateInput",
|
4695
|
+
"MicrosoftTeamsAuthenticationTypes",
|
4678
4696
|
"MicrosoftTeamsChannelsInput",
|
4679
4697
|
"MicrosoftTeamsFeedPropertiesInput",
|
4680
4698
|
"MicrosoftTeamsFeedPropertiesUpdateInput",
|
@@ -4696,6 +4714,8 @@ __all__ = [
|
|
4696
4714
|
"NotionFeedPropertiesUpdateInput",
|
4697
4715
|
"NotionPagesInput",
|
4698
4716
|
"NotionTypes",
|
4717
|
+
"OAuthAuthenticationPropertiesInput",
|
4718
|
+
"OAuthProviders",
|
4699
4719
|
"ObservableTypes",
|
4700
4720
|
"ObservationCriteriaInput",
|
4701
4721
|
"ObservationInput",
|
@@ -4947,6 +4967,7 @@ __all__ = [
|
|
4947
4967
|
"QueryConnectorsConnectorsResultsAuthenticationArcade",
|
4948
4968
|
"QueryConnectorsConnectorsResultsAuthenticationGoogle",
|
4949
4969
|
"QueryConnectorsConnectorsResultsAuthenticationMicrosoft",
|
4970
|
+
"QueryConnectorsConnectorsResultsAuthenticationOauth",
|
4950
4971
|
"QueryConnectorsConnectorsResultsIntegration",
|
4951
4972
|
"QueryConnectorsConnectorsResultsIntegrationEmail",
|
4952
4973
|
"QueryConnectorsConnectorsResultsIntegrationSlack",
|
@@ -5287,6 +5308,7 @@ __all__ = [
|
|
5287
5308
|
"QueryUsersUsersResultsConnectorsAuthenticationArcade",
|
5288
5309
|
"QueryUsersUsersResultsConnectorsAuthenticationGoogle",
|
5289
5310
|
"QueryUsersUsersResultsConnectorsAuthenticationMicrosoft",
|
5311
|
+
"QueryUsersUsersResultsConnectorsAuthenticationOauth",
|
5290
5312
|
"QueryUsersUsersResultsConnectorsIntegration",
|
5291
5313
|
"QueryUsersUsersResultsConnectorsIntegrationEmail",
|
5292
5314
|
"QueryUsersUsersResultsConnectorsIntegrationSlack",
|
graphlit_api/enums.py
CHANGED
@@ -225,6 +225,12 @@ class CerebrasModels(str, Enum):
|
|
225
225
|
CUSTOM = "CUSTOM"
|
226
226
|
|
227
227
|
|
228
|
+
class ArcadeProviders(str, Enum):
|
229
|
+
GOOGLE = "GOOGLE"
|
230
|
+
GIT_HUB = "GIT_HUB"
|
231
|
+
MICROSOFT = "MICROSOFT"
|
232
|
+
|
233
|
+
|
228
234
|
class FeedConnectorTypes(str, Enum):
|
229
235
|
GOOGLE = "GOOGLE"
|
230
236
|
AMAZON = "AMAZON"
|
@@ -575,6 +581,11 @@ class RenditionTypes(str, Enum):
|
|
575
581
|
CONTENT = "CONTENT"
|
576
582
|
|
577
583
|
|
584
|
+
class MicrosoftTeamsAuthenticationTypes(str, Enum):
|
585
|
+
USER = "USER"
|
586
|
+
CONNECTOR = "CONNECTOR"
|
587
|
+
|
588
|
+
|
578
589
|
class ConversationSearchTypes(str, Enum):
|
579
590
|
NONE = "NONE"
|
580
591
|
VECTOR = "VECTOR"
|
@@ -672,6 +683,7 @@ class AuthenticationServiceTypes(str, Enum):
|
|
672
683
|
MICROSOFT_GRAPH = "MICROSOFT_GRAPH"
|
673
684
|
CLERK = "CLERK"
|
674
685
|
GOOGLE = "GOOGLE"
|
686
|
+
O_AUTH = "O_AUTH"
|
675
687
|
ARCADE = "ARCADE"
|
676
688
|
|
677
689
|
|
@@ -686,6 +698,11 @@ class DeviceTypes(str, Enum):
|
|
686
698
|
UNKNOWN = "UNKNOWN"
|
687
699
|
|
688
700
|
|
701
|
+
class DropboxAuthenticationTypes(str, Enum):
|
702
|
+
USER = "USER"
|
703
|
+
CONNECTOR = "CONNECTOR"
|
704
|
+
|
705
|
+
|
689
706
|
class GitHubIssueAuthenticationTypes(str, Enum):
|
690
707
|
PERSONAL_ACCESS_TOKEN = "PERSONAL_ACCESS_TOKEN"
|
691
708
|
O_AUTH = "O_AUTH"
|
@@ -995,6 +1012,11 @@ class UnitTypes(str, Enum):
|
|
995
1012
|
UNITLESS = "UNITLESS"
|
996
1013
|
|
997
1014
|
|
1015
|
+
class OAuthProviders(str, Enum):
|
1016
|
+
DROPBOX = "DROPBOX"
|
1017
|
+
BOX = "BOX"
|
1018
|
+
|
1019
|
+
|
998
1020
|
class DeepseekModels(str, Enum):
|
999
1021
|
REASONER = "REASONER"
|
1000
1022
|
CHAT = "CHAT"
|
@@ -1017,6 +1039,11 @@ class MedicalStudyFacetTypes(str, Enum):
|
|
1017
1039
|
CREATION_DATE = "CREATION_DATE"
|
1018
1040
|
|
1019
1041
|
|
1042
|
+
class BoxAuthenticationTypes(str, Enum):
|
1043
|
+
USER = "USER"
|
1044
|
+
CONNECTOR = "CONNECTOR"
|
1045
|
+
|
1046
|
+
|
1020
1047
|
class SharePointAuthenticationTypes(str, Enum):
|
1021
1048
|
APPLICATION = "APPLICATION"
|
1022
1049
|
USER = "USER"
|
graphlit_api/get_connector.py
CHANGED
@@ -7,10 +7,12 @@ 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,
|
13
14
|
IntegrationServiceTypes,
|
15
|
+
OAuthProviders,
|
14
16
|
)
|
15
17
|
|
16
18
|
|
@@ -38,6 +40,7 @@ class GetConnectorConnectorAuthentication(BaseModel):
|
|
38
40
|
type: AuthenticationServiceTypes
|
39
41
|
microsoft: Optional["GetConnectorConnectorAuthenticationMicrosoft"]
|
40
42
|
google: Optional["GetConnectorConnectorAuthenticationGoogle"]
|
43
|
+
oauth: Optional["GetConnectorConnectorAuthenticationOauth"]
|
41
44
|
arcade: Optional["GetConnectorConnectorAuthenticationArcade"]
|
42
45
|
|
43
46
|
|
@@ -52,8 +55,16 @@ class GetConnectorConnectorAuthenticationGoogle(BaseModel):
|
|
52
55
|
client_secret: str = Field(alias="clientSecret")
|
53
56
|
|
54
57
|
|
58
|
+
class GetConnectorConnectorAuthenticationOauth(BaseModel):
|
59
|
+
refresh_token: str = Field(alias="refreshToken")
|
60
|
+
provider: OAuthProviders
|
61
|
+
metadata: Optional[str]
|
62
|
+
|
63
|
+
|
55
64
|
class GetConnectorConnectorAuthenticationArcade(BaseModel):
|
56
65
|
authorization_id: str = Field(alias="authorizationId")
|
66
|
+
provider: ArcadeProviders
|
67
|
+
metadata: Optional[str]
|
57
68
|
|
58
69
|
|
59
70
|
class GetConnectorConnectorIntegration(BaseModel):
|
graphlit_api/get_feed.py
CHANGED
@@ -7,6 +7,8 @@ from pydantic import Field
|
|
7
7
|
|
8
8
|
from .base_model import BaseModel
|
9
9
|
from .enums import (
|
10
|
+
BoxAuthenticationTypes,
|
11
|
+
DropboxAuthenticationTypes,
|
10
12
|
EmailListingTypes,
|
11
13
|
EntityState,
|
12
14
|
FeedListingTypes,
|
@@ -17,6 +19,7 @@ from .enums import (
|
|
17
19
|
GoogleEmailAuthenticationTypes,
|
18
20
|
MicrosoftCalendarAuthenticationTypes,
|
19
21
|
MicrosoftEmailAuthenticationTypes,
|
22
|
+
MicrosoftTeamsAuthenticationTypes,
|
20
23
|
NotionTypes,
|
21
24
|
OneDriveAuthenticationTypes,
|
22
25
|
SearchServiceTypes,
|
@@ -159,7 +162,11 @@ class GetFeedFeedSiteGoogleDrive(BaseModel):
|
|
159
162
|
|
160
163
|
|
161
164
|
class GetFeedFeedSiteDropbox(BaseModel):
|
165
|
+
authentication_type: Optional[DropboxAuthenticationTypes] = Field(
|
166
|
+
alias="authenticationType"
|
167
|
+
)
|
162
168
|
path: Optional[str]
|
169
|
+
connector_id: Optional[str] = Field(alias="connectorId")
|
163
170
|
app_key: str = Field(alias="appKey")
|
164
171
|
app_secret: str = Field(alias="appSecret")
|
165
172
|
refresh_token: str = Field(alias="refreshToken")
|
@@ -167,7 +174,11 @@ class GetFeedFeedSiteDropbox(BaseModel):
|
|
167
174
|
|
168
175
|
|
169
176
|
class GetFeedFeedSiteBox(BaseModel):
|
177
|
+
authentication_type: Optional[BoxAuthenticationTypes] = Field(
|
178
|
+
alias="authenticationType"
|
179
|
+
)
|
170
180
|
folder_id: Optional[str] = Field(alias="folderId")
|
181
|
+
connector_id: Optional[str] = Field(alias="connectorId")
|
171
182
|
client_id: str = Field(alias="clientId")
|
172
183
|
client_secret: str = Field(alias="clientSecret")
|
173
184
|
refresh_token: str = Field(alias="refreshToken")
|
@@ -378,9 +389,13 @@ class GetFeedFeedSlack(BaseModel):
|
|
378
389
|
class GetFeedFeedMicrosoftTeams(BaseModel):
|
379
390
|
read_limit: Optional[int] = Field(alias="readLimit")
|
380
391
|
type: Optional[FeedListingTypes]
|
381
|
-
|
382
|
-
|
383
|
-
|
392
|
+
authentication_type: Optional[MicrosoftTeamsAuthenticationTypes] = Field(
|
393
|
+
alias="authenticationType"
|
394
|
+
)
|
395
|
+
client_id: Optional[str] = Field(alias="clientId")
|
396
|
+
client_secret: Optional[str] = Field(alias="clientSecret")
|
397
|
+
refresh_token: Optional[str] = Field(alias="refreshToken")
|
398
|
+
connector_id: Optional[str] = Field(alias="connectorId")
|
384
399
|
team_id: str = Field(alias="teamId")
|
385
400
|
channel_id: str = Field(alias="channelId")
|
386
401
|
|
graphlit_api/get_user.py
CHANGED
@@ -7,10 +7,12 @@ 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,
|
13
14
|
IntegrationServiceTypes,
|
15
|
+
OAuthProviders,
|
14
16
|
UserTypes,
|
15
17
|
)
|
16
18
|
|
@@ -49,6 +51,7 @@ class GetUserUserConnectorsAuthentication(BaseModel):
|
|
49
51
|
type: AuthenticationServiceTypes
|
50
52
|
microsoft: Optional["GetUserUserConnectorsAuthenticationMicrosoft"]
|
51
53
|
google: Optional["GetUserUserConnectorsAuthenticationGoogle"]
|
54
|
+
oauth: Optional["GetUserUserConnectorsAuthenticationOauth"]
|
52
55
|
arcade: Optional["GetUserUserConnectorsAuthenticationArcade"]
|
53
56
|
|
54
57
|
|
@@ -63,8 +66,16 @@ class GetUserUserConnectorsAuthenticationGoogle(BaseModel):
|
|
63
66
|
client_secret: str = Field(alias="clientSecret")
|
64
67
|
|
65
68
|
|
69
|
+
class GetUserUserConnectorsAuthenticationOauth(BaseModel):
|
70
|
+
refresh_token: str = Field(alias="refreshToken")
|
71
|
+
provider: OAuthProviders
|
72
|
+
metadata: Optional[str]
|
73
|
+
|
74
|
+
|
66
75
|
class GetUserUserConnectorsAuthenticationArcade(BaseModel):
|
67
76
|
authorization_id: str = Field(alias="authorizationId")
|
77
|
+
provider: ArcadeProviders
|
78
|
+
metadata: Optional[str]
|
68
79
|
|
69
80
|
|
70
81
|
class GetUserUserConnectorsIntegration(BaseModel):
|
@@ -7,10 +7,12 @@ 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,
|
13
14
|
IntegrationServiceTypes,
|
15
|
+
OAuthProviders,
|
14
16
|
UserTypes,
|
15
17
|
)
|
16
18
|
|
@@ -59,6 +61,7 @@ class GetUserByIdentifierUserByIdentifierConnectorsAuthentication(BaseModel):
|
|
59
61
|
google: Optional[
|
60
62
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle"
|
61
63
|
]
|
64
|
+
oauth: Optional["GetUserByIdentifierUserByIdentifierConnectorsAuthenticationOauth"]
|
62
65
|
arcade: Optional[
|
63
66
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationArcade"
|
64
67
|
]
|
@@ -75,8 +78,16 @@ class GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle(BaseMode
|
|
75
78
|
client_secret: str = Field(alias="clientSecret")
|
76
79
|
|
77
80
|
|
81
|
+
class GetUserByIdentifierUserByIdentifierConnectorsAuthenticationOauth(BaseModel):
|
82
|
+
refresh_token: str = Field(alias="refreshToken")
|
83
|
+
provider: OAuthProviders
|
84
|
+
metadata: Optional[str]
|
85
|
+
|
86
|
+
|
78
87
|
class GetUserByIdentifierUserByIdentifierConnectorsAuthenticationArcade(BaseModel):
|
79
88
|
authorization_id: str = Field(alias="authorizationId")
|
89
|
+
provider: ArcadeProviders
|
90
|
+
metadata: Optional[str]
|
80
91
|
|
81
92
|
|
82
93
|
class GetUserByIdentifierUserByIdentifierConnectorsIntegration(BaseModel):
|
graphlit_api/input_types.py
CHANGED
@@ -9,12 +9,14 @@ 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,
|
15
16
|
AzureDocumentIntelligenceVersions,
|
16
17
|
AzureOpenAIModels,
|
17
18
|
BedrockModels,
|
19
|
+
BoxAuthenticationTypes,
|
18
20
|
CalendarAttendeeResponseStatus,
|
19
21
|
CalendarEventStatus,
|
20
22
|
CalendarEventVisibility,
|
@@ -37,6 +39,7 @@ from .enums import (
|
|
37
39
|
ConversationTypes,
|
38
40
|
DeepgramModels,
|
39
41
|
DeepseekModels,
|
42
|
+
DropboxAuthenticationTypes,
|
40
43
|
ElevenLabsModels,
|
41
44
|
EmailListingTypes,
|
42
45
|
EntityEnrichmentServiceTypes,
|
@@ -80,10 +83,12 @@ from .enums import (
|
|
80
83
|
MetadataTypes,
|
81
84
|
MicrosoftCalendarAuthenticationTypes,
|
82
85
|
MicrosoftEmailAuthenticationTypes,
|
86
|
+
MicrosoftTeamsAuthenticationTypes,
|
83
87
|
MistralModels,
|
84
88
|
ModelServiceTypes,
|
85
89
|
ModelTypes,
|
86
90
|
NotionTypes,
|
91
|
+
OAuthProviders,
|
87
92
|
ObservableTypes,
|
88
93
|
OccurrenceTypes,
|
89
94
|
OneDriveAuthenticationTypes,
|
@@ -267,7 +272,11 @@ class LinkStrategyInput(BaseModel):
|
|
267
272
|
|
268
273
|
|
269
274
|
class DropboxFeedPropertiesUpdateInput(BaseModel):
|
275
|
+
authentication_type: Optional[DropboxAuthenticationTypes] = Field(
|
276
|
+
alias="authenticationType", default=None
|
277
|
+
)
|
270
278
|
path: Optional[str] = None
|
279
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
271
280
|
app_key: Optional[str] = Field(alias="appKey", default=None)
|
272
281
|
app_secret: Optional[str] = Field(alias="appSecret", default=None)
|
273
282
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
@@ -286,7 +295,13 @@ class H3IndexFilter(BaseModel):
|
|
286
295
|
|
287
296
|
|
288
297
|
class MicrosoftTeamsTeamsInput(BaseModel):
|
289
|
-
|
298
|
+
authentication_type: Optional[MicrosoftTeamsAuthenticationTypes] = Field(
|
299
|
+
alias="authenticationType", default=None
|
300
|
+
)
|
301
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
302
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
303
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
304
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
290
305
|
|
291
306
|
|
292
307
|
class RetrievalStrategyUpdateInput(BaseModel):
|
@@ -1135,6 +1150,8 @@ class OrganizationFilter(BaseModel):
|
|
1135
1150
|
|
1136
1151
|
class ArcadeAuthenticationPropertiesInput(BaseModel):
|
1137
1152
|
authorization_id: str = Field(alias="authorizationId")
|
1153
|
+
provider: ArcadeProviders
|
1154
|
+
metadata: Optional[str] = None
|
1138
1155
|
|
1139
1156
|
|
1140
1157
|
class ContentCriteriaLevelInput(BaseModel):
|
@@ -1367,11 +1384,15 @@ class H3Filter(BaseModel):
|
|
1367
1384
|
|
1368
1385
|
|
1369
1386
|
class BoxFeedPropertiesInput(BaseModel):
|
1387
|
+
authentication_type: Optional[BoxAuthenticationTypes] = Field(
|
1388
|
+
alias="authenticationType", default=None
|
1389
|
+
)
|
1370
1390
|
folder_id: Optional[str] = Field(alias="folderId", default=None)
|
1371
|
-
|
1372
|
-
|
1373
|
-
|
1374
|
-
|
1391
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
1392
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
1393
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
1394
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
1395
|
+
redirect_uri: Optional[str] = Field(alias="redirectUri", default=None)
|
1375
1396
|
|
1376
1397
|
|
1377
1398
|
class GroqModelPropertiesUpdateInput(BaseModel):
|
@@ -1608,9 +1629,13 @@ class ViewUpdateInput(BaseModel):
|
|
1608
1629
|
|
1609
1630
|
|
1610
1631
|
class GoogleCalendarsInput(BaseModel):
|
1632
|
+
authentication_type: Optional[GoogleCalendarAuthenticationTypes] = Field(
|
1633
|
+
alias="authenticationType", default=None
|
1634
|
+
)
|
1611
1635
|
client_id: str = Field(alias="clientId")
|
1612
1636
|
client_secret: str = Field(alias="clientSecret")
|
1613
1637
|
refresh_token: str = Field(alias="refreshToken")
|
1638
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
1614
1639
|
|
1615
1640
|
|
1616
1641
|
class ConversationInput(BaseModel):
|
@@ -1806,13 +1831,23 @@ class MedicalTestFilter(BaseModel):
|
|
1806
1831
|
|
1807
1832
|
|
1808
1833
|
class OneDriveFoldersInput(BaseModel):
|
1834
|
+
authentication_type: Optional[OneDriveAuthenticationTypes] = Field(
|
1835
|
+
alias="authenticationType", default=None
|
1836
|
+
)
|
1809
1837
|
client_id: str = Field(alias="clientId")
|
1810
1838
|
client_secret: str = Field(alias="clientSecret")
|
1811
1839
|
refresh_token: str = Field(alias="refreshToken")
|
1840
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
1812
1841
|
|
1813
1842
|
|
1814
1843
|
class MicrosoftTeamsChannelsInput(BaseModel):
|
1815
|
-
|
1844
|
+
authentication_type: Optional[MicrosoftTeamsAuthenticationTypes] = Field(
|
1845
|
+
alias="authenticationType", default=None
|
1846
|
+
)
|
1847
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
1848
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
1849
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
1850
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
1816
1851
|
|
1817
1852
|
|
1818
1853
|
class MedicalTherapyUpdateInput(BaseModel):
|
@@ -2425,6 +2460,7 @@ class AuthenticationConnectorInput(BaseModel):
|
|
2425
2460
|
microsoft: Optional["MicrosoftAuthenticationPropertiesInput"] = None
|
2426
2461
|
google: Optional["GoogleAuthenticationPropertiesInput"] = None
|
2427
2462
|
arcade: Optional["ArcadeAuthenticationPropertiesInput"] = None
|
2463
|
+
oauth: Optional["OAuthAuthenticationPropertiesInput"] = None
|
2428
2464
|
|
2429
2465
|
|
2430
2466
|
class MicrosoftEmailFeedPropertiesInput(BaseModel):
|
@@ -2446,9 +2482,13 @@ class MicrosoftEmailFeedPropertiesInput(BaseModel):
|
|
2446
2482
|
|
2447
2483
|
class MicrosoftTeamsFeedPropertiesUpdateInput(BaseModel):
|
2448
2484
|
type: Optional[FeedListingTypes] = None
|
2485
|
+
authentication_type: Optional[MicrosoftTeamsAuthenticationTypes] = Field(
|
2486
|
+
alias="authenticationType", default=None
|
2487
|
+
)
|
2449
2488
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2450
2489
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2451
2490
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2491
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2452
2492
|
team_id: str = Field(alias="teamId")
|
2453
2493
|
channel_id: str = Field(alias="channelId")
|
2454
2494
|
read_limit: Optional[int] = Field(alias="readLimit", default=None)
|
@@ -2588,9 +2628,13 @@ class OneDriveFeedPropertiesInput(BaseModel):
|
|
2588
2628
|
|
2589
2629
|
|
2590
2630
|
class GoogleDriveFoldersInput(BaseModel):
|
2631
|
+
authentication_type: Optional[GoogleDriveAuthenticationTypes] = Field(
|
2632
|
+
alias="authenticationType", default=None
|
2633
|
+
)
|
2591
2634
|
client_id: str = Field(alias="clientId")
|
2592
2635
|
client_secret: str = Field(alias="clientSecret")
|
2593
2636
|
refresh_token: str = Field(alias="refreshToken")
|
2637
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2594
2638
|
|
2595
2639
|
|
2596
2640
|
class SharePointFoldersInput(BaseModel):
|
@@ -2601,6 +2645,7 @@ class SharePointFoldersInput(BaseModel):
|
|
2601
2645
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2602
2646
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2603
2647
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2648
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2604
2649
|
|
2605
2650
|
|
2606
2651
|
class SharePointLibrariesInput(BaseModel):
|
@@ -2611,6 +2656,7 @@ class SharePointLibrariesInput(BaseModel):
|
|
2611
2656
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2612
2657
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2613
2658
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2659
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2614
2660
|
|
2615
2661
|
|
2616
2662
|
class ContentClassificationConnectorInput(BaseModel):
|
@@ -2982,6 +3028,12 @@ class MedicalContraindicationFacetInput(BaseModel):
|
|
2982
3028
|
facet: Optional[MedicalContraindicationFacetTypes] = None
|
2983
3029
|
|
2984
3030
|
|
3031
|
+
class OAuthAuthenticationPropertiesInput(BaseModel):
|
3032
|
+
refresh_token: str = Field(alias="refreshToken")
|
3033
|
+
provider: OAuthProviders
|
3034
|
+
metadata: Optional[str] = None
|
3035
|
+
|
3036
|
+
|
2985
3037
|
class JinaModelPropertiesInput(BaseModel):
|
2986
3038
|
model: JinaModels
|
2987
3039
|
model_name: Optional[str] = Field(alias="modelName", default=None)
|
@@ -3086,7 +3138,11 @@ class RerankingStrategyInput(BaseModel):
|
|
3086
3138
|
|
3087
3139
|
|
3088
3140
|
class BoxFeedPropertiesUpdateInput(BaseModel):
|
3141
|
+
authentication_type: Optional[BoxAuthenticationTypes] = Field(
|
3142
|
+
alias="authenticationType", default=None
|
3143
|
+
)
|
3089
3144
|
folder_id: Optional[str] = Field(alias="folderId", default=None)
|
3145
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
3090
3146
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
3091
3147
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
3092
3148
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
@@ -3230,11 +3286,15 @@ class ContentGraphInput(BaseModel):
|
|
3230
3286
|
|
3231
3287
|
|
3232
3288
|
class DropboxFeedPropertiesInput(BaseModel):
|
3289
|
+
authentication_type: Optional[DropboxAuthenticationTypes] = Field(
|
3290
|
+
alias="authenticationType", default=None
|
3291
|
+
)
|
3233
3292
|
path: Optional[str] = None
|
3234
|
-
|
3235
|
-
|
3236
|
-
|
3237
|
-
|
3293
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
3294
|
+
app_key: Optional[str] = Field(alias="appKey", default=None)
|
3295
|
+
app_secret: Optional[str] = Field(alias="appSecret", default=None)
|
3296
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
3297
|
+
redirect_uri: Optional[str] = Field(alias="redirectUri", default=None)
|
3238
3298
|
|
3239
3299
|
|
3240
3300
|
class ConversationFilter(BaseModel):
|
@@ -3525,9 +3585,13 @@ class MedicalDrugUpdateInput(BaseModel):
|
|
3525
3585
|
|
3526
3586
|
class MicrosoftTeamsFeedPropertiesInput(BaseModel):
|
3527
3587
|
type: Optional[FeedListingTypes] = None
|
3528
|
-
|
3529
|
-
|
3530
|
-
|
3588
|
+
authentication_type: Optional[MicrosoftTeamsAuthenticationTypes] = Field(
|
3589
|
+
alias="authenticationType", default=None
|
3590
|
+
)
|
3591
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
3592
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
3593
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
3594
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
3531
3595
|
team_id: str = Field(alias="teamId")
|
3532
3596
|
channel_id: str = Field(alias="channelId")
|
3533
3597
|
read_limit: Optional[int] = Field(alias="readLimit", default=None)
|
@@ -3910,9 +3974,13 @@ class AlertInput(BaseModel):
|
|
3910
3974
|
|
3911
3975
|
|
3912
3976
|
class MicrosoftCalendarsInput(BaseModel):
|
3977
|
+
authentication_type: Optional[MicrosoftCalendarAuthenticationTypes] = Field(
|
3978
|
+
alias="authenticationType", default=None
|
3979
|
+
)
|
3913
3980
|
client_id: str = Field(alias="clientId")
|
3914
3981
|
client_secret: str = Field(alias="clientSecret")
|
3915
3982
|
refresh_token: str = Field(alias="refreshToken")
|
3983
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
3916
3984
|
|
3917
3985
|
|
3918
3986
|
class NotionPagesInput(BaseModel):
|
graphlit_api/operations.py
CHANGED
@@ -972,8 +972,15 @@ query GetConnector($id: ID!, $correlationId: String) {
|
|
972
972
|
clientId
|
973
973
|
clientSecret
|
974
974
|
}
|
975
|
+
oauth {
|
976
|
+
refreshToken
|
977
|
+
provider
|
978
|
+
metadata
|
979
|
+
}
|
975
980
|
arcade {
|
976
981
|
authorizationId
|
982
|
+
provider
|
983
|
+
metadata
|
977
984
|
}
|
978
985
|
}
|
979
986
|
integration {
|
@@ -1023,8 +1030,15 @@ query QueryConnectors($filter: ConnectorFilter, $correlationId: String) {
|
|
1023
1030
|
clientId
|
1024
1031
|
clientSecret
|
1025
1032
|
}
|
1033
|
+
oauth {
|
1034
|
+
refreshToken
|
1035
|
+
provider
|
1036
|
+
metadata
|
1037
|
+
}
|
1026
1038
|
arcade {
|
1027
1039
|
authorizationId
|
1040
|
+
provider
|
1041
|
+
metadata
|
1028
1042
|
}
|
1029
1043
|
}
|
1030
1044
|
integration {
|
@@ -6869,14 +6883,18 @@ query GetFeed($id: ID!, $correlationId: String) {
|
|
6869
6883
|
connectorId
|
6870
6884
|
}
|
6871
6885
|
dropbox {
|
6886
|
+
authenticationType
|
6872
6887
|
path
|
6888
|
+
connectorId
|
6873
6889
|
appKey
|
6874
6890
|
appSecret
|
6875
6891
|
refreshToken
|
6876
6892
|
redirectUri
|
6877
6893
|
}
|
6878
6894
|
box {
|
6895
|
+
authenticationType
|
6879
6896
|
folderId
|
6897
|
+
connectorId
|
6880
6898
|
clientId
|
6881
6899
|
clientSecret
|
6882
6900
|
refreshToken
|
@@ -7044,9 +7062,11 @@ query GetFeed($id: ID!, $correlationId: String) {
|
|
7044
7062
|
microsoftTeams {
|
7045
7063
|
readLimit
|
7046
7064
|
type
|
7065
|
+
authenticationType
|
7047
7066
|
clientId
|
7048
7067
|
clientSecret
|
7049
7068
|
refreshToken
|
7069
|
+
connectorId
|
7050
7070
|
teamId
|
7051
7071
|
channelId
|
7052
7072
|
}
|
@@ -7206,14 +7226,18 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
7206
7226
|
connectorId
|
7207
7227
|
}
|
7208
7228
|
dropbox {
|
7229
|
+
authenticationType
|
7209
7230
|
path
|
7231
|
+
connectorId
|
7210
7232
|
appKey
|
7211
7233
|
appSecret
|
7212
7234
|
refreshToken
|
7213
7235
|
redirectUri
|
7214
7236
|
}
|
7215
7237
|
box {
|
7238
|
+
authenticationType
|
7216
7239
|
folderId
|
7240
|
+
connectorId
|
7217
7241
|
clientId
|
7218
7242
|
clientSecret
|
7219
7243
|
refreshToken
|
@@ -7381,9 +7405,11 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
7381
7405
|
microsoftTeams {
|
7382
7406
|
readLimit
|
7383
7407
|
type
|
7408
|
+
authenticationType
|
7384
7409
|
clientId
|
7385
7410
|
clientSecret
|
7386
7411
|
refreshToken
|
7412
|
+
connectorId
|
7387
7413
|
teamId
|
7388
7414
|
channelId
|
7389
7415
|
}
|
@@ -10303,8 +10329,15 @@ query GetUser {
|
|
10303
10329
|
clientId
|
10304
10330
|
clientSecret
|
10305
10331
|
}
|
10332
|
+
oauth {
|
10333
|
+
refreshToken
|
10334
|
+
provider
|
10335
|
+
metadata
|
10336
|
+
}
|
10306
10337
|
arcade {
|
10307
10338
|
authorizationId
|
10339
|
+
provider
|
10340
|
+
metadata
|
10308
10341
|
}
|
10309
10342
|
}
|
10310
10343
|
integration {
|
@@ -10361,8 +10394,15 @@ query GetUserByIdentifier($identifier: String!) {
|
|
10361
10394
|
clientId
|
10362
10395
|
clientSecret
|
10363
10396
|
}
|
10397
|
+
oauth {
|
10398
|
+
refreshToken
|
10399
|
+
provider
|
10400
|
+
metadata
|
10401
|
+
}
|
10364
10402
|
arcade {
|
10365
10403
|
authorizationId
|
10404
|
+
provider
|
10405
|
+
metadata
|
10366
10406
|
}
|
10367
10407
|
}
|
10368
10408
|
integration {
|
@@ -10420,8 +10460,15 @@ query QueryUsers($filter: UserFilter, $correlationId: String) {
|
|
10420
10460
|
clientId
|
10421
10461
|
clientSecret
|
10422
10462
|
}
|
10463
|
+
oauth {
|
10464
|
+
refreshToken
|
10465
|
+
provider
|
10466
|
+
metadata
|
10467
|
+
}
|
10423
10468
|
arcade {
|
10424
10469
|
authorizationId
|
10470
|
+
provider
|
10471
|
+
metadata
|
10425
10472
|
}
|
10426
10473
|
}
|
10427
10474
|
integration {
|
graphlit_api/query_connectors.py
CHANGED
@@ -7,10 +7,12 @@ 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,
|
13
14
|
IntegrationServiceTypes,
|
15
|
+
OAuthProviders,
|
14
16
|
)
|
15
17
|
|
16
18
|
|
@@ -42,6 +44,7 @@ class QueryConnectorsConnectorsResultsAuthentication(BaseModel):
|
|
42
44
|
type: AuthenticationServiceTypes
|
43
45
|
microsoft: Optional["QueryConnectorsConnectorsResultsAuthenticationMicrosoft"]
|
44
46
|
google: Optional["QueryConnectorsConnectorsResultsAuthenticationGoogle"]
|
47
|
+
oauth: Optional["QueryConnectorsConnectorsResultsAuthenticationOauth"]
|
45
48
|
arcade: Optional["QueryConnectorsConnectorsResultsAuthenticationArcade"]
|
46
49
|
|
47
50
|
|
@@ -56,8 +59,16 @@ class QueryConnectorsConnectorsResultsAuthenticationGoogle(BaseModel):
|
|
56
59
|
client_secret: str = Field(alias="clientSecret")
|
57
60
|
|
58
61
|
|
62
|
+
class QueryConnectorsConnectorsResultsAuthenticationOauth(BaseModel):
|
63
|
+
refresh_token: str = Field(alias="refreshToken")
|
64
|
+
provider: OAuthProviders
|
65
|
+
metadata: Optional[str]
|
66
|
+
|
67
|
+
|
59
68
|
class QueryConnectorsConnectorsResultsAuthenticationArcade(BaseModel):
|
60
69
|
authorization_id: str = Field(alias="authorizationId")
|
70
|
+
provider: ArcadeProviders
|
71
|
+
metadata: Optional[str]
|
61
72
|
|
62
73
|
|
63
74
|
class QueryConnectorsConnectorsResultsIntegration(BaseModel):
|
graphlit_api/query_feeds.py
CHANGED
@@ -7,6 +7,8 @@ from pydantic import Field
|
|
7
7
|
|
8
8
|
from .base_model import BaseModel
|
9
9
|
from .enums import (
|
10
|
+
BoxAuthenticationTypes,
|
11
|
+
DropboxAuthenticationTypes,
|
10
12
|
EmailListingTypes,
|
11
13
|
EntityState,
|
12
14
|
FeedListingTypes,
|
@@ -17,6 +19,7 @@ from .enums import (
|
|
17
19
|
GoogleEmailAuthenticationTypes,
|
18
20
|
MicrosoftCalendarAuthenticationTypes,
|
19
21
|
MicrosoftEmailAuthenticationTypes,
|
22
|
+
MicrosoftTeamsAuthenticationTypes,
|
20
23
|
NotionTypes,
|
21
24
|
OneDriveAuthenticationTypes,
|
22
25
|
SearchServiceTypes,
|
@@ -171,7 +174,11 @@ class QueryFeedsFeedsResultsSiteGoogleDrive(BaseModel):
|
|
171
174
|
|
172
175
|
|
173
176
|
class QueryFeedsFeedsResultsSiteDropbox(BaseModel):
|
177
|
+
authentication_type: Optional[DropboxAuthenticationTypes] = Field(
|
178
|
+
alias="authenticationType"
|
179
|
+
)
|
174
180
|
path: Optional[str]
|
181
|
+
connector_id: Optional[str] = Field(alias="connectorId")
|
175
182
|
app_key: str = Field(alias="appKey")
|
176
183
|
app_secret: str = Field(alias="appSecret")
|
177
184
|
refresh_token: str = Field(alias="refreshToken")
|
@@ -179,7 +186,11 @@ class QueryFeedsFeedsResultsSiteDropbox(BaseModel):
|
|
179
186
|
|
180
187
|
|
181
188
|
class QueryFeedsFeedsResultsSiteBox(BaseModel):
|
189
|
+
authentication_type: Optional[BoxAuthenticationTypes] = Field(
|
190
|
+
alias="authenticationType"
|
191
|
+
)
|
182
192
|
folder_id: Optional[str] = Field(alias="folderId")
|
193
|
+
connector_id: Optional[str] = Field(alias="connectorId")
|
183
194
|
client_id: str = Field(alias="clientId")
|
184
195
|
client_secret: str = Field(alias="clientSecret")
|
185
196
|
refresh_token: str = Field(alias="refreshToken")
|
@@ -390,9 +401,13 @@ class QueryFeedsFeedsResultsSlack(BaseModel):
|
|
390
401
|
class QueryFeedsFeedsResultsMicrosoftTeams(BaseModel):
|
391
402
|
read_limit: Optional[int] = Field(alias="readLimit")
|
392
403
|
type: Optional[FeedListingTypes]
|
393
|
-
|
394
|
-
|
395
|
-
|
404
|
+
authentication_type: Optional[MicrosoftTeamsAuthenticationTypes] = Field(
|
405
|
+
alias="authenticationType"
|
406
|
+
)
|
407
|
+
client_id: Optional[str] = Field(alias="clientId")
|
408
|
+
client_secret: Optional[str] = Field(alias="clientSecret")
|
409
|
+
refresh_token: Optional[str] = Field(alias="refreshToken")
|
410
|
+
connector_id: Optional[str] = Field(alias="connectorId")
|
396
411
|
team_id: str = Field(alias="teamId")
|
397
412
|
channel_id: str = Field(alias="channelId")
|
398
413
|
|
graphlit_api/query_users.py
CHANGED
@@ -7,10 +7,12 @@ 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,
|
13
14
|
IntegrationServiceTypes,
|
15
|
+
OAuthProviders,
|
14
16
|
UserTypes,
|
15
17
|
)
|
16
18
|
|
@@ -53,6 +55,7 @@ class QueryUsersUsersResultsConnectorsAuthentication(BaseModel):
|
|
53
55
|
type: AuthenticationServiceTypes
|
54
56
|
microsoft: Optional["QueryUsersUsersResultsConnectorsAuthenticationMicrosoft"]
|
55
57
|
google: Optional["QueryUsersUsersResultsConnectorsAuthenticationGoogle"]
|
58
|
+
oauth: Optional["QueryUsersUsersResultsConnectorsAuthenticationOauth"]
|
56
59
|
arcade: Optional["QueryUsersUsersResultsConnectorsAuthenticationArcade"]
|
57
60
|
|
58
61
|
|
@@ -67,8 +70,16 @@ class QueryUsersUsersResultsConnectorsAuthenticationGoogle(BaseModel):
|
|
67
70
|
client_secret: str = Field(alias="clientSecret")
|
68
71
|
|
69
72
|
|
73
|
+
class QueryUsersUsersResultsConnectorsAuthenticationOauth(BaseModel):
|
74
|
+
refresh_token: str = Field(alias="refreshToken")
|
75
|
+
provider: OAuthProviders
|
76
|
+
metadata: Optional[str]
|
77
|
+
|
78
|
+
|
70
79
|
class QueryUsersUsersResultsConnectorsAuthenticationArcade(BaseModel):
|
71
80
|
authorization_id: str = Field(alias="authorizationId")
|
81
|
+
provider: ArcadeProviders
|
82
|
+
metadata: Optional[str]
|
72
83
|
|
73
84
|
|
74
85
|
class QueryUsersUsersResultsConnectorsIntegration(BaseModel):
|
{graphlit_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628003.dist-info}/RECORD
RENAMED
@@ -1,6 +1,6 @@
|
|
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=q7GvNXfaUYQnuOJmFBh3v2wNtCGf1Vcoh5WC9EBk-HQ,239639
|
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
|
@@ -166,7 +166,7 @@ graphlit_api/disable_user.py,sha256=qfFXMq691gPVdFjF-mYzjcx6DIvZnsp5Nny5pl0qI9Q,
|
|
166
166
|
graphlit_api/enable_alert.py,sha256=KctjIbnyZDoDynbuD6IR2fHuNHKAtM07VVgKzTL479g,398
|
167
167
|
graphlit_api/enable_feed.py,sha256=BhtLlEGV9p8ICodywdN9-sASWSX3w_4c3zYtf-bdaGE,390
|
168
168
|
graphlit_api/enable_user.py,sha256=_0rQnpwVYhBrRcnpfqrKTOiANgOMe-ibUAHmS-XC0qo,390
|
169
|
-
graphlit_api/enums.py,sha256=
|
169
|
+
graphlit_api/enums.py,sha256=LIho8dCv9PKHeOSHZYM-wpDUG-uafmF-j16ocC69EVw,30888
|
170
170
|
graphlit_api/exceptions.py,sha256=s0ECCqA83fhlv5GqIpT-fNFIZ7sRABG23Wj7DcEl4X0,2433
|
171
171
|
graphlit_api/extract_contents.py,sha256=qsSy8UOJuqsUnCcuduaNPyaK2mZk_1noECT0Jgx3zRA,961
|
172
172
|
graphlit_api/extract_text.py,sha256=jfkL6ep5wzXeoelZ5nRwNRT0t7oDCUt1xrigqkMj-7M,887
|
@@ -175,11 +175,11 @@ graphlit_api/format_conversation.py,sha256=5ihjhW0dyN2M6aPqwphZMneRALHSCvjWV8abJ
|
|
175
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
|
-
graphlit_api/get_connector.py,sha256=
|
178
|
+
graphlit_api/get_connector.py,sha256=LSW54hFnk1HNglvcV7q6xxhPnfU-H3VfRDavEgCUgfc,2895
|
179
179
|
graphlit_api/get_content.py,sha256=hU7CYjTkWSOhq0mb75ZWtL6My91VbCh1pzg8P7jkJJI,14949
|
180
180
|
graphlit_api/get_conversation.py,sha256=CT2-lCwt38zDz2H9Wg2ySPmFWJCvyroEFeuZAQOmz-g,18237
|
181
181
|
graphlit_api/get_event.py,sha256=saVoCHle91eNLagCX8AZwcSDikEi9OSnImx-lGx3n9A,1523
|
182
|
-
graphlit_api/get_feed.py,sha256=
|
182
|
+
graphlit_api/get_feed.py,sha256=zJMX0r65fAXcGPmxpqwyMz7Uf-0Umb1MwYXwifrXzGo,15018
|
183
183
|
graphlit_api/get_label.py,sha256=0SmukTbSktKnVlx_FpVf3lxFOQVQ6RAiRj4kglnt3eI,418
|
184
184
|
graphlit_api/get_medical_condition.py,sha256=XB03lU_gv20PHtkoLiCOR_6c8u3l7mS1F28SScSZwMM,711
|
185
185
|
graphlit_api/get_medical_contraindication.py,sha256=xJ-mUOGVB2BxEU-8q25JrNz8zJ-fnfbhku2Ajhih7iA,767
|
@@ -201,8 +201,8 @@ graphlit_api/get_repo.py,sha256=4ngiYmVFEeKe7zK0daSppsbvRwXlwYpbB4HMU2xsl78,578
|
|
201
201
|
graphlit_api/get_share_point_consent_uri.py,sha256=QaZxlq7Lkx29ryWk66F6ii_JRr7vao0xiObhK-1Ig3o,462
|
202
202
|
graphlit_api/get_software.py,sha256=oFpWsAFCQfclVj7kdIzBxaIuKXavff4IP4jqVMDOzDI,696
|
203
203
|
graphlit_api/get_specification.py,sha256=3zQhdMJ2bDffSYC0Gc_fJ5bISyUBFI9Nf8-ExCK7W_s,10713
|
204
|
-
graphlit_api/get_user.py,sha256=
|
205
|
-
graphlit_api/get_user_by_identifier.py,sha256=
|
204
|
+
graphlit_api/get_user.py,sha256=BhzQdo8YiUd8tM4vxa4puVdDqsZXwMZ9zKOcZkBwoJo,3121
|
205
|
+
graphlit_api/get_user_by_identifier.py,sha256=wBnEZgj5uBWjO-7QUnYd_7sRrF8ti_IMRUcW1Gip7eY,3949
|
206
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
|
@@ -212,14 +212,14 @@ 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=lI4j1frVPp-tJslXixVz64YL_qi5WV1bdny-vjvJ958,162158
|
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=l2nrvC6Wt-EWlQJhEcL6k5_Ywym9w_9NWIKwcXch_LY,226696
|
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
|
@@ -230,7 +230,7 @@ graphlit_api/query_alerts.py,sha256=1-_OhH_6p7JIEu378lsAeSojIR6NbEjMxIwYSCjXR5U,
|
|
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
|
233
|
-
graphlit_api/query_connectors.py,sha256=
|
233
|
+
graphlit_api/query_connectors.py,sha256=RZGRztIUvoEypf_U4PG1Dz9F0OYKW62LTIgtc0MunVw,3322
|
234
234
|
graphlit_api/query_contents.py,sha256=KYpvguxxD83QRcywaf8Prj1yBosgTkLCQd-P1ZfYJaI,12766
|
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
|
@@ -241,7 +241,7 @@ graphlit_api/query_discord_channels.py,sha256=nQAoOUj7HbrQVkYgXSSQzxbH5AYRjsfTQf
|
|
241
241
|
graphlit_api/query_discord_guilds.py,sha256=zq-sEc4AXQgWXI4xtX_bm2TnqgREKchxj8gAKiXMt6M,685
|
242
242
|
graphlit_api/query_dropbox_folders.py,sha256=KQeuBCG7GBQWV6hr3vqzhDkrgfQ73LM8jU6ETAp-21c,703
|
243
243
|
graphlit_api/query_events.py,sha256=-YWXAy3hjSHlrIk9GtiKaPow3aWppE2XO60sToSjxSc,1716
|
244
|
-
graphlit_api/query_feeds.py,sha256=
|
244
|
+
graphlit_api/query_feeds.py,sha256=LiIQVvOOICgsHIizNL_3UFdoH8nSEKDtikH2yU2cIR4,16131
|
245
245
|
graphlit_api/query_google_calendars.py,sha256=2QdNfQE0C-Evg3ySNGA4q6QQGwj0bKUS_6URot6Qccw,725
|
246
246
|
graphlit_api/query_google_drive_folders.py,sha256=kDYZgQzvU7wgV27mbTc7v4BpSVove2bBWaoNkLKsKPI,774
|
247
247
|
graphlit_api/query_labels.py,sha256=7EPyZEAK5csU6cBoq2hVhrZY_NTHL1ZbvAQHCl19BSY,584
|
@@ -276,7 +276,7 @@ graphlit_api/query_softwares.py,sha256=WSPS-Q2Ol7bCqgqc5Q066wwa_afZEQESuLV1aganB
|
|
276
276
|
graphlit_api/query_specifications.py,sha256=qvE25wOZGReO4b1gY4TPxo_IWP5sPU8bSEpYhkvmvNM,11414
|
277
277
|
graphlit_api/query_tokens.py,sha256=8lvoWuoTOGVxiJT089EgzwUt78UPc1dcvN1rMveO07M,1739
|
278
278
|
graphlit_api/query_usage.py,sha256=VUKzjpaZjkcQFXJlEKIQT9I87HTgcYzX1CeimAzqeIM,1645
|
279
|
-
graphlit_api/query_users.py,sha256=
|
279
|
+
graphlit_api/query_users.py,sha256=h6dVZ4wjfae1VCRfmAZ77p9UnpamrUzRD4OGS2353AA,3551
|
280
280
|
graphlit_api/query_views.py,sha256=GLBBgveraWjWiuzEepK_bKZDcOR6PFkmCXkFmYL6SSg,11256
|
281
281
|
graphlit_api/query_workflows.py,sha256=xAj1xe75F9j1cf1Xkof2XF2CkCIV9QKcQSojXP6i9Qc,17360
|
282
282
|
graphlit_api/remove_contents_from_collection.py,sha256=LnUL43UNNIPY-DBn-vg0Jx89tfuEBpctGgdQ5U75UlU,950
|
@@ -332,8 +332,8 @@ graphlit_api/upsert_view.py,sha256=uvsK_Hjlh_9hlj5UCjsnzhqQH7xZ_urajaSIhWMj9iw,1
|
|
332
332
|
graphlit_api/upsert_workflow.py,sha256=BWzMvOF7kQWs-uLuet5jCletHq8KGD7XK-ZwWpHM5MU,16804
|
333
333
|
graphlit_api/view_exists.py,sha256=OSYvGogCDHxbHfIjcjgKBSmCoIE4gOEjnPgiS5xX_yE,351
|
334
334
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
335
|
-
graphlit_client-1.0.
|
336
|
-
graphlit_client-1.0.
|
337
|
-
graphlit_client-1.0.
|
338
|
-
graphlit_client-1.0.
|
339
|
-
graphlit_client-1.0.
|
335
|
+
graphlit_client-1.0.20250628003.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
336
|
+
graphlit_client-1.0.20250628003.dist-info/METADATA,sha256=_SXZBVcc6-CiWVdLDnr1AtVSbbp3BB3gzIyi7HzjoFQ,3408
|
337
|
+
graphlit_client-1.0.20250628003.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
338
|
+
graphlit_client-1.0.20250628003.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
339
|
+
graphlit_client-1.0.20250628003.dist-info/RECORD,,
|
{graphlit_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628003.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|