No description
Find a file
Adrian Pilarczyk 09e07995b5
feat: tax code matcher (#564)
* feat:  add tax-classes-fetcher

* refactor: ♻️ add "byId" suffix to crud-settings & remove upsert

* feat:  add updateMany method to CrudSettingsManager

* feat:  add avatax & taxjar tax-code-map-repository

* refactor: 🚚 move to tax-code directory

* feat:  add getTaxCodes methods to provider clients

* refactor: ♻️ extract taxClass and taxCode schema

* refactor: 🚚 tax-code-map -> tax-code-match

* feat:  add taxjar-tax-code.service

* feat:  add avatax-tax-code.service

* feat:  add taxClass to graphql fragment

* feat:  use tax codes in calculate taxes

* fix: 🐛 undefined tax code bug & add tests

* build: 👷 add changeset

* Update avatax-tax-code-mapper.ts

* feat:  add routers & get rid of adapters & mappers

* refactor: ♻️ logger location -> name

* refactor: ♻️ clean up & rephrase logs

* refactor: ♻️ remove __typename from query

* docs: 💡 make comments about tax codes more informative

* refactor: ♻️ use resolveOptionalOrThrow on tax code description

* refactor: ♻️ rename tax-codes -> tax-classes, move and rename tax-code-schema

* refactor: 🚚 ctx -> authData

* refactor: 🚚 createUrqlClientFromCtx -> createUrqlClientFromAuthdata

* refactor: ♻️ dont spread ctx

* docs: 💡 add comment about fallback tax code

* refactor: ♻️ remove ..ctx

* fix: 🐛 use createGraphQLClient

* feat: tax code matcher ui (#658)

* feat:  use tax codes in calculate taxes

* feat:  add getTaxCodes methods to provider clients

* feat:  add matcher tables

* feat:  add log errors middleware

* fix: 🔊 fix misleading logs

* fix: 🐛 ctx appToken bug

* feat:  add Select override with wrapping label

* feat:  pre-select match

* docs: 💡 add comments about first connection

* docs: 💡 add comment about redirect

* refactor: 🔥 duplicate file

* feat:  add AppCard to tables

* feat:  add _error to breadcrumbs exceptions

* fix: 🐛 value not set on data

* feat: 🥅 add error for no channels configured

* fix: 🐛 replace update with upsert

* refactor: 🚚 channel-configuration-settings to repository

* fix: 🐛 updating a channel configuration

* fix: 🧪 fix wrong mock

* fix: 🐛 duplicating configs

* Update cool-turtles-reflect.md
2023-06-20 17:53:27 +02:00
.changeset feat: tax code matcher (#564) 2023-06-20 17:53:27 +02:00
.github Update PR template 2023-06-19 16:47:44 +02:00
.husky Update dev dependencies (#540) 2023-06-07 09:25:39 +02:00
apps feat: tax code matcher (#564) 2023-06-20 17:53:27 +02:00
packages Sentry improvements (#652) 2023-06-20 10:06:18 +02:00
templates Setup Turborepo boilerplate 2023-02-07 18:57:26 +01:00
.eslintignore Update UI to match new dashboard style (#138) 2023-02-21 11:34:30 +01:00
.eslintrc.js Add shared eslint 2023-02-07 19:11:48 +01:00
.gitignore Invoices: Add debug logs and better temp pdf location (#265) 2023-03-15 09:38:13 +01:00
.prettierignore Add prettier on pre-commit & reformat codebase (#137) 2023-02-10 11:13:59 +01:00
.prettierrc Move config files 2023-02-07 19:27:17 +01:00
CODEOWNERS Move config files 2023-02-07 19:27:17 +01:00
LICENSE Move config files 2023-02-07 19:27:17 +01:00
package.json Sentry improvements (#652) 2023-06-20 10:06:18 +02:00
pnpm-lock.yaml Sentry improvements (#652) 2023-06-20 10:06:18 +02:00
pnpm-workspace.yaml Setup Turborepo boilerplate 2023-02-07 18:57:26 +01:00
README.md Extract logger (#439) 2023-05-05 08:15:47 +02:00
syncpack.config.js Update dev dependencies (#540) 2023-06-07 09:25:39 +02:00
turbo.json Extract logger (#439) 2023-05-05 08:15:47 +02:00

Saleor Apps

Saleor Apps

The central space for Saleor Apps, Integrations and Marketplace.

Overview

This repository serves as a starting point in the exploration of Saleor apps.

Saleor apps are separate applications that use GraphQL to talk to the Saleor server and receive webhooks with event notifications from Saleor.

docs.saleor.io

Apps list

In the apps folder, you will find the following applications:

  • crm - exports customers from Saleor to CRM.
  • cms - exports products from Saleor to CMS.
  • data-importer - import data from CSV to Saleor.
  • emails-and-messages - notifications and email communication with customers.
  • invoices - generate invoice PDF for each order.
  • klaviyo - send Saleor events to Klaviyo, where you can notify the customers.
  • monitoring - send Saleor logs to 3rd party Monitoring services
  • products-feed - generate products feed XML
  • search - connect Saleor with search engines.
  • slack - get notifications on Slack channel from Saleor events.
  • taxes - calculate order and checkout taxes using external services.

Development

You can find the documentation for saleor/apps on docs.saleor.io.