Skip to content

Commit b98a8fa

Browse files
authored
update npm dependencies (#988)
1 parent 14772dd commit b98a8fa

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
},
1616
"license": "MIT",
1717
"dependencies": {
18-
"@abaplint/cli": "^2.113.175",
18+
"@abaplint/cli": "^2.113.183",
1919
"@abaplint/database-pg": "^2.10.24",
2020
"@abaplint/database-sqlite": "^2.11.0",
21-
"@abaplint/runtime": "^2.11.32",
22-
"@abaplint/transpiler-cli": "^2.11.32",
21+
"@abaplint/runtime": "^2.11.45",
22+
"@abaplint/transpiler-cli": "^2.11.45",
2323
"0x": "^6.0.0"
2424
}
2525
}

src/oauth2/cl_oa2c_config_writer_api.clas.abap

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,20 @@ CLASS cl_oa2c_config_writer_api DEFINITION PUBLIC.
3232
METHODS read
3333
EXPORTING
3434
e_client_id TYPE string
35+
e_client_uuid TYPE string
3536
e_authorization_endpoint TYPE string
3637
e_token_endpoint TYPE string
3738
e_target_path TYPE string
3839
e_configured_granttype TYPE oa2c_granttype.
3940

41+
METHODS set_profiles
42+
IMPORTING
43+
it_profiles TYPE any.
44+
45+
METHODS set_client_secret
46+
IMPORTING
47+
i_client_secret TYPE string.
48+
4049
PRIVATE SECTION.
4150
TYPES: BEGIN OF ty_config,
4251
configuration TYPE oa2c_configuration,
@@ -56,6 +65,14 @@ ENDCLASS.
5665

5766
CLASS cl_oa2c_config_writer_api IMPLEMENTATION.
5867

68+
METHOD set_client_secret.
69+
ASSERT 1 = 'todo'.
70+
ENDMETHOD.
71+
72+
METHOD set_profiles.
73+
ASSERT 1 = 'todo'.
74+
ENDMETHOD.
75+
5976
METHOD create.
6077
ASSERT i_configured_granttype = c_granttype_cc.
6178

0 commit comments

Comments
 (0)