gitextract_sh6w41v4/ ├── .circleci/ │ └── config.yml ├── .commitlintrc.json ├── .eslintrc.js ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .release-it.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── index.ts ├── jest.json ├── lib/ │ ├── adapter/ │ │ ├── azure-adapter.ts │ │ ├── azure-reply.ts │ │ ├── azure-request.ts │ │ └── index.ts │ ├── azure-http.adapter.ts │ ├── index.ts │ └── router/ │ ├── azure-http.router.ts │ └── index.ts ├── package.json ├── renovate.json ├── schematics/ │ ├── collection.json │ └── install/ │ ├── files/ │ │ ├── project/ │ │ │ ├── .funcignore │ │ │ ├── __project__/ │ │ │ │ ├── function.json │ │ │ │ ├── index.ts │ │ │ │ └── webpack.config.js │ │ │ ├── __sourceRoot__/ │ │ │ │ └── main.azure.ts │ │ │ ├── host.json │ │ │ ├── local.settings.json │ │ │ └── proxies.json │ │ └── root/ │ │ ├── .funcignore │ │ ├── __rootDir__/ │ │ │ └── main.azure.ts │ │ ├── host.json │ │ ├── local.settings.json │ │ ├── main/ │ │ │ ├── function.json │ │ │ └── index.ts │ │ └── proxies.json │ ├── index.test.ts │ ├── index.ts │ ├── schema.json │ └── schema.ts ├── tsconfig.json └── tsconfig.schematics.json