Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
b3c1c8c
- Added api.yaml management spec file containing latest openapi specs.
BinoyOza-okta Jan 6, 2026
0e742a7
- Added pagination support to the SDK.
BinoyOza-okta Jan 6, 2026
4d9cd16
- Added integration tests for the following api files.
BinoyOza-okta Jan 7, 2026
4916076
- Added integration tests for the following api files.
BinoyOza-okta Jan 14, 2026
ae0d6ab
- Deleted old API files which doesn't exist in the new YAML specs.
BinoyOza-okta Jan 15, 2026
954f843
- Fixed File attribute empty issue. Assigned file parameter to form f…
BinoyOza-okta Jan 15, 2026
37c77f4
- Updated README.md CHANGELOG.md files.
BinoyOza-okta Jan 19, 2026
427ace2
- Added updates for next release information under CHANGELOG.md.
BinoyOza-okta Jan 19, 2026
8fd5f45
- Ran autoflake and autopep8 command changes.
BinoyOza-okta Jan 20, 2026
6716838
- Resolved Flake8 errors.
BinoyOza-okta Jan 23, 2026
af0e344
- Resolved Flake8 errors for the schema files under models directory.
BinoyOza-okta Jan 28, 2026
9b6cd5c
- Resolved Flake8 errors for the files under okta directory.
BinoyOza-okta Jan 28, 2026
38f887b
- Fixed lint issue with error_messages.py.
BinoyOza-okta Jan 28, 2026
be662f2
- Updated CHANGELOG.md with the information regarding new/updated/rem…
BinoyOza-okta Jan 28, 2026
13d1237
- Removed the environment variable declaration from client.mustache a…
BinoyOza-okta Jan 28, 2026
9ad4fdc
- .editorconfig - Universal editor configuration (works with all IDEs)
BinoyOza-okta Jan 28, 2026
13df870
- Fixed the issue for malware scanner reversing lab download failure.
BinoyOza-okta Jan 29, 2026
79f4be9
- Shifted API and Models documentation from README.md to okta/DOC_GUI…
BinoyOza-okta Jan 30, 2026
592742a
- Fixed the config.yaml for DOC_GUIDE.md.
BinoyOza-okta Jan 30, 2026
806d0f8
- Removed .openapi-generator directory.
BinoyOza-okta Jan 30, 2026
b993ffd
- nit changes to README.mustache and README.md files for code example…
BinoyOza-okta Jan 30, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
15 changes: 12 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,18 @@ jobs:
- run:
name: Download Reverse Labs Scanner
command: |
curl https://dso-resources.oktasecurity.com/scanner \
-H "x-api-key: $RESOURCE_TOKEN" \
curl --fail --show-error --location \
https://dso-resources.oktasecurity.com/scanner \
-H "x-api-key: $DSO_RLSECURE_TOKEN" \
--output rl_wrapper-0.0.2+35ababa-py3-none-any.whl

# Verify the downloaded file is a valid wheel
file rl_wrapper-0.0.2+35ababa-py3-none-any.whl
if ! file rl_wrapper-0.0.2+35ababa-py3-none-any.whl | grep -q "Zip archive"; then
echo "ERROR: Downloaded file is not a valid wheel archive"
cat rl_wrapper-0.0.2+35ababa-py3-none-any.whl
exit 1
fi
# Install the wrapper that was downloaded
- run:
name: Install RL Wrapper
Expand Down Expand Up @@ -88,4 +97,4 @@ workflows:
jobs:
- reversing-labs:
context:
- okta-dcp
- static-analysis
23 changes: 23 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# EditorConfig for Python project
# https://editorconfig.org

root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.py]
indent_style = space
indent_size = 4
max_line_length = 127

[*.{yml,yaml}]
indent_style = space
indent_size = 2

[*.{json,md}]
indent_style = space
indent_size = 2
22 changes: 22 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[flake8]
max-line-length = 127
max-complexity = 10
ignore = C901,W503,W504
exclude =
.git,
__pycache__,
.venv,
venv,
env,
build,
dist,
*.egg-info,
.tox,
.pytest_cache,
htmlcov
show-source = True
show-pep8 = True
count = True
statistics = True
per-file-ignores =
__init__.py:F401,F403
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ var/
*.egg-info/
.installed.cfg
*.egg
.openapi-generator/

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
31 changes: 0 additions & 31 deletions .gitlab-ci.yml

This file was deleted.

Loading