@fetch-hive/sdk 0.2.2 → 0.2.3

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 (36) hide show
  1. package/README.md +42 -3
  2. package/dist/generated/src/apis/AgentsApi.d.ts +1 -1
  3. package/dist/generated/src/apis/AgentsApi.js +1 -1
  4. package/dist/generated/src/apis/PromptsApi.d.ts +1 -1
  5. package/dist/generated/src/apis/PromptsApi.js +1 -1
  6. package/dist/generated/src/apis/WorkflowsApi.d.ts +1 -1
  7. package/dist/generated/src/apis/WorkflowsApi.js +1 -1
  8. package/dist/generated/src/models/AgentMessage.d.ts +1 -1
  9. package/dist/generated/src/models/AgentMessage.js +1 -1
  10. package/dist/generated/src/models/AsyncConfig.d.ts +1 -1
  11. package/dist/generated/src/models/AsyncConfig.js +1 -1
  12. package/dist/generated/src/models/ErrorResponse.d.ts +1 -1
  13. package/dist/generated/src/models/ErrorResponse.js +1 -1
  14. package/dist/generated/src/models/InvokeAgentRequest.d.ts +1 -1
  15. package/dist/generated/src/models/InvokeAgentRequest.js +1 -1
  16. package/dist/generated/src/models/InvokeAgentResponse.d.ts +1 -1
  17. package/dist/generated/src/models/InvokeAgentResponse.js +1 -1
  18. package/dist/generated/src/models/InvokePromptRequest.d.ts +1 -1
  19. package/dist/generated/src/models/InvokePromptRequest.js +1 -1
  20. package/dist/generated/src/models/InvokePromptResponse.d.ts +1 -1
  21. package/dist/generated/src/models/InvokePromptResponse.js +1 -1
  22. package/dist/generated/src/models/InvokeWorkflowAsyncResponse.d.ts +1 -1
  23. package/dist/generated/src/models/InvokeWorkflowAsyncResponse.js +1 -1
  24. package/dist/generated/src/models/InvokeWorkflowRequest.d.ts +1 -1
  25. package/dist/generated/src/models/InvokeWorkflowRequest.js +1 -1
  26. package/dist/generated/src/models/InvokeWorkflowResponse.d.ts +1 -1
  27. package/dist/generated/src/models/InvokeWorkflowResponse.js +1 -1
  28. package/dist/generated/src/models/SseChunk.d.ts +1 -1
  29. package/dist/generated/src/models/SseChunk.js +1 -1
  30. package/dist/generated/src/models/TokenUsage.d.ts +1 -1
  31. package/dist/generated/src/models/TokenUsage.js +1 -1
  32. package/dist/generated/src/models/ToolInvocation.d.ts +1 -1
  33. package/dist/generated/src/models/ToolInvocation.js +1 -1
  34. package/dist/generated/src/runtime.d.ts +1 -1
  35. package/dist/generated/src/runtime.js +1 -1
  36. package/package.json +1 -1
package/README.md CHANGED
@@ -55,6 +55,27 @@ const run = await client.invokeWorkflow({
55
55
  console.log(run.status, run.output);
56
56
  ```
57
57
 
58
+ ## Invoke a workflow (async)
59
+
60
+ ```typescript
61
+ const run = await client.invokeWorkflow({
62
+ deployment: 'my-workflow',
63
+ inputs: { customer_id: '42' },
64
+ async: { enabled: true, callback_url: 'https://example.com/webhook' },
65
+ });
66
+ console.log('Queued:', run.run_id);
67
+ ```
68
+
69
+ ## Invoke an agent
70
+
71
+ ```typescript
72
+ const reply = await client.invokeAgent({
73
+ agent: 'my-agent',
74
+ message: 'What is the weather in London?',
75
+ });
76
+ console.log(reply.response);
77
+ ```
78
+
58
79
  ## Invoke an agent (streaming)
59
80
 
60
81
  ```typescript
@@ -76,21 +97,39 @@ const result = await client.invokeAgent({
76
97
  message: 'Describe this image',
77
98
  image_urls: ['https://example.com/photo.jpg'],
78
99
  });
100
+ console.log(result.response);
79
101
  ```
80
102
 
81
103
  ## Authentication
82
104
 
83
- All requests require a Bearer token. Pass it to the constructor:
105
+ Pass the API key to the constructor:
84
106
 
85
107
  ```typescript
86
108
  const client = new FetchHive({ apiKey: 'fhk_...' });
87
109
  ```
88
110
 
89
- Or set the `FETCH_HIVE_API_KEY` environment variable and access it via `process.env`.
111
+ Or set the environment variable and omit the explicit key:
112
+
113
+ ```bash
114
+ export FETCH_HIVE_API_KEY=fhk_...
115
+ ```
116
+
117
+ ## Configuration
118
+
119
+ | Option | Default | Description |
120
+ |---|---|---|
121
+ | `apiKey` | `process.env.FETCH_HIVE_API_KEY` | Bearer token from the Fetch Hive dashboard |
122
+ | `baseURL` | `https://api.fetchhive.com/v1` | Override the API base URL |
123
+
124
+ ## Links
125
+
126
+ - [Fetch Hive dashboard](https://app.fetchhive.com)
127
+ - [API documentation](https://docs.fetchhive.com)
128
+ - [GitHub](https://github.com/Fetch-Hive/nodejs-sdk)
90
129
 
91
130
  ## Version
92
131
 
93
- 0.2.2
132
+ 0.2.3
94
133
 
95
134
  ## License
96
135
 
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Fetch Hive Public API
3
3
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Fetch Hive Public API
6
6
  * The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fetch-hive/sdk",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Official Node.js / TypeScript SDK for the Fetch Hive API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",