graphlit-client 1.0.20250625001__py3-none-any.whl → 1.0.20250627001__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 +556 -0
- graphlit_api/client.py +205 -0
- graphlit_api/count_connectors.py +21 -0
- graphlit_api/count_views.py +19 -0
- graphlit_api/create_connector.py +25 -0
- graphlit_api/create_view.py +316 -0
- graphlit_api/create_workflow.py +6 -0
- graphlit_api/delete_connector.py +23 -0
- graphlit_api/delete_view.py +21 -0
- graphlit_api/enums.py +46 -0
- graphlit_api/get_connector.py +88 -0
- graphlit_api/get_feed.py +32 -1
- graphlit_api/get_user.py +5 -0
- graphlit_api/get_user_by_identifier.py +7 -0
- graphlit_api/get_view.py +321 -0
- graphlit_api/get_workflow.py +6 -0
- graphlit_api/input_types.py +143 -21
- graphlit_api/operations.py +937 -0
- graphlit_api/query_connectors.py +93 -0
- graphlit_api/query_feeds.py +32 -1
- graphlit_api/query_users.py +5 -0
- graphlit_api/query_views.py +330 -0
- graphlit_api/query_workflows.py +6 -0
- graphlit_api/update_connector.py +25 -0
- graphlit_api/update_view.py +316 -0
- graphlit_api/update_workflow.py +6 -0
- graphlit_api/upsert_workflow.py +6 -0
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627001.dist-info}/RECORD +32 -20
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627001.dist-info}/top_level.txt +0 -0
graphlit_api/input_types.py
CHANGED
@@ -49,7 +49,11 @@ from .enums import (
|
|
49
49
|
FeedTypes,
|
50
50
|
FilePreparationServiceTypes,
|
51
51
|
FileTypes,
|
52
|
+
GitHubAuthenticationTypes,
|
53
|
+
GitHubIssueAuthenticationTypes,
|
54
|
+
GoogleCalendarAuthenticationTypes,
|
52
55
|
GoogleDriveAuthenticationTypes,
|
56
|
+
GoogleEmailAuthenticationTypes,
|
53
57
|
GoogleModels,
|
54
58
|
GraphStrategyTypes,
|
55
59
|
GroqModels,
|
@@ -74,12 +78,15 @@ from .enums import (
|
|
74
78
|
MedicalTestFacetTypes,
|
75
79
|
MedicalTherapyFacetTypes,
|
76
80
|
MetadataTypes,
|
81
|
+
MicrosoftCalendarAuthenticationTypes,
|
82
|
+
MicrosoftEmailAuthenticationTypes,
|
77
83
|
MistralModels,
|
78
84
|
ModelServiceTypes,
|
79
85
|
ModelTypes,
|
80
86
|
NotionTypes,
|
81
87
|
ObservableTypes,
|
82
88
|
OccurrenceTypes,
|
89
|
+
OneDriveAuthenticationTypes,
|
83
90
|
OpenAIImageModels,
|
84
91
|
OpenAIModels,
|
85
92
|
OpenAIReasoningEffortLevels,
|
@@ -118,6 +125,7 @@ from .enums import (
|
|
118
125
|
TwitterListingTypes,
|
119
126
|
UnitTypes,
|
120
127
|
UserTypes,
|
128
|
+
ViewTypes,
|
121
129
|
VoyageModels,
|
122
130
|
YouTubeTypes,
|
123
131
|
)
|
@@ -249,6 +257,12 @@ class LinkStrategyInput(BaseModel):
|
|
249
257
|
excluded_files: Optional[List[FileTypes]] = Field(
|
250
258
|
alias="excludedFiles", default=None
|
251
259
|
)
|
260
|
+
allowed_content_types: Optional[List[ContentTypes]] = Field(
|
261
|
+
alias="allowedContentTypes", default=None
|
262
|
+
)
|
263
|
+
excluded_content_types: Optional[List[ContentTypes]] = Field(
|
264
|
+
alias="excludedContentTypes", default=None
|
265
|
+
)
|
252
266
|
maximum_links: Optional[int] = Field(alias="maximumLinks", default=None)
|
253
267
|
|
254
268
|
|
@@ -308,6 +322,9 @@ class WorkflowUpdateInput(BaseModel):
|
|
308
322
|
|
309
323
|
|
310
324
|
class GitHubFeedPropertiesInput(BaseModel):
|
325
|
+
authentication_type: Optional[GitHubAuthenticationTypes] = Field(
|
326
|
+
alias="authenticationType", default=None
|
327
|
+
)
|
311
328
|
repository_owner: str = Field(alias="repositoryOwner")
|
312
329
|
repository_name: str = Field(alias="repositoryName")
|
313
330
|
uri: Optional[Any] = None
|
@@ -315,6 +332,7 @@ class GitHubFeedPropertiesInput(BaseModel):
|
|
315
332
|
personal_access_token: Optional[str] = Field(
|
316
333
|
alias="personalAccessToken", default=None
|
317
334
|
)
|
335
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
318
336
|
|
319
337
|
|
320
338
|
class TrelloFeedPropertiesInput(BaseModel):
|
@@ -384,6 +402,10 @@ class AddressFilter(BaseModel):
|
|
384
402
|
postal_code: Optional[str] = Field(alias="postalCode", default=None)
|
385
403
|
|
386
404
|
|
405
|
+
class DiscordGuildsInput(BaseModel):
|
406
|
+
token: str
|
407
|
+
|
408
|
+
|
387
409
|
class AzureFileFeedPropertiesInput(BaseModel):
|
388
410
|
storage_access_key: str = Field(alias="storageAccessKey")
|
389
411
|
account_name: str = Field(alias="accountName")
|
@@ -418,6 +440,7 @@ class GoogleDriveFeedPropertiesUpdateInput(BaseModel):
|
|
418
440
|
service_account_json: Optional[str] = Field(
|
419
441
|
alias="serviceAccountJson", default=None
|
420
442
|
)
|
443
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
421
444
|
|
422
445
|
|
423
446
|
class TrelloFeedPropertiesUpdateInput(BaseModel):
|
@@ -523,9 +546,13 @@ class MicrosoftEmailFeedPropertiesUpdateInput(BaseModel):
|
|
523
546
|
)
|
524
547
|
exclude_sent_items: Optional[bool] = Field(alias="excludeSentItems", default=None)
|
525
548
|
include_spam: Optional[bool] = Field(alias="includeSpam", default=None)
|
549
|
+
authentication_type: Optional[MicrosoftEmailAuthenticationTypes] = Field(
|
550
|
+
alias="authenticationType", default=None
|
551
|
+
)
|
526
552
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
527
553
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
528
554
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
555
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
529
556
|
|
530
557
|
|
531
558
|
class IntercomFeedPropertiesUpdateInput(BaseModel):
|
@@ -1067,6 +1094,9 @@ class AmazonFeedPropertiesUpdateInput(BaseModel):
|
|
1067
1094
|
|
1068
1095
|
|
1069
1096
|
class GitHubFeedPropertiesUpdateInput(BaseModel):
|
1097
|
+
authentication_type: Optional[GitHubAuthenticationTypes] = Field(
|
1098
|
+
alias="authenticationType", default=None
|
1099
|
+
)
|
1070
1100
|
repository_owner: Optional[str] = Field(alias="repositoryOwner", default=None)
|
1071
1101
|
repository_name: Optional[str] = Field(alias="repositoryName", default=None)
|
1072
1102
|
uri: Optional[Any] = None
|
@@ -1074,6 +1104,7 @@ class GitHubFeedPropertiesUpdateInput(BaseModel):
|
|
1074
1104
|
personal_access_token: Optional[str] = Field(
|
1075
1105
|
alias="personalAccessToken", default=None
|
1076
1106
|
)
|
1107
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
1077
1108
|
|
1078
1109
|
|
1079
1110
|
class OrganizationFilter(BaseModel):
|
@@ -1102,6 +1133,10 @@ class OrganizationFilter(BaseModel):
|
|
1102
1133
|
)
|
1103
1134
|
|
1104
1135
|
|
1136
|
+
class ArcadeAuthenticationPropertiesInput(BaseModel):
|
1137
|
+
authorization_id: str = Field(alias="authorizationId")
|
1138
|
+
|
1139
|
+
|
1105
1140
|
class ContentCriteriaLevelInput(BaseModel):
|
1106
1141
|
feeds: Optional[List["EntityReferenceInput"]] = None
|
1107
1142
|
workflows: Optional[List["EntityReferenceInput"]] = None
|
@@ -1365,6 +1400,7 @@ class SharePointFeedPropertiesUpdateInput(BaseModel):
|
|
1365
1400
|
)
|
1366
1401
|
tenant_id: Optional[str] = Field(alias="tenantId", default=None)
|
1367
1402
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
1403
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
1368
1404
|
account_name: Optional[str] = Field(alias="accountName", default=None)
|
1369
1405
|
library_id: Optional[str] = Field(alias="libraryId", default=None)
|
1370
1406
|
folder_id: Optional[str] = Field(alias="folderId", default=None)
|
@@ -1561,6 +1597,16 @@ class SiteFeedPropertiesUpdateInput(BaseModel):
|
|
1561
1597
|
read_limit: Optional[int] = Field(alias="readLimit", default=None)
|
1562
1598
|
|
1563
1599
|
|
1600
|
+
class ViewUpdateInput(BaseModel):
|
1601
|
+
id: str
|
1602
|
+
name: Optional[str] = None
|
1603
|
+
type: Optional[ViewTypes] = None
|
1604
|
+
filter: Optional["ContentCriteriaInput"] = None
|
1605
|
+
augmented_filter: Optional["ContentCriteriaInput"] = Field(
|
1606
|
+
alias="augmentedFilter", default=None
|
1607
|
+
)
|
1608
|
+
|
1609
|
+
|
1564
1610
|
class GoogleCalendarsInput(BaseModel):
|
1565
1611
|
client_id: str = Field(alias="clientId")
|
1566
1612
|
client_secret: str = Field(alias="clientSecret")
|
@@ -2035,9 +2081,13 @@ class ContentCriteriaInput(BaseModel):
|
|
2035
2081
|
|
2036
2082
|
|
2037
2083
|
class MicrosoftCalendarFeedPropertiesUpdateInput(BaseModel):
|
2038
|
-
|
2039
|
-
|
2040
|
-
|
2084
|
+
authentication_type: Optional[MicrosoftCalendarAuthenticationTypes] = Field(
|
2085
|
+
alias="authenticationType", default=None
|
2086
|
+
)
|
2087
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2088
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2089
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2090
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2041
2091
|
|
2042
2092
|
|
2043
2093
|
class MedicalConditionFacetInput(BaseModel):
|
@@ -2048,6 +2098,11 @@ class MedicalConditionFacetInput(BaseModel):
|
|
2048
2098
|
facet: Optional[MedicalConditionFacetTypes] = None
|
2049
2099
|
|
2050
2100
|
|
2101
|
+
class DiscordChannelsInput(BaseModel):
|
2102
|
+
token: str
|
2103
|
+
guild_id: str = Field(alias="guildId")
|
2104
|
+
|
2105
|
+
|
2051
2106
|
class SpecificationInput(BaseModel):
|
2052
2107
|
name: str
|
2053
2108
|
type: Optional[SpecificationTypes] = None
|
@@ -2105,9 +2160,13 @@ class GoogleEmailFeedPropertiesUpdateInput(BaseModel):
|
|
2105
2160
|
)
|
2106
2161
|
exclude_sent_items: Optional[bool] = Field(alias="excludeSentItems", default=None)
|
2107
2162
|
include_spam: Optional[bool] = Field(alias="includeSpam", default=None)
|
2163
|
+
authentication_type: Optional[GoogleEmailAuthenticationTypes] = Field(
|
2164
|
+
alias="authenticationType", default=None
|
2165
|
+
)
|
2108
2166
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2109
2167
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2110
2168
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2169
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2111
2170
|
|
2112
2171
|
|
2113
2172
|
class ZendeskFeedPropertiesInput(BaseModel):
|
@@ -2132,18 +2191,26 @@ class CategoryFilter(BaseModel):
|
|
2132
2191
|
|
2133
2192
|
|
2134
2193
|
class GoogleCalendarFeedPropertiesUpdateInput(BaseModel):
|
2135
|
-
|
2136
|
-
|
2137
|
-
|
2194
|
+
authentication_type: Optional[GoogleCalendarAuthenticationTypes] = Field(
|
2195
|
+
alias="authenticationType", default=None
|
2196
|
+
)
|
2197
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2198
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2199
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2200
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2138
2201
|
|
2139
2202
|
|
2140
2203
|
class GoogleCalendarFeedPropertiesInput(BaseModel):
|
2141
2204
|
calendar_id: Optional[str] = Field(alias="calendarId", default=None)
|
2142
2205
|
before_date: Optional[Any] = Field(alias="beforeDate", default=None)
|
2143
2206
|
after_date: Optional[Any] = Field(alias="afterDate", default=None)
|
2144
|
-
|
2145
|
-
|
2146
|
-
|
2207
|
+
authentication_type: Optional[GoogleCalendarAuthenticationTypes] = Field(
|
2208
|
+
alias="authenticationType", default=None
|
2209
|
+
)
|
2210
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2211
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2212
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2213
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2147
2214
|
|
2148
2215
|
|
2149
2216
|
class LabelUpdateInput(BaseModel):
|
@@ -2265,9 +2332,13 @@ class MicrosoftCalendarFeedPropertiesInput(BaseModel):
|
|
2265
2332
|
calendar_id: Optional[str] = Field(alias="calendarId", default=None)
|
2266
2333
|
before_date: Optional[Any] = Field(alias="beforeDate", default=None)
|
2267
2334
|
after_date: Optional[Any] = Field(alias="afterDate", default=None)
|
2268
|
-
|
2269
|
-
|
2270
|
-
|
2335
|
+
authentication_type: Optional[MicrosoftCalendarAuthenticationTypes] = Field(
|
2336
|
+
alias="authenticationType", default=None
|
2337
|
+
)
|
2338
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2339
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2340
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2341
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2271
2342
|
|
2272
2343
|
|
2273
2344
|
class PlaceInput(BaseModel):
|
@@ -2343,6 +2414,7 @@ class AuthenticationConnectorInput(BaseModel):
|
|
2343
2414
|
type: AuthenticationServiceTypes
|
2344
2415
|
microsoft: Optional["MicrosoftAuthenticationPropertiesInput"] = None
|
2345
2416
|
google: Optional["GoogleAuthenticationPropertiesInput"] = None
|
2417
|
+
arcade: Optional["ArcadeAuthenticationPropertiesInput"] = None
|
2346
2418
|
|
2347
2419
|
|
2348
2420
|
class MicrosoftEmailFeedPropertiesInput(BaseModel):
|
@@ -2353,9 +2425,13 @@ class MicrosoftEmailFeedPropertiesInput(BaseModel):
|
|
2353
2425
|
)
|
2354
2426
|
exclude_sent_items: Optional[bool] = Field(alias="excludeSentItems", default=None)
|
2355
2427
|
include_spam: Optional[bool] = Field(alias="includeSpam", default=None)
|
2356
|
-
|
2357
|
-
|
2358
|
-
|
2428
|
+
authentication_type: Optional[MicrosoftEmailAuthenticationTypes] = Field(
|
2429
|
+
alias="authenticationType", default=None
|
2430
|
+
)
|
2431
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2432
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2433
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2434
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2359
2435
|
|
2360
2436
|
|
2361
2437
|
class MicrosoftTeamsFeedPropertiesUpdateInput(BaseModel):
|
@@ -2407,6 +2483,22 @@ class ConnectorFilter(BaseModel):
|
|
2407
2483
|
types: Optional[List[ConnectorTypes]] = None
|
2408
2484
|
|
2409
2485
|
|
2486
|
+
class ViewFilter(BaseModel):
|
2487
|
+
search: Optional[str] = None
|
2488
|
+
order_by: Optional[OrderByTypes] = Field(alias="orderBy", default=None)
|
2489
|
+
direction: Optional[OrderDirectionTypes] = None
|
2490
|
+
offset: Optional[int] = None
|
2491
|
+
limit: Optional[int] = None
|
2492
|
+
id: Optional[str] = None
|
2493
|
+
name: Optional[str] = None
|
2494
|
+
states: Optional[List[EntityState]] = None
|
2495
|
+
created_in_last: Optional[Any] = Field(alias="createdInLast", default=None)
|
2496
|
+
creation_date_range: Optional["DateRangeFilter"] = Field(
|
2497
|
+
alias="creationDateRange", default=None
|
2498
|
+
)
|
2499
|
+
types: Optional[List[Optional[ViewTypes]]] = None
|
2500
|
+
|
2501
|
+
|
2410
2502
|
class MedicalContraindicationFilter(BaseModel):
|
2411
2503
|
search: Optional[str] = None
|
2412
2504
|
order_by: Optional[OrderByTypes] = Field(alias="orderBy", default=None)
|
@@ -2474,11 +2566,15 @@ class CalendarReminderInput(BaseModel):
|
|
2474
2566
|
|
2475
2567
|
|
2476
2568
|
class OneDriveFeedPropertiesInput(BaseModel):
|
2569
|
+
authentication_type: Optional[OneDriveAuthenticationTypes] = Field(
|
2570
|
+
alias="authenticationType", default=None
|
2571
|
+
)
|
2477
2572
|
files: Optional[List[Optional[str]]] = None
|
2478
2573
|
folder_id: Optional[str] = Field(alias="folderId", default=None)
|
2479
|
-
client_id: str = Field(alias="clientId")
|
2480
|
-
client_secret: str = Field(alias="clientSecret")
|
2481
|
-
refresh_token: str = Field(alias="refreshToken")
|
2574
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
2575
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
2576
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
2577
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2482
2578
|
|
2483
2579
|
|
2484
2580
|
class GoogleDriveFoldersInput(BaseModel):
|
@@ -2739,6 +2835,15 @@ class SearchFeedPropertiesUpdateInput(BaseModel):
|
|
2739
2835
|
read_limit: Optional[int] = Field(alias="readLimit", default=None)
|
2740
2836
|
|
2741
2837
|
|
2838
|
+
class ViewInput(BaseModel):
|
2839
|
+
name: str
|
2840
|
+
type: Optional[ViewTypes] = None
|
2841
|
+
filter: Optional["ContentCriteriaInput"] = None
|
2842
|
+
augmented_filter: Optional["ContentCriteriaInput"] = Field(
|
2843
|
+
alias="augmentedFilter", default=None
|
2844
|
+
)
|
2845
|
+
|
2846
|
+
|
2742
2847
|
class MedicalProcedureFilter(BaseModel):
|
2743
2848
|
search: Optional[str] = None
|
2744
2849
|
order_by: Optional[OrderByTypes] = Field(alias="orderBy", default=None)
|
@@ -2899,6 +3004,7 @@ class GoogleDriveFeedPropertiesInput(BaseModel):
|
|
2899
3004
|
service_account_json: Optional[str] = Field(
|
2900
3005
|
alias="serviceAccountJson", default=None
|
2901
3006
|
)
|
3007
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2902
3008
|
|
2903
3009
|
|
2904
3010
|
class EmailFeedPropertiesUpdateInput(BaseModel):
|
@@ -2945,6 +3051,9 @@ class EntityReferenceInput(BaseModel):
|
|
2945
3051
|
|
2946
3052
|
|
2947
3053
|
class GitHubIssuesFeedPropertiesInput(BaseModel):
|
3054
|
+
authentication_type: Optional[GitHubIssueAuthenticationTypes] = Field(
|
3055
|
+
alias="authenticationType", default=None
|
3056
|
+
)
|
2948
3057
|
repository_owner: str = Field(alias="repositoryOwner")
|
2949
3058
|
repository_name: str = Field(alias="repositoryName")
|
2950
3059
|
uri: Optional[Any] = None
|
@@ -2952,6 +3061,7 @@ class GitHubIssuesFeedPropertiesInput(BaseModel):
|
|
2952
3061
|
personal_access_token: Optional[str] = Field(
|
2953
3062
|
alias="personalAccessToken", default=None
|
2954
3063
|
)
|
3064
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
2955
3065
|
|
2956
3066
|
|
2957
3067
|
class PointInput(BaseModel):
|
@@ -3018,11 +3128,15 @@ class MedicalGuidelineFacetInput(BaseModel):
|
|
3018
3128
|
|
3019
3129
|
|
3020
3130
|
class OneDriveFeedPropertiesUpdateInput(BaseModel):
|
3131
|
+
authentication_type: Optional[OneDriveAuthenticationTypes] = Field(
|
3132
|
+
alias="authenticationType", default=None
|
3133
|
+
)
|
3021
3134
|
files: Optional[List[Optional[str]]] = None
|
3022
3135
|
folder_id: Optional[str] = Field(alias="folderId", default=None)
|
3023
3136
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
3024
3137
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
3025
3138
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
3139
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
3026
3140
|
|
3027
3141
|
|
3028
3142
|
class ProjectFilter(BaseModel):
|
@@ -3434,6 +3548,7 @@ class SharePointFeedPropertiesInput(BaseModel):
|
|
3434
3548
|
client_id: Optional[str] = Field(alias="clientId", default=None)
|
3435
3549
|
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
3436
3550
|
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
3551
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
3437
3552
|
account_name: str = Field(alias="accountName")
|
3438
3553
|
library_id: str = Field(alias="libraryId")
|
3439
3554
|
folder_id: Optional[str] = Field(alias="folderId", default=None)
|
@@ -3575,9 +3690,13 @@ class GoogleEmailFeedPropertiesInput(BaseModel):
|
|
3575
3690
|
)
|
3576
3691
|
exclude_sent_items: Optional[bool] = Field(alias="excludeSentItems", default=None)
|
3577
3692
|
include_spam: Optional[bool] = Field(alias="includeSpam", default=None)
|
3578
|
-
|
3579
|
-
|
3580
|
-
|
3693
|
+
authentication_type: Optional[GoogleEmailAuthenticationTypes] = Field(
|
3694
|
+
alias="authenticationType", default=None
|
3695
|
+
)
|
3696
|
+
refresh_token: Optional[str] = Field(alias="refreshToken", default=None)
|
3697
|
+
client_id: Optional[str] = Field(alias="clientId", default=None)
|
3698
|
+
client_secret: Optional[str] = Field(alias="clientSecret", default=None)
|
3699
|
+
connector_id: Optional[str] = Field(alias="connectorId", default=None)
|
3581
3700
|
|
3582
3701
|
|
3583
3702
|
class EventFacetInput(BaseModel):
|
@@ -3894,6 +4013,7 @@ IngestionWorkflowStageInput.model_rebuild()
|
|
3894
4013
|
IndexingWorkflowStageInput.model_rebuild()
|
3895
4014
|
EventMetadataInput.model_rebuild()
|
3896
4015
|
SiteFeedPropertiesUpdateInput.model_rebuild()
|
4016
|
+
ViewUpdateInput.model_rebuild()
|
3897
4017
|
ConversationInput.model_rebuild()
|
3898
4018
|
OpenAIImagePublishingPropertiesInput.model_rebuild()
|
3899
4019
|
EnrichmentWorkflowStageInput.model_rebuild()
|
@@ -3929,6 +4049,7 @@ CollectionInput.model_rebuild()
|
|
3929
4049
|
SoftwareFilter.model_rebuild()
|
3930
4050
|
AuthenticationConnectorInput.model_rebuild()
|
3931
4051
|
ConnectorFilter.model_rebuild()
|
4052
|
+
ViewFilter.model_rebuild()
|
3932
4053
|
MedicalContraindicationFilter.model_rebuild()
|
3933
4054
|
ContentFilterLevel.model_rebuild()
|
3934
4055
|
RegexContentClassificationPropertiesInput.model_rebuild()
|
@@ -3944,6 +4065,7 @@ CollectionUpdateInput.model_rebuild()
|
|
3944
4065
|
MedicalTestUpdateInput.model_rebuild()
|
3945
4066
|
IndexingWorkflowJobInput.model_rebuild()
|
3946
4067
|
ContentPublishingConnectorUpdateInput.model_rebuild()
|
4068
|
+
ViewInput.model_rebuild()
|
3947
4069
|
MedicalProcedureFilter.model_rebuild()
|
3948
4070
|
MedicalDeviceFilter.model_rebuild()
|
3949
4071
|
SpecificationUpdateInput.model_rebuild()
|