@phila/cli 0.0.1

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.
Files changed (278) hide show
  1. package/dist/commands/config.d.ts +30 -0
  2. package/dist/commands/config.d.ts.map +1 -0
  3. package/dist/commands/config.js +135 -0
  4. package/dist/commands/config.js.map +1 -0
  5. package/dist/commands/deploy.d.ts +2 -0
  6. package/dist/commands/deploy.d.ts.map +1 -0
  7. package/dist/commands/deploy.js +224 -0
  8. package/dist/commands/deploy.js.map +1 -0
  9. package/dist/commands/destroy.d.ts +3 -0
  10. package/dist/commands/destroy.d.ts.map +1 -0
  11. package/dist/commands/destroy.js +110 -0
  12. package/dist/commands/destroy.js.map +1 -0
  13. package/dist/commands/init.d.ts +25 -0
  14. package/dist/commands/init.d.ts.map +1 -0
  15. package/dist/commands/init.js +513 -0
  16. package/dist/commands/init.js.map +1 -0
  17. package/dist/commands/map.d.ts +8 -0
  18. package/dist/commands/map.d.ts.map +1 -0
  19. package/dist/commands/map.js +186 -0
  20. package/dist/commands/map.js.map +1 -0
  21. package/dist/commands/ship.d.ts +20 -0
  22. package/dist/commands/ship.d.ts.map +1 -0
  23. package/dist/commands/ship.js +445 -0
  24. package/dist/commands/ship.js.map +1 -0
  25. package/dist/commands/templates.d.ts +3 -0
  26. package/dist/commands/templates.d.ts.map +1 -0
  27. package/dist/commands/templates.js +120 -0
  28. package/dist/commands/templates.js.map +1 -0
  29. package/dist/index.d.ts +3 -0
  30. package/dist/index.d.ts.map +1 -0
  31. package/dist/index.js +82 -0
  32. package/dist/index.js.map +1 -0
  33. package/dist/templates/_shared/city.config.json.tmpl +24 -0
  34. package/dist/templates/_shared/dotnet-api/Api.csproj +17 -0
  35. package/dist/templates/_shared/dotnet-api/Program.cs +58 -0
  36. package/dist/templates/_shared/dotnet-api/aws-lambda-tools-defaults.json +10 -0
  37. package/dist/templates/_shared/dotnet-api/obj/Api.csproj.nuget.dgspec.json +80 -0
  38. package/dist/templates/_shared/dotnet-api/obj/Api.csproj.nuget.g.props +15 -0
  39. package/dist/templates/_shared/dotnet-api/obj/Api.csproj.nuget.g.targets +2 -0
  40. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  41. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  42. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  43. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  44. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  45. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/Api.assets.cache +0 -0
  46. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/Api.csproj.AssemblyReference.cache +0 -0
  47. package/dist/templates/_shared/dotnet-api/obj/project.assets.json +708 -0
  48. package/dist/templates/_shared/dotnet-api/obj/project.nuget.cache +35 -0
  49. package/dist/templates/_shared/dotnet-api-postgres/Api.csproj +19 -0
  50. package/dist/templates/_shared/dotnet-api-postgres/Program.cs +167 -0
  51. package/dist/templates/_shared/dotnet-api-postgres/aws-lambda-tools-defaults.json +10 -0
  52. package/dist/templates/_shared/dotnet-api-postgres/obj/Api.csproj.nuget.dgspec.json +88 -0
  53. package/dist/templates/_shared/dotnet-api-postgres/obj/Api.csproj.nuget.g.props +15 -0
  54. package/dist/templates/_shared/dotnet-api-postgres/obj/Api.csproj.nuget.g.targets +2 -0
  55. package/dist/templates/_shared/dotnet-api-postgres/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  56. package/dist/templates/_shared/dotnet-api-postgres/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  57. package/dist/templates/_shared/dotnet-api-postgres/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  58. package/dist/templates/_shared/dotnet-api-postgres/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  59. package/dist/templates/_shared/dotnet-api-postgres/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  60. package/dist/templates/_shared/dotnet-api-postgres/obj/Debug/net8.0/Api.assets.cache +0 -0
  61. package/dist/templates/_shared/dotnet-api-postgres/obj/project.assets.json +106 -0
  62. package/dist/templates/_shared/dotnet-api-postgres/obj/project.nuget.cache +15 -0
  63. package/dist/templates/_shared/nuxt-frontend/app.vue +3 -0
  64. package/dist/templates/_shared/nuxt-frontend/nuxt.config.ts +25 -0
  65. package/dist/templates/_shared/nuxt-frontend/package.json.tmpl +19 -0
  66. package/dist/templates/_shared/nuxt-frontend/pages/index.vue +6 -0
  67. package/dist/templates/_shared/nuxt-frontend/public/.gitkeep +0 -0
  68. package/dist/templates/_shared/nuxt-frontend/tsconfig.json +3 -0
  69. package/dist/templates/_shared/webapp-cdk-package.json.tmpl +23 -0
  70. package/dist/templates/_shared/webapp-frontend/app.vue +3 -0
  71. package/dist/templates/_shared/webapp-frontend/nuxt.config.ts +25 -0
  72. package/dist/templates/_shared/webapp-frontend/package.json.tmpl +19 -0
  73. package/dist/templates/_shared/webapp-frontend/pages/index.vue +7 -0
  74. package/dist/templates/_shared/webapp-frontend/public/.gitkeep +0 -0
  75. package/dist/templates/_shared/webapp-frontend/tsconfig.json +3 -0
  76. package/dist/templates/lambda-api-nodejs/README.md.tmpl +203 -0
  77. package/dist/templates/lambda-api-nodejs/apps/__lambdaName__/index.ts +89 -0
  78. package/dist/templates/lambda-api-nodejs/apps/__lambdaName__/package.json +17 -0
  79. package/dist/templates/lambda-api-nodejs/apps/__lambdaName__/tsconfig.json +8 -0
  80. package/dist/templates/lambda-api-nodejs/cdk/app.ts.tmpl +53 -0
  81. package/dist/templates/lambda-api-nodejs/cdk/cdk.json +68 -0
  82. package/dist/templates/lambda-api-nodejs/cdk/package.json +23 -0
  83. package/dist/templates/lambda-api-nodejs/cdk/tsconfig.json +9 -0
  84. package/dist/templates/lambda-api-nodejs/package.json.tmpl +20 -0
  85. package/dist/templates/lambda-api-nodejs/tsconfig.json +27 -0
  86. package/dist/templates/lambda-dynamo-api/README.md.tmpl +184 -0
  87. package/dist/templates/lambda-dynamo-api/apps/__lambdaName__/index.ts +109 -0
  88. package/dist/templates/lambda-dynamo-api/apps/__lambdaName__/package.json +19 -0
  89. package/dist/templates/lambda-dynamo-api/apps/__lambdaName__/tsconfig.json +24 -0
  90. package/dist/templates/lambda-dynamo-api/cdk/app.ts.tmpl +59 -0
  91. package/dist/templates/lambda-dynamo-api/cdk/cdk.json +73 -0
  92. package/dist/templates/lambda-dynamo-api/cdk/package.json +23 -0
  93. package/dist/templates/lambda-dynamo-api/cdk/tsconfig.json +14 -0
  94. package/dist/templates/lambda-dynamo-api/package.json.tmpl +20 -0
  95. package/dist/templates/lambda-dynamo-api/tsconfig.json +27 -0
  96. package/dist/templates/lambda-postgres-api/README.md.tmpl +234 -0
  97. package/dist/templates/lambda-postgres-api/apps/__lambdaName__/index.ts +76 -0
  98. package/dist/templates/lambda-postgres-api/apps/__lambdaName__/package.json +18 -0
  99. package/dist/templates/lambda-postgres-api/apps/__lambdaName__/tsconfig.json +26 -0
  100. package/dist/templates/lambda-postgres-api/cdk/app.ts.tmpl +55 -0
  101. package/dist/templates/lambda-postgres-api/cdk/cdk.json +4 -0
  102. package/dist/templates/lambda-postgres-api/cdk/package.json +23 -0
  103. package/dist/templates/lambda-postgres-api/cdk/tsconfig.json +25 -0
  104. package/dist/templates/lambda-postgres-api/package.json.tmpl +20 -0
  105. package/dist/templates/lambda-postgres-api/tsconfig.json +11 -0
  106. package/dist/templates/static-site/README.md.tmpl +72 -0
  107. package/dist/templates/static-site/cdk/app.ts.tmpl +50 -0
  108. package/dist/templates/static-site/cdk/cdk.json +68 -0
  109. package/dist/templates/static-site/cdk/package.json +23 -0
  110. package/dist/templates/static-site/cdk/tsconfig.json +9 -0
  111. package/dist/templates/static-site/frontend/.gitkeep +0 -0
  112. package/dist/templates/static-site/frontend/README.md +41 -0
  113. package/dist/templates/static-site/frontend/package.json +9 -0
  114. package/dist/templates/static-site/package.json.tmpl +19 -0
  115. package/dist/templates/static-site/tsconfig.json +27 -0
  116. package/dist/templates/webapp-ecs-dotnet/README.md.tmpl +213 -0
  117. package/dist/templates/webapp-ecs-dotnet/apps/api/Api.csproj +12 -0
  118. package/dist/templates/webapp-ecs-dotnet/apps/api/Dockerfile +30 -0
  119. package/dist/templates/webapp-ecs-dotnet/apps/api/Program.cs +85 -0
  120. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Api.csproj.nuget.dgspec.json +70 -0
  121. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Api.csproj.nuget.g.props +15 -0
  122. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Api.csproj.nuget.g.targets +2 -0
  123. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  124. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  125. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  126. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  127. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  128. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Debug/net8.0/Api.assets.cache +0 -0
  129. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/project.assets.json +75 -0
  130. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/project.nuget.cache +8 -0
  131. package/dist/templates/webapp-ecs-dotnet/cdk/app.ts.tmpl +60 -0
  132. package/dist/templates/webapp-ecs-dotnet/cdk/cdk.json +38 -0
  133. package/dist/templates/webapp-ecs-dotnet/cdk/tsconfig.json +25 -0
  134. package/dist/templates/webapp-ecs-dotnet/package.json.tmpl +23 -0
  135. package/dist/templates/webapp-ecs-dotnet/tsconfig.json +26 -0
  136. package/dist/templates/webapp-ecs-node/README.md.tmpl +207 -0
  137. package/dist/templates/webapp-ecs-node/apps/api/Dockerfile +33 -0
  138. package/dist/templates/webapp-ecs-node/apps/api/index.ts +74 -0
  139. package/dist/templates/webapp-ecs-node/apps/api/package.json +22 -0
  140. package/dist/templates/webapp-ecs-node/apps/api/tsconfig.json +18 -0
  141. package/dist/templates/webapp-ecs-node/cdk/app.ts.tmpl +60 -0
  142. package/dist/templates/webapp-ecs-node/cdk/cdk.json +38 -0
  143. package/dist/templates/webapp-ecs-node/cdk/tsconfig.json +25 -0
  144. package/dist/templates/webapp-ecs-node/package.json.tmpl +25 -0
  145. package/dist/templates/webapp-ecs-node/tsconfig.json +26 -0
  146. package/dist/templates/webapp-ecs-postgres-dotnet/README.md.tmpl +271 -0
  147. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/Api.csproj +17 -0
  148. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/Dockerfile +30 -0
  149. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/Program.cs +194 -0
  150. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Api.csproj.nuget.dgspec.json +80 -0
  151. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Api.csproj.nuget.g.props +19 -0
  152. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Api.csproj.nuget.g.targets +6 -0
  153. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  154. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  155. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  156. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  157. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  158. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.assets.cache +0 -0
  159. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.csproj.AssemblyReference.cache +0 -0
  160. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/project.assets.json +395 -0
  161. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/project.nuget.cache +49 -0
  162. package/dist/templates/webapp-ecs-postgres-dotnet/cdk/app.ts.tmpl +62 -0
  163. package/dist/templates/webapp-ecs-postgres-dotnet/cdk/cdk.json +38 -0
  164. package/dist/templates/webapp-ecs-postgres-dotnet/cdk/tsconfig.json +25 -0
  165. package/dist/templates/webapp-ecs-postgres-dotnet/package.json.tmpl +23 -0
  166. package/dist/templates/webapp-ecs-postgres-dotnet/tsconfig.json +26 -0
  167. package/dist/templates/webapp-ecs-postgres-node/README.md.tmpl +261 -0
  168. package/dist/templates/webapp-ecs-postgres-node/apps/api/Dockerfile +33 -0
  169. package/dist/templates/webapp-ecs-postgres-node/apps/api/index.ts +160 -0
  170. package/dist/templates/webapp-ecs-postgres-node/apps/api/package.json +25 -0
  171. package/dist/templates/webapp-ecs-postgres-node/apps/api/tsconfig.json +18 -0
  172. package/dist/templates/webapp-ecs-postgres-node/cdk/app.ts.tmpl +62 -0
  173. package/dist/templates/webapp-ecs-postgres-node/cdk/cdk.json +38 -0
  174. package/dist/templates/webapp-ecs-postgres-node/cdk/tsconfig.json +25 -0
  175. package/dist/templates/webapp-ecs-postgres-node/package.json.tmpl +25 -0
  176. package/dist/templates/webapp-ecs-postgres-node/tsconfig.json +26 -0
  177. package/dist/templates/webapp-lambda-dotnet/README.md.tmpl +188 -0
  178. package/dist/templates/webapp-lambda-dotnet/apps/api/Api.csproj +17 -0
  179. package/dist/templates/webapp-lambda-dotnet/apps/api/Program.cs +58 -0
  180. package/dist/templates/webapp-lambda-dotnet/apps/api/aws-lambda-tools-defaults.json +10 -0
  181. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Api.csproj.nuget.dgspec.json +80 -0
  182. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Api.csproj.nuget.g.props +15 -0
  183. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Api.csproj.nuget.g.targets +2 -0
  184. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  185. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  186. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  187. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  188. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  189. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/Api.assets.cache +0 -0
  190. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/Api.csproj.AssemblyReference.cache +0 -0
  191. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/project.assets.json +708 -0
  192. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/project.nuget.cache +35 -0
  193. package/dist/templates/webapp-lambda-dotnet/cdk/app.ts.tmpl +59 -0
  194. package/dist/templates/webapp-lambda-dotnet/cdk/cdk.json +68 -0
  195. package/dist/templates/webapp-lambda-dotnet/cdk/tsconfig.json +9 -0
  196. package/dist/templates/webapp-lambda-dotnet/package.json.tmpl +23 -0
  197. package/dist/templates/webapp-lambda-dotnet/tsconfig.json +27 -0
  198. package/dist/templates/webapp-lambda-dynamo-dotnet/README.md.tmpl +223 -0
  199. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/Api.csproj +18 -0
  200. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/Program.cs +155 -0
  201. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/aws-lambda-tools-defaults.json +10 -0
  202. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Api.csproj.nuget.dgspec.json +84 -0
  203. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Api.csproj.nuget.g.props +19 -0
  204. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Api.csproj.nuget.g.targets +2 -0
  205. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  206. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  207. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  208. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  209. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  210. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/Api.assets.cache +0 -0
  211. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/Api.csproj.AssemblyReference.cache +0 -0
  212. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/project.assets.json +989 -0
  213. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/project.nuget.cache +223 -0
  214. package/dist/templates/webapp-lambda-dynamo-dotnet/cdk/app.ts.tmpl +65 -0
  215. package/dist/templates/webapp-lambda-dynamo-dotnet/cdk/cdk.json +68 -0
  216. package/dist/templates/webapp-lambda-dynamo-dotnet/cdk/tsconfig.json +9 -0
  217. package/dist/templates/webapp-lambda-dynamo-dotnet/package.json.tmpl +23 -0
  218. package/dist/templates/webapp-lambda-dynamo-dotnet/tsconfig.json +27 -0
  219. package/dist/templates/webapp-lambda-dynamo-node/README.md.tmpl +189 -0
  220. package/dist/templates/webapp-lambda-dynamo-node/apps/api/index.ts +109 -0
  221. package/dist/templates/webapp-lambda-dynamo-node/apps/api/package.json +19 -0
  222. package/dist/templates/webapp-lambda-dynamo-node/apps/api/tsconfig.json +8 -0
  223. package/dist/templates/webapp-lambda-dynamo-node/cdk/app.ts.tmpl +65 -0
  224. package/dist/templates/webapp-lambda-dynamo-node/cdk/cdk.json +68 -0
  225. package/dist/templates/webapp-lambda-dynamo-node/cdk/tsconfig.json +9 -0
  226. package/dist/templates/webapp-lambda-dynamo-node/package.json.tmpl +24 -0
  227. package/dist/templates/webapp-lambda-dynamo-node/tsconfig.json +27 -0
  228. package/dist/templates/webapp-lambda-node/README.md.tmpl +179 -0
  229. package/dist/templates/webapp-lambda-node/apps/api/index.ts +100 -0
  230. package/dist/templates/webapp-lambda-node/apps/api/package.json +17 -0
  231. package/dist/templates/webapp-lambda-node/apps/api/tsconfig.json +8 -0
  232. package/dist/templates/webapp-lambda-node/cdk/app.ts.tmpl +59 -0
  233. package/dist/templates/webapp-lambda-node/cdk/cdk.json +68 -0
  234. package/dist/templates/webapp-lambda-node/cdk/tsconfig.json +9 -0
  235. package/dist/templates/webapp-lambda-node/package.json.tmpl +24 -0
  236. package/dist/templates/webapp-lambda-node/tsconfig.json +27 -0
  237. package/dist/templates/webapp-lambda-postgres-dotnet/README.md.tmpl +240 -0
  238. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/Api.csproj +19 -0
  239. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/Program.cs +167 -0
  240. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/aws-lambda-tools-defaults.json +10 -0
  241. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Api.csproj.nuget.dgspec.json +88 -0
  242. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Api.csproj.nuget.g.props +15 -0
  243. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Api.csproj.nuget.g.targets +2 -0
  244. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  245. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  246. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  247. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  248. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  249. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.assets.cache +0 -0
  250. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/project.assets.json +106 -0
  251. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/project.nuget.cache +15 -0
  252. package/dist/templates/webapp-lambda-postgres-dotnet/cdk/app.ts.tmpl +61 -0
  253. package/dist/templates/webapp-lambda-postgres-dotnet/cdk/cdk.json +68 -0
  254. package/dist/templates/webapp-lambda-postgres-dotnet/cdk/tsconfig.json +9 -0
  255. package/dist/templates/webapp-lambda-postgres-dotnet/package.json.tmpl +23 -0
  256. package/dist/templates/webapp-lambda-postgres-dotnet/tsconfig.json +27 -0
  257. package/dist/templates/webapp-lambda-postgres-node/README.md.tmpl +190 -0
  258. package/dist/templates/webapp-lambda-postgres-node/apps/api/index.ts +76 -0
  259. package/dist/templates/webapp-lambda-postgres-node/apps/api/package.json +18 -0
  260. package/dist/templates/webapp-lambda-postgres-node/apps/api/tsconfig.json +8 -0
  261. package/dist/templates/webapp-lambda-postgres-node/cdk/app.ts.tmpl +61 -0
  262. package/dist/templates/webapp-lambda-postgres-node/cdk/cdk.json +68 -0
  263. package/dist/templates/webapp-lambda-postgres-node/cdk/tsconfig.json +9 -0
  264. package/dist/templates/webapp-lambda-postgres-node/package.json.tmpl +24 -0
  265. package/dist/templates/webapp-lambda-postgres-node/tsconfig.json +27 -0
  266. package/dist/utils/aws.d.ts +4 -0
  267. package/dist/utils/aws.d.ts.map +1 -0
  268. package/dist/utils/aws.js +90 -0
  269. package/dist/utils/aws.js.map +1 -0
  270. package/dist/utils/dependencies.d.ts +27 -0
  271. package/dist/utils/dependencies.d.ts.map +1 -0
  272. package/dist/utils/dependencies.js +267 -0
  273. package/dist/utils/dependencies.js.map +1 -0
  274. package/dist/utils/template.d.ts +23 -0
  275. package/dist/utils/template.d.ts.map +1 -0
  276. package/dist/utils/template.js +115 -0
  277. package/dist/utils/template.js.map +1 -0
  278. package/package.json +48 -0
