jsii-reflect 1.65.0 → 1.67.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jsii-reflect",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.67.0",
|
|
4
4
|
"description": "strongly-typed reflection library and tools for jsii",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"package": "package-js"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@jsii/check-node": "1.
|
|
38
|
-
"@jsii/spec": "^1.
|
|
37
|
+
"@jsii/check-node": "1.67.0",
|
|
38
|
+
"@jsii/spec": "^1.67.0",
|
|
39
39
|
"chalk": "^4",
|
|
40
40
|
"fs-extra": "^10.1.0",
|
|
41
|
-
"oo-ascii-tree": "^1.
|
|
41
|
+
"oo-ascii-tree": "^1.67.0",
|
|
42
42
|
"yargs": "^16.2.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@scope/jsii-calc-lib": "^1.
|
|
45
|
+
"@scope/jsii-calc-lib": "^1.67.0",
|
|
46
46
|
"@types/fs-extra": "^9.0.13",
|
|
47
|
-
"jsii": "^1.
|
|
48
|
-
"jsii-build-tools": "^1.
|
|
47
|
+
"jsii": "^1.67.0",
|
|
48
|
+
"jsii-build-tools": "^1.67.0",
|
|
49
49
|
"jsii-calc": "^3.20.120"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -968,6 +968,14 @@ exports[`jsii-tree --all 1`] = `
|
|
|
968
968
|
│ │ ├── <initializer>() initializer (stable)
|
|
969
969
|
│ │ └─┬ mutableObject property (stable)
|
|
970
970
|
│ │ └── type: jsii-calc.IMutableObjectLiteral
|
|
971
|
+
│ ├─┬ class ClassWithNestedUnion (stable)
|
|
972
|
+
│ │ └─┬ members
|
|
973
|
+
│ │ ├─┬ <initializer>(unionProperty) initializer (stable)
|
|
974
|
+
│ │ │ └─┬ parameters
|
|
975
|
+
│ │ │ └─┬ unionProperty
|
|
976
|
+
│ │ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB> | Array<jsii-calc.StructA | jsii-calc.StructB>>
|
|
977
|
+
│ │ └─┬ unionProperty property (stable)
|
|
978
|
+
│ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB> | Array<jsii-calc.StructA | jsii-calc.StructB>>
|
|
971
979
|
│ ├─┬ class ClassWithPrivateConstructorAndAutomaticProperties (stable)
|
|
972
980
|
│ │ ├── interfaces: IInterfaceWithProperties
|
|
973
981
|
│ │ └─┬ members
|
|
@@ -2401,6 +2409,16 @@ exports[`jsii-tree --all 1`] = `
|
|
|
2401
2409
|
│ │ │ ├── type: number
|
|
2402
2410
|
│ │ │ └── variadic
|
|
2403
2411
|
│ │ └── returns: Array<number>
|
|
2412
|
+
│ ├─┬ class VariadicTypeUnion (stable)
|
|
2413
|
+
│ │ └─┬ members
|
|
2414
|
+
│ │ ├─┬ <initializer>(union) initializer (stable)
|
|
2415
|
+
│ │ │ ├── variadic
|
|
2416
|
+
│ │ │ └─┬ parameters
|
|
2417
|
+
│ │ │ └─┬ union
|
|
2418
|
+
│ │ │ ├── type: jsii-calc.StructA | jsii-calc.StructB
|
|
2419
|
+
│ │ │ └── variadic
|
|
2420
|
+
│ │ └─┬ union property (stable)
|
|
2421
|
+
│ │ └── type: Array<jsii-calc.StructA | jsii-calc.StructB>
|
|
2404
2422
|
│ ├─┬ class VirtualMethodPlayground (stable)
|
|
2405
2423
|
│ │ └─┬ members
|
|
2406
2424
|
│ │ ├── <initializer>() initializer (stable)
|
|
@@ -3704,6 +3722,7 @@ exports[`jsii-tree --inheritance 1`] = `
|
|
|
3704
3722
|
│ ├── class ClassWithDocs
|
|
3705
3723
|
│ ├── class ClassWithJavaReservedWords
|
|
3706
3724
|
│ ├── class ClassWithMutableObjectLiteralProperty
|
|
3725
|
+
│ ├── class ClassWithNestedUnion
|
|
3707
3726
|
│ ├─┬ class ClassWithPrivateConstructorAndAutomaticProperties
|
|
3708
3727
|
│ │ └── interfaces: IInterfaceWithProperties
|
|
3709
3728
|
│ ├── class ConfusingToJackson
|
|
@@ -3829,6 +3848,7 @@ exports[`jsii-tree --inheritance 1`] = `
|
|
|
3829
3848
|
│ ├── class UsesInterfaceWithProperties
|
|
3830
3849
|
│ ├── class VariadicInvoker
|
|
3831
3850
|
│ ├── class VariadicMethod
|
|
3851
|
+
│ ├── class VariadicTypeUnion
|
|
3832
3852
|
│ ├── class VirtualMethodPlayground
|
|
3833
3853
|
│ ├── class VoidCallback
|
|
3834
3854
|
│ ├── class WithPrivatePropertyInConstructor
|
|
@@ -4482,6 +4502,10 @@ exports[`jsii-tree --members 1`] = `
|
|
|
4482
4502
|
│ │ └─┬ members
|
|
4483
4503
|
│ │ ├── <initializer>() initializer
|
|
4484
4504
|
│ │ └── mutableObject property
|
|
4505
|
+
│ ├─┬ class ClassWithNestedUnion
|
|
4506
|
+
│ │ └─┬ members
|
|
4507
|
+
│ │ ├── <initializer>(unionProperty) initializer
|
|
4508
|
+
│ │ └── unionProperty property
|
|
4485
4509
|
│ ├─┬ class ClassWithPrivateConstructorAndAutomaticProperties
|
|
4486
4510
|
│ │ └─┬ members
|
|
4487
4511
|
│ │ ├── static create(readOnlyString,readWriteString) method
|
|
@@ -5099,6 +5123,10 @@ exports[`jsii-tree --members 1`] = `
|
|
|
5099
5123
|
│ │ └─┬ members
|
|
5100
5124
|
│ │ ├── <initializer>(prefix) initializer
|
|
5101
5125
|
│ │ └── asArray(first,others) method
|
|
5126
|
+
│ ├─┬ class VariadicTypeUnion
|
|
5127
|
+
│ │ └─┬ members
|
|
5128
|
+
│ │ ├── <initializer>(union) initializer
|
|
5129
|
+
│ │ └── union property
|
|
5102
5130
|
│ ├─┬ class VirtualMethodPlayground
|
|
5103
5131
|
│ │ └─┬ members
|
|
5104
5132
|
│ │ ├── <initializer>() initializer
|
|
@@ -5795,6 +5823,7 @@ exports[`jsii-tree --types 1`] = `
|
|
|
5795
5823
|
│ ├── class ClassWithDocs
|
|
5796
5824
|
│ ├── class ClassWithJavaReservedWords
|
|
5797
5825
|
│ ├── class ClassWithMutableObjectLiteralProperty
|
|
5826
|
+
│ ├── class ClassWithNestedUnion
|
|
5798
5827
|
│ ├── class ClassWithPrivateConstructorAndAutomaticProperties
|
|
5799
5828
|
│ ├── class ConfusingToJackson
|
|
5800
5829
|
│ ├── class ConstructorPassesThisOut
|
|
@@ -5898,6 +5927,7 @@ exports[`jsii-tree --types 1`] = `
|
|
|
5898
5927
|
│ ├── class UsesInterfaceWithProperties
|
|
5899
5928
|
│ ├── class VariadicInvoker
|
|
5900
5929
|
│ ├── class VariadicMethod
|
|
5930
|
+
│ ├── class VariadicTypeUnion
|
|
5901
5931
|
│ ├── class VirtualMethodPlayground
|
|
5902
5932
|
│ ├── class VoidCallback
|
|
5903
5933
|
│ ├── class WithPrivatePropertyInConstructor
|
|
@@ -1124,6 +1124,14 @@ exports[`showAll 1`] = `
|
|
|
1124
1124
|
│ │ ├── <initializer>() initializer
|
|
1125
1125
|
│ │ └─┬ mutableObject property
|
|
1126
1126
|
│ │ └── type: jsii-calc.IMutableObjectLiteral
|
|
1127
|
+
│ ├─┬ class ClassWithNestedUnion
|
|
1128
|
+
│ │ └─┬ members
|
|
1129
|
+
│ │ ├─┬ <initializer>(unionProperty) initializer
|
|
1130
|
+
│ │ │ └─┬ parameters
|
|
1131
|
+
│ │ │ └─┬ unionProperty
|
|
1132
|
+
│ │ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB> | Array<jsii-calc.StructA | jsii-calc.StructB>>
|
|
1133
|
+
│ │ └─┬ unionProperty property
|
|
1134
|
+
│ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB> | Array<jsii-calc.StructA | jsii-calc.StructB>>
|
|
1127
1135
|
│ ├─┬ class ClassWithPrivateConstructorAndAutomaticProperties
|
|
1128
1136
|
│ │ ├── interfaces: IInterfaceWithProperties
|
|
1129
1137
|
│ │ └─┬ members
|
|
@@ -2557,6 +2565,16 @@ exports[`showAll 1`] = `
|
|
|
2557
2565
|
│ │ │ ├── type: number
|
|
2558
2566
|
│ │ │ └── variadic
|
|
2559
2567
|
│ │ └── returns: Array<number>
|
|
2568
|
+
│ ├─┬ class VariadicTypeUnion
|
|
2569
|
+
│ │ └─┬ members
|
|
2570
|
+
│ │ ├─┬ <initializer>(union) initializer
|
|
2571
|
+
│ │ │ ├── variadic
|
|
2572
|
+
│ │ │ └─┬ parameters
|
|
2573
|
+
│ │ │ └─┬ union
|
|
2574
|
+
│ │ │ ├── type: jsii-calc.StructA | jsii-calc.StructB
|
|
2575
|
+
│ │ │ └── variadic
|
|
2576
|
+
│ │ └─┬ union property
|
|
2577
|
+
│ │ └── type: Array<jsii-calc.StructA | jsii-calc.StructB>
|
|
2560
2578
|
│ ├─┬ class VirtualMethodPlayground
|
|
2561
2579
|
│ │ └─┬ members
|
|
2562
2580
|
│ │ ├── <initializer>() initializer
|
|
@@ -3869,6 +3887,7 @@ exports[`types 1`] = `
|
|
|
3869
3887
|
│ ├── class ClassWithDocs
|
|
3870
3888
|
│ ├── class ClassWithJavaReservedWords
|
|
3871
3889
|
│ ├── class ClassWithMutableObjectLiteralProperty
|
|
3890
|
+
│ ├── class ClassWithNestedUnion
|
|
3872
3891
|
│ ├── class ClassWithPrivateConstructorAndAutomaticProperties
|
|
3873
3892
|
│ ├── class ConfusingToJackson
|
|
3874
3893
|
│ ├── class ConstructorPassesThisOut
|
|
@@ -3972,6 +3991,7 @@ exports[`types 1`] = `
|
|
|
3972
3991
|
│ ├── class UsesInterfaceWithProperties
|
|
3973
3992
|
│ ├── class VariadicInvoker
|
|
3974
3993
|
│ ├── class VariadicMethod
|
|
3994
|
+
│ ├── class VariadicTypeUnion
|
|
3975
3995
|
│ ├── class VirtualMethodPlayground
|
|
3976
3996
|
│ ├── class VoidCallback
|
|
3977
3997
|
│ ├── class WithPrivatePropertyInConstructor
|
|
@@ -47,6 +47,7 @@ Array [
|
|
|
47
47
|
"jsii-calc.ClassWithDocs",
|
|
48
48
|
"jsii-calc.ClassWithJavaReservedWords",
|
|
49
49
|
"jsii-calc.ClassWithMutableObjectLiteralProperty",
|
|
50
|
+
"jsii-calc.ClassWithNestedUnion",
|
|
50
51
|
"jsii-calc.ClassWithPrivateConstructorAndAutomaticProperties",
|
|
51
52
|
"jsii-calc.ConfusingToJackson",
|
|
52
53
|
"jsii-calc.ConstructorPassesThisOut",
|
|
@@ -155,6 +156,7 @@ Array [
|
|
|
155
156
|
"jsii-calc.UsesInterfaceWithProperties",
|
|
156
157
|
"jsii-calc.VariadicInvoker",
|
|
157
158
|
"jsii-calc.VariadicMethod",
|
|
159
|
+
"jsii-calc.VariadicTypeUnion",
|
|
158
160
|
"jsii-calc.VirtualMethodPlayground",
|
|
159
161
|
"jsii-calc.VoidCallback",
|
|
160
162
|
"jsii-calc.WithPrivatePropertyInConstructor",
|