Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
kderusso committed Oct 18, 2024
1 parent d80bd2b commit 3cda8d4
Show file tree
Hide file tree
Showing 5 changed files with 129 additions and 45 deletions.
114 changes: 106 additions & 8 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions output/schema/validation-errors.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 12 additions & 1 deletion specification/query_rules/test/QueryRulesetTestResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,23 @@
* under the License.
*/

import { Id } from '@_types/common'
import { integer } from '@_types/Numeric'
import { QueryRulesetMatchedRule } from './types'

export class Response {
body: {
total_matched_rules: integer
matched_rules: QueryRulesetMatchedRule[]
}
}

export class QueryRulesetMatchedRule {
/**
* Ruleset unique identifier
*/
ruleset_id: Id
/**
* Rule unique identifier within that ruleset
*/
rule_id: Id
}
30 changes: 0 additions & 30 deletions specification/query_rules/test/types.ts

This file was deleted.

0 comments on commit 3cda8d4

Please sign in to comment.