Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:Chia-Network/climate-warehouse i…
Browse files Browse the repository at this point in the history
…nto develop
  • Loading branch information
MichaelTaylor3D committed Aug 8, 2022
2 parents 743ce57 + caf446f commit 0de2b35
Show file tree
Hide file tree
Showing 7 changed files with 747 additions and 1,434 deletions.
50 changes: 45 additions & 5 deletions docs/postman/Audit API.postman_collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,63 @@
},
"item": [
{
"name": "GET Audit",
"name": "find_all_records",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{default}}/audit?orgUid=a807e453-6524-49df-a32d-785e56cf5600",
"host": ["{{default}}"],
"path": ["audit"],
"raw": "{{default}}/v1/audit?page=1&limit=10&order=ASC&orgUid=3c1865c752a3a965a7ac7292d3cd3e7079ad406040785bcd614f63251e0a1fa4",
"protocol": "http",
"host": [
"localhost"
],
"port": "31310",
"path": [
"v1",
"audit"
],
"query": [
{
"key": "page",
"value": "1"
},
{
"key": "limit",
"value": "10"
},
{
"key": "order",
"value": "ASC"
},
{
"key": "orgUid",
"value": "a807e453-6524-49df-a32d-785e56cf5600"
"value": "3c1865c752a3a965a7ac7292d3cd3e7079ad406040785bcd614f63251e0a1fa4"
}
]
}
},
"response": []
},
{
"name": "find_all_conflicts",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{default}}/v1/audit/findConflicts",
"protocol": "http",
"host": [
"localhost"
],
"port": "31310",
"path": [
"v1",
"audit",
"findConflicts"
]
}
},
"response": []
}
]
}
126 changes: 126 additions & 0 deletions docs/postman/FileStore API.postman_collection.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
{
"info": {
"_postman_id": "f1a86e8f-072c-40b7-8155-2cc798be1501",
"name": "Filestore API",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "add_file",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "file",
"type": "file",
"src": "/C:/Users/14434/OneDrive/Pictures/4ff07cb8-ac56-4a70-8684-10e828ca5cff.png"
},
{
"key": "fileName",
"value": "example.png",
"type": "default"
}
]
},
"url": {
"raw": "{{default}}/v1/filestore/add_file",
"protocol": "http",
"host": [
"localhost"
],
"port": "31310",
"path": [
"v1",
"filestore",
"add_file"
]
}
},
"response": []
},
{
"name": "delete_file",
"request": {
"method": "DELETE",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"fileId\": \"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{default}}/v1/filestore/delete_file",
"protocol": "http",
"host": [
"localhost"
],
"port": "31310",
"path": [
"v1",
"filestore",
"delete_file"
]
}
},
"response": []
},
{
"name": "get_file_list",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{default}}/v1/filestore/get_file_list",
"protocol": "http",
"host": [
"localhost"
],
"port": "31310",
"path": [
"v1",
"filestore",
"get_file_list"
]
}
},
"response": []
},
{
"name": "get_file",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"fileId\": \"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{default}}/v1/filestore/get_file",
"protocol": "http",
"host": [
"localhost"
],
"port": "31310",
"path": [
"v1",
"filestore",
"get_file"
]
}
},
"response": []
}
]
}
164 changes: 164 additions & 0 deletions docs/postman/Governance API.postman_collection.json

Large diffs are not rendered by default.

Loading

0 comments on commit 0de2b35

Please sign in to comment.