langchain-trigger-server 0.1.0__tar.gz → 0.1.1__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.

Potentially problematic release.


This version of langchain-trigger-server might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: langchain-trigger-server
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Generic event-driven triggers framework
5
5
  Project-URL: Homepage, https://github.com/langchain-ai/open-agent-platform
6
6
  Project-URL: Repository, https://github.com/langchain-ai/open-agent-platform
@@ -500,7 +500,7 @@ class TriggerServer:
500
500
  )
501
501
 
502
502
  # Step 5: Call handler with parsed registration data
503
- result = await trigger.trigger_handler(payload, resource_data, auth_user, metadata_manager)
503
+ result = await trigger.trigger_handler(payload, auth_user, metadata_manager)
504
504
  registration_id = registration["id"]
505
505
 
506
506
  # Check if we should invoke agents
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "langchain-trigger-server"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Generic event-driven triggers framework"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"