jsii-reflect 1.63.2 → 1.64.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.63.2",
3
+ "version": "1.64.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.63.2",
38
- "@jsii/spec": "^1.63.2",
37
+ "@jsii/check-node": "1.64.0",
38
+ "@jsii/spec": "^1.64.0",
39
39
  "chalk": "^4",
40
40
  "fs-extra": "^10.1.0",
41
- "oo-ascii-tree": "^1.63.2",
41
+ "oo-ascii-tree": "^1.64.0",
42
42
  "yargs": "^16.2.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@scope/jsii-calc-lib": "^1.63.2",
45
+ "@scope/jsii-calc-lib": "^1.64.0",
46
46
  "@types/fs-extra": "^9.0.13",
47
- "jsii": "^1.63.2",
48
- "jsii-build-tools": "^1.63.2",
47
+ "jsii": "^1.64.0",
48
+ "jsii-build-tools": "^1.64.0",
49
49
  "jsii-calc": "^3.20.120"
50
50
  }
51
51
  }
@@ -128,6 +128,33 @@ exports[`jsii-tree --all 1`] = `
128
128
  │ │ │ └─┬ enum CompositionStringStyle (stable)
129
129
  │ │ │ ├── NORMAL (stable)
130
130
  │ │ │ └── DECORATED (stable)
131
+ │ │ ├─┬ jsii3656
132
+ │ │ │ └─┬ types
133
+ │ │ │ ├─┬ class OverrideMe (stable)
134
+ │ │ │ │ └─┬ members
135
+ │ │ │ │ ├── <initializer>() initializer (stable)
136
+ │ │ │ │ ├─┬ static callAbstract(receiver) method (stable)
137
+ │ │ │ │ │ ├── static
138
+ │ │ │ │ │ ├─┬ parameters
139
+ │ │ │ │ │ │ └─┬ receiver
140
+ │ │ │ │ │ │ └── type: jsii-calc.jsii3656.OverrideMe
141
+ │ │ │ │ │ └── returns: boolean
142
+ │ │ │ │ └─┬ implementMe(opts) method (stable)
143
+ │ │ │ │ ├── abstract
144
+ │ │ │ │ ├─┬ parameters
145
+ │ │ │ │ │ └─┬ opts
146
+ │ │ │ │ │ └── type: jsii-calc.jsii3656.ImplementMeOpts
147
+ │ │ │ │ └── returns: boolean
148
+ │ │ │ └─┬ interface ImplementMeOpts (stable)
149
+ │ │ │ └─┬ members
150
+ │ │ │ ├─┬ name property (stable)
151
+ │ │ │ │ ├── abstract
152
+ │ │ │ │ ├── immutable
153
+ │ │ │ │ └── type: string
154
+ │ │ │ └─┬ count property (stable)
155
+ │ │ │ ├── abstract
156
+ │ │ │ ├── immutable
157
+ │ │ │ └── type: Optional<number>
131
158
  │ │ ├─┬ module2530
132
159
  │ │ │ └─┬ types
133
160
  │ │ │ └─┬ class MyClass (stable)
@@ -831,6 +858,14 @@ exports[`jsii-tree --all 1`] = `
831
858
  │ │ │ └── type: string
832
859
  │ │ └─┬ e property (stable)
833
860
  │ │ └── type: string
861
+ │ ├─┬ class ClassWithCollectionOfUnions (stable)
862
+ │ │ └─┬ members
863
+ │ │ ├─┬ <initializer>(unionProperty) initializer (stable)
864
+ │ │ │ └─┬ parameters
865
+ │ │ │ └─┬ unionProperty
866
+ │ │ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB>>
867
+ │ │ └─┬ unionProperty property (stable)
868
+ │ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB>>
834
869
  │ ├─┬ class ClassWithCollections (stable)
835
870
  │ │ └─┬ members
836
871
  │ │ ├─┬ <initializer>(map,array) initializer (stable)
@@ -3107,6 +3142,12 @@ exports[`jsii-tree --all 1`] = `
3107
3142
  │ │ ├── abstract
3108
3143
  │ │ ├── immutable
3109
3144
  │ │ └── type: Optional<boolean>
3145
+ │ ├─┬ interface StructWithCollectionOfUnionts (stable)
3146
+ │ │ └─┬ members
3147
+ │ │ └─┬ unionProperty property (stable)
3148
+ │ │ ├── abstract
3149
+ │ │ ├── immutable
3150
+ │ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB>>
3110
3151
  │ ├─┬ interface StructWithEnum (stable)
3111
3152
  │ │ └─┬ members
3112
3153
  │ │ ├─┬ foo property (stable)
@@ -3451,6 +3492,10 @@ exports[`jsii-tree --inheritance 1`] = `
3451
3492
  │ │ │ ├─┬ class CompositeOperation
