fathom-python 0.0.34__py3-none-any.whl → 0.0.35__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.
- fathom_python/_version.py +2 -2
- fathom_python/models/listmeetingsop.py +8 -0
- fathom_python/sdk.py +8 -0
- {fathom_python-0.0.34.dist-info → fathom_python-0.0.35.dist-info}/METADATA +9 -9
- {fathom_python-0.0.34.dist-info → fathom_python-0.0.35.dist-info}/RECORD +6 -6
- {fathom_python-0.0.34.dist-info → fathom_python-0.0.35.dist-info}/WHEEL +0 -0
fathom_python/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "fathom-python"
|
|
6
|
-
__version__: str = "0.0.
|
|
6
|
+
__version__: str = "0.0.35"
|
|
7
7
|
__openapi_doc_version__: str = "1.0.0"
|
|
8
8
|
__gen_version__: str = "2.716.16"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.0.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.0.35 2.716.16 1.0.0 fathom-python"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -54,6 +54,8 @@ class ListMeetingsRequestTypedDict(TypedDict):
|
|
|
54
54
|
r"""Filter to meetings with created_at before this timestamp, e.g. `created_before=2025-01-01T00:00:00Z`."""
|
|
55
55
|
cursor: NotRequired[str]
|
|
56
56
|
r"""Cursor for pagination."""
|
|
57
|
+
include_action_items: NotRequired[bool]
|
|
58
|
+
r"""Include the action items for each meeting."""
|
|
57
59
|
include_crm_matches: NotRequired[bool]
|
|
58
60
|
r"""Include CRM matches for each meeting. Only returns data from your or your team's linked CRM."""
|
|
59
61
|
include_summary: NotRequired[bool]
|
|
@@ -136,6 +138,12 @@ class ListMeetingsRequest(BaseModel):
|
|
|
136
138
|
] = None
|
|
137
139
|
r"""Cursor for pagination."""
|
|
138
140
|
|
|
141
|
+
include_action_items: Annotated[
|
|
142
|
+
Optional[bool],
|
|
143
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
144
|
+
] = False
|
|
145
|
+
r"""Include the action items for each meeting."""
|
|
146
|
+
|
|
139
147
|
include_crm_matches: Annotated[
|
|
140
148
|
Optional[bool],
|
|
141
149
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
fathom_python/sdk.py
CHANGED
|
@@ -274,6 +274,7 @@ class Fathom(BaseSDK):
|
|
|
274
274
|
created_after: Optional[str] = None,
|
|
275
275
|
created_before: Optional[str] = None,
|
|
276
276
|
cursor: Optional[str] = None,
|
|
277
|
+
include_action_items: Optional[bool] = False,
|
|
277
278
|
include_crm_matches: Optional[bool] = False,
|
|
278
279
|
include_summary: Optional[bool] = False,
|
|
279
280
|
include_transcript: Optional[bool] = False,
|
|
@@ -293,6 +294,7 @@ class Fathom(BaseSDK):
|
|
|
293
294
|
:param created_after: Filter to meetings with created_at after this timestamp, e.g. `created_after=2025-01-01T00:00:00Z`.
|
|
294
295
|
:param created_before: Filter to meetings with created_at before this timestamp, e.g. `created_before=2025-01-01T00:00:00Z`.
|
|
295
296
|
:param cursor: Cursor for pagination.
|
|
297
|
+
:param include_action_items: Include the action items for each meeting.
|
|
296
298
|
:param include_crm_matches: Include CRM matches for each meeting. Only returns data from your or your team's linked CRM.
|
|
297
299
|
:param include_summary: Include the summary for each meeting. Unavailable for OAuth connected apps (use /recordings instead).
|
|
298
300
|
:param include_transcript: Include the transcript for each meeting. Unavailable for OAuth connected apps (use /recordings instead).
|
|
@@ -321,6 +323,7 @@ class Fathom(BaseSDK):
|
|
|
321
323
|
created_after=created_after,
|
|
322
324
|
created_before=created_before,
|
|
323
325
|
cursor=cursor,
|
|
326
|
+
include_action_items=include_action_items,
|
|
324
327
|
include_crm_matches=include_crm_matches,
|
|
325
328
|
include_summary=include_summary,
|
|
326
329
|
include_transcript=include_transcript,
|
|
@@ -386,6 +389,7 @@ class Fathom(BaseSDK):
|
|
|
386
389
|
created_after=created_after,
|
|
387
390
|
created_before=created_before,
|
|
388
391
|
cursor=next_cursor,
|
|
392
|
+
include_action_items=include_action_items,
|
|
389
393
|
include_crm_matches=include_crm_matches,
|
|
390
394
|
include_summary=include_summary,
|
|
391
395
|
include_transcript=include_transcript,
|
|
@@ -420,6 +424,7 @@ class Fathom(BaseSDK):
|
|
|
420
424
|
created_after: Optional[str] = None,
|
|
421
425
|
created_before: Optional[str] = None,
|
|
422
426
|
cursor: Optional[str] = None,
|
|
427
|
+
include_action_items: Optional[bool] = False,
|
|
423
428
|
include_crm_matches: Optional[bool] = False,
|
|
424
429
|
include_summary: Optional[bool] = False,
|
|
425
430
|
include_transcript: Optional[bool] = False,
|
|
@@ -439,6 +444,7 @@ class Fathom(BaseSDK):
|
|
|
439
444
|
:param created_after: Filter to meetings with created_at after this timestamp, e.g. `created_after=2025-01-01T00:00:00Z`.
|
|
440
445
|
:param created_before: Filter to meetings with created_at before this timestamp, e.g. `created_before=2025-01-01T00:00:00Z`.
|
|
441
446
|
:param cursor: Cursor for pagination.
|
|
447
|
+
:param include_action_items: Include the action items for each meeting.
|
|
442
448
|
:param include_crm_matches: Include CRM matches for each meeting. Only returns data from your or your team's linked CRM.
|
|
443
449
|
:param include_summary: Include the summary for each meeting. Unavailable for OAuth connected apps (use /recordings instead).
|
|
444
450
|
:param include_transcript: Include the transcript for each meeting. Unavailable for OAuth connected apps (use /recordings instead).
|
|
@@ -467,6 +473,7 @@ class Fathom(BaseSDK):
|
|
|
467
473
|
created_after=created_after,
|
|
468
474
|
created_before=created_before,
|
|
469
475
|
cursor=cursor,
|
|
476
|
+
include_action_items=include_action_items,
|
|
470
477
|
include_crm_matches=include_crm_matches,
|
|
471
478
|
include_summary=include_summary,
|
|
472
479
|
include_transcript=include_transcript,
|
|
@@ -532,6 +539,7 @@ class Fathom(BaseSDK):
|
|
|
532
539
|
created_after=created_after,
|
|
533
540
|
created_before=created_before,
|
|
534
541
|
cursor=next_cursor,
|
|
542
|
+
include_action_items=include_action_items,
|
|
535
543
|
include_crm_matches=include_crm_matches,
|
|
536
544
|
include_summary=include_summary,
|
|
537
545
|
include_transcript=include_transcript,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: fathom-python
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.35
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -126,7 +126,7 @@ with Fathom(
|
|
|
126
126
|
], calendar_invitees_domains=[
|
|
127
127
|
"acme.com",
|
|
128
128
|
"client.com",
|
|
129
|
-
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
129
|
+
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
130
130
|
"ceo@acme.com",
|
|
131
131
|
"pm@acme.com",
|
|
132
132
|
], teams=[
|
|
@@ -164,7 +164,7 @@ async def main():
|
|
|
164
164
|
], calendar_invitees_domains=[
|
|
165
165
|
"acme.com",
|
|
166
166
|
"client.com",
|
|
167
|
-
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
167
|
+
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
168
168
|
"ceo@acme.com",
|
|
169
169
|
"pm@acme.com",
|
|
170
170
|
], teams=[
|
|
@@ -211,7 +211,7 @@ with Fathom(
|
|
|
211
211
|
], calendar_invitees_domains=[
|
|
212
212
|
"acme.com",
|
|
213
213
|
"client.com",
|
|
214
|
-
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
214
|
+
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
215
215
|
"ceo@acme.com",
|
|
216
216
|
"pm@acme.com",
|
|
217
217
|
], teams=[
|
|
@@ -271,7 +271,7 @@ with Fathom(
|
|
|
271
271
|
], calendar_invitees_domains=[
|
|
272
272
|
"acme.com",
|
|
273
273
|
"client.com",
|
|
274
|
-
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
274
|
+
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
275
275
|
"ceo@acme.com",
|
|
276
276
|
"pm@acme.com",
|
|
277
277
|
], teams=[
|
|
@@ -311,7 +311,7 @@ with Fathom(
|
|
|
311
311
|
], calendar_invitees_domains=[
|
|
312
312
|
"acme.com",
|
|
313
313
|
"client.com",
|
|
314
|
-
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
314
|
+
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
315
315
|
"ceo@acme.com",
|
|
316
316
|
"pm@acme.com",
|
|
317
317
|
], teams=[
|
|
@@ -347,7 +347,7 @@ with Fathom(
|
|
|
347
347
|
], calendar_invitees_domains=[
|
|
348
348
|
"acme.com",
|
|
349
349
|
"client.com",
|
|
350
|
-
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
350
|
+
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
351
351
|
"ceo@acme.com",
|
|
352
352
|
"pm@acme.com",
|
|
353
353
|
], teams=[
|
|
@@ -396,7 +396,7 @@ with Fathom(
|
|
|
396
396
|
], calendar_invitees_domains=[
|
|
397
397
|
"acme.com",
|
|
398
398
|
"client.com",
|
|
399
|
-
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
399
|
+
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
400
400
|
"ceo@acme.com",
|
|
401
401
|
"pm@acme.com",
|
|
402
402
|
], teams=[
|
|
@@ -464,7 +464,7 @@ with Fathom(
|
|
|
464
464
|
], calendar_invitees_domains=[
|
|
465
465
|
"acme.com",
|
|
466
466
|
"client.com",
|
|
467
|
-
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
467
|
+
], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
|
|
468
468
|
"ceo@acme.com",
|
|
469
469
|
"pm@acme.com",
|
|
470
470
|
], teams=[
|
|
@@ -3,7 +3,7 @@ fathom_python/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_Ue
|
|
|
3
3
|
fathom_python/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
|
4
4
|
fathom_python/_hooks/sdkhooks.py,sha256=SyxWCUZakr1ZlORVhbgZJ-xM5W4QvTTS4Mymtte2LrI,2530
|
|
5
5
|
fathom_python/_hooks/types.py,sha256=OOkf6lkat8zumtftMupq5qK6pigExGTdcBF38RyT_gU,2992
|
|
6
|
-
fathom_python/_version.py,sha256=
|
|
6
|
+
fathom_python/_version.py,sha256=LdSZtCM3m_Lp8jF8lPd6PQRjnrry_5gvzLs89RcEUfA,472
|
|
7
7
|
fathom_python/basesdk.py,sha256=HzY3rWonhPH0RZoEfNyWHy9q_eIvEfsVaf1jIMUGHhQ,12214
|
|
8
8
|
fathom_python/errors/__init__.py,sha256=4aL9LIze2oNNs_l3aHDAu2HvD8EB0sMFfA9ikL53Lk4,1818
|
|
9
9
|
fathom_python/errors/apierror.py,sha256=a7BEYi8Bh46jnAALCrTFnavGXRqpaOOISPdBWBLgax8,1283
|
|
@@ -25,7 +25,7 @@ fathom_python/models/fathomuser.py,sha256=qwGGC5H-Dp2rmOa6THVcVfykXWABrFpn2oYDTY
|
|
|
25
25
|
fathom_python/models/getrecordingsummaryop.py,sha256=buQ5qW4BRCU2buQ92rWqeiJ7ETNXOIsHyf8vMEiJMY4,3018
|
|
26
26
|
fathom_python/models/getrecordingtranscriptop.py,sha256=JVv9N40odOPlw25prIgncqfkrpCQj7TerZ4yXry5oKY,2043
|
|
27
27
|
fathom_python/models/invitee.py,sha256=DwyAGSStoB4VEgg8MtTHQyGeRr7mgGyJT0-aHrZoN9Q,1829
|
|
28
|
-
fathom_python/models/listmeetingsop.py,sha256=
|
|
28
|
+
fathom_python/models/listmeetingsop.py,sha256=T5QfI_hM5W0yzbH8-OJFR24hACHuYuJZEDzzF4FS4ug,7634
|
|
29
29
|
fathom_python/models/listteammembersop.py,sha256=Rtatvg_ZZZuAo95s7I6blWn_DEKXKug5-le7EyxKgVc,1218
|
|
30
30
|
fathom_python/models/listteamsop.py,sha256=fjGGOkZed83n-MK6S7eYSinqUyeFNZ5dnJ7Tj-wY3nA,913
|
|
31
31
|
fathom_python/models/meeting.py,sha256=Z5okXnQmFNf5H2dxJ8I_mdFmVyDItTq14AsYJ-LkVCk,3966
|
|
@@ -40,7 +40,7 @@ fathom_python/models/transcriptitem.py,sha256=pGg4S32z86vBu0eaSLK1Tf1TvvvTZj10nJ
|
|
|
40
40
|
fathom_python/models/transcriptitemspeaker.py,sha256=GFF9PKJtf0aHaB8x8dievopoT43JUIcOAj70oFi5ilE,547
|
|
41
41
|
fathom_python/models/webhook.py,sha256=ekDvnrsaSU-AvUDA8tFz1SPi18Za6NbWcMTQP2k5wPI,1300
|
|
42
42
|
fathom_python/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
43
|
-
fathom_python/sdk.py,sha256=
|
|
43
|
+
fathom_python/sdk.py,sha256=Awbe791PWKvWwtr1GBcMJ-xJS7cWOZJItqF6KKdjNWk,72546
|
|
44
44
|
fathom_python/sdkconfiguration.py,sha256=s06HLCZA48IdYWZd8E9q8AK7WazaxybG7ZdqoWF-e7s,1586
|
|
45
45
|
fathom_python/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
46
46
|
fathom_python/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
|
@@ -61,6 +61,6 @@ fathom_python/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R-0
|
|
|
61
61
|
fathom_python/utils/unmarshal_json_response.py,sha256=M1-rdgF0E7flFEKlOODnhlvvrvpdnD-ZF_E31FgEWVA,589
|
|
62
62
|
fathom_python/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
63
63
|
fathom_python/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
64
|
-
fathom_python-0.0.
|
|
65
|
-
fathom_python-0.0.
|
|
66
|
-
fathom_python-0.0.
|
|
64
|
+
fathom_python-0.0.35.dist-info/METADATA,sha256=wpx9jRqN6Fm20tekKiEDdWk_SbMBhG1rl2ynbjTxuDE,20716
|
|
65
|
+
fathom_python-0.0.35.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
66
|
+
fathom_python-0.0.35.dist-info/RECORD,,
|
|
File without changes
|