jsii-reflect 1.122.0 → 1.123.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.122.0",
3
+ "version": "1.123.0",
4
4
  "description": "strongly-typed reflection library and tools for jsii",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -35,19 +35,19 @@
35
35
  "package": "package-js"
36
36
  },
37
37
  "dependencies": {
38
- "@jsii/check-node": "1.122.0",
39
- "@jsii/spec": "1.122.0",
38
+ "@jsii/check-node": "1.123.0",
39
+ "@jsii/spec": "1.123.0",
40
40
  "chalk": "^4",
41
41
  "fs-extra": "^10.1.0",
42
- "oo-ascii-tree": "^1.122.0",
42
+ "oo-ascii-tree": "^1.123.0",
43
43
  "yargs": "^17.7.2"
44
44
  },
45
45
  "devDependencies": {
46
- "@scope/jsii-calc-lib": "^1.122.0",
46
+ "@scope/jsii-calc-lib": "^1.123.0",
47
47
  "@types/fs-extra": "^9.0.13",
48
48
  "@types/yargs": "^17.0.33",
49
49
  "jsii": "^5.9.10",
50
- "jsii-build-tools": "^1.122.0",
50
+ "jsii-build-tools": "^1.123.0",
51
51
  "jsii-calc": "^3.20.120"
52
52
  }
53
53
  }
@@ -379,9 +379,18 @@ exports[`jsii-tree --all 1`] = `
379
379
  │ │ │ │ │ └─┬ _
380
380
  │ │ │ │ │ └── type: boolean
381
381
  │ │ │ │ └── returns: void
382
- │ │ │ └─┬ foo(_) method (stable)
382
+ │ │ │ ├─┬ foo(_) method (stable)
383
+ │ │ │ │ ├─┬ parameters
384
+ │ │ │ │ │ └─┬ _
385
+ │ │ │ │ │ └── type: string
386
+ │ │ │ │ └── returns: void
387
+ │ │ │ └─┬ multipleUnderscores(_,__,___) method (stable)
383
388
  │ │ │ ├─┬ parameters
384
- │ │ │ │ └─┬ _
389
+ │ │ │ │ ├─┬ _
390
+ │ │ │ │ │ └── type: string
391
+ │ │ │ │ ├─┬ __
392
+ │ │ │ │ │ └── type: string
393
+ │ │ │ │ └─┬ ___
385
394
  │ │ │ │ └── type: string
386
395
  │ │ │ └── returns: void
387
396
  │ │ ├─┬ module2617
@@ -1121,6 +1130,17 @@ exports[`jsii-tree --all 1`] = `
1121
1130
  │ │ │ └─┬ parameters
1122
1131
  │ │ │ └─┬ unionProperty
1123
1132
  │ │ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB>>
1133
+ │ │ ├─┬ static staticMethodWithMapOfUnionsParam(param) method (stable)
1134
+ │ │ │ ├── static
1135
+ │ │ │ ├─┬ parameters
1136
+ │ │ │ │ └─┬ param
1137
+ │ │ │ │ └── type: Map<string => jsii-calc.StructA | jsii-calc.StructB>
1138
+ │ │ │ └── returns: void
1139
+ │ │ ├─┬ methodWithMapOfUnionsParam(param) method (stable)
1140
+ │ │ │ ├─┬ parameters
1141
+ │ │ │ │ └─┬ param
1142
+ │ │ │ │ └── type: Map<string => jsii-calc.StructA | jsii-calc.StructB>
1143
+ │ │ │ └── returns: void
1124
1144
  │ │ └─┬ unionProperty property (stable)
1125
1145
  │ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB>>
1126
1146
  │ ├─┬ class ClassWithCollections (stable)
@@ -4631,7 +4651,8 @@ exports[`jsii-tree --members 1`] = `
4631
4651
  │ │ │ └─┬ members
4632
4652
  │ │ │ ├── <initializer>(_) initializer
4633
4653
  │ │ │ ├── static bar(_) method
4634
- │ │ │ └── foo(_) method
4654
+ │ │ │ ├── foo(_) method
4655
+ │ │ │ └── multipleUnderscores(_,__,___) method
4635
4656
  │ │ ├─┬ module2617
4636
4657
  │ │ │ └─┬ types
4637
4658
  │ │ │ └─┬ class OnlyStatics
@@ -5012,6 +5033,8 @@ exports[`jsii-tree --members 1`] = `
5012
5033
  │ ├─┬ class ClassWithCollectionOfUnions
5013
5034
  │ │ └─┬ members
5014
5035
  │ │ ├── <initializer>(unionProperty) initializer
5036
+ │ │ ├── static staticMethodWithMapOfUnionsParam(param) method
5037
+ │ │ ├── methodWithMapOfUnionsParam(param) method
5015
5038
  │ │ └── unionProperty property
5016
5039
  │ ├─┬ class ClassWithCollections
5017
5040
  │ │ └─┬ members
@@ -574,9 +574,18 @@ exports[`showAll 1`] = `
574
574
  │ │ │ │ │ └─┬ _
575
575
  │ │ │ │ │ └── type: boolean
576
576
  │ │ │ │ └── returns: void
577
- │ │ │ └─┬ foo(_) method
577
+ │ │ │ ├─┬ foo(_) method
578
+ │ │ │ │ ├─┬ parameters
579
+ │ │ │ │ │ └─┬ _
580
+ │ │ │ │ │ └── type: string
581
+ │ │ │ │ └── returns: void
582
+ │ │ │ └─┬ multipleUnderscores(_,__,___) method
578
583
  │ │ │ ├─┬ parameters
579
- │ │ │ │ └─┬ _
584
+ │ │ │ │ ├─┬ _
585
+ │ │ │ │ │ └── type: string
586
+ │ │ │ │ ├─┬ __
587
+ │ │ │ │ │ └── type: string
588
+ │ │ │ │ └─┬ ___
580
589
  │ │ │ │ └── type: string
581
590
  │ │ │ └── returns: void
582
591
  │ │ ├─┬ module2617
@@ -1316,6 +1325,17 @@ exports[`showAll 1`] = `
1316
1325
  │ │ │ └─┬ parameters
1317
1326
  │ │ │ └─┬ unionProperty
1318
1327
  │ │ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB>>
1328
+ │ │ ├─┬ static staticMethodWithMapOfUnionsParam(param) method
1329
+ │ │ │ ├── static
1330
+ │ │ │ ├─┬ parameters
1331
+ │ │ │ │ └─┬ param
1332
+ │ │ │ │ └── type: Map<string => jsii-calc.StructA | jsii-calc.StructB>
1333
+ │ │ │ └── returns: void
1334
+ │ │ ├─┬ methodWithMapOfUnionsParam(param) method
1335
+ │ │ │ ├─┬ parameters
1336
+ │ │ │ │ └─┬ param
1337
+ │ │ │ │ └── type: Map<string => jsii-calc.StructA | jsii-calc.StructB>
1338
+ │ │ │ └── returns: void
1319
1339
  │ │ └─┬ unionProperty property
1320
1340
  │ │ └── type: Array<Map<string => jsii-calc.StructA | jsii-calc.StructB>>
1321
1341
  │ ├─┬ class ClassWithCollections