3452
3493
  │ │ │ │ └── base: Operation
3453
3494
  │ │ │ └── enum CompositionStringStyle
3495
+ │ │ ├─┬ jsii3656
3496
+ │ │ │ └─┬ types
3497
+ │ │ │ ├── class OverrideMe
3498
+ │ │ │ └── interface ImplementMeOpts
3454
3499
  │ │ ├─┬ module2530
3455
3500
  │ │ │ └─┬ types
3456
3501
  │ │ │ └── class MyClass
@@ -3610,6 +3655,7 @@ exports[`jsii-tree --inheritance 1`] = `
3610
3655
  │ │ └── interfaces: INonInternalInterface
3611
3656
  │ ├─┬ class ClassThatImplementsThePrivateInterface
3612
3657
  │ │ └── interfaces: INonInternalInterface
3658
+ │ ├── class ClassWithCollectionOfUnions
3613
3659
  │ ├── class ClassWithCollections
3614
3660
  │ ├── class ClassWithContainerTypes
3615
3661
  │ ├── class ClassWithDocs
@@ -3844,6 +3890,7 @@ exports[`jsii-tree --inheritance 1`] = `
3844
3890
  │ ├── interface StructA
3845
3891
  │ ├── interface StructB
3846
3892
  │ ├── interface StructParameterType
3893
+ │ ├── interface StructWithCollectionOfUnionts
3847
3894
  │ ├── interface StructWithEnum
3848
3895
  │ ├── interface StructWithJavaReservedWords
3849
3896
  │ ├── interface SupportsNiceJavaBuilderProps
@@ -3977,6 +4024,17 @@ exports[`jsii-tree --members 1`] = `
3977
4024
  │ │ │ └─┬ enum CompositionStringStyle
3978
4025
  │ │ │ ├── NORMAL
3979
4026
  │ │ │ └── DECORATED
4027
+ │ │ ├─┬ jsii3656
4028
+ │ │ │ └─┬ types
4029
+ │ │ │ ├─┬ class OverrideMe
4030
+ │ │ │ │ └─┬ members
4031
+ │ │ │ │ ├── <initializer>() initializer
4032
+ │ │ │ │ ├── static callAbstract(receiver) method
4033
+ │ │ │ │ └── implementMe(opts) method
4034
+ │ │ │ └─┬ interface ImplementMeOpts
4035
+ │ │ │ └─┬ members
4036
+ │ │ │ ├── name property
4037
+ │ │ │ └── count property
3980
4038
  │ │ ├─┬ module2530
3981
4039
  │ │ │ └─┬ types
3982
4040
  │ │ │ └─┬ class MyClass
@@ -4336,6 +4394,10 @@ exports[`jsii-tree --members 1`] = `
4336
4394
  │ │ ├── b property
4337
4395
  │ │ ├── c property
4338
4396
  │ │ └── e property
4397
+ │ ├─┬ class ClassWithCollectionOfUnions
4398
+ │ │ └─┬ members
4399
+ │ │ ├── <initializer>(unionProperty) initializer
4400
+ │ │ └── unionProperty property
4339
4401
  │ ├─┬ class ClassWithCollections
4340
4402
  │ │ └─┬ members
4341
4403
  │ │ ├── <initializer>(map,array) initializer
@@ -5301,6 +5363,9 @@ exports[`jsii-tree --members 1`] = `
5301
5363
  │ │ └─┬ members
5302
5364
  │ │ ├── scope property
5303
5365
  │ │ └── props property
5366
+ │ ├─┬ interface StructWithCollectionOfUnionts
5367
+ │ │ └─┬ members
5368
+ │ │ └── unionProperty property
5304
5369
  │ ├─┬ interface StructWithEnum
5305
5370
  │ │ └─┬ members
5306
5371
  │ │ ├── foo property
@@ -5467,6 +5532,7 @@ exports[`jsii-tree --signatures 1`] = `
5467
5532
  │ │ └─┬ submodules
5468
5533
  │ │ └── donotimport
5469
5534
  │ ├── composition
5535
+ │ ├── jsii3656
5470
5536
  │ ├── module2530
5471
5537
  │ ├── module2617
5472
5538
  │ ├── module2647
