@abaplint/core 2.103.7 → 2.103.8
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
|
@@ -4348,6 +4348,15 @@ declare class NumericType extends AbstractType {
|
|
|
4348
4348
|
toCDS(): string;
|
|
4349
4349
|
}
|
|
4350
4350
|
|
|
4351
|
+
declare class Oauth2Profile extends AbstractObject {
|
|
4352
|
+
getType(): string;
|
|
4353
|
+
getAllowedNaming(): {
|
|
4354
|
+
maxLength: number;
|
|
4355
|
+
allowNamespace: boolean;
|
|
4356
|
+
};
|
|
4357
|
+
getDescription(): string | undefined;
|
|
4358
|
+
}
|
|
4359
|
+
|
|
4351
4360
|
declare class ObjectCharacteristic extends AbstractObject {
|
|
4352
4361
|
getType(): string;
|
|
4353
4362
|
getAllowedNaming(): {
|
|
@@ -4461,6 +4470,7 @@ declare namespace Objects {
|
|
|
4461
4470
|
MIMEObject,
|
|
4462
4471
|
Namespace,
|
|
4463
4472
|
NumberRange,
|
|
4473
|
+
Oauth2Profile,
|
|
4464
4474
|
ObjectCharacteristic,
|
|
4465
4475
|
OutboundService,
|
|
4466
4476
|
PackageInterface,
|
|
@@ -100,6 +100,7 @@ __exportStar(require("./messaging_channel"), exports);
|
|
|
100
100
|
__exportStar(require("./mime_object"), exports);
|
|
101
101
|
__exportStar(require("./namespace"), exports);
|
|
102
102
|
__exportStar(require("./number_range"), exports);
|
|
103
|
+
__exportStar(require("./oauth2_profile"), exports);
|
|
103
104
|
__exportStar(require("./object_characteristic"), exports);
|
|
104
105
|
__exportStar(require("./outbound_service"), exports);
|
|
105
106
|
__exportStar(require("./package_interface"), exports);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Oauth2Profile = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class Oauth2Profile extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "OA2P";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.Oauth2Profile = Oauth2Profile;
|
|
21
|
+
//# sourceMappingURL=oauth2_profile.js.map
|
package/build/src/registry.js
CHANGED