├── .DS_Store ├── .gitignore ├── README.md ├── Shopify-In-Store-Full-Demo.vf ├── image-1.png ├── image-2.png ├── image.png └── shop-extension ├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.cjs ├── .graphqlrc.ts ├── .npmrc ├── .prettierignore ├── .vscode └── extensions.json ├── Dockerfile ├── README.md ├── app ├── db.server.ts ├── entry.server.tsx ├── globals.d.ts ├── root.tsx ├── routes │ ├── _index │ │ ├── route.tsx │ │ └── styles.module.css │ ├── app._index.tsx │ ├── app.tsx │ ├── auth.$.tsx │ ├── auth.login │ │ ├── error.server.tsx │ │ └── route.tsx │ └── webhooks.tsx └── shopify.server.ts ├── env.d.ts ├── extensions ├── .gitkeep └── voiceflow-extension │ ├── assets │ ├── chat-box.js │ ├── chat_styles.css │ ├── send.svg │ └── thumbs-up.png │ ├── blocks │ ├── star_rating.liquid │ └── voiceflow_chat.liquid │ ├── locales │ └── en.default.json │ ├── shopify.extension.toml │ └── snippets │ ├── chat_box.liquid │ └── stars.liquid ├── package-lock.json ├── package.json ├── prisma ├── dev.sqlite ├── migrations │ └── 20240530213853_create_session_table │ │ └── migration.sql └── schema.prisma ├── public └── favicon.ico ├── shopify.app.toml ├── shopify.web.toml ├── tsconfig.json └── vite.config.ts /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/README.md -------------------------------------------------------------------------------- /Shopify-In-Store-Full-Demo.vf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/Shopify-In-Store-Full-Demo.vf -------------------------------------------------------------------------------- /image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/image-1.png -------------------------------------------------------------------------------- /image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/image-2.png -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/image.png -------------------------------------------------------------------------------- /shop-extension/.dockerignore: -------------------------------------------------------------------------------- 1 | .cache 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /shop-extension/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/.editorconfig -------------------------------------------------------------------------------- /shop-extension/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/.eslintignore -------------------------------------------------------------------------------- /shop-extension/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/.eslintrc.cjs -------------------------------------------------------------------------------- /shop-extension/.graphqlrc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/.graphqlrc.ts -------------------------------------------------------------------------------- /shop-extension/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/.npmrc -------------------------------------------------------------------------------- /shop-extension/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/.prettierignore -------------------------------------------------------------------------------- /shop-extension/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/.vscode/extensions.json -------------------------------------------------------------------------------- /shop-extension/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/Dockerfile -------------------------------------------------------------------------------- /shop-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/README.md -------------------------------------------------------------------------------- /shop-extension/app/db.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/app/db.server.ts -------------------------------------------------------------------------------- /shop-extension/app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/app/entry.server.tsx -------------------------------------------------------------------------------- /shop-extension/app/globals.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.css"; 2 | -------------------------------------------------------------------------------- /shop-extension/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/app/root.tsx -------------------------------------------------------------------------------- /shop-extension/app/routes/_index/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/app/routes/_index/route.tsx -------------------------------------------------------------------------------- /shop-extension/app/routes/_index/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/app/routes/_index/styles.module.css -------------------------------------------------------------------------------- /shop-extension/app/routes/app._index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/app/routes/app._index.tsx -------------------------------------------------------------------------------- /shop-extension/app/routes/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/app/routes/app.tsx -------------------------------------------------------------------------------- /shop-extension/app/routes/auth.$.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/app/routes/auth.$.tsx -------------------------------------------------------------------------------- /shop-extension/app/routes/auth.login/error.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/app/routes/auth.login/error.server.tsx -------------------------------------------------------------------------------- /shop-extension/app/routes/auth.login/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/app/routes/auth.login/route.tsx -------------------------------------------------------------------------------- /shop-extension/app/routes/webhooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/app/routes/webhooks.tsx -------------------------------------------------------------------------------- /shop-extension/app/shopify.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/app/shopify.server.ts -------------------------------------------------------------------------------- /shop-extension/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/env.d.ts -------------------------------------------------------------------------------- /shop-extension/extensions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shop-extension/extensions/voiceflow-extension/assets/chat-box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/extensions/voiceflow-extension/assets/chat-box.js -------------------------------------------------------------------------------- /shop-extension/extensions/voiceflow-extension/assets/chat_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/extensions/voiceflow-extension/assets/chat_styles.css -------------------------------------------------------------------------------- /shop-extension/extensions/voiceflow-extension/assets/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/extensions/voiceflow-extension/assets/send.svg -------------------------------------------------------------------------------- /shop-extension/extensions/voiceflow-extension/assets/thumbs-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/extensions/voiceflow-extension/assets/thumbs-up.png -------------------------------------------------------------------------------- /shop-extension/extensions/voiceflow-extension/blocks/star_rating.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/extensions/voiceflow-extension/blocks/star_rating.liquid -------------------------------------------------------------------------------- /shop-extension/extensions/voiceflow-extension/blocks/voiceflow_chat.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/extensions/voiceflow-extension/blocks/voiceflow_chat.liquid -------------------------------------------------------------------------------- /shop-extension/extensions/voiceflow-extension/locales/en.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/extensions/voiceflow-extension/locales/en.default.json -------------------------------------------------------------------------------- /shop-extension/extensions/voiceflow-extension/shopify.extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/extensions/voiceflow-extension/shopify.extension.toml -------------------------------------------------------------------------------- /shop-extension/extensions/voiceflow-extension/snippets/chat_box.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/extensions/voiceflow-extension/snippets/chat_box.liquid -------------------------------------------------------------------------------- /shop-extension/extensions/voiceflow-extension/snippets/stars.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/extensions/voiceflow-extension/snippets/stars.liquid -------------------------------------------------------------------------------- /shop-extension/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/package-lock.json -------------------------------------------------------------------------------- /shop-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/package.json -------------------------------------------------------------------------------- /shop-extension/prisma/dev.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/prisma/dev.sqlite -------------------------------------------------------------------------------- /shop-extension/prisma/migrations/20240530213853_create_session_table/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/prisma/migrations/20240530213853_create_session_table/migration.sql -------------------------------------------------------------------------------- /shop-extension/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/prisma/schema.prisma -------------------------------------------------------------------------------- /shop-extension/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/public/favicon.ico -------------------------------------------------------------------------------- /shop-extension/shopify.app.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/shopify.app.toml -------------------------------------------------------------------------------- /shop-extension/shopify.web.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/shopify.web.toml -------------------------------------------------------------------------------- /shop-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/tsconfig.json -------------------------------------------------------------------------------- /shop-extension/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperZooper3/Voiceflow-In-Store-Shopify/HEAD/shop-extension/vite.config.ts --------------------------------------------------------------------------------