From 62ef764b8e8788155efa070804a68715f143ae82 Mon Sep 17 00:00:00 2001 From: Kathleen DeRusso Date: Tue, 19 Nov 2024 08:50:46 -0500 Subject: [PATCH] Add rule_type_counts to QueryRulesetListResponse spec --- specification/query_rules/list_rulesets/types.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/specification/query_rules/list_rulesets/types.ts b/specification/query_rules/list_rulesets/types.ts index fd50af5c33..1441eb6af6 100644 --- a/specification/query_rules/list_rulesets/types.ts +++ b/specification/query_rules/list_rulesets/types.ts @@ -31,7 +31,12 @@ export class QueryRulesetListItem { rule_total_count: integer /** - * A map of criteria type to the number of rules of that type + * A map of criteria type (e.g. exact) to the number of rules of that type */ rule_criteria_types_counts: Dictionary + + /** + * A map of rule type (e.g. pinned) to the number of rules of that type + */ + rule_type_counts: Dictionary }