@routeflow/sdk 1.0.47 → 1.0.48

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.
@@ -17,10 +17,10 @@ async function deleteCompanyDocument(id) {
17
17
  return apiRequest('delete', `/api/company-documents/${id}`);
18
18
  }
19
19
  async function parseRateCon(data) {
20
- return apiRequest('post', '/api/documents/parse-rate-con', data, { timeout: 120000 });
20
+ return apiRequest('post', '/api/documents/parse-rate-con', data, { timeout: 300000 });
21
21
  }
22
22
  async function parseBol(data) {
23
- return apiRequest('post', '/api/documents/parse-bol', data, { timeout: 120000 });
23
+ return apiRequest('post', '/api/documents/parse-bol', data, { timeout: 300000 });
24
24
  }
25
25
  async function smartParse(data) {
26
26
  return apiRequest('post', '/api/documents/smart-parse', data);
@@ -109,7 +109,7 @@ export function useReviewParsedDocument(options) {
109
109
  // UNIFIED UPLOAD
110
110
  // ============================================================================
111
111
  async function unifiedUpload(data) {
112
- return apiRequest('post', '/api/documents/unified-upload', data, { timeout: 120000 });
112
+ return apiRequest('post', '/api/documents/unified-upload', data, { timeout: 300000 });
113
113
  }
114
114
  /**
115
115
  * Unified document upload with automatic type detection and asset extraction.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@routeflow/sdk",
3
- "version": "1.0.47",
3
+ "version": "1.0.48",
4
4
  "description": "TypeScript SDK with TanStack Query hooks for RouteFlow API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",