ingestr 0.13.2__py3-none-any.whl → 0.14.104__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.
Files changed (146) hide show
  1. ingestr/conftest.py +72 -0
  2. ingestr/main.py +134 -87
  3. ingestr/src/adjust/__init__.py +4 -4
  4. ingestr/src/adjust/adjust_helpers.py +7 -3
  5. ingestr/src/airtable/__init__.py +3 -2
  6. ingestr/src/allium/__init__.py +128 -0
  7. ingestr/src/anthropic/__init__.py +277 -0
  8. ingestr/src/anthropic/helpers.py +525 -0
  9. ingestr/src/applovin/__init__.py +262 -0
  10. ingestr/src/applovin_max/__init__.py +117 -0
  11. ingestr/src/appsflyer/__init__.py +325 -0
  12. ingestr/src/appsflyer/client.py +49 -45
  13. ingestr/src/appstore/__init__.py +1 -0
  14. ingestr/src/arrow/__init__.py +9 -1
  15. ingestr/src/asana_source/__init__.py +1 -1
  16. ingestr/src/attio/__init__.py +102 -0
  17. ingestr/src/attio/helpers.py +65 -0
  18. ingestr/src/blob.py +38 -11
  19. ingestr/src/buildinfo.py +1 -0
  20. ingestr/src/chess/__init__.py +1 -1
  21. ingestr/src/clickup/__init__.py +85 -0
  22. ingestr/src/clickup/helpers.py +47 -0
  23. ingestr/src/collector/spinner.py +43 -0
  24. ingestr/src/couchbase_source/__init__.py +118 -0
  25. ingestr/src/couchbase_source/helpers.py +135 -0
  26. ingestr/src/cursor/__init__.py +83 -0
  27. ingestr/src/cursor/helpers.py +188 -0
  28. ingestr/src/destinations.py +520 -33
  29. ingestr/src/docebo/__init__.py +589 -0
  30. ingestr/src/docebo/client.py +435 -0
  31. ingestr/src/docebo/helpers.py +97 -0
  32. ingestr/src/elasticsearch/__init__.py +80 -0
  33. ingestr/src/elasticsearch/helpers.py +138 -0
  34. ingestr/src/errors.py +8 -0
  35. ingestr/src/facebook_ads/__init__.py +47 -28
  36. ingestr/src/facebook_ads/helpers.py +59 -37
  37. ingestr/src/facebook_ads/settings.py +2 -0
  38. ingestr/src/facebook_ads/utils.py +39 -0
  39. ingestr/src/factory.py +116 -2
  40. ingestr/src/filesystem/__init__.py +8 -3
  41. ingestr/src/filters.py +46 -3
  42. ingestr/src/fluxx/__init__.py +9906 -0
  43. ingestr/src/fluxx/helpers.py +209 -0
  44. ingestr/src/frankfurter/__init__.py +157 -0
  45. ingestr/src/frankfurter/helpers.py +48 -0
  46. ingestr/src/freshdesk/__init__.py +89 -0
  47. ingestr/src/freshdesk/freshdesk_client.py +137 -0
  48. ingestr/src/freshdesk/settings.py +9 -0
  49. ingestr/src/fundraiseup/__init__.py +95 -0
  50. ingestr/src/fundraiseup/client.py +81 -0
  51. ingestr/src/github/__init__.py +41 -6
  52. ingestr/src/github/helpers.py +5 -5
  53. ingestr/src/google_analytics/__init__.py +22 -4
  54. ingestr/src/google_analytics/helpers.py +124 -6
  55. ingestr/src/google_sheets/__init__.py +4 -4
  56. ingestr/src/google_sheets/helpers/data_processing.py +2 -2
  57. ingestr/src/hostaway/__init__.py +302 -0
  58. ingestr/src/hostaway/client.py +288 -0
  59. ingestr/src/http/__init__.py +35 -0
  60. ingestr/src/http/readers.py +114 -0
  61. ingestr/src/http_client.py +24 -0
  62. ingestr/src/hubspot/__init__.py +66 -23
  63. ingestr/src/hubspot/helpers.py +52 -22
  64. ingestr/src/hubspot/settings.py +14 -7
  65. ingestr/src/influxdb/__init__.py +46 -0
  66. ingestr/src/influxdb/client.py +34 -0
  67. ingestr/src/intercom/__init__.py +142 -0
  68. ingestr/src/intercom/helpers.py +674 -0
  69. ingestr/src/intercom/settings.py +279 -0
  70. ingestr/src/isoc_pulse/__init__.py +159 -0
  71. ingestr/src/jira_source/__init__.py +340 -0
  72. ingestr/src/jira_source/helpers.py +439 -0
  73. ingestr/src/jira_source/settings.py +170 -0
  74. ingestr/src/kafka/__init__.py +4 -1
  75. ingestr/src/kinesis/__init__.py +139 -0
  76. ingestr/src/kinesis/helpers.py +82 -0
  77. ingestr/src/klaviyo/{_init_.py → __init__.py} +5 -6
  78. ingestr/src/linear/__init__.py +634 -0
  79. ingestr/src/linear/helpers.py +111 -0
  80. ingestr/src/linkedin_ads/helpers.py +0 -1
  81. ingestr/src/loader.py +69 -0
  82. ingestr/src/mailchimp/__init__.py +126 -0
  83. ingestr/src/mailchimp/helpers.py +226 -0
  84. ingestr/src/mailchimp/settings.py +164 -0
  85. ingestr/src/masking.py +344 -0
  86. ingestr/src/mixpanel/__init__.py +62 -0
  87. ingestr/src/mixpanel/client.py +99 -0
  88. ingestr/src/monday/__init__.py +246 -0
  89. ingestr/src/monday/helpers.py +392 -0
  90. ingestr/src/monday/settings.py +328 -0
  91. ingestr/src/mongodb/__init__.py +72 -8
  92. ingestr/src/mongodb/helpers.py +915 -38
  93. ingestr/src/partition.py +32 -0
  94. ingestr/src/personio/__init__.py +331 -0
  95. ingestr/src/personio/helpers.py +86 -0
  96. ingestr/src/phantombuster/__init__.py +65 -0
  97. ingestr/src/phantombuster/client.py +87 -0
  98. ingestr/src/pinterest/__init__.py +82 -0
  99. ingestr/src/pipedrive/__init__.py +198 -0
  100. ingestr/src/pipedrive/helpers/__init__.py +23 -0
  101. ingestr/src/pipedrive/helpers/custom_fields_munger.py +102 -0
  102. ingestr/src/pipedrive/helpers/pages.py +115 -0
  103. ingestr/src/pipedrive/settings.py +27 -0
  104. ingestr/src/pipedrive/typing.py +3 -0
  105. ingestr/src/plusvibeai/__init__.py +335 -0
  106. ingestr/src/plusvibeai/helpers.py +544 -0
  107. ingestr/src/plusvibeai/settings.py +252 -0
  108. ingestr/src/quickbooks/__init__.py +117 -0
  109. ingestr/src/resource.py +40 -0
  110. ingestr/src/revenuecat/__init__.py +83 -0
  111. ingestr/src/revenuecat/helpers.py +237 -0
  112. ingestr/src/salesforce/__init__.py +156 -0
  113. ingestr/src/salesforce/helpers.py +64 -0
  114. ingestr/src/shopify/__init__.py +1 -17
  115. ingestr/src/smartsheets/__init__.py +82 -0
  116. ingestr/src/snapchat_ads/__init__.py +489 -0
  117. ingestr/src/snapchat_ads/client.py +72 -0
  118. ingestr/src/snapchat_ads/helpers.py +535 -0
  119. ingestr/src/socrata_source/__init__.py +83 -0
  120. ingestr/src/socrata_source/helpers.py +85 -0
  121. ingestr/src/socrata_source/settings.py +8 -0
  122. ingestr/src/solidgate/__init__.py +219 -0
  123. ingestr/src/solidgate/helpers.py +154 -0
  124. ingestr/src/sources.py +3132 -212
  125. ingestr/src/stripe_analytics/__init__.py +49 -21
  126. ingestr/src/stripe_analytics/helpers.py +286 -1
  127. ingestr/src/stripe_analytics/settings.py +62 -10
  128. ingestr/src/telemetry/event.py +10 -9
  129. ingestr/src/tiktok_ads/__init__.py +12 -6
  130. ingestr/src/tiktok_ads/tiktok_helpers.py +0 -1
  131. ingestr/src/trustpilot/__init__.py +48 -0
  132. ingestr/src/trustpilot/client.py +48 -0
  133. ingestr/src/version.py +6 -1
  134. ingestr/src/wise/__init__.py +68 -0
  135. ingestr/src/wise/client.py +63 -0
  136. ingestr/src/zoom/__init__.py +99 -0
  137. ingestr/src/zoom/helpers.py +102 -0
  138. ingestr/tests/unit/test_smartsheets.py +133 -0
  139. ingestr-0.14.104.dist-info/METADATA +563 -0
  140. ingestr-0.14.104.dist-info/RECORD +203 -0
  141. ingestr/src/appsflyer/_init_.py +0 -24
  142. ingestr-0.13.2.dist-info/METADATA +0 -302
  143. ingestr-0.13.2.dist-info/RECORD +0 -107
  144. {ingestr-0.13.2.dist-info → ingestr-0.14.104.dist-info}/WHEEL +0 -0
  145. {ingestr-0.13.2.dist-info → ingestr-0.14.104.dist-info}/entry_points.txt +0 -0
  146. {ingestr-0.13.2.dist-info → ingestr-0.14.104.dist-info}/licenses/LICENSE.md +0 -0
