fathom-python 0.0.26__py3-none-any.whl → 0.0.27__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/base_client.py +42 -2
- fathom/core/client_wrapper.py +2 -2
- fathom/raw_base_client.py +48 -2
- fathom/types/crm_deal_match.py +5 -1
- fathom/types/crm_matches.py +1 -1
- fathom/types/meeting.py +2 -2
- {fathom_python-0.0.26.dist-info → fathom_python-0.0.27.dist-info}/METADATA +1 -1
- {fathom_python-0.0.26.dist-info → fathom_python-0.0.27.dist-info}/RECORD +9 -9
- {fathom_python-0.0.26.dist-info → fathom_python-0.0.27.dist-info}/WHEEL +0 -0
fathom/base_client.py
CHANGED
|
@@ -88,9 +88,12 @@ class BaseClient:
|
|
|
88
88
|
recorded_by: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
89
89
|
teams: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
90
90
|
calendar_invitees: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
91
|
+
created_before: typing.Optional[str] = None,
|
|
91
92
|
created_after: typing.Optional[str] = None,
|
|
93
|
+
calendar_invitees_domains: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
92
94
|
meeting_type: typing.Optional[ListMeetingsRequestMeetingType] = None,
|
|
93
95
|
include_transcript: typing.Optional[bool] = None,
|
|
96
|
+
include_crm_matches: typing.Optional[bool] = None,
|
|
94
97
|
cursor: typing.Optional[str] = None,
|
|
95
98
|
request_options: typing.Optional[RequestOptions] = None,
|
|
96
99
|
) -> SyncPager[Meeting]:
|
|
@@ -114,7 +117,7 @@ class BaseClient:
|
|
|
114
117
|
Returns meetings that belong to any of the specified teams.
|
|
115
118
|
|
|
116
119
|
calendar_invitees : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
117
|
-
Email
|
|
120
|
+
Email address of calendar_invitees to filter by.
|
|
118
121
|
|
|
119
122
|
Pass the parameter once per value, e.g.
|
|
120
123
|
`calendar_invitees[]=cfo@acme.com&calendar_invitees[]=legal@acme.com`.
|
|
@@ -122,15 +125,29 @@ class BaseClient:
|
|
|
122
125
|
Returns meetings where any of the given email addresses appear
|
|
123
126
|
in the calendar_invitees list.
|
|
124
127
|
|
|
128
|
+
created_before : typing.Optional[str]
|
|
129
|
+
Filter to meetings with created_at before this timestamp, e.g. `created_before=2025-01-01T00:00:00Z`.
|
|
130
|
+
|
|
125
131
|
created_after : typing.Optional[str]
|
|
126
132
|
Filter to meetings with created_at after this timestamp, e.g. `created_after=2025-01-01T00:00:00Z`.
|
|
127
133
|
|
|
134
|
+
calendar_invitees_domains : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
135
|
+
Domains of the companies to filter by. Exact match.
|
|
136
|
+
|
|
137
|
+
Pass the parameter once per value, e.g.
|
|
138
|
+
`calendar_invitees_domains[]=acme.com&calendar_invitees_domains[]=client.com`.
|
|
139
|
+
|
|
140
|
+
Returns meetings where any of the given company domains appear in the meeting.
|
|
141
|
+
|
|
128
142
|
meeting_type : typing.Optional[ListMeetingsRequestMeetingType]
|
|
129
143
|
Filter by meeting type.
|
|
130
144
|
|
|
131
145
|
include_transcript : typing.Optional[bool]
|
|
132
146
|
Include the transcript for each meeting.
|
|
133
147
|
|
|
148
|
+
include_crm_matches : typing.Optional[bool]
|
|
149
|
+
Include CRM matches for each meeting. Only returns data from your or your team's linked CRM.
|
|
150
|
+
|
|
134
151
|
cursor : typing.Optional[str]
|
|
135
152
|
Cursor for pagination.
|
|
136
153
|
|
|
@@ -157,9 +174,12 @@ class BaseClient:
|
|
|
157
174
|
recorded_by=recorded_by,
|
|
158
175
|
teams=teams,
|
|
159
176
|
calendar_invitees=calendar_invitees,
|
|
177
|
+
created_before=created_before,
|
|
160
178
|
created_after=created_after,
|
|
179
|
+
calendar_invitees_domains=calendar_invitees_domains,
|
|
161
180
|
meeting_type=meeting_type,
|
|
162
181
|
include_transcript=include_transcript,
|
|
182
|
+
include_crm_matches=include_crm_matches,
|
|
163
183
|
cursor=cursor,
|
|
164
184
|
request_options=request_options,
|
|
165
185
|
)
|
|
@@ -306,9 +326,12 @@ class AsyncBaseClient:
|
|
|
306
326
|
recorded_by: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
307
327
|
teams: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
308
328
|
calendar_invitees: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
329
|
+
created_before: typing.Optional[str] = None,
|
|
309
330
|
created_after: typing.Optional[str] = None,
|
|
331
|
+
calendar_invitees_domains: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
310
332
|
meeting_type: typing.Optional[ListMeetingsRequestMeetingType] = None,
|
|
311
333
|
include_transcript: typing.Optional[bool] = None,
|
|
334
|
+
include_crm_matches: typing.Optional[bool] = None,
|
|
312
335
|
cursor: typing.Optional[str] = None,
|
|
313
336
|
request_options: typing.Optional[RequestOptions] = None,
|
|
314
337
|
) -> AsyncPager[Meeting]:
|
|
@@ -332,7 +355,7 @@ class AsyncBaseClient:
|
|
|
332
355
|
Returns meetings that belong to any of the specified teams.
|
|
333
356
|
|
|
334
357
|
calendar_invitees : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
335
|
-
Email
|
|
358
|
+
Email address of calendar_invitees to filter by.
|
|
336
359
|
|
|
337
360
|
Pass the parameter once per value, e.g.
|
|
338
361
|
`calendar_invitees[]=cfo@acme.com&calendar_invitees[]=legal@acme.com`.
|
|
@@ -340,15 +363,29 @@ class AsyncBaseClient:
|
|
|
340
363
|
Returns meetings where any of the given email addresses appear
|
|
341
364
|
in the calendar_invitees list.
|
|
342
365
|
|
|
366
|
+
created_before : typing.Optional[str]
|
|
367
|
+
Filter to meetings with created_at before this timestamp, e.g. `created_before=2025-01-01T00:00:00Z`.
|
|
368
|
+
|
|
343
369
|
created_after : typing.Optional[str]
|
|
344
370
|
Filter to meetings with created_at after this timestamp, e.g. `created_after=2025-01-01T00:00:00Z`.
|
|
345
371
|
|
|
372
|
+
calendar_invitees_domains : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
373
|
+
Domains of the companies to filter by. Exact match.
|
|
374
|
+
|
|
375
|
+
Pass the parameter once per value, e.g.
|
|
376
|
+
`calendar_invitees_domains[]=acme.com&calendar_invitees_domains[]=client.com`.
|
|
377
|
+
|
|
378
|
+
Returns meetings where any of the given company domains appear in the meeting.
|
|
379
|
+
|
|
346
380
|
meeting_type : typing.Optional[ListMeetingsRequestMeetingType]
|
|
347
381
|
Filter by meeting type.
|
|
348
382
|
|
|
349
383
|
include_transcript : typing.Optional[bool]
|
|
350
384
|
Include the transcript for each meeting.
|
|
351
385
|
|
|
386
|
+
include_crm_matches : typing.Optional[bool]
|
|
387
|
+
Include CRM matches for each meeting. Only returns data from your or your team's linked CRM.
|
|
388
|
+
|
|
352
389
|
cursor : typing.Optional[str]
|
|
353
390
|
Cursor for pagination.
|
|
354
391
|
|
|
@@ -379,9 +416,12 @@ class AsyncBaseClient:
|
|
|
379
416
|
recorded_by=recorded_by,
|
|
380
417
|
teams=teams,
|
|
381
418
|
calendar_invitees=calendar_invitees,
|
|
419
|
+
created_before=created_before,
|
|
382
420
|
created_after=created_after,
|
|
421
|
+
calendar_invitees_domains=calendar_invitees_domains,
|
|
383
422
|
meeting_type=meeting_type,
|
|
384
423
|
include_transcript=include_transcript,
|
|
424
|
+
include_crm_matches=include_crm_matches,
|
|
385
425
|
cursor=cursor,
|
|
386
426
|
request_options=request_options,
|
|
387
427
|
)
|
fathom/core/client_wrapper.py
CHANGED
|
@@ -14,10 +14,10 @@ class BaseClientWrapper:
|
|
|
14
14
|
|
|
15
15
|
def get_headers(self) -> typing.Dict[str, str]:
|
|
16
16
|
headers: typing.Dict[str, str] = {
|
|
17
|
-
"User-Agent": "fathom-python/0.0.
|
|
17
|
+
"User-Agent": "fathom-python/0.0.27",
|
|
18
18
|
"X-Fern-Language": "Python",
|
|
19
19
|
"X-Fern-SDK-Name": "fathom-python",
|
|
20
|
-
"X-Fern-SDK-Version": "0.0.
|
|
20
|
+
"X-Fern-SDK-Version": "0.0.27",
|
|
21
21
|
}
|
|
22
22
|
headers["X-Api-Key"] = self.api_key
|
|
23
23
|
return headers
|
fathom/raw_base_client.py
CHANGED
|
@@ -29,9 +29,12 @@ class RawBaseClient:
|
|
|
29
29
|
recorded_by: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
30
30
|
teams: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
31
31
|
calendar_invitees: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
32
|
+
created_before: typing.Optional[str] = None,
|
|
32
33
|
created_after: typing.Optional[str] = None,
|
|
34
|
+
calendar_invitees_domains: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
33
35
|
meeting_type: typing.Optional[ListMeetingsRequestMeetingType] = None,
|
|
34
36
|
include_transcript: typing.Optional[bool] = None,
|
|
37
|
+
include_crm_matches: typing.Optional[bool] = None,
|
|
35
38
|
cursor: typing.Optional[str] = None,
|
|
36
39
|
request_options: typing.Optional[RequestOptions] = None,
|
|
37
40
|
) -> SyncPager[Meeting]:
|
|
@@ -55,7 +58,7 @@ class RawBaseClient:
|
|
|
55
58
|
Returns meetings that belong to any of the specified teams.
|
|
56
59
|
|
|
57
60
|
calendar_invitees : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
58
|
-
Email
|
|
61
|
+
Email address of calendar_invitees to filter by.
|
|
59
62
|
|
|
60
63
|
Pass the parameter once per value, e.g.
|
|
61
64
|
`calendar_invitees[]=cfo@acme.com&calendar_invitees[]=legal@acme.com`.
|
|
@@ -63,15 +66,29 @@ class RawBaseClient:
|
|
|
63
66
|
Returns meetings where any of the given email addresses appear
|
|
64
67
|
in the calendar_invitees list.
|
|
65
68
|
|
|
69
|
+
created_before : typing.Optional[str]
|
|
70
|
+
Filter to meetings with created_at before this timestamp, e.g. `created_before=2025-01-01T00:00:00Z`.
|
|
71
|
+
|
|
66
72
|
created_after : typing.Optional[str]
|
|
67
73
|
Filter to meetings with created_at after this timestamp, e.g. `created_after=2025-01-01T00:00:00Z`.
|
|
68
74
|
|
|
75
|
+
calendar_invitees_domains : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
76
|
+
Domains of the companies to filter by. Exact match.
|
|
77
|
+
|
|
78
|
+
Pass the parameter once per value, e.g.
|
|
79
|
+
`calendar_invitees_domains[]=acme.com&calendar_invitees_domains[]=client.com`.
|
|
80
|
+
|
|
81
|
+
Returns meetings where any of the given company domains appear in the meeting.
|
|
82
|
+
|
|
69
83
|
meeting_type : typing.Optional[ListMeetingsRequestMeetingType]
|
|
70
84
|
Filter by meeting type.
|
|
71
85
|
|
|
72
86
|
include_transcript : typing.Optional[bool]
|
|
73
87
|
Include the transcript for each meeting.
|
|
74
88
|
|
|
89
|
+
include_crm_matches : typing.Optional[bool]
|
|
90
|
+
Include CRM matches for each meeting. Only returns data from your or your team's linked CRM.
|
|
91
|
+
|
|
75
92
|
cursor : typing.Optional[str]
|
|
76
93
|
Cursor for pagination.
|
|
77
94
|
|
|
@@ -90,9 +107,12 @@ class RawBaseClient:
|
|
|
90
107
|
"recorded_by[]": recorded_by,
|
|
91
108
|
"teams[]": teams,
|
|
92
109
|
"calendar_invitees[]": calendar_invitees,
|
|
110
|
+
"created_before": created_before,
|
|
93
111
|
"created_after": created_after,
|
|
112
|
+
"calendar_invitees_domains[]": calendar_invitees_domains,
|
|
94
113
|
"meeting_type": meeting_type,
|
|
95
114
|
"include_transcript": include_transcript,
|
|
115
|
+
"include_crm_matches": include_crm_matches,
|
|
96
116
|
"cursor": cursor,
|
|
97
117
|
},
|
|
98
118
|
request_options=request_options,
|
|
@@ -113,9 +133,12 @@ class RawBaseClient:
|
|
|
113
133
|
recorded_by=recorded_by,
|
|
114
134
|
teams=teams,
|
|
115
135
|
calendar_invitees=calendar_invitees,
|
|
136
|
+
created_before=created_before,
|
|
116
137
|
created_after=created_after,
|
|
138
|
+
calendar_invitees_domains=calendar_invitees_domains,
|
|
117
139
|
meeting_type=meeting_type,
|
|
118
140
|
include_transcript=include_transcript,
|
|
141
|
+
include_crm_matches=include_crm_matches,
|
|
119
142
|
cursor=_parsed_next,
|
|
120
143
|
request_options=request_options,
|
|
121
144
|
)
|
|
@@ -311,9 +334,12 @@ class AsyncRawBaseClient:
|
|
|
311
334
|
recorded_by: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
312
335
|
teams: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
313
336
|
calendar_invitees: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
337
|
+
created_before: typing.Optional[str] = None,
|
|
314
338
|
created_after: typing.Optional[str] = None,
|
|
339
|
+
calendar_invitees_domains: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
315
340
|
meeting_type: typing.Optional[ListMeetingsRequestMeetingType] = None,
|
|
316
341
|
include_transcript: typing.Optional[bool] = None,
|
|
342
|
+
include_crm_matches: typing.Optional[bool] = None,
|
|
317
343
|
cursor: typing.Optional[str] = None,
|
|
318
344
|
request_options: typing.Optional[RequestOptions] = None,
|
|
319
345
|
) -> AsyncPager[Meeting]:
|
|
@@ -337,7 +363,7 @@ class AsyncRawBaseClient:
|
|
|
337
363
|
Returns meetings that belong to any of the specified teams.
|
|
338
364
|
|
|
339
365
|
calendar_invitees : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
340
|
-
Email
|
|
366
|
+
Email address of calendar_invitees to filter by.
|
|
341
367
|
|
|
342
368
|
Pass the parameter once per value, e.g.
|
|
343
369
|
`calendar_invitees[]=cfo@acme.com&calendar_invitees[]=legal@acme.com`.
|
|
@@ -345,15 +371,29 @@ class AsyncRawBaseClient:
|
|
|
345
371
|
Returns meetings where any of the given email addresses appear
|
|
346
372
|
in the calendar_invitees list.
|
|
347
373
|
|
|
374
|
+
created_before : typing.Optional[str]
|
|
375
|
+
Filter to meetings with created_at before this timestamp, e.g. `created_before=2025-01-01T00:00:00Z`.
|
|
376
|
+
|
|
348
377
|
created_after : typing.Optional[str]
|
|
349
378
|
Filter to meetings with created_at after this timestamp, e.g. `created_after=2025-01-01T00:00:00Z`.
|
|
350
379
|
|
|
380
|
+
calendar_invitees_domains : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
381
|
+
Domains of the companies to filter by. Exact match.
|
|
382
|
+
|
|
383
|
+
Pass the parameter once per value, e.g.
|
|
384
|
+
`calendar_invitees_domains[]=acme.com&calendar_invitees_domains[]=client.com`.
|
|
385
|
+
|
|
386
|
+
Returns meetings where any of the given company domains appear in the meeting.
|
|
387
|
+
|
|
351
388
|
meeting_type : typing.Optional[ListMeetingsRequestMeetingType]
|
|
352
389
|
Filter by meeting type.
|
|
353
390
|
|
|
354
391
|
include_transcript : typing.Optional[bool]
|
|
355
392
|
Include the transcript for each meeting.
|
|
356
393
|
|
|
394
|
+
include_crm_matches : typing.Optional[bool]
|
|
395
|
+
Include CRM matches for each meeting. Only returns data from your or your team's linked CRM.
|
|
396
|
+
|
|
357
397
|
cursor : typing.Optional[str]
|
|
358
398
|
Cursor for pagination.
|
|
359
399
|
|
|
@@ -372,9 +412,12 @@ class AsyncRawBaseClient:
|
|
|
372
412
|
"recorded_by[]": recorded_by,
|
|
373
413
|
"teams[]": teams,
|
|
374
414
|
"calendar_invitees[]": calendar_invitees,
|
|
415
|
+
"created_before": created_before,
|
|
375
416
|
"created_after": created_after,
|
|
417
|
+
"calendar_invitees_domains[]": calendar_invitees_domains,
|
|
376
418
|
"meeting_type": meeting_type,
|
|
377
419
|
"include_transcript": include_transcript,
|
|
420
|
+
"include_crm_matches": include_crm_matches,
|
|
378
421
|
"cursor": cursor,
|
|
379
422
|
},
|
|
380
423
|
request_options=request_options,
|
|
@@ -397,9 +440,12 @@ class AsyncRawBaseClient:
|
|
|
397
440
|
recorded_by=recorded_by,
|
|
398
441
|
teams=teams,
|
|
399
442
|
calendar_invitees=calendar_invitees,
|
|
443
|
+
created_before=created_before,
|
|
400
444
|
created_after=created_after,
|
|
445
|
+
calendar_invitees_domains=calendar_invitees_domains,
|
|
401
446
|
meeting_type=meeting_type,
|
|
402
447
|
include_transcript=include_transcript,
|
|
448
|
+
include_crm_matches=include_crm_matches,
|
|
403
449
|
cursor=_parsed_next,
|
|
404
450
|
request_options=request_options,
|
|
405
451
|
)
|
fathom/types/crm_deal_match.py
CHANGED
|
@@ -8,7 +8,11 @@ from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
|
8
8
|
|
|
9
9
|
class CrmDealMatch(UniversalBaseModel):
|
|
10
10
|
name: str
|
|
11
|
-
amount:
|
|
11
|
+
amount: float = pydantic.Field()
|
|
12
|
+
"""
|
|
13
|
+
The amount in dollars.
|
|
14
|
+
"""
|
|
15
|
+
|
|
12
16
|
record_url: str
|
|
13
17
|
|
|
14
18
|
if IS_PYDANTIC_V2:
|
fathom/types/crm_matches.py
CHANGED
|
@@ -11,7 +11,7 @@ from .crm_deal_match import CrmDealMatch
|
|
|
11
11
|
|
|
12
12
|
class CrmMatches(UniversalBaseModel):
|
|
13
13
|
"""
|
|
14
|
-
|
|
14
|
+
CRM data linked to the meeting. Only returns data from your or your team's linked CRM.
|
|
15
15
|
If no CRM is connected for the workspace, the `error` field will be populated.
|
|
16
16
|
"""
|
|
17
17
|
|
fathom/types/meeting.py
CHANGED
|
@@ -29,11 +29,11 @@ class Meeting(UniversalBaseModel):
|
|
|
29
29
|
recording_start_time: dt.datetime
|
|
30
30
|
recording_end_time: dt.datetime
|
|
31
31
|
meeting_type: MeetingMeetingType
|
|
32
|
+
transcript_language: str
|
|
32
33
|
transcript: typing.Optional[typing.List[TranscriptItem]] = None
|
|
33
|
-
|
|
34
|
+
default_summary: typing.Optional[MeetingSummary] = None
|
|
34
35
|
action_items: typing.Optional[typing.List[ActionItem]] = None
|
|
35
36
|
calendar_invitees: typing.List[Invitee]
|
|
36
|
-
transcript_language: str
|
|
37
37
|
recorded_by: FathomUser
|
|
38
38
|
crm_matches: typing.Optional[CrmMatches] = None
|
|
39
39
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
fathom/__init__.py,sha256=dBibCxSr7T9FV3mfW_hkQ1hOPTqt8gPC0dMa4ub3Sv8,1227
|
|
2
|
-
fathom/base_client.py,sha256=
|
|
2
|
+
fathom/base_client.py,sha256=CAkMW-t38xdBgckdOlBIQXK92CfZL2jeBWDIxm45XPk,18961
|
|
3
3
|
fathom/client.py,sha256=8o_WuoWBVyKB6xDmqqZqOJCBJia8eGrapg0Q6yzNUeg,500
|
|
4
4
|
fathom/core/__init__.py,sha256=4POYbbRlgR7TwGFY5nmHpaa7nFgXOX_pYHcN1Ezh2p8,1643
|
|
5
5
|
fathom/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
6
|
-
fathom/core/client_wrapper.py,sha256=
|
|
6
|
+
fathom/core/client_wrapper.py,sha256=XEfbxVMSYOLpvCv8wM2WcLnBvlT3PQUFsjX7mTcL2PM,1836
|
|
7
7
|
fathom/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
8
8
|
fathom/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
9
9
|
fathom/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
|
@@ -21,18 +21,18 @@ fathom/errors/__init__.py,sha256=Ua3Z6OWyRhcgrq0FSXOpwmOc4RxyTgzP2LXbkzGbMhk,234
|
|
|
21
21
|
fathom/errors/bad_request_error.py,sha256=PnE3v3kETCXm9E3LiNcHLNtjPEUvpe98-r59q-kQb78,338
|
|
22
22
|
fathom/errors/unauthorized_error.py,sha256=mryinHCAaknn5St2VF17R9XybZUcWRRYWEjxg63dQSA,340
|
|
23
23
|
fathom/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
-
fathom/raw_base_client.py,sha256=
|
|
24
|
+
fathom/raw_base_client.py,sha256=EZDi1xVpKJvFxGN91igKSRmxiIVNpWQHYBiBJGILZCY,26338
|
|
25
25
|
fathom/types/__init__.py,sha256=Q0EMWBgFpA3vP3JPSIEQ01ek63ptoInTP7dEYoYslSs,1350
|
|
26
26
|
fathom/types/action_item.py,sha256=twWuS_Rg4R4crXt6OEZmPbk1qQziPiZCY392nbZDui4,854
|
|
27
27
|
fathom/types/assignee.py,sha256=9lEX-MEAK-BEIpcCaHEwikpAI7UPJTJqYidJ0pa8bto,616
|
|
28
28
|
fathom/types/crm_company_match.py,sha256=Eb4ai8sE0hbeJCYpO_qHk_RiE_qbsvUmLsc_dF59NZU,542
|
|
29
29
|
fathom/types/crm_contact_match.py,sha256=hPi_-tVuCU6y-kmx9PYNbpMgEJmLSfPsXErSac16Ag0,557
|
|
30
|
-
fathom/types/crm_deal_match.py,sha256=
|
|
31
|
-
fathom/types/crm_matches.py,sha256=
|
|
30
|
+
fathom/types/crm_deal_match.py,sha256=PU1zkCx0U2LPxFyxY7VmsMnDz_LArHDJcqtIdNKl3ok,620
|
|
31
|
+
fathom/types/crm_matches.py,sha256=pjY3f2XCEhYXK-pcnLFaHYgf7Iwagi6BwVJ063ToXE4,1064
|
|
32
32
|
fathom/types/fathom_user.py,sha256=pbazdvCuf773i6KykIS1LFOLZs8t114HZzD9pw-w53E,570
|
|
33
33
|
fathom/types/invitee.py,sha256=ktdjTyobFOHzEiSLqsHijWMtNj63F3e8r-1gtNDi-aI,661
|
|
34
34
|
fathom/types/list_meetings_request_meeting_type.py,sha256=SuiWhjvW_6CrfxfcPx5MkzHMfVMa1R94WnVFcsDUkyw,185
|
|
35
|
-
fathom/types/meeting.py,sha256=
|
|
35
|
+
fathom/types/meeting.py,sha256=Tq6MG0-D7SPVzqSYKH9FfWU1-UmlOtBqWK8MkGqSBkY,1492
|
|
36
36
|
fathom/types/meeting_list_response.py,sha256=fLwJRhoYln2OevpYqnfBzJ-exCIjk9ewjipkJDKkp7w,657
|
|
37
37
|
fathom/types/meeting_meeting_type.py,sha256=RDatwTAHwLn7U5mvkWJupIcWqYpGGd_bZPBXUtPb6Q8,166
|
|
38
38
|
fathom/types/meeting_summary.py,sha256=l1tw0CfcFdc1YFWQ_huBwyAKiaP0eMGy118pl60L0AM,679
|
|
@@ -43,6 +43,6 @@ fathom/types/team_member_list_response.py,sha256=ryj2LciQ7YIjaIrlRISVOYS1Eak1e5S
|
|
|
43
43
|
fathom/types/transcript_item.py,sha256=Iooc8CqKxrjxp5CjG-ZWgSzhThWe3h3RF7E6zLbUAwY,732
|
|
44
44
|
fathom/types/transcript_item_speaker.py,sha256=BGViyMkjOBCK8I_iD3ZeYv3Nl32PIWi5ecsMAEfBwiQ,600
|
|
45
45
|
fathom/version.py,sha256=ZqzW2It05JBdkkFCwQ_n2tpcYp3ivm-jvdflQl2gd6A,80
|
|
46
|
-
fathom_python-0.0.
|
|
47
|
-
fathom_python-0.0.
|
|
48
|
-
fathom_python-0.0.
|
|
46
|
+
fathom_python-0.0.27.dist-info/METADATA,sha256=RUR-2J0pIPCw1_jff2-8KzU8x2BKwko1R9p-3xmPa8k,4856
|
|
47
|
+
fathom_python-0.0.27.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
48
|
+
fathom_python-0.0.27.dist-info/RECORD,,
|
|
File without changes
|