@apteva/integrations 0.3.20 → 0.3.21

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apteva/integrations",
3
- "version": "0.3.20",
3
+ "version": "0.3.21",
4
4
  "description": "Local integrations, connections, and webhooks for Apteva. Self-contained app templates, OAuth engine, and trigger provider.",
5
5
  "author": "Apteva <hello@apteva.com>",
6
6
  "license": "Elastic-2.0",
@@ -57,16 +57,16 @@
57
57
  "name": "get_file",
58
58
  "description": "Get detailed file info including optional transcripts and thumbnails",
59
59
  "method": "GET",
60
- "path": "/files/{{id}}",
60
+ "path": "/files/{file_id}",
61
61
  "input_schema": {
62
62
  "type": "object",
63
63
  "properties": {
64
- "id": { "type": "integer", "description": "File ID" },
64
+ "file_id": { "type": "integer", "description": "File ID" },
65
65
  "include_transcripts": { "type": "boolean", "default": false, "description": "Include transcript metadata" },
66
66
  "include_transcript_segments": { "type": "boolean", "default": false, "description": "Include transcript segments with timecodes" },
67
67
  "include_thumbnails": { "type": "boolean", "default": false, "description": "Include thumbnail URLs" }
68
68
  },
69
- "required": ["id"]
69
+ "required": ["file_id"]
70
70
  }
71
71
  },
72
72
  {
@@ -92,32 +92,32 @@
92
92
  "name": "update_file",
93
93
  "description": "Update file metadata, tags, or move to a different folder",
94
94
  "method": "PUT",
95
- "path": "/files/{{id}}",
95
+ "path": "/files/{file_id}",
96
96
  "input_schema": {
97
97
  "type": "object",
98
98
  "properties": {
99
- "id": { "type": "integer", "description": "File ID to update" },
99
+ "file_id": { "type": "integer", "description": "File ID to update" },
100
100
  "name": { "type": "string", "description": "New file name" },
101
101
  "description": { "type": "string", "description": "New description" },
102
102
  "folder_id": { "type": "integer", "description": "Move to different folder" },
103
103
  "tags": { "type": "array", "items": { "type": "string" }, "description": "Update tags" },
104
104
  "access_level": { "type": "string", "enum": ["private", "public"], "description": "Update access level" }
105
105
  },
106
- "required": ["id"]
106
+ "required": ["file_id"]
107
107
  }
108
108
  },
109
109
  {
110
110
  "name": "delete_file",
111
111
  "description": "Delete a file from storage",
112
112
  "method": "DELETE",
113
- "path": "/files/{{id}}",
113
+ "path": "/files/{file_id}",
114
114
  "input_schema": {
115
115
  "type": "object",
116
116
  "properties": {
117
- "id": { "type": "integer", "description": "File ID to delete" },
117
+ "file_id": { "type": "integer", "description": "File ID to delete" },
118
118
  "force": { "type": "boolean", "default": false, "description": "Force delete without trash" }
119
119
  },
120
- "required": ["id"]
120
+ "required": ["file_id"]
121
121
  }
122
122
  },
123
123
  {