@@ -0,0 +1,118 @@
1
+ """Source that loads data from Couchbase buckets, supports incremental loads."""
2
+
3
+ from typing import Optional
4
+
5
+ import dlt
6
+ from dlt.sources import DltResource
7
+
8
+ from .helpers import (
9
+ CouchbaseConfiguration,
10
+ client_from_credentials,
11
+ fetch_documents,
12
+ )
13
+
14
+
15
+ @dlt.source(max_table_nesting=0)
16
+ def couchbase_source(
17
+ connection_string: str = dlt.secrets.value,
18
+ username: str = dlt.secrets.value,
19
+ password: str = dlt.secrets.value,
20
+ bucket: str = dlt.config.value,
21
+ scope: Optional[str] = dlt.config.value,
22
+ collection: Optional[str] = dlt.config.value,
23
+ incremental: Optional[dlt.sources.incremental] = None, # type: ignore[type-arg]
24
+ write_disposition: Optional[str] = dlt.config.value,
25
+ limit: Optional[int] = None,
26
+ ) -> DltResource:
27
+ """
28
+ A DLT source which loads data from a Couchbase bucket using Couchbase Python SDK.
29
+
30
+ Args:
31
+ connection_string (str): Couchbase connection string (e.g., 'couchbase://localhost')
32
+ username (str): Couchbase username
33
+ password (str): Couchbase password
34
+ bucket (str): Bucket name to load data from
35
+ scope (Optional[str]): Scope name (defaults to '_default')
36
+ collection (Optional[str]): Collection name (defaults to '_default')
37
+ incremental (Optional[dlt.sources.incremental]): Option to enable incremental loading.
38
+ E.g., `incremental=dlt.sources.incremental('updated_at', pendulum.parse('2022-01-01T00:00:00Z'))`
39
+ write_disposition (str): Write disposition of the resource.
40
+ limit (Optional[int]): The maximum number of documents to load.
41
+
42
+ Returns:
43
+ DltResource: A DLT resource for the Couchbase collection.
44
+ """
45
+ # Set up Couchbase client
46
+ cluster = client_from_credentials(connection_string, username, password)
47
+
48
+ resource_name = f"{bucket}_{scope}_{collection}"
49
+
50
+ return dlt.resource( # type: ignore[call-overload, arg-type]
51
+ fetch_documents,
52
+ name=resource_name,
53
+ primary_key="id",
54
+ write_disposition=write_disposition or "replace",
55
+ spec=CouchbaseConfiguration,
56
+ max_table_nesting=0,
57
+ )(
58
+ cluster=cluster,
59
+ bucket_name=bucket,
60
+ scope_name=scope,
61
+ collection_name=collection,
62
+ incremental=incremental,
63
+ limit=limit,
64
+ )
65
+
66
+
67
+ @dlt.resource(
68
+ name=lambda args: f"{args['bucket']}_{args['scope']}_{args['collection']}",
69
+ standalone=True,
70
+ spec=CouchbaseConfiguration, # type: ignore[arg-type]
71
+ )
72
+ def couchbase_collection(
73
+ connection_string: str = dlt.secrets.value,
74
+ username: str = dlt.secrets.value,
75
+ password: str = dlt.secrets.value,
76
+ bucket: str = dlt.config.value,
77
+ scope: Optional[str] = dlt.config.value,
78
+ collection: Optional[str] = dlt.config.value,
79
+ incremental: Optional[dlt.sources.incremental] = None, # type: ignore[type-arg]
80
+ write_disposition: Optional[str] = dlt.config.value,
81
+ limit: Optional[int] = None,
82
+ chunk_size: Optional[int] = 1000,
83
+ ) -> DltResource:
84
+ """
85
+ A DLT resource which loads a collection from Couchbase.
86
+
87
+ Args:
88
+ connection_string (str): Couchbase connection string (e.g., 'couchbase://localhost')
89
+ username (str): Couchbase username
90
+ password (str): Couchbase password
91
+ bucket (str): Bucket name to load data from
92
+ scope (Optional[str]): Scope name (defaults to '_default')
93
+ collection (Optional[str]): Collection name (defaults to '_default')
94
+ incremental (Optional[dlt.sources.incremental]): Option to enable incremental loading.
95
+ write_disposition (str): Write disposition of the resource.
96
+ limit (Optional[int]): The maximum number of documents to load.
97
+ chunk_size (Optional[int]): The number of documents to load in each batch.
98
+
99
+ Returns:
100
+ DltResource: A DLT resource for the Couchbase collection.
101
+ """
102
+ # Set up Couchbase client
103
+ cluster = client_from_credentials(connection_string, username, password)
104
+
105
+ return dlt.resource( # type: ignore[call-overload]
106
+ fetch_documents,
107
+ name=f"{bucket}_{scope}_{collection}",
108
+ primary_key="id",
109
+ write_disposition=write_disposition or "replace",
110
+ )(
111
+ cluster=cluster,
112
+ bucket_name=bucket,
113
+ scope_name=scope,
114
+ collection_name=collection,
115
+ incremental=incremental,
116
+ limit=limit,
117
+ chunk_size=chunk_size,
118
+ )
@@ -0,0 +1,135 @@
1
+ """Helper functions for Couchbase source."""
2
+
3
+ from datetime import datetime, timedelta
4
+ from typing import Any, Dict, Iterator, Optional
5
+
6
+ import dlt
7
+ from couchbase.auth import PasswordAuthenticator # type: ignore[import-untyped]
8
+ from couchbase.cluster import Cluster # type: ignore[import-untyped]
9
+ from couchbase.options import ( # type: ignore[import-untyped]
10
+ ClusterOptions,
11
+ QueryOptions,
12
+ )
13
+ from dlt.common.configuration import configspec
14
+ from dlt.common.time import ensure_pendulum_datetime
15
+
16
+
17
+ @configspec
18
+ class CouchbaseConfiguration:
19
+ """Configuration for Couchbase source."""
20
+
21
+ connection_string: str = dlt.secrets.value
22
+ username: str = dlt.secrets.value
23
+ password: str = dlt.secrets.value
24
+ bucket: str = dlt.config.value
25
+ scope: Optional[str] = dlt.config.value
26
+ collection: Optional[str] = dlt.config.value
27
+
28
+
29
+ def client_from_credentials(
30
+ connection_string: str, username: str, password: str
31
+ ) -> Cluster:
32
+ """
33
+ Create a Couchbase cluster client from credentials.
34
+
35
+ Args:
36
+ connection_string: Couchbase connection string
37
+ - Local/self-hosted: 'couchbase://localhost'
38
+ - Capella (cloud): 'couchbases://your-instance.cloud.couchbase.com'
39
+ username: Couchbase username
40
+ password: Couchbase password
41
+
42
+ Returns:
43
+ Cluster: Connected Couchbase cluster instance
44
+ """
45
+ auth = PasswordAuthenticator(username, password)
46
+ options = ClusterOptions(auth)
47
+
48
+ # Apply wan_development profile for Capella (couchbases://) connections
49
+ # This helps avoid latency issues when accessing from different networks
50
+ if connection_string.startswith("couchbases://"):
51
+ options.apply_profile("wan_development")
52
+
53
+ cluster = Cluster(connection_string, options)
54
+ cluster.wait_until_ready(timedelta(seconds=30))
55
+
56
+ return cluster
57
+
58
+
59
+ def fetch_documents(
60
+ cluster: Cluster,
61
+ bucket_name: str,
62
+ scope_name: str,
63
+ collection_name: str,
64
+ incremental: Optional[dlt.sources.incremental] = None, # type: ignore[type-arg]
65
+ limit: Optional[int] = None,
66
+ chunk_size: Optional[int] = 1000,
67
+ ) -> Iterator[Dict[str, Any]]:
68
+ """
69
+ Fetch documents from a Couchbase collection using N1QL queries.
70
+
71
+ Args:
72
+ cluster: Couchbase cluster instance
73
+ bucket_name: Name of the bucket
74
+ scope_name: Name of the scope
75
+ collection_name: Name of the collection
76
+ incremental: Incremental loading configuration
77
+ limit: Maximum number of documents to fetch
78
+ chunk_size: Number of documents to fetch per batch
79
+
80
+ Yields:
81
+ Dict[str, Any]: Document data
82
+ """
83
+ # Build N1QL query with full path
84
+ full_collection_path = f"`{bucket_name}`.`{scope_name}`.`{collection_name}`"
85
+ n1ql_query = f"SELECT META().id as id, c.* FROM {full_collection_path} c"
86
+
87
+ # Add incremental filter if provided
88
+ if incremental and incremental.cursor_path:
89
+ where_clause = f" WHERE {incremental.cursor_path} >= $start_value"
90
+ if incremental.end_value is not None:
91
+ where_clause += f" AND {incremental.cursor_path} < $end_value"
92
+ n1ql_query += where_clause
93
+
94
+ # Add limit if provided
95
+ if limit:
96
+ n1ql_query += f" LIMIT {limit}"
97
+
98
+ # Execute query
99
+ try:
100
+ query_options = QueryOptions()
101
+
102
+ # Add parameters if incremental
103
+ if incremental and incremental.cursor_path:
104
+ named_parameters = {"start_value": incremental.last_value}
105
+ if incremental.end_value is not None:
106
+ named_parameters["end_value"] = incremental.end_value
107
+ query_options = QueryOptions(named_parameters=named_parameters)
108
+
109
+ result = cluster.query(n1ql_query, query_options)
110
+
111
+ # Yield documents
112
+ count = 0
113
+ for row in result:
114
+ doc = dict(row)
115
+
116
+ # Convert datetime fields to proper format
117
+ if (
118
+ incremental
119
+ and incremental.cursor_path
120
+ and incremental.cursor_path in doc
121
+ ):
122
+ cursor_value = doc[incremental.cursor_path]
123
+ if isinstance(cursor_value, (str, datetime)):
124
+ doc[incremental.cursor_path] = ensure_pendulum_datetime(
125
+ cursor_value
126
+ )
127
+
128
+ yield doc
129
+
130
+ count += 1
131
+ if limit and count >= limit:
132
+ break
133
+
134
+ except Exception as e:
135
+ raise Exception(f"Error executing Couchbase N1QL query: {str(e)}")
@@ -0,0 +1,83 @@
1
+ """
2
+ This source provides data extraction from Cursor via the REST API.
3
+
4
+ It fetches team member information from the Cursor API.
5
+ """
6
+
7
+ from typing import Any, Iterable, Optional
8
+
9
+ import dlt
10
+ from dlt.common.typing import TDataItem
11
+
12
+ from .helpers import CursorClient
13
+
14
+
15
+ @dlt.source
16
+ def cursor_source() -> Any:
17
+ """
18
+ The main function that fetches data from Cursor API.
19
+
20
+ Returns:
21
+ Sequence[DltResource]: A sequence of DltResource objects containing the fetched data.
22
+ """
23
+ return [
24
+ team_members,
25
+ daily_usage_data,
26
+ team_spend,
27
+ filtered_usage_events,
28
+ ]
29
+
30
+
31
+ @dlt.resource(
32
+ write_disposition="replace",
33
+ max_table_nesting=0,
34
+ )
35
+ def team_members(
36
+ api_key: str = dlt.secrets.value,
37
+ ) -> Iterable[TDataItem]:
38
+ client = CursorClient(api_key=api_key)
39
+
40
+ members = client.get_team_members()
41
+ yield from members
42
+
43
+
44
+ @dlt.resource(
45
+ write_disposition="replace",
46
+ max_table_nesting=0,
47
+ )
48
+ def daily_usage_data(
49
+ api_key: str = dlt.secrets.value,
50
+ start_date: Optional[int] = dlt.config.value,
51
+ end_date: Optional[int] = dlt.config.value,
52
+ ) -> Iterable[TDataItem]:
53
+ client = CursorClient(api_key=api_key)
54
+
55
+ yield from client.get_daily_usage_data(start_date=start_date, end_date=end_date)
56
+
57
+
58
+ @dlt.resource(
59
+ write_disposition="replace",
60
+ max_table_nesting=0,
61
+ )
62
+ def team_spend(
63
+ api_key: str = dlt.secrets.value,
64
+ ) -> Iterable[TDataItem]:
65
+ client = CursorClient(api_key=api_key)
66
+
67
+ yield from client.get_team_spend()
68
+
69
+
70
+ @dlt.resource(
71
+ write_disposition="replace",
72
+ max_table_nesting=0,
73
+ )
74
+ def filtered_usage_events(
75
+ api_key: str = dlt.secrets.value,
76
+ start_date: Optional[int] = dlt.config.value,
77
+ end_date: Optional[int] = dlt.config.value,
78
+ ) -> Iterable[TDataItem]:
79
+ client = CursorClient(api_key=api_key)
80
+
81
+ yield from client.get_filtered_usage_events(
82
+ start_date=start_date, end_date=end_date
83
+ )
@@ -0,0 +1,188 @@
1
+ """Cursor source helpers"""
2
+
3
+ from typing import Any, Callable, Dict, Iterator, List, Optional
4
+
5
+ import requests
6
+
7
+ REQUEST_TIMEOUT = 30
8
+
9
+
10
+ class CursorClient:
11
+ """Cursor REST API client with API key authentication."""
12
+
13
+ def __init__(
14
+ self,
15
+ api_key: str,
16
+ base_url: str = "https://api.cursor.com",
17
+ timeout: int = REQUEST_TIMEOUT,
18
+ ):
19
+ """
20
+ Initialize Cursor client with API key authentication.
21
+
22
+ Args:
23
+ api_key: API key for authentication
24
+ base_url: Cursor API base URL
25
+ timeout: Request timeout in seconds
26
+ """
27
+ self.base_url = base_url.rstrip("/")
28
+ self.timeout = timeout
29
+ self.api_key = api_key
30
+
31
+ def _make_request(
32
+ self,
33
+ endpoint: str,
34
+ method: str = "POST",
35
+ json_data: Optional[Dict[str, Any]] = None,
36
+ ) -> Dict[str, Any]:
37
+ """
38
+ Make HTTP request to Cursor API.
39
+
40
+ Args:
41
+ endpoint: API endpoint path
42
+ method: HTTP method (default: POST)
43
+ json_data: JSON data for request body
44
+
45
+ Returns:
46
+ JSON response data
47
+ """
48
+ url = f"{self.base_url}/{endpoint.lstrip('/')}"
49
+
50
+ if json_data is not None:
51
+ response = requests.request(
52
+ method=method,
53
+ url=url,
54
+ auth=(self.api_key, ""),
55
+ timeout=self.timeout,
56
+ headers={"Content-Type": "application/json"},
57
+ json=json_data,
58
+ )
59
+ else:
60
+ response = requests.request(
61
+ method=method,
62
+ url=url,
63
+ auth=(self.api_key, ""),
64
+ timeout=self.timeout,
65
+ headers={"Content-Type": "application/json"},
66
+ json={},
67
+ )
68
+
69
+ response.raise_for_status()
70
+ return response.json()
71
+
72
+ def _paginate(
73
+ self,
74
+ endpoint: str,
75
+ data_key: str,
76
+ base_payload: Optional[Dict[str, Any]] = None,
77
+ page_size: Optional[int] = 100,
78
+ has_next_page_check: Optional[Callable[[Dict[str, Any]], bool]] = None,
79
+ ) -> Iterator[Dict[str, Any]]:
80
+ """
81
+ Generic pagination helper for API endpoints.
82
+
83
+ Args:
84
+ endpoint: API endpoint to call
85
+ data_key: Key in response containing the data array
86
+ base_payload: Base payload to include in each request
87
+ page_size: Number of results per page (default: 100)
88
+ has_next_page_check: Optional function to check if there's a next page from response
89
+
90
+ Yields:
91
+ Individual records from the paginated response
92
+ """
93
+ page = 1
94
+ base_payload = base_payload or {}
95
+
96
+ while True:
97
+ payload = base_payload.copy()
98
+
99
+ if page_size:
100
+ payload["pageSize"] = page_size
101
+ payload["page"] = page
102
+
103
+ result = self._make_request(endpoint, json_data=payload)
104
+ data = result.get(data_key, [])
105
+
106
+ if not data:
107
+ break
108
+
109
+ for record in data:
110
+ yield record
111
+
112
+ # If page_size is not set, we get all data in one request
113
+ if not page_size:
114
+ break
115
+
116
+ # Custom check for next page if provided
117
+ if has_next_page_check:
118
+ if not has_next_page_check(result):
119
+ break
120
+ # Default: if we got less data than page_size, we've reached the end
121
+ elif len(data) < page_size:
122
+ break
123
+
124
+ page += 1
125
+
126
+ def get_team_members(self) -> List[Dict[str, Any]]:
127
+ response = self._make_request("teams/members", method="GET")
128
+ return response.get("teamMembers", [])
129
+
130
+ def get_daily_usage_data(
131
+ self,
132
+ start_date: Optional[int] = None,
133
+ end_date: Optional[int] = None,
134
+ page_size: Optional[int] = 100,
135
+ ) -> Iterator[Dict[str, Any]]:
136
+ base_payload = {}
137
+ if start_date is not None:
138
+ base_payload["startDate"] = start_date
139
+ if end_date is not None:
140
+ base_payload["endDate"] = end_date
141
+
142
+ yield from self._paginate(
143
+ endpoint="teams/daily-usage-data",
144
+ data_key="data",
145
+ base_payload=base_payload,
146
+ page_size=page_size,
147
+ )
148
+
149
+ def get_team_spend(
150
+ self,
151
+ page_size: Optional[int] = 100,
152
+ ) -> Iterator[Dict[str, Any]]:
153
+ def check_has_next_page(response: Dict[str, Any]) -> bool:
154
+ current_page = response.get("currentPage", 1)
155
+ total_pages = response.get("totalPages", 1)
156
+ return current_page < total_pages
157
+
158
+ yield from self._paginate(
159
+ endpoint="teams/spend",
160
+ data_key="teamMemberSpend",
161
+ page_size=page_size,
162
+ has_next_page_check=check_has_next_page,
163
+ )
164
+
165
+ def get_filtered_usage_events(
166
+ self,
167
+ start_date: Optional[int] = None,
168
+ end_date: Optional[int] = None,
169
+ page_size: Optional[int] = 100,
170
+ ) -> Iterator[Dict[str, Any]]:
171
+ base_payload = {}
172
+ if start_date is not None:
173
+ base_payload["startDate"] = start_date
174
+ if end_date is not None:
175
+ base_payload["endDate"] = end_date
176
+
177
+ # Custom check for hasNextPage
178
+ def check_has_next_page(response: Dict[str, Any]) -> bool:
179
+ pagination = response.get("pagination", {})
180
+ return pagination.get("hasNextPage", False)
181
+
182
+ yield from self._paginate(
183
+ endpoint="teams/filtered-usage-events",
184
+ data_key="usageEvents",
185
+ base_payload=base_payload,
186
+ page_size=page_size,
187
+ has_next_page_check=check_has_next_page,
188
+ )