graphlit-client 1.0.20250628001__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 +4 -0
- graphlit_api/enums.py +11 -0
- graphlit_api/get_connector.py +3 -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/input_types.py +47 -5
- graphlit_api/operations.py +14 -0
- graphlit_api/query_connectors.py +3 -0
- graphlit_api/query_feeds.py +8 -3
- graphlit_api/query_users.py +3 -0
- {graphlit_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628002.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628002.dist-info}/RECORD +16 -16
- {graphlit_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628002.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628002.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628002.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,
|
@@ -656,6 +657,7 @@ from .enums import (
|
|
656
657
|
MetadataTypes,
|
657
658
|
MicrosoftCalendarAuthenticationTypes,
|
658
659
|
MicrosoftEmailAuthenticationTypes,
|
660
|
+
MicrosoftTeamsAuthenticationTypes,
|
659
661
|
MistralModels,
|
660
662
|
ModelServiceTypes,
|
661
663
|
ModelTypes,
|
@@ -3115,6 +3117,7 @@ __all__ = [
|
|
3115
3117
|
"AnthropicModels",
|
3116
3118
|
"ApplyPolicy",
|
3117
3119
|
"ArcadeAuthenticationPropertiesInput",
|
3120
|
+
"ArcadeProviders",
|
3118
3121
|
"AskGraphlit",
|
3119
3122
|
"AskGraphlitAskGraphlit",
|
3120
3123
|
"AskGraphlitAskGraphlitConversation",
|
@@ -4675,6 +4678,7 @@ __all__ = [
|
|
4675
4678
|
"MicrosoftEmailAuthenticationTypes",
|
4676
4679
|
"MicrosoftEmailFeedPropertiesInput",
|
4677
4680
|
"MicrosoftEmailFeedPropertiesUpdateInput",
|
4681
|
+
"MicrosoftTeamsAuthenticationTypes",
|
4678
4682
|
"MicrosoftTeamsChannelsInput",
|
4679
4683
|
"MicrosoftTeamsFeedPropertiesInput",
|
4680
4684
|
"MicrosoftTeamsFeedPropertiesUpdateInput",
|
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"
|
graphlit_api/get_connector.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,
|
@@ -54,6 +55,8 @@ class GetConnectorConnectorAuthenticationGoogle(BaseModel):
|
|
54
55
|
|
55
56
|
class GetConnectorConnectorAuthenticationArcade(BaseModel):
|
56
57
|
authorization_id: str = Field(alias="authorizationId")
|
58
|
+
provider: ArcadeProviders
|
59
|
+
metadata: Optional[str]
|
57
60
|
|
58
61
|
|
59
62
|
class GetConnectorConnectorIntegration(BaseModel):
|
graphlit_api/get_feed.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,
|
@@ -378,9 +379,13 @@ class GetFeedFeedSlack(BaseModel):
|
|
378
379
|
class GetFeedFeedMicrosoftTeams(BaseModel):
|
379
380
|
read_limit: Optional[int] = Field(alias="readLimit")
|
380
381
|
type: Optional[FeedListingTypes]
|
381
|
-
|
382
|
-
|
383
|
-
|
382
|
+
authentication_type: Optional[MicrosoftTeamsAuthenticationTypes] = Field(
|
383
|
+
alias="authenticationType"
|
384
|
+
)
|
385
|
+
client_id: Optional[str] = Field(alias="clientId")
|
386
|
+
client_secret: Optional[str] = Field(alias="clientSecret")
|
387
|
+
refresh_token: Optional[str] = Field(alias="refreshToken")
|
388
|
+
connector_id: Optional[str] = Field(alias="connectorId")
|
384
389
|
team_id: str = Field(alias="teamId")
|
385
390
|
channel_id: str = Field(alias="channelId")
|
386
391
|
|
graphlit_api/get_user.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,
|
@@ -65,6 +66,8 @@ class GetUserUserConnectorsAuthenticationGoogle(BaseModel):
|
|
65
66
|
|
66
67
|
class GetUserUserConnectorsAuthenticationArcade(BaseModel):
|
67
68
|
authorization_id: str = Field(alias="authorizationId")
|
69
|
+
provider: ArcadeProviders
|
70
|
+
metadata: Optional[str]
|
68
71
|
|
69
72
|
|
70
73
|
class GetUserUserConnectorsIntegration(BaseModel):
|
@@ -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,
|
@@ -77,6 +78,8 @@ class GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle(BaseMode
|
|
77
78
|
|
78
79
|
class GetUserByIdentifierUserByIdentifierConnectorsAuthenticationArcade(BaseModel):
|
79
80
|
authorization_id: str = Field(alias="authorizationId")
|
81
|
+
provider: ArcadeProviders
|
82
|
+
metadata: Optional[str]
|
80
83
|
|
81
84
|
|
82
85
|
class GetUserByIdentifierUserByIdentifierConnectorsIntegration(BaseModel):
|
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):
|
@@ -2446,9 +2470,13 @@ class MicrosoftEmailFeedPropertiesInput(BaseModel):
|
|
2446
2470
|
|
2447
2471
|
class MicrosoftTeamsFeedPropertiesUpdateInput(BaseModel):
|
2448
2472
|
type: Optional[FeedListingTypes] = None
|
2473
|
+
authentication_type: Optional[MicrosoftTeamsAuthenticationTypes] = Field(
|
2474
|
+
alias="authenticationType", default=None
|
2475
|
+
)
|
2449
2476
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2450
2477
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2451
2478
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2479
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2452
2480
|
team_id: str = Field(alias="teamId")
|
2453
2481
|
channel_id: str = Field(alias="channelId")
|
2454
2482
|
read_limit: Optional[int] = Field(alias="readLimit", default=None)
|
@@ -2588,9 +2616,13 @@ class OneDriveFeedPropertiesInput(BaseModel):
|
|
2588
2616
|
|
2589
2617
|
|
2590
2618
|
class GoogleDriveFoldersInput(BaseModel):
|
2619
|
+
authentication_type: Optional[GoogleDriveAuthenticationTypes] = Field(
|
2620
|
+
alias="authenticationType", default=None
|
2621
|
+
)
|
2591
2622
|
client_id: str = Field(alias="clientId")
|
2592
2623
|
client_secret: str = Field(alias="clientSecret")
|
2593
2624
|
refresh_token: str = Field(alias="refreshToken")
|
2625
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2594
2626
|
|
2595
2627
|
|
2596
2628
|
class SharePointFoldersInput(BaseModel):
|
@@ -2601,6 +2633,7 @@ class SharePointFoldersInput(BaseModel):
|
|
2601
2633
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2602
2634
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2603
2635
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2636
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2604
2637
|
|
2605
2638
|
|
2606
2639
|
class SharePointLibrariesInput(BaseModel):
|
@@ -2611,6 +2644,7 @@ class SharePointLibrariesInput(BaseModel):
|
|
2611
2644
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2612
2645
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2613
2646
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2647
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2614
2648
|
|
2615
2649
|
|
2616
2650
|
class ContentClassificationConnectorInput(BaseModel):
|
@@ -3525,9 +3559,13 @@ class MedicalDrugUpdateInput(BaseModel):
|
|
3525
3559
|
|
3526
3560
|
class MicrosoftTeamsFeedPropertiesInput(BaseModel):
|
3527
3561
|
type: Optional[FeedListingTypes] = None
|
3528
|
-
|
3529
|
-
|
3530
|
-
|
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)
|
3531
3569
|
team_id: str = Field(alias="teamId")
|
3532
3570
|
channel_id: str = Field(alias="channelId")
|
3533
3571
|
read_limit: Optional[int] = Field(alias="readLimit", default=None)
|
@@ -3910,9 +3948,13 @@ class AlertInput(BaseModel):
|
|
3910
3948
|
|
3911
3949
|
|
3912
3950
|
class MicrosoftCalendarsInput(BaseModel):
|
3951
|
+
authentication_type: Optional[MicrosoftCalendarAuthenticationTypes] = Field(
|
3952
|
+
alias="authenticationType", default=None
|
3953
|
+
)
|
3913
3954
|
client_id: str = Field(alias="clientId")
|
3914
3955
|
client_secret: str = Field(alias="clientSecret")
|
3915
3956
|
refresh_token: str = Field(alias="refreshToken")
|
3957
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
3916
3958
|
|
3917
3959
|
|
3918
3960
|
class NotionPagesInput(BaseModel):
|
graphlit_api/operations.py
CHANGED
@@ -974,6 +974,8 @@ query GetConnector($id: ID!, $correlationId: String) {
|
|
974
974
|
}
|
975
975
|
arcade {
|
976
976
|
authorizationId
|
977
|
+
provider
|
978
|
+
metadata
|
977
979
|
}
|
978
980
|
}
|
979
981
|
integration {
|
@@ -1025,6 +1027,8 @@ query QueryConnectors($filter: ConnectorFilter, $correlationId: String) {
|
|
1025
1027
|
}
|
1026
1028
|
arcade {
|
1027
1029
|
authorizationId
|
1030
|
+
provider
|
1031
|
+
metadata
|
1028
1032
|
}
|
1029
1033
|
}
|
1030
1034
|
integration {
|
@@ -7044,9 +7048,11 @@ query GetFeed($id: ID!, $correlationId: String) {
|
|
7044
7048
|
microsoftTeams {
|
7045
7049
|
readLimit
|
7046
7050
|
type
|
7051
|
+
authenticationType
|
7047
7052
|
clientId
|
7048
7053
|
clientSecret
|
7049
7054
|
refreshToken
|
7055
|
+
connectorId
|
7050
7056
|
teamId
|
7051
7057
|
channelId
|
7052
7058
|
}
|
@@ -7381,9 +7387,11 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
7381
7387
|
microsoftTeams {
|
7382
7388
|
readLimit
|
7383
7389
|
type
|
7390
|
+
authenticationType
|
7384
7391
|
clientId
|
7385
7392
|
clientSecret
|
7386
7393
|
refreshToken
|
7394
|
+
connectorId
|
7387
7395
|
teamId
|
7388
7396
|
channelId
|
7389
7397
|
}
|
@@ -10305,6 +10313,8 @@ query GetUser {
|
|
10305
10313
|
}
|
10306
10314
|
arcade {
|
10307
10315
|
authorizationId
|
10316
|
+
provider
|
10317
|
+
metadata
|
10308
10318
|
}
|
10309
10319
|
}
|
10310
10320
|
integration {
|
@@ -10363,6 +10373,8 @@ query GetUserByIdentifier($identifier: String!) {
|
|
10363
10373
|
}
|
10364
10374
|
arcade {
|
10365
10375
|
authorizationId
|
10376
|
+
provider
|
10377
|
+
metadata
|
10366
10378
|
}
|
10367
10379
|
}
|
10368
10380
|
integration {
|
@@ -10422,6 +10434,8 @@ query QueryUsers($filter: UserFilter, $correlationId: String) {
|
|
10422
10434
|
}
|
10423
10435
|
arcade {
|
10424
10436
|
authorizationId
|
10437
|
+
provider
|
10438
|
+
metadata
|
10425
10439
|
}
|
10426
10440
|
}
|
10427
10441
|
integration {
|
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):
|
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_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628002.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=-bAKvQBLPmiTDlvzHNCjQ20ZbHb4pnQ_XmCDJCiXeKE,238829
|
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=OcfVh8-hYxFvu6pn1Ww9WZv2TN4fcjNEvpfHIontaB0,30609
|
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=mf6o-3UMdcglj0jlDBVfeZvO1rhRDipSXD72xPa5-0w,2640
|
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=DVrWvCEg6nTPRJjjdeWE5_w7g8MjIxwiGRll0QZ3B_g,14616
|
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=s2CHbnJXB3bYpnQ-cDRmQOen8Fsjr2LdMH_PU5iTd-A,2866
|
205
|
+
graphlit_api/get_user_by_identifier.py,sha256=LqYJtFqdUBgAgoFvtSIMLYhEeIysqEqWYfbQ-kM_T_0,3646
|
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=yHyHNdGSIZ3ID1QFbWYNncF2CUCmskY_H7guDuxYDQI,160853
|
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=rYAaUHrDbET_sn8pYRk28CL9KrkyMPNpcscHj8iNRHA,226065
|
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=UQ8LlyHPGJWLd_JnIetNt3dl5ncuRXWYZcVGyNMBW3w,3045
|
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=67GVtOWMgfIPJSACrdOVfREFahvFF35c3FLnkHVRJDA,15729
|
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=zQup4aMnieLXaUfI95EIXCA0mn6JngoWUmadyMZEMc0,3274
|
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.20250628002.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
336
|
+
graphlit_client-1.0.20250628002.dist-info/METADATA,sha256=cZ8Mu7kaFtjNfunQxyRxHFUzoX55JTGN79Ys0d_MpO8,3408
|
337
|
+
graphlit_client-1.0.20250628002.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
338
|
+
graphlit_client-1.0.20250628002.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
339
|
+
graphlit_client-1.0.20250628002.dist-info/RECORD,,
|
{graphlit_client-1.0.20250628001.dist-info → graphlit_client-1.0.20250628002.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|