@abaplint/core 2.103.7 → 2.103.9
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 +241 -221
- package/build/src/abap/5_syntax/expressions/value_body.js +1 -1
- package/build/src/abap/5_syntax/spaghetti_scope.js +2 -2
- package/build/src/abap/5_syntax/statements/controls.js +1 -1
- package/build/src/objects/index.js +24 -22
- package/build/src/objects/{zn02.js → neptune_api.js} +4 -4
- package/build/src/objects/{zn01.js → neptune_app.js} +4 -4
- package/build/src/objects/{zn13.js → neptune_custom_color.js} +4 -4
- package/build/src/objects/{zn15.js → neptune_custom_js_helper.js} +4 -4
- package/build/src/objects/{zn16.js → neptune_documentation.js} +4 -4
- package/build/src/objects/{zn09.js → neptune_enhancement.js} +4 -4
- package/build/src/objects/{zn03.js → neptune_launchpad.js} +4 -4
- package/build/src/objects/{zn07.js → neptune_launchpad_layout.js} +4 -4
- package/build/src/objects/{zn10.js → neptune_login_page.js} +4 -4
- package/build/src/objects/{zn18.js → neptune_media_library.js} +4 -4
- package/build/src/objects/{zn19.js → neptune_media_pack.js} +4 -4
- package/build/src/objects/neptune_metadata.js +21 -0
- package/build/src/objects/{zn22.js → neptune_mobile_client.js} +4 -4
- package/build/src/objects/{zn21.js → neptune_odata.js} +4 -4
- package/build/src/objects/{zn06.js → neptune_policy.js} +4 -4
- package/build/src/objects/{zn17.js → neptune_rfc_mapping.js} +4 -4
- package/build/src/objects/{zn14.js → neptune_rich_text_template.js} +4 -4
- package/build/src/objects/{zn12.js → neptune_splash_screen.js} +4 -4
- package/build/src/objects/{zn11.js → neptune_sticky_banner.js} +4 -4
- package/build/src/objects/{zn05.js → neptune_tile.js} +4 -4
- package/build/src/objects/{zn04.js → neptune_tile_group.js} +4 -4
- package/build/src/objects/{zn08.js → neptune_tile_layout.js} +4 -4
- package/build/src/objects/{zn20.js → neptune_url_alias.js} +4 -4
- package/build/src/objects/oauth2_profile.js +21 -0
- package/build/src/registry.js +1 -1
- package/build/src/rules/ambiguous_statement.js +2 -1
- package/build/src/rules/msag_consistency.js +3 -3
- package/package.json +6 -6
package/build/abaplint.d.ts
CHANGED
|
@@ -4281,6 +4281,213 @@ declare class NamespaceSimpleName extends Expression {
|
|
|
4281
4281
|
getRunnable(): IStatementRunnable;
|
|
4282
4282
|
}
|
|
4283
4283
|
|
|
4284
|
+
declare class NeptuneAPI extends AbstractObject {
|
|
4285
|
+
getType(): string;
|
|
4286
|
+
getAllowedNaming(): {
|
|
4287
|
+
maxLength: number;
|
|
4288
|
+
allowNamespace: boolean;
|
|
4289
|
+
};
|
|
4290
|
+
getDescription(): string | undefined;
|
|
4291
|
+
}
|
|
4292
|
+
|
|
4293
|
+
declare class NeptuneApp extends AbstractObject {
|
|
4294
|
+
getType(): string;
|
|
4295
|
+
getAllowedNaming(): {
|
|
4296
|
+
maxLength: number;
|
|
4297
|
+
allowNamespace: boolean;
|
|
4298
|
+
};
|
|
4299
|
+
getDescription(): string | undefined;
|
|
4300
|
+
}
|
|
4301
|
+
|
|
4302
|
+
declare class NeptuneCustomColor extends AbstractObject {
|
|
4303
|
+
getType(): string;
|
|
4304
|
+
getAllowedNaming(): {
|
|
4305
|
+
maxLength: number;
|
|
4306
|
+
allowNamespace: boolean;
|
|
4307
|
+
};
|
|
4308
|
+
getDescription(): string | undefined;
|
|
4309
|
+
}
|
|
4310
|
+
|
|
4311
|
+
declare class NeptuneCustomJSHelper extends AbstractObject {
|
|
4312
|
+
getType(): string;
|
|
4313
|
+
getAllowedNaming(): {
|
|
4314
|
+
maxLength: number;
|
|
4315
|
+
allowNamespace: boolean;
|
|
4316
|
+
};
|
|
4317
|
+
getDescription(): string | undefined;
|
|
4318
|
+
}
|
|
4319
|
+
|
|
4320
|
+
declare class NeptuneDocumentation extends AbstractObject {
|
|
4321
|
+
getType(): string;
|
|
4322
|
+
getAllowedNaming(): {
|
|
4323
|
+
maxLength: number;
|
|
4324
|
+
allowNamespace: boolean;
|
|
4325
|
+
};
|
|
4326
|
+
getDescription(): string | undefined;
|
|
4327
|
+
}
|
|
4328
|
+
|
|
4329
|
+
declare class NeptuneEnhancement extends AbstractObject {
|
|
4330
|
+
getType(): string;
|
|
4331
|
+
getAllowedNaming(): {
|
|
4332
|
+
maxLength: number;
|
|
4333
|
+
allowNamespace: boolean;
|
|
4334
|
+
};
|
|
4335
|
+
getDescription(): string | undefined;
|
|
4336
|
+
}
|
|
4337
|
+
|
|
4338
|
+
declare class NeptuneLaunchpad extends AbstractObject {
|
|
4339
|
+
getType(): string;
|
|
4340
|
+
getAllowedNaming(): {
|
|
4341
|
+
maxLength: number;
|
|
4342
|
+
allowNamespace: boolean;
|
|
4343
|
+
};
|
|
4344
|
+
getDescription(): string | undefined;
|
|
4345
|
+
}
|
|
4346
|
+
|
|
4347
|
+
declare class NeptuneLaunchpadLayout extends AbstractObject {
|
|
4348
|
+
getType(): string;
|
|
4349
|
+
getAllowedNaming(): {
|
|
4350
|
+
maxLength: number;
|
|
4351
|
+
allowNamespace: boolean;
|
|
4352
|
+
};
|
|
4353
|
+
getDescription(): string | undefined;
|
|
4354
|
+
}
|
|
4355
|
+
|
|
4356
|
+
declare class NeptuneLoginPage extends AbstractObject {
|
|
4357
|
+
getType(): string;
|
|
4358
|
+
getAllowedNaming(): {
|
|
4359
|
+
maxLength: number;
|
|
4360
|
+
allowNamespace: boolean;
|
|
4361
|
+
};
|
|
4362
|
+
getDescription(): string | undefined;
|
|
4363
|
+
}
|
|
4364
|
+
|
|
4365
|
+
declare class NeptuneMediaLibrary extends AbstractObject {
|
|
4366
|
+
getType(): string;
|
|
4367
|
+
getAllowedNaming(): {
|
|
4368
|
+
maxLength: number;
|
|
4369
|
+
allowNamespace: boolean;
|
|
4370
|
+
};
|
|
4371
|
+
getDescription(): string | undefined;
|
|
4372
|
+
}
|
|
4373
|
+
|
|
4374
|
+
declare class NeptuneMediaPack extends AbstractObject {
|
|
4375
|
+
getType(): string;
|
|
4376
|
+
getAllowedNaming(): {
|
|
4377
|
+
maxLength: number;
|
|
4378
|
+
allowNamespace: boolean;
|
|
4379
|
+
};
|
|
4380
|
+
getDescription(): string | undefined;
|
|
4381
|
+
}
|
|
4382
|
+
|
|
4383
|
+
declare class NeptuneMetadata extends AbstractObject {
|
|
4384
|
+
getType(): string;
|
|
4385
|
+
getAllowedNaming(): {
|
|
4386
|
+
maxLength: number;
|
|
4387
|
+
allowNamespace: boolean;
|
|
4388
|
+
};
|
|
4389
|
+
getDescription(): string | undefined;
|
|
4390
|
+
}
|
|
4391
|
+
|
|
4392
|
+
declare class NeptuneMobileClient extends AbstractObject {
|
|
4393
|
+
getType(): string;
|
|
4394
|
+
getAllowedNaming(): {
|
|
4395
|
+
maxLength: number;
|
|
4396
|
+
allowNamespace: boolean;
|
|
4397
|
+
};
|
|
4398
|
+
getDescription(): string | undefined;
|
|
4399
|
+
}
|
|
4400
|
+
|
|
4401
|
+
declare class NeptuneOData extends AbstractObject {
|
|
4402
|
+
getType(): string;
|
|
4403
|
+
getAllowedNaming(): {
|
|
4404
|
+
maxLength: number;
|
|
4405
|
+
allowNamespace: boolean;
|
|
4406
|
+
};
|
|
4407
|
+
getDescription(): string | undefined;
|
|
4408
|
+
}
|
|
4409
|
+
|
|
4410
|
+
declare class NeptunePolicy extends AbstractObject {
|
|
4411
|
+
getType(): string;
|
|
4412
|
+
getAllowedNaming(): {
|
|
4413
|
+
maxLength: number;
|
|
4414
|
+
allowNamespace: boolean;
|
|
4415
|
+
};
|
|
4416
|
+
getDescription(): string | undefined;
|
|
4417
|
+
}
|
|
4418
|
+
|
|
4419
|
+
declare class NeptuneRFCMapping extends AbstractObject {
|
|
4420
|
+
getType(): string;
|
|
4421
|
+
getAllowedNaming(): {
|
|
4422
|
+
maxLength: number;
|
|
4423
|
+
allowNamespace: boolean;
|
|
4424
|
+
};
|
|
4425
|
+
getDescription(): string | undefined;
|
|
4426
|
+
}
|
|
4427
|
+
|
|
4428
|
+
declare class NeptuneRichTextTemplate extends AbstractObject {
|
|
4429
|
+
getType(): string;
|
|
4430
|
+
getAllowedNaming(): {
|
|
4431
|
+
maxLength: number;
|
|
4432
|
+
allowNamespace: boolean;
|
|
4433
|
+
};
|
|
4434
|
+
getDescription(): string | undefined;
|
|
4435
|
+
}
|
|
4436
|
+
|
|
4437
|
+
declare class NeptuneSplashScreen extends AbstractObject {
|
|
4438
|
+
getType(): string;
|
|
4439
|
+
getAllowedNaming(): {
|
|
4440
|
+
maxLength: number;
|
|
4441
|
+
allowNamespace: boolean;
|
|
4442
|
+
};
|
|
4443
|
+
getDescription(): string | undefined;
|
|
4444
|
+
}
|
|
4445
|
+
|
|
4446
|
+
declare class NeptuneStickyBanner extends AbstractObject {
|
|
4447
|
+
getType(): string;
|
|
4448
|
+
getAllowedNaming(): {
|
|
4449
|
+
maxLength: number;
|
|
4450
|
+
allowNamespace: boolean;
|
|
4451
|
+
};
|
|
4452
|
+
getDescription(): string | undefined;
|
|
4453
|
+
}
|
|
4454
|
+
|
|
4455
|
+
declare class NeptuneTile extends AbstractObject {
|
|
4456
|
+
getType(): string;
|
|
4457
|
+
getAllowedNaming(): {
|
|
4458
|
+
maxLength: number;
|
|
4459
|
+
allowNamespace: boolean;
|
|
4460
|
+
};
|
|
4461
|
+
getDescription(): string | undefined;
|
|
4462
|
+
}
|
|
4463
|
+
|
|
4464
|
+
declare class NeptuneTileGroup extends AbstractObject {
|
|
4465
|
+
getType(): string;
|
|
4466
|
+
getAllowedNaming(): {
|
|
4467
|
+
maxLength: number;
|
|
4468
|
+
allowNamespace: boolean;
|
|
4469
|
+
};
|
|
4470
|
+
getDescription(): string | undefined;
|
|
4471
|
+
}
|
|
4472
|
+
|
|
4473
|
+
declare class NeptuneTileLayout extends AbstractObject {
|
|
4474
|
+
getType(): string;
|
|
4475
|
+
getAllowedNaming(): {
|
|
4476
|
+
maxLength: number;
|
|
4477
|
+
allowNamespace: boolean;
|
|
4478
|
+
};
|
|
4479
|
+
getDescription(): string | undefined;
|
|
4480
|
+
}
|
|
4481
|
+
|
|
4482
|
+
declare class NeptuneURLAlias extends AbstractObject {
|
|
4483
|
+
getType(): string;
|
|
4484
|
+
getAllowedNaming(): {
|
|
4485
|
+
maxLength: number;
|
|
4486
|
+
allowNamespace: boolean;
|
|
4487
|
+
};
|
|
4488
|
+
getDescription(): string | undefined;
|
|
4489
|
+
}
|
|
4490
|
+
|
|
4284
4491
|
declare class NewLine implements IStatement {
|
|
4285
4492
|
getMatcher(): IStatementRunnable;
|
|
4286
4493
|
}
|
|
@@ -4348,6 +4555,15 @@ declare class NumericType extends AbstractType {
|
|
|
4348
4555
|
toCDS(): string;
|
|
4349
4556
|
}
|
|
4350
4557
|
|
|
4558
|
+
declare class Oauth2Profile extends AbstractObject {
|
|
4559
|
+
getType(): string;
|
|
4560
|
+
getAllowedNaming(): {
|
|
4561
|
+
maxLength: number;
|
|
4562
|
+
allowNamespace: boolean;
|
|
4563
|
+
};
|
|
4564
|
+
getDescription(): string | undefined;
|
|
4565
|
+
}
|
|
4566
|
+
|
|
4351
4567
|
declare class ObjectCharacteristic extends AbstractObject {
|
|
4352
4568
|
getType(): string;
|
|
4353
4569
|
getAllowedNaming(): {
|
|
@@ -4461,6 +4677,7 @@ declare namespace Objects {
|
|
|
4461
4677
|
MIMEObject,
|
|
4462
4678
|
Namespace,
|
|
4463
4679
|
NumberRange,
|
|
4680
|
+
Oauth2Profile,
|
|
4464
4681
|
ObjectCharacteristic,
|
|
4465
4682
|
OutboundService,
|
|
4466
4683
|
PackageInterface,
|
|
@@ -4505,28 +4722,29 @@ declare namespace Objects {
|
|
|
4505
4722
|
WebDynproComponentConfiguration,
|
|
4506
4723
|
WebDynproComponent,
|
|
4507
4724
|
WebMIME,
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
|
|
4519
|
-
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
|
-
|
|
4529
|
-
|
|
4725
|
+
NeptuneMetadata,
|
|
4726
|
+
NeptuneApp,
|
|
4727
|
+
NeptuneAPI,
|
|
4728
|
+
NeptuneLaunchpad,
|
|
4729
|
+
NeptuneTileGroup,
|
|
4730
|
+
NeptuneTile,
|
|
4731
|
+
NeptunePolicy,
|
|
4732
|
+
NeptuneLaunchpadLayout,
|
|
4733
|
+
NeptuneTileLayout,
|
|
4734
|
+
NeptuneEnhancement,
|
|
4735
|
+
NeptuneLoginPage,
|
|
4736
|
+
NeptuneStickyBanner,
|
|
4737
|
+
NeptuneSplashScreen,
|
|
4738
|
+
NeptuneCustomColor,
|
|
4739
|
+
NeptuneRichTextTemplate,
|
|
4740
|
+
NeptuneCustomJSHelper,
|
|
4741
|
+
NeptuneDocumentation,
|
|
4742
|
+
NeptuneRFCMapping,
|
|
4743
|
+
NeptuneMediaLibrary,
|
|
4744
|
+
NeptuneMediaPack,
|
|
4745
|
+
NeptuneURLAlias,
|
|
4746
|
+
NeptuneOData,
|
|
4747
|
+
NeptuneMobileClient
|
|
4530
4748
|
}
|
|
4531
4749
|
}
|
|
4532
4750
|
export { Objects }
|
|
@@ -6682,7 +6900,7 @@ declare class ValueBodyLines extends Expression {
|
|
|
6682
6900
|
}
|
|
6683
6901
|
|
|
6684
6902
|
export declare enum Version {
|
|
6685
|
-
OpenABAP = "open-abap",
|
|
6903
|
+
OpenABAP = "open-abap",// as 702, but with some extra new language features
|
|
6686
6904
|
v700 = "v700",
|
|
6687
6905
|
v702 = "v702",
|
|
6688
6906
|
v740sp02 = "v740sp02",
|
|
@@ -6972,202 +7190,4 @@ declare class XStringType extends AbstractType {
|
|
|
6972
7190
|
toCDS(): string;
|
|
6973
7191
|
}
|
|
6974
7192
|
|
|
6975
|
-
declare class ZN01 extends AbstractObject {
|
|
6976
|
-
getType(): string;
|
|
6977
|
-
getAllowedNaming(): {
|
|
6978
|
-
maxLength: number;
|
|
6979
|
-
allowNamespace: boolean;
|
|
6980
|
-
};
|
|
6981
|
-
getDescription(): string | undefined;
|
|
6982
|
-
}
|
|
6983
|
-
|
|
6984
|
-
declare class ZN0122 extends AbstractObject {
|
|
6985
|
-
getType(): string;
|
|
6986
|
-
getAllowedNaming(): {
|
|
6987
|
-
maxLength: number;
|
|
6988
|
-
allowNamespace: boolean;
|
|
6989
|
-
};
|
|
6990
|
-
getDescription(): string | undefined;
|
|
6991
|
-
}
|
|
6992
|
-
|
|
6993
|
-
declare class ZN02 extends AbstractObject {
|
|
6994
|
-
getType(): string;
|
|
6995
|
-
getAllowedNaming(): {
|
|
6996
|
-
maxLength: number;
|
|
6997
|
-
allowNamespace: boolean;
|
|
6998
|
-
};
|
|
6999
|
-
getDescription(): string | undefined;
|
|
7000
|
-
}
|
|
7001
|
-
|
|
7002
|
-
declare class ZN03 extends AbstractObject {
|
|
7003
|
-
getType(): string;
|
|
7004
|
-
getAllowedNaming(): {
|
|
7005
|
-
maxLength: number;
|
|
7006
|
-
allowNamespace: boolean;
|
|
7007
|
-
};
|
|
7008
|
-
getDescription(): string | undefined;
|
|
7009
|
-
}
|
|
7010
|
-
|
|
7011
|
-
declare class ZN04 extends AbstractObject {
|
|
7012
|
-
getType(): string;
|
|
7013
|
-
getAllowedNaming(): {
|
|
7014
|
-
maxLength: number;
|
|
7015
|
-
allowNamespace: boolean;
|
|
7016
|
-
};
|
|
7017
|
-
getDescription(): string | undefined;
|
|
7018
|
-
}
|
|
7019
|
-
|
|
7020
|
-
declare class ZN05 extends AbstractObject {
|
|
7021
|
-
getType(): string;
|
|
7022
|
-
getAllowedNaming(): {
|
|
7023
|
-
maxLength: number;
|
|
7024
|
-
allowNamespace: boolean;
|
|
7025
|
-
};
|
|
7026
|
-
getDescription(): string | undefined;
|
|
7027
|
-
}
|
|
7028
|
-
|
|
7029
|
-
declare class ZN06 extends AbstractObject {
|
|
7030
|
-
getType(): string;
|
|
7031
|
-
getAllowedNaming(): {
|
|
7032
|
-
maxLength: number;
|
|
7033
|
-
allowNamespace: boolean;
|
|
7034
|
-
};
|
|
7035
|
-
getDescription(): string | undefined;
|
|
7036
|
-
}
|
|
7037
|
-
|
|
7038
|
-
declare class ZN07 extends AbstractObject {
|
|
7039
|
-
getType(): string;
|
|
7040
|
-
getAllowedNaming(): {
|
|
7041
|
-
maxLength: number;
|
|
7042
|
-
allowNamespace: boolean;
|
|
7043
|
-
};
|
|
7044
|
-
getDescription(): string | undefined;
|
|
7045
|
-
}
|
|
7046
|
-
|
|
7047
|
-
declare class ZN08 extends AbstractObject {
|
|
7048
|
-
getType(): string;
|
|
7049
|
-
getAllowedNaming(): {
|
|
7050
|
-
maxLength: number;
|
|
7051
|
-
allowNamespace: boolean;
|
|
7052
|
-
};
|
|
7053
|
-
getDescription(): string | undefined;
|
|
7054
|
-
}
|
|
7055
|
-
|
|
7056
|
-
declare class ZN09 extends AbstractObject {
|
|
7057
|
-
getType(): string;
|
|
7058
|
-
getAllowedNaming(): {
|
|
7059
|
-
maxLength: number;
|
|
7060
|
-
allowNamespace: boolean;
|
|
7061
|
-
};
|
|
7062
|
-
getDescription(): string | undefined;
|
|
7063
|
-
}
|
|
7064
|
-
|
|
7065
|
-
declare class ZN10 extends AbstractObject {
|
|
7066
|
-
getType(): string;
|
|
7067
|
-
getAllowedNaming(): {
|
|
7068
|
-
maxLength: number;
|
|
7069
|
-
allowNamespace: boolean;
|
|
7070
|
-
};
|
|
7071
|
-
getDescription(): string | undefined;
|
|
7072
|
-
}
|
|
7073
|
-
|
|
7074
|
-
declare class ZN11 extends AbstractObject {
|
|
7075
|
-
getType(): string;
|
|
7076
|
-
getAllowedNaming(): {
|
|
7077
|
-
maxLength: number;
|
|
7078
|
-
allowNamespace: boolean;
|
|
7079
|
-
};
|
|
7080
|
-
getDescription(): string | undefined;
|
|
7081
|
-
}
|
|
7082
|
-
|
|
7083
|
-
declare class ZN12 extends AbstractObject {
|
|
7084
|
-
getType(): string;
|
|
7085
|
-
getAllowedNaming(): {
|
|
7086
|
-
maxLength: number;
|
|
7087
|
-
allowNamespace: boolean;
|
|
7088
|
-
};
|
|
7089
|
-
getDescription(): string | undefined;
|
|
7090
|
-
}
|
|
7091
|
-
|
|
7092
|
-
declare class ZN13 extends AbstractObject {
|
|
7093
|
-
getType(): string;
|
|
7094
|
-
getAllowedNaming(): {
|
|
7095
|
-
maxLength: number;
|
|
7096
|
-
allowNamespace: boolean;
|
|
7097
|
-
};
|
|
7098
|
-
getDescription(): string | undefined;
|
|
7099
|
-
}
|
|
7100
|
-
|
|
7101
|
-
declare class ZN14 extends AbstractObject {
|
|
7102
|
-
getType(): string;
|
|
7103
|
-
getAllowedNaming(): {
|
|
7104
|
-
maxLength: number;
|
|
7105
|
-
allowNamespace: boolean;
|
|
7106
|
-
};
|
|
7107
|
-
getDescription(): string | undefined;
|
|
7108
|
-
}
|
|
7109
|
-
|
|
7110
|
-
declare class ZN15 extends AbstractObject {
|
|
7111
|
-
getType(): string;
|
|
7112
|
-
getAllowedNaming(): {
|
|
7113
|
-
maxLength: number;
|
|
7114
|
-
allowNamespace: boolean;
|
|
7115
|
-
};
|
|
7116
|
-
getDescription(): string | undefined;
|
|
7117
|
-
}
|
|
7118
|
-
|
|
7119
|
-
declare class ZN16 extends AbstractObject {
|
|
7120
|
-
getType(): string;
|
|
7121
|
-
getAllowedNaming(): {
|
|
7122
|
-
maxLength: number;
|
|
7123
|
-
allowNamespace: boolean;
|
|
7124
|
-
};
|
|
7125
|
-
getDescription(): string | undefined;
|
|
7126
|
-
}
|
|
7127
|
-
|
|
7128
|
-
declare class ZN17 extends AbstractObject {
|
|
7129
|
-
getType(): string;
|
|
7130
|
-
getAllowedNaming(): {
|
|
7131
|
-
maxLength: number;
|
|
7132
|
-
allowNamespace: boolean;
|
|
7133
|
-
};
|
|
7134
|
-
getDescription(): string | undefined;
|
|
7135
|
-
}
|
|
7136
|
-
|
|
7137
|
-
declare class ZN18 extends AbstractObject {
|
|
7138
|
-
getType(): string;
|
|
7139
|
-
getAllowedNaming(): {
|
|
7140
|
-
maxLength: number;
|
|
7141
|
-
allowNamespace: boolean;
|
|
7142
|
-
};
|
|
7143
|
-
getDescription(): string | undefined;
|
|
7144
|
-
}
|
|
7145
|
-
|
|
7146
|
-
declare class ZN19 extends AbstractObject {
|
|
7147
|
-
getType(): string;
|
|
7148
|
-
getAllowedNaming(): {
|
|
7149
|
-
maxLength: number;
|
|
7150
|
-
allowNamespace: boolean;
|
|
7151
|
-
};
|
|
7152
|
-
getDescription(): string | undefined;
|
|
7153
|
-
}
|
|
7154
|
-
|
|
7155
|
-
declare class ZN20 extends AbstractObject {
|
|
7156
|
-
getType(): string;
|
|
7157
|
-
getAllowedNaming(): {
|
|
7158
|
-
maxLength: number;
|
|
7159
|
-
allowNamespace: boolean;
|
|
7160
|
-
};
|
|
7161
|
-
getDescription(): string | undefined;
|
|
7162
|
-
}
|
|
7163
|
-
|
|
7164
|
-
declare class ZN21 extends AbstractObject {
|
|
7165
|
-
getType(): string;
|
|
7166
|
-
getAllowedNaming(): {
|
|
7167
|
-
maxLength: number;
|
|
7168
|
-
allowNamespace: boolean;
|
|
7169
|
-
};
|
|
7170
|
-
getDescription(): string | undefined;
|
|
7171
|
-
}
|
|
7172
|
-
|
|
7173
7193
|
export { }
|
|
@@ -29,7 +29,7 @@ class ValueBody {
|
|
|
29
29
|
}
|
|
30
30
|
let type = undefined; // todo, this is only correct if there is a single source in the body
|
|
31
31
|
for (const s of node.findDirectExpressions(Expressions.Source)) {
|
|
32
|
-
type = new source_1.Source().runSyntax(s, scope, filename);
|
|
32
|
+
type = new source_1.Source().runSyntax(s, scope, filename, type);
|
|
33
33
|
}
|
|
34
34
|
for (const foo of node.findDirectExpressions(Expressions.ValueBodyLine)) {
|
|
35
35
|
if (!(targetType instanceof basic_1.TableType)
|
|
@@ -15,7 +15,7 @@ class Controls {
|
|
|
15
15
|
}
|
|
16
16
|
if (node.findDirectTokenByText("TABLEVIEW") && token) {
|
|
17
17
|
const cols = new basic_1.StructureType([
|
|
18
|
-
{ name: "SCREEN", type: new basic_1.CharacterType(1) },
|
|
18
|
+
{ name: "SCREEN", type: new basic_1.CharacterType(1) }, // todo
|
|
19
19
|
{ name: "INDEX", type: basic_1.IntegerType.get() },
|
|
20
20
|
{ name: "SELECTED", type: new basic_1.CharacterType(1) },
|
|
21
21
|
{ name: "VISLENGTH", type: basic_1.IntegerType.get() },
|
|
@@ -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);
|
|
@@ -139,26 +140,27 @@ __exportStar(require("./web_dynpro_application"), exports);
|
|
|
139
140
|
__exportStar(require("./web_dynpro_component_configuration"), exports);
|
|
140
141
|
__exportStar(require("./web_dynpro_component"), exports);
|
|
141
142
|
__exportStar(require("./web_mime"), exports);
|
|
142
|
-
__exportStar(require("./
|
|
143
|
-
__exportStar(require("./
|
|
144
|
-
__exportStar(require("./
|
|
145
|
-
__exportStar(require("./
|
|
146
|
-
__exportStar(require("./
|
|
147
|
-
__exportStar(require("./
|
|
148
|
-
__exportStar(require("./
|
|
149
|
-
__exportStar(require("./
|
|
150
|
-
__exportStar(require("./
|
|
151
|
-
__exportStar(require("./
|
|
152
|
-
__exportStar(require("./
|
|
153
|
-
__exportStar(require("./
|
|
154
|
-
__exportStar(require("./
|
|
155
|
-
__exportStar(require("./
|
|
156
|
-
__exportStar(require("./
|
|
157
|
-
__exportStar(require("./
|
|
158
|
-
__exportStar(require("./
|
|
159
|
-
__exportStar(require("./
|
|
160
|
-
__exportStar(require("./
|
|
161
|
-
__exportStar(require("./
|
|
162
|
-
__exportStar(require("./
|
|
163
|
-
__exportStar(require("./
|
|
143
|
+
__exportStar(require("./neptune_metadata"), exports);
|
|
144
|
+
__exportStar(require("./neptune_app"), exports);
|
|
145
|
+
__exportStar(require("./neptune_api"), exports);
|
|
146
|
+
__exportStar(require("./neptune_launchpad"), exports);
|
|
147
|
+
__exportStar(require("./neptune_tile_group"), exports);
|
|
148
|
+
__exportStar(require("./neptune_tile"), exports);
|
|
149
|
+
__exportStar(require("./neptune_policy"), exports);
|
|
150
|
+
__exportStar(require("./neptune_launchpad_layout"), exports);
|
|
151
|
+
__exportStar(require("./neptune_tile_layout"), exports);
|
|
152
|
+
__exportStar(require("./neptune_enhancement"), exports);
|
|
153
|
+
__exportStar(require("./neptune_login_page"), exports);
|
|
154
|
+
__exportStar(require("./neptune_sticky_banner"), exports);
|
|
155
|
+
__exportStar(require("./neptune_splash_screen"), exports);
|
|
156
|
+
__exportStar(require("./neptune_custom_color"), exports);
|
|
157
|
+
__exportStar(require("./neptune_rich_text_template"), exports);
|
|
158
|
+
__exportStar(require("./neptune_custom_js_helper"), exports);
|
|
159
|
+
__exportStar(require("./neptune_documentation"), exports);
|
|
160
|
+
__exportStar(require("./neptune_rfc_mapping"), exports);
|
|
161
|
+
__exportStar(require("./neptune_media_library"), exports);
|
|
162
|
+
__exportStar(require("./neptune_media_pack"), exports);
|
|
163
|
+
__exportStar(require("./neptune_url_alias"), exports);
|
|
164
|
+
__exportStar(require("./neptune_odata"), exports);
|
|
165
|
+
__exportStar(require("./neptune_mobile_client"), exports);
|
|
164
166
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneAPI = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneAPI extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN02";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN02 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneAPI = NeptuneAPI;
|
|
21
|
+
//# sourceMappingURL=neptune_api.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneApp = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneApp extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN01";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN01 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneApp = NeptuneApp;
|
|
21
|
+
//# sourceMappingURL=neptune_app.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneCustomColor = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneCustomColor extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN13";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN13 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneCustomColor = NeptuneCustomColor;
|
|
21
|
+
//# sourceMappingURL=neptune_custom_color.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneCustomJSHelper = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneCustomJSHelper extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN15";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN15 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneCustomJSHelper = NeptuneCustomJSHelper;
|
|
21
|
+
//# sourceMappingURL=neptune_custom_js_helper.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneDocumentation = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneDocumentation extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN16";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN16 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneDocumentation = NeptuneDocumentation;
|
|
21
|
+
//# sourceMappingURL=neptune_documentation.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneEnhancement = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneEnhancement extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN09";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN09 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneEnhancement = NeptuneEnhancement;
|
|
21
|
+
//# sourceMappingURL=neptune_enhancement.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneLaunchpad = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneLaunchpad extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN03";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN03 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneLaunchpad = NeptuneLaunchpad;
|
|
21
|
+
//# sourceMappingURL=neptune_launchpad.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneLaunchpadLayout = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneLaunchpadLayout extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN07";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN07 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneLaunchpadLayout = NeptuneLaunchpadLayout;
|
|
21
|
+
//# sourceMappingURL=neptune_launchpad_layout.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneLoginPage = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneLoginPage extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN10";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN10 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneLoginPage = NeptuneLoginPage;
|
|
21
|
+
//# sourceMappingURL=neptune_login_page.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneMediaLibrary = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneMediaLibrary extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN18";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN18 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneMediaLibrary = NeptuneMediaLibrary;
|
|
21
|
+
//# sourceMappingURL=neptune_media_library.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneMediaPack = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneMediaPack extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN19";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN19 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneMediaPack = NeptuneMediaPack;
|
|
21
|
+
//# sourceMappingURL=neptune_media_pack.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NeptuneMetadata = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class NeptuneMetadata extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN00";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.NeptuneMetadata = NeptuneMetadata;
|
|
21
|
+
//# sourceMappingURL=neptune_metadata.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneMobileClient = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneMobileClient extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN22";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN0122 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneMobileClient = NeptuneMobileClient;
|
|
21
|
+
//# sourceMappingURL=neptune_mobile_client.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneOData = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneOData extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN21";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN21 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneOData = NeptuneOData;
|
|
21
|
+
//# sourceMappingURL=neptune_odata.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptunePolicy = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptunePolicy extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN06";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN06 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptunePolicy = NeptunePolicy;
|
|
21
|
+
//# sourceMappingURL=neptune_policy.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneRFCMapping = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneRFCMapping extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN17";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN17 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneRFCMapping = NeptuneRFCMapping;
|
|
21
|
+
//# sourceMappingURL=neptune_rfc_mapping.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneRichTextTemplate = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneRichTextTemplate extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN14";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN14 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneRichTextTemplate = NeptuneRichTextTemplate;
|
|
21
|
+
//# sourceMappingURL=neptune_rich_text_template.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneSplashScreen = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneSplashScreen extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN12";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN12 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneSplashScreen = NeptuneSplashScreen;
|
|
21
|
+
//# sourceMappingURL=neptune_splash_screen.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneStickyBanner = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneStickyBanner extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN11";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN11 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneStickyBanner = NeptuneStickyBanner;
|
|
21
|
+
//# sourceMappingURL=neptune_sticky_banner.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneTile = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneTile extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN05";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN05 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneTile = NeptuneTile;
|
|
21
|
+
//# sourceMappingURL=neptune_tile.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneTileGroup = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneTileGroup extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN04";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN04 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneTileGroup = NeptuneTileGroup;
|
|
21
|
+
//# sourceMappingURL=neptune_tile_group.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneTileLayout = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneTileLayout extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN08";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN08 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneTileLayout = NeptuneTileLayout;
|
|
21
|
+
//# sourceMappingURL=neptune_tile_layout.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneURLAlias = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneURLAlias extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN20";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN20 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneURLAlias = NeptuneURLAlias;
|
|
21
|
+
//# sourceMappingURL=neptune_url_alias.js.map
|
|
@@ -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
|
@@ -28,7 +28,8 @@ Only works if the target version is 740sp05 or above`,
|
|
|
28
28
|
badExample: `DELETE foo FROM bar.
|
|
29
29
|
MODIFY foo FROM bar.`,
|
|
30
30
|
goodExample: `DELETE foo FROM @bar.
|
|
31
|
-
MODIFY TABLE foo FROM bar
|
|
31
|
+
MODIFY TABLE foo FROM bar.
|
|
32
|
+
MODIFY zfoo FROM @wa.`,
|
|
32
33
|
};
|
|
33
34
|
}
|
|
34
35
|
getMessage() {
|
|
@@ -8,8 +8,8 @@ const position_1 = require("../position");
|
|
|
8
8
|
class MSAGConsistencyConf extends _basic_rule_config_1.BasicRuleConfig {
|
|
9
9
|
constructor() {
|
|
10
10
|
super(...arguments);
|
|
11
|
-
/**
|
|
12
|
-
this.
|
|
11
|
+
/** parameters must be numbered */
|
|
12
|
+
this.numericParameters = true;
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
exports.MSAGConsistencyConf = MSAGConsistencyConf;
|
|
@@ -67,7 +67,7 @@ class MSAGConsistency {
|
|
|
67
67
|
else {
|
|
68
68
|
numbers.add(num);
|
|
69
69
|
}
|
|
70
|
-
if (this.getConfig().
|
|
70
|
+
if (this.getConfig().numericParameters === true) {
|
|
71
71
|
const placeholderCount = message.getPlaceholderCount();
|
|
72
72
|
if (placeholderCount > 4) {
|
|
73
73
|
const text = `More than 4 placeholders in mesasge ${message.getNumber()}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.103.
|
|
3
|
+
"version": "2.103.9",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -51,16 +51,16 @@
|
|
|
51
51
|
"homepage": "https://abaplint.org",
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@microsoft/api-extractor": "^7.38.3",
|
|
54
|
-
"@types/chai": "^4.3.
|
|
55
|
-
"@types/mocha": "^10.0.
|
|
56
|
-
"@types/node": "^20.9.
|
|
54
|
+
"@types/chai": "^4.3.11",
|
|
55
|
+
"@types/mocha": "^10.0.6",
|
|
56
|
+
"@types/node": "^20.9.4",
|
|
57
57
|
"chai": "^4.3.10",
|
|
58
|
-
"eslint": "^8.
|
|
58
|
+
"eslint": "^8.54.0",
|
|
59
59
|
"mocha": "^10.2.0",
|
|
60
60
|
"c8": "^8.0.1",
|
|
61
61
|
"source-map-support": "^0.5.21",
|
|
62
62
|
"ts-json-schema-generator": "^1.4.0",
|
|
63
|
-
"typescript": "^5.
|
|
63
|
+
"typescript": "^5.3.2"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"fast-xml-parser": "^4.3.2",
|