Skip to content

update npm dependencies #988

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

Merged
merged 4 commits into from
Aug 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
},
"license": "MIT",
"dependencies": {
"@abaplint/cli": "^2.113.175",
"@abaplint/cli": "^2.113.183",
"@abaplint/database-pg": "^2.10.24",
"@abaplint/database-sqlite": "^2.11.0",
"@abaplint/runtime": "^2.11.32",
"@abaplint/transpiler-cli": "^2.11.32",
"@abaplint/runtime": "^2.11.45",
"@abaplint/transpiler-cli": "^2.11.45",
"0x": "^6.0.0"
}
}
17 changes: 17 additions & 0 deletions src/oauth2/cl_oa2c_config_writer_api.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,20 @@ CLASS cl_oa2c_config_writer_api DEFINITION PUBLIC.
METHODS read
EXPORTING
e_client_id TYPE string
e_client_uuid TYPE string
e_authorization_endpoint TYPE string
e_token_endpoint TYPE string
e_target_path TYPE string
e_configured_granttype TYPE oa2c_granttype.

METHODS set_profiles
IMPORTING
it_profiles TYPE any.

METHODS set_client_secret
IMPORTING
i_client_secret TYPE string.

PRIVATE SECTION.
TYPES: BEGIN OF ty_config,
configuration TYPE oa2c_configuration,
Expand All @@ -56,6 +65,14 @@ ENDCLASS.

CLASS cl_oa2c_config_writer_api IMPLEMENTATION.

METHOD set_client_secret.
ASSERT 1 = 'todo'.
ENDMETHOD.

METHOD set_profiles.
ASSERT 1 = 'todo'.
ENDMETHOD.

METHOD create.
ASSERT i_configured_granttype = c_granttype_cc.

Expand Down