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
#### docs:v1
The following keys were added:
- schemas.SubstringMatchCriteria.properties.searchByRegex.description
- schemas.SubstringMatchCriteria.properties.searchByRegex.type
The following keys were changed:
- documentationLink
"description": "Indicates whether the search should respect case: - `True`: the search is case sensitive. - `False`: the search is case insensitive.",
3555
3555
"type": "boolean"
3556
3556
},
3557
+
"searchByRegex": {
3558
+
"description": "Optional. True if the find value should be treated as a regular expression. Any backslashes in the pattern should be escaped. - `True`: the search text is treated as a regular expressions. - `False`: the search text is treated as a substring for matching.",
3559
+
"type": "boolean"
3560
+
},
3557
3561
"text": {
3558
3562
"description": "The text to search for in the document.",
Copy file name to clipboardExpand all lines: src/apis/docs/v1.ts
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2680,6 +2680,10 @@ export namespace docs_v1 {
2680
2680
* Indicates whether the search should respect case: - `True`: the search is case sensitive. - `False`: the search is case insensitive.
2681
2681
*/
2682
2682
matchCase?: boolean|null;
2683
+
/**
2684
+
* Optional. True if the find value should be treated as a regular expression. Any backslashes in the pattern should be escaped. - `True`: the search text is treated as a regular expressions. - `False`: the search text is treated as a substring for matching.
0 commit comments