@@ -5537,6 +5603,10 @@ exports[`jsii-tree --types 1`] = `
5537
5603
  │ │ │ └─┬ types
5538
5604
  │ │ │ ├── class CompositeOperation
5539
5605
  │ │ │ └── enum CompositionStringStyle
5606
+ │ │ ├─┬ jsii3656
5607
+ │ │ │ └─┬ types
5608
+ │ │ │ ├── class OverrideMe
5609
+ │ │ │ └── interface ImplementMeOpts
5540
5610
  │ │ ├─┬ module2530
5541
5611
  │ │ │ └─┬ types
5542
5612
  │ │ │ └── class MyClass
@@ -5656,6 +5726,7 @@ exports[`jsii-tree --types 1`] = `
5656
5726
  │ ├── class Calculator
5657
5727
  │ ├── class ClassThatImplementsTheInternalInterface
5658
5728
  │ ├── class ClassThatImplementsThePrivateInterface
5729
+ │ ├── class ClassWithCollectionOfUnions
5659
5730
  │ ├── class ClassWithCollections
5660
5731
  │ ├── class ClassWithContainerTypes
5661
5732
  │ ├── class ClassWithDocs
@@ -5839,6 +5910,7 @@ exports[`jsii-tree --types 1`] = `
5839
5910
  │ ├── interface StructA
5840
5911
  │ ├── interface StructB
5841
5912
  │ ├── interface StructParameterType
5913
+ │ ├── interface StructWithCollectionOfUnionts
5842
5914
  │ ├── interface StructWithEnum
5843
5915
  │ ├── interface StructWithJavaReservedWords
5844
5916
  │ ├── interface SupportsNiceJavaBuilderProps
@@ -5902,6 +5974,7 @@ exports[`jsii-tree 1`] = `
5902
5974
  │ │ └─┬ submodules
5903
5975
  │ │ └── donotimport
5904
5976
  │ ├── composition
5977
+ │ ├── jsii3656
5905
5978
  │ ├── module2530
5906
5979
  │ ├── module2617
5907
5980
  │ ├── module2647
@@ -12,6 +12,7 @@ exports[`defaults 1`] = `
12
12
  │ │ └─┬ submodules
13
13
  │ │ └── donotimport
14
14
  │ ├── composition
15
+ │ ├── jsii3656
15
16
  │ ├── module2530
16
17
  │ ├── module2617
17
18
  │ ├── module2647
@@ -62,6 +63,7 @@ exports[`inheritance 1`] = `
62
63
  │ │ └─┬ submodules
63
64
  │ │ └── donotimport
64
65
  │ ├── composition
66
+ │ ├── jsii3656
65
67
  │ ├── module2530
66
68
  │ ├── module2617
67
69
  │ ├── module2647
@@ -112,6 +114,7 @@ exports[`members 1`] = `
112
114
  │ │ └─┬ submodules
113
115
  │ │ └── donotimport
114
116
  │ ├── composition
117
+ │ ├── jsii3656
115
118
  │ ├── module2530
116
119
  │ ├── module2617
117
120
  │ ├── module2647
@@ -278,6 +281,33 @@ exports[`showAll 1`] = `
278
281
  │ │ │ └─┬ enum CompositionStringStyle
279
282
  │ │ │ ├── NORMAL
280
283
  │ │ │ └── DECORATED
284
+ │ │ ├─┬ jsii3656
285
+ │ │ │ └─┬ types
286
+ │ │ │ ├─┬ class OverrideMe
287
+ │ │ │ │ └─┬ members
288
+ │ │ │ │ ├── <initializer>() initializer
289
+ │ │ │ │ ├─┬ static callAbstract(receiver) method
290
+ │ │ │ │ │ ├── static
291
+ │ │ │ │ │ ├─┬ parameters
292
+ │ │ │ │ │ │ └─┬ receiver
293
+ │ │ │ │ │ │ └── type: jsii-calc.jsii3656.OverrideMe
294
+ │ │ │ │ │ └── returns: boolean
295
+ │ │ │ │ └─┬ implementMe(opts) method
296
+ │ │ │ │ ├── abstract
297
+ │ │ │ │ ├─┬ parameters
298
+ │ │ │ │ │ └─┬ opts
299
+ │ │ │ │ │ └── type: jsii-calc.jsii3656.ImplementMeOpts
300
+ │ │ │ │ └── returns: boolean
301
+ │ │ │ └─┬ interface ImplementMeOpts
302
+ │ │ │ └─┬ members
303
+ │ │ │ ├─┬ name property
304
+ │ │ │ │ ├── abstract
305
+ │ │ │ │ ├── immutable
306
+ │ │ │ │ └── type: string
307
+ │ │ │ └─┬ count property
308
+ │ │ │ ├── abstract
309
+ │ │ │ ├── immutable
310
+ │ │ │ └── type: Optional<number>
281
311
  │ │ ├─┬ module2530
