@liaisongroup/assist-api-js-client 1.5.190 → 1.5.192
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.json +2 -2
- package/package.json +1 -1
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.427",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "MIT",
|
|
9
9
|
"url": "https://opensource.org/licenses/MIT"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
40
|
"name": "Filtering",
|
|
41
|
-
"description": "Is handled via [JSONAPI standard approach](https://jsonapi.org/format/#fetching-filtering).\n\nQuery params `filter[<field>]` are used with [these matchers](https://activerecord-hackery.github.io/ransack/getting-started/search-matches/#search-matchers) - e.g. `filter[name_eq]=john`.\n\nYou can only filter by attributes that are exposed for the resource on the resource attributes endpoints.\n\nTo apply multiple filters you can use `filter[<field>]` multiple times - e.g. `filter[name_eq]=john&filter[email_cont]=gmail.com`. Note that filters will be combined using AND (results will have to match ALL conditions).\n"
|
|
41
|
+
"description": "Is handled via [JSONAPI standard approach](https://jsonapi.org/format/#fetching-filtering).\n\nQuery params `filter[<field>]` are used with [these matchers](https://activerecord-hackery.github.io/ransack/getting-started/search-matches/#search-matchers) - e.g. `filter[name_eq]=john`.\n\nYou can only filter by attributes that are exposed for the resource on the resource attributes endpoints.\n\nTo apply multiple filters you can use `filter[<field>]` multiple times - e.g. `filter[name_eq]=john&filter[email_cont]=gmail.com`. Note that filters will be combined using AND (results will have to match ALL conditions).\n\nSome special string values are supported for convenience:\n\n - `%current_user_id%` - the ID of the current user\n - `%current_user_team_ids%` - the IDs of the teams the current user is\n - `%date:EXPRESSION%` - where EXPRESSION can be things like the following:\n - `%date:today%` - the current date in ISO-8601 format\n - `%date:1.day.ago%` - yesterday's date in ISO-8601 format\n - `%date:1.day.from_now%` - tomorrows's date in ISO-8601 format\n - `%date:2.weeks.ago%` - the date a week ago in ISO-8601 format\n - `%date:1.month.ago%` - the date a week ago in ISO-8601 format\n - `%date:1.year.ago%` - the date a week ago in ISO-8601 format\n"
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"name": "Inclusions",
|
package/package.json
CHANGED