// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`Smithy Api Gateway Ts Build Options Test With Options 1`] = ` Object { ".eslintrc.json": Object { "env": Object { "jest": true, "node": true, }, "extends": Array [ "plugin:import/typescript", "prettier", "plugin:prettier/recommended", ], "ignorePatterns": Array [ "packages/**/*.*", "!.projenrc.ts", "!projenrc/**/*.ts", ], "overrides": Array [ Object { "files": Array [ ".projenrc.ts", ], "rules": Object { "@typescript-eslint/no-require-imports": "off", "import/no-extraneous-dependencies": "off", }, }, ], "parser": "@typescript-eslint/parser", "parserOptions": Object { "ecmaVersion": 2018, "project": "./tsconfig.dev.json", "sourceType": "module", }, "plugins": Array [ "@typescript-eslint", "import", "prettier", ], "root": true, "rules": Object { "@typescript-eslint/member-ordering": Array [ "error", Object { "default": Array [ "public-static-field", "public-static-method", "protected-static-field", "protected-static-method", "private-static-field", "private-static-method", "field", "constructor", "method", ], }, ], "@typescript-eslint/no-floating-promises": Array [ "error", ], "@typescript-eslint/no-require-imports": Array [ "error", ], "@typescript-eslint/no-shadow": Array [ "error", ], "@typescript-eslint/return-await": Array [ "error", ], "dot-notation": Array [ "error", ], "import/no-extraneous-dependencies": Array [ "error", Object { "devDependencies": Array [ "**/test/**", "**/build-tools/**", ".projenrc.ts", "projenrc/**/*.ts", ], "optionalDependencies": false, "peerDependencies": true, }, ], "import/no-unresolved": Array [ "error", ], "import/order": Array [ "warn", Object { "alphabetize": Object { "caseInsensitive": true, "order": "asc", }, "groups": Array [ "builtin", "external", ], }, ], "key-spacing": Array [ "error", ], "no-bitwise": Array [ "error", ], "no-duplicate-imports": Array [ "error", ], "no-multiple-empty-lines": Array [ "error", ], "no-return-await": Array [ "off", ], "no-shadow": Array [ "off", ], "no-trailing-spaces": Array [ "error", ], "prettier/prettier": Array [ "error", ], }, "settings": Object { "import/parsers": Object { "@typescript-eslint/parser": Array [ ".ts", ".tsx", ], }, "import/resolver": Object { "node": Object {}, "typescript": Object { "alwaysTryTypes": true, "project": "./tsconfig.dev.json", }, }, }, }, ".gitattributes": "# ~~ Generated by projen. To modify, edit .projenrc.ts and run \\"npx projen\\". *.snap linguist-generated /.eslintrc.json linguist-generated /.gitattributes linguist-generated /.gitignore linguist-generated /.npmignore linguist-generated /.nx/plugins/nx-monorepo-plugin.js linguist-generated /.nxignore linguist-generated /.prettierignore linguist-generated /.prettierrc.json linguist-generated /.projen/** linguist-generated /.projen/deps.json linguist-generated /.projen/files.json linguist-generated /.projen/tasks.json linguist-generated /.syncpackrc.json linguist-generated /LICENSE linguist-generated /nx.json linguist-generated /package.json linguist-generated /packages/api/generated/README.md linguist-generated /tsconfig.dev.json linguist-generated /tsconfig.json linguist-generated /yarn.lock linguist-generated", ".gitignore": "# ~~ Generated by projen. To modify, edit .projenrc.ts and run \\"npx projen\\". !/.gitattributes !/.projen/tasks.json !/.projen/deps.json !/.projen/files.json !/package.json !/LICENSE !/.npmignore logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json pids *.pid *.seed *.pid.lock lib-cov coverage *.lcov .nyc_output build/Release node_modules/ jspm_packages/ *.tsbuildinfo .eslintcache *.tgz .yarn-integrity .cache !/.projenrc.js !/.prettierignore !/.prettierrc.json !/test/ !/tsconfig.json !/tsconfig.dev.json !/src/ /lib /dist/ !/.eslintrc.json !/.syncpackrc.json !/.nxignore !/.nx/plugins/nx-monorepo-plugin.js !/nx.json !/packages/api/generated/README.md ", ".npmignore": "# ~~ Generated by projen. To modify, edit .projenrc.ts and run \\"npx projen\\". /.projen/ /test/ /tsconfig.dev.json /src/ !/lib/ !/lib/**/*.js !/lib/**/*.d.ts dist /tsconfig.json /.github/ /.vscode/ /.idea/ /.projenrc.js tsconfig.tsbuildinfo /.eslintrc.json ", ".nx/plugins/nx-monorepo-plugin.js": "// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 const fs = require(\\"fs\\"); const path = require(\\"path\\"); const { ProjectGraphBuilder } = require(\\"@nrwl/devkit\\"); exports.processProjectGraph = (graph) => { const builder = new ProjectGraphBuilder(graph); const nx = JSON.parse( fs .readFileSync(path.resolve(findRoot(__dirname), \\"nx.json\\")) .toString(\\"utf-8\\") ); const implicitDependencies = nx.implicitDependencies; Object.entries(implicitDependencies).forEach(([dependant, dependees]) => { dependees.forEach((dependee) => builder.addImplicitDependency(dependant, dependee) ); }); return builder.getUpdatedProjectGraph(); }; const findRoot = (dir) => { if (path.dirname(dir) === dir) { return process.cwd(); } else if (fs.existsSync(path.join(dir, \\"nx.json\\"))) { return dir; } else { return findRoot(path.dirname(dir)); } }; ", ".nxignore": "# ~~ Generated by projen. To modify, edit .projenrc.ts and run \\"npx projen\\". test-reports target .env .pytest_cache ", ".prettierignore": "# ~~ Generated by projen. To modify, edit .projenrc.ts and run \\"npx projen\\". ", ".prettierrc.json": Object { "overrides": Array [], }, ".projen/deps.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \\"npx projen\\".", "dependencies": Array [ Object { "name": "@nrwl/cli", "type": "build", }, Object { "name": "@nrwl/workspace", "type": "build", }, Object { "name": "@types/node", "type": "build", "version": "^16", }, Object { "name": "@typescript-eslint/eslint-plugin", "type": "build", "version": "^5", }, Object { "name": "@typescript-eslint/parser", "type": "build", "version": "^5", }, Object { "name": "eslint-config-prettier", "type": "build", }, Object { "name": "eslint-import-resolver-node", "type": "build", }, Object { "name": "eslint-import-resolver-typescript", "type": "build", }, Object { "name": "eslint-plugin-import", "type": "build", }, Object { "name": "eslint-plugin-prettier", "type": "build", }, Object { "name": "eslint", "type": "build", "version": "^8", }, Object { "name": "npm-check-updates", "type": "build", }, Object { "name": "prettier", "type": "build", }, Object { "name": "projen", "type": "build", }, Object { "name": "syncpack", "type": "build", }, Object { "name": "ts-node", "type": "build", }, Object { "name": "typescript", "type": "build", }, Object { "name": "@types/babel__traverse", "type": "override", "version": "7.18.2", }, Object { "name": "aws-cdk-lib", "type": "runtime", }, Object { "name": "cdk-nag", "type": "runtime", }, Object { "name": "constructs", "type": "runtime", }, ], }, ".projen/files.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \\"npx projen\\".", "files": Array [ ".eslintrc.json", ".gitattributes", ".gitignore", ".npmignore", ".nx/plugins/nx-monorepo-plugin.js", ".nxignore", ".prettierignore", ".prettierrc.json", ".projen/deps.json", ".projen/files.json", ".projen/tasks.json", ".syncpackrc.json", "LICENSE", "nx.json", "packages/api/generated/README.md", "tsconfig.dev.json", "tsconfig.json", ], }, ".projen/tasks.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \\"npx projen\\".", "env": Object { "PATH": "$(npx -c \\"node -e \\\\\\"console.log(process.env.PATH)\\\\\\"\\")", }, "tasks": Object { "build": Object { "description": "Full release build for all affected projects", "name": "build", "steps": Array [ Object { "exec": "npx nx run-many --target=build --output-style=stream --nx-bail", "receiveArgs": true, }, ], }, "clobber": Object { "condition": "git diff --exit-code > /dev/null", "description": "hard resets to HEAD of origin and cleans the local repo", "env": Object { "BRANCH": "$(git branch --show-current)", }, "name": "clobber", "steps": Array [ Object { "exec": "git checkout -b scratch", "name": "save current HEAD in \\"scratch\\" branch", }, Object { "exec": "git checkout $BRANCH", }, Object { "exec": "git fetch origin", "name": "fetch latest changes from origin", }, Object { "exec": "git reset --hard origin/$BRANCH", "name": "hard reset to origin commit", }, Object { "exec": "git clean -fdx", "name": "clean all untracked files", }, Object { "say": "ready to rock! (unpushed commits are under the \\"scratch\\" branch)", }, ], }, "compile": Object { "description": "Only compile for all affected projects", "name": "compile", "steps": Array [ Object { "exec": "npx nx run-many --target=compile --output-style=stream --nx-bail", "receiveArgs": true, }, ], }, "default": Object { "description": "Synthesize project files", "name": "default", "steps": Array [ Object { "exec": "ts-node --project tsconfig.dev.json .projenrc.ts", }, ], }, "eject": Object { "description": "Remove projen from the project", "env": Object { "PROJEN_EJECTING": "true", }, "name": "eject", "steps": Array [ Object { "spawn": "default", }, ], }, "eslint": Object { "description": "Runs eslint against the codebase for all affected projects", "name": "eslint", "steps": Array [ Object { "exec": "eslint --ext .ts,.tsx --fix --no-error-on-unmatched-pattern . test build-tools projenrc .projenrc.ts", }, ], }, "install": Object { "description": "Install project dependencies and update lockfile (non-frozen)", "name": "install", "steps": Array [ Object { "exec": "yarn install --check-files", }, ], }, "install:ci": Object { "description": "Install project dependencies using frozen lockfile", "name": "install:ci", "steps": Array [ Object { "exec": "yarn install --check-files --frozen-lockfile", }, ], }, "package": Object { "description": "Creates the distribution package for all affected projects", "name": "package", "steps": Array [ Object { "exec": "npx nx run-many --target=package --output-style=stream --nx-bail", "receiveArgs": true, }, ], }, "post-compile": Object { "description": "Runs after successful compilation for all affected projects", "name": "post-compile", "steps": Array [ Object { "exec": "npx nx run-many --target=post-compile --output-style=stream --nx-bail", "receiveArgs": true, }, ], }, "post-upgrade": Object { "description": "Runs after upgrading dependencies", "name": "post-upgrade", }, "pre-compile": Object { "description": "Prepare the project for compilation for all affected projects", "name": "pre-compile", "steps": Array [ Object { "exec": "npx nx run-many --target=pre-compile --output-style=stream --nx-bail", "receiveArgs": true, }, ], }, "run-many": Object { "description": "Run task against multiple workspace projects", "name": "run-many", "steps": Array [ Object { "exec": "npx nx run-many", "receiveArgs": true, }, ], }, "synth-workspace": Object { "description": "Synthesize workspace", "name": "synth-workspace", "steps": Array [ Object { "exec": "npx projen", }, ], }, "test": Object { "description": "Run tests for all affected projects", "name": "test", "steps": Array [ Object { "exec": "npx nx run-many --target=test --output-style=stream --nx-bail", "receiveArgs": true, }, ], }, "upgrade": Object { "description": "upgrade dependencies", "env": Object { "CI": "0", }, "name": "upgrade", "steps": Array [ Object { "exec": "yarn upgrade npm-check-updates", }, Object { "exec": "npm-check-updates --dep dev --upgrade --target=minor", }, Object { "exec": "npm-check-updates --dep optional --upgrade --target=minor", }, Object { "exec": "npm-check-updates --dep peer --upgrade --target=minor", }, Object { "exec": "npm-check-updates --dep prod --upgrade --target=minor", }, Object { "exec": "npm-check-updates --dep bundle --upgrade --target=minor", }, Object { "exec": "yarn install --check-files", }, Object { "exec": "yarn upgrade", }, Object { "exec": "npx projen", }, Object { "spawn": "post-upgrade", }, ], }, "upgrade-deps": Object { "name": "upgrade-deps", "steps": Array [ Object { "exec": "npx npm-check-updates --deep --rejectVersion 0.0.0 -u", }, Object { "exec": "npx syncpack fix-mismatches", }, Object { "exec": "yarn install", }, Object { "exec": "npx projen", }, ], }, "watch": Object { "description": "Watch & compile in the background for all affected projects", "name": "watch", "steps": Array [ Object { "exec": "npx nx run-many --target=watch --output-style=stream --skip-nx-cache --nx-ignore-cycles --nx-bail", "receiveArgs": true, }, ], }, }, }, ".syncpackrc.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \\"npx projen\\".", "dependencyTypes": Array [], "dev": true, "filter": ".", "indent": " ", "overrides": true, "peer": true, "pnpmOverrides": true, "prod": true, "resolutions": true, "semverGroups": Array [], "semverRange": "", "sortAz": Array [ "contributors", "dependencies", "devDependencies", "keywords", "peerDependencies", "resolutions", "scripts", ], "sortFirst": Array [ "name", "description", "version", "author", ], "source": Array [], "versionGroups": Array [], "workspace": true, }, "LICENSE": " Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. \\"License\\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. \\"Licensor\\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. \\"Legal Entity\\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \\"control\\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. \\"You\\" (or \\"Your\\") shall mean an individual or Legal Entity exercising permissions granted by this License. \\"Source\\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. \\"Object\\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. \\"Work\\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). \\"Derivative Works\\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. \\"Contribution\\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \\"submitted\\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \\"Not a Contribution.\\" \\"Contributor\\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a \\"NOTICE\\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \\"AS IS\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \\"[]\\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \\"printed page\\" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the \\"License\\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \\"AS IS\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ", "README.md": "# replace this", "nx.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \\"npx projen\\".", "affected": Object { "defaultBase": "mainline", }, "extends": "@nrwl/workspace/presets/npm.json", "implicitDependencies": Object {}, "namedInputs": Object { "default": Array [ "{projectRoot}/**/*", ], }, "npmScope": "monorepo", "plugins": Array [ "./.nx/plugins/nx-monorepo-plugin.js", ], "targetDependencies": Object { "build": Array [ Object { "projects": "dependencies", "target": "build", }, ], }, "tasksRunnerOptions": Object { "default": Object { "options": Object { "cacheableOperations": Array [ "build", "test", ], "useDaemonProcess": false, }, "runner": "@nrwl/workspace/tasks-runners/default", }, }, }, "package.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \\"npx projen\\".", "dependencies": Object { "aws-cdk-lib": "*", "cdk-nag": "*", "constructs": "*", }, "devDependencies": Object { "@nrwl/cli": "*", "@nrwl/workspace": "*", "@types/node": "^16", "@typescript-eslint/eslint-plugin": "^5", "@typescript-eslint/parser": "^5", "eslint": "^8", "eslint-config-prettier": "*", "eslint-import-resolver-node": "*", "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "eslint-plugin-prettier": "*", "npm-check-updates": "*", "prettier": "*", "projen": "*", "syncpack": "*", "ts-node": "*", "typescript": "*", }, "license": "Apache-2.0", "main": "lib/index.js", "name": "@test/monorepo", "private": true, "resolutions": Object { "@types/babel__traverse": "7.18.2", }, "scripts": Object { "build": "npx projen build", "clobber": "npx projen clobber", "compile": "npx projen compile", "default": "npx projen default", "eject": "npx projen eject", "eslint": "npx projen eslint", "package": "npx projen package", "post-compile": "npx projen post-compile", "post-upgrade": "npx projen post-upgrade", "pre-compile": "npx projen pre-compile", "projen": "npx projen", "run-many": "npx projen run-many", "synth-workspace": "npx projen synth-workspace", "test": "npx projen test", "upgrade": "npx projen upgrade", "upgrade-deps": "npx projen upgrade-deps", "watch": "npx projen watch", }, "types": "lib/index.d.ts", "version": "0.0.0", "workspaces": Object { "packages": Array [ "packages/api", "packages/api/generated/typescript", ], }, }, "packages/api/.eslintrc.json": Object { "env": Object { "jest": true, "node": true, }, "extends": Array [ "plugin:import/typescript", ], "ignorePatterns": Array [ "*.js", "*.d.ts", "node_modules/", "*.generated.ts", "coverage", ], "overrides": Array [], "parser": "@typescript-eslint/parser", "parserOptions": Object { "ecmaVersion": 2018, "project": "./tsconfig.dev.json", "sourceType": "module", }, "plugins": Array [ "@typescript-eslint", "import", ], "root": true, "rules": Object { "@typescript-eslint/indent": Array [ "error", 2, ], "@typescript-eslint/member-delimiter-style": Array [ "error", ], "@typescript-eslint/member-ordering": Array [ "error", Object { "default": Array [ "public-static-field", "public-static-method", "protected-static-field", "protected-static-method", "private-static-field", "private-static-method", "field", "constructor", "method", ], }, ], "@typescript-eslint/no-floating-promises": Array [ "error", ], "@typescript-eslint/no-require-imports": Array [ "error", ], "@typescript-eslint/no-shadow": Array [ "error", ], "@typescript-eslint/return-await": Array [ "error", ], "array-bracket-newline": Array [ "error", "consistent", ], "array-bracket-spacing": Array [ "error", "never", ], "brace-style": Array [ "error", "1tbs", Object { "allowSingleLine": true, }, ], "comma-dangle": Array [ "error", "always-multiline", ], "comma-spacing": Array [ "error", Object { "after": true, "before": false, }, ], "curly": Array [ "error", "multi-line", "consistent", ], "dot-notation": Array [ "error", ], "import/no-extraneous-dependencies": Array [ "error", Object { "devDependencies": Array [ "**/test/**", "**/build-tools/**", ], "optionalDependencies": false, "peerDependencies": true, }, ], "import/no-unresolved": Array [ "error", ], "import/order": Array [ "warn", Object { "alphabetize": Object { "caseInsensitive": true, "order": "asc", }, "groups": Array [ "builtin", "external", ], }, ], "indent": Array [ "off", ], "key-spacing": Array [ "error", ], "keyword-spacing": Array [ "error", ], "max-len": Array [ "error", Object { "code": 150, "ignoreComments": true, "ignoreRegExpLiterals": true, "ignoreStrings": true, "ignoreTemplateLiterals": true, "ignoreUrls": true, }, ], "no-bitwise": Array [ "error", ], "no-duplicate-imports": Array [ "error", ], "no-multi-spaces": Array [ "error", Object { "ignoreEOLComments": false, }, ], "no-multiple-empty-lines": Array [ "error", ], "no-return-await": Array [ "off", ], "no-shadow": Array [ "off", ], "no-trailing-spaces": Array [ "error", ], "object-curly-newline": Array [ "error", Object { "consistent": true, "multiline": true, }, ], "object-curly-spacing": Array [ "error", "always", ], "object-property-newline": Array [ "error", Object { "allowAllPropertiesOnSameLine": true, }, ], "quote-props": Array [ "error", "consistent-as-needed", ], "quotes": Array [ "error", "single", Object { "avoidEscape": true, }, ], "semi": Array [ "error", "always", ], "space-before-blocks": Array [ "error", ], }, "settings": Object { "import/parsers": Object { "@typescript-eslint/parser": Array [ ".ts", ".tsx", ], }, "import/resolver": Object { "node": Object {}, "typescript": Object { "alwaysTryTypes": true, "project": "./tsconfig.dev.json", }, }, }, }, "packages/api/.gitattributes": "# ~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\". /.eslintrc.json linguist-generated /.gitattributes linguist-generated /.gitignore linguist-generated /.npmignore linguist-generated /.projen/** linguist-generated /.projen/deps.json linguist-generated /.projen/files.json linguist-generated /.projen/tasks.json linguist-generated /LICENSE linguist-generated /package.json linguist-generated /tsconfig.dev.json linguist-generated /tsconfig.json linguist-generated /yarn.lock linguist-generated", "packages/api/.gitignore": "# ~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\". !/.gitattributes !/.projen/tasks.json !/.projen/deps.json !/.projen/files.json !/package.json !/LICENSE !/.npmignore logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json pids *.pid *.seed *.pid.lock lib-cov coverage *.lcov .nyc_output build/Release node_modules/ jspm_packages/ *.tsbuildinfo .eslintcache *.tgz .yarn-integrity .cache !/.projenrc.js /test-reports/ junit.xml /coverage/ !/test/ !/tsconfig.json !/tsconfig.dev.json !/src/ /lib /dist/ !/.eslintrc.json smithy/output smithy/gradle smithy/gradlew smithy/gradlew.bat smithy/.gradle smithy/build ", "packages/api/.npmignore": "# ~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\". /.projen/ /test-reports/ junit.xml /coverage/ /test/ /tsconfig.dev.json /src/ !/lib/ !/lib/**/*.js !/lib/**/*.d.ts dist /tsconfig.json /.github/ /.vscode/ /.idea/ /.projenrc.js tsconfig.tsbuildinfo /.eslintrc.json ", "packages/api/.projen/deps.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\".", "dependencies": Array [ Object { "name": "@types/jest", "type": "build", }, Object { "name": "@types/node", "type": "build", "version": "^16", }, Object { "name": "@typescript-eslint/eslint-plugin", "type": "build", "version": "^5", }, Object { "name": "@typescript-eslint/parser", "type": "build", "version": "^5", }, Object { "name": "eslint-import-resolver-node", "type": "build", }, Object { "name": "eslint-import-resolver-typescript", "type": "build", }, Object { "name": "eslint-plugin-import", "type": "build", }, Object { "name": "eslint", "type": "build", "version": "^8", }, Object { "name": "jest", "type": "build", }, Object { "name": "jest-junit", "type": "build", "version": "^15", }, Object { "name": "npm-check-updates", "type": "build", "version": "^16", }, Object { "name": "projen", "type": "build", }, Object { "name": "ts-jest", "type": "build", }, Object { "name": "typescript", "type": "build", }, Object { "name": "@aws-prototyping-sdk/open-api-gateway", "type": "runtime", }, Object { "name": "@test/my-api-typescript", "type": "runtime", }, Object { "name": "aws-cdk-lib", "type": "runtime", }, Object { "name": "cdk-nag", "type": "runtime", }, Object { "name": "constructs", "type": "runtime", }, ], }, "packages/api/.projen/files.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\".", "files": Array [ ".eslintrc.json", ".gitattributes", ".gitignore", ".npmignore", ".projen/deps.json", ".projen/files.json", ".projen/tasks.json", "LICENSE", "tsconfig.dev.json", "tsconfig.json", ], }, "packages/api/.projen/tasks.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\".", "env": Object { "PATH": "$(npx -c \\"node -e \\\\\\"console.log(process.env.PATH)\\\\\\"\\")", }, "tasks": Object { "build": Object { "description": "Full release build", "name": "build", "steps": Array [ Object { "spawn": "pre-compile", }, Object { "spawn": "compile", }, Object { "spawn": "post-compile", }, Object { "spawn": "test", }, Object { "spawn": "package", }, ], }, "compile": Object { "description": "Only compile", "name": "compile", "steps": Array [ Object { "exec": "tsc --build", }, ], }, "default": Object { "description": "Synthesize project files", "name": "default", }, "eslint": Object { "description": "Runs eslint against the codebase", "name": "eslint", "steps": Array [ Object { "exec": "eslint --ext .ts,.tsx --fix --no-error-on-unmatched-pattern src test build-tools", }, ], }, "install": Object { "description": "Install project dependencies and update lockfile (non-frozen)", "name": "install", "steps": Array [ Object { "exec": "yarn install --check-files", }, ], }, "install:ci": Object { "description": "Install project dependencies using frozen lockfile", "name": "install:ci", "steps": Array [ Object { "exec": "yarn install --check-files --frozen-lockfile", }, ], }, "package": Object { "description": "Creates the distribution package", "name": "package", "steps": Array [ Object { "exec": "mkdir -p dist/js", }, Object { "exec": "mv $(npm pack) dist/js/", }, ], }, "post-compile": Object { "description": "Runs after successful compilation", "name": "post-compile", }, "post-upgrade": Object { "description": "Runs after upgrading dependencies", "name": "post-upgrade", }, "pre-compile": Object { "description": "Prepare the project for compilation", "name": "pre-compile", "steps": Array [ Object { "exec": "rm -rf lib", }, ], }, "test": Object { "description": "Run tests", "name": "test", "steps": Array [ Object { "exec": "jest --passWithNoTests --updateSnapshot", "receiveArgs": true, }, Object { "spawn": "eslint", }, ], }, "test:watch": Object { "description": "Run jest in watch mode", "name": "test:watch", "steps": Array [ Object { "exec": "jest --watch", }, ], }, "upgrade": Object { "description": "upgrade dependencies", "env": Object { "CI": "0", }, "name": "upgrade", "steps": Array [ Object { "exec": "yarn upgrade npm-check-updates", }, Object { "exec": "npm-check-updates --dep dev --upgrade --target=minor", }, Object { "exec": "npm-check-updates --dep optional --upgrade --target=minor", }, Object { "exec": "npm-check-updates --dep peer --upgrade --target=minor", }, Object { "exec": "npm-check-updates --dep prod --upgrade --target=minor", }, Object { "exec": "npm-check-updates --dep bundle --upgrade --target=minor", }, Object { "exec": "yarn install --check-files", }, Object { "exec": "yarn upgrade", }, Object { "exec": "npx projen", }, Object { "spawn": "post-upgrade", }, ], }, "watch": Object { "description": "Watch & compile in the background", "name": "watch", "steps": Array [ Object { "exec": "tsc --build -w", }, ], }, }, }, "packages/api/LICENSE": " Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. \\"License\\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. \\"Licensor\\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. \\"Legal Entity\\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \\"control\\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. \\"You\\" (or \\"Your\\") shall mean an individual or Legal Entity exercising permissions granted by this License. \\"Source\\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. \\"Object\\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. \\"Work\\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). \\"Derivative Works\\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. \\"Contribution\\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \\"submitted\\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \\"Not a Contribution.\\" \\"Contributor\\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a \\"NOTICE\\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \\"AS IS\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \\"[]\\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \\"printed page\\" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the \\"License\\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \\"AS IS\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ", "packages/api/README.md": "# replace this", "packages/api/generated/.client-settings.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\".", "clientLanguages": Array [ "typescript", ], "documentationFormats": Array [], }, "packages/api/generated/README.md": "## Generated Clients This directory contains generated client code based on your OpenAPI Specification file (spec.yaml). Like other \`projen\` managed files, this directory should be checked in to source control, but should not be edited manually.", "packages/api/generated/typescript/.gitattributes": "# ~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\". /.gitattributes linguist-generated /.gitignore linguist-generated /.npmignore linguist-generated /.openapi-generator-ignore linguist-generated /.projen/** linguist-generated /.projen/deps.json linguist-generated /.projen/files.json linguist-generated /.projen/tasks.json linguist-generated /LICENSE linguist-generated /package.json linguist-generated /tsconfig.dev.json linguist-generated /tsconfig.json linguist-generated /yarn.lock linguist-generated", "packages/api/generated/typescript/.gitignore": "# ~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\". !/.gitattributes !/.projen/tasks.json !/.projen/deps.json !/.projen/files.json !/package.json !/LICENSE !/.npmignore logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json pids *.pid *.seed *.pid.lock lib-cov coverage *.lcov .nyc_output build/Release node_modules/ jspm_packages/ *.tsbuildinfo .eslintcache *.tgz .yarn-integrity .cache !/.projenrc.js !/test/ !/tsconfig.json !/tsconfig.dev.json !/src/ /lib /dist/ !/.openapi-generator-ignore ", "packages/api/generated/typescript/.npmignore": "README.md", "packages/api/generated/typescript/.openapi-generator-ignore": "# ~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\". .gitignore package.json tsconfig.json tsconfig.esm.json src/index.ts ", "packages/api/generated/typescript/.openapi-generator/FILES": ".npmignore README.md src/apis/DefaultApi.ts src/apis/DefaultApi/OperationConfig.ts src/apis/index.ts src/models/ApiErrorResponseContent.ts src/models/ApiErrorResponseContent.ts src/models/ApiErrorResponseContent.ts src/models/SayHelloResponseContent.ts src/models/SayHelloResponseContent.ts src/models/SayHelloResponseContent.ts src/models/index.ts src/runtime.ts ", "packages/api/generated/typescript/.openapi-generator/VERSION": "6.3.0", "packages/api/generated/typescript/.projen/deps.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\".", "dependencies": Array [ Object { "name": "@types/node", "type": "build", "version": "^16", }, Object { "name": "npm-check-updates", "type": "build", "version": "^16", }, Object { "name": "projen", "type": "build", }, Object { "name": "typescript", "type": "build", }, Object { "name": "@types/aws-lambda", "type": "runtime", }, ], }, "packages/api/generated/typescript/.projen/files.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\".", "files": Array [ ".gitattributes", ".gitignore", ".npmignore", ".openapi-generator-ignore", ".projen/deps.json", ".projen/files.json", ".projen/tasks.json", "LICENSE", "tsconfig.dev.json", "tsconfig.json", ], }, "packages/api/generated/typescript/.projen/tasks.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\".", "env": Object { "PATH": "$(npx -c \\"node -e \\\\\\"console.log(process.env.PATH)\\\\\\"\\")", }, "tasks": Object { "build": Object { "description": "Full release build", "name": "build", "steps": Array [ Object { "spawn": "pre-compile", }, Object { "spawn": "compile", }, Object { "spawn": "post-compile", }, Object { "spawn": "test", }, Object { "spawn": "package", }, ], }, "compile": Object { "description": "Only compile", "name": "compile", "steps": Array [ Object { "exec": "tsc --build", }, ], }, "default": Object { "description": "Synthesize project files", "name": "default", "steps": Array [ Object { "cwd": "../../../..", "exec": "npx projen default", }, ], }, "install": Object { "description": "Install project dependencies and update lockfile (non-frozen)", "name": "install", "steps": Array [ Object { "exec": "yarn install --check-files", }, ], }, "install:ci": Object { "description": "Install project dependencies using frozen lockfile", "name": "install:ci", "steps": Array [ Object { "exec": "yarn install --check-files --frozen-lockfile", }, ], }, "package": Object { "description": "Creates the distribution package", "name": "package", "steps": Array [ Object { "exec": "mkdir -p dist/js", }, Object { "exec": "mv $(npm pack) dist/js/", }, ], }, "post-compile": Object { "description": "Runs after successful compilation", "name": "post-compile", }, "post-upgrade": Object { "description": "Runs after upgrading dependencies", "name": "post-upgrade", }, "pre-compile": Object { "description": "Prepare the project for compilation", "name": "pre-compile", }, "test": Object { "description": "Run tests", "name": "test", }, "upgrade": Object { "description": "upgrade dependencies", "env": Object { "CI": "0", }, "name": "upgrade", "steps": Array [ Object { "exec": "yarn upgrade npm-check-updates", }, Object { "exec": "npm-check-updates --dep dev --upgrade --target=minor", }, Object { "exec": "npm-check-updates --dep optional --upgrade --target=minor", }, Object { "exec": "npm-check-updates --dep peer --upgrade --target=minor", }, Object { "exec": "npm-check-updates --dep prod --upgrade --target=minor", }, Object { "exec": "npm-check-updates --dep bundle --upgrade --target=minor", }, Object { "exec": "yarn install --check-files", }, Object { "exec": "yarn upgrade", }, Object { "exec": "npx projen", }, Object { "spawn": "post-upgrade", }, ], }, "watch": Object { "description": "Watch & compile in the background", "name": "watch", "steps": Array [ Object { "exec": "tsc --build -w", }, ], }, }, }, "packages/api/generated/typescript/LICENSE": " Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. \\"License\\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. \\"Licensor\\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. \\"Legal Entity\\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \\"control\\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. \\"You\\" (or \\"Your\\") shall mean an individual or Legal Entity exercising permissions granted by this License. \\"Source\\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. \\"Object\\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. \\"Work\\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). \\"Derivative Works\\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. \\"Contribution\\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \\"submitted\\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \\"Not a Contribution.\\" \\"Contributor\\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a \\"NOTICE\\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \\"AS IS\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \\"[]\\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \\"printed page\\" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the \\"License\\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \\"AS IS\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ", "packages/api/generated/typescript/README.md": "## @test/my-api-typescript@1.0 This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments: Environment * Node.js * Webpack * Browserify Language level * ES5 - you must have a Promises/A+ library installed * ES6 Module system * CommonJS * ES6 module system It can be used in both TypeScript and JavaScript. In TypeScript, the definition should be automatically resolved via \`package.json\`. ([Reference](http://www.typescriptlang.org/docs/handbook/typings-for-npm-packages.html)) ### Building To build and compile the typescript sources to javascript use: \`\`\` npm install npm run build \`\`\` ### Publishing First build the package then run \`\`\`npm publish\`\`\` ### Consuming navigate to the folder of your consuming project and run one of the following commands. _published:_ \`\`\` npm install @test/my-api-typescript@1.0 --save \`\`\` _unPublished (not recommended):_ \`\`\` npm install PATH_TO_GENERATED_PACKAGE --save ", "packages/api/generated/typescript/package.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\".", "dependencies": Object { "@types/aws-lambda": "*", }, "devDependencies": Object { "@types/node": "^16", "npm-check-updates": "^16", "projen": "*", "typescript": "*", }, "license": "Apache-2.0", "main": "lib/index.js", "name": "@test/my-api-typescript", "scripts": Object { "build": "npx projen build", "compile": "npx projen compile", "default": "npx projen default", "package": "npx projen package", "post-compile": "npx projen post-compile", "post-upgrade": "npx projen post-upgrade", "pre-compile": "npx projen pre-compile", "projen": "npx projen", "test": "npx projen test", "upgrade": "npx projen upgrade", "watch": "npx projen watch", }, "types": "lib/index.d.ts", "version": "0.0.0", }, "packages/api/generated/typescript/src/apis/DefaultApi.ts": "/* tslint:disable */ /* eslint-disable */ /** * TestService * A sample smithy api * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import type { ApiErrorResponseContent, SayHelloResponseContent, } from '../models'; import { ApiErrorResponseContentFromJSON, ApiErrorResponseContentToJSON, SayHelloResponseContentFromJSON, SayHelloResponseContentToJSON, } from '../models'; export interface SayHelloRequest { name: string; } /** * */ export class DefaultApi extends runtime.BaseAPI { /** */ async sayHelloRaw(requestParameters: SayHelloRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise> { if (requestParameters.name === null || requestParameters.name === undefined) { throw new runtime.RequiredError('name','Required parameter requestParameters.name was null or undefined when calling sayHello.'); } const queryParameters: any = {}; if (requestParameters.name !== undefined) { queryParameters['name'] = requestParameters.name; } const headerParameters: runtime.HTTPHeaders = {}; const response = await this.request({ path: \`/hello\`, method: 'GET', headers: headerParameters, query: queryParameters, }, initOverrides); return new runtime.JSONApiResponse(response, (jsonValue) => SayHelloResponseContentFromJSON(jsonValue)); } /** */ async sayHello(requestParameters: SayHelloRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise { const response = await this.sayHelloRaw(requestParameters, initOverrides); return await response.value(); } } ", "packages/api/generated/typescript/src/apis/DefaultApi/OperationConfig.ts": "// Import models import { ApiErrorResponseContent, ApiErrorResponseContentFromJSON, ApiErrorResponseContentToJSON, SayHelloResponseContent, SayHelloResponseContentFromJSON, SayHelloResponseContentToJSON, } from '../../models'; // Import request parameter interfaces import { SayHelloRequest, } from '..'; // API Gateway Types import { APIGatewayProxyEvent, APIGatewayProxyResult, Context } from \\"aws-lambda\\"; // Generic type for object keyed by operation names export interface OperationConfig { sayHello: T; } // Look up path and http method for a given operation name export const OperationLookup = { sayHello: { path: '/hello', method: 'GET', }, }; export class Operations { /** * Return an OperationConfig with the same value for every operation */ public static all = (value: T): OperationConfig => Object.fromEntries( Object.keys(OperationLookup).map((operationId) => [operationId, value]) ) as unknown as OperationConfig; } // Standard apigateway request parameters (query parameters or path parameters, multi or single value) type ApiGatewayRequestParameters = { [key: string]: string | string[] | undefined }; /** * URI decode for a string or array of strings */ const uriDecode = (value: string | string[]): string | string[] => typeof value === 'string' ? decodeURIComponent(value) : value.map((v) => decodeURIComponent(v)); /** * URI decodes apigateway request parameters (query or path parameters) */ const decodeRequestParameters = (parameters: ApiGatewayRequestParameters): ApiGatewayRequestParameters => { const decodedParameters = {}; Object.keys(parameters || {}).forEach((key) => { decodedParameters[key] = parameters[key] ? uriDecode(parameters[key]) : parameters[key]; }); return decodedParameters; }; /** * Parse the body if the content type is json, otherwise leave as a raw string */ const parseBody = (body: string, demarshal: (body: string) => any, contentTypes: string[]): any => contentTypes.filter((contentType) => contentType !== 'application/json').length === 0 ? demarshal(body || '{}') : body; type OperationIds = | 'sayHello'; type OperationApiGatewayProxyResult = APIGatewayProxyResult & { __operationId?: T }; // Api gateway lambda handler type type OperationApiGatewayLambdaHandler = (event: APIGatewayProxyEvent, context: Context) => Promise>; // Type of the response to be returned by an operation lambda handler export interface OperationResponse { statusCode: StatusCode; headers?: { [key: string]: string }; body: Body; } // Input for a lambda handler for an operation export type LambdaRequestParameters = { requestParameters: RequestParameters, requestArrayParameters: RequestArrayParameters, body: RequestBody, }; export type InterceptorContext = { [key: string]: any }; export interface RequestInput { input: LambdaRequestParameters; event: APIGatewayProxyEvent; context: Context; interceptorContext: InterceptorContext; } export interface ChainedRequestInput extends RequestInput { chain: LambdaHandlerChain; } /** * A lambda handler function which is part of a chain. It may invoke the remainder of the chain via the given chain input */ export type ChainedLambdaHandlerFunction = ( input: ChainedRequestInput, ) => Promise; // Type for a lambda handler function to be wrapped export type LambdaHandlerFunction = ( input: RequestInput, ) => Promise; export interface LambdaHandlerChain { next: LambdaHandlerFunction; } // Interceptor is a type alias for ChainedLambdaHandlerFunction export type Interceptor = ChainedLambdaHandlerFunction; /** * Build a chain from the given array of chained lambda handlers */ const buildHandlerChain = ( ...handlers: ChainedLambdaHandlerFunction[] ): LambdaHandlerChain => { if (handlers.length === 0) { return { next: () => { throw new Error(\\"No more handlers remain in the chain! The last handler should not call next.\\"); } }; } const [currentHandler, ...remainingHandlers] = handlers; return { next: (input) => { return currentHandler({ ...input, chain: buildHandlerChain(...remainingHandlers), }); }, }; }; /** * Single-value path/query parameters for SayHello */ export interface SayHelloRequestParameters { readonly name: string; } /** * Multi-value query parameters for SayHello */ export interface SayHelloRequestArrayParameters { } /** * Request body parameter for SayHello */ export type SayHelloRequestBody = never; export type SayHello200OperationResponse = OperationResponse<200, SayHelloResponseContent>; export type SayHello400OperationResponse = OperationResponse<400, ApiErrorResponseContent>; export type SayHelloOperationResponses = | SayHello200OperationResponse | SayHello400OperationResponse ; // Type that the handler function provided to the wrapper must conform to export type SayHelloHandlerFunction = LambdaHandlerFunction; export type SayHelloChainedHandlerFunction = ChainedLambdaHandlerFunction; /** * Lambda handler wrapper to provide typed interface for the implementation of sayHello */ export const sayHelloHandler = ( firstHandler: SayHelloChainedHandlerFunction, ...remainingHandlers: SayHelloChainedHandlerFunction[] ): OperationApiGatewayLambdaHandler<'sayHello'> => async (event: any, context: any, _callback?: any, additionalInterceptors: SayHelloChainedHandlerFunction[] = []): Promise => { const requestParameters = decodeRequestParameters({ ...(event.pathParameters || {}), ...(event.queryStringParameters || {}), }) as unknown as SayHelloRequestParameters; const requestArrayParameters = decodeRequestParameters({ ...(event.multiValueQueryStringParameters || {}), }) as unknown as SayHelloRequestArrayParameters; const demarshal = (bodyString: string): any => { return {}; }; const body = parseBody(event.body, demarshal, ['application/json']) as SayHelloRequestBody; const chain = buildHandlerChain(...additionalInterceptors, firstHandler, ...remainingHandlers); const response = await chain.next({ input: { requestParameters, requestArrayParameters, body, }, event, context, interceptorContext: {}, }); const marshal = (statusCode: number, responseBody: any): string => { let marshalledBody = responseBody; switch(statusCode) { case 200: marshalledBody = JSON.stringify(SayHelloResponseContentToJSON(marshalledBody)); break; case 400: marshalledBody = JSON.stringify(ApiErrorResponseContentToJSON(marshalledBody)); break; default: break; } return marshalledBody; }; return { ...response, body: response.body ? marshal(response.statusCode, response.body) : '', }; }; export interface HandlerRouterHandlers { readonly sayHello: OperationApiGatewayLambdaHandler<'sayHello'>; } export type AnyOperationRequestParameters = | SayHelloRequestParameters; export type AnyOperationRequestArrayParameters = | SayHelloRequestArrayParameters; export type AnyOperationRequestBodies = | SayHelloRequestBody; export type AnyOperationResponses = | SayHelloOperationResponses; export interface HandlerRouterProps< RequestParameters, RequestArrayParameters, RequestBody, Response extends AnyOperationResponses > { /** * Interceptors to apply to all handlers */ readonly interceptors?: ChainedLambdaHandlerFunction< RequestParameters, RequestArrayParameters, RequestBody, Response >[]; /** * Handlers to register for each operation */ readonly handlers: HandlerRouterHandlers; } const concatMethodAndPath = (method: string, path: string) => \`\${method.toLowerCase()}||\${path}\`; const OperationIdByMethodAndPath = Object.fromEntries(Object.entries(OperationLookup).map( ([operationId, methodAndPath]) => [concatMethodAndPath(methodAndPath.method, methodAndPath.path), operationId] )); /** * Returns a lambda handler which can be used to route requests to the appropriate typed lambda handler function. */ export const handlerRouter = (props: HandlerRouterProps< AnyOperationRequestParameters, AnyOperationRequestArrayParameters, AnyOperationRequestBodies, AnyOperationResponses >): OperationApiGatewayLambdaHandler => async (event, context) => { const operationId = OperationIdByMethodAndPath[concatMethodAndPath(event.requestContext.httpMethod, event.requestContext.resourcePath)]; const handler = props.handlers[operationId]; return handler(event, context, undefined, props.interceptors); }; ", "packages/api/generated/typescript/src/apis/index.ts": "/* tslint:disable */ /* eslint-disable */ export * from './DefaultApi'; ", "packages/api/generated/typescript/src/index.ts": "/* tslint:disable */ /* eslint-disable */ export * from './runtime'; export * from './apis'; export * from './models'; export * from './apis/DefaultApi/OperationConfig';", "packages/api/generated/typescript/src/models/ApiErrorResponseContent.ts": "/* tslint:disable */ /* eslint-disable */ /** * TestService * A sample smithy api * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { exists, mapValues } from '../runtime'; /** * * @export * @interface ApiErrorResponseContent */ export interface ApiErrorResponseContent { /** * * @type {string} * @memberof ApiErrorResponseContent */ errorMessage: string; } /** * Check if a given object implements the ApiErrorResponseContent interface. */ export function instanceOfApiErrorResponseContent(value: object): boolean { let isInstance = true; isInstance = isInstance && \\"errorMessage\\" in value; return isInstance; } export function ApiErrorResponseContentFromJSON(json: any): ApiErrorResponseContent { return ApiErrorResponseContentFromJSONTyped(json, false); } export function ApiErrorResponseContentFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiErrorResponseContent { if ((json === undefined) || (json === null)) { return json; } return { 'errorMessage': json['errorMessage'], }; } export function ApiErrorResponseContentToJSON(value?: ApiErrorResponseContent | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'errorMessage': value.errorMessage, }; } ", "packages/api/generated/typescript/src/models/SayHelloResponseContent.ts": "/* tslint:disable */ /* eslint-disable */ /** * TestService * A sample smithy api * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { exists, mapValues } from '../runtime'; /** * * @export * @interface SayHelloResponseContent */ export interface SayHelloResponseContent { /** * * @type {string} * @memberof SayHelloResponseContent */ message: string; } /** * Check if a given object implements the SayHelloResponseContent interface. */ export function instanceOfSayHelloResponseContent(value: object): boolean { let isInstance = true; isInstance = isInstance && \\"message\\" in value; return isInstance; } export function SayHelloResponseContentFromJSON(json: any): SayHelloResponseContent { return SayHelloResponseContentFromJSONTyped(json, false); } export function SayHelloResponseContentFromJSONTyped(json: any, ignoreDiscriminator: boolean): SayHelloResponseContent { if ((json === undefined) || (json === null)) { return json; } return { 'message': json['message'], }; } export function SayHelloResponseContentToJSON(value?: SayHelloResponseContent | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'message': value.message, }; } ", "packages/api/generated/typescript/src/models/index.ts": "/* tslint:disable */ /* eslint-disable */ export * from './ApiErrorResponseContent'; export * from './SayHelloResponseContent'; ", "packages/api/generated/typescript/src/runtime.ts": "/* tslint:disable */ /* eslint-disable */ /** * TestService * A sample smithy api * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ export const BASE_PATH = \\"http://localhost\\".replace(/\\\\/+$/, \\"\\"); export interface ConfigurationParameters { basePath?: string; // override base path fetchApi?: FetchAPI; // override for fetch implementation middleware?: Middleware[]; // middleware to apply before/after fetch requests queryParamsStringify?: (params: HTTPQuery) => string; // stringify function for query strings username?: string; // parameter for basic security password?: string; // parameter for basic security apiKey?: string | ((name: string) => string); // parameter for apiKey security accessToken?: string | Promise | ((name?: string, scopes?: string[]) => string | Promise); // parameter for oauth2 security headers?: HTTPHeaders; //header params we want to use on every request credentials?: RequestCredentials; //value for the credentials param we want to use on each request } export class Configuration { constructor(private configuration: ConfigurationParameters = {}) {} set config(configuration: Configuration) { this.configuration = configuration; } get basePath(): string { return this.configuration.basePath != null ? this.configuration.basePath : BASE_PATH; } get fetchApi(): FetchAPI | undefined { return this.configuration.fetchApi; } get middleware(): Middleware[] { return this.configuration.middleware || []; } get queryParamsStringify(): (params: HTTPQuery) => string { return this.configuration.queryParamsStringify || querystring; } get username(): string | undefined { return this.configuration.username; } get password(): string | undefined { return this.configuration.password; } get apiKey(): ((name: string) => string) | undefined { const apiKey = this.configuration.apiKey; if (apiKey) { return typeof apiKey === 'function' ? apiKey : () => apiKey; } return undefined; } get accessToken(): ((name?: string, scopes?: string[]) => string | Promise) | undefined { const accessToken = this.configuration.accessToken; if (accessToken) { return typeof accessToken === 'function' ? accessToken : async () => accessToken; } return undefined; } get headers(): HTTPHeaders | undefined { return this.configuration.headers; } get credentials(): RequestCredentials | undefined { return this.configuration.credentials; } } export const DefaultConfig = new Configuration(); /** * This is the base class for all generated API classes. */ export class BaseAPI { private middleware: Middleware[]; constructor(protected configuration = DefaultConfig) { this.middleware = configuration.middleware; } withMiddleware(this: T, ...middlewares: Middleware[]) { const next = this.clone(); next.middleware = next.middleware.concat(...middlewares); return next; } withPreMiddleware(this: T, ...preMiddlewares: Array) { const middlewares = preMiddlewares.map((pre) => ({ pre })); return this.withMiddleware(...middlewares); } withPostMiddleware(this: T, ...postMiddlewares: Array) { const middlewares = postMiddlewares.map((post) => ({ post })); return this.withMiddleware(...middlewares); } protected async request(context: RequestOpts, initOverrides?: RequestInit | InitOverrideFunction): Promise { const { url, init } = await this.createFetchParams(context, initOverrides); const response = await this.fetchApi(url, init); if (response && (response.status >= 200 && response.status < 300)) { return response; } throw new ResponseError(response, 'Response returned an error code'); } private async createFetchParams(context: RequestOpts, initOverrides?: RequestInit | InitOverrideFunction) { let url = this.configuration.basePath + context.path; if (context.query !== undefined && Object.keys(context.query).length !== 0) { // only add the querystring to the URL if there are query parameters. // this is done to avoid urls ending with a \\"?\\" character which buggy webservers // do not handle correctly sometimes. url += '?' + this.configuration.queryParamsStringify(context.query); } const headers = Object.assign({}, this.configuration.headers, context.headers); Object.keys(headers).forEach(key => headers[key] === undefined ? delete headers[key] : {}); const initOverrideFn = typeof initOverrides === \\"function\\" ? initOverrides : async () => initOverrides; const initParams = { method: context.method, headers, body: context.body, credentials: this.configuration.credentials, }; const overriddenInit: RequestInit = { ...initParams, ...(await initOverrideFn({ init: initParams, context, })) }; const init: RequestInit = { ...overriddenInit, body: isFormData(overriddenInit.body) || overriddenInit.body instanceof URLSearchParams || isBlob(overriddenInit.body) ? overriddenInit.body : JSON.stringify(overriddenInit.body), }; return { url, init }; } private fetchApi = async (url: string, init: RequestInit) => { let fetchParams = { url, init }; for (const middleware of this.middleware) { if (middleware.pre) { fetchParams = await middleware.pre({ fetch: this.fetchApi, ...fetchParams, }) || fetchParams; } } let response: Response | undefined = undefined; try { response = await (this.configuration.fetchApi || fetch)(fetchParams.url, fetchParams.init); } catch (e) { for (const middleware of this.middleware) { if (middleware.onError) { response = await middleware.onError({ fetch: this.fetchApi, url: fetchParams.url, init: fetchParams.init, error: e, response: response ? response.clone() : undefined, }) || response; } } if (response === undefined) { if (e instanceof Error) { throw new FetchError(e, 'The request failed and the interceptors did not return an alternative response'); } else { throw e; } } } for (const middleware of this.middleware) { if (middleware.post) { response = await middleware.post({ fetch: this.fetchApi, url: fetchParams.url, init: fetchParams.init, response: response.clone(), }) || response; } } return response; } /** * Create a shallow clone of \`this\` by constructing a new instance * and then shallow cloning data members. */ private clone(this: T): T { const constructor = this.constructor as any; const next = new constructor(this.configuration); next.middleware = this.middleware.slice(); return next; } }; function isBlob(value: any): value is Blob { return typeof Blob !== 'undefined' && value instanceof Blob; } function isFormData(value: any): value is FormData { return typeof FormData !== \\"undefined\\" && value instanceof FormData; } export class ResponseError extends Error { override name: \\"ResponseError\\" = \\"ResponseError\\"; constructor(public response: Response, msg?: string) { super(msg); } } export class FetchError extends Error { override name: \\"FetchError\\" = \\"FetchError\\"; constructor(public cause: Error, msg?: string) { super(msg); } } export class RequiredError extends Error { override name: \\"RequiredError\\" = \\"RequiredError\\"; constructor(public field: string, msg?: string) { super(msg); } } export const COLLECTION_FORMATS = { csv: \\",\\", ssv: \\" \\", tsv: \\"\\\\t\\", pipes: \\"|\\", }; export type FetchAPI = WindowOrWorkerGlobalScope['fetch']; export type Json = any; export type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'HEAD'; export type HTTPHeaders = { [key: string]: string }; export type HTTPQuery = { [key: string]: string | number | null | boolean | Array | Set | HTTPQuery }; export type HTTPBody = Json | FormData | URLSearchParams; export type HTTPRequestInit = { headers?: HTTPHeaders; method: HTTPMethod; credentials?: RequestCredentials; body?: HTTPBody }; export type ModelPropertyNaming = 'camelCase' | 'snake_case' | 'PascalCase' | 'original'; export type InitOverrideFunction = (requestContext: { init: HTTPRequestInit, context: RequestOpts }) => Promise export interface FetchParams { url: string; init: RequestInit; } export interface RequestOpts { path: string; method: HTTPMethod; headers: HTTPHeaders; query?: HTTPQuery; body?: HTTPBody; } export function exists(json: any, key: string) { const value = json[key]; return value !== null && value !== undefined; } export function querystring(params: HTTPQuery, prefix: string = ''): string { return Object.keys(params) .map(key => querystringSingleKey(key, params[key], prefix)) .filter(part => part.length > 0) .join('&'); } function querystringSingleKey(key: string, value: string | number | null | undefined | boolean | Array | Set | HTTPQuery, keyPrefix: string = ''): string { const fullKey = keyPrefix + (keyPrefix.length ? \`[\${key}]\` : key); if (value instanceof Array) { const multiValue = value.map(singleValue => encodeURIComponent(String(singleValue))) .join(\`&\${encodeURIComponent(fullKey)}=\`); return \`\${encodeURIComponent(fullKey)}=\${multiValue}\`; } if (value instanceof Set) { const valueAsArray = Array.from(value); return querystringSingleKey(key, valueAsArray, keyPrefix); } if (value instanceof Date) { return \`\${encodeURIComponent(fullKey)}=\${encodeURIComponent(value.toISOString())}\`; } if (value instanceof Object) { return querystring(value as HTTPQuery, fullKey); } return \`\${encodeURIComponent(fullKey)}=\${encodeURIComponent(String(value))}\`; } export function mapValues(data: any, fn: (item: any) => any) { return Object.keys(data).reduce( (acc, key) => ({ ...acc, [key]: fn(data[key]) }), {} ); } export function canConsumeForm(consumes: Consume[]): boolean { for (const consume of consumes) { if ('multipart/form-data' === consume.contentType) { return true; } } return false; } export interface Consume { contentType: string; } export interface RequestContext { fetch: FetchAPI; url: string; init: RequestInit; } export interface ResponseContext { fetch: FetchAPI; url: string; init: RequestInit; response: Response; } export interface ErrorContext { fetch: FetchAPI; url: string; init: RequestInit; error: unknown; response?: Response; } export interface Middleware { pre?(context: RequestContext): Promise; post?(context: ResponseContext): Promise; onError?(context: ErrorContext): Promise; } export interface ApiResponse { raw: Response; value(): Promise; } export interface ResponseTransformer { (json: any): T; } export class JSONApiResponse { constructor(public raw: Response, private transformer: ResponseTransformer = (jsonValue: any) => jsonValue) {} async value(): Promise { return this.transformer(await this.raw.json()); } } export class VoidApiResponse { constructor(public raw: Response) {} async value(): Promise { return undefined; } } export class BlobApiResponse { constructor(public raw: Response) {} async value(): Promise { return await this.raw.blob(); }; } export class TextApiResponse { constructor(public raw: Response) {} async value(): Promise { return await this.raw.text(); }; } ", "packages/api/generated/typescript/tsconfig.dev.json": Object { "compilerOptions": Object { "alwaysStrict": false, "declaration": true, "esModuleInterop": true, "experimentalDecorators": true, "inlineSourceMap": true, "inlineSources": true, "lib": Array [ "dom", "es2019", ], "module": "CommonJS", "noEmitOnError": false, "noFallthroughCasesInSwitch": true, "noImplicitAny": false, "noImplicitReturns": false, "noImplicitThis": false, "noUnusedLocals": false, "noUnusedParameters": false, "resolveJsonModule": true, "strict": false, "strictNullChecks": false, "strictPropertyInitialization": false, "stripInternal": true, "target": "ES2019", }, "exclude": Array [ "node_modules", ], "include": Array [ ".projenrc.js", "src/**/*.ts", "test/**/*.ts", ], }, "packages/api/generated/typescript/tsconfig.json": Object { "compilerOptions": Object { "alwaysStrict": false, "declaration": true, "esModuleInterop": true, "experimentalDecorators": true, "inlineSourceMap": true, "inlineSources": true, "lib": Array [ "dom", "es2019", ], "module": "CommonJS", "noEmitOnError": false, "noFallthroughCasesInSwitch": true, "noImplicitAny": false, "noImplicitReturns": false, "noImplicitThis": false, "noUnusedLocals": false, "noUnusedParameters": false, "outDir": "lib", "resolveJsonModule": true, "rootDir": "src", "strict": false, "strictNullChecks": false, "strictPropertyInitialization": false, "stripInternal": true, "target": "ES2019", }, "exclude": Array [], "include": Array [ "src/**/*.ts", ], }, "packages/api/package.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\".", "dependencies": Object { "@aws-prototyping-sdk/open-api-gateway": "*", "@test/my-api-typescript": "*", "aws-cdk-lib": "*", "cdk-nag": "*", "constructs": "*", }, "devDependencies": Object { "@types/jest": "*", "@types/node": "^16", "@typescript-eslint/eslint-plugin": "^5", "@typescript-eslint/parser": "^5", "eslint": "^8", "eslint-import-resolver-node": "*", "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", "jest-junit": "^15", "npm-check-updates": "^16", "projen": "*", "ts-jest": "*", "typescript": "*", }, "jest": Object { "clearMocks": true, "collectCoverage": true, "coverageDirectory": "coverage", "coveragePathIgnorePatterns": Array [ "/node_modules/", ], "coverageReporters": Array [ "json", "lcov", "clover", "cobertura", "text", ], "globals": Object { "ts-jest": Object { "tsconfig": "tsconfig.dev.json", }, }, "preset": "ts-jest", "reporters": Array [ "default", Array [ "jest-junit", Object { "outputDirectory": "test-reports", }, ], ], "testMatch": Array [ "/src/**/__tests__/**/*.ts?(x)", "/(test|src)/**/*(*.)@(spec|test).ts?(x)", ], "testPathIgnorePatterns": Array [ "/node_modules/", ], "watchPathIgnorePatterns": Array [ "/node_modules/", ], }, "license": "Apache-2.0", "main": "lib/index.js", "name": "@test/my-api", "private": true, "scripts": Object { "build": "npx projen build", "compile": "npx projen compile", "default": "npx projen default", "eslint": "npx projen eslint", "package": "npx projen package", "post-compile": "npx projen post-compile", "post-upgrade": "npx projen post-upgrade", "pre-compile": "npx projen pre-compile", "projen": "npx projen", "test": "npx projen test", "test:watch": "npx projen test:watch", "upgrade": "npx projen upgrade", "watch": "npx projen watch", }, "types": "lib/index.d.ts", "version": "0.0.0", "workspaces": Object { "packages": Array [ "generated/typescript", ], }, }, "packages/api/smithy/build.gradle": "// ~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\". plugins { id \\"software.amazon.smithy\\" version \\"0.6.0\\" } sourceSets { main { java { srcDirs = ['src/main/smithy'] } } } // Dependencies can be added by configuring smithyBuildOptions in your .projenrc file repositories { mavenLocal() mavenCentral() } // Dependencies can be added by configuring smithyBuildOptions in your .projenrc file dependencies { implementation \\"software.amazon.smithy:smithy-cli:1.28.0\\" implementation \\"software.amazon.smithy:smithy-model:1.28.0\\" implementation \\"software.amazon.smithy:smithy-openapi:1.28.0\\" implementation \\"software.amazon.smithy:smithy-aws-traits:1.28.0\\" } task generate(type: JavaExec) { configurations.implementation.setCanBeResolved(true) classpath = configurations.implementation mainClass.set('software.amazon.smithy.cli.SmithyCli') if (project.hasProperty(\\"config\\") && project.hasProperty(\\"output\\") && project.hasProperty(\\"discover\\")) { args(\\"build\\", \\"--config\\", file(project.getProperty(\\"config\\")).toString(), \\"--output\\", file(project.getProperty(\\"output\\")).toString(), \\"--discover\\", file(project.getProperty(\\"discover\\")).toString()) } } ", "packages/api/smithy/gradle/wrapper/gradle-wrapper.jar": "PK A META-INF/PK Am�>=@?META-INF/MANIFEST.MF�M��LK-.� K-*��ϳR0�3����-�I�M�+I, �d��Z)�%��*�%��r�rPK Aorg/PK A org/gradle/PK Aorg/gradle/wrapper/PK APr��� -*org/gradle/wrapper/GradleWrapperMain.class�Xx�����բr��\\"�E;�\\"L1X�! $| @D�����n��%N�t��F��'q N����Nwz��齓�8�g�t�� }�>4����+�{�� �>��ek�\\"�T��R���rx����y*J$��Wp����B?^$ /V��ԏs~�L��UTI�*�B.�Rūp^��U�qɯQ�Z�N��[����*���я7��foQ�Vux��Z�]�;T,���;��ǻT��n�����rx����������U|��0R*F1��\\"R0��#*6ᒊ;pُ+r�G�xX�#��cr��*>�O��S����H�G�H�?�����*��/�����+*v�sw�ki ���n�w��kW���==�]����)�1�LJ�m+j��j�����Ѥ!,������no�ȩN����l��P�P 6�l��#���P�~_�9@m�H�؝�3��XԐF��zt�nE� D*�mpn�rg2ⵡ�$��� � M�S�Nk��b�v�I��p�|N�A[-2E卭��Zx��Ǵ0͜�-N7J3s��D��^�����}Q����.oV���Bӊ������JT*&�N�u]��6�6�G��> �&�O0�V�>ۘ��R��#�3��PSX���6�p�m�afx��V��+T�hNa�=�'��[}������{ [G�+���\\"� \\\\��jE�GrSh#n�v\\"�J��m�\\"в ��R5h!R��q+m��d� n�������8�Y5w�f� �k�:˯�L8w�����o�����T��N�JU�M;��dP�(Ka�ݘ�X,';R�f��S�X�t�j1�A�����DWi��Q�C7�fSZM�8vRzU����D�ĕ�� <���PK A��.q/3#gradle-wrapper-classpath.properties+(��JM.)�M/JL�I�M��ԁ2ˋ R�t�3�RS��J�J2sSm�PK A)gradle-wrapper-parameter-names.propertiesPK Aorg/gradle/cli/PK A��?�<S1org/gradle/cli/AbstractCommandLineConverter.class�T]oA= ���\\"��~C?��R*O��h4!����aY�m\`� C��ߢ/4����2��P���a��9{�s���?�PF�@;:v D�c@���{xY9y�x��\\\\Yc�fs� ڑ߱V�g{m[�x�KH��[�{ʅ�'�&?��b�N��ӵKV�-��)�%��^�{������m!mQaظ������|�j�U��n���l㌟�R�{N�����}f[�� C�� ���-��k��ږ�=,ȍ��؂ak^���߫�^t�� ֔���-J��_,�/]���c��t�ˡ�+;X���r��C�uVQ CW� u�h�Ca�oܠ������1a�6C���2Qľ�L��K�� &�!9��a{ Q�23Qu� {�'�M���~rՐ���3|i153 �mn�Devf���߆J����~-C�H�;\\"d�9�����edc� ��Dq�ָSX��\`I�w/!)��:�Fy�7���_�|�@�8_A� #��F��VX! �K\`���R~�;�x��)�>=�N�Rnp���؜�c�h��⟐��ϔ�4=c/�-e��PK A׃��X� ;org/gradle/cli/AbstractPropertiesCommandLineConverter.class�V[WU�N2��0� H��Ԅ��KK�IQJ�������;L�0f���O��Z��Z_�t������A��}N.i�2Y9��}���;�v���O�6�Q0��e|�\`�|��\`w,�'?�� ��H����\` �=�� V���>�B��x�����&c��.cC� ��i���?]c���З1-c���i8��\\"qB[׊k�cr�Ɣ�m�e����B��h���Ћfb~��M�V�d8�i� �ޞf����'��$ F]�p�䙶�0�fv�}-QԬB\\"�9�U ёѻ���E#�0�f���f�[��-�Pv�T�4��V5�%\\\\���X3L�X����QgIW����W]�p��0�?���:���ĒVJFO���MA\`i Үq�����A�1\\\\W@ ��\\\\�A܊�A)5\\"ɓ�4����8,��F�h�J+g� ^�z��KŽ��a�@7��e<��f͂�y\\"�߾�;D='���+�;��%��,��W��J� /G�d����L�Xg<�m�x# ����x �*&0.�Ko '�+�A�|g��<ߡo�(\`[��b�*��Sa�����������C���%M�U�4�ܹz��%�LEu|t��g�1qBu�)�� �k$1���� 5����xE;i1g��Yu[s밨��D:2�KZM�u6�?Al��T'�[�'\\\\�L�z ��o�B��E�1]^����.���&�z6�K�Z6<��S+Y�h~�u.�V�8X�b��u���2��i�t�e��d��N�۾��H;�4A��?2/y/���j���~���43�1���ˀ$� ��<�g�yWjFK$���j,� � �t��D��� �� �'R��k���$G �}/a�N�ƫ֪�j�~�����DH���AR����� ͹?��� �#�0,_;���iq��9|��)�[A�l �q\\"��0���%�T���q�Զ��9��N����R�7��3�w��o��=\\"\\\\�� � b��j��kD�����Q0����-��#Ku�s�u��Q��Ā�ٿ���c�c�ں)Q��=��[��tx�V�p�2�?�\`�'g[��:��YMᶘ��PK A}��yGK1org/gradle/cli/CommandLineArgumentException.class���J1�O�3���Zm+���U�V \\" ��–��i�Ff�̨������$-U�fq�{r�wO�����34K(\`˄mu � ����=}�^DE��S�E�=.�T}.�m���Q���/ ��&���t��_�� G� \\"�]�8�bl *�b&ҫ�=�\\\\�.��$����rA�^��2�(�d�[�ŀf�&՗V��2S���o�/c�PF� ��?^E��5�.)���-��/��1ttu��yN�N�3y��+:���ԕ;XէƬJ�k�⠌u�0�ʜu�g���;�S�~��tӾ���0w3�*6��M�]�PK A����g)org/gradle/cli/CommandLineConverter.class�QMK�@}���ԯ�'�\\"4 F<6� EQ($xߦ�%��vS��<��Q�6�L ]Xv�;����߯o�8w�upJp�L-�6�~/���S���b�f�%�u<� �*D�<.�id���n$�b&לpW'<(a��R�\`�q��Kx��l�r?I�����OF�l��$�j�ήw����vRm_U�%J��������vJQ��?���_��F�%p}�b.�;o���-7ۉZ�3��fSm���i�M�l�g����pl��~Qqk*[9�a��#��PK ASf �g&org/gradle/cli/CommandLineOption.class�V[wUݓ��4�^��i�\\\\�\\"iB�����Z.�^����dL��0�p�w������ .�UY�����.���d:�ܤˇ��s�����N��~����&�m8'�|�kE�Zqo �މ�.E� .�A��A��w�h/�� iEHzWœ���ª8ɉ�C^ܾ&KFA�-A6�n� :�����T�֍Ԝf�Jh�ӳ9�.Z��ݕ�c���沩9��s��ü��V������[y^���7�B�*�����f$�Җ�8#!Z /!����e��J��D���Y�/�����j�L+��Zj��RiCO����j.3��YLj�o8��--��ZFB˘����bq��I[��eC�_�73�Haf��˚5/΄�fZ5TKkw��t� �+:3���NU�dz-�������k����j�괚w��(ʸ.!�a��pV�g�)�)�_C���{ �����c.[$ �k�ҿ�l��'贡�{�RS|~2�v�?����x+��bi����zkN�u#�Y� j>��2�Z��fY�T���R�Q���xu��Wx8R��� E�1�0o���g�m���74���Ӂr_q9��\\\\�WO�w��/j�h��z\\"#�����z�,Zi��.Z��FkP�*؏$}��i��B+ �c��� na��]b���ᶂ�1��|(��� 2>R�1>a�ʠSz���5 ���xA�$>U�D��P~�.*8�� ����%>Ä��������;���g������+Z��Ekߌ�M' g�6-�0 �:� �NV�ϟ=!!�{��LX\`�e2zF�I���3U�\\\\�%�N��e5CC]�Z]AၺmѸYC�Y�b�Z.+���&%�����b �\`��)�s�4 �\\"((��{�j^��<�����Q�*�>\\\\����{�#�������%��N���׃\\\\��&9�I<��x����hz�\`�G4?DKyGN�!$az�Z%��V a �\\"2�� ��5(,�{����� !�۹��=��V�����$�Ij�H���a�D���/�i;��a� �������xʐ�d��8$���TŘf�+q�Y�����r�*6�:^��]�%�׸wG\\\\�788ˉ�H��ir\`��v?/'��얪�����c�Gaf�;B'��F��|v�v��rȵ#�x=��zC�8Pc.���}�vr�c���� JȐ�i1!�h�����]�n��G��S�����������0��� �.�j�5\\"GO���� �����n��J0���.b4��-��Ν�л�n=��w�\\"\`��~�r<�a�s>��)C���0�9y�mj��V!:��|��k��\\"%����*���5&��@TZ�[AkI )����Zb�=N�ʆr2�j��� �s���噜�(�B\`4JY:TCa��e�c��U���*�b2��v�TzCɘ�gKE�ԷN���R�9�r,m:��BM}�V���{\\"O.6��u1᳠��~�-��g~�hW���Kt/�O�vs���� }�+ ��=�]h��Y��,���l$� ���֊����7�� �4O?�� ��gԻ� ����h;_��!��Ѹwi���P����CEӞEV�h\`l�l �,�[��m'GT&p �DA�n��E����!i�/8<~��[$�\\"���V��8z��b3%���+�>g�*h�/V!r'����e���m3=�:Ir��n w���N�0�!�؊u�2�a����I��PK A�D��&3org/gradle/cli/CommandLineParser$AfterOptions.class��mOA��{-�r-�� >W�+p��\\"�D�!$M�Fxa��g9������.��D%����2�^�rҒc������ffwn��׷fqۀ�Qi�u�4��h �IS�tL�a�T�z��j�6�Pɓ5�&yյ���XO�l�ե}���G8�]���x��2Crɫ<� +��M[>�.YN�� w�\\\\:J�I�i0d��m���xB��B�r�卆M�u0r$f����u�~�^����F����+��[.5k՗��-�o0$�����z<A�e�k�ͨ��S �b���V���g<��?�d��\`�Sm��t\\\\cX>��cg�>�v��@]7|�- ƪ�-+�CG��@�ϔ�0� �j��E7 7�c�k��މW7xؒ�1��f�0�0y�d�8��3��5��?U�Ѷ=� q~ :5�h�h�k�mq�����_�2w��C^�2 �\\\\�� �G@�I]�T�����G�i4gL��,~Ab�T �4�\\"A;�����\`ȑm���:C�٤��3q�����hb�oPK A��M�u <org/gradle/cli/CommandLineParser$BeforeFirstSubCommand.class�V�r�T���串�:�I ��I|�sk��iK�^���r�ը���,Ӿ��[��2����x�Hnb�N�0��Ϲ�ٳ���=���_~0��2Nc� K2��ȑ�!aYF�ø���� ǪP�&C�u�!��%�6>�1�u���(68 w��o�z|�a,oٕL�V��zF��5�VS���a�wU���9�^6Lù�ps�_�u W�ݢ���d�֬m��l4jeݾ���$��-M�n��!�M�$�2 ��-[�a�u��(7m2(�MS�תj���ڢ/�xWCiX;P�BNg, �YtT�)���}����3%l1���T��3,�z�o���Kf�=�H�9� T_1$w�bW5�t�?��f�k��5s$]%���������4C� Y �G��p|�@EYx�.���~H@���]*�[q���r�j��;�;�k�G柮G&��İ�SE��Qɪ���z|q��|�y���p�j���( m�j�a8� �˔Ww[E���^lq��6v����(=��WN#�#�rN�YS���.8��~��rW��ß��������K�*b�; Q��\\"Q�iD@�r0�M�[�Ҭ$�?!�H�v����C�Iq����f�.Ɇ��1J�ᮨ�����oZ� }4�{�J��E�F�G��?�3x/�J#����'�Gtr)I�p���g{(EOJ��T)�.>Gd�/�-�G�WZo=sP�#�\`K3�Q��[F�]F�]��pՅ���ڇ�b�Y��h@�~R ���(�!�ijJ3n�����8B�# g��HW���ܱ���a6�:Nx*��9��g\\\\��.{b�� �׹�ڸ��i^E��\`�� N�$��,���S�D���gq����c)�/h�R��PK A�*�ZM�Forg/gradle/cli/CommandLineParser$CaseInsensitiveStringComparator.class�S]OA=w��P�Rˇ�\\"�UhAx1���ML�ԏ������v��n�����/��\`|������Ek�C���9��{Ng?���&6 �Q)\`�,9�5�=K&�l�fc��*!��|m2��]B�t%a��|�|�ߓzG�y�)����v�V�&��+�\\"�M?�~�\\"u$ۑV~���Q� N���nx\\" %��6m܏�#�nԍ�֛uB�_Є���\\"�[�f)����ְ�m�*����ȧ�H�j�f�p��\\\\�p �ߩLb������s� ��E����\\"L��d'h��@Kӟ0}��1/d� MXE�n���qsYX�'>9|r9�\\\\�=�w��P�5o���y�$L�̑��i�ft�cye��������}������l�y:E����1k-�LY�n3q�2����\\\\�u�M&:���c�#����2���Oȭ���㿈(&�J\`�R�����؁�p6k�0��,���X��\\\\����*w��M/��PK A|�R��&=org/gradle/cli/CommandLineParser$KnownOptionParserState.class�X�wU��6ͤ�K�*EqD�t��;VkE��E�+. ɐ�3uf҂�HQpCqP�![�>��u�\\\\|���I�\\\\@-V< ���g�Z�Y͓���5ͨ-4Τ�j�ת� 窬��m͵l�� Z�n����pi S�5꿗�$뻦 �b^�)��S��t��d%f���sT�CP��\`�g^�� ���t ����H�@�'�؄N�r�\\"#��^h���N�oGQ7AUߑ�t$� �YFRk�|����y�aC�@��g���pP����n'�I�<:\\\\(�=�Ě�p�����,���᝛���a����ұ<��V��8�o�ST�=�G����K��Q� ��~�q�;~�Wq��W�|����\\\\����T���۰kqS� ���'��'Q.ᖿQs�w8�Th���DL)� Gc�M�CG!O �+�m>V6�d�����hd� �F��^��w�����މ&� a�ࠑ�W�~q���p�N߽̾2BI� �7���!�?PK A$ľ���<org/gradle/cli/CommandLineParser$MissingOptionArgState.class��mO�P��w��*��LD�� �!� ·'�\`0�W�̚�o;��o���B��~?��ܶ�K˒��s~�퟿�~�Œ�r:��'I*(uZG 7�ٌ��q��eМ-�rD��_��K.]S�z�3��B��js�5]���#ņ�u�,n�V��4�\\\\�k�0��#�%�r��w�����[c�U�:�3� WZ� S��6���9��^��Rzx��Z���s�u-��˲V��;���TJ��?n��I/�GQ��w|�m.�UO��Rn�!�eC�w�&à# ֻ �@��~�+���:0��r��\`��#:L�:՞ͭ�1�𦯉��)�[�PR�2��q\\\\�U�%7�ǖڒ�#63���V��t�20�1,��K�\`<�E�����a�$�e�=y&z��a�� ������io٦ Sʞx[t���)<�L/gd�핤�=Ij$i�� ��0iOH��*���~\\"�Cj��A�Q���{�I�����gI�/),��9������ ��}k�4������ �q��Ж��g�2�\`���(L�B�~���e�6n0�)I')B�e���{a�I�㇡�;rL���v�\\\\ Q_Q�����ӕ;������0��AS�B�e4h��Ρd�v6l�o����_є�� �h8%1�+a��U��' ��PK ATK>��=org/gradle/cli/CommandLineParser$OptionAwareParserState.class�U�n�@=��q�$�6\\\\�%�)M�K�@)�p)E� E*o��Į��O� x�$ �J|��Mݒ*A./ޝ���gf퟿��PĽ8ȩ�0*w�Tz���c\\\\�� �*L+(��cVAQ�u���4�ܮ�,�dȖQ/��5̂Ѱ O�p����C�{i����\\\\����e˶�; ���\`�� CdթQ�I��h5��xƫ � ��7*\\\\X����.C�ɶg9���Z��ŵu�6�j���I���,s���]SM��j�%�} �P����녲',��4��!�E]&���8��c$�\${�]p�G�짍���o�R�NK�%�t��i��!���Ә�ЏSnbX���[XP��a � s�����L�f �+��~�a��[��f�:�~���Z�)9h��O�S������ c�s��m�q�r�� |�������F���dU���ԩ��0L�����-=ƽ���_��qk�ޥvr�l0.��ϥF��|���x��!��J�Ӛ�'v�t�!}r�O�Y�Y��,T6�$�a�|i��Z���� �̋dKTT���ȇC�(���<�C�(.��.#��젯�*�&�>Z�7D�!�eSZ2B���#����o��o+5U���c���Cݢ�{�� B��*^�v�#8G�Ni$�y6���+���1E�8�3$r�]��oPK A�%�̻�7org/gradle/cli/CommandLineParser$OptionComparator.class�TmO�P~���Q:� �� � �2@�.�,Y�d�ďe4��kI��?�/~#���ƨ_�� N6).]��}�s�=��~��� �E�%d0#����0+bN�U�J\\"E,IHs;�'\\"V8|U�Sk\\"�z6L��7�e�A(;í�i;�����-� V��n�����)��L�!�{䛎]v�G����� Wl�p˖�y!����P�~\`j�2U�6u���y����N_���z\`Q�W�k�H-�T�� ��T|�%|���4y�\`�P?�UK�j�wM���k��w����uz��-�֤��$�/0L���[3��xѪ��M�7-�O�7� �I�R�i�u��;?ڑ~�S��b@�����Z�a��B���h�Ο�\\\\��i���a+6eY�����g��љ{\\"!c /&��q� ����v�a�[�h��ǂZ�0�0 }��m j��]{���a�=�eўB�$�>��P���}�4�s2�|=ѧ��Q*t�e躣K�.@ >rd ���d$S3gH|$%�!z�p'��a����!�x���D�\\"�2{��9��� �O蹀�S�p� �Hs�wnL8�tr��I\\"��!�y�3Ⱥ2GY�v�����>i<2����<l�4!�M�{�n�V���� �� ��#f�dY��\\"�5���>�{}FC��NS��#ZO�q�ϣH�INQ�2(R�8��˦�S�<�i��� PK A�fC���8org/gradle/cli/CommandLineParser$OptionParserState.class���JAƿ�Y����4ն֨��JoJ�P����H.��$�:���ى� }�/�}��3����4�ߙ���Μ�����#�B���F��UB�Xie? ���o�}IXl)-O���4碛pf���D�F��8��K��ή�J�a2i�VX�T���4�Dd�d��Vj�(6��Ȩ����B�]�Q]��AXH5�ƞ�[�����O���&��B�T3k8��N�+q#�D�8j[�tܘ��K�Md�T�̋�W^'��ۄ��d���[�w{H������ӡ�ɯ�m���s��+a�;����@(?^�Y�J�x���\\\\a{�(��$�_��ׇ{���L |�X�uf��fs'�'�8.� ��ygX�u+���e��/;�����������0���:^�eor�[n��}�y?�\\"k�����g�PK A���E��3org/gradle/cli/CommandLineParser$OptionString.class�T�NA��z��q�ZDQ��G�Qğ kL�&(�[��rx�k�����/$�&>��qv[l�B�����|��������'�9<�E?L�Ĵ�4�B-�0��, �:4�( 1��m�;�ᮆ{ �����#�<�׬�8t��COЈ���͢���T�ݯ�RXgP+A�aXv}ge���o���L�ͽu�Bo�xˍ�U�� C� �wŠǣȡSk9kV-�Uϱlϵ*A����H񚇑�N�S�?s���?��:幘/t*�-���W�!�h�ϐ��汆 /�Tww~e��Ӭe!�rg�c���DQ�乎�OE��;McBһ���-�!��%��.��\\"�{��N'�M��zz����Y%�B65[�m�~��k�E�T�BZƓq�5�<�]/h����}LѾ�>�����M�c��G��MHx���)����PK A\`M~U�2org/gradle/cli/CommandLineParser$ParserState.class�S�o�P�N) s���97ս�&ML�f����.а.���vF�'_|����(�-�� A���G����������mdQ��C-��6�xba�B��{�I/zI�4����\\\\�jϓ���d�b�s�� ��?���4iF�^H(�*tU?'��tU�a���v/Pcg���w���9�\`2r�;$u�Ty�P��/�#}��@��3�I8��c�)O�;�B� / ��Z� �����&���Wt��i2���qf�YC!�����z�Pڕh&ߗ�P2��e��g�v�nӁ�$�$T@|�*>A��%��W|�):�T Џ3����_qI�_q3!��Ź�t��^= x�c @����C��!��:�Z_ e��Y��q�>8YM��H�E�F��w@�@9\\\\\\"��!�v�C��z��1���v񫮥x��&҃�k�$}ˌf��!�u����Tsj]�p9�9�+��1��:�*�4�*4fE�!�������./1Y��� ���?PK A�=l)&org/gradle/cli/CommandLineParser.class�Yi\`\\\\ő�J��7zz�eٲ=\`l��1���S>K6����Xz�Fψ��8B����\`�\`���d ��M�����Ͳaك=� !l��~�ޛ�����PwOwUuUu���O�{��Y�T:�j�W5�ױ�h��/>��)��s�3 ���O�� >ס� y�R�a#��|��|��1�ׄW��%G���ģc�x��S�5��E��]��%_���fF�eu���֤P�t|e�&cu�����q��8&�&���䞬��JO��|7#�P\\"t��M$(�����L8?�=���cq3֔&LM�s�sO��A0�e�AQC(���j]��Z�-um 3f��5i��f� �≦�m�kG0�JKͶh�̚�dc�u;�13c�M������0�[�1�׬�_ݸ���a��5u�֭X�(�� ^��N���1���U�&��V���QQ[٥=I�Ҩ�]��k �G���-\\\\�����Fګm�WEc����\`kجn ���V�\\"����E�9:Gw6�v������1�|�yqe�41���P<�-l҉��H(�H�[R�s�,���J��ؽc�[����-���\`,�~;��DG���|�������K�g�lloi���5M%� ��9.b�I+v�����\\"�[�FU��R�o;�R��\`��FN��3#��mL=� ��4�P�%$�l���u�� * c�Late+�r\\"n���uUC��iظ̀��J���]B\\\\� k���X5�P�j���:��)B�p(^H�i%����n Z��kn ��ݒ��_�>N���� ��&3A�32g R4��d�� Z�8?l�y�O����m'�ˆf@��h�Ռ%sƞU�u��6��3iʭ ŕ������%�p77���DL�^a�E��9͚V\\\\�EW �p� vX8�)��4iFf(M�a��}��.��l?�F�,�N@6�� 7�w�3���§�E�5�F�p J�-���f�n1�R^��:�t[���B�Y��ԙd��3���R÷���M΄A-�V�vm�ϼ�.(S�Y�n�Z�Q_;�S��[Z�x|ڜ�3�K�F�R^�9�fp�U�g �sPY�1O��/ �}��M��X k#���I�Rr ܊[ ܀ ܬF���D��-� �;��&-���i�{�OP<����1�Mڹ�t���\\\\͐׍ku��;5�nHXv��!]r1%�� � �0��Ґ�t *��1��T]Bح��t��-�씸!��ǐK�2C.�+%���ª2C�!W*�or�\\\\Mx��ղZ�m��U�3W����q�\\\\��lE,�r�Rz���[U���V�3�[r�!7(G�(Wr�|ې��jCn���*��%*��Ų!��wYX�����2�u]�4y��ӇY <'�k�P͝��%w'�t�3��lu�Y9L�ُC�'�d�R�{23$*� ��0d�\\\\/�!{�^C�/�hr��7��ܟŞkCP���Ɉ: ��\\\\lȃ���nяE��b�\`��*�ƹc�&{�>Vi%��=f ٽ�wb��eic�^�Rĉ^�Éw�w�\`��� �O�F�3<,�dn>g?�_�y2��|�����%� ��z�X�>\\"�Nd1�V�f�Y72�pLb�h1s}���6=�Jq����Ŵ�*��9���DuX�U���ǻ?���}e������[�ւeN(��q�%�B=�:��FsW����z��~�-)u+Z v{���p,�|������{���\`8�E�< �r�_n��۷�C�c^�{[܉բ�z�v� �46���<[]�k�t6SN��o��;:������ԃ�C���qֻ��[�c��\`���|ݽ��(~�zv��V�7\\\\e���\\"�z����>��L��P_�k���p�6#�+L��h�1I\`�E�4c��/�]A�in��ع��<��hw׆�ڧ0=�՗g3�Nj'\\"�@#y�Yk>nV�0=t�zi��H_�����r3� %?~u�'�\\\\����v��B�� A� ��7��o}m�h��~�� �ǡ�W���s� ��_&�%�@,y�����ő�<ހ� M��<�k�����֭�0nGRZ՞�A<[1�Q; hK�&§i13|d�7�L�]$7$�J����A�h5㡘ٚz=�����贞�_��.��q*:��'�����F��&k�m��l�oU}���������w�kr9�r�x���m>�3�y�⼃�����N� �w�n�W�})����m^Y�Ah���O �YL+,�l\\"G�����˱�����7<���7hb>�x�������i��!_p��h���� 9�Q��}(� ���a�\`���F���˜Zoe�ۋ��局����v�����}r��8i7N\\"e�K�{1�����\\\\N�IAU�[���k|6e)�������=�Lg�i��t�E��:���Rt����=(\\"�4R�A~?��(N{�,$��)��>�ȡ��)Y>gGK;��Ȯ�,J͡���%TZX֋rE\\\\ދ �O�����܍€?i.U�Mj���[�W��\\\\V� ��*�Rv��\\"uG��Y�xm��;��>,�.�����Ӈ�K�֑�l�wlfe/N��oE���'Q����b����Wb#�\`cm3�<� ��؊_�\\"�K��� ����*#\`�x��)h�btH):�Ll�&�evH'�҅.��M��^��Q�~;�9��˸T��7�C\\\\)�5���?�z9�sr��*��h���p?ۻ0��=�Q֜F� {���tw���t�c1~D�����k����U�a����!��t0�F!SE/��w����X��S��'�M��d_ø8�缁羑g���M�'��9����K �(=SX�-,�3��,-N��=��u�S�9�P�i����� ���Q��c\\"���%��p;°��s��\`q��x<����6V�����~,���z*-w�����F�G|��:%f)�XJ�X���BV4[J^ ϑ�^�l��T{���� ��p�����������g�9܅*�+�/#ߒ�Z�JNxy���*���uìR6+�|*,�&����V�U�V} 5^Ƈbi�ҕbY��Ї5������y����\\\\��$h��:4�\\"i��4��h��p�m�7����H����8���T ^��R��x 0�K%��k��A�g�鵓r7s�~��!��o_������ǜ9�\`9����_K_��$��,�+� �J;~);�܆��%�!��My�xw���#){9�%�q�G���2wR�����0 /r5�{���,�5����q�BH��\\\\����� �d^p�K��PΓ�7x�Y���+��b�܋7X:y���x�Y絲F园ɯS��-1����8g��O��{zSe� y�Nv��a��\`�aZ�x��� 5��m��C�d\\"�QL��tL�q:ɛ� e�c%,3w����]}s����S�}���~e?�2<��_��p媲>lJ��0ݩ�j���A^�i� uoQ��E������pê8�~?��oS�w/��-�Oijw�g��޶K�/����U��G�y�^�}�B�����,�ZJ��,;����;ɢ����x�b��f9�r���K�a�2�J|ߋs�=ijS�8T�PqhQn���sʃ�YQ�U�@��O�~lm.��I=o�A\`�2/-�����'a*o���}�CӑMs��wō��iV���*,�K�:&U�@�c��Hb�{V5�ky��E=�!��#�&�P�==� k�Oц?�r�]�?1�>g�A���y{8u c�a�*^����H�*�R��!�V��g��-y�h��.�#�f�N>��_�{EV43$������f�f�N�8�Ѭ����;��l��d�O�� sN����]w�a������i�� ;{���g<�Oaja� v<s�[��G�%.�X\\"���\\"�Q kGOa�X�g\\\\�p�����>�>����.a���.�=������dz����A�#�_�������;q �e�V)^���?PK A��>�&org/gradle/cli/ParsedCommandLine.class�Wiwg~F���ċ�%v�TMc[����R����8�S���)-L���T�(����.Ph١li�7 ��\`rX���;��Ɵ�����}g$Kָ1G�����}����.3�ǽ?���.�v�*��\`�!��*��΢ .��bu�f��T���,.+*�W�BM0#h�'��\\".��T=^��a�����}:�|F�kt� ����0^�7�����/�㋸$�__V�0�A�V���Ma� q������[ ͼ�1s�#+3��ɥ����/�E;����� �f2�n-C���#�2�����i�Җ�� �����U0R��Ғ�KMfr�)y��(��Q0r��*T>c�4y�Z�q���%s�H���˶��Y���h������M�-�C#�\\\\�U��08a�~.k ��*��)Cx��K� �)�LAt�\\\\г���kWY�p�#�A͙ ���� FA|���W�ݳw�/뀽�)x����V5KԶx����:ԕ|)���#�wOP�c���c�I(�V��^y���U�6K������bѴ��\\\\j������3Tp�UG(���|�V�Q��H1�M� 7S8�� �RΊ|{��Y�#۶���nQ/���5^k�Ko�u�O;=F��m,�R���h�q3�5$�bwc�LO�F�ܙm�� �����L���n\\"�����9m�G7M�h�z*gJw�r�v詔D�ճEc �Y��e�y�K�?�a{���?�՜qZ:��fy���ȌY��c��m5����� � �^Xd�k�����ޏဂ6��Y��\\"��|P�[x[�w�= �����1s�=>4�?R�c��f�U�D�O�3��8�*$c�/GW���*�S�.��5�“~�U�n�� |ɘ�_��=�0�a �4� WU\\\\�0��~��p�WL�HZϖ�:zy�py�����*��r�K�}j��c���븪�����֒[���v.��2}Ri����c9SV�U�P�P�IΝir+���9�������g�S�� ����Q��Z�y��ۇ��OB�MkI'ƠG�>�� �=�7r���W=¶~��̜�gD��1[�f(O :��6y��P=𸟳J8�J�e������2m�sQ��P0����-^^��Ц5[����y?�A�C�2?Tj�H܆����m�o\\"@1H1t��XG1r�}k�L%װC���Р�h���&�4�o!�� ;��]LHҰe(��=���Z��[]����;7d���?��k'W���o����� �A�؅속=x�5��:I�C�a��b!Z�cx�(D��p1�')�1��a���8���!�N��*�*&T���=t�hT�����_�P;�=�'��X����/����� F���Ι���bX�@�u #Bw�v�p��\\\\�}b�9�û��x?}�d����������T�}HH.���o!���s��y�V�����O��C��I�/�a$�q�a�x�A1c���x��)R_J@{�& (�+�}�?Av��3x��G�� f����97���CTE�B��\\"���]t���F��.�'���ޜ軅؜��t<�õ2�i ��1�i����_3�%����6� ;Aؓ����q��6�A-��V4Rg��Z�l�G� ����o��rN�$�g��dy�E:��+����N:$��̕��ų�xU� �'\\\\�5��B%ǻ6 Z�3�]^ᜐ��k��>�l�J� ;�k>��e�'*�6z��E�Ge�)��A�<�],;[���S;\\\\��O��r=l8>Y ��߀��^��9ي� ��NL��vcz�ͭ&@S܇��Қg\\\\�H�VvWc�� .��97�{�X�Ř�㰗G�o�� )�ȑ�,�I8�s��Q�HI 0��$Ab�s��9��{�\`_i�*^QUt� � ���������9%�<'� t�E�B^�K��r�vs?��\`��A�^EAEXP QP �dȹ�PK Ay�t�E,org/gradle/cli/ParsedCommandLineOption.class�S]O�@=ݯ�G�e�Pa�eQ���\\"�hHV1Y���awR������l���I�g��N[\`Y$�ә�{�=����?��“4�(��H#�b ���冊�$�4���-L%q[�器+��r��⾊ [�lpWA��ɶ���������(H��a1��p#-�g���,C/{����9*I� Kxs ���U�E�J�%a��:w^�u�\\"��]a�*s�<����!�I�d;�n8�jr�b �s\\\\^]�k5fU%�J��E��V�݅���=Vy������ j�;*i=z&x�� �V�Q㖧��p6K:�d�)��Kn07T@��U�.� �Ÿ �v��ICzt��]p�-)k�DN�(� �t]6Mn0�,���� ��(#�Wm��-��o�-�g�v޿��Ѱ��f0��?L'��Z��D��A�K��@�϶*���$����)���M^!�O���+v�i���Q,7_�������Z~����]�սm\\\\�(K? L�H�.:EЍ8��rZ/PdQ���>��!\\"k��~E쳟}�V�_�*bT�G;-��%����b�X��o�������������\\"��p�(=@&�_���2�w�%��^*��$�A�P�PS��� =1D:��!䉩��If�%�ޱ��n���0�5W(v��b�RD �$���\\"x�j�2D�ϧ��xr7�k> ��!��V.p�]�.��G��ӱ��D�\\\\��8\\"�y R����PK A\\\\v�B| :org/gradle/cli/ProjectPropertiesCommandLineConverter.class��KO�@��D|?Pâ���u�#Q�+�$�C;�1m�  �JW&.��(��1�D�,��9��v�o�/���[@yl汕G)��v� }FHWkw�LS����!�]�nY�7�ZK:̿cJD�����ZRy����s���V�;�H�+-��)���n�kS�#cruLX��gh|��B���j���F��Y���D��Ώ�%�L��%���񎅎*�_���?�ֈ:(\\"�<�ڄbJՍ� ��؊t�f�^*K��� ߵ� XU��V����i01�k ���p8��wZ��8T0g�?P�a�Λ�m����=���C S�s ����| �1\\\\���Z�q-}C�_�J��Eˉ�j��E+ ��w'��PK A �8=|�9org/gradle/cli/SystemPropertiesCommandLineConverter.class���J�@��ثm���j�E�5BPą�R/P�~�ӑ$&�B�JW� ��'i�A�Y�3���͜�����l� �\\"l�Y��l�E �<&� d���@���H��g�L��{:r�R�s�:C*X4NĬ����Q� ۴;hZ3a ѽ�G!]��G�v�7S\\"�5eb o}ɸG�����tFM�z�9��y���~X{()spL\`7e.�KV, �TXxɢ����fDT�E�G��P�W��Jm�h~���49A�jx��Ѱ ��s�h�� gԙ�n8��5��]�.F�Ԓ�s�9��Q��΢��*�s�/@�Ug J*�c�e+s��+1� ��$p�����6���/t-�,�;�h-�.�Z �>k�Z�PK Aorg/gradle/util/PK Aorg/gradle/util/internal/PK A����'&org/gradle/util/internal/ZipSlip.class�T[S�@��J�TĨ �� *�(ⵂ3�2�/KY�b��d+�?��/>�����(dz�B�Θ�=���}�������3�͠������q'28�l)x�v��i-Ϙ8k✾�71�C�L\\\\��\\".5c�r��W�&d �����c��T�(�s23�҂���4v.,p�1��~W�i�,c�#�0*zň/�«(�{2P\\" ����rޗ�q���/ zN*Z��% ?6�[�/�����U$���ȿ*� ���5�x��}^�r���_�=����e�D��j���4�|X� ��٬jYla/�Y8��T�n�;�/�ܿ+%��WQV2 �ih0rd��r��Y9�e������Rcv3�.���20i��k�) 70��< ��=ch�f-��-z]�0��Fgu>�-�A����!g�>fȼ��F�����v�hK�¨���:m|�����S�;�9C�ӥ�Z��NJG����B(.\\"�[9�̣�xQAA$#��+Qbh) � �\\"�i��j�-��6<���S��X��0��h��5+Z�S�8�_Y#���kBg�<��d�� �]��ΦDكtZ��E�fD5xFb�w�а��/H����W4Υ���>���'�T���$h R�����8���ė� mq� ��Nc�&� �t��Md60��-ɥ׵�M�n�v�6���u ��0�o�N���?@uǑ� tџL����(�v���piB�tj����Jg������B�G؛費 V������X�ҡ_PK A�%Ӧ�/org/gradle/wrapper/BootstrapMainStarter$1.class�R�n�@=Ӹu1���Ey�@_Iik�6�U�@.,Ru��L�!��G� �6 ���(ı ]t1ss�չ���_�x��󸳈��ᾏM|4�i��s�Z�}.���k�ތ�=e�d/c���Υ�ei�0�c� �=<�O���b��+7.P���m�B%����M� �-�wźl�6i<�Z2�93�����#��ұw�ںl h�������x8F��E��v~�ė�9�P%p�w8�.�R3�S� ѵ��Ac�+j�g�QEoN Sz��B�z������j�\\\\�:����� zQ^��oPK Ai,�$ -org/gradle/wrapper/BootstrapMainStarter.class�V�SW�sٰ,�1*���BI/�V�V�(�-m��.�!�nv�f��jﭽ<���� �%�2�ӗv����;�IIb���ٳ���]7�>��1���IF2^� C��0%c���A�0#aVF �d\\\\�{2�Ǽ�d\\\\�Uq�BNP��p]�R2\\"�!c7%|؉^|$A aQ�ʋ� .aI�~ ���ee�4��1�r����tSwN3��+ ��U� �U�䳕�\\"��E�(a��k����{��w�u��T-��.�Z��黶�����9�r���h��u4���8C�,� ���-펖64���:�n�=�n�/�w�hv�<�l#� {.'�a�nVf��ӚM����U� [��'b��0��^�SXB�D�]Î�.I���,[�X��͗ �w��$w7'nm���H��SçI��r��=���btr6���+�n�e ��:K�YP���_�_�%u��P�-q i��g���M�-{�\\\\f����I�jW˔0�\`� N���V8s��K�� �b��� ʇ���2�_t+�c�O����f�\\\\�ɧ�X�C��Cϖ�K����� ���9%�9 ,�H�X� ʩ���; �c��|�O��}�.�w��Tk�)��3|N�*Z�R�RU_�K_�k�z�3�U梾 ��\`\\\\�4�T �[�၂����l����#��+*0�>�i�X ��i�FZ$K�]�h�O&�������Vo����FW���c-�M��D�qh�ƛ�:U�T��T����;#R�Nv���R�zH$['tk=��e��&ś�o����h�8�6�ls�ܕ���P�=��֣ �e�d�,�X��: �׶�\`�Զ�l\\"�z�ϼ���N�E�/��w�ۼ�-j=𒶨���y1/ [�\\\\�f �U�e��v��S/7,��xBY|��͙ZI,<�J��G�x��&����[������ �_� Ct]b :OI ӓa�$E��$��>¶�C��w�\\\\�����o4�� Hn\\"�#RG�w� ��Nb(Utm�{��ۣ�*z����*�c�h ���#9_xW���c�h�yG�}�ը�/��C��C�A����S�s/A݇���~8�#� E�R�7q%��B��# ܤ@-8q;Dv�{K�0�*���G����c�M%�8N����M����UK��;I�1�D�� �%Ğↄ���DvN��ަ�D�����g���y|��px���#U��c���������U��]����@�}���i�P8�T�(�j�@� �1*B��� �qg)�ԗ���_:#Bu�}ә�#�z���qF=�~t 8�ɹ7��s�����'��+��Do4��ҌH�5ɜm�9��f�� W.����&�a�@��[&�x;ra�c\\"� i.�4p��C��*�3t<������̪ϗ���)(g���,Q�\`8���1o�u<^��{_T��W�^�Ŋ�ժ�{�_n����v��<���� �o�!<ꕉks�vŕ�҂�g��C+-�ĝY���}1,�U��1q�ל\`�� Vޥq��ժ��s�:���h�庯�V]�nE�ZS��|�g\\\\d�M�R���e��!���!Z�\\\\J�[ �d'̭�2c�J�&�r]qRru�J�+���8 �S�Xm����ٚ��Mx����o��r\`{.�h��-��g�T^*wS��٢ߡ��d���l�2��gPZ��U m8l�����) �A�X�F�� ���y����k�50'=�ұ�A��Zu��3�57��ĶS\\"�x����n�\\\\7�!C�T�D��M-�%:���ho-%+Ա��B�fuN�I�Q{�E�qM�%���帨v���>E���[��[�NMLݠʧ�77PPb�d�15�/N�nj3����RZl�1�eShK���|^���dS�:83��m���1t��Ȧ�1$���0��p��1��@����:X� ���������M� :��)�4�G��!�Lx���G/���6�p��I�ͩ7�x�#B_\`����8���w0�=m�u�d��C�C-��\`�I���ˡ����d�)V�\`���.�_ �7R�;!����a��إ�3�m��KH)v#�#oH��վ����VZ��N�I�r.n��{��7��!=���IbN����7\`����h a.����yD���}�����2^@�#G��e! ��YY�c�J�\\"#��#K��xY&�-/�D15��4%���%V���k�T��D������%�|� �@�ۥ��l�ܧ�g�h ��Ј��|/�7/]>(�B�_PK A���ۡ~4org/gradle/wrapper/Download$ProxyAuthenticator.class�U�sSE��M�Mn74�J�X�1I�$E��E���\`�a���ۛ�����xsc�?�3:���8>� �8�:>�W����۴���;��9��s���9����~p%G1�ᴁ>���3Q�����q���u�3U�(>�༚/t�\\"&t\\\\������zp�@+o�踪�C��nU�y����seO�l���D�\\"�ܤ��خ(���X�y��TGdz�!\\\\pK���h9r����ĚM+��k {Ix���a��z�͉��.�2��z ���H�\`�jU&����^wY��d��z��=�uN��Ż�k�s���Db�wg[%���)��}�r���wM�f��Ū��c�0��� W�2\\\\��_� Gz�{y5�2�8�\`̻5ϔW,�tlg+�2�x �9��_IE�)���� s�Xбȱ��:np,�&C_{�j�]�� V��n��+�[�q�!�n�p8��+(���!���59N\\"ɐ���pt������L2�R��8uӜ��&�d��YQ����j9$ق��$_�phvn��2é���%Q�8W���h�P�Yg�Ve��{w�m~�KTa��ZM��A����k�e��~�F!r3��{��h�����4U��)U��\\"�άݕ��ⰱD�na]x�'6�aJ�W �����RH/a���>z�Y<�nI!h�RQ'�N��4�����2[}K���<�4�@6po�V����/ia�k�:����7�H�C/f������.o���;�i�#�#k�=SÿblX�6=��G�\\"�<�Z޳��J�DI�8^I �\`�+�Xv�Bx��m%�$��,�%��{X �,�t�����9�@�- {�lt�鴝)3̾vh����'Y��I��|�}��{���s�_��s/�*�Q)��x�?�<���h~���x�Ex�q���~M���c4��Ia���KO�����,�R�,�Л���ռB45 ת\\\\��\\\\�\\"񯂠7z�u�P�^��E�e��+��CW�*�ŗ/ͥ*7��CHjV�2���i���R4�D�*�6��+ܮ�m�f��U*wx(�A�7��I�NA�f���uܣ�f����ܫpH��T�Wy�B'���y@��B���Qx��ת�K��T�U�-t��U6TRyX��#*�Qy�XUxT���Ōd[TO��ӹ�!=5���Ǣq=�9N�Tg$e\`d�t�ິ9b��Ƞn�A,����ݳ�{����P��l�{�}zcT� 7��d$6��T���L=fnգihg��o��޻+����AQ51����sUo{(�����cЮ������;�� v������ vvC�Y���L���u�20����aq�����p�pRG���I=�0���r�*w����F2��Z�i��/&�������b�fD�ܲUڌD���JC��n��P����˦v:�2ܗEb����z�����[��m�!T�Č���n#٧����A=�UOF��&:͑v�L�����}�Bh�I�W�zr�y�4S���A|ۭ��B�%� >O\\"O|Uq�0�� ��cLd��\\\\L~�Szv�1���ᔲ����:)M���+ u�݁���7�����g����<����YZI��� #Ҧ�5��j���mݐ�l?� ���7hˍ�7D�������I���.l��H̖=�p- �~\`�H�I,�����F2�G� �2�� ;���CC\\" ��h�Ʊ�h�!���qS�v�as$O�Βx#B9����i����^����Dʎ�P 26=or:�k�}�Q#�6sʃρq.�p����H�0���b�$�*f���I%�����u��6N+�O�� �1G�Oq̊��?��:3�:���*x�UOE�\\"aEQ�O7���g07x�ׂ�!;m��2֬n� �d���H�-V7+� �Z��2̑8\\\\� �/i E�[�5~͐�Y^�& ����\`fA��'ٮ'��57�+�B�qm�[� �yy+�]�SN�e�ȕH���n�9K�_�[�ǖ���*�& t<��� ��p\`�S]T�Gж����x��]�+'�r4w�+� ��U� ���x��4%�j|��؀�_�$�b����▧�}�k�¯j�����m��D�7������E S@P4�6��� �uS7qcn�n�V 0-�Zq7���P+b�T\`���o�T 7�t\\"�6�h�\`�v��>+4�д�MU!q�]V����m�N4쳫�f��jPn G')J<�\`)zd]֍�KS�KS�ꥩf�E^W��;HWE2Ip}��y�LIr%�e(-ei����>��#�v:�rM���t�o<�9,�Ǟ�: ��7���^Ss�� �'�8 � _����E����7a��Š�� ��SI5�3PU{�p�V:�����|l�]9&���ܕ� ]7��j��N;�;�z|I����)E�o�?{\\\\��cXXaYu�n~��W��&���N\\"i��<)ôo���;b��!�'A�@[����{�=�7I*.3.1���>)>����������������\`�̂����5�O��g����6>��.�Xn˳k8�W�zH�z8G�{�߼<����sb3� ������GW��V1�(Y9U��(l��ߢ�������y��NQ�;@R��8���N��@��>{�cb�F!۵?��F��4Ai3��� �#F]��xJ<��d ����fߞ��� ���53c!�)��J����!j��~G<*�I����tJ��Lh���hj ���n)+���d��$�قvAu�Og��0��-n�Gx/��0l��|e�5;��ɗ2��=���\`�Hl_|/�wic�;�, �zД��,vB�ˠE�m3�N�b�5��'Gus�VE���n�� b��<�[���Q }��m���0Ɵ� �O�?��g �>�TE�'^��{��ŃS~�v�ݒ��п����K�� 79�-����Tr�c�|F2߇փ/�E4�V����X��=(�ZT.�g� �ȞP���x����؁�X�y�\\\\c��ɐr�T����T���K����?I��Z��,�3x�%��z�����ę�c�锚V����ZR�ZJ��&j�nj�Z��RZF_���-�k�u|U�oH�<\\"%��\\\\��5w��\\\\9M>��*��� �B�[#��T\\"�� ,*�pX��K�Y>xBz�I�08� > �������TYS�|5~�q�]�w'��9�uc4�8U�m�p�C�|H%j� ��R�nZGs�(i�崞j�]���#綺���$NJd�t�� :eO��%ͣ��w�(.�,���S���&kϊ�g�}�O������rt���i�@ ���N�9��%7�E����S*mm��V�Q��E^P�M�l���C�,���� ���F*0 \`Kp��-98���� ��ҳXy\\\\nƴ�Lv3�XQ��mws���������t��8-��K�hY�ߝ��MΚZ�s���M�� �*�ryE���o�ߙ��&We5=�6�bt�O�Zo��2�˯fh���Ғ�i� Z���qZ=�x�֜���-=���V��oYU�Z;Zz�C�a�s��h��k����ZЪ�'�R7�WsK3�tt�ALU��3t��u�T�+C�ן��� ���&El8NW\\"l��Z3�&η�׎^�6��1��TSyq!��/?� ,>�ަ��S|��}�g˯�x%� �\\\\�i1�D@�殣U�#�w׃�0�m4��P\\"4_���n�(�f�N�gI�Y >5�{���H����f� �sd��� �#�Mn�Et�G7�2:�5t+7�m��V\`�>\`c��)�9M'� �\\\\Kρ���h=��K�� ��!h�\\"ze8�:����n���GH�b=��Y,� ���r@�׺��^A���@�@��w�;����S�C��z]�7zS��d ;��L\\\\,�.����JQ>�� ��\`��)V芰BoO Uc�����a{�E�*~wig��\`g���ǩc%$�h6�g~DM��O����-���1 ���@�\\\\�mn���;��E�?�~�~$�����+︉u�K��<���� RdK ���?���믅N��i2 �! �|Wg�g1SS?Fۭ�A:�̀� P�(����V��@w9��d�m�%��\\\\�j�?@J���#�ƅ�0֯� ����s5�ޥ[��(6��̶#C�t��vf�Z�.� t]���:�n1tb<���C 69��F���\\\\~�߅Ic�Q����^��1��+VF W��\\\\���)�5*2&�U\\"��8��z ���j\`BH���|��T�K�������-8�H��^�������'�Ѐ��S����G�sxp6�h�����%z�H4���ȑ���H�↉K�O诡��p-�L\`{��1�\\"�L=� IŒ�!�XH�S8�MVǘ���D�Ƴ���t.��BA�rmMJ�[:�],�!�����4�v��9���������O�Ī.r%��J[��M DŽ�,��]���8��kߟ_�PU:�]�3a���G�����\\\\�^�&a�t\\"-�E�eY����˛�8\\\\3��K tЎBN��k؁�PK A!9|�� 3org/gradle/wrapper/ExclusiveFileAccessManager.class�W�sW�Y�ګu|i�V�MNZ*;��J�lB�N�K�Ǝ[��t-���v�j��S�B[(���P\`x� 3�L�$x����0� �}�0��+9�%L=��s��ݿ����O�����t<�gZ��Y��jxNG_�pNGϨ×� �x^mME�SKA-E�H �1�� ::\`��vI�b3lIŞDIG��qu���fxJ_�~O��c�u,�J ������ _��5���ɡ� #��� SgGF�� t�_2/�Y�t�S�g9���C�S�Mǟ1��h�t��DE@�v�]��;��.��\\"�,�� �2�|��@t�-R�m�r�jiNz��-�=�\`�3�g�s��,jɎ��|v�3���.yf�,���]�X��e��BAV*�c�K���̀ 0� �ܬ��OU߲��)T=O:~vȴme��{]ԓs�d�W�䕲�-3�Q�d��E��!�C���q�] 0�E�(��;&f�*2�B5���?��^����}��虫\\\\j�L����C���l��tGuZ��5�[\\" �Mn,�r�Q�������t�1��)�,,N��@L��5|C�75|K@g�dٷ�'�hʚwL��Q���tnk�}�2�ts��ҟ&J',�VXj�t��%syN�nE>]��o3��;6���lK�q�oF3�V�B�����>%l�W �!�8$\`��� ������Dղ��3�\\"�x ���D]A��مE�U ��W����x���c�L�Q��V$��Cn�.��O#�&��A7zx� �N5@��T3��(����z��Y�4�}� ��] ҳ�4�?�E�vqݏ�<̏ ����L����N�p�8>K.���1��Dg�[A|�4n�kh�Lp�����S���ES�v\\\\�c�����~]+蘭�vvR���5dw�������=�#r�<��\\\\K��T�����8���lo�7�\`.��Ր��S� W����ĮT� U4]����~�T��7��6���v����7�BZ ��H� ҫ@'�c ���Klϓ��3�1�����c�����DQDDwp>���P�z�p}���@8B gmγ*& _$W�� ��+�k��r�}�F�A?~��(��AZ��8�����:�ư�q���8� ӛ�\\"��؅Q�c��?� z5)��qj��sDP�h� h��F�9҈����u�>�c��~��iMȈvz5�HM���� ��� ��$?b�)n�I�P�$)S������ݳ��hѠǧB����<���q���0��.Ҷ���x��d�(���WW���w@�M�߉�߭5S<�� �a�<��u�.�˟�3��Gh���G�At�=��dl�٦@]�������ys����:�m��O� � ���8x4�?PK A��,y�-org/gradle/wrapper/GradleUserHomeLookup.class�S�N�@= $v��ԔK J)$���� E�\`@\\"\\\\�@��-�sc-��g��O�N�QM��} (1����#�j�� R�\`�뛿̀i��m���P/�Q��WM:����;\\"��+) Q�g��J�ل�����zߢ�Z��a?U��ofw��YRb>��7�����~����<�0�u��\\"���!�� x�yH���hCJ�aA�K8\\"CF�G��� ^��x��<���c<�!#������x�s�����n��+��U2^�{�x ��6�ױ���x��;o���x3���o�@o�@o�a\\"��x�2މw�f+�x7��� �����@�ь���Y�q ������G%|L� �:�k +�Cz�&��w���հn�y�I��i�z���m��ٕ���2��F��Ԝ�.b���\\"�yH��l���-;��j���㶚Hhvx��;�I�?T��D]�~C*.P�)3T3�'3F gDO�Y+����.3騆�t�uSw� �U;aaJ���^�Ss���+�ﰢ�%ݺ����Ú�[���a�(�,���� ��/)�2�\\"� ��� ��oHxD�7�oaF·|�(oN����{�>��a�?��C?b��'~��g���s���_�1��W ~���a�S34�� q�>J���o%�N���ğ�!��$DuX)#ZcZNMʼ]O�P�8M�Y ا�I�l#�e����+x3+g�ח2=��r�ȅ����+i/ƌ���F�ڋ,�l�3���va9Pә��r4j\\\\����kQ^�V^X)�6bk��֮@k�N[�G��O�Zn��1�٥��^H��U�Zq��,ۤ6�T[����������m \\\\][���� =ٙ�k.������\\\\Bv�'-#�h�Tg��F\\"Z�.��tU�|���ΜQ��j�S[���dy�1o�\\\\��-�e���&��r�f���.��!�45�g�u�y˂5Bbi ��� ��RH���P(��J����$����:�Ƶ����Q֭�1��s�m�b.X ���\`�w��(��5m=��y�ue��}n6\`�h��ʢ����ڧz�m�˲�,�!���.b��x�Ʒ�6�<��FQ����m~ӝ���4-Ā����Tw��I�{(�I7^ٖ�/–|�_L��*he���g�+��!Yj� �b�I-4�|GxWN�6�[��_:m ����@���L\\"w�7�;ӳȝ��D�}���%�.�B$���o���o�DY}�$|�!�$����I�ׇ��OAz�(��<���|��I@7z��5у��tFz|������g�ei,:yp �JI��z1 i,��w/��ҸdҨ�@ m���N�Ҟ�i,�@���'Oa͗�\\"������ �����Bk�4V����ؼ&�Ι���3��4.ϐV_AMi\\\\IDi�x�W����4��C��I�z k�4ִ���h+���5��_� z^�EJjII(@nz�d�Ө8�ߙ���4��h\`}�O����2Om�ql+/&���,�z���e�- ��ֱE��A�B�0�(F;���1�՝����ЇG��1즧���>��b#��6��q�8��\\"�4��ư�qQ�=��aD<]<�Q�O���0]L�L�V��݄���=T]~�݀�� I�I�>�5�:��Z�8�T\`\\\\�K���x��{p U�O�j܊$�]�帍����R$T�i�|�$%�=�ŕ7�]��0|�$D$D�FǨ���#LTЈ�O�U�Sxb^�!�!����x�d�*Aƃ�G\\\\z��<�=�S�z諚�Z����n?��PK A��Q�{-org/gradle/wrapper/Install$InstallCheck.class��]OA��i�]�l �o��J)�[ ���M@/j��ݰ eai�n��#o��D���K/�Q�3��Ojh��̜�y�������/%<6GN���� �2-�(�q�@%� F��{�x�8 ��C��[N��t\\\\�.�s�myb[�>�ъt�����UizN�F��p����7���}�Һ��.�}�3ldϫ�^� LX<~r\\"<+�dziTG+7���ԖS�[ǻ�{�w]�as��=G��E��mZ�[�M �z���q�ǟ:u���a~2��*�m8Tq� ��W���;b�!�]|ǐ�4�}��O¦ �:ɬ� ���pɊ|,v% X0x4ڠU ���&�m��:�2iT-��l��$��5\\\\7��%&�& L���;:�Ftd�n���a����� 3�ǨM�b�ި�x�������;� �l ��'�;,� �g��L1.� ��� V�b��a�B��7�\`Hء,J����-�A���������4�G�-#� 9�0�[��I8S3�l�~���2/h������~C�>A��҅h�ו��|��1D&��� �RՀg��َ��<�É���>�ω���.���qt4��Ύw���H�T��f���E�\`��*.bZ�>}�B�PK A�݀4�- org/gradle/wrapper/Install.class�Z |\\\\U�?'3�7yy�Ҧ�Ѕ�6kӽtR�i�Ҕ4-M���$�ę7m*P�]Q�}�\\"*��(�� �(��↠�|�s��d������_z�{w9�,����<��!����N�i���*M�4� ��9N^��T�34��!��:���:E�\\"�/���t����Ɨh� ���!��ʮ�D��uzGl�-�;|��Wj|��K�f$R�m���^cV�>b&�V�)��aMݖ��g�nlټ�qՖ͍���X�y-SQӹ�N�&bƺjZ�D8�U�4�>.�b�V3���|5�/��Lӛ≮�����jv%̞+QӤ&��������Yn W������Ѷ�P>�m���5�t���I%�;�5�U��n%��͘�x�q��p� �[���Lg���\\\\�/ɑ�.��䭏wXL��1�9m��ML���fd���{z�kw�a��';��z{�2mku8i3-w�\`��à��T´��Xm�c�p�Ft\\"�hϝg*?jR���'�m)yߒ�0�w��,�f˦F,)�]��m.\\\\��%e��W�Lj�I 7�fZ|D-�� 'kr��p\\"�԰̆:|{�GޡK���mI�?�\`�=�zs>�l$�r7�a�ˍ�V[��S\`��c�����x��T�E�$3I�=��}5�N@su��Jڠ��gOm���l�d�Q�>XߴM��w8\`�6��U�1t�m�����Q8���?���?�4u��w��jpS<d�>J�B��%��ٹ� ,��a��lO�{{;� H;ѡ��HMSX�AwH��G���#��'�4�QW�d{e�Ɵ3�����wI�X��(8<[�:F��v;eFT ��T��RQh��X��աf��5莧\\\\��-X:a�ȥ=�CZ�]1�N%p��#�� %i� ���- �h%��dR<>8��,Nˎ;��:6Yf�L�vGZۇ7�,��8�����z ��\\\\N�=f$�ca�Ԃ��,.v�-*C�}5�n�,3�9zޠ?�k=J��k��AOГ}�.5��t�A�ߠ���8���^�t�AWЕ]F�k��o� ��o��y�����v����Q����; �\\"�r%D�hY[W����/�)rgs� +���U����� ������^�h� �������3�~~@�}����+L眦� ����ɹ���� ��v�m�cA3ևe ����y��t���\`'2A��EZ��d���C�2�܆�s1l�~>\`��h��Ӻ#K,�3B4+{�e(�7�N�������T��[�l ��(�w�m v�0n� ���X+���&j��͝V�ͲbAی�H�������E\\"��M�����07ؓ�c���}r���4D��РTP�pb'D{0y�l � ����@�:.�=ؙ�G�;�J�%�bn��-����B��di,P�R�ʔ3��e{�� )��L�N�c& ~�oF}4��M���Z�:F��)T�ѷ.�0�$�4�b�3���ߕ��\`@zY|Bo ��~,�Gq� l�3_����8J&ϲ%K �| T�o����H?ս2d �$og���O��O��������/�F��O�g��� ~Q��z�\\"P�_�K~���%v���1iT��S��9(�კ:9�3\\\\(;�PP��+���_�a�xr^ �ƿ1����ƿ3��������.��4�5�����(i]�(���7 ���-�kF�cj'��&�����_5��b����aD18-7�N����ˠw����w��OLs��B����F����?�3�W&�Z�i��|H��%��̡��;��|F�Yՠ��'# �S�2Mq+I՗���e��һ)��v�p�e��~bY���i��\\\\XL)s��I�Lg�u��t7S4�m�]�o��FǺ�5�%�s�6RkG-�{%�3�_zu��l Ȳ#>�z0'�qa� �* b�p��5D����@Y��kǪr�yJ�t���\`p ���'1��H{���\\\\��&�����Ў��M*.ktŐ�U]v�¶�)��O��e�c�g/��/��r��𡅓 �_��N���b;�jؕ�l��@j�S\\\\�:����%�h,kg7�_��p�g= ��L�b� R�5�����:#��ow��$+������G/���0��qe.�� �ĉNum�x$e[������D���Z�\\\\iMLjN��ԸЧ�D�t��G1�ԛ�x 5j��fj��ŋ�hZ��5��-��� ۨ?� �o�D�5�6v��%��7yx*}[&�~��&u%�☐<�bMB���-dN톬�øt ʼ�L �h��}e &�5{T���� ��B�\`�]#k�>T�Q'�mL�Ls���� %'CKb�;�--�_f�LԪh�߅�nJ�˜���� �#M\\"Z΂�n3����7x#�H(΂y$�@Y��F^�M�6��� �!bEaU�z���h3e��97��y\\\\�W��) [\\"re71ivZ�B��勞�ܴ�a9��&WQ#.����]�M�@P9�S�.����b���n*�� <�-��/��U]�~2�^EW��$�./��TP1HzkQ�$zj��}4��riU��WQ����U'| �q�C�;kh -�h-��h ]�� �&}�>C���'VO�U�z�<�,]��f?餡_Y�O֣��\\\\���ä�7����P�t�C>�� �iJkE�ȯ����~��(��;�ϓ!�rP��+h:�B'ҩ�ϵ�iY>W���:p$�?O׃���-y���n��!�t�y ݊U'� � O>����y���ޑ��ǘ3�M�O���t\\\\k�Mo�,�N�H�C��޼�hFu ��f,�{oz�*��)��3� �Z�O�����C�w����y)�:@'��=K}ž���;i�$ x�}�>��N i��N��N������i��@� �n���{������ &'@9���S�N����T�6�vbE/���O�ts�#TEž�����u15�_ 7ø�\`�6�����.خ��5�,*�J�h�E_�r��e�U���+P�F���bVLw]�4���P4� T�F�(�/���7�s3�F�/N_I��^л{�6�>�.ШD��5z�5�G�暵F�~�i�5 �!��Q��4n�)I�Q�@3_�����\\\\��y��VOU�~��O��b� ��6LU����yy� ��S͓X4�\\"�Xp��Al1� �~r_ �?GA�Ь�!�M��<��Fɫ8��S�����6TΡi:; ��^z�Ҭ�=�9�����F�;D��=�K��38H�S_��UT ��Zsэ�]��h��Īli�b\`iKk~uK+�*b��iYk �N>�7�:G�;��]T�O2��Xt����*��>���-� i=�' :�Y����*0ʓ8i�z��r��T����\`����'���]7H��k! F�7� t+�!��j1�#K,ο�N�[��)7�Q�����YJ~Pr�?���)~������9��By.F�s?���(�� �'�/]���� ��\\"Yϓ�c �|,\\\\��]E�w#�FV,�?PK A�:�o4org/gradle/wrapper/Logger.class��ko�\`���Unc��@�&s*]7��11$KH�\`�w�ʓ�����_�O�Fg� ?��x�R�5K���r��w.��??h�G �b���1TP����4w��+ͶU���]����.;\`XxfX���!R9���Ӳ��!�1,�j<8�>?4�d�ck��qǐ{�0�#�b�vtUwx�����Q;�� ��6m�!W���\\\\5���]�1,�)��@�F\\\\�s ��˵w/��'.Hq�ϰ3��:�NW�����fu���-Ce\\"��!���l�U�#�;��m\\"x�*�@o���b�w����=C���j[�$�B#�� �%q�c���I![3�̔��Jg���X�&��ov�HIFi� � Q��V�(�Iؔ��)r�� /�,��*�������ꊧP�*qw(�P�&n�_ݖ7ۛPK A�\`���8org/gradle/wrapper/PathAssembler$LocalDistribution.class�Q�J�@=������x�+�P��AA(*(��mۥ���M��RP�?J���*�/3sf�̜�}{y���,R����6�.�]�0�U�J.d�a���7<�q�/C��-�IŐޒ�L�� �M�h���ٍ��!W��8l_��:��2~)����+�q7�$u�b2�=Z�d���8b��H�ݐ�Z�Z6J��5ū�no6� �yRߡ� SK?�� ~M$_S�|a���Y�WЈ�I�V�~ϒ5�����>��p]�1��_ 1*BՂ�rCT��_q�iX�OL��Z��|-�� F��d� �S�M>W|+�<�*�>�~0T���u��h ��Y��&�㙉�B�b��5y]Ka�O���u�F~%���w��-�;� �VZG���0T\\\\�u��e/�<��x<�6�������O;����5�D\\\\�� �[�v�a�8�����>��~�֓\\"n��0��4ψxV�s!<�~��^�@?f�'\\"^ �e6_ ��^ �u�Cěn���ri\\\\5-C�ٖ�k���)�XI6M������兹���ə�����lf�����e���*�Z15G�⨀�1]3-Y�咭�8?;snbl����hȅ��\`*Ƥ^f7���TK ���e%o����q]@𔪩�ic۽�φ���E�R5e�.�c^Ε�˹.ʆ�so�o������nS.��5C�T#u^�Vϐe�4�WgQ��K�k��a�IB��Eې�wt�s�|�,X���(��i ( ��MeZf�C �m�����L�4� jE�L��%�lR�m�&es�,�е�6Ai������\\\\T�բbZ�]'S�ۆj]Oe��&�@�Ņ�r1-@��n�:��W*�>AӁ �9K�_���(: ��_U&�,E3�����@��ЫW�/M�R ��]$\`y�R��7�)x��@�[�7M�����5�?�1m��m#��\\"����F񶄯�> 'q���JH� 񈄇1-aѷ�5����] 2r�vRI�j��~�>��/I���_�l����~�w���1N������=��Ŵ_v���?J��,�/����a]@�îL1Si���,����g�Q��i�C��&e ���:kk�ZV�����R!��Vt��6�jۊ�u3±?��ɸ���nI�'�]c���M�ngo��!6�X��I5��p2J%Uͨ�]��k�:��� �39n�ۖ���Ÿ+~��BĆv��/��\\\\w�i��t�)�� ���g�U71K���p�޿-Т� Qs9z��M4'9K�L�DS^Q U����sCi����~�����K��c���kC qWp{�?6�]-hW �E���iN:X�Ђ����7�iz<�fͽ�2�j�׸ :Z��%�����ل;��jڹ�V�/�i�ˍ�+�q[.�;�<:ta�E�{�1���у�q�Y 4�w�|ntdG���S�w�Oh��fK��gg�!����x�&|�;�O;��4�� ZEA�V��6<�3�c1��X �Bvç0p#���_C O���'jO�7Z�W�5�7жT�D��*:\\"�4��i�����N6}#�|�l�u�dcSp�K=��\` {���\\"H� �#�C�O����kH:9N���9��8&(�V��>H\\"��.g����2�� ���;C (��sdɓ�(�&�X��8��¾*��p�t#���K�A7LO�.=�Ћ�a��*�c1Q�w;�z-����G�x�H��z�x�t���6п�'Rj8�u���zvK��tVG>q\\"���!�א���]>�.J}��6�$�38O�m$��1K{�=�y'��:�,8��Bȉ���c��e��%ם��Y�����A ����U1�����9:��e ���Q��u�n|�A�c ������W� ��1{I�X6�Gs�t?�'ד��KU 5��QƠ��DvQNʡqZ�u�x�F{���Ds�9\\\\Z!���];<:�S�T\\"B��o!�-��p}�[�S��)2Be��Tj�s���/�#�(�ct\`���\\\\�:�S���8t����S� ��'�)��h�PK A����| 0org/gradle/wrapper/SystemPropertiesHandler.class�V�SU�]��!,-� ��-�3��TR����%A(��.a�,�ݸٔ�W�~��L}���Ǚ��2c�W��ڱ��& $��9��s~��s�ޛ���?��\\"� �Q� ��P0�Oc(xSNޒڔ�i3 fh@ԏ99�-ż�T,H�;�X�R=.��r����~��{x_���&��c�����r|!:}mn~v�\\":�B�ԚvC �53�;�a&# 㖙u4�Y��9]���aΘ�'Գ(��Vi=g:Ɔ���V��K9#���]Q۶��͔nv�-m��ν�v^g-�*6\`Ja���#Y��\\" GAN� l�����-|,�����g+[� *�Dŧ�L�縥� |��+|��|+�Xyvy�)��'�1Mn�Bʶ6�w{/(���X,��(~> Wٹ�## I���=���(�D���WF��$v t�$�0;��/���~�*�x�B�D�V�\`� -n��|/�#�����)�����y�e�Ǥ2FIi��&�^�ʫ,=A��5��ٶ����T�m�M�fRص/}6��-Ʒ�bU �$e�g���RevX�|�3%���_ ๡~�cg5h�O�W�� -a�������.����5�T ���c��O��_� �����{�L����������P;� e���3�y��؆:�J�{�3�P�w�@����y42ES��p�~Gw�\\"03��V�;�L�M\`���q��=��4�����/��Z��>�u����\`i��N�]x�G7Y� κc�A=�#7?������ �I4�lv1�4��$ Ĩn��q��R!9K�M�-�z���9�Bԯr���W�)�5�\\"� �,����9z|�~�_=/����!�~�L�0���8�WI�H�-_���{��M F1�W�U>�� �=��������Sp�L<\`��ݖ_b�qW��PK A�=��?-org/gradle/wrapper/WrapperConfiguration.class��mOA�g����JK�|i� \\" HULCߐ-��H����&~*M$&�����3w �e��&3�3�������_���:����a�\`@E�G xL�<�2O�<%������xN�8m��P��k����3��5�� �QO��M��5�)����!�Bw�~�+� ��1��sM�(�/;��0�/�w�^����9���sܰ��� �n����Z�d,8t|�Z�kZM��l��ONl�ڍ�����iv,.�s�m���ns�� =�N��N8�u� ѽ���q$&�L*A��=HL)���BCO*A4dF r_ �� s���� �)%Ƞ 2�)�Ae�E�,�� ��$!���X� ��yw� ��y�%^}9�����3� 2�y~��Oȸ�\`;���)H��^V0�YW��^�а�;98��14���724�3��Ot K��Nj�-;ޞ�-#;�[��N3����}H�t �e��]�rbb��Aqy1yp�Ȗm�G�C���N�$��*=� 8%g�9ݲ =/a��z�62��9����u�Ȑ� N�l�=qԤ��1.aC�i���[Z:������k?�̝��\`i�af�Rݘi���z��oX4�֔���r��!v��S�F\`�N3M�-�1�z_arT��Q�5�c���!�2x��ݮ\\\\�)��&* ����ԉ^-�ޫ�cd {���Z��n�! ]��$E�锞s=�' r|˝��4g�9���yJ��� Y��E� ���n� ts@�f�J�BU�(E�2��DK����2t!cj�'-BF�Y�&�v����\\\\�v�w�����d�L��m�z���^B<��d�� �)G�Go..?�n.�LƗ�a�6��z5�K�l�q h�8Y[�#��0H M�(aɨ�-��W ��vМ$����\`Pm��ެ�?}U�b��4F��s�N����V���\\\\;��/T��,P���(�H�dHW)�(�M��5�yb-٫$E;����\\"6� ���v� o�J�V�;�6w����T �$گ���-�T|ߡ�]�y����I�XjZ]�\\"%��)Y�6�>�6i�5�~��g#�M ��;����{,�5�;����U�kUD� �u=��*���$$�)�-���^Q��I?dIe ͞P�#��1���F/Q�0��'�i?e6�!#��(莄�1��e�L�%�|�%y��,d��Kܢ\\"�|j��¡�S�Rq�m�5��U�;^�G�Q�˚h�&��}#Y܎I��7w<}�E�A��'�L�QQ�W�M��U�����ό�D��2�� }ʉx>���1COG���)7r��a�W��T��N{�R�ӓ�|88a��������AXTY����oe݂zfu����y������tR��{���:���v��:�Z��|\`G�_8檫x�8󨊣����~̕��7�:��+x��@��-I �:b�qJ޻q(�Kq6�۷�b��j &�������};dm�?J�p�E����)�@a ڦ��ŕf�hr%��Q���2&��x�g�lL�->lD�����M6�uF�g����ºߏ� C���!̣B�h�^�G��Ю �h�ϳ_F��~�;=�U����7Ӿ˳_�0�kZ��c��z8��Ivz���v����0ixUñp�,sϢf���a\\\\���s oе(�C��� B�b�j��J�%���%�@����,,V.�Z�X@3#�8����ꚑ�RM�\`:B���B�N�c�X@� x�e,��^F8���8isO�[�\`I�QfQ?��b^�� �Ϣa��� �I��t�V9gw��\\"3X�6;�kc�s��9['��_@c�p�� qvC�,bW/��<�guЁE4n\\"k�����XB���e�(�ۉr�}��NLb�n�����<�� ��pa��Kq��K���0 V�HI�8C��K���?RM��Q%ӿV��tʯ<�Z�0�hn!��{ȣ��9o(g.�nmt��rg���RH�\\"2���� �L��D�r� �.<�7�^�Mҫh���7�.@�#�}���� \\"��l�%�4�-��p��Xn�Ŷ���%�PG �2k����Yu� �2�&\\"[�rۇ����[g��~;/@��M��d�客��T��P, Ia�UOs#�M�\\\\�#\\"t[�f8�80���HyCT�!���Hs�����c��/����օ�T�UY��<��0ý�������������8��*C9����ݻm�ʌ=�HN@N��3XL�̈[�[�\\\\ mRH # SdL9�\\\\����ťl� 9O��C(�.�H']��T� ��!ٞ ތīS����]��h�DL��yW�!p 5 ���k�N�<��X�zZ*%q3a�0LQwx�|q�,8��x����?��cKQ���.-�.��\\"�c#�Lg�d �_EXƙ\`-q�-z3Ai̷�D#�7�6������^��=n*����\\"�-����PK A �AMETA-INF/PK Am�>=@?��)META-INF/MANIFEST.MFPK A�A�org/PK A �A�org/gradle/PK A�A�org/gradle/wrapper/PK APr��� -*��org/gradle/wrapper/GradleWrapperMain.classPK A��.q/3#�� gradle-wrapper-classpath.propertiesPK A)��� gradle-wrapper-parameter-names.propertiesPK A�A� org/gradle/cli/PK A��?�<S1��� org/gradle/cli/AbstractCommandLineConverter.classPK A׃��X� ;���org/gradle/cli/AbstractPropertiesCommandLineConverter.classPK A}��yGK1��4org/gradle/cli/CommandLineArgumentException.classPK A����g)���org/gradle/cli/CommandLineConverter.classPK ASf �g&��*org/gradle/cli/CommandLineOption.classPK A�튯��(��porg/gradle/cli/CommandLineParser$1.classPK A$f{K� ;��[org/gradle/cli/CommandLineParser$AfterFirstSubCommand.classPK A�D��&3��� org/gradle/cli/CommandLineParser$AfterOptions.classPK A��M�u <���#org/gradle/cli/CommandLineParser$BeforeFirstSubCommand.classPK A�*�ZM�F��H(org/gradle/cli/CommandLineParser$CaseInsensitiveStringComparator.classPK A|�R��&=���*org/gradle/cli/CommandLineParser$KnownOptionParserState.classPK A$ľ���<��$2org/gradle/cli/CommandLineParser$MissingOptionArgState.classPK ATK>��=��#5org/gradle/cli/CommandLineParser$OptionAwareParserState.classPK A�%�̻�7��(8org/gradle/cli/CommandLineParser$OptionComparator.classPK A�fC���8��8;org/gradle/cli/CommandLineParser$OptionParserState.classPK A���E��3��5=org/gradle/cli/CommandLineParser$OptionString.classPK AgAq��x=��1@org/gradle/cli/CommandLineParser$OptionStringComparator.classPK A\`M~U�2�� Corg/gradle/cli/CommandLineParser$ParserState.classPK Ap�X �k?��tEorg/gradle/cli/CommandLineParser$UnknownOptionParserState.classPK A�=l)&���Horg/gradle/cli/CommandLineParser.classPK A��>�&��[org/gradle/cli/ParsedCommandLine.classPK Ay�t�E,��corg/gradle/cli/ParsedCommandLineOption.classPK A\\\\v�B| :��9forg/gradle/cli/ProjectPropertiesCommandLineConverter.classPK A �8=|�9�� horg/gradle/cli/SystemPropertiesCommandLineConverter.classPK A�A�iorg/gradle/util/PK A�Ajorg/gradle/util/internal/PK A����'&��Ijorg/gradle/util/internal/ZipSlip.classPK A�%Ӧ�/���morg/gradle/wrapper/BootstrapMainStarter$1.classPK Ai,�$ -���oorg/gradle/wrapper/BootstrapMainStarter.classPK AhQ�}��#���torg/gradle/wrapper/Download$1.classPK Ay�[�4�A���uorg/gradle/wrapper/Download$DefaultDownloadProgressListener.classPK A���ۡ~4��mzorg/gradle/wrapper/Download$ProxyAuthenticator.classPK A�pO�)�&!��\`~org/gradle/wrapper/Download.classPK Ay�L���1��Ȑorg/gradle/wrapper/DownloadProgressListener.classPK A!9|�� 3����org/gradle/wrapper/ExclusiveFileAccessManager.classPK A��,y�-����org/gradle/wrapper/GradleUserHomeLookup.classPK A����\\"����org/gradle/wrapper/IDownload.classPK A�%�V�\\"��m�org/gradle/wrapper/Install$1.classPK A��Q�{-���org/gradle/wrapper/Install$InstallCheck.classPK A�݀4�- ��ɧorg/gradle/wrapper/Install.classPK A�:�o4��ݼorg/gradle/wrapper/Logger.classPK A�\`���8����org/gradle/wrapper/PathAssembler$LocalDistribution.classPK A��;+&��m�org/gradle/wrapper/PathAssembler.classPK A����| 0����org/gradle/wrapper/SystemPropertiesHandler.classPK A�=��?-����org/gradle/wrapper/WrapperConfiguration.classPK AG�� (����org/gradle/wrapper/WrapperExecutor.classPK77#�", "packages/api/smithy/gradle/wrapper/gradle-wrapper.properties": "distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\\\\://services.gradle.org/distributions/gradle-7.5.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists ", "packages/api/smithy/gradlew": "#!/bin/sh # # Copyright © 2015-2021 the original authors. # # Licensed under the Apache License, Version 2.0 (the \\"License\\"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an \\"AS IS\\" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ############################################################################## # # Gradle start up script for POSIX generated by Gradle. # # Important for running: # # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is # noncompliant, but you have some other compliant shell such as ksh or # bash, then to run this script, type that shell name before the whole # command line, like: # # ksh Gradle # # Busybox and similar reduced shells will NOT work, because this script # requires all of these POSIX shell features: # * functions; # * expansions «$var», «\${var}», «\${var:-default}», «\${var+SET}», # «\${var#prefix}», «\${var%suffix}», and «$( cmd )»; # * compound commands having a testable exit status, especially «case»; # * various built-in commands including «command», «set», and «ulimit». # # Important for patching: # # (2) This script targets any POSIX shell, so it avoids extensions provided # by Bash, Ksh, etc; in particular arrays are avoided. # # The \\"traditional\\" practice of packing multiple parameters into a # space-separated string is a well documented source of bugs and security # problems, so this is (mostly) avoided, by progressively accumulating # options in \\"$@\\", and eventually passing that to Java. # # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; # see the in-line comments for details. # # There are tweaks for specific operating systems such as AIX, CygWin, # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template # https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. # ############################################################################## # Attempt to set APP_HOME # Resolve links: $0 may be a link app_path=$0 # Need this for daisy-chained symlinks. while APP_HOME=\${app_path%\\"\${app_path##*/}\\"} # leaves a trailing /; empty if no leading path [ -h \\"$app_path\\" ] do ls=$( ls -ld \\"$app_path\\" ) link=\${ls#*' -> '} case $link in #( /*) app_path=$link ;; #( *) app_path=$APP_HOME$link ;; esac done APP_HOME=$( cd \\"\${APP_HOME:-./}\\" && pwd -P ) || exit APP_NAME=\\"Gradle\\" APP_BASE_NAME=\${0##*/} # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. DEFAULT_JVM_OPTS='\\"-Xmx64m\\" \\"-Xms64m\\"' # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum warn () { echo \\"$*\\" } >&2 die () { echo echo \\"$*\\" echo exit 1 } >&2 # OS specific support (must be 'true' or 'false'). cygwin=false msys=false darwin=false nonstop=false case \\"$( uname )\\" in #( CYGWIN* ) cygwin=true ;; #( Darwin* ) darwin=true ;; #( MSYS* | MINGW* ) msys=true ;; #( NONSTOP* ) nonstop=true ;; esac CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar # Determine the Java command to use to start the JVM. if [ -n \\"$JAVA_HOME\\" ] ; then if [ -x \\"$JAVA_HOME/jre/sh/java\\" ] ; then # IBM's JDK on AIX uses strange locations for the executables JAVACMD=$JAVA_HOME/jre/sh/java else JAVACMD=$JAVA_HOME/bin/java fi if [ ! -x \\"$JAVACMD\\" ] ; then die \\"ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME Please set the JAVA_HOME variable in your environment to match the location of your Java installation.\\" fi else JAVACMD=java which java >/dev/null 2>&1 || die \\"ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation.\\" fi # Increase the maximum file descriptors if we can. if ! \\"$cygwin\\" && ! \\"$darwin\\" && ! \\"$nonstop\\" ; then case $MAX_FD in #( max*) MAX_FD=$( ulimit -H -n ) || warn \\"Could not query maximum file descriptor limit\\" esac case $MAX_FD in #( '' | soft) :;; #( *) ulimit -n \\"$MAX_FD\\" || warn \\"Could not set maximum file descriptor limit to $MAX_FD\\" esac fi # Collect all arguments for the java command, stacking in reverse order: # * args from the command line # * the main class name # * -classpath # * -D...appname settings # * --module-path (only if needed) # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. # For Cygwin or MSYS, switch paths to Windows format before running java if \\"$cygwin\\" || \\"$msys\\" ; then APP_HOME=$( cygpath --path --mixed \\"$APP_HOME\\" ) CLASSPATH=$( cygpath --path --mixed \\"$CLASSPATH\\" ) JAVACMD=$( cygpath --unix \\"$JAVACMD\\" ) # Now convert the arguments - kludge to limit ourselves to /bin/sh for arg do if case $arg in #( -*) false ;; # don't mess with options #( /?*) t=\${arg#/} t=/\${t%%/*} # looks like a POSIX filepath [ -e \\"$t\\" ] ;; #( *) false ;; esac then arg=$( cygpath --path --ignore --mixed \\"$arg\\" ) fi # Roll the args list around exactly as many times as the number of # args, so each arg winds up back in the position where it started, but # possibly modified. # # NB: a \`for\` loop captures its iteration list before it begins, so # changing the positional parameters here affects neither the number of # iterations, nor the values presented in \`arg\`. shift # remove old arg set -- \\"$@\\" \\"$arg\\" # push replacement arg done fi # Collect all arguments for the java command; # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of # shell script including quotes and variable substitutions, so put them in # double quotes to make sure that they get re-expanded; and # * put everything else in single quotes, so that it's not re-expanded. set -- \\\\ \\"-Dorg.gradle.appname=$APP_BASE_NAME\\" \\\\ -classpath \\"$CLASSPATH\\" \\\\ org.gradle.wrapper.GradleWrapperMain \\\\ \\"$@\\" # Stop when \\"xargs\\" is not available. if ! command -v xargs >/dev/null 2>&1 then die \\"xargs is not available\\" fi # Use \\"xargs\\" to parse quoted args. # # With -n1 it outputs one arg per line, with the quotes and backslashes removed. # # In Bash we could simply go: # # readarray ARGS < <( xargs -n1 <<<\\"$var\\" ) && # set -- \\"\${ARGS[@]}\\" \\"$@\\" # # but POSIX shell has neither arrays nor command substitution, so instead we # post-process each arg (as a line of input to sed) to backslash-escape any # character that might be a shell metacharacter, then use eval to reverse # that process (while maintaining the separation between arguments), and wrap # the whole thing up as a single \\"set\\" statement. # # This will of course break if any of these variables contains a newline or # an unmatched quote. # eval \\"set -- $( printf '%s\\\\n' \\"$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS\\" | xargs -n1 | sed ' s~[^-[:alnum:]+,./:=@_]~\\\\\\\\&~g; ' | tr '\\\\n' ' ' )\\" '\\"$@\\"' exec \\"$JAVACMD\\" \\"$@\\" ", "packages/api/smithy/gradlew.bat": "@rem @rem Copyright 2015 the original author or authors. @rem @rem Licensed under the Apache License, Version 2.0 (the \\"License\\"); @rem you may not use this file except in compliance with the License. @rem You may obtain a copy of the License at @rem @rem https://www.apache.org/licenses/LICENSE-2.0 @rem @rem Unless required by applicable law or agreed to in writing, software @rem distributed under the License is distributed on an \\"AS IS\\" BASIS, @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem @if \\"%DEBUG%\\"==\\"\\" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @rem @rem ########################################################################## @rem Set local scope for the variables with windows NT shell if \\"%OS%\\"==\\"Windows_NT\\" setlocal set DIRNAME=%~dp0 if \\"%DIRNAME%\\"==\\"\\" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @rem Resolve any \\".\\" and \\"..\\" in APP_HOME to make it shorter. for %%i in (\\"%APP_HOME%\\") do set APP_HOME=%%~fi @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. set DEFAULT_JVM_OPTS=\\"-Xmx64m\\" \\"-Xms64m\\" @rem Find java.exe if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if %ERRORLEVEL% equ 0 goto execute echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. echo. echo Please set the JAVA_HOME variable in your environment to match the echo location of your Java installation. goto fail :findJavaFromJavaHome set JAVA_HOME=%JAVA_HOME:\\"=% set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist \\"%JAVA_EXE%\\" goto execute echo. echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% echo. echo Please set the JAVA_HOME variable in your environment to match the echo location of your Java installation. goto fail :execute @rem Setup the command line set CLASSPATH=%APP_HOME%\\\\gradle\\\\wrapper\\\\gradle-wrapper.jar @rem Execute Gradle \\"%JAVA_EXE%\\" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% \\"-Dorg.gradle.appname=%APP_BASE_NAME%\\" -classpath \\"%CLASSPATH%\\" org.gradle.wrapper.GradleWrapperMain %* :end @rem End local scope for the variables with windows NT shell if %ERRORLEVEL% equ 0 goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! set EXIT_CODE=%ERRORLEVEL% if %EXIT_CODE% equ 0 set EXIT_CODE=1 if not \\"\\"==\\"%GRADLE_EXIT_CONSOLE%\\" exit %EXIT_CODE% exit /b %EXIT_CODE% :mainEnd if \\"%OS%\\"==\\"Windows_NT\\" endlocal :omega ", "packages/api/smithy/output/openapi/build-info/smithy-build-info.json": Object { "metadata": Object {}, "operationShapeIds": Array [ "my.test.service#SayHello", ], "projection": Object { "abstract": false, "imports": Array [], "plugins": Object { "openapi": Object { "forbidGreedyLabels": true, "ignoreUnsupportedTraits": true, "service": "my.test.service#TestService", "tags": true, }, }, "transforms": Array [], }, "projectionName": "openapi", "resourceShapeIds": Array [], "serviceShapeIds": Array [ "my.test.service#TestService", ], "traitDefNames": Array [ "aws.api#arn", "aws.api#arnReference", "aws.api#clientDiscoveredEndpoint", "aws.api#clientEndpointDiscovery", "aws.api#clientEndpointDiscoveryId", "aws.api#controlPlane", "aws.api#data", "aws.api#dataPlane", "aws.api#service", "aws.api#tagEnabled", "aws.api#taggable", "aws.auth#cognitoUserPools", "aws.auth#sigv4", "aws.auth#unsignedPayload", "aws.customizations#s3UnwrappedXmlOutput", "aws.protocols#awsJson1_0", "aws.protocols#awsJson1_1", "aws.protocols#awsQuery", "aws.protocols#awsQueryCompatible", "aws.protocols#awsQueryError", "aws.protocols#ec2Query", "aws.protocols#ec2QueryName", "aws.protocols#httpChecksum", "aws.protocols#restJson1", "aws.protocols#restXml", "smithy.api#addedDefault", "smithy.api#auth", "smithy.api#authDefinition", "smithy.api#box", "smithy.api#clientOptional", "smithy.api#cors", "smithy.api#default", "smithy.api#deprecated", "smithy.api#documentation", "smithy.api#endpoint", "smithy.api#enum", "smithy.api#enumValue", "smithy.api#error", "smithy.api#eventHeader", "smithy.api#eventPayload", "smithy.api#examples", "smithy.api#externalDocumentation", "smithy.api#hostLabel", "smithy.api#http", "smithy.api#httpApiKeyAuth", "smithy.api#httpBasicAuth", "smithy.api#httpBearerAuth", "smithy.api#httpChecksumRequired", "smithy.api#httpDigestAuth", "smithy.api#httpError", "smithy.api#httpHeader", "smithy.api#httpLabel", "smithy.api#httpPayload", "smithy.api#httpPrefixHeaders", "smithy.api#httpQuery", "smithy.api#httpQueryParams", "smithy.api#httpResponseCode", "smithy.api#idempotencyToken", "smithy.api#idempotent", "smithy.api#idRef", "smithy.api#input", "smithy.api#internal", "smithy.api#jsonName", "smithy.api#length", "smithy.api#mediaType", "smithy.api#mixin", "smithy.api#nestedProperties", "smithy.api#noReplace", "smithy.api#notProperty", "smithy.api#optionalAuth", "smithy.api#output", "smithy.api#paginated", "smithy.api#pattern", "smithy.api#private", "smithy.api#property", "smithy.api#protocolDefinition", "smithy.api#range", "smithy.api#readonly", "smithy.api#recommended", "smithy.api#references", "smithy.api#required", "smithy.api#requiresLength", "smithy.api#resourceIdentifier", "smithy.api#retryable", "smithy.api#sensitive", "smithy.api#since", "smithy.api#sparse", "smithy.api#streaming", "smithy.api#suppress", "smithy.api#tags", "smithy.api#timestampFormat", "smithy.api#title", "smithy.api#trait", "smithy.api#uniqueItems", "smithy.api#unitType", "smithy.api#unstable", "smithy.api#xmlAttribute", "smithy.api#xmlFlattened", "smithy.api#xmlName", "smithy.api#xmlNamespace", ], "traitNames": Array [ "aws.protocols#restJson1", "smithy.api#authDefinition", "smithy.api#box", "smithy.api#default", "smithy.api#deprecated", "smithy.api#documentation", "smithy.api#enumValue", "smithy.api#error", "smithy.api#externalDocumentation", "smithy.api#http", "smithy.api#httpQuery", "smithy.api#idRef", "smithy.api#input", "smithy.api#internal", "smithy.api#length", "smithy.api#mixin", "smithy.api#notProperty", "smithy.api#output", "smithy.api#pattern", "smithy.api#private", "smithy.api#protocolDefinition", "smithy.api#range", "smithy.api#readonly", "smithy.api#recommended", "smithy.api#required", "smithy.api#tags", "smithy.api#trait", "smithy.api#uniqueItems", "smithy.api#unitType", "smithy.api#unstable", ], "validationEvents": Array [], "version": "1.0", }, "packages/api/smithy/output/openapi/openapi/TestService.openapi.json": Object { "components": Object { "schemas": Object { "ApiErrorResponseContent": Object { "properties": Object { "errorMessage": Object { "type": "string", }, }, "required": Array [ "errorMessage", ], "type": "object", }, "SayHelloResponseContent": Object { "properties": Object { "message": Object { "type": "string", }, }, "required": Array [ "message", ], "type": "object", }, }, }, "info": Object { "description": "A sample smithy api", "title": "TestService", "version": "1.0", }, "openapi": "3.0.2", "paths": Object { "/hello": Object { "get": Object { "operationId": "SayHello", "parameters": Array [ Object { "in": "query", "name": "name", "required": true, "schema": Object { "type": "string", }, }, ], "responses": Object { "200": Object { "content": Object { "application/json": Object { "schema": Object { "$ref": "#/components/schemas/SayHelloResponseContent", }, }, }, "description": "SayHello 200 response", }, "400": Object { "content": Object { "application/json": Object { "schema": Object { "$ref": "#/components/schemas/ApiErrorResponseContent", }, }, }, "description": "ApiError 400 response", }, }, }, }, }, }, "packages/api/smithy/output/openapi/sources/manifest": "model.json ", "packages/api/smithy/output/source/build-info/smithy-build-info.json": Object { "metadata": Object {}, "operationShapeIds": Array [ "my.test.service#SayHello", ], "projection": Object { "abstract": false, "imports": Array [], "plugins": Object {}, "transforms": Array [], }, "projectionName": "source", "resourceShapeIds": Array [], "serviceShapeIds": Array [ "my.test.service#TestService", ], "traitDefNames": Array [ "aws.api#arn", "aws.api#arnReference", "aws.api#clientDiscoveredEndpoint", "aws.api#clientEndpointDiscovery", "aws.api#clientEndpointDiscoveryId", "aws.api#controlPlane", "aws.api#data", "aws.api#dataPlane", "aws.api#service", "aws.api#tagEnabled", "aws.api#taggable", "aws.auth#cognitoUserPools", "aws.auth#sigv4", "aws.auth#unsignedPayload", "aws.customizations#s3UnwrappedXmlOutput", "aws.protocols#awsJson1_0", "aws.protocols#awsJson1_1", "aws.protocols#awsQuery", "aws.protocols#awsQueryCompatible", "aws.protocols#awsQueryError", "aws.protocols#ec2Query", "aws.protocols#ec2QueryName", "aws.protocols#httpChecksum", "aws.protocols#restJson1", "aws.protocols#restXml", "smithy.api#addedDefault", "smithy.api#auth", "smithy.api#authDefinition", "smithy.api#box", "smithy.api#clientOptional", "smithy.api#cors", "smithy.api#default", "smithy.api#deprecated", "smithy.api#documentation", "smithy.api#endpoint", "smithy.api#enum", "smithy.api#enumValue", "smithy.api#error", "smithy.api#eventHeader", "smithy.api#eventPayload", "smithy.api#examples", "smithy.api#externalDocumentation", "smithy.api#hostLabel", "smithy.api#http", "smithy.api#httpApiKeyAuth", "smithy.api#httpBasicAuth", "smithy.api#httpBearerAuth", "smithy.api#httpChecksumRequired", "smithy.api#httpDigestAuth", "smithy.api#httpError", "smithy.api#httpHeader", "smithy.api#httpLabel", "smithy.api#httpPayload", "smithy.api#httpPrefixHeaders", "smithy.api#httpQuery", "smithy.api#httpQueryParams", "smithy.api#httpResponseCode", "smithy.api#idempotencyToken", "smithy.api#idempotent", "smithy.api#idRef", "smithy.api#input", "smithy.api#internal", "smithy.api#jsonName", "smithy.api#length", "smithy.api#mediaType", "smithy.api#mixin", "smithy.api#nestedProperties", "smithy.api#noReplace", "smithy.api#notProperty", "smithy.api#optionalAuth", "smithy.api#output", "smithy.api#paginated", "smithy.api#pattern", "smithy.api#private", "smithy.api#property", "smithy.api#protocolDefinition", "smithy.api#range", "smithy.api#readonly", "smithy.api#recommended", "smithy.api#references", "smithy.api#required", "smithy.api#requiresLength", "smithy.api#resourceIdentifier", "smithy.api#retryable", "smithy.api#sensitive", "smithy.api#since", "smithy.api#sparse", "smithy.api#streaming", "smithy.api#suppress", "smithy.api#tags", "smithy.api#timestampFormat", "smithy.api#title", "smithy.api#trait", "smithy.api#uniqueItems", "smithy.api#unitType", "smithy.api#unstable", "smithy.api#xmlAttribute", "smithy.api#xmlFlattened", "smithy.api#xmlName", "smithy.api#xmlNamespace", ], "traitNames": Array [ "aws.protocols#restJson1", "smithy.api#authDefinition", "smithy.api#box", "smithy.api#default", "smithy.api#deprecated", "smithy.api#documentation", "smithy.api#enumValue", "smithy.api#error", "smithy.api#externalDocumentation", "smithy.api#http", "smithy.api#httpQuery", "smithy.api#idRef", "smithy.api#input", "smithy.api#internal", "smithy.api#length", "smithy.api#mixin", "smithy.api#notProperty", "smithy.api#output", "smithy.api#pattern", "smithy.api#private", "smithy.api#protocolDefinition", "smithy.api#range", "smithy.api#readonly", "smithy.api#recommended", "smithy.api#required", "smithy.api#tags", "smithy.api#trait", "smithy.api#uniqueItems", "smithy.api#unitType", "smithy.api#unstable", ], "validationEvents": Array [], "version": "1.0", }, "packages/api/smithy/output/source/sources/main.smithy": "$version: \\"2\\" namespace my.test.service use aws.protocols#restJson1 /// A sample smithy api @restJson1 service TestService { version: \\"1.0\\" operations: [SayHello] } @readonly @http(method: \\"GET\\", uri: \\"/hello\\") operation SayHello { input: SayHelloInput output: SayHelloOutput errors: [ApiError] } string Name string Message @input structure SayHelloInput { @httpQuery(\\"name\\") @required name: Name } @output structure SayHelloOutput { @required message: Message } @error(\\"client\\") structure ApiError { @required errorMessage: Message } ", "packages/api/smithy/output/source/sources/manifest": "main.smithy ", "packages/api/smithy/settings.gradle": "rootProject.name = '@test-my-api-smithy-build'", "packages/api/smithy/smithy-build.json": Object { "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \\"npx projen\\".", "maven": Object { "dependencies": Array [ "software.amazon.smithy:smithy-cli:1.28.0", "software.amazon.smithy:smithy-model:1.28.0", "software.amazon.smithy:smithy-openapi:1.28.0", "software.amazon.smithy:smithy-aws-traits:1.28.0", ], "repositories": Array [ Object { "url": "https://repo.maven.apache.org/maven2/", }, Object { "url": "file://~/.m2/repository", }, ], }, "projections": Object { "openapi": Object { "plugins": Object { "openapi": Object { "forbidGreedyLabels": true, "ignoreUnsupportedTraits": true, "service": "my.test.service#TestService", "tags": true, }, }, }, }, "version": "2.0", }, "packages/api/smithy/src/main/smithy/main.smithy": "$version: \\"2\\" namespace my.test.service use aws.protocols#restJson1 /// A sample smithy api @restJson1 service TestService { version: \\"1.0\\" operations: [SayHello] } @readonly @http(method: \\"GET\\", uri: \\"/hello\\") operation SayHello { input: SayHelloInput output: SayHelloOutput errors: [ApiError] } string Name string Message @input structure SayHelloInput { @httpQuery(\\"name\\") @required name: Name } @output structure SayHelloOutput { @required message: Message } @error(\\"client\\") structure ApiError { @required errorMessage: Message } ", "packages/api/src/api/api.ts": "import { OpenApiGatewayRestApi, OpenApiGatewayRestApiProps, OpenApiIntegration } from \\"@aws-prototyping-sdk/open-api-gateway\\"; import { Construct } from \\"constructs\\"; import { OperationLookup, OperationConfig } from \\"@test/my-api-typescript\\"; import * as path from \\"path\\"; import spec from \\"../spec/.parsed-spec.json\\"; export type ApiIntegrations = OperationConfig; export interface ApiProps extends Omit { readonly integrations: ApiIntegrations; } /** * Type-safe construct for the API Gateway resources defined by the spec. * You will likely not need to modify this file, and can instead extend it and define your integrations. */ export class Api extends OpenApiGatewayRestApi { constructor(scope: Construct, id: string, props: ApiProps) { super(scope, id, { ...props, integrations: props.integrations as any, spec, specPath: path.resolve(__dirname, \\"../spec/.parsed-spec.json\\"), operationLookup: OperationLookup as any, }); } } ", "packages/api/src/api/index.ts": "export * from './api'; export * from './sample-api';", "packages/api/src/api/sample-api.say-hello.ts": "import { sayHelloHandler } from \\"@test/my-api-typescript\\"; /** * An example lambda handler which uses the generated handler wrapper to manage marshalling inputs/outputs. */ export const handler = sayHelloHandler(async ({ input }) => { return { statusCode: 200, headers: { \\"Access-Control-Allow-Origin\\": \\"*\\", \\"Access-Control-Allow-Headers\\": \\"*\\", }, body: { message: \`Hello \${input.requestParameters.name}!\`, }, }; }); ", "packages/api/src/api/sample-api.ts": "import { Authorizers, Integrations } from \\"@aws-prototyping-sdk/open-api-gateway\\"; import { Construct } from \\"constructs\\"; import { Cors } from \\"aws-cdk-lib/aws-apigateway\\"; import { NodejsFunction } from \\"aws-cdk-lib/aws-lambda-nodejs\\"; import { Api } from \\"./api\\"; /** * An example of how to wire lambda handler functions to the API */ export class SampleApi extends Api { constructor(scope: Construct, id: string) { super(scope, id, { defaultAuthorizer: Authorizers.iam(), corsOptions: { allowOrigins: Cors.ALL_ORIGINS, allowMethods: Cors.ALL_METHODS, }, integrations: { sayHello: { integration: Integrations.lambda(new NodejsFunction(scope, \\"say-hello\\")), }, }, }); } } ", "packages/api/src/index.ts": "export * from \\"./api\\";", "packages/api/src/spec/.parsed-spec.json": Object { "components": Object { "schemas": Object { "ApiErrorResponseContent": Object { "properties": Object { "errorMessage": Object { "type": "string", }, }, "required": Array [ "errorMessage", ], "type": "object", }, "SayHelloResponseContent": Object { "properties": Object { "message": Object { "type": "string", }, }, "required": Array [ "message", ], "type": "object", }, }, }, "info": Object { "description": "A sample smithy api", "title": "TestService", "version": "1.0", }, "openapi": "3.0.2", "paths": Object { "/hello": Object { "get": Object { "operationId": "SayHello", "parameters": Array [ Object { "in": "query", "name": "name", "required": true, "schema": Object { "type": "string", }, }, ], "responses": Object { "200": Object { "content": Object { "application/json": Object { "schema": Object { "$ref": "#/components/schemas/SayHelloResponseContent", }, }, }, "description": "SayHello 200 response", }, "400": Object { "content": Object { "application/json": Object { "schema": Object { "$ref": "#/components/schemas/ApiErrorResponseContent", }, }, }, "description": "ApiError 400 response", }, }, }, }, }, }, "packages/api/test/api.test.ts": "import { Integrations } from \\"@aws-prototyping-sdk/open-api-gateway\\"; import { Stack } from \\"aws-cdk-lib\\"; import { Template } from \\"aws-cdk-lib/assertions\\"; import { Code, Function, Runtime } from \\"aws-cdk-lib/aws-lambda\\"; import { OperationLookup } from \\"@test/my-api-typescript\\"; import { Api } from \\"../src/api\\"; /** * A simple test to ensure the api construct synthesizes correctly */ describe(\\"Api\\", () => { it(\\"should synthesize\\", () => { const stack = new Stack(); new Api(stack, \\"ApiTest\\", { // Create a dummy integration for every operation defined in the api integrations: Object.fromEntries(Object.keys(OperationLookup).map((operation) => [operation, { integration: Integrations.lambda(new Function(stack, \`\${operation}Lambda\`, { code: Code.fromInline(\\"test\\"), handler: \\"test\\", runtime: Runtime.NODEJS_14_X, })), }])) as any, }); const template = Template.fromStack(stack); expect(template.toJSON()).toMatchSnapshot(); }); }); ", "packages/api/tsconfig.dev.json": Object { "compilerOptions": Object { "alwaysStrict": true, "declaration": true, "esModuleInterop": true, "experimentalDecorators": true, "inlineSourceMap": true, "inlineSources": true, "lib": Array [ "dom", "es2019", ], "module": "CommonJS", "noEmitOnError": false, "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitReturns": true, "noImplicitThis": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "strict": true, "strictNullChecks": true, "strictPropertyInitialization": true, "stripInternal": true, "target": "ES2019", }, "exclude": Array [ "node_modules", ], "include": Array [ ".projenrc.js", "src/**/*.ts", "test/**/*.ts", ], }, "packages/api/tsconfig.json": Object { "compilerOptions": Object { "alwaysStrict": true, "declaration": true, "esModuleInterop": true, "experimentalDecorators": true, "inlineSourceMap": true, "inlineSources": true, "lib": Array [ "dom", "es2019", ], "module": "CommonJS", "noEmitOnError": false, "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitReturns": true, "noImplicitThis": true, "noUnusedLocals": true, "noUnusedParameters": true, "outDir": "lib", "resolveJsonModule": true, "rootDir": "src", "strict": true, "strictNullChecks": true, "strictPropertyInitialization": true, "stripInternal": true, "target": "ES2019", }, "exclude": Array [], "include": Array [ "src/**/*.ts", "src/**/*.json", ], }, "tsconfig.dev.json": Object { "compilerOptions": Object { "alwaysStrict": true, "declaration": true, "esModuleInterop": true, "experimentalDecorators": true, "inlineSourceMap": true, "inlineSources": true, "lib": Array [ "es2019", ], "module": "CommonJS", "noEmitOnError": false, "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitReturns": true, "noImplicitThis": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "rootDir": ".", "strict": true, "strictNullChecks": true, "strictPropertyInitialization": true, "stripInternal": true, "target": "ES2019", }, "exclude": Array [ "node_modules", ], "include": Array [ ".projenrc.js", "src/**/*.ts", "test/**/*.ts", "**/*.ts", ".projenrc.ts", "projenrc/**/*.ts", ], }, "tsconfig.json": Object { "compilerOptions": Object { "alwaysStrict": true, "declaration": true, "esModuleInterop": true, "experimentalDecorators": true, "inlineSourceMap": true, "inlineSources": true, "lib": Array [ "es2019", ], "module": "CommonJS", "noEmitOnError": false, "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitReturns": true, "noImplicitThis": true, "noUnusedLocals": true, "noUnusedParameters": true, "outDir": "lib", "resolveJsonModule": true, "rootDir": ".", "strict": true, "strictNullChecks": true, "strictPropertyInitialization": true, "stripInternal": true, "target": "ES2019", }, "exclude": Array [], "include": Array [ "src/**/*.ts", "**/*.ts", ], }, } `;