282
312
  │ │ │ └─┬ types
283
313
  │ │ │ └─┬ class MyClass
@@ -981,6 +1011,14 @@ exports[`showAll 1`] = `
981
1011
  │ │ │ └── type: string
982
1012
  │ │ └─┬ e property
983
1013
  │ │ └── type: string
1014
+ │ ├─┬ class ClassWithCollectionOfUnions
1015
+ │ │ └─┬ members
1016
+ │ │ ├─┬ <initializer>(unionProperty) initializer
1017
+ │ │ │ └─┬ parameters
1018
+ │ │ │ └─┬ unionProperty
1019
+ │ │ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB>>
1020
+ │ │ └─┬ unionProperty property
1021
+ │ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB>>
984
1022
  │ ├─┬ class ClassWithCollections
985
1023
  │ │ └─┬ members
986
1024
  │ │ ├─┬ <initializer>(map,array) initializer
@@ -3257,6 +3295,12 @@ exports[`showAll 1`] = `
3257
3295
  │ │ ├── abstract
3258
3296
  │ │ ├── immutable
3259
3297
  │ │ └── type: Optional<boolean>
3298
+ │ ├─┬ interface StructWithCollectionOfUnionts
3299
+ │ │ └─┬ members
3300
+ │ │ └─┬ unionProperty property
3301
+ │ │ ├── abstract
3302
+ │ │ ├── immutable
3303
+ │ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB>>
3260
3304
  │ ├─┬ interface StructWithEnum
3261
3305
  │ │ └─┬ members
3262
3306
  │ │ ├─┬ foo property
@@ -3578,6 +3622,7 @@ exports[`signatures 1`] = `
3578
3622
  │ │ └─┬ submodules
3579
3623
  │ │ └── donotimport
3580
3624
  │ ├── composition
3625
+ │ ├── jsii3656
3581
3626
  │ ├── module2530
3582
3627
  │ ├── module2617
3583
3628
  │ ├── module2647
@@ -3648,6 +3693,10 @@ exports[`types 1`] = `
3648
3693
  │ │ │ └─┬ types
3649
3694
  │ │ │ ├── class CompositeOperation
3650
3695
  │ │ │ └── enum CompositionStringStyle
3696
+ │ │ ├─┬ jsii3656
3697
+ │ │ │ └─┬ types
3698
+ │ │ │ ├── class OverrideMe
3699
+ │ │ │ └── interface ImplementMeOpts
3651
3700
  │ │ ├─┬ module2530
3652
3701
  │ │ │ └─┬ types
3653
3702
  │ │ │ └── class MyClass
@@ -3767,6 +3816,7 @@ exports[`types 1`] = `
3767
3816
  │ ├── class Calculator
3768
3817
  │ ├── class ClassThatImplementsTheInternalInterface
3769
3818
  │ ├── class ClassThatImplementsThePrivateInterface
3819
+ │ ├── class ClassWithCollectionOfUnions
3770
3820
  │ ├── class ClassWithCollections
3771
3821
  │ ├── class ClassWithContainerTypes
3772
3822
  │ ├── class ClassWithDocs
@@ -3950,6 +4000,7 @@ exports[`types 1`] = `
3950
4000
  │ ├── interface StructA
3951
4001
  │ ├── interface StructB
3952
4002
  │ ├── interface StructParameterType
4003
+ │ ├── interface StructWithCollectionOfUnionts
3953
4004
  │ ├── interface StructWithEnum
3954
4005
  │ ├── interface StructWithJavaReservedWords
3955
4006
  │ ├── interface SupportsNiceJavaBuilderProps
@@ -41,6 +41,7 @@ Array [
41
41
  "jsii-calc.Calculator",
42
42
  "jsii-calc.ClassThatImplementsTheInternalInterface",
43
43
  "jsii-calc.ClassThatImplementsThePrivateInterface",
44
+ "jsii-calc.ClassWithCollectionOfUnions",
44
45
  "jsii-calc.ClassWithCollections",
45
46
  "jsii-calc.ClassWithContainerTypes",
46
47
  "jsii-calc.ClassWithDocs",
@@ -160,6 +161,7 @@ Array [
160
161
  "jsii-calc.cdk16625.Cdk16625",
161
162
  "jsii-calc.cdk16625.donotimport.UnimportedSubmoduleType",
162
163
  "jsii-calc.composition.CompositeOperation",
164
+ "jsii-calc.jsii3656.OverrideMe",
163
165
  "jsii-calc.module2530.MyClass",
164
166
  "jsii-calc.module2617.OnlyStatics",
165
167
  "jsii-calc.module2647.ExtendAndImplement",