easydata-api 1.0.1__tar.gz → 1.0.2__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.0.1
3
+ Version: 1.0.2
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
@@ -46,7 +46,7 @@ from .errors import (
46
46
  )
47
47
  from .webhooks import Delivery, VerificationError, verify, verify_ed25519
48
48
 
49
- __version__ = "1.0.1"
49
+ __version__ = "1.0.2"
50
50
 
51
51
  __all__ = [
52
52
  "EasyData",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: easydata-api
3
- Version: 1.0.1
3
+ Version: 1.0.2
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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "easydata-api"
7
- version = "1.0.1"
7
+ version = "1.0.2"
8
8
  description = "Official Python client for the EasyData LinkedIn enrichment API"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -310,7 +310,7 @@ class TestWebhookVerification(unittest.TestCase):
310
310
  self.assertEqual(d.data["result"]["status"], "succeeded")
311
311
 
312
312
  def test_the_go_signers_own_output_verifies(self):
313
- """A vector produced by backend/internal/webhooks.Sign itself.
313
+ """A vector produced by the server's own webhook signer.
314
314
 
315
315
  Every other test here signs with this file's own HMAC, which would keep
316
316
  passing if both sides were wrong in the same way. This one is the output
@@ -318,8 +318,8 @@ class TestWebhookVerification(unittest.TestCase):
318
318
  change to either implementation that breaks the other fails here rather
319
319
  than in a customer's receiver.
320
320
 
321
- Regenerate by calling Sign("whsec_cross_check", time.Unix(1789000000, 0),
322
- body) in a Go test.
321
+ Regenerate from the server's signing function with the secret
322
+ "whsec_cross_check" and the unix timestamp 1789000000.
323
323
  """
324
324
  body = (
325
325
  b'{"id":"d-1","event":"batch.result","createdAt":"2026-09-01T10:00:00Z",'
File without changes
File without changes
File without changes