@abaplint/core 2.105.8 → 2.105.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/abaplint.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ const combi_1 = require("../combi");
|
|
|
5
5
|
const _1 = require(".");
|
|
6
6
|
class SQLJoin extends combi_1.Expression {
|
|
7
7
|
getRunnable() {
|
|
8
|
-
const joinType = (0, combi_1.seq)((0, combi_1.optPrio)((0, combi_1.altPrio)("INNER", "LEFT OUTER", "LEFT")), "JOIN");
|
|
8
|
+
const joinType = (0, combi_1.seq)((0, combi_1.optPrio)((0, combi_1.altPrio)("INNER", "LEFT OUTER", "LEFT", "RIGHT OUTER", "RIGHT")), "JOIN");
|
|
9
9
|
const join = (0, combi_1.seq)(joinType, _1.SQLFromSource, "ON", _1.SQLCond);
|
|
10
10
|
return join;
|
|
11
11
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Oauth2Profile = void 0;
|
|
4
|
+
const xml_utils_1 = require("../xml_utils");
|
|
4
5
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
6
|
class Oauth2Profile extends _abstract_object_1.AbstractObject {
|
|
6
7
|
getType() {
|
|
@@ -16,6 +17,15 @@ class Oauth2Profile extends _abstract_object_1.AbstractObject {
|
|
|
16
17
|
// todo
|
|
17
18
|
return undefined;
|
|
18
19
|
}
|
|
20
|
+
listScopes() {
|
|
21
|
+
var _a, _b, _c;
|
|
22
|
+
const ret = [];
|
|
23
|
+
const parsed = super.parseRaw2();
|
|
24
|
+
for (const t of (0, xml_utils_1.xmlToArray)((_c = (_b = (_a = parsed.abapGit["asx:abap"]["asx:values"]) === null || _a === void 0 ? void 0 : _a.PROFILE) === null || _b === void 0 ? void 0 : _b.T_SCOPES) === null || _c === void 0 ? void 0 : _c.OA2P_SCOPES)) {
|
|
25
|
+
ret.push(t.SCOPE);
|
|
26
|
+
}
|
|
27
|
+
return ret;
|
|
28
|
+
}
|
|
19
29
|
}
|
|
20
30
|
exports.Oauth2Profile = Oauth2Profile;
|
|
21
31
|
//# sourceMappingURL=oauth2_profile.js.map
|
package/build/src/registry.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.105.
|
|
3
|
+
"version": "2.105.10",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"@microsoft/api-extractor": "^7.39.1",
|
|
54
54
|
"@types/chai": "^4.3.11",
|
|
55
55
|
"@types/mocha": "^10.0.6",
|
|
56
|
-
"@types/node": "^20.10.
|
|
57
|
-
"chai": "^4.
|
|
56
|
+
"@types/node": "^20.10.8",
|
|
57
|
+
"chai": "^4.4.0",
|
|
58
58
|
"eslint": "^8.56.0",
|
|
59
59
|
"mocha": "^10.2.0",
|
|
60
60
|
"c8": "^9.0.0",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"typescript": "^5.3.3"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"fast-xml-parser": "^4.3.
|
|
66
|
+
"fast-xml-parser": "^4.3.3",
|
|
67
67
|
"json5": "^2.2.3",
|
|
68
68
|
"vscode-languageserver-types": "^3.17.5"
|
|
69
69
|
}
|