diff --git a/ccsync.postman_collection.json b/ccsync.postman_collection.json deleted file mode 100644 index 53362108..00000000 --- a/ccsync.postman_collection.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "info": { - "_postman_id": "redacted", - "name": "ccsync_testing", - "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", - "_exporter_id": "redacted" - }, - "item": [ - { - "name": "add task", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"email\": \"email\",\n \"encryptionSecret\": \"yourEncryptionSecret\",\n \"UUID\": \"yourUUID\",\n \"description\": \"adding test task\",\n \"project\": \"\",\n \"due\": \"2012-12-12\",\n \"priority\": \"M\",\n \"tags\": [\"sometag\", \"anothertag\", \"anotherTag\"]\n}" - }, - "url": { - "raw": "http://localhost:8000/add-task", - "protocol": "http", - "host": ["localhost"], - "port": "8000", - "path": ["add-task"] - } - }, - "response": [] - }, - { - "name": "fetch", - "request": { - "method": "GET", - "header": [], - "url": { - "raw": "http://localhost:8000/tasks?email=email&origin=http://localhost:8080/&UUID=your_uuid&encryptionSecret=your_encryptionSecret", - "protocol": "http", - "host": ["localhost"], - "port": "8000", - "path": ["tasks"], - "query": [ - { - "key": "email", - "value": "email" - }, - { - "key": "origin", - "value": "http://localhost:8080/" - }, - { - "key": "UUID", - "value": "your_uuid" - }, - { - "key": "encryptionSecret", - "value": "your_encryptionSecret" - } - ] - } - }, - "response": [] - }, - { - "name": "edit-task", - "request": { - "method": "POST", - "header": [], - "body": { - "mode": "raw", - "raw": "{\r\n \"email\": \"email\",\r\n \"encryptionSecret\": \"yourEncryptionSecret\",\r\n \"UUID\": \"yourUUID\",\r\n \"taskID\": \"uuid of the task you want to edit\",\r\n \"description\": \"edited via postman\",\r\n \"tags\": [\"sometag\", \"anothertag\", \"hi\"]\r\n}", - "options": { - "raw": { - "language": "json" - } - } - }, - "url": { - "raw": "http://localhost:8000/edit-task", - "protocol": "http", - "host": ["localhost"], - "port": "8000", - "path": ["edit-task"] - } - }, - "response": [] - }, - { - "name": "delete-task", - "request": { - "method": "POST", - "header": [], - "body": { - "mode": "raw", - "raw": "{\r\n \"email\": \"email\",\r\n \"encryptionSecret\": \"yourEncryptionSecret\",\r\n \"UUID\": \"yourUUID\",\r\n \"taskuuid\": \"uuid of the task you want to delete\"\r\n}", - "options": { - "raw": { - "language": "json" - } - } - }, - "url": { - "raw": "http://localhost:8000/delete-task", - "protocol": "http", - "host": ["localhost"], - "port": "8000", - "path": ["delete-task"] - } - }, - "response": [] - }, - { - "name": "complete-task", - "request": { - "method": "POST", - "header": [], - "body": { - "mode": "raw", - "raw": "{\r\n \"email\": \"email\",\r\n \"encryptionSecret\": \"yourEncryptionSecret\",\r\n \"UUID\": \"yourUUID\",\r\n \"taskuuid\": \"uuid of the task you want to complete\"\r\n}", - "options": { - "raw": { - "language": "json" - } - } - }, - "url": { - "raw": "http://localhost:8000/complete-task", - "protocol": "http", - "host": ["localhost"], - "port": "8000", - "path": ["complete-task"] - } - }, - "response": [] - }, - { - "name": "modify-task", - "request": { - "method": "POST", - "header": [], - "body": { - "mode": "raw", - "raw": "{\r\n \"email\": \"email\",\r\n \"encryptionSecret\": \"yourEncryptionSecret\",\r\n \"UUID\": \"yourUUID\",\r\n \"project\": \"modified via postman\",\r\n \"priority\": \"H\",\r\n \"due\": \"2026-12-12\",\r\n \"taskID\": \"uuid of the task you want to modify\",\r\n \"description\": \"edited via postman\",\r\n \"tags\": [\r\n \"sometag\",\r\n \"anothertag\",\r\n \"hi\"\r\n ]\r\n}", - "options": { - "raw": { - "language": "json" - } - } - }, - "url": { - "raw": "http://localhost:8000/modify-task", - "protocol": "http", - "host": ["localhost"], - "port": "8000", - "path": ["modify-task"] - } - }, - "response": [] - } - ] -} diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 5aba2ef9..a575d8bd 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -21,7 +21,7 @@ "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, - "baseUrl": ".", + // "baseUrl": ".", // "ignoreDeprecations": "6.0", "paths": { "@/*": ["./src/*"]