├── .gitignore ├── Dynamic API specification.md ├── Format-attribute.md ├── Format-category.md ├── Format-product.md ├── How to configure Vue Storefront.md ├── LICENSE ├── Prices how-to.md ├── README.md ├── Vue Storefront Integration Architecture.pdf ├── Vue Storefront Integration Architecture.pptx ├── sample-api-js ├── LICENSE ├── Procfile ├── README.md ├── babel.config.js ├── config │ ├── .gitignore │ └── default.json ├── nodemon.json ├── package.json ├── src │ ├── api │ │ ├── cart.js │ │ ├── catalog.js │ │ ├── img.js │ │ ├── index.js │ │ ├── order.js │ │ ├── stock.js │ │ └── user.js │ ├── db.js │ ├── index.ts │ ├── lib │ │ ├── image.js │ │ └── util.js │ └── middleware │ │ └── index.ts ├── tsconfig.json └── yarn.lock ├── sample-data ├── attributes.json ├── categories.json ├── fetch_demo_attributes.sh ├── fetch_demo_categories.sh ├── fetch_demo_products.sh ├── import.js ├── package.json └── products.json └── screens └── screen_0_products.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /Dynamic API specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/Dynamic API specification.md -------------------------------------------------------------------------------- /Format-attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/Format-attribute.md -------------------------------------------------------------------------------- /Format-category.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/Format-category.md -------------------------------------------------------------------------------- /Format-product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/Format-product.md -------------------------------------------------------------------------------- /How to configure Vue Storefront.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/How to configure Vue Storefront.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /Prices how-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/Prices how-to.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/README.md -------------------------------------------------------------------------------- /Vue Storefront Integration Architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/Vue Storefront Integration Architecture.pdf -------------------------------------------------------------------------------- /Vue Storefront Integration Architecture.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/Vue Storefront Integration Architecture.pptx -------------------------------------------------------------------------------- /sample-api-js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/LICENSE -------------------------------------------------------------------------------- /sample-api-js/Procfile: -------------------------------------------------------------------------------- 1 | web: npm start 2 | -------------------------------------------------------------------------------- /sample-api-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/README.md -------------------------------------------------------------------------------- /sample-api-js/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/babel.config.js -------------------------------------------------------------------------------- /sample-api-js/config/.gitignore: -------------------------------------------------------------------------------- 1 | *.extension.json -------------------------------------------------------------------------------- /sample-api-js/config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/config/default.json -------------------------------------------------------------------------------- /sample-api-js/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/nodemon.json -------------------------------------------------------------------------------- /sample-api-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/package.json -------------------------------------------------------------------------------- /sample-api-js/src/api/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/src/api/cart.js -------------------------------------------------------------------------------- /sample-api-js/src/api/catalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/src/api/catalog.js -------------------------------------------------------------------------------- /sample-api-js/src/api/img.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/src/api/img.js -------------------------------------------------------------------------------- /sample-api-js/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/src/api/index.js -------------------------------------------------------------------------------- /sample-api-js/src/api/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/src/api/order.js -------------------------------------------------------------------------------- /sample-api-js/src/api/stock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/src/api/stock.js -------------------------------------------------------------------------------- /sample-api-js/src/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/src/api/user.js -------------------------------------------------------------------------------- /sample-api-js/src/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/src/db.js -------------------------------------------------------------------------------- /sample-api-js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/src/index.ts -------------------------------------------------------------------------------- /sample-api-js/src/lib/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/src/lib/image.js -------------------------------------------------------------------------------- /sample-api-js/src/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/src/lib/util.js -------------------------------------------------------------------------------- /sample-api-js/src/middleware/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/src/middleware/index.ts -------------------------------------------------------------------------------- /sample-api-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/tsconfig.json -------------------------------------------------------------------------------- /sample-api-js/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-api-js/yarn.lock -------------------------------------------------------------------------------- /sample-data/attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-data/attributes.json -------------------------------------------------------------------------------- /sample-data/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-data/categories.json -------------------------------------------------------------------------------- /sample-data/fetch_demo_attributes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-data/fetch_demo_attributes.sh -------------------------------------------------------------------------------- /sample-data/fetch_demo_categories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-data/fetch_demo_categories.sh -------------------------------------------------------------------------------- /sample-data/fetch_demo_products.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-data/fetch_demo_products.sh -------------------------------------------------------------------------------- /sample-data/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-data/import.js -------------------------------------------------------------------------------- /sample-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-data/package.json -------------------------------------------------------------------------------- /sample-data/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/sample-data/products.json -------------------------------------------------------------------------------- /screens/screen_0_products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/storefront-integration-sdk/HEAD/screens/screen_0_products.png --------------------------------------------------------------------------------