diff --git a/.vscode/download-work-items.http b/.vscode/download-work-items.http deleted file mode 100644 index d281d56..0000000 --- a/.vscode/download-work-items.http +++ /dev/null @@ -1,27 +0,0 @@ -@host = https://tfs.intra.infineon.com -@pat = asdf -@ids = 126018, 224543 - -GET {{host}}/tfs/FactoryIntegration/_apis/wit/workitems?ids={{ids}}&$expand=Relations -Accept: application/json -Authorization: Basic {{pat}} - -### - -GET {{host}}/tfs/FactoryIntegration/_apis/wit/workitems/{{ids}}/updates -Accept: application/json -Authorization: Basic {{pat}} - -### Iterations - -GET {{host}}/tfs/FactoryIntegration/ART%20SPS/cea9f426-6fb1-4d65-93d5-dbf471056212/_apis/work/teamsettings/iterations? -Accept: application/json -Authorization: Basic {{pat}} - -### - -DELETE http://localhost:5004/api/SyncV1/?size=4&ticks=638796666663591762&path=d:\Tmp\phares\VisualStudioCode\z-include-patterns - Copy.nsv - -### - -GET http://localhost:5004/api/SyncV1/?size=4&ticks=638796666663591762&path=d:\Tmp\phares\VisualStudioCode\z-include-patterns - Copy.nsv \ No newline at end of file diff --git a/Scripts/immich.js b/Scripts/immich.js deleted file mode 100644 index 0d50d05..0000000 --- a/Scripts/immich.js +++ /dev/null @@ -1,50 +0,0 @@ -const axios = require('axios'); - -const url = 'https://immich.bchs.duckdns.org'; - -let config = { - method: 'get', - maxBodyLength: Infinity, - // url: url + '/api/users', - url: url + '/api/assets/f89d0de1-2762-4f9e-b60e-c7eeec93c4e9', - headers: { - 'Accept': 'application/json', - 'x-api-key': 'Pm2CbhJvgStEPAFKRVclW88qrOAy79OeIEcfj3k' - } -}; - - -axios.request(config) - .then((response) => { - console.log(JSON.stringify(response.data)); - }) - .catch((error) => { - console.log(error); - }); - -// let data = JSON.stringify({ -// "avatar": { -// "color": "green" -// } -// }); - -// let configB = { -// method: 'put', -// maxBodyLength: Infinity, -// url: url + '/api/users/me/preferences', -// headers: { -// 'Content-Type': 'application/json', -// 'Accept': 'application/json', -// 'x-api-key': 'Pm2CbhJvgStEPAFKRVclW88qrOAy79OeIEcfj3k' -// }, -// data: data -// }; - -// axios.request(configB) -// .then((response) => { -// console.log(JSON.stringify(response.data)); -// }) -// .catch((error) => { -// console.log(error); -// }); -