Skip to content

Commit

Permalink
Merge pull request #1 from huntresslabs/add-settings-support
Browse files Browse the repository at this point in the history
Add support for settings
  • Loading branch information
lksnyder0 authored Jun 11, 2024
2 parents 4b2c7c6 + 081293d commit da568e7
Show file tree
Hide file tree
Showing 6 changed files with 833 additions and 805 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Tests

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

jobs:
tests:
Expand Down
4 changes: 4 additions & 0 deletions scripts/_types/schema_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ class Field(TypedDict, total=False):
name: str
node_name: str
normalize: List[str]
# normalizer: str
norms: bool
required: bool
short: str
Expand All @@ -75,6 +76,8 @@ class SchemaDetails(TypedDict, total=False):
prefix: str
reusable: Reuseable
root: bool
# root_type: str
settings: Dict[str, str]
title: str


Expand All @@ -92,6 +95,7 @@ class FieldNestedEntry(TypedDict, total=False):
name: str
node_name: str
prefix: str
settings: Dict[str, str]
short: str
title: str
type: str
Loading

0 comments on commit da568e7

Please sign in to comment.