@liaisongroup/assist-api-js-client 1.5.142 → 1.5.144
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 +1 -0
- package/dist/openapi.json +9 -2
- package/dist/openapi.zod.d.ts +180 -0
- package/dist/openapi.zod.js +1 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -2099,6 +2099,7 @@ declare namespace Components {
|
|
|
2099
2099
|
saved_filter: RoleActions[];
|
|
2100
2100
|
list_saved_filter: RoleActions[];
|
|
2101
2101
|
case: RoleActions[];
|
|
2102
|
+
case_activity_log: RoleActions[];
|
|
2102
2103
|
task: RoleActions[];
|
|
2103
2104
|
user: RoleActions[];
|
|
2104
2105
|
team: RoleActions[];
|
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.370",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "MIT",
|
|
9
9
|
"url": "https://opensource.org/licenses/MIT"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
36
|
"name": "Sorting",
|
|
37
|
-
"description": "Is handled via [JSONAPI standard approach](https://jsonapi.org/format/#fetching-sorting).\n\nQuery param `sort` is used with `-` prefix for descending order - e.g. `sort=name` `sort=-name`.\n\nYou can only sort by attributes that are exposed for the resource on the resource attributes enpoints.\n\nYou can sort on multiple fields by comma separating them - e.g. `sort=name,email,-active`.\n"
|
|
37
|
+
"description": "Is handled via [JSONAPI standard approach](https://jsonapi.org/format/#fetching-sorting).\n\nQuery param `sort` is used with `-` prefix for descending order - e.g. `sort=name` `sort=-name`.\n\nYou can only sort by attributes that are exposed for the resource on the resource attributes enpoints.\n\nIf a sort param is not provided, the default sort order is `created_at` oldest to newest.\n\nYou can sort on multiple fields by comma separating them - e.g. `sort=name,email,-active`.\n"
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
40
|
"name": "Filtering",
|
|
@@ -14547,6 +14547,7 @@
|
|
|
14547
14547
|
"required": [
|
|
14548
14548
|
"action",
|
|
14549
14549
|
"case",
|
|
14550
|
+
"case_activity_log",
|
|
14550
14551
|
"field",
|
|
14551
14552
|
"field_setting",
|
|
14552
14553
|
"list",
|
|
@@ -14589,6 +14590,12 @@
|
|
|
14589
14590
|
"$ref": "#/components/schemas/RoleActions"
|
|
14590
14591
|
}
|
|
14591
14592
|
},
|
|
14593
|
+
"case_activity_log": {
|
|
14594
|
+
"type": "array",
|
|
14595
|
+
"items": {
|
|
14596
|
+
"$ref": "#/components/schemas/RoleActions"
|
|
14597
|
+
}
|
|
14598
|
+
},
|
|
14592
14599
|
"task": {
|
|
14593
14600
|
"type": "array",
|
|
14594
14601
|
"items": {
|