graphlit-client 1.0.20250407002__py3-none-any.whl → 1.0.20250410001__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 +2 -0
- graphlit_api/enums.py +5 -0
- graphlit_api/get_feed.py +8 -3
- graphlit_api/input_types.py +10 -3
- graphlit_api/operations.py +4 -0
- graphlit_api/query_feeds.py +8 -3
- {graphlit_client-1.0.20250407002.dist-info → graphlit_client-1.0.20250410001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250407002.dist-info → graphlit_client-1.0.20250410001.dist-info}/RECORD +11 -11
- {graphlit_client-1.0.20250407002.dist-info → graphlit_client-1.0.20250410001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250407002.dist-info → graphlit_client-1.0.20250410001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250407002.dist-info → graphlit_client-1.0.20250410001.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
@@ -550,6 +550,7 @@ from .enums import (
|
|
550
550
|
FeedTypes,
|
551
551
|
FilePreparationServiceTypes,
|
552
552
|
FileTypes,
|
553
|
+
GoogleDriveAuthenticationTypes,
|
553
554
|
GoogleModels,
|
554
555
|
GraphStrategyTypes,
|
555
556
|
GroqModels,
|
@@ -3610,6 +3611,7 @@ __all__ = [
|
|
3610
3611
|
"GitHubIssuesFeedPropertiesInput",
|
3611
3612
|
"GitHubIssuesFeedPropertiesUpdateInput",
|
3612
3613
|
"GoogleAuthenticationPropertiesInput",
|
3614
|
+
"GoogleDriveAuthenticationTypes",
|
3613
3615
|
"GoogleDriveFeedPropertiesInput",
|
3614
3616
|
"GoogleDriveFeedPropertiesUpdateInput",
|
3615
3617
|
"GoogleEmailFeedPropertiesInput",
|
graphlit_api/enums.py
CHANGED
@@ -675,6 +675,11 @@ class PromptStrategyTypes(str, Enum):
|
|
675
675
|
NONE = "NONE"
|
676
676
|
|
677
677
|
|
678
|
+
class GoogleDriveAuthenticationTypes(str, Enum):
|
679
|
+
SERVICE_ACCOUNT = "SERVICE_ACCOUNT"
|
680
|
+
USER = "USER"
|
681
|
+
|
682
|
+
|
678
683
|
class AzureDocumentIntelligenceVersions(str, Enum):
|
679
684
|
V2023_07_31 = "V2023_07_31"
|
680
685
|
V2024_02_29_PREVIEW = "V2024_02_29_PREVIEW"
|
graphlit_api/get_feed.py
CHANGED
@@ -12,6 +12,7 @@ from .enums import (
|
|
12
12
|
FeedListingTypes,
|
13
13
|
FeedServiceTypes,
|
14
14
|
FeedTypes,
|
15
|
+
GoogleDriveAuthenticationTypes,
|
15
16
|
NotionTypes,
|
16
17
|
SearchServiceTypes,
|
17
18
|
SharePointAuthenticationTypes,
|
@@ -134,11 +135,15 @@ class GetFeedFeedSiteOneDrive(BaseModel):
|
|
134
135
|
|
135
136
|
|
136
137
|
class GetFeedFeedSiteGoogleDrive(BaseModel):
|
138
|
+
authentication_type: Optional[GoogleDriveAuthenticationTypes] = Field(
|
139
|
+
alias="authenticationType"
|
140
|
+
)
|
137
141
|
folder_id: Optional[str] = Field(alias="folderId")
|
138
142
|
files: Optional[List[Optional[str]]]
|
139
|
-
refresh_token: str = Field(alias="refreshToken")
|
140
|
-
client_id: str = Field(alias="clientId")
|
141
|
-
client_secret: str = Field(alias="clientSecret")
|
143
|
+
refresh_token: Optional[str] = Field(alias="refreshToken")
|
144
|
+
client_id: Optional[str] = Field(alias="clientId")
|
145
|
+
client_secret: Optional[str] = Field(alias="clientSecret")
|
146
|
+
service_account_json: Optional[str] = Field(alias="serviceAccountJson")
|
142
147
|
|
143
148
|
|
144
149
|
class GetFeedFeedSiteDropbox(BaseModel):
|
graphlit_api/input_types.py
CHANGED
@@ -43,6 +43,7 @@ from .enums import (
|
|
43
43
|
FeedTypes,
|
44
44
|
FilePreparationServiceTypes,
|
45
45
|
FileTypes,
|
46
|
+
GoogleDriveAuthenticationTypes,
|
46
47
|
GoogleModels,
|
47
48
|
GraphStrategyTypes,
|
48
49
|
GroqModels,
|
@@ -993,11 +994,17 @@ class RepoFilter(BaseModel):
|
|
993
994
|
|
994
995
|
|
995
996
|
class GoogleDriveFeedPropertiesInput(BaseModel):
|
997
|
+
authentication_type: Optional[GoogleDriveAuthenticationTypes] = Field(
|
998
|
+
alias="authenticationType", default=None
|
999
|
+
)
|
996
1000
|
files: Optional[List[Optional[str]]] = None
|
997
1001
|
folder_id: Optional[str] = Field(alias="folderId", default=None)
|
998
|
-
refresh_token: str = Field(alias="refreshToken")
|
999
|
-
client_id: str = Field(alias="clientId")
|
1000
|
-
client_secret: str = Field(alias="clientSecret")
|
1002
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
1003
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
1004
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
1005
|
+
service_account_json: Optional[str] = Field(
|
1006
|
+
alias="serviceAccountJson", default=None
|
1007
|
+
)
|
1001
1008
|
|
1002
1009
|
|
1003
1010
|
class IntegrationConnectorUpdateInput(BaseModel):
|
graphlit_api/operations.py
CHANGED
@@ -5660,11 +5660,13 @@ query GetFeed($id: ID!, $correlationId: String) {
|
|
5660
5660
|
refreshToken
|
5661
5661
|
}
|
5662
5662
|
googleDrive {
|
5663
|
+
authenticationType
|
5663
5664
|
folderId
|
5664
5665
|
files
|
5665
5666
|
refreshToken
|
5666
5667
|
clientId
|
5667
5668
|
clientSecret
|
5669
|
+
serviceAccountJson
|
5668
5670
|
}
|
5669
5671
|
dropbox {
|
5670
5672
|
path
|
@@ -5916,11 +5918,13 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
5916
5918
|
refreshToken
|
5917
5919
|
}
|
5918
5920
|
googleDrive {
|
5921
|
+
authenticationType
|
5919
5922
|
folderId
|
5920
5923
|
files
|
5921
5924
|
refreshToken
|
5922
5925
|
clientId
|
5923
5926
|
clientSecret
|
5927
|
+
serviceAccountJson
|
5924
5928
|
}
|
5925
5929
|
dropbox {
|
5926
5930
|
path
|
graphlit_api/query_feeds.py
CHANGED
@@ -12,6 +12,7 @@ from .enums import (
|
|
12
12
|
FeedListingTypes,
|
13
13
|
FeedServiceTypes,
|
14
14
|
FeedTypes,
|
15
|
+
GoogleDriveAuthenticationTypes,
|
15
16
|
NotionTypes,
|
16
17
|
SearchServiceTypes,
|
17
18
|
SharePointAuthenticationTypes,
|
@@ -146,11 +147,15 @@ class QueryFeedsFeedsResultsSiteOneDrive(BaseModel):
|
|
146
147
|
|
147
148
|
|
148
149
|
class QueryFeedsFeedsResultsSiteGoogleDrive(BaseModel):
|
150
|
+
authentication_type: Optional[GoogleDriveAuthenticationTypes] = Field(
|
151
|
+
alias="authenticationType"
|
152
|
+
)
|
149
153
|
folder_id: Optional[str] = Field(alias="folderId")
|
150
154
|
files: Optional[List[Optional[str]]]
|
151
|
-
refresh_token: str = Field(alias="refreshToken")
|
152
|
-
client_id: str = Field(alias="clientId")
|
153
|
-
client_secret: str = Field(alias="clientSecret")
|
155
|
+
refresh_token: Optional[str] = Field(alias="refreshToken")
|
156
|
+
client_id: Optional[str] = Field(alias="clientId")
|
157
|
+
client_secret: Optional[str] = Field(alias="clientSecret")
|
158
|
+
service_account_json: Optional[str] = Field(alias="serviceAccountJson")
|
154
159
|
|
155
160
|
|
156
161
|
class QueryFeedsFeedsResultsSiteDropbox(BaseModel):
|
{graphlit_client-1.0.20250407002.dist-info → graphlit_client-1.0.20250410001.dist-info}/RECORD
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
graphlit/__init__.py,sha256=4AyigTlFQWP40lnaaQ1H1iRT_B1hIXW9bgPanbwmTvs,32
|
2
2
|
graphlit/graphlit.py,sha256=56G5Am72og5QHIjEh9cy4vkfos7YVpGvzRuIPhPbCEU,1949
|
3
|
-
graphlit_api/__init__.py,sha256
|
3
|
+
graphlit_api/__init__.py,sha256=-1ZQyXGLQw3q1jxNQpdV4HuCR8HVGvt6b5uTeEbAX_I,187154
|
4
4
|
graphlit_api/add_contents_to_collections.py,sha256=K7tNpLn8-lRVaVT39iKr-VtCKRWVONyL_h6cC0L606Y,888
|
5
5
|
graphlit_api/ask_graphlit.py,sha256=F-mgXMfUqGYCOP4WFQXmZDp5RgK7Cej-nA1RkmRvp7o,6301
|
6
6
|
graphlit_api/async_base_client.py,sha256=v0KUVwe2_RIQa8Mn7l_yD5McUe7B03vhclJ9SP4XGgw,12578
|
@@ -157,7 +157,7 @@ graphlit_api/disable_user.py,sha256=qfFXMq691gPVdFjF-mYzjcx6DIvZnsp5Nny5pl0qI9Q,
|
|
157
157
|
graphlit_api/enable_alert.py,sha256=KctjIbnyZDoDynbuD6IR2fHuNHKAtM07VVgKzTL479g,398
|
158
158
|
graphlit_api/enable_feed.py,sha256=BhtLlEGV9p8ICodywdN9-sASWSX3w_4c3zYtf-bdaGE,390
|
159
159
|
graphlit_api/enable_user.py,sha256=_0rQnpwVYhBrRcnpfqrKTOiANgOMe-ibUAHmS-XC0qo,390
|
160
|
-
graphlit_api/enums.py,sha256=
|
160
|
+
graphlit_api/enums.py,sha256=5qzUsuh3w28FXBdzNE9TU-bwaM7FcSivYZta2JCpK4o,26784
|
161
161
|
graphlit_api/exceptions.py,sha256=33pJ_dDonmIx_D-43jvhuQYJAXz5HoaPf1DoxXmNsAw,2432
|
162
162
|
graphlit_api/extract_contents.py,sha256=qsSy8UOJuqsUnCcuduaNPyaK2mZk_1noECT0Jgx3zRA,961
|
163
163
|
graphlit_api/extract_text.py,sha256=jfkL6ep5wzXeoelZ5nRwNRT0t7oDCUt1xrigqkMj-7M,887
|
@@ -169,7 +169,7 @@ graphlit_api/get_collection.py,sha256=de2AaJQRkMEZoRhmYWnXlXlb1c76cF2Z8v6PwaL7wT
|
|
169
169
|
graphlit_api/get_content.py,sha256=nMUyT7FE52rcqZWee4voconMMAp3yHP820eQMwY3zHo,11061
|
170
170
|
graphlit_api/get_conversation.py,sha256=q1CenM3uT_yYPBB5OlDaFCfmziDWXlsFe0Y1ryMl-xA,17057
|
171
171
|
graphlit_api/get_event.py,sha256=saVoCHle91eNLagCX8AZwcSDikEi9OSnImx-lGx3n9A,1523
|
172
|
-
graphlit_api/get_feed.py,sha256=
|
172
|
+
graphlit_api/get_feed.py,sha256=thNnL79fN00-hO5uJxMcDn3FYfQPuND_WsrQ4glVCkg,11843
|
173
173
|
graphlit_api/get_label.py,sha256=0SmukTbSktKnVlx_FpVf3lxFOQVQ6RAiRj4kglnt3eI,418
|
174
174
|
graphlit_api/get_medical_condition.py,sha256=XB03lU_gv20PHtkoLiCOR_6c8u3l7mS1F28SScSZwMM,711
|
175
175
|
graphlit_api/get_medical_contraindication.py,sha256=xJ-mUOGVB2BxEU-8q25JrNz8zJ-fnfbhku2Ajhih7iA,767
|
@@ -198,13 +198,13 @@ graphlit_api/ingest_encoded_file.py,sha256=mKoEc5qziw8i-MDT8CrGCfmaupWnIVQkow7cR
|
|
198
198
|
graphlit_api/ingest_text.py,sha256=D4lpV9LTC_u586_ILVrB2rVpHG0-8HivqeOA1GpQuFs,2286
|
199
199
|
graphlit_api/ingest_text_batch.py,sha256=gSD1bH3mAPwJzy5TeMJ6UguEgI9yrPUXyz1soExSttM,2521
|
200
200
|
graphlit_api/ingest_uri.py,sha256=f71kMRyMoAhef6sJU85ZgGz4aPq_5CDLaDvCeQnLY5A,2248
|
201
|
-
graphlit_api/input_types.py,sha256=
|
201
|
+
graphlit_api/input_types.py,sha256=x4eLJuFq6l-vCR_LT50yitlJ6BBSjdRischNNq3IH9M,140811
|
202
202
|
graphlit_api/is_content_done.py,sha256=X8uevsTD6oFMbC8I3E9Emg-_yrFTWnnrVL5LpruSB6Q,390
|
203
203
|
graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,352
|
204
204
|
graphlit_api/lookup_credits.py,sha256=xisQ4ExnjwWGbPZVU24bLF7pj4Dwp-d9q5GsHVBMoAM,1395
|
205
205
|
graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
|
206
206
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
207
|
-
graphlit_api/operations.py,sha256=
|
207
|
+
graphlit_api/operations.py,sha256=2JgFjOWO1trZyVXV8z7GBmXqjZZHUZPr3fnUBgK0bnA,184033
|
208
208
|
graphlit_api/prompt.py,sha256=4A0P-8hk98sNFNfRovzDBXXCHAGXOs2zThsXY07Q5KI,6015
|
209
209
|
graphlit_api/prompt_conversation.py,sha256=zdVzHhZdF2CFL87_8EUcugWYzSFSWc0nCv4JFjhN7lI,16082
|
210
210
|
graphlit_api/prompt_specifications.py,sha256=z8JQpfCUfgPeiuolLEGY83Pr32VaI2Ng1Wq0pG-gv2w,6902
|
@@ -220,7 +220,7 @@ graphlit_api/query_contents_graph.py,sha256=RzQHZEQOOzB0yLTvU6rBJu_Str3Gc9m8BG8f
|
|
220
220
|
graphlit_api/query_conversations.py,sha256=rnCDtowAR0SSNCzqFTSQAcsfFshQyPI6F2cqRNaWA2o,19141
|
221
221
|
graphlit_api/query_credits.py,sha256=z_Uaapz8OlJyisBr4MEkPVIGj4kqBZe5VdI0XFb6HiQ,1327
|
222
222
|
graphlit_api/query_events.py,sha256=-YWXAy3hjSHlrIk9GtiKaPow3aWppE2XO60sToSjxSc,1716
|
223
|
-
graphlit_api/query_feeds.py,sha256=
|
223
|
+
graphlit_api/query_feeds.py,sha256=lux15n2tARERMXgWwa-iuEvpv1MS_LcGmgc2Seq5Z60,12889
|
224
224
|
graphlit_api/query_labels.py,sha256=7EPyZEAK5csU6cBoq2hVhrZY_NTHL1ZbvAQHCl19BSY,584
|
225
225
|
graphlit_api/query_linear_projects.py,sha256=JCu01TJ5RBZQ-KdJaa5AuE8bqobuZxvz2H1rQH_XrwA,429
|
226
226
|
graphlit_api/query_medical_conditions.py,sha256=_XWHs9XX3DUuYC7nUhQKlVAYufphu-ed30qvaU9nPHs,938
|
@@ -301,8 +301,8 @@ graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,
|
|
301
301
|
graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
|
302
302
|
graphlit_api/upsert_workflow.py,sha256=QL5Gi8jqF4wG9_qReoW8E5X7VsSIsLzgxIY1aAK0ebo,15692
|
303
303
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
304
|
-
graphlit_client-1.0.
|
305
|
-
graphlit_client-1.0.
|
306
|
-
graphlit_client-1.0.
|
307
|
-
graphlit_client-1.0.
|
308
|
-
graphlit_client-1.0.
|
304
|
+
graphlit_client-1.0.20250410001.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
305
|
+
graphlit_client-1.0.20250410001.dist-info/METADATA,sha256=0llo-GvUs9pJXqPwJzSk2GBm7wS1u8ZmBoGyTcyZx_I,3408
|
306
|
+
graphlit_client-1.0.20250410001.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
307
|
+
graphlit_client-1.0.20250410001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
308
|
+
graphlit_client-1.0.20250410001.dist-info/RECORD,,
|
{graphlit_client-1.0.20250407002.dist-info → graphlit_client-1.0.20250410001.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|