easydata-api 1.1.0__tar.gz → 1.2.0__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: easydata-api
3
- Version: 1.1.0
3
+ Version: 1.2.0
4
4
  Summary: Official Python client for the EasyData LinkedIn enrichment API
5
5
  Author-email: EasyData Development <dev@easydata.win>
6
6
  License-Expression: MIT
@@ -193,7 +193,8 @@ ed.usage(from_="2026-09-01", to="2026-09-30") # spend by day and operation
193
193
 
194
194
  Operations are attributes: `profiles_enrich`, `profiles_activity`,
195
195
  `profiles_posts`, `profiles_comments`, `profiles_reactions`, `companies_enrich`,
196
- `posts_enrich`, `sales_search_people`, `sales_search_companies`.
196
+ `posts_enrich`, `sales_search_people`, `sales_search_employees`,
197
+ `sales_search_companies`.
197
198
 
198
199
  ## Reference
199
200
 
@@ -172,7 +172,8 @@ ed.usage(from_="2026-09-01", to="2026-09-30") # spend by day and operation
172
172
 
173
173
  Operations are attributes: `profiles_enrich`, `profiles_activity`,
174
174
  `profiles_posts`, `profiles_comments`, `profiles_reactions`, `companies_enrich`,
175
- `posts_enrich`, `sales_search_people`, `sales_search_companies`.
175
+ `posts_enrich`, `sales_search_people`, `sales_search_employees`,
176
+ `sales_search_companies`.
176
177
 
177
178
  ## Reference
178
179
 
@@ -35,7 +35,7 @@ __all__ = [
35
35
  DEFAULT_BASE_URL = "https://api.easydata.win/v1"
36
36
 
37
37
  #: Every operation, as `attribute name -> path`. The client builds one method
38
- #: per entry rather than defining nine near-identical methods, because they ARE
38
+ #: per entry rather than defining ten near-identical methods, because they ARE
39
39
  #: identical: one request shape, one response shape, and the operation is the
40
40
  #: path. A new operation is a row here.
41
41
  OPERATIONS: dict[str, str] = {
@@ -47,6 +47,7 @@ OPERATIONS: dict[str, str] = {
47
47
  "companies_enrich": "/companies/enrich",
48
48
  "posts_enrich": "/posts/enrich",
49
49
  "sales_search_people": "/sales/search/people",
50
+ "sales_search_employees": "/sales/search/employees",
50
51
  "sales_search_companies": "/sales/search/companies",
51
52
  }
52
53
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: easydata-api
3
- Version: 1.1.0
3
+ Version: 1.2.0
4
4
  Summary: Official Python client for the EasyData LinkedIn enrichment API
5
5
  Author-email: EasyData Development <dev@easydata.win>
6
6
  License-Expression: MIT
@@ -193,7 +193,8 @@ ed.usage(from_="2026-09-01", to="2026-09-30") # spend by day and operation
193
193
 
194
194
  Operations are attributes: `profiles_enrich`, `profiles_activity`,
195
195
  `profiles_posts`, `profiles_comments`, `profiles_reactions`, `companies_enrich`,
196
- `posts_enrich`, `sales_search_people`, `sales_search_companies`.
196
+ `posts_enrich`, `sales_search_people`, `sales_search_employees`,
197
+ `sales_search_companies`.
197
198
 
198
199
  ## Reference
199
200
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "easydata-api"
7
- version = "1.1.0"
7
+ version = "1.2.0"
8
8
  description = "Official Python client for the EasyData LinkedIn enrichment API"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
File without changes
File without changes