Skip to content

Commit 3cda8d4

Browse files
committed
PR feedback
1 parent d80bd2b commit 3cda8d4

File tree

5 files changed

+129
-45
lines changed

5 files changed

+129
-45
lines changed

output/schema/schema.json

Lines changed: 106 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/validation-errors.json

Lines changed: 0 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/query_rules/test/QueryRulesetTestResponse.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,23 @@
1717
* under the License.
1818
*/
1919

20+
import { Id } from '@_types/common'
2021
import { integer } from '@_types/Numeric'
21-
import { QueryRulesetMatchedRule } from './types'
2222

2323
export class Response {
2424
body: {
2525
total_matched_rules: integer
2626
matched_rules: QueryRulesetMatchedRule[]
2727
}
2828
}
29+
30+
export class QueryRulesetMatchedRule {
31+
/**
32+
* Ruleset unique identifier
33+
*/
34+
ruleset_id: Id
35+
/**
36+
* Rule unique identifier within that ruleset
37+
*/
38+
rule_id: Id
39+
}

specification/query_rules/test/types.ts

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)