@@ -0,0 +1,989 @@
1
+ {
2
+ "version": 3,
3
+ "targets": {
4
+ "net8.0": {
5
+ "Amazon.Lambda.APIGatewayEvents/2.7.1": {
6
+ "type": "package",
7
+ "compile": {
8
+ "lib/net8.0/Amazon.Lambda.APIGatewayEvents.dll": {
9
+ "related": ".xml"
10
+ }
11
+ },
12
+ "runtime": {
13
+ "lib/net8.0/Amazon.Lambda.APIGatewayEvents.dll": {
14
+ "related": ".xml"
15
+ }
16
+ }
17
+ },
18
+ "Amazon.Lambda.ApplicationLoadBalancerEvents/2.2.0": {
19
+ "type": "package",
20
+ "compile": {
21
+ "lib/net8.0/Amazon.Lambda.ApplicationLoadBalancerEvents.dll": {
22
+ "related": ".xml"
23
+ }
24
+ },
25
+ "runtime": {
26
+ "lib/net8.0/Amazon.Lambda.ApplicationLoadBalancerEvents.dll": {
27
+ "related": ".xml"
28
+ }
29
+ }
30
+ },
31
+ "Amazon.Lambda.AspNetCoreServer/9.0.2": {
32
+ "type": "package",
33
+ "dependencies": {
34
+ "Amazon.Lambda.APIGatewayEvents": "2.7.1",
35
+ "Amazon.Lambda.ApplicationLoadBalancerEvents": "2.2.0",
36
+ "Amazon.Lambda.Core": "2.5.0",
37
+ "Amazon.Lambda.Logging.AspNetCore": "3.1.1",
38
+ "Amazon.Lambda.Serialization.SystemTextJson": "2.4.4"
39
+ },
40
+ "compile": {
41
+ "lib/net8.0/Amazon.Lambda.AspNetCoreServer.dll": {
42
+ "related": ".xml"
43
+ }
44
+ },
45
+ "runtime": {
46
+ "lib/net8.0/Amazon.Lambda.AspNetCoreServer.dll": {
47
+ "related": ".xml"
48
+ }
49
+ },
50
+ "frameworkReferences": [
51
+ "Microsoft.AspNetCore.App"
52
+ ]
53
+ },
54
+ "Amazon.Lambda.AspNetCoreServer.Hosting/1.7.2": {
55
+ "type": "package",
56
+ "dependencies": {
57
+ "Amazon.Lambda.APIGatewayEvents": "2.7.1",
58
+ "Amazon.Lambda.AspNetCoreServer": "9.0.2",
59
+ "Amazon.Lambda.Core": "2.5.0",
60
+ "Amazon.Lambda.RuntimeSupport": "1.12.0"
61
+ },
62
+ "compile": {
63
+ "lib/net8.0/Amazon.Lambda.AspNetCoreServer.Hosting.dll": {
64
+ "related": ".xml"
65
+ }
66
+ },
67
+ "runtime": {
68
+ "lib/net8.0/Amazon.Lambda.AspNetCoreServer.Hosting.dll": {
69
+ "related": ".xml"
70
+ }
71
+ }
72
+ },
73
+ "Amazon.Lambda.Core/2.5.0": {
74
+ "type": "package",
75
+ "compile": {
76
+ "lib/net8.0/Amazon.Lambda.Core.dll": {
77
+ "related": ".xml"
78
+ }
79
+ },
80
+ "runtime": {
81
+ "lib/net8.0/Amazon.Lambda.Core.dll": {
82
+ "related": ".xml"
83
+ }
84
+ }
85
+ },
86
+ "Amazon.Lambda.Logging.AspNetCore/3.1.1": {
87
+ "type": "package",
88
+ "dependencies": {
89
+ "Amazon.Lambda.Core": "2.5.0",
90
+ "Microsoft.Extensions.Configuration.Abstractions": "2.1.0",
91
+ "Microsoft.Extensions.Logging": "2.1.0",
92
+ "Microsoft.Extensions.Logging.Abstractions": "2.1.0"
93
+ },
94
+ "compile": {
95
+ "lib/netstandard2.0/Amazon.Lambda.Logging.AspNetCore.dll": {
96
+ "related": ".xml"
97
+ }
98
+ },
99
+ "runtime": {
100
+ "lib/netstandard2.0/Amazon.Lambda.Logging.AspNetCore.dll": {
101
+ "related": ".xml"
102
+ }
103
+ }
104
+ },
105
+ "Amazon.Lambda.RuntimeSupport/1.12.0": {
106
+ "type": "package",
107
+ "dependencies": {
108
+ "Amazon.Lambda.Core": "2.5.0",
109
+ "SnapshotRestore.Registry": "1.0.0"
110
+ },
111
+ "compile": {
112
+ "lib/net8.0/Amazon.Lambda.RuntimeSupport.dll": {
113
+ "related": ".xml"
114
+ }
115
+ },
116
+ "runtime": {
117
+ "lib/net8.0/Amazon.Lambda.RuntimeSupport.dll": {
118
+ "related": ".xml"
119
+ }
120
+ }
121
+ },
122
+ "Amazon.Lambda.Serialization.SystemTextJson/2.4.4": {
123
+ "type": "package",
124
+ "dependencies": {
125
+ "Amazon.Lambda.Core": "2.3.0"
126
+ },
127
+ "compile": {
128
+ "lib/net8.0/Amazon.Lambda.Serialization.SystemTextJson.dll": {
129
+ "related": ".xml"
130
+ }
131
+ },
132
+ "runtime": {
133
+ "lib/net8.0/Amazon.Lambda.Serialization.SystemTextJson.dll": {
134
+ "related": ".xml"
135
+ }
136
+ }
137
+ },
138
+ "AWSSDK.Core/3.7.400": {
139
+ "type": "package",
140
+ "compile": {
141
+ "lib/net8.0/AWSSDK.Core.dll": {
142
+ "related": ".pdb;.xml"
143
+ }
144
+ },
145
+ "runtime": {
146
+ "lib/net8.0/AWSSDK.Core.dll": {
147
+ "related": ".pdb;.xml"
148
+ }
149
+ }
150
+ },
151
+ "AWSSDK.DynamoDBv2/3.7.400": {
152
+ "type": "package",
153
+ "dependencies": {
154
+ "AWSSDK.Core": "[3.7.400, 4.0.0)"
155
+ },
156
+ "compile": {
157
+ "lib/net8.0/AWSSDK.DynamoDBv2.dll": {
158
+ "related": ".pdb;.xml"
159
+ }
160
+ },
161
+ "runtime": {
162
+ "lib/net8.0/AWSSDK.DynamoDBv2.dll": {
163
+ "related": ".pdb;.xml"
164
+ }
165
+ }
166
+ },
167
+ "Microsoft.Extensions.Configuration/2.1.0": {
168
+ "type": "package",
169
+ "dependencies": {
170
+ "Microsoft.Extensions.Configuration.Abstractions": "2.1.0"
171
+ },
172
+ "compile": {
173
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
174
+ "related": ".xml"
175
+ }
176
+ },
177
+ "runtime": {
178
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
179
+ "related": ".xml"
180
+ }
181
+ }
182
+ },
183
+ "Microsoft.Extensions.Configuration.Abstractions/2.1.0": {
184
+ "type": "package",
185
+ "dependencies": {
186
+ "Microsoft.Extensions.Primitives": "2.1.0"
187
+ },
188
+ "compile": {
189
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
190
+ "related": ".xml"
191
+ }
192
+ },
193
+ "runtime": {
194
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
195
+ "related": ".xml"
196
+ }
197
+ }
198
+ },
199
+ "Microsoft.Extensions.Configuration.Binder/2.1.0": {
200
+ "type": "package",
201
+ "dependencies": {
202
+ "Microsoft.Extensions.Configuration": "2.1.0"
203
+ },
204
+ "compile": {
205
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
206
+ "related": ".xml"
207
+ }
208
+ },
209
+ "runtime": {
210
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
211
+ "related": ".xml"
212
+ }
213
+ }
214
+ },
215
+ "Microsoft.Extensions.DependencyInjection.Abstractions/2.1.0": {
216
+ "type": "package",
217
+ "compile": {
218
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
219
+ "related": ".xml"
220
+ }
221
+ },
222
+ "runtime": {
223
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
224
+ "related": ".xml"
225
+ }
226
+ }
227
+ },
228
+ "Microsoft.Extensions.Logging/2.1.0": {
229
+ "type": "package",
230
+ "dependencies": {
231
+ "Microsoft.Extensions.Configuration.Binder": "2.1.0",
232
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
233
+ "Microsoft.Extensions.Logging.Abstractions": "2.1.0",
234
+ "Microsoft.Extensions.Options": "2.1.0"
235
+ },
236
+ "compile": {
237
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
238
+ "related": ".xml"
239
+ }
240
+ },
241
+ "runtime": {
242
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
243
+ "related": ".xml"
244
+ }
245
+ }
246
+ },
247
+ "Microsoft.Extensions.Logging.Abstractions/2.1.0": {
248
+ "type": "package",
249
+ "compile": {
250
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
251
+ "related": ".xml"
252
+ }
253
+ },
254
+ "runtime": {
255
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
256
+ "related": ".xml"
257
+ }
258
+ }
259
+ },
260
+ "Microsoft.Extensions.Options/2.1.0": {
261
+ "type": "package",
262
+ "dependencies": {
263
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
264
+ "Microsoft.Extensions.Primitives": "2.1.0"
265
+ },
266
+ "compile": {
267
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
268
+ "related": ".xml"
269
+ }
270
+ },
271
+ "runtime": {
272
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
273
+ "related": ".xml"
274
+ }
275
+ }
276
+ },
277
+ "Microsoft.Extensions.Primitives/2.1.0": {
278
+ "type": "package",
279
+ "dependencies": {
280
+ "System.Memory": "4.5.0",
281
+ "System.Runtime.CompilerServices.Unsafe": "4.5.0"
282
+ },
283
+ "compile": {
284
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
285
+ "related": ".xml"
286
+ }
287
+ },
288
+ "runtime": {
289
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
290
+ "related": ".xml"
291
+ }
292
+ }
293
+ },
294
+ "SnapshotRestore.Registry/1.0.0": {
295
+ "type": "package",
296
+ "compile": {
297
+ "lib/net8.0/SnapshotRestore.Registry.dll": {}
298
+ },
299
+ "runtime": {
300
+ "lib/net8.0/SnapshotRestore.Registry.dll": {}
301
+ }
302
+ },
303
+ "System.Memory/4.5.0": {
304
+ "type": "package",
305
+ "compile": {
306
+ "ref/netcoreapp2.1/_._": {}
307
+ },
308
+ "runtime": {
309
+ "lib/netcoreapp2.1/_._": {}
310
+ }
311
+ },
312
+ "System.Runtime.CompilerServices.Unsafe/4.5.0": {
313
+ "type": "package",
314
+ "compile": {
315
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
316
+ "related": ".xml"
317
+ }
318
+ },
319
+ "runtime": {
320
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
321
+ "related": ".xml"
322
+ }
323
+ }
324
+ }
325
+ }
326
+ },
327
+ "libraries": {
328
+ "Amazon.Lambda.APIGatewayEvents/2.7.1": {
329
+ "sha512": "ORuKOBjquor/clDL5ogeUoKEHt/iRmaC673gFpNzpwF5VkJ7LRvQc4MYnkeIexnXEwdS7yTkM4eSu9wzORi/wg==",
330
+ "type": "package",
331
+ "path": "amazon.lambda.apigatewayevents/2.7.1",
332
+ "files": [
333
+ ".nupkg.metadata",
334
+ ".signature.p7s",
335
+ "README.md",
336
+ "amazon.lambda.apigatewayevents.2.7.1.nupkg.sha512",
337
+ "amazon.lambda.apigatewayevents.nuspec",
338
+ "lib/net8.0/Amazon.Lambda.APIGatewayEvents.dll",
339
+ "lib/net8.0/Amazon.Lambda.APIGatewayEvents.xml",
340
+ "lib/netcoreapp3.1/Amazon.Lambda.APIGatewayEvents.dll",
341
+ "lib/netcoreapp3.1/Amazon.Lambda.APIGatewayEvents.xml",
342
+ "lib/netstandard2.0/Amazon.Lambda.APIGatewayEvents.dll",
343
+ "lib/netstandard2.0/Amazon.Lambda.APIGatewayEvents.xml"
344
+ ]
345
+ },
346
+ "Amazon.Lambda.ApplicationLoadBalancerEvents/2.2.0": {
347
+ "sha512": "UtCd9tFuVyED8+DmDKEkdXJbAb/TdHIz51R/CsJCexKerO6HGOG87FGId4Ce9IXE+qjlBGyNQsKCw9oLLNe0hw==",
348
+ "type": "package",
349
+ "path": "amazon.lambda.applicationloadbalancerevents/2.2.0",
350
+ "files": [
351
+ ".nupkg.metadata",
352
+ ".signature.p7s",
353
+ "amazon.lambda.applicationloadbalancerevents.2.2.0.nupkg.sha512",
354
+ "amazon.lambda.applicationloadbalancerevents.nuspec",
355
+ "lib/net8.0/Amazon.Lambda.ApplicationLoadBalancerEvents.dll",
356
+ "lib/net8.0/Amazon.Lambda.ApplicationLoadBalancerEvents.xml",
357
+ "lib/netcoreapp3.1/Amazon.Lambda.ApplicationLoadBalancerEvents.dll",
358
+ "lib/netcoreapp3.1/Amazon.Lambda.ApplicationLoadBalancerEvents.xml",
359
+ "lib/netstandard2.0/Amazon.Lambda.ApplicationLoadBalancerEvents.dll",
360
+ "lib/netstandard2.0/Amazon.Lambda.ApplicationLoadBalancerEvents.xml"
361
+ ]
362
+ },
363
+ "Amazon.Lambda.AspNetCoreServer/9.0.2": {
364
+ "sha512": "9u9Qzisb/ibSewxzuwDGq2dyRyn6cMW6EOTrSS+og01GPIlQTxrPqx02Pw6WC8s1leYombNvqXsY0/Qtib1H2A==",
365
+ "type": "package",
366
+ "path": "amazon.lambda.aspnetcoreserver/9.0.2",
367
+ "files": [
368
+ ".nupkg.metadata",
369
+ ".signature.p7s",
370
+ "README.md",
371
+ "amazon.lambda.aspnetcoreserver.9.0.2.nupkg.sha512",
372
+ "amazon.lambda.aspnetcoreserver.nuspec",
373
+ "lib/net6.0/Amazon.Lambda.AspNetCoreServer.dll",
374
+ "lib/net6.0/Amazon.Lambda.AspNetCoreServer.xml",
375
+ "lib/net8.0/Amazon.Lambda.AspNetCoreServer.dll",
376
+ "lib/net8.0/Amazon.Lambda.AspNetCoreServer.xml"
377
+ ]
378
+ },
379
+ "Amazon.Lambda.AspNetCoreServer.Hosting/1.7.2": {
380
+ "sha512": "Fyz1eEFYAeTS1SzsHoae9jic+ylznccqU9Omgb6bjFi/XmWQZLssZI0weodoo7RlhgvURvDcuo15glqLz4kq/Q==",
381
+ "type": "package",
382
+ "path": "amazon.lambda.aspnetcoreserver.hosting/1.7.2",
383
+ "files": [
384
+ ".nupkg.metadata",
385
+ ".signature.p7s",
386
+ "README.md",
387
+ "amazon.lambda.aspnetcoreserver.hosting.1.7.2.nupkg.sha512",
388
+ "amazon.lambda.aspnetcoreserver.hosting.nuspec",
389
+ "lib/net6.0/Amazon.Lambda.AspNetCoreServer.Hosting.dll",
390
+ "lib/net6.0/Amazon.Lambda.AspNetCoreServer.Hosting.xml",
391
+ "lib/net8.0/Amazon.Lambda.AspNetCoreServer.Hosting.dll",
392
+ "lib/net8.0/Amazon.Lambda.AspNetCoreServer.Hosting.xml"
393
+ ]
394
+ },
395
+ "Amazon.Lambda.Core/2.5.0": {
396
+ "sha512": "JrDdnjUPFcZ74VDjVc2kMucyUpjHnN77Al9Owc17DYYFYAVav46fLRl1BlJj0UPhJxTakoB/h1PhU/6J005Qrw==",
397
+ "type": "package",
398
+ "path": "amazon.lambda.core/2.5.0",
399
+ "files": [
400
+ ".nupkg.metadata",
401
+ ".signature.p7s",
402
+ "README.md",
403
+ "amazon.lambda.core.2.5.0.nupkg.sha512",
404
+ "amazon.lambda.core.nuspec",
405
+ "lib/net6.0/Amazon.Lambda.Core.dll",
406
+ "lib/net6.0/Amazon.Lambda.Core.xml",
407
+ "lib/net8.0/Amazon.Lambda.Core.dll",
408
+ "lib/net8.0/Amazon.Lambda.Core.xml",
409
+ "lib/netstandard2.0/Amazon.Lambda.Core.dll",
410
+ "lib/netstandard2.0/Amazon.Lambda.Core.xml"
411
+ ]
412
+ },
413
+ "Amazon.Lambda.Logging.AspNetCore/3.1.1": {
414
+ "sha512": "q7ZUrjVulikcV8+hMIrAk+LJe3xQsdWCtM/yS0enjajopOuit71xYAJhrT1eXstvZMpqfg+B7gCUJboN9lHG9g==",
415
+ "type": "package",
416
+ "path": "amazon.lambda.logging.aspnetcore/3.1.1",
417
+ "files": [
418
+ ".nupkg.metadata",
419
+ ".signature.p7s",
420
+ "amazon.lambda.logging.aspnetcore.3.1.1.nupkg.sha512",
421
+ "amazon.lambda.logging.aspnetcore.nuspec",
422
+ "lib/netstandard2.0/Amazon.Lambda.Logging.AspNetCore.dll",
423
+ "lib/netstandard2.0/Amazon.Lambda.Logging.AspNetCore.xml"
424
+ ]
425
+ },
426
+ "Amazon.Lambda.RuntimeSupport/1.12.0": {
427
+ "sha512": "bmLjqPi2+qyNk1Lt958iE0rAccLNUp2ZDBQ5V6clGtVkLcV/Jr27mJu8mNoSsvwlrRTABLbfIkydc6aTlULq/A==",
428
+ "type": "package",
429
+ "path": "amazon.lambda.runtimesupport/1.12.0",
430
+ "files": [
431
+ ".nupkg.metadata",
432
+ ".signature.p7s",
433
+ "README.md",
434
+ "amazon.lambda.runtimesupport.1.12.0.nupkg.sha512",
435
+ "amazon.lambda.runtimesupport.nuspec",
436
+ "lib/net5.0/Amazon.Lambda.RuntimeSupport.dll",
437
+ "lib/net5.0/Amazon.Lambda.RuntimeSupport.xml",
438
+ "lib/net6.0/Amazon.Lambda.RuntimeSupport.dll",
439
+ "lib/net6.0/Amazon.Lambda.RuntimeSupport.xml",
440
+ "lib/net8.0/Amazon.Lambda.RuntimeSupport.dll",
441
+ "lib/net8.0/Amazon.Lambda.RuntimeSupport.xml",
442
+ "lib/netstandard2.0/Amazon.Lambda.RuntimeSupport.dll",
443
+ "lib/netstandard2.0/Amazon.Lambda.RuntimeSupport.xml"
444
+ ]
445
+ },
446
+ "Amazon.Lambda.Serialization.SystemTextJson/2.4.4": {
447
+ "sha512": "iv/cvqFuZ3v3+NFDyof0IJZvU+4kdpzOe3pWSBwp9HB885I+D32WQxuid9V4GnvRynER9XnWMPaDmImX8qH5cA==",
448
+ "type": "package",
449
+ "path": "amazon.lambda.serialization.systemtextjson/2.4.4",
450
+ "files": [
451
+ ".nupkg.metadata",
452
+ ".signature.p7s",
453
+ "README.md",
454
+ "amazon.lambda.serialization.systemtextjson.2.4.4.nupkg.sha512",
455
+ "amazon.lambda.serialization.systemtextjson.nuspec",
456
+ "lib/net6.0/Amazon.Lambda.Serialization.SystemTextJson.dll",
457
+ "lib/net6.0/Amazon.Lambda.Serialization.SystemTextJson.xml",
458
+ "lib/net8.0/Amazon.Lambda.Serialization.SystemTextJson.dll",
459
+ "lib/net8.0/Amazon.Lambda.Serialization.SystemTextJson.xml",
460
+ "lib/netcoreapp3.1/Amazon.Lambda.Serialization.SystemTextJson.dll",
461
+ "lib/netcoreapp3.1/Amazon.Lambda.Serialization.SystemTextJson.xml"
462
+ ]
463
+ },
464
+ "AWSSDK.Core/3.7.400": {
465
+ "sha512": "qw+WGhxcYtZ6wc1uibOu9XXLsfUpQ1r+gWa0euFnm1e9HowQbcwvKvOqQzwBNqIBO7S5IJ26T9kV/eFiwvZAkQ==",
466
+ "type": "package",
467
+ "path": "awssdk.core/3.7.400",
468
+ "hasTools": true,
469
+ "files": [
470
+ ".nupkg.metadata",
471
+ ".signature.p7s",
472
+ "awssdk.core.3.7.400.nupkg.sha512",
473
+ "awssdk.core.nuspec",
474
+ "images/AWSLogo.png",
475
+ "lib/net35/AWSSDK.Core.dll",
476
+ "lib/net35/AWSSDK.Core.pdb",
477
+ "lib/net35/AWSSDK.Core.xml",
478
+ "lib/net45/AWSSDK.Core.dll",
479
+ "lib/net45/AWSSDK.Core.pdb",
480
+ "lib/net45/AWSSDK.Core.xml",
481
+ "lib/net8.0/AWSSDK.Core.dll",
482
+ "lib/net8.0/AWSSDK.Core.pdb",
483
+ "lib/net8.0/AWSSDK.Core.xml",
484
+ "lib/netcoreapp3.1/AWSSDK.Core.dll",
485
+ "lib/netcoreapp3.1/AWSSDK.Core.pdb",
486
+ "lib/netcoreapp3.1/AWSSDK.Core.xml",
487
+ "lib/netstandard2.0/AWSSDK.Core.dll",
488
+ "lib/netstandard2.0/AWSSDK.Core.pdb",
489
+ "lib/netstandard2.0/AWSSDK.Core.xml",
490
+ "tools/account-management.ps1"
491
+ ]
492
+ },
493
+ "AWSSDK.DynamoDBv2/3.7.400": {
494
+ "sha512": "uTwuX47y1RDxEVzdiGwmME4NYkY9ntvnNOxSICNNSK15vYJEaZImoasBHxdT/EZyHaaNNFdDKCvc8NXJYQVmCg==",
495
+ "type": "package",
496
+ "path": "awssdk.dynamodbv2/3.7.400",
497
+ "hasTools": true,
498
+ "files": [
499
+ ".nupkg.metadata",
500
+ ".signature.p7s",
501
+ "analyzers/dotnet/cs/AWSSDK.DynamoDBv2.CodeAnalysis.dll",
502
+ "analyzers/dotnet/cs/SharedAnalysisCode.dll",
503
+ "awssdk.dynamodbv2.3.7.400.nupkg.sha512",
504
+ "awssdk.dynamodbv2.nuspec",
505
+ "images/AWSLogo.png",
506
+ "lib/net35/AWSSDK.DynamoDBv2.dll",
507
+ "lib/net35/AWSSDK.DynamoDBv2.pdb",
508
+ "lib/net35/AWSSDK.DynamoDBv2.xml",
509
+ "lib/net45/AWSSDK.DynamoDBv2.dll",
510
+ "lib/net45/AWSSDK.DynamoDBv2.pdb",
511
+ "lib/net45/AWSSDK.DynamoDBv2.xml",
512
+ "lib/net8.0/AWSSDK.DynamoDBv2.dll",
513
+ "lib/net8.0/AWSSDK.DynamoDBv2.pdb",
514
+ "lib/net8.0/AWSSDK.DynamoDBv2.xml",
515
+ "lib/netcoreapp3.1/AWSSDK.DynamoDBv2.dll",
516
+ "lib/netcoreapp3.1/AWSSDK.DynamoDBv2.pdb",
517
+ "lib/netcoreapp3.1/AWSSDK.DynamoDBv2.xml",
518
+ "lib/netstandard2.0/AWSSDK.DynamoDBv2.dll",
519
+ "lib/netstandard2.0/AWSSDK.DynamoDBv2.pdb",
520
+ "lib/netstandard2.0/AWSSDK.DynamoDBv2.xml",
521
+ "tools/install.ps1",
522
+ "tools/uninstall.ps1"
523
+ ]
524
+ },
525
+ "Microsoft.Extensions.Configuration/2.1.0": {
526
+ "sha512": "SS8ce1GYQTkZoOq5bskqQ+m7xiXQjnKRiGfVNZkkX2SX0HpXNRsKnSUaywRRuCje3v2KT9xeacsM3J9/G2exsQ==",
527
+ "type": "package",
528
+ "path": "microsoft.extensions.configuration/2.1.0",
529
+ "files": [
530
+ ".nupkg.metadata",
531
+ ".signature.p7s",
532
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
533
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
534
+ "microsoft.extensions.configuration.2.1.0.nupkg.sha512",
535
+ "microsoft.extensions.configuration.nuspec"
536
+ ]
537
+ },
538
+ "Microsoft.Extensions.Configuration.Abstractions/2.1.0": {
539
+ "sha512": "lMmUjAKvY9r6QmxCS15iSb6ulhwnh0zp44NtnVJ+HIDLFmu4iej41U+dU58On8NRezmlgRXiQtLnBeZSzYNKQg==",
540
+ "type": "package",
541
+ "path": "microsoft.extensions.configuration.abstractions/2.1.0",
542
+ "files": [
543
+ ".nupkg.metadata",
544
+ ".signature.p7s",
545
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
546
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
547
+ "microsoft.extensions.configuration.abstractions.2.1.0.nupkg.sha512",
548
+ "microsoft.extensions.configuration.abstractions.nuspec"
549
+ ]
550
+ },
551
+ "Microsoft.Extensions.Configuration.Binder/2.1.0": {
552
+ "sha512": "Fls0O54Ielz1DiVYpcmiUpeizN1iKGGI5yAWAoShfmUvMcQ8jAGOK1a+DaflHA5hN9IOKvmSos0yewDYAIY0ZA==",
553
+ "type": "package",
554
+ "path": "microsoft.extensions.configuration.binder/2.1.0",
555
+ "files": [
556
+ ".nupkg.metadata",
557
+ ".signature.p7s",
558
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
559
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
560
+ "microsoft.extensions.configuration.binder.2.1.0.nupkg.sha512",
561
+ "microsoft.extensions.configuration.binder.nuspec"
562
+ ]
563
+ },
564
+ "Microsoft.Extensions.DependencyInjection.Abstractions/2.1.0": {
565
+ "sha512": "8/CtASu80UIoyG+r8FstrmZW5GLtXxzoYpjj3jV0FKZCL5CiFgSH3pAmqut/dC68mu7N1bU6v0UtKKL3gCUQGQ==",
566
+ "type": "package",
567
+ "path": "microsoft.extensions.dependencyinjection.abstractions/2.1.0",
568
+ "files": [
569
+ ".nupkg.metadata",
570
+ ".signature.p7s",
571
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
572
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
573
+ "microsoft.extensions.dependencyinjection.abstractions.2.1.0.nupkg.sha512",
574
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec"
575
+ ]
576
+ },
577
+ "Microsoft.Extensions.Logging/2.1.0": {
578
+ "sha512": "kuZbZMMHb7ibzhLdn9/R1+PAAFKntlF10tOw4loB8VuQkHvSrBE6IzW1rhBLsEdmLXOgi2zFbwcXFrxzSM6ybA==",
579
+ "type": "package",
580
+ "path": "microsoft.extensions.logging/2.1.0",
581
+ "files": [
582
+ ".nupkg.metadata",
583
+ ".signature.p7s",
584
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
585
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
586
+ "microsoft.extensions.logging.2.1.0.nupkg.sha512",
587
+ "microsoft.extensions.logging.nuspec"
588
+ ]
589
+ },
590
+ "Microsoft.Extensions.Logging.Abstractions/2.1.0": {
591
+ "sha512": "GfD2VtvN9z1W+m6pZZe98yh9VWTSdNY2dZSxtca9uFIY6aBI6twvskMvLO/ktClBOTQmAov/7Em+IWFlHepa0A==",
592
+ "type": "package",
593
+ "path": "microsoft.extensions.logging.abstractions/2.1.0",
594
+ "files": [
595
+ ".nupkg.metadata",
596
+ ".signature.p7s",
597
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
598
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
599
+ "microsoft.extensions.logging.abstractions.2.1.0.nupkg.sha512",
600
+ "microsoft.extensions.logging.abstractions.nuspec"
601
+ ]
602
+ },
603
+ "Microsoft.Extensions.Options/2.1.0": {
604
+ "sha512": "VOM1pPMi9+7/4Vc9aPLU8btHOBQy1+AvpqxLxFI2OVtqGv+1klPaV59g9R6aSt2U7ijfB3TjvAO4Tc/cn9/hxA==",
605
+ "type": "package",
606
+ "path": "microsoft.extensions.options/2.1.0",
607
+ "files": [
608
+ ".nupkg.metadata",
609
+ ".signature.p7s",
610
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
611
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
612
+ "microsoft.extensions.options.2.1.0.nupkg.sha512",
613
+ "microsoft.extensions.options.nuspec"
614
+ ]
615
+ },
616
+ "Microsoft.Extensions.Primitives/2.1.0": {
617
+ "sha512": "gMwH6wgWOPfyfLfMLEP+ZF7/MSJq35e0xxKEYUjt8veEznY45nBVqdfI876+9SFQq2ChcqKf2UyYc2XYj2v27w==",
618
+ "type": "package",
619
+ "path": "microsoft.extensions.primitives/2.1.0",
620
+ "files": [
621
+ ".nupkg.metadata",
622
+ ".signature.p7s",
623
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
624
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
625
+ "microsoft.extensions.primitives.2.1.0.nupkg.sha512",
626
+ "microsoft.extensions.primitives.nuspec"
627
+ ]
628
+ },
629
+ "SnapshotRestore.Registry/1.0.0": {
630
+ "sha512": "/XOtWCRU9u1am17f0EDZbBlnAsbC2HE7CWGxWYbvbAyAeJQI2sl8gEubbC1hLMWco7sN3UiTFudI4+FUiuDi0A==",
631
+ "type": "package",
632
+ "path": "snapshotrestore.registry/1.0.0",
633
+ "files": [
634
+ ".nupkg.metadata",
635
+ ".signature.p7s",
636
+ "README.md",
637
+ "lib/net8.0/SnapshotRestore.Registry.dll",
638
+ "snapshotrestore.registry.1.0.0.nupkg.sha512",
639
+ "snapshotrestore.registry.nuspec"
640
+ ]
641
+ },
642
+ "System.Memory/4.5.0": {
643
+ "sha512": "m0psCSpUxTGfvwyO0i03ajXVhgBqyXlibXz0Mo1dtKGjaHrXFLnuQ8rNBTmWRqbfRjr4eC6Wah4X5FfuFDu5og==",
644
+ "type": "package",
645
+ "path": "system.memory/4.5.0",
646
+ "files": [
647
+ ".nupkg.metadata",
648
+ ".signature.p7s",
649
+ "LICENSE.TXT",
650
+ "THIRD-PARTY-NOTICES.TXT",
651
+ "lib/MonoAndroid10/_._",
652
+ "lib/MonoTouch10/_._",
653
+ "lib/netcoreapp2.1/_._",
654
+ "lib/netstandard1.1/System.Memory.dll",
655
+ "lib/netstandard1.1/System.Memory.xml",
656
+ "lib/netstandard2.0/System.Memory.dll",
657
+ "lib/netstandard2.0/System.Memory.xml",
658
+ "lib/uap10.0.16300/_._",
659
+ "lib/xamarinios10/_._",
660
+ "lib/xamarinmac20/_._",
661
+ "lib/xamarintvos10/_._",
662
+ "lib/xamarinwatchos10/_._",
663
+ "ref/MonoAndroid10/_._",
664
+ "ref/MonoTouch10/_._",
665
+ "ref/netcoreapp2.1/_._",
666
+ "ref/netstandard1.1/System.Memory.dll",
667
+ "ref/netstandard1.1/System.Memory.xml",
668
+ "ref/netstandard2.0/System.Memory.dll",
669
+ "ref/netstandard2.0/System.Memory.xml",
670
+ "ref/uap10.0.16300/_._",
671
+ "ref/xamarinios10/_._",
672
+ "ref/xamarinmac20/_._",
673
+ "ref/xamarintvos10/_._",
674
+ "ref/xamarinwatchos10/_._",
675
+ "system.memory.4.5.0.nupkg.sha512",
676
+ "system.memory.nuspec",
677
+ "useSharedDesignerContext.txt",
678
+ "version.txt"
679
+ ]
680
+ },
681
+ "System.Runtime.CompilerServices.Unsafe/4.5.0": {
682
+ "sha512": "YrzNWduCDHhUaSRBxHxL11UkM2fD6y8hITHis4/LbQZ6vj3vdRjoH3IoPWWC9uDXK2wHIqn+b5gv1Np/VKyM1g==",
683
+ "type": "package",
684
+ "path": "system.runtime.compilerservices.unsafe/4.5.0",
685
+ "files": [
686
+ ".nupkg.metadata",
687
+ ".signature.p7s",
688
+ "LICENSE.TXT",
689
+ "THIRD-PARTY-NOTICES.TXT",
690
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
691
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
692
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
693
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
694
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
695
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
696
+ "lib/uap10.0.16300/_._",
697
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
698
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
699
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
700
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
701
+ "ref/uap10.0.16300/_._",
702
+ "system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512",
703
+ "system.runtime.compilerservices.unsafe.nuspec",
704
+ "useSharedDesignerContext.txt",
705
+ "version.txt"
706
+ ]
707
+ }
708
+ },
709
+ "projectFileDependencyGroups": {
710
+ "net8.0": [
711
+ "AWSSDK.DynamoDBv2 >= 3.7.400",
712
+ "Amazon.Lambda.AspNetCoreServer.Hosting >= 1.7.2",
713
+ "Amazon.Lambda.Serialization.SystemTextJson >= 2.4.4"
714
+ ]
715
+ },
716
+ "packageFolders": {
717
+ "/Users/alejandro.lopez/.nuget/packages/": {}
718
+ },
719
+ "project": {
720
+ "version": "1.0.0",
721
+ "restore": {
722
+ "projectUniqueName": "/Users/alejandro.lopez/code/phila-ctl/templates/webapp-lambda-dynamo-dotnet/apps/api/Api.csproj",
723
+ "projectName": "Api",
724
+ "projectPath": "/Users/alejandro.lopez/code/phila-ctl/templates/webapp-lambda-dynamo-dotnet/apps/api/Api.csproj",
725
+ "packagesPath": "/Users/alejandro.lopez/.nuget/packages/",
726
+ "outputPath": "/Users/alejandro.lopez/code/phila-ctl/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/",
727
+ "projectStyle": "PackageReference",
728
+ "configFilePaths": [
729
+ "/Users/alejandro.lopez/.nuget/NuGet/NuGet.Config"
730
+ ],
731
+ "originalTargetFrameworks": [
732
+ "net8.0"
733
+ ],
734
+ "sources": {
735
+ "https://api.nuget.org/v3/index.json": {},
736
+ "https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json": {}
737
+ },
738
+ "frameworks": {
739
+ "net8.0": {
740
+ "targetAlias": "net8.0",
741
+ "projectReferences": {}
742
+ }
743
+ },
744
+ "warningProperties": {
745
+ "warnAsError": [
746
+ "NU1605"
747
+ ]
748
+ },
749
+ "restoreAuditProperties": {
750
+ "enableAudit": "true",
751
+ "auditLevel": "low",
752
+ "auditMode": "direct"
753
+ }
754
+ },
755
+ "frameworks": {
756
+ "net8.0": {
757
+ "targetAlias": "net8.0",
758
+ "dependencies": {
759
+ "AWSSDK.DynamoDBv2": {
760
+ "target": "Package",
761
+ "version": "[3.7.400, )"
762
+ },
763
+ "Amazon.Lambda.AspNetCoreServer.Hosting": {
764
+ "target": "Package",
765
+ "version": "[1.7.2, )"
766
+ },
767
+ "Amazon.Lambda.Serialization.SystemTextJson": {
768
+ "target": "Package",
769
+ "version": "[2.4.4, )"
770
+ }
771
+ },
772
+ "imports": [
773
+ "net461",
774
+ "net462",
775
+ "net47",
776
+ "net471",
777
+ "net472",
778
+ "net48",
779
+ "net481"
780
+ ],
781
+ "assetTargetFallback": true,
782
+ "warn": true,
783
+ "frameworkReferences": {
784
+ "Microsoft.AspNetCore.App": {
785
+ "privateAssets": "none"
786
+ },
787
+ "Microsoft.NETCore.App": {
788
+ "privateAssets": "all"
789
+ }
790
+ },
791
+ "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
792
+ }
793
+ }
794
+ },
795
+ "logs": [
796
+ {
797
+ "code": "NU1301",
798
+ "level": "Error",
799
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
800
+ "libraryId": "Amazon.Lambda.Serialization.SystemTextJson"
801
+ },
802
+ {
803
+ "code": "NU1301",
804
+ "level": "Error",
805
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
806
+ "libraryId": "AWSSDK.DynamoDBv2"
807
+ },
808
+ {
809
+ "code": "NU1301",
810
+ "level": "Error",
811
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
812
+ "libraryId": "Amazon.Lambda.AspNetCoreServer.Hosting"
813
+ },
814
+ {
815
+ "code": "NU1301",
816
+ "level": "Error",
817
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
818
+ "libraryId": "AWSSDK.DynamoDBv2"
819
+ },
820
+ {
821
+ "code": "NU1301",
822
+ "level": "Error",
823
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
824
+ "libraryId": "Amazon.Lambda.Serialization.SystemTextJson"
825
+ },
826
+ {
827
+ "code": "NU1301",
828
+ "level": "Error",
829
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
830
+ "libraryId": "Amazon.Lambda.AspNetCoreServer.Hosting"
831
+ },
832
+ {
833
+ "code": "NU1301",
834
+ "level": "Error",
835
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
836
+ "libraryId": "Amazon.Lambda.Core"
837
+ },
838
+ {
839
+ "code": "NU1301",
840
+ "level": "Error",
841
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
842
+ "libraryId": "Amazon.Lambda.AspNetCoreServer"
843
+ },
844
+ {
845
+ "code": "NU1301",
846
+ "level": "Error",
847
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
848
+ "libraryId": "Amazon.Lambda.APIGatewayEvents"
849
+ },
850
+ {
851
+ "code": "NU1301",
852
+ "level": "Error",
853
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
854
+ "libraryId": "Amazon.Lambda.RuntimeSupport"
855
+ },
856
+ {
857
+ "code": "NU1301",
858
+ "level": "Error",
859
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
860
+ "libraryId": "Amazon.Lambda.APIGatewayEvents"
861
+ },
862
+ {
863
+ "code": "NU1301",
864
+ "level": "Error",
865
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
866
+ "libraryId": "Amazon.Lambda.AspNetCoreServer"
867
+ },
868
+ {
869
+ "code": "NU1301",
870
+ "level": "Error",
871
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
872
+ "libraryId": "Amazon.Lambda.Core"
873
+ },
874
+ {
875
+ "code": "NU1301",
876
+ "level": "Error",
877
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
878
+ "libraryId": "Amazon.Lambda.RuntimeSupport"
879
+ },
880
+ {
881
+ "code": "NU1301",
882
+ "level": "Error",
883
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
884
+ "libraryId": "Amazon.Lambda.Logging.AspNetCore"
885
+ },
886
+ {
887
+ "code": "NU1301",
888
+ "level": "Error",
889
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
890
+ "libraryId": "Amazon.Lambda.ApplicationLoadBalancerEvents"
891
+ },
892
+ {
893
+ "code": "NU1301",
894
+ "level": "Error",
895
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
896
+ "libraryId": "Amazon.Lambda.Logging.AspNetCore"
897
+ },
898
+ {
899
+ "code": "NU1301",
900
+ "level": "Error",
901
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
902
+ "libraryId": "Amazon.Lambda.ApplicationLoadBalancerEvents"
903
+ },
904
+ {
905
+ "code": "NU1301",
906
+ "level": "Error",
907
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
908
+ "libraryId": "Microsoft.Extensions.Configuration.Abstractions"
909
+ },
910
+ {
911
+ "code": "NU1301",
912
+ "level": "Error",
913
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
914
+ "libraryId": "Microsoft.Extensions.Logging"
915
+ },
916
+ {
917
+ "code": "NU1301",
918
+ "level": "Error",
919
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
920
+ "libraryId": "Microsoft.Extensions.Primitives"
921
+ },
922
+ {
923
+ "code": "NU1301",
924
+ "level": "Error",
925
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
926
+ "libraryId": "System.Memory"
927
+ },
928
+ {
929
+ "code": "NU1301",
930
+ "level": "Error",
931
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
932
+ "libraryId": "System.Runtime.CompilerServices.Unsafe"
933
+ },
934
+ {
935
+ "code": "NU1301",
936
+ "level": "Error",
937
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
938
+ "libraryId": "Microsoft.Extensions.Configuration.Binder"
939
+ },
940
+ {
941
+ "code": "NU1301",
942
+ "level": "Error",
943
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
944
+ "libraryId": "Microsoft.Extensions.Options"
945
+ },
946
+ {
947
+ "code": "NU1301",
948
+ "level": "Error",
949
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
950
+ "libraryId": "Microsoft.Extensions.Configuration"
951
+ },
952
+ {
953
+ "code": "NU1301",
954
+ "level": "Error",
955
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
956
+ "libraryId": "SnapshotRestore.Registry"
957
+ },
958
+ {
959
+ "code": "NU1301",
960
+ "level": "Error",
961
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
962
+ "libraryId": "SnapshotRestore.Registry"
963
+ },
964
+ {
965
+ "code": "NU1301",
966
+ "level": "Error",
967
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
968
+ "libraryId": "Amazon.Lambda.Core"
969
+ },
970
+ {
971
+ "code": "NU1301",
972
+ "level": "Error",
973
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
974
+ "libraryId": "Amazon.Lambda.Core"
975
+ },
976
+ {
977
+ "code": "NU1301",
978
+ "level": "Error",
979
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
980
+ "libraryId": "AWSSDK.Core"
981
+ },
982
+ {
983
+ "code": "NU1900",
984
+ "level": "Warning",
985
+ "warningLevel": 1,
986
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json."
987
+ }
988
+ ]
989
+ }