@aws/nx-plugin 0.80.0 → 0.81.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/LICENSE-THIRD-PARTY +28 -299
- package/package.json +1 -1
- package/src/py/fast-api/__snapshots__/generator.spec.ts.snap +368 -86
- package/src/py/fast-api/generator.js +3 -0
- package/src/py/fast-api/generator.js.map +1 -1
- package/src/py/fast-api/schema.d.ts +1 -0
- package/src/py/fast-api/schema.json +22 -0
- package/src/smithy/ts/api/__snapshots__/generator.spec.ts.snap +12 -8
- package/src/smithy/ts/api/generator.js +3 -0
- package/src/smithy/ts/api/generator.js.map +1 -1
- package/src/smithy/ts/api/schema.d.ts +4 -0
- package/src/smithy/ts/api/schema.json +22 -0
- package/src/trpc/backend/__snapshots__/generator.spec.ts.snap +392 -102
- package/src/trpc/backend/generator.js +20 -1
- package/src/trpc/backend/generator.js.map +1 -1
- package/src/trpc/backend/schema.d.ts +1 -0
- package/src/trpc/backend/schema.json +22 -0
- package/src/ts/lib/__snapshots__/generator.spec.ts.snap +3 -9
- package/src/ts/lib/files/src/index.ts.template +1 -3
- package/src/ts/react-website/cognito-auth/__snapshots__/generator.ux-provider.spec.ts.snap +95 -0
- package/src/ts/react-website/cognito-auth/utils.js +1 -1
- package/src/ts/react-website/cognito-auth/utils.js.map +1 -1
- package/src/utils/api-constructs/api-constructs.d.ts +1 -0
- package/src/utils/api-constructs/api-constructs.js.map +1 -1
- package/src/utils/api-constructs/files/cdk/app/apis/http/__apiNameKebabCase__.ts.template +18 -10
- package/src/utils/api-constructs/files/cdk/app/apis/rest/__apiNameKebabCase__.ts.template +28 -16
- package/src/utils/api-constructs/files/cdk/core/api/http/http-api.ts.template +25 -5
- package/src/utils/api-constructs/files/cdk/core/api/rest/rest-api.ts.template +32 -8
- package/src/utils/api-constructs/files/cdk/core/api/utils/utils.ts.template +151 -32
package/LICENSE-THIRD-PARTY
CHANGED
|
@@ -151,7 +151,7 @@ SOFTWARE.
|
|
|
151
151
|
|
|
152
152
|
---
|
|
153
153
|
|
|
154
|
-
The following software may be included in this product: @babel/code-frame (7.
|
|
154
|
+
The following software may be included in this product: @babel/code-frame (7.29.0)
|
|
155
155
|
This software contains the following license and notice below:
|
|
156
156
|
|
|
157
157
|
MIT License
|
|
@@ -683,34 +683,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
683
683
|
|
|
684
684
|
---
|
|
685
685
|
|
|
686
|
-
The following software may be included in this product: @babel/helper-validator-identifier (7.27.1)
|
|
687
|
-
This software contains the following license and notice below:
|
|
688
|
-
|
|
689
|
-
MIT License
|
|
690
|
-
|
|
691
|
-
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
692
|
-
|
|
693
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
694
|
-
a copy of this software and associated documentation files (the
|
|
695
|
-
"Software"), to deal in the Software without restriction, including
|
|
696
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
697
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
698
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
699
|
-
the following conditions:
|
|
700
|
-
|
|
701
|
-
The above copyright notice and this permission notice shall be
|
|
702
|
-
included in all copies or substantial portions of the Software.
|
|
703
|
-
|
|
704
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
705
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
706
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
707
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
708
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
709
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
710
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
711
|
-
|
|
712
|
-
---
|
|
713
|
-
|
|
714
686
|
The following software may be included in this product: @babel/helper-validator-identifier (7.28.5)
|
|
715
687
|
This software contains the following license and notice below:
|
|
716
688
|
|
|
@@ -824,56 +796,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
824
796
|
|
|
825
797
|
---
|
|
826
798
|
|
|
827
|
-
The following software may be included in this product: @babel/parser (7.28.4)
|
|
828
|
-
This software contains the following license and notice below:
|
|
829
|
-
|
|
830
|
-
Copyright (C) 2012-2014 by various contributors (see AUTHORS)
|
|
831
|
-
|
|
832
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
833
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
834
|
-
in the Software without restriction, including without limitation the rights
|
|
835
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
836
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
837
|
-
furnished to do so, subject to the following conditions:
|
|
838
|
-
|
|
839
|
-
The above copyright notice and this permission notice shall be included in
|
|
840
|
-
all copies or substantial portions of the Software.
|
|
841
|
-
|
|
842
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
843
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
844
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
845
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
846
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
847
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
848
|
-
THE SOFTWARE.
|
|
849
|
-
|
|
850
|
-
---
|
|
851
|
-
|
|
852
|
-
The following software may be included in this product: @babel/parser (7.28.5)
|
|
853
|
-
This software contains the following license and notice below:
|
|
854
|
-
|
|
855
|
-
Copyright (C) 2012-2014 by various contributors (see AUTHORS)
|
|
856
|
-
|
|
857
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
858
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
859
|
-
in the Software without restriction, including without limitation the rights
|
|
860
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
861
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
862
|
-
furnished to do so, subject to the following conditions:
|
|
863
|
-
|
|
864
|
-
The above copyright notice and this permission notice shall be included in
|
|
865
|
-
all copies or substantial portions of the Software.
|
|
866
|
-
|
|
867
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
868
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
869
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
870
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
871
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
872
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
873
|
-
THE SOFTWARE.
|
|
874
|
-
|
|
875
|
-
---
|
|
876
|
-
|
|
877
799
|
The following software may be included in this product: @babel/parser (7.29.0)
|
|
878
800
|
This software contains the following license and notice below:
|
|
879
801
|
|
|
@@ -3083,90 +3005,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
3083
3005
|
|
|
3084
3006
|
---
|
|
3085
3007
|
|
|
3086
|
-
The following software may be included in this product: @babel/types (7.28.4)
|
|
3087
|
-
This software contains the following license and notice below:
|
|
3088
|
-
|
|
3089
|
-
MIT License
|
|
3090
|
-
|
|
3091
|
-
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
3092
|
-
|
|
3093
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
3094
|
-
a copy of this software and associated documentation files (the
|
|
3095
|
-
"Software"), to deal in the Software without restriction, including
|
|
3096
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
3097
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3098
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
3099
|
-
the following conditions:
|
|
3100
|
-
|
|
3101
|
-
The above copyright notice and this permission notice shall be
|
|
3102
|
-
included in all copies or substantial portions of the Software.
|
|
3103
|
-
|
|
3104
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
3105
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3106
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
3107
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
3108
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
3109
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
3110
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3111
|
-
|
|
3112
|
-
---
|
|
3113
|
-
|
|
3114
|
-
The following software may be included in this product: @babel/types (7.28.5)
|
|
3115
|
-
This software contains the following license and notice below:
|
|
3116
|
-
|
|
3117
|
-
MIT License
|
|
3118
|
-
|
|
3119
|
-
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
3120
|
-
|
|
3121
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
3122
|
-
a copy of this software and associated documentation files (the
|
|
3123
|
-
"Software"), to deal in the Software without restriction, including
|
|
3124
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
3125
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3126
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
3127
|
-
the following conditions:
|
|
3128
|
-
|
|
3129
|
-
The above copyright notice and this permission notice shall be
|
|
3130
|
-
included in all copies or substantial portions of the Software.
|
|
3131
|
-
|
|
3132
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
3133
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3134
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
3135
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
3136
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
3137
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
3138
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3139
|
-
|
|
3140
|
-
---
|
|
3141
|
-
|
|
3142
|
-
The following software may be included in this product: @babel/types (7.28.6)
|
|
3143
|
-
This software contains the following license and notice below:
|
|
3144
|
-
|
|
3145
|
-
MIT License
|
|
3146
|
-
|
|
3147
|
-
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
3148
|
-
|
|
3149
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
3150
|
-
a copy of this software and associated documentation files (the
|
|
3151
|
-
"Software"), to deal in the Software without restriction, including
|
|
3152
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
3153
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3154
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
3155
|
-
the following conditions:
|
|
3156
|
-
|
|
3157
|
-
The above copyright notice and this permission notice shall be
|
|
3158
|
-
included in all copies or substantial portions of the Software.
|
|
3159
|
-
|
|
3160
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
3161
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3162
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
3163
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
3164
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
3165
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
3166
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3167
|
-
|
|
3168
|
-
---
|
|
3169
|
-
|
|
3170
3008
|
The following software may be included in this product: @babel/types (7.29.0)
|
|
3171
3009
|
This software contains the following license and notice below:
|
|
3172
3010
|
|
|
@@ -3380,30 +3218,6 @@ SOFTWARE.
|
|
|
3380
3218
|
|
|
3381
3219
|
---
|
|
3382
3220
|
|
|
3383
|
-
The following software may be included in this product: @esbuild/darwin-arm64 (0.27.2)
|
|
3384
|
-
This software contains the following license and notice below:
|
|
3385
|
-
|
|
3386
|
-
MIT License
|
|
3387
|
-
|
|
3388
|
-
Copyright (c) The maintainers of @esbuild/darwin-arm64 <https://github.com/evanw/esbuild#readme>
|
|
3389
|
-
|
|
3390
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
3391
|
-
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
3392
|
-
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3393
|
-
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
3394
|
-
following conditions:
|
|
3395
|
-
|
|
3396
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
3397
|
-
portions of the Software.
|
|
3398
|
-
|
|
3399
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
3400
|
-
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
3401
|
-
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
3402
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
3403
|
-
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3404
|
-
|
|
3405
|
-
---
|
|
3406
|
-
|
|
3407
3221
|
The following software may be included in this product: @esbuild/darwin-arm64 (0.27.3)
|
|
3408
3222
|
This software contains the following license and notice below:
|
|
3409
3223
|
|
|
@@ -3507,7 +3321,7 @@ THE SOFTWARE.
|
|
|
3507
3321
|
|
|
3508
3322
|
---
|
|
3509
3323
|
|
|
3510
|
-
The following software may be included in this product: @eslint/js (9.39.
|
|
3324
|
+
The following software may be included in this product: @eslint/js (9.39.2)
|
|
3511
3325
|
This software contains the following license and notice below:
|
|
3512
3326
|
|
|
3513
3327
|
Copyright OpenJS Foundation and other contributors, <www.openjsf.org>
|
|
@@ -3610,64 +3424,6 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
3610
3424
|
|
|
3611
3425
|
---
|
|
3612
3426
|
|
|
3613
|
-
The following software may be included in this product: @isaacs/balanced-match (4.0.1)
|
|
3614
|
-
This software contains the following license and notice below:
|
|
3615
|
-
|
|
3616
|
-
(MIT)
|
|
3617
|
-
|
|
3618
|
-
Original code Copyright Julian Gruber <julian@juliangruber.com>
|
|
3619
|
-
|
|
3620
|
-
Port to TypeScript Copyright Isaac Z. Schlueter <i@izs.me>
|
|
3621
|
-
|
|
3622
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
3623
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
3624
|
-
the Software without restriction, including without limitation the rights to
|
|
3625
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
3626
|
-
of the Software, and to permit persons to whom the Software is furnished to do
|
|
3627
|
-
so, subject to the following conditions:
|
|
3628
|
-
|
|
3629
|
-
The above copyright notice and this permission notice shall be included in all
|
|
3630
|
-
copies or substantial portions of the Software.
|
|
3631
|
-
|
|
3632
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3633
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3634
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3635
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3636
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3637
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3638
|
-
SOFTWARE.
|
|
3639
|
-
|
|
3640
|
-
---
|
|
3641
|
-
|
|
3642
|
-
The following software may be included in this product: @isaacs/brace-expansion (5.0.1)
|
|
3643
|
-
This software contains the following license and notice below:
|
|
3644
|
-
|
|
3645
|
-
MIT License
|
|
3646
|
-
|
|
3647
|
-
Copyright Julian Gruber <julian@juliangruber.com>
|
|
3648
|
-
|
|
3649
|
-
TypeScript port Copyright Isaac Z. Schlueter <i@izs.me>
|
|
3650
|
-
|
|
3651
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3652
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
3653
|
-
in the Software without restriction, including without limitation the rights
|
|
3654
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3655
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3656
|
-
furnished to do so, subject to the following conditions:
|
|
3657
|
-
|
|
3658
|
-
The above copyright notice and this permission notice shall be included in all
|
|
3659
|
-
copies or substantial portions of the Software.
|
|
3660
|
-
|
|
3661
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3662
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3663
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3664
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3665
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3666
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3667
|
-
SOFTWARE.
|
|
3668
|
-
|
|
3669
|
-
---
|
|
3670
|
-
|
|
3671
3427
|
The following software may be included in this product: @jest/diff-sequences (30.0.1)
|
|
3672
3428
|
This software contains the following license and notice below:
|
|
3673
3429
|
|
|
@@ -4547,12 +4303,12 @@ SOFTWARE.
|
|
|
4547
4303
|
|
|
4548
4304
|
---
|
|
4549
4305
|
|
|
4550
|
-
The following software may be included in this product: @nx/devkit (22.5.
|
|
4306
|
+
The following software may be included in this product: @nx/devkit (22.5.3)
|
|
4551
4307
|
This software contains the following license and notice below:
|
|
4552
4308
|
|
|
4553
4309
|
(The MIT License)
|
|
4554
4310
|
|
|
4555
|
-
Copyright (c) 2017-
|
|
4311
|
+
Copyright (c) 2017-2026 Narwhal Technologies Inc.
|
|
4556
4312
|
|
|
4557
4313
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4558
4314
|
a copy of this software and associated documentation files (the
|
|
@@ -4575,12 +4331,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
4575
4331
|
|
|
4576
4332
|
---
|
|
4577
4333
|
|
|
4578
|
-
The following software may be included in this product: @nx/eslint (22.5.
|
|
4334
|
+
The following software may be included in this product: @nx/eslint (22.5.3)
|
|
4579
4335
|
This software contains the following license and notice below:
|
|
4580
4336
|
|
|
4581
4337
|
(The MIT License)
|
|
4582
4338
|
|
|
4583
|
-
Copyright (c) 2017-
|
|
4339
|
+
Copyright (c) 2017-2026 Narwhal Technologies Inc.
|
|
4584
4340
|
|
|
4585
4341
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4586
4342
|
a copy of this software and associated documentation files (the
|
|
@@ -4603,12 +4359,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
4603
4359
|
|
|
4604
4360
|
---
|
|
4605
4361
|
|
|
4606
|
-
The following software may be included in this product: @nx/js (22.5.
|
|
4362
|
+
The following software may be included in this product: @nx/js (22.5.3)
|
|
4607
4363
|
This software contains the following license and notice below:
|
|
4608
4364
|
|
|
4609
4365
|
(The MIT License)
|
|
4610
4366
|
|
|
4611
|
-
Copyright (c) 2017-
|
|
4367
|
+
Copyright (c) 2017-2026 Narwhal Technologies Inc.
|
|
4612
4368
|
|
|
4613
4369
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4614
4370
|
a copy of this software and associated documentation files (the
|
|
@@ -4631,12 +4387,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
4631
4387
|
|
|
4632
4388
|
---
|
|
4633
4389
|
|
|
4634
|
-
The following software may be included in this product: @nx/module-federation (22.5.
|
|
4390
|
+
The following software may be included in this product: @nx/module-federation (22.5.3)
|
|
4635
4391
|
This software contains the following license and notice below:
|
|
4636
4392
|
|
|
4637
4393
|
(The MIT License)
|
|
4638
4394
|
|
|
4639
|
-
Copyright (c) 2017-
|
|
4395
|
+
Copyright (c) 2017-2026 Narwhal Technologies Inc.
|
|
4640
4396
|
|
|
4641
4397
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4642
4398
|
a copy of this software and associated documentation files (the
|
|
@@ -4659,12 +4415,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
4659
4415
|
|
|
4660
4416
|
---
|
|
4661
4417
|
|
|
4662
|
-
The following software may be included in this product: @nx/nx-darwin-arm64 (22.5.
|
|
4418
|
+
The following software may be included in this product: @nx/nx-darwin-arm64 (22.5.3)
|
|
4663
4419
|
This software contains the following license and notice below:
|
|
4664
4420
|
|
|
4665
4421
|
(The MIT License)
|
|
4666
4422
|
|
|
4667
|
-
Copyright (c) 2017-
|
|
4423
|
+
Copyright (c) 2017-2026 Narwhal Technologies Inc.
|
|
4668
4424
|
|
|
4669
4425
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4670
4426
|
a copy of this software and associated documentation files (the
|
|
@@ -4687,12 +4443,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
4687
4443
|
|
|
4688
4444
|
---
|
|
4689
4445
|
|
|
4690
|
-
The following software may be included in this product: @nx/react (22.5.
|
|
4446
|
+
The following software may be included in this product: @nx/react (22.5.3)
|
|
4691
4447
|
This software contains the following license and notice below:
|
|
4692
4448
|
|
|
4693
4449
|
(The MIT License)
|
|
4694
4450
|
|
|
4695
|
-
Copyright (c) 2017-
|
|
4451
|
+
Copyright (c) 2017-2026 Narwhal Technologies Inc.
|
|
4696
4452
|
|
|
4697
4453
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4698
4454
|
a copy of this software and associated documentation files (the
|
|
@@ -4715,12 +4471,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
4715
4471
|
|
|
4716
4472
|
---
|
|
4717
4473
|
|
|
4718
|
-
The following software may be included in this product: @nx/rollup (22.5.
|
|
4474
|
+
The following software may be included in this product: @nx/rollup (22.5.3)
|
|
4719
4475
|
This software contains the following license and notice below:
|
|
4720
4476
|
|
|
4721
4477
|
(The MIT License)
|
|
4722
4478
|
|
|
4723
|
-
Copyright (c) 2017-
|
|
4479
|
+
Copyright (c) 2017-2026 Narwhal Technologies Inc.
|
|
4724
4480
|
|
|
4725
4481
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4726
4482
|
a copy of this software and associated documentation files (the
|
|
@@ -4743,12 +4499,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
4743
4499
|
|
|
4744
4500
|
---
|
|
4745
4501
|
|
|
4746
|
-
The following software may be included in this product: @nx/vite (22.5.
|
|
4502
|
+
The following software may be included in this product: @nx/vite (22.5.3)
|
|
4747
4503
|
This software contains the following license and notice below:
|
|
4748
4504
|
|
|
4749
4505
|
(The MIT License)
|
|
4750
4506
|
|
|
4751
|
-
Copyright (c) 2017-
|
|
4507
|
+
Copyright (c) 2017-2026 Narwhal Technologies Inc.
|
|
4752
4508
|
|
|
4753
4509
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4754
4510
|
a copy of this software and associated documentation files (the
|
|
@@ -4771,12 +4527,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
4771
4527
|
|
|
4772
4528
|
---
|
|
4773
4529
|
|
|
4774
|
-
The following software may be included in this product: @nx/vitest (22.5.
|
|
4530
|
+
The following software may be included in this product: @nx/vitest (22.5.3)
|
|
4775
4531
|
This software contains the following license and notice below:
|
|
4776
4532
|
|
|
4777
4533
|
(The MIT License)
|
|
4778
4534
|
|
|
4779
|
-
Copyright (c) 2017-
|
|
4535
|
+
Copyright (c) 2017-2026 Narwhal Technologies Inc.
|
|
4780
4536
|
|
|
4781
4537
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4782
4538
|
a copy of this software and associated documentation files (the
|
|
@@ -4799,12 +4555,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
4799
4555
|
|
|
4800
4556
|
---
|
|
4801
4557
|
|
|
4802
|
-
The following software may be included in this product: @nx/web (22.5.
|
|
4558
|
+
The following software may be included in this product: @nx/web (22.5.3)
|
|
4803
4559
|
This software contains the following license and notice below:
|
|
4804
4560
|
|
|
4805
4561
|
(The MIT License)
|
|
4806
4562
|
|
|
4807
|
-
Copyright (c) 2017-
|
|
4563
|
+
Copyright (c) 2017-2026 Narwhal Technologies Inc.
|
|
4808
4564
|
|
|
4809
4565
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4810
4566
|
a copy of this software and associated documentation files (the
|
|
@@ -4827,12 +4583,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
4827
4583
|
|
|
4828
4584
|
---
|
|
4829
4585
|
|
|
4830
|
-
The following software may be included in this product: @nx/workspace (22.5.
|
|
4586
|
+
The following software may be included in this product: @nx/workspace (22.5.3)
|
|
4831
4587
|
This software contains the following license and notice below:
|
|
4832
4588
|
|
|
4833
4589
|
(The MIT License)
|
|
4834
4590
|
|
|
4835
|
-
Copyright (c) 2017-
|
|
4591
|
+
Copyright (c) 2017-2026 Narwhal Technologies Inc.
|
|
4836
4592
|
|
|
4837
4593
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4838
4594
|
a copy of this software and associated documentation files (the
|
|
@@ -11887,33 +11643,6 @@ SOFTWARE.
|
|
|
11887
11643
|
|
|
11888
11644
|
---
|
|
11889
11645
|
|
|
11890
|
-
The following software may be included in this product: esbuild (0.27.2)
|
|
11891
|
-
This software contains the following license and notice below:
|
|
11892
|
-
|
|
11893
|
-
MIT License
|
|
11894
|
-
|
|
11895
|
-
Copyright (c) 2020 Evan Wallace
|
|
11896
|
-
|
|
11897
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11898
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
11899
|
-
in the Software without restriction, including without limitation the rights
|
|
11900
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11901
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
11902
|
-
furnished to do so, subject to the following conditions:
|
|
11903
|
-
|
|
11904
|
-
The above copyright notice and this permission notice shall be included in all
|
|
11905
|
-
copies or substantial portions of the Software.
|
|
11906
|
-
|
|
11907
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
11908
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
11909
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
11910
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
11911
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
11912
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
11913
|
-
SOFTWARE.
|
|
11914
|
-
|
|
11915
|
-
---
|
|
11916
|
-
|
|
11917
11646
|
The following software may be included in this product: esbuild (0.27.3)
|
|
11918
11647
|
This software contains the following license and notice below:
|
|
11919
11648
|
|
|
@@ -12028,7 +11757,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
12028
11757
|
|
|
12029
11758
|
---
|
|
12030
11759
|
|
|
12031
|
-
The following software may be included in this product: eslint (9.39.
|
|
11760
|
+
The following software may be included in this product: eslint (9.39.2)
|
|
12032
11761
|
This software contains the following license and notice below:
|
|
12033
11762
|
|
|
12034
11763
|
Copyright OpenJS Foundation and other contributors, <www.openjsf.org>
|
|
@@ -18252,12 +17981,12 @@ OTHER DEALINGS IN THE SOFTWARE.
|
|
|
18252
17981
|
|
|
18253
17982
|
---
|
|
18254
17983
|
|
|
18255
|
-
The following software may be included in this product: nx (22.5.
|
|
17984
|
+
The following software may be included in this product: nx (22.5.3)
|
|
18256
17985
|
This software contains the following license and notice below:
|
|
18257
17986
|
|
|
18258
17987
|
(The MIT License)
|
|
18259
17988
|
|
|
18260
|
-
Copyright (c) 2017-
|
|
17989
|
+
Copyright (c) 2017-2026 Narwhal Technologies Inc.
|
|
18261
17990
|
|
|
18262
17991
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
18263
17992
|
a copy of this software and associated documentation files (the
|
|
@@ -39124,7 +38853,7 @@ software or this license, under any kind of legal claim._**
|
|
|
39124
38853
|
|
|
39125
38854
|
---
|
|
39126
38855
|
|
|
39127
|
-
The following software may be included in this product: minimatch (10.
|
|
38856
|
+
The following software may be included in this product: minimatch (10.2.1)
|
|
39128
38857
|
This software contains the following license and notice below:
|
|
39129
38858
|
|
|
39130
38859
|
# Blue Oak Model License
|