Skip to content

Commit

Permalink
v1.12: Update Postman collection (#3079)
Browse files Browse the repository at this point in the history
  • Loading branch information
guimachiavelli authored Dec 17, 2024
1 parent 670515a commit f969a90
Showing 1 changed file with 280 additions and 8 deletions.
288 changes: 280 additions & 8 deletions assets/misc/meilisearch-collection-postman.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"info": {
"_postman_id": "cc6bb097-033d-4f65-8704-f10e4e4b10d0",
"name": "Meilisearch v1.11",
"name": "Meilisearch v1.12",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "25294324"
},
Expand Down Expand Up @@ -652,6 +652,11 @@
"value": "3",
"disabled": true
},
{
"key": "batchUids",
"value": "0",
"disabled": true
},
{
"key": "indexUids",
"value": "books",
Expand All @@ -669,37 +674,37 @@
},
{
"key": "beforeEnqueuedAt",
"value": null,
"value": "",
"disabled": true
},
{
"key": "afterEnqueuedAt",
"value": null,
"value": "",
"disabled": true
},
{
"key": "beforeStartedAt",
"value": null,
"value": "",
"disabled": true
},
{
"key": "afterStartedAt",
"value": null,
"value": "",
"disabled": true
},
{
"key": "beforeFinishedAt",
"value": null,
"value": "",
"disabled": true
},
{
"key": "afterFinishedAt",
"value": null,
"value": "",
"disabled": true
},
{
"key": "canceledBy",
"value": null,
"value": "",
"disabled": true
},
{
Expand All @@ -711,6 +716,11 @@
"key": "from",
"value": "10",
"disabled": true
},
{
"key": "reverse",
"value": "true",
"disabled": true
}
]
}
Expand Down Expand Up @@ -888,6 +898,118 @@
}
]
},
{
"name": "Batches",
"item": [
{
"name": "Get one batch",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{url}}/batches/0",
"host": [
"{{url}}"
],
"path": [
"batches",
"0"
]
}
},
"response": []
},
{
"name": "Get all batches",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{url}}/batches",
"host": [
"{{url}}"
],
"path": [
"batches"
],
"query": [
{
"key": "uids",
"value": "3",
"disabled": true
},
{
"key": "batchUids",
"value": "0,1",
"disabled": true
},
{
"key": "indexUids",
"value": "books",
"disabled": true
},
{
"key": "types",
"value": "documentAdditionOrUpdate",
"disabled": true
},
{
"key": "statuses",
"value": "failed",
"disabled": true
},
{
"key": "beforeEnqueuedAt",
"value": "",
"disabled": true
},
{
"key": "afterEnqueuedAt",
"value": "",
"disabled": true
},
{
"key": "beforeStartedAt",
"value": "",
"disabled": true
},
{
"key": "afterStartedAt",
"value": "",
"disabled": true
},
{
"key": "beforeFinishedAt",
"value": "",
"disabled": true
},
{
"key": "afterFinishedAt",
"value": "",
"disabled": true
},
{
"key": "limit",
"value": "2",
"disabled": true
},
{
"key": "from",
"value": "10",
"disabled": true
},
{
"key": "reverse",
"value": "true",
"disabled": true
}
]
}
},
"response": []
}
]
},
{
"name": "Indexes",
"item": [
Expand Down Expand Up @@ -2384,6 +2506,156 @@
},
"response": []
},
{
"name": "Get facet search",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/facet-search",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"facet-search"
]
}
},
"response": []
},
{
"name": "Update facet search",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "PUT",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "false"
},
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/facet-search",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"facet-search"
]
}
},
"response": []
},
{
"name": "Reset facet search",
"request": {
"method": "DELETE",
"header": [],
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/facet-search",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"facet-search"
]
}
},
"response": []
},
{
"name": "Get prefix search",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/prefix-search",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"prefix-search"
]
}
},
"response": []
},
{
"name": "Update prefix search",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "PUT",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "\"disabled\""
},
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/prefix-search",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"prefix-search"
]
}
},
"response": []
},
{
"name": "Reset prefix search",
"request": {
"method": "DELETE",
"header": [],
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/prefix-search",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"prefix-search"
]
}
},
"response": []
},
{
"name": "Get search cutoff",
"request": {
Expand Down

0 comments on commit f969a90

Please sign in to comment.