@teamleader/focus-api-specification 1.202.0 → 1.204.0

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.
@@ -3,7 +3,7 @@ info:
3
3
  title: Teamleader API
4
4
  description: This is the documentation of the Teamleader Focus API. If you have any feedback, or are you missing functionality to support your use case? Let us know via [api@teamleader.eu](mailto:api@teamleader.eu).
5
5
  contact: {}
6
- version: 1.202.0
6
+ version: 1.204.0
7
7
  servers:
8
8
  - url: https://api.focus.teamleader.eu
9
9
  variables: {}
@@ -3534,7 +3534,9 @@ paths:
3534
3534
  description: ''
3535
3535
  company_id:
3536
3536
  type: string
3537
+ nullable: true
3537
3538
  example: cb8da52a-ce89-4bf6-8f7e-8ee6cb85e3b5
3539
+ description: Filters on contacts linked to this company. To fetch the contacts that are linked to no company at all, provide `null`. A contact whose only linked company has been deleted is part of that set.
3538
3540
  term:
3539
3541
  type: string
3540
3542
  description: Filters on first_name, last_name, email and telephone
@@ -30188,6 +30190,13 @@ paths:
30188
30190
  items:
30189
30191
  type: string
30190
30192
  description: an array of project ids
30193
+ assignee_ids:
30194
+ type: array
30195
+ items:
30196
+ type: string
30197
+ nullable: true
30198
+ example: f29abf48-337d-44b4-aad4-585f5277a456
30199
+ description: Only lists tickets assigned to one of these users. Pass `null` as an entry to include tickets that are unassigned, e.g. `["f29abf48-337d-44b4-aad4-585f5277a456", null]`, or `[null]` for the unassigned ones only.
30191
30200
  exclude:
30192
30201
  type: object
30193
30202
  properties:
@@ -3,7 +3,7 @@ info:
3
3
  title: Teamleader API
4
4
  description: This is the documentation of the Teamleader Focus API. If you have any feedback, or are you missing functionality to support your use case? Let us know via [api@teamleader.eu](mailto:api@teamleader.eu).
5
5
  contact: {}
6
- version: 1.202.0
6
+ version: 1.204.0
7
7
  servers:
8
8
  - url: https://api.focus.teamleader.eu
9
9
  variables: {}
@@ -18702,7 +18702,9 @@ components:
18702
18702
  description: ''
18703
18703
  company_id:
18704
18704
  type: string
18705
+ nullable: true
18705
18706
  example: cb8da52a-ce89-4bf6-8f7e-8ee6cb85e3b5
18707
+ description: Filters on contacts linked to this company. To fetch the contacts that are linked to no company at all, provide `null`. A contact whose only linked company has been deleted is part of that set.
18706
18708
  term:
18707
18709
  type: string
18708
18710
  description: Filters on first_name, last_name, email and telephone
@@ -30949,6 +30951,13 @@ components:
30949
30951
  items:
30950
30952
  type: string
30951
30953
  description: an array of project ids
30954
+ assignee_ids:
30955
+ type: array
30956
+ items:
30957
+ type: string
30958
+ nullable: true
30959
+ example: f29abf48-337d-44b4-aad4-585f5277a456
30960
+ description: Only lists tickets assigned to one of these users. Pass `null` as an entry to include tickets that are unassigned, e.g. `["f29abf48-337d-44b4-aad4-585f5277a456", null]`, or `[null]` for the unassigned ones only.
30952
30961
  exclude:
30953
30962
  type: object
30954
30963
  properties:
@@ -0,0 +1,5 @@
1
+ ---
2
+ category: addition
3
+ ---
4
+
5
+ We added an `assignee_ids` filter to `tickets.list`. Pass an array of user ids to only get the tickets assigned to those users, and `null` as an entry to include the tickets that are unassigned.
@@ -0,0 +1,5 @@
1
+ ---
2
+ category: addition
3
+ ---
4
+
5
+ We made the `company_id` filter on `contacts.list` nullable. Passing `null` returns the contacts that are linked to no company at all, so finding them no longer means paging through every contact. A contact whose only linked company has been deleted is part of that set.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@teamleader/focus-api-specification",
3
3
  "description": "Teamleader Focus API Specification",
4
- "version": "1.202.0",
4
+ "version": "1.204.0",
5
5
  "author": "Teamleader <development@teamleader.eu> (https://www.teamleader.eu)",
6
6
  "bugs": {
7
7
  "url": "https://github.com/teamleadercrm/focus-api-specification/issues"