├── .dockerignore ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE-DATASET.md ├── LICENSE-SOURCE.md ├── README.md ├── config └── default.json ├── dataset.sqlite ├── markdown ├── index.md └── queries.md ├── package.json ├── public ├── css │ ├── custom.css │ ├── darcula.css │ ├── normalize.css │ └── skeleton.css ├── favicon.ico ├── highlight.pack.js ├── postman │ └── API.postman_collection.json ├── process.js └── robots.txt ├── src ├── app.js ├── db │ ├── category.js │ ├── index.js │ ├── product.js │ ├── service.js │ ├── store.js │ └── zipcode.js ├── hooks │ ├── index.js │ └── validate-schema.js ├── index.js ├── middleware │ ├── index.js │ ├── logger.js │ ├── markdown-pages.js │ ├── not-found-handler.js │ └── swagger │ │ ├── index.js │ │ ├── swagger-ui │ │ ├── css │ │ │ ├── print.css │ │ │ ├── reset.css │ │ │ ├── screen.css │ │ │ ├── style.css │ │ │ └── typography.css │ │ ├── fonts │ │ │ ├── DroidSans-Bold.ttf │ │ │ └── DroidSans.ttf │ │ ├── images │ │ │ ├── collapse.gif │ │ │ ├── expand.gif │ │ │ ├── explorer_icons.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── logo_small.png │ │ │ ├── pet_store_api.png │ │ │ ├── throbber.gif │ │ │ └── wordnik_api.png │ │ ├── index.html │ │ ├── lang │ │ │ ├── ca.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── fr.js │ │ │ ├── geo.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ko-kr.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ ├── tr.js │ │ │ ├── translator.js │ │ │ └── zh-cn.js │ │ ├── o2c.html │ │ ├── swagger-ui.js │ │ └── swagger-ui.min.js │ │ └── swagger.js └── services │ ├── categories │ ├── docs.js │ ├── hooks │ │ └── index.js │ ├── index.js │ └── schema.js │ ├── index.js │ ├── products │ ├── docs.js │ ├── hooks │ │ └── index.js │ ├── index.js │ └── schema.js │ ├── services │ ├── docs.js │ ├── hooks │ │ └── index.js │ ├── index.js │ └── schema.js │ ├── stores │ ├── docs.js │ ├── hooks │ │ ├── findNearby.js │ │ └── index.js │ ├── index.js │ └── schema.js │ └── utilities │ ├── docs.js │ └── index.js └── test ├── app.test.js ├── hooks └── index.test.js └── services ├── categories ├── create.test.js ├── get.test.js └── query.test.js ├── products ├── create.test.js ├── get.test.js └── query.test.js ├── services ├── create.test.js ├── get.test.js └── query.test.js ├── stores ├── create.test.js ├── get.test.js └── query.test.js └── utilities └── get.test.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## Changelog 2 | 3 | __1.0.0__ 4 | 5 | - Initial release 6 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE-DATASET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/LICENSE-DATASET.md -------------------------------------------------------------------------------- /LICENSE-SOURCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/LICENSE-SOURCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/README.md -------------------------------------------------------------------------------- /config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/config/default.json -------------------------------------------------------------------------------- /dataset.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/dataset.sqlite -------------------------------------------------------------------------------- /markdown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/markdown/index.md -------------------------------------------------------------------------------- /markdown/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/markdown/queries.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/package.json -------------------------------------------------------------------------------- /public/css/custom.css: -------------------------------------------------------------------------------- 1 | pre { 2 | max-height:400px; 3 | overflow: auto; 4 | } -------------------------------------------------------------------------------- /public/css/darcula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/public/css/darcula.css -------------------------------------------------------------------------------- /public/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/public/css/normalize.css -------------------------------------------------------------------------------- /public/css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/public/css/skeleton.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/public/highlight.pack.js -------------------------------------------------------------------------------- /public/postman/API.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/public/postman/API.postman_collection.json -------------------------------------------------------------------------------- /public/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/public/process.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/app.js -------------------------------------------------------------------------------- /src/db/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/db/category.js -------------------------------------------------------------------------------- /src/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/db/index.js -------------------------------------------------------------------------------- /src/db/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/db/product.js -------------------------------------------------------------------------------- /src/db/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/db/service.js -------------------------------------------------------------------------------- /src/db/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/db/store.js -------------------------------------------------------------------------------- /src/db/zipcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/db/zipcode.js -------------------------------------------------------------------------------- /src/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/hooks/index.js -------------------------------------------------------------------------------- /src/hooks/validate-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/hooks/validate-schema.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/index.js -------------------------------------------------------------------------------- /src/middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/index.js -------------------------------------------------------------------------------- /src/middleware/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/logger.js -------------------------------------------------------------------------------- /src/middleware/markdown-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/markdown-pages.js -------------------------------------------------------------------------------- /src/middleware/not-found-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/not-found-handler.js -------------------------------------------------------------------------------- /src/middleware/swagger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/index.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/css/print.css -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/css/reset.css -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/css/screen.css -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/css/style.css -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/css/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/css/typography.css -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/fonts/DroidSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/fonts/DroidSans-Bold.ttf -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/images/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/images/collapse.gif -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/images/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/images/expand.gif -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/images/explorer_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/images/explorer_icons.png -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/images/favicon-16x16.png -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/images/favicon-32x32.png -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/images/favicon.ico -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/images/logo_small.png -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/images/pet_store_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/images/pet_store_api.png -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/images/throbber.gif -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/images/wordnik_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/images/wordnik_api.png -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/index.html -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/ca.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/en.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/es.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/fr.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/geo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/geo.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/it.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/ja.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/ko-kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/ko-kr.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/pl.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/pt.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/ru.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/tr.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/translator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/translator.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/lang/zh-cn.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/o2c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/o2c.html -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/swagger-ui.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger-ui/swagger-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger-ui/swagger-ui.min.js -------------------------------------------------------------------------------- /src/middleware/swagger/swagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/middleware/swagger/swagger.js -------------------------------------------------------------------------------- /src/services/categories/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/categories/docs.js -------------------------------------------------------------------------------- /src/services/categories/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/categories/hooks/index.js -------------------------------------------------------------------------------- /src/services/categories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/categories/index.js -------------------------------------------------------------------------------- /src/services/categories/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/categories/schema.js -------------------------------------------------------------------------------- /src/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/index.js -------------------------------------------------------------------------------- /src/services/products/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/products/docs.js -------------------------------------------------------------------------------- /src/services/products/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/products/hooks/index.js -------------------------------------------------------------------------------- /src/services/products/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/products/index.js -------------------------------------------------------------------------------- /src/services/products/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/products/schema.js -------------------------------------------------------------------------------- /src/services/services/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/services/docs.js -------------------------------------------------------------------------------- /src/services/services/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/services/hooks/index.js -------------------------------------------------------------------------------- /src/services/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/services/index.js -------------------------------------------------------------------------------- /src/services/services/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/services/schema.js -------------------------------------------------------------------------------- /src/services/stores/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/stores/docs.js -------------------------------------------------------------------------------- /src/services/stores/hooks/findNearby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/stores/hooks/findNearby.js -------------------------------------------------------------------------------- /src/services/stores/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/stores/hooks/index.js -------------------------------------------------------------------------------- /src/services/stores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/stores/index.js -------------------------------------------------------------------------------- /src/services/stores/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/stores/schema.js -------------------------------------------------------------------------------- /src/services/utilities/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/utilities/docs.js -------------------------------------------------------------------------------- /src/services/utilities/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/src/services/utilities/index.js -------------------------------------------------------------------------------- /test/app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/app.test.js -------------------------------------------------------------------------------- /test/hooks/index.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/services/categories/create.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/services/categories/create.test.js -------------------------------------------------------------------------------- /test/services/categories/get.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/services/categories/get.test.js -------------------------------------------------------------------------------- /test/services/categories/query.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/services/categories/query.test.js -------------------------------------------------------------------------------- /test/services/products/create.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/services/products/create.test.js -------------------------------------------------------------------------------- /test/services/products/get.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/services/products/get.test.js -------------------------------------------------------------------------------- /test/services/products/query.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/services/products/query.test.js -------------------------------------------------------------------------------- /test/services/services/create.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/services/services/create.test.js -------------------------------------------------------------------------------- /test/services/services/get.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/services/services/get.test.js -------------------------------------------------------------------------------- /test/services/services/query.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/services/services/query.test.js -------------------------------------------------------------------------------- /test/services/stores/create.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/services/stores/create.test.js -------------------------------------------------------------------------------- /test/services/stores/get.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/services/stores/get.test.js -------------------------------------------------------------------------------- /test/services/stores/query.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/services/stores/query.test.js -------------------------------------------------------------------------------- /test/services/utilities/get.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BestBuy/api-playground/HEAD/test/services/utilities/get.test.js --------------------------------------------------------------------------------