You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .generator/schemas/v2/openapi.yaml
+25-4Lines changed: 25 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -82741,7 +82741,12 @@ components:
82741
82741
definition:
82742
82742
$ref: "#/components/schemas/WidgetDefinition"
82743
82743
is_favorited:
82744
-
description: "Will be implemented soon. Currently always returns false."
82744
+
description: |-
82745
+
Whether the current user has favorited this widget. Populated on get,
82746
+
batch_get, update, and search responses; create responses always return
82747
+
`false` because a widget can only be favorited after it exists.
82748
+
Favoriting itself is performed through the shared favorites API, not
82749
+
this service.
82745
82750
example: false
82746
82751
type: boolean
82747
82752
modified_at:
@@ -134588,7 +134593,17 @@ paths:
134588
134593
- teams_read
134589
134594
/api/v2/widgets/{experience_type}:
134590
134595
get:
134591
-
description: Search and list widgets for a given experience type. Supports filtering by widget type, creator, title, and tags, as well as sorting and pagination.
134596
+
description: |-
134597
+
Search and list widgets for a given experience type, with filtering, sorting, and pagination.
134598
+
134599
+
**Response meta** carries totals scoped to the current filter:
134600
+
- `filtered_total` — widgets matching the filter.
134601
+
- `created_by_you_total` — among the matches, how many the current user created.
134602
+
- `favorited_by_you_total` — among the matches, how many the current user has favorited.
134603
+
- `created_by_anyone_total` — total widgets in the experience type, ignoring filters.
134604
+
134605
+
Each returned widget includes `is_favorited` reflecting the current user's favorite status.
134606
+
Favoriting itself is performed through the shared favorites API, not this endpoint.
134592
134607
operationId: SearchWidgets
134593
134608
parameters:
134594
134609
- description: The experience type for the widget.
@@ -134624,8 +134639,14 @@ paths:
134624
134639
schema:
134625
134640
type: string
134626
134641
- description: |-
134627
-
Sort field for the results. Prefix with `-` for descending order.
0 commit comments