Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bocchi #1078

Merged
merged 66 commits into from
May 17, 2024
Merged

Bocchi #1078

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
66 commits
Select commit Hold shift + click to select a range
3344ab9
IP-SPRINT inital commit for project bocchi
Feb 8, 2024
baa47f0
IP-SPRINT rename ejs file extensions in project-bocchi
Feb 8, 2024
a4fbc14
Add bocchi plop
Nick-NCSU Feb 8, 2024
aa56696
Add remaining step converters
Nick-NCSU Feb 9, 2024
eec4f55
IP-SPRINT choose template file based on step type
Feb 9, 2024
1c6775e
IP-SPRINT restructure bocchi
Feb 9, 2024
37925bf
Update converter
Nick-NCSU Feb 9, 2024
2e5c61f
Update step handlers to accept full steps
Nick-NCSU Feb 9, 2024
c92edb6
Update step handlers to accept full steps
Nick-NCSU Feb 9, 2024
6d863f0
Merge remote-tracking branch 'refs/remotes/origin/IP-SPRINT-bocchi' i…
Feb 9, 2024
a156e53
IP-SPRINT fix Nicks borked divergence and move template files around
Feb 9, 2024
8017906
IP-SPRINT updated converter template and added fields to test json
Feb 9, 2024
7202276
Add constants and converters
Nick-NCSU Feb 9, 2024
0df025a
IP-SPRINT add top-level template files
Feb 9, 2024
94bc674
Update step map and path
Nick-NCSU Feb 9, 2024
1732789
Merge branch 'IP-SPRINT-bocchi' of https://github.com/JupiterOne/sdk …
Nick-NCSU Feb 9, 2024
76c7602
Move files to steps folder
Nick-NCSU Feb 9, 2024
a89f0c8
Update step ids
Nick-NCSU Feb 9, 2024
da47b2f
IP-SPRINT Build client template
Feb 9, 2024
65d0524
Add partial for step map
Nick-NCSU Feb 9, 2024
e6f8801
Update helper function and fix src folder
Nick-NCSU Feb 9, 2024
3010a31
IP-SPRINT work on fetch-child-entities service client logic
Feb 9, 2024
4a71501
IP-SPRINT finished child-entities client logic
Feb 9, 2024
9f3695c
IP-SPRINT move client and client template to top-level src
Feb 9, 2024
4146ba9
IP-SPRINT add jupiterone folder and dev docs
Feb 9, 2024
e4a0b7a
IP-SPRINT remove the graph project I accidentally added...
Feb 9, 2024
691311d
Update type errors and finish constants
Nick-NCSU Feb 10, 2024
d044c93
Update errors in steps
Nick-NCSU Feb 10, 2024
b17f19e
Remove Jake
Nick-NCSU Feb 10, 2024
c304177
IP-SPRINT client can now handle GET and POST
Feb 10, 2024
b7525e9
Update indentation
Nick-NCSU Feb 10, 2024
f02081c
Remove Jake again
Nick-NCSU Feb 10, 2024
f54f2e3
Support direct relationships
Nick-NCSU Feb 10, 2024
c7072a9
Support mapped relationships
Nick-NCSU Feb 10, 2024
0bf4c65
IP-SPRINT client function names should be based off of response type
Feb 10, 2024
ed0f0ef
Combine steps and add test folder
Nick-NCSU Feb 10, 2024
bd2943a
Support tests
Nick-NCSU Feb 10, 2024
3fdca15
Add spec
Nick-NCSU Feb 10, 2024
786637f
Add types
Nick-NCSU Feb 10, 2024
3dcb176
Default request to any
Nick-NCSU Feb 11, 2024
2997d48
IP-SPRINT fix client
Feb 11, 2024
6dc0351
Add config
Nick-NCSU Feb 11, 2024
9e3775c
IP-SPRINT we now pass the parentEntity into the client iterate functi…
Feb 11, 2024
5408726
Support child singleton
Nick-NCSU Feb 11, 2024
4d59b7d
IP-SPRINT finish auth in client and ad j1 doc action
Feb 11, 2024
27a74a0
Fix remaining errors
Nick-NCSU Feb 11, 2024
d034e4e
Add signal sciences template
Nick-NCSU Feb 11, 2024
4166799
Rename stepmap.hbs to stepMap.hbs
i5o Mar 22, 2024
7134a2f
Merge branch 'main' into IP-SPRINT-bocchi
i5o Apr 2, 2024
fe6b3ca
bocchi updates
Apr 18, 2024
25e5082
Update Bocchi to use new standard http client
May 10, 2024
3fb0227
Update bocchi documentation
May 10, 2024
a046b72
remove unneeded httpServiceClient file
May 10, 2024
0c882ab
update mappedRelationship field name to mappings
May 10, 2024
664f02c
Merge pull request #1077 from JupiterOne/bocchi-updates
JakeFerrero May 10, 2024
687a36d
Merge branch 'main' into IP-SPRINT-bocchi
May 10, 2024
d404d88
IP-SPRINT update bocchi client template and add another example template
May 13, 2024
eae2fc9
IP-SPRINT run format
May 13, 2024
06d93b2
IP-SPRINT add authorize: false to auth call in bocchi client
May 15, 2024
b456b71
IP-SPRINT update docs
May 17, 2024
4857149
Merge branch 'main' into IP-SPRINT-bocchi
May 17, 2024
e366b42
package.lock
May 17, 2024
7cdcdbb
Fix document command in bocchi
May 17, 2024
b982379
package.lock again
May 17, 2024
16d5d11
Merge branch 'main' into IP-SPRINT-bocchi
May 17, 2024
b5351c9
prettier
May 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1673,13 +1673,13 @@ of the support.jupiterone.io site.
Old:

```ts
getData: <T,>(key: string) => Promise<T>;
getData: <T>(key: string) => Promise<T>;
```

New:

```ts
getData: <T,>(key: string) => Promise<T | undefined>;
getData: <T>(key: string) => Promise<T | undefined>;
```

## 5.8.0 - 2021-02-26
Expand Down
Loading