@liaisongroup/assist-api-js-client 1.5.46 → 1.5.48
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/dist/openapi.d.ts +9 -0
- package/dist/openapi.json +7 -2
- package/dist/openapi.zod.d.ts +153 -0
- package/dist/openapi.zod.js +1 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -282,6 +282,11 @@ declare namespace Components {
|
|
|
282
282
|
*
|
|
283
283
|
*/
|
|
284
284
|
case_quick_searchable?: boolean;
|
|
285
|
+
/**
|
|
286
|
+
* Indicates whether the field should be included in quick searches for tasks.
|
|
287
|
+
*
|
|
288
|
+
*/
|
|
289
|
+
task_quick_searchable?: boolean;
|
|
285
290
|
/**
|
|
286
291
|
* Indicates the scope of uniqueness for the field.
|
|
287
292
|
*
|
|
@@ -3953,6 +3958,8 @@ export interface OperationMethods {
|
|
|
3953
3958
|
*
|
|
3954
3959
|
* You can user the special filter `?filter[case_quick_search_cont]=%search%` to search for any case where the fields which are marked a case quick searchable contain the search term.
|
|
3955
3960
|
*
|
|
3961
|
+
* You can user the special filter `?filter[task_quick_search_cont]=%search%` to search for any task where the fields which are marked a task quick searchable contain the search term.
|
|
3962
|
+
*
|
|
3956
3963
|
*/
|
|
3957
3964
|
'get_cases'(
|
|
3958
3965
|
parameters?: Parameters<UnknownParamsObject> | null,
|
|
@@ -4830,6 +4837,8 @@ export interface PathsDictionary {
|
|
|
4830
4837
|
*
|
|
4831
4838
|
* You can user the special filter `?filter[case_quick_search_cont]=%search%` to search for any case where the fields which are marked a case quick searchable contain the search term.
|
|
4832
4839
|
*
|
|
4840
|
+
* You can user the special filter `?filter[task_quick_search_cont]=%search%` to search for any task where the fields which are marked a task quick searchable contain the search term.
|
|
4841
|
+
*
|
|
4833
4842
|
*/
|
|
4834
4843
|
'get'(
|
|
4835
4844
|
parameters?: Parameters<UnknownParamsObject> | null,
|
package/dist/openapi.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Liaison Assist API",
|
|
5
5
|
"description": "\n",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.269",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "MIT",
|
|
9
9
|
"url": "https://opensource.org/licenses/MIT"
|
|
@@ -4996,7 +4996,7 @@
|
|
|
4996
4996
|
"get": {
|
|
4997
4997
|
"operationId": "get_cases",
|
|
4998
4998
|
"summary": "Get cases",
|
|
4999
|
-
"description": "Get a list of cases.\n\nYou can use the special filter `?filter[list_id_eq]=%list_id%` to get the rules from a list and apply them as filters.\nThis also applies the sort order from the list, unless a different sort order is specified in the request.\n\nYou can user the special filter `?filter[case_quick_search_cont]=%search%` to search for any case where the fields which are marked a case quick searchable contain the search term.\n",
|
|
4999
|
+
"description": "Get a list of cases.\n\nYou can use the special filter `?filter[list_id_eq]=%list_id%` to get the rules from a list and apply them as filters.\nThis also applies the sort order from the list, unless a different sort order is specified in the request.\n\nYou can user the special filter `?filter[case_quick_search_cont]=%search%` to search for any case where the fields which are marked a case quick searchable contain the search term.\n\nYou can user the special filter `?filter[task_quick_search_cont]=%search%` to search for any task where the fields which are marked a task quick searchable contain the search term.\n",
|
|
5000
5000
|
"tags": [
|
|
5001
5001
|
"Cases"
|
|
5002
5002
|
],
|
|
@@ -8365,6 +8365,11 @@
|
|
|
8365
8365
|
"type": "boolean",
|
|
8366
8366
|
"default": false
|
|
8367
8367
|
},
|
|
8368
|
+
"task_quick_searchable": {
|
|
8369
|
+
"description": "Indicates whether the field should be included in quick searches for tasks.\n",
|
|
8370
|
+
"type": "boolean",
|
|
8371
|
+
"default": false
|
|
8372
|
+
},
|
|
8368
8373
|
"uniqueness_scope": {
|
|
8369
8374
|
"description": "Indicates the scope of uniqueness for the field.\n\n- If set to null is ignored.\n- If set to `global` then field must be unique across all cases/tasks.\n- If set to `tasks` then field must be unique across all tasks.\n- If set to `cases` then field must be unique across all cases.\n",
|
|
8370
8375
|
"oneOf": [
|