@teamleader/focus-api-specification 1.201.0 → 1.203.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.201.0
6
+ version: 1.203.0
7
7
  servers:
8
8
  - url: https://api.focus.teamleader.eu
9
9
  variables: {}
@@ -30188,6 +30188,13 @@ paths:
30188
30188
  items:
30189
30189
  type: string
30190
30190
  description: an array of project ids
30191
+ assignee_ids:
30192
+ type: array
30193
+ items:
30194
+ type: string
30195
+ nullable: true
30196
+ example: f29abf48-337d-44b4-aad4-585f5277a456
30197
+ 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
30198
  exclude:
30192
30199
  type: object
30193
30200
  properties:
@@ -32531,6 +32538,10 @@ paths:
32531
32538
  type: array
32532
32539
  items:
32533
32540
  type: string
32541
+ page:
32542
+ title: Page
32543
+ type: object
32544
+ properties: *ref_6
32534
32545
  includes:
32535
32546
  type: string
32536
32547
  description: Comma-separated list of optional includes
@@ -32540,12 +32551,18 @@ paths:
32540
32551
  ids:
32541
32552
  - 31b9d864-da1d-060e-9811-f683896aeb11
32542
32553
  - 7c3c4edc-fd8d-0cc3-bd1e-9f3f9d7b7db2
32554
+ page:
32555
+ size: 20
32556
+ number: 1
32543
32557
  includes: custom_fields
32544
32558
  example:
32545
32559
  filter:
32546
32560
  ids:
32547
32561
  - 31b9d864-da1d-060e-9811-f683896aeb11
32548
32562
  - 7c3c4edc-fd8d-0cc3-bd1e-9f3f9d7b7db2
32563
+ page:
32564
+ size: 20
32565
+ number: 1
32549
32566
  includes: custom_fields
32550
32567
  required: false
32551
32568
  responses:
@@ -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.201.0
6
+ version: 1.203.0
7
7
  servers:
8
8
  - url: https://api.focus.teamleader.eu
9
9
  variables: {}
@@ -16357,12 +16357,18 @@ paths:
16357
16357
  ids:
16358
16358
  - 31b9d864-da1d-060e-9811-f683896aeb11
16359
16359
  - 7c3c4edc-fd8d-0cc3-bd1e-9f3f9d7b7db2
16360
+ page:
16361
+ size: 20
16362
+ number: 1
16360
16363
  includes: custom_fields
16361
16364
  example:
16362
16365
  filter:
16363
16366
  ids:
16364
16367
  - 31b9d864-da1d-060e-9811-f683896aeb11
16365
16368
  - 7c3c4edc-fd8d-0cc3-bd1e-9f3f9d7b7db2
16369
+ page:
16370
+ size: 20
16371
+ number: 1
16366
16372
  includes: custom_fields
16367
16373
  required: false
16368
16374
  responses:
@@ -30943,6 +30949,13 @@ components:
30943
30949
  items:
30944
30950
  type: string
30945
30951
  description: an array of project ids
30952
+ assignee_ids:
30953
+ type: array
30954
+ items:
30955
+ type: string
30956
+ nullable: true
30957
+ example: f29abf48-337d-44b4-aad4-585f5277a456
30958
+ 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.
30946
30959
  exclude:
30947
30960
  type: object
30948
30961
  properties:
@@ -32067,6 +32080,8 @@ components:
32067
32080
  type: array
32068
32081
  items:
32069
32082
  type: string
32083
+ page:
32084
+ $ref: '#/components/schemas/Page'
32070
32085
  includes:
32071
32086
  type: string
32072
32087
  description: Comma-separated list of optional includes
@@ -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 added the `page` parameter to `orders.list`.
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.201.0",
4
+ "version": "1.203.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"