├── .eslintignore ├── .eslintrc.json ├── .funcignore ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── daily.yml │ ├── deploy.yml │ └── test.yml ├── .gitignore ├── .knip.jsonc ├── .npmignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── apollo.config.js ├── docs ├── dt-mergebot-lifecycle.svg ├── how-it-works.md └── policy.md ├── host.json ├── local.settings.json ├── package.json ├── pnpm-lock.yaml ├── src ├── _tests │ ├── cachedQueries.json │ ├── discussions.test.ts │ ├── fixturedActions.test.ts │ ├── fixtures │ │ ├── 38979 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 43136 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _notes.txt │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 43144 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _notes.txt │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 43151 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _notes.txt │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 43160 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _notes.txt │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 43175 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _notes.txt │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 43235 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _notes.txt │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 43314 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 43695 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 43960 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44105 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44256 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44267 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44282 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44288 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44290 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44299 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44316 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44343 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44402 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44411 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44437 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44439 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44631 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44857 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 45137 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 45627 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 45836 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 45884 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 45888 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 45890 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 45946 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 45982 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 45999 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 46008 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 46019 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 46120 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 46191 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 46196 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 46279 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 46804 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 46879 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 47017 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 48216 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 48236 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 48708 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 48945 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 49417 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 49548 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 49575 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 49841 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 50429 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 50443 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 51338 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 52579 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 52848 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 53121 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 55035 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 55210 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 55508 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 55512 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 55741 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 58632 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 58764 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 59628 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 66742 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 66757 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 66979 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 67090 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 68381 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 68386 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 68510 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 68511 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 68512 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 68772 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 68908 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 69589 │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 43695-duplicate-comment │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 43695-post-review │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 43960-post-close │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44299-with-files │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44343-pending-travis │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44343-pre-travis │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44424-1-travis-instantly-finished │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44424-2-after-travis-second │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44989-14days │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44989-32days │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44989-3days │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 44989-7days │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 47017-blessed-and-one-owner │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 47017-blessed-and-two-owner │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 47017-blessed │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 48652-merge-offer │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 48652-prereq │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 48652-retract-merge-offer-and-prerequest │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ ├── 48652-retract-merge-offer │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ │ └── 52579-edits-infra │ │ │ ├── _downloads.json │ │ │ ├── _files.json │ │ │ ├── _response.json │ │ │ ├── derived.json │ │ │ ├── mutations.json │ │ │ └── result.json │ └── testEnvironment.js ├── basic.ts ├── commands │ ├── create-fixture.ts │ ├── update-all-fixtures.ts │ └── update-test-data.ts ├── comments.ts ├── compute-pr-actions.ts ├── discussions.ts ├── emoji.ts ├── execute-pr-actions.ts ├── functions │ ├── api.ts │ ├── discussions-trigger.ts │ ├── httpTrigger.ts │ ├── index.ts │ └── pr-trigger.ts ├── graphql-client.ts ├── pr-info.ts ├── queries │ ├── SHA1-to-PR-query.ts │ ├── all-open-prs-query.ts │ ├── card-id-to-pr-query.ts │ ├── file-query.ts │ ├── label-columns-queries.ts │ ├── pr-query.ts │ ├── projectboard-cards.ts │ └── schema │ │ ├── CardIdToPr.ts │ │ ├── GetAllOpenPRsAndCardIDs.ts │ │ ├── GetFileContent.ts │ │ ├── GetLabels.ts │ │ ├── GetPRForSHA1.ts │ │ ├── GetProjectBoardCards.ts │ │ ├── GetProjectColumns.ts │ │ ├── PR.ts │ │ ├── PRFiles.ts │ │ └── graphql-global-types.ts ├── run.ts ├── scripts │ └── updateJSONFixtures.ts ├── side-effects │ └── merge-codeowner-prs.ts ├── types │ └── discussions.d.ts ├── urls.ts └── util │ ├── cachedQueries.ts │ ├── comment.ts │ ├── fetchFile.ts │ ├── io.ts │ ├── npm.ts │ ├── reply.ts │ ├── util.ts │ └── verify.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /src/queries/schema/ 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/.funcignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/daily.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/.github/workflows/daily.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/.gitignore -------------------------------------------------------------------------------- /.knip.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/.knip.jsonc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/README.md -------------------------------------------------------------------------------- /apollo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/apollo.config.js -------------------------------------------------------------------------------- /docs/dt-mergebot-lifecycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/docs/dt-mergebot-lifecycle.svg -------------------------------------------------------------------------------- /docs/how-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/docs/how-it-works.md -------------------------------------------------------------------------------- /docs/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/docs/policy.md -------------------------------------------------------------------------------- /host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/host.json -------------------------------------------------------------------------------- /local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/local.settings.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/_tests/cachedQueries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/cachedQueries.json -------------------------------------------------------------------------------- /src/_tests/discussions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/discussions.test.ts -------------------------------------------------------------------------------- /src/_tests/fixturedActions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixturedActions.test.ts -------------------------------------------------------------------------------- /src/_tests/fixtures/38979/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "es-abstract": 8537567 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/38979/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/38979/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/38979/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/38979/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/38979/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/38979/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/38979/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/38979/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/38979/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/38979/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43136/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "estree": 8537567 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/43136/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43136/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43136/_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43136/_notes.txt -------------------------------------------------------------------------------- /src/_tests/fixtures/43136/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43136/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43136/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43136/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43136/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43136/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43136/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43136/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43144/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "mailcheck": 10455 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/43144/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43144/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43144/_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43144/_notes.txt -------------------------------------------------------------------------------- /src/_tests/fixtures/43144/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43144/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43144/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43144/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43144/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43144/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43144/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43144/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43151/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "gaze": 197887 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/43151/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43151/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43151/_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43151/_notes.txt -------------------------------------------------------------------------------- /src/_tests/fixtures/43151/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43151/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43151/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43151/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43151/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43151/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43151/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43151/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43160/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "dagre": 119291 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/43160/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43160/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43160/_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43160/_notes.txt -------------------------------------------------------------------------------- /src/_tests/fixtures/43160/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43160/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43160/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43160/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43160/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43160/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43160/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43160/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43175/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "chrome": 298025 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/43175/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43175/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43175/_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43175/_notes.txt -------------------------------------------------------------------------------- /src/_tests/fixtures/43175/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43175/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43175/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43175/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43175/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43175/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43175/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43175/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43235/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "arcgis-js-api": 30242 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/43235/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43235/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43235/_notes.txt: -------------------------------------------------------------------------------- 1 | Looks good, waiting on feedback from a reviewer 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/43235/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43235/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43235/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43235/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43235/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43235/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43235/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43235/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43314/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "carbon__icon-helpers": 1036 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/43314/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43314/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43314/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43314/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43314/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43314/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43314/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43314/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43314/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43314/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695-duplicate-comment/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695-duplicate-comment/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695-duplicate-comment/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695-duplicate-comment/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695-duplicate-comment/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695-duplicate-comment/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695-duplicate-comment/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695-duplicate-comment/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695-duplicate-comment/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695-duplicate-comment/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695-duplicate-comment/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695-duplicate-comment/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695-post-review/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695-post-review/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695-post-review/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695-post-review/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695-post-review/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695-post-review/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695-post-review/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695-post-review/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695-post-review/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695-post-review/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695-post-review/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695-post-review/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43695/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43695/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43960-post-close/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/43960-post-close/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43960-post-close/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43960-post-close/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43960-post-close/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43960-post-close/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43960-post-close/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43960-post-close/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43960-post-close/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43960-post-close/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43960-post-close/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43960/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "supertest": 2236866 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/43960/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43960/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43960/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43960/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43960/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43960/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43960/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43960/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/43960/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/43960/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44105/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44105/_files.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44105/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44105/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44105/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44105/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44105/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44105/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44105/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44105/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44256/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44256/_files.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44256/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44256/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44256/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44256/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44256/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44256/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44256/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44256/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44267/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "intercom-client": 49986 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44267/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44267/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44267/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44267/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44267/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44267/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44267/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44267/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44267/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44267/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44282/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "benchmark": 97099 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44282/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44282/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44282/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44282/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44282/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44282/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44282/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44282/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44282/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44282/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44288/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "react-bootstrap-table2-paginator": 8976 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44288/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44288/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44288/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44288/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44288/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44288/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44288/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44288/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44288/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44288/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44290/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44290/_files.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44290/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44290/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44290/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44290/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44290/mutations.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44290/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44290/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44299-with-files/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44299-with-files/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44299-with-files/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44299-with-files/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44299-with-files/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44299-with-files/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44299-with-files/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44299-with-files/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44299-with-files/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44299-with-files/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44299-with-files/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44299-with-files/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44299/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44299/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44299/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44299/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44299/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44299/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44299/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44299/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44299/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44299/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44299/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44299/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44316/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "vimeo": 3530 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44316/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44316/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44316/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44316/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44316/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44316/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44316/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44316/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44316/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44316/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343-pending-travis/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplify": 2766 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44343-pending-travis/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343-pending-travis/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343-pending-travis/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343-pending-travis/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343-pending-travis/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343-pending-travis/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343-pending-travis/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343-pending-travis/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343-pending-travis/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343-pending-travis/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343-pre-travis/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplify": 2766 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44343-pre-travis/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343-pre-travis/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343-pre-travis/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343-pre-travis/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343-pre-travis/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343-pre-travis/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343-pre-travis/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343-pre-travis/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343-pre-travis/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343-pre-travis/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplify": 2766 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44343/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44343/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44343/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44402/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44402/_files.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44402/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44402/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44402/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44402/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44402/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44402/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44402/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44402/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44411/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "jest-image-snapshot": 146509 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44411/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44411/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44411/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44411/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44411/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44411/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44411/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44411/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44411/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44411/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44424-1-travis-instantly-finished/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "openfin": 9067 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44424-1-travis-instantly-finished/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44424-1-travis-instantly-finished/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44424-1-travis-instantly-finished/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44424-1-travis-instantly-finished/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44424-1-travis-instantly-finished/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44424-1-travis-instantly-finished/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44424-1-travis-instantly-finished/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44424-1-travis-instantly-finished/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44424-1-travis-instantly-finished/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44424-1-travis-instantly-finished/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44424-2-after-travis-second/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "openfin": 9067 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44424-2-after-travis-second/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44424-2-after-travis-second/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44424-2-after-travis-second/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44424-2-after-travis-second/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44424-2-after-travis-second/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44424-2-after-travis-second/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44424-2-after-travis-second/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44424-2-after-travis-second/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44424-2-after-travis-second/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44424-2-after-travis-second/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44437/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "prompts": 539890 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44437/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44437/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44437/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44437/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44437/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44437/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44437/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44437/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44437/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44437/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44439/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "detect-port": 58143 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44439/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44439/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44439/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44439/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44439/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44439/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44439/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44439/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44439/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44439/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44631/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "kefir": 12315 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44631/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44631/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44631/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44631/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44631/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44631/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44631/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44631/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44631/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44631/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44857/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "node": 129373332 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44857/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44857/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44857/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44857/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44857/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44857/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44857/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44857/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44857/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44857/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-14days/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "ramda": 1199334 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-14days/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-14days/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-14days/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-14days/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-14days/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-14days/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-14days/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-14days/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-14days/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-14days/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-32days/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "ramda": 1199334 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-32days/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-32days/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-32days/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-32days/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-32days/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-32days/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-32days/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-32days/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-32days/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-32days/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-3days/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "ramda": 1199334 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-3days/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-3days/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-3days/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-3days/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-3days/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-3days/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-3days/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-3days/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-3days/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-3days/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-7days/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "ramda": 1199334 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-7days/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-7days/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-7days/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-7days/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-7days/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-7days/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-7days/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-7days/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/44989-7days/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/44989-7days/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45137/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "mongodb": 2181206 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/45137/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45137/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45137/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45137/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45137/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45137/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45137/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45137/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45137/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45137/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45627/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "webpack": 11793552 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/45627/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45627/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45627/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45627/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45627/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45627/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45627/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45627/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45627/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45627/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45836/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45836/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45836/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45836/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45836/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45836/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45836/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45836/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45836/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45836/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45836/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45836/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45884/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "cytoscape": 45065 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/45884/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45884/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45884/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45884/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45884/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45884/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45884/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45884/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45884/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45884/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45888/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "mailgun-js": 95401 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/45888/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45888/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45888/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45888/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45888/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45888/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45888/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45888/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45888/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45888/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45890/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "greek-utils": 0 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/45890/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45890/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45890/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45890/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45890/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45890/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45890/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45890/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45890/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45890/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45946/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "asynciterator": 1614 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/45946/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45946/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45946/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45946/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45946/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45946/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45946/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45946/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45946/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45946/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45982/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "arcgis-js-api": 32357 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/45982/_files.json: -------------------------------------------------------------------------------- 1 | { 2 | "master:types/arcgis-js-api/index.d.ts": "" 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/45982/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45982/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45982/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45982/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45982/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45982/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45982/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45982/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45999/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "react": 26120073 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/45999/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45999/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45999/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45999/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45999/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45999/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45999/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45999/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/45999/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/45999/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46008/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "p5": 3015 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/46008/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46008/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46008/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46008/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46008/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46008/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46008/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46008/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46008/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46008/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46019/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "is-secret": 0 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/46019/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46019/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46019/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46019/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46019/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46019/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46019/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46019/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46019/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46019/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46120/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "underscore": 2169562 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/46120/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46120/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46120/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46120/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46120/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46120/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46120/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46120/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46120/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46120/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46191/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "apollo-upload-client": 198332 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/46191/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46191/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46191/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46191/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46191/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46191/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46191/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46191/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46191/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46191/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46196/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "date-arithmetic": 7590 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/46196/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46196/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46196/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46196/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46196/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46196/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46196/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46196/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46196/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46196/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46279/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "phoenix_live_view": 1639 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/46279/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46279/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46279/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46279/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46279/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46279/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46279/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46279/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46279/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46279/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46804/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "react-d3-graph": 2566 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/46804/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46804/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46804/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46804/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46804/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46804/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46804/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46804/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46804/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46804/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46879/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "react-scroll": 1234567 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/46879/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46879/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46879/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46879/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46879/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46879/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46879/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46879/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/46879/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/46879/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed-and-one-owner/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed-and-one-owner/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed-and-one-owner/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed-and-one-owner/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed-and-one-owner/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed-and-one-owner/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed-and-one-owner/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed-and-one-owner/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed-and-one-owner/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed-and-one-owner/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed-and-one-owner/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed-and-one-owner/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed-and-two-owner/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed-and-two-owner/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed-and-two-owner/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed-and-two-owner/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed-and-two-owner/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed-and-two-owner/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed-and-two-owner/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed-and-two-owner/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed-and-two-owner/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed-and-two-owner/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed-and-two-owner/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed-and-two-owner/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017-blessed/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017-blessed/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/47017/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/47017/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48216/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48216/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48216/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48216/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48216/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48216/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48216/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48216/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48216/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48216/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48216/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48216/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48236/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48236/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48236/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48236/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48236/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48236/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48236/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48236/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48236/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48236/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48236/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48236/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-merge-offer/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-merge-offer/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-merge-offer/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-merge-offer/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-merge-offer/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-merge-offer/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-merge-offer/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-merge-offer/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-merge-offer/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-merge-offer/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-merge-offer/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-prereq/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-prereq/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-prereq/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-prereq/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-prereq/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-prereq/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-prereq/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-prereq/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-prereq/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-prereq/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-prereq/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-retract-merge-offer-and-prerequest/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-retract-merge-offer-and-prerequest/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-retract-merge-offer-and-prerequest/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-retract-merge-offer-and-prerequest/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-retract-merge-offer-and-prerequest/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-retract-merge-offer-and-prerequest/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-retract-merge-offer-and-prerequest/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-retract-merge-offer-and-prerequest/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-retract-merge-offer-and-prerequest/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-retract-merge-offer-and-prerequest/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-retract-merge-offer-and-prerequest/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-retract-merge-offer/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-retract-merge-offer/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-retract-merge-offer/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-retract-merge-offer/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-retract-merge-offer/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-retract-merge-offer/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-retract-merge-offer/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-retract-merge-offer/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-retract-merge-offer/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48652-retract-merge-offer/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48652-retract-merge-offer/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48708/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "jquery": 5540159 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/48708/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48708/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48708/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48708/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48708/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48708/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48708/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48708/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48708/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48708/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48945/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "gapi.client.calendar": 2325 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/48945/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48945/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48945/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48945/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48945/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48945/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48945/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48945/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/48945/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/48945/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49417/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/49417/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49417/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49417/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49417/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49417/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49417/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49417/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49417/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49417/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49417/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49548/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "gulp-sourcemaps": 125190 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/49548/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49548/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49548/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49548/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49548/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49548/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49548/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49548/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49548/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49548/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49575/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/49575/_files.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/49575/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49575/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49575/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49575/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49575/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49575/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49575/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49575/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49841/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/49841/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49841/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49841/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49841/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49841/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49841/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49841/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49841/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/49841/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/49841/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/50429/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "omise-js": 0 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/50429/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/50429/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/50429/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/50429/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/50429/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/50429/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/50429/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/50429/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/50429/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/50429/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/50443/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/50443/_files.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/50443/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/50443/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/50443/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/50443/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/50443/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/50443/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/50443/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/50443/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/51338/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "koa": 5708514 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/51338/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/51338/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/51338/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/51338/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/51338/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/51338/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/51338/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/51338/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/51338/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/51338/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52579-edits-infra/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "vertx__eventbus-bridge-client.js": 0 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/52579-edits-infra/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52579-edits-infra/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52579-edits-infra/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52579-edits-infra/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52579-edits-infra/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52579-edits-infra/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52579-edits-infra/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52579-edits-infra/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52579-edits-infra/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52579-edits-infra/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52579/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "vertx__eventbus-bridge-client.js": 0 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/52579/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52579/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52579/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52579/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52579/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52579/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52579/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52579/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52579/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52579/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52848/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/52848/_files.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/52848/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52848/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52848/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52848/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52848/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52848/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/52848/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/52848/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/53121/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "mathjs": 498592 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/53121/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/53121/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/53121/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/53121/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/53121/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/53121/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/53121/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/53121/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/53121/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/53121/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55035/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "jsreport-core": 5044 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/55035/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55035/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55035/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55035/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55035/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55035/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55035/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55035/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55035/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55035/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55210/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "xald-parse-sdk": 0 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/55210/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55210/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55210/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55210/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55210/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55210/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55210/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55210/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55210/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55210/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55508/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "chrome": 702255 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/55508/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55508/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55508/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55508/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55508/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55508/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55508/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55508/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55508/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55508/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55512/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "react-datepicker": 1437773 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/55512/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55512/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55512/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55512/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55512/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55512/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55512/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55512/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55512/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55512/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55741/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "ax": 0 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/55741/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55741/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55741/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55741/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55741/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55741/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55741/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55741/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/55741/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/55741/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/58632/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/58632/_files.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/58632/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/58632/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/58632/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/58632/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/58632/mutations.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/58632/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/58632/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/58764/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/58764/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/58764/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/58764/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/58764/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/58764/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/58764/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/58764/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/58764/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/58764/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/58764/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/58764/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/59628/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "twemoji": 242870 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/59628/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/59628/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/59628/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/59628/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/59628/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/59628/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/59628/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/59628/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/59628/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/59628/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66742/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "twine-sugarcube": 393 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/66742/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66742/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66742/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66742/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66742/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66742/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66742/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66742/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66742/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66742/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66757/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "react-table": 3928231 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/66757/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66757/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66757/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66757/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66757/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66757/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66757/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66757/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66757/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66757/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66979/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "react-blessed": 267 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/66979/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66979/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66979/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66979/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66979/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66979/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66979/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66979/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/66979/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/66979/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/67090/_downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/67090/_downloads.json -------------------------------------------------------------------------------- /src/_tests/fixtures/67090/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/67090/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/67090/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/67090/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/67090/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/67090/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/67090/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/67090/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/67090/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/67090/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68381/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "express-serve-static-core": 72913989 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/68381/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68381/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68381/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68381/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68381/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68381/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68381/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68381/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68381/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68381/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68386/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/68386/_files.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/68386/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68386/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68386/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68386/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68386/mutations.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/68386/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68386/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68510/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/68510/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68510/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68510/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68510/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68510/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68510/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68510/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68510/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68510/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68510/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68511/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/68511/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68511/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68511/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68511/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68511/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68511/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68511/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68511/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68511/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68511/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68512/_downloads.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/_tests/fixtures/68512/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68512/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68512/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68512/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68512/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68512/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68512/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68512/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68512/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68512/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68772/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "relationship.js": 21 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/68772/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68772/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68772/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68772/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68772/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68772/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68772/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68772/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68772/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68772/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68908/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "node": 449699745 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/68908/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68908/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68908/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68908/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68908/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68908/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68908/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68908/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/68908/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/68908/result.json -------------------------------------------------------------------------------- /src/_tests/fixtures/69589/_downloads.json: -------------------------------------------------------------------------------- 1 | { 2 | "readable-stream": 5070527 3 | } 4 | -------------------------------------------------------------------------------- /src/_tests/fixtures/69589/_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/69589/_files.json -------------------------------------------------------------------------------- /src/_tests/fixtures/69589/_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/69589/_response.json -------------------------------------------------------------------------------- /src/_tests/fixtures/69589/derived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/69589/derived.json -------------------------------------------------------------------------------- /src/_tests/fixtures/69589/mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/69589/mutations.json -------------------------------------------------------------------------------- /src/_tests/fixtures/69589/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/fixtures/69589/result.json -------------------------------------------------------------------------------- /src/_tests/testEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/_tests/testEnvironment.js -------------------------------------------------------------------------------- /src/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/basic.ts -------------------------------------------------------------------------------- /src/commands/create-fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/commands/create-fixture.ts -------------------------------------------------------------------------------- /src/commands/update-all-fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/commands/update-all-fixtures.ts -------------------------------------------------------------------------------- /src/commands/update-test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/commands/update-test-data.ts -------------------------------------------------------------------------------- /src/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/comments.ts -------------------------------------------------------------------------------- /src/compute-pr-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/compute-pr-actions.ts -------------------------------------------------------------------------------- /src/discussions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/discussions.ts -------------------------------------------------------------------------------- /src/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/emoji.ts -------------------------------------------------------------------------------- /src/execute-pr-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/execute-pr-actions.ts -------------------------------------------------------------------------------- /src/functions/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/functions/api.ts -------------------------------------------------------------------------------- /src/functions/discussions-trigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/functions/discussions-trigger.ts -------------------------------------------------------------------------------- /src/functions/httpTrigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/functions/httpTrigger.ts -------------------------------------------------------------------------------- /src/functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/functions/index.ts -------------------------------------------------------------------------------- /src/functions/pr-trigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/functions/pr-trigger.ts -------------------------------------------------------------------------------- /src/graphql-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/graphql-client.ts -------------------------------------------------------------------------------- /src/pr-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/pr-info.ts -------------------------------------------------------------------------------- /src/queries/SHA1-to-PR-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/SHA1-to-PR-query.ts -------------------------------------------------------------------------------- /src/queries/all-open-prs-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/all-open-prs-query.ts -------------------------------------------------------------------------------- /src/queries/card-id-to-pr-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/card-id-to-pr-query.ts -------------------------------------------------------------------------------- /src/queries/file-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/file-query.ts -------------------------------------------------------------------------------- /src/queries/label-columns-queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/label-columns-queries.ts -------------------------------------------------------------------------------- /src/queries/pr-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/pr-query.ts -------------------------------------------------------------------------------- /src/queries/projectboard-cards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/projectboard-cards.ts -------------------------------------------------------------------------------- /src/queries/schema/CardIdToPr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/schema/CardIdToPr.ts -------------------------------------------------------------------------------- /src/queries/schema/GetAllOpenPRsAndCardIDs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/schema/GetAllOpenPRsAndCardIDs.ts -------------------------------------------------------------------------------- /src/queries/schema/GetFileContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/schema/GetFileContent.ts -------------------------------------------------------------------------------- /src/queries/schema/GetLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/schema/GetLabels.ts -------------------------------------------------------------------------------- /src/queries/schema/GetPRForSHA1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/schema/GetPRForSHA1.ts -------------------------------------------------------------------------------- /src/queries/schema/GetProjectBoardCards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/schema/GetProjectBoardCards.ts -------------------------------------------------------------------------------- /src/queries/schema/GetProjectColumns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/schema/GetProjectColumns.ts -------------------------------------------------------------------------------- /src/queries/schema/PR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/schema/PR.ts -------------------------------------------------------------------------------- /src/queries/schema/PRFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/schema/PRFiles.ts -------------------------------------------------------------------------------- /src/queries/schema/graphql-global-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/queries/schema/graphql-global-types.ts -------------------------------------------------------------------------------- /src/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/run.ts -------------------------------------------------------------------------------- /src/scripts/updateJSONFixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/scripts/updateJSONFixtures.ts -------------------------------------------------------------------------------- /src/side-effects/merge-codeowner-prs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/side-effects/merge-codeowner-prs.ts -------------------------------------------------------------------------------- /src/types/discussions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/types/discussions.d.ts -------------------------------------------------------------------------------- /src/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/urls.ts -------------------------------------------------------------------------------- /src/util/cachedQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/util/cachedQueries.ts -------------------------------------------------------------------------------- /src/util/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/util/comment.ts -------------------------------------------------------------------------------- /src/util/fetchFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/util/fetchFile.ts -------------------------------------------------------------------------------- /src/util/io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/util/io.ts -------------------------------------------------------------------------------- /src/util/npm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/util/npm.ts -------------------------------------------------------------------------------- /src/util/reply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/util/reply.ts -------------------------------------------------------------------------------- /src/util/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/util/util.ts -------------------------------------------------------------------------------- /src/util/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/src/util/verify.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/dt-mergebot/HEAD/tsconfig.json --------------------------------------------------------------------------------