Skip to content

Commit 8adff6f

Browse files
authored
Add range policy support to enrich (#1670)
1 parent df7a91b commit 8adff6f

File tree

5 files changed

+32
-3
lines changed

5 files changed

+32
-3
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,6 @@ typescript-generator/lib
5757
report
5858
output/schema/import-*
5959
.github/**/package-lock.json
60+
61+
# Editor lockfiles
62+
.*.swp

output/schema/schema.json

Lines changed: 25 additions & 3 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: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/enrich/_types/Policy.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export class Summary {
2626
export class Configuration {
2727
geo_match?: Policy
2828
match: Policy
29+
range: Policy
2930
}
3031

3132
export class Policy {

specification/enrich/put_policy/PutEnrichPolicyRequest.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,6 @@ export interface Request extends RequestBase {
3333
body: {
3434
geo_match?: Policy
3535
match?: Policy
36+
range?: Policy
3637
}
3738
}

0 commit comments

Comments
 (0)