Philip Korsholm
c19d276458
feat(inventory-next, types): inventory module conversion ( #6596 )
...
* init
* create new interface
* prep integration tests
* update denpencies
* inventory service partial tests
* finalize integration tests
* add events
* align events
* adjust inventory level reservation levels
* add test validating reserved quantity after reseration item update
* fix nits
* rename to inventory-next
* update yarn.lock
* remove changelog
* remove fixtures
* remove unused files
* ready for review
* Update packages/inventory-next/package.json
Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com >
* pr feedback
* add tests and docs for partition-array util
* remote decorators from private method
* fix unit tests
* add migrations
* add foreign keys
* fix build
---------
Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com >
2024-03-08 14:09:05 +01:00
Philip Korsholm
8406eb5a35
feat(stock-location): Convert module to use mikro-orm ( #6616 )
...
* convert module
* fix migration
* cleanup module service
* fix pr feedback
2024-03-08 13:15:15 +01:00
Oli Juhl
8c57e61cb8
feat: Refresh payment collection + delete session ( #6594 )
...
### What
Add workflow for refreshing a payment collection.
The idea is that on all cart updates, we want two things to happen (in the context of payments) 1. the currently active payment sessions should be destroyed, and 2. the payment collection should be updated with the new cart total.
We do this to ensure that we always collect the correct payment amount.
From a customer perspective, this would mean that every time something on the cart is updated, the customer would need to enter their payment details anew.
To me, this is a good tradeoff to avoid inconsistencies with payment collection.
Additionally, I updated the Payment Module interface with `upsert` and `updated` following our established convention.
### Note
This PR depends on a fix to the `remoteJoiner` that @carlos-r-l-rodrigues is working on.
Update: Fix merged in #6602
Co-authored-by: Adrien de Peretti <25098370+adrien2p@users.noreply.github.com >
2024-03-07 13:32:20 +00:00
Stevche Radevski
12b035cb18
chore(tests): Try to use the api integration tests for v2 ( #6588 )
...
Few things to keep in mind:
1. You need to set MEDUSA_FF_MEDUSA_V2 to true before running the tests to run with the v2 API
2. You can use the `breaking` function to differentiate between v1 and v2 differences. This can help us identify what was breaking pretty quickly afterwards
3. You will need to run specific tests for now instead of all if you want to target v2. I think that's fine though, as we don't really need these to run on every PR until we have feature parity (and by then, all tests would be both v1 and v2 compatible)
**note: Adrien**
- add a new way to load modules only to run their loaders comparable to the way to run the migrations only
- improve tests runner to cleanup the data properly as well as re running all loaders and core defaults
Co-authored-by: Adrien de Peretti <25098370+adrien2p@users.noreply.github.com >
2024-03-07 08:05:43 +00:00
Adrien de Peretti
f0ef0a8784
fix: integration-tests/modules ( #6595 )
2024-03-06 11:45:34 +00:00
Adrien de Peretti
51bb6f1e89
Chore/integration tests modules utils ( #6581 )
...
new wrapper for medusa integration tests.
for now it is only applied to the modules directory, but it could be used in the api integration tests or any other integrations that requires a db and a server up and running.
It is not perfect, but I wanted to have something working and centralised before improving it, also avoiding too many conflicts with other prs
2024-03-06 10:03:07 +00:00
Adrien de Peretti
62a7bcc30c
Feat(fulfillment): service provider registration + fulfillment management ( #6524 )
...
**What**
- Create the fulfillment manual package with a first iteration API
- Create a new `AbstractFulfillmentProviderService` and `IFulfillmentProvider`
- Modify the module service interface to add new methods to manipulate the fulfillment and the communication with the external provider
- create (no bulk)
- cancel (no bulk)
- update (no bulk)
- list
- listAndCount
- retrieve
- Add new methods to the service provider service to include communication with the third party provider
- get options
- create
- cancel
- validate data
- validate option
- Update/create interfaces and DTO's
- fix repository serializer to allow non entity to be passed without throwing
- split module tests into multiple files to simplify navigation
- Add integration tests to validate fulfillments manipulation and external provider loading + communication
FIXES CORE-1729
FIXES CORE-1785
FIXES CORE-1784
FIXES CORE-1766
2024-03-05 11:11:14 +00:00
Adrien de Peretti
56d97ebef9
chore(medusa-test-utils): Add logger by default ( #6558 )
...
**What**
Add the logger dependency using the console by default if not provided
2024-03-01 13:02:45 +00:00
Philip Korsholm
3fc2aea752
feat(modules-sdk, types, user, utils):init user module events ( #6431 )
...
* init user module events
* refactor utils
* undo test script update
* fix feedback
* add eventbus service to module test-runner
* add injected dependencies
* move events to utils
* use const eventname in tests
* rm withTransaction
2024-02-23 09:31:02 +08:00
Adrien de Peretti
e0750bae40
chore(medusa-test-utils): Add debug option to the module test runner ( #6462 )
...
**What**
Add a debug options to the test runner, for now it will only switch the db to log the query but it could evolve to do more debug.
2024-02-21 13:01:03 +00:00
Adrien de Peretti
1d91b7429b
feat(fulfillment): implementation part 2 ( #6408 )
...
**What**
> [!NOTE]
> I can see this pr becoming huge, so I d like to get this partial one merged 👍
- Fixes shared connection usage (mikro orm compare the instance to its own package and therefore was resulting in not trully reusing the provided connection leading to exhausting the connection pool as multiple connections was created and end up not being all destroyed properly under the hood, discovered in my integration tests)
- Create shipping options method implementation
- DTO's definition and service interface update
- integration tests
- Re work of the indexes with new util update
- Test runner utils to remove a big chunk of the boilerplate of the packages integrations
FIXES CORE-1742
2024-02-19 12:33:46 +00:00
Adrien de Peretti
e85463b2a7
chore(): Fix database test utils and utils ( #6383 )
...
**What**
Fix the test utils database to trully run the migrations, the migration path is deprecated and not used anymore as umzung infer the path under the hood. It also fix the schema so that it is possible to specify different schema if needed.
The index helper can now create named constraints for uniqueness.
extracted [from](https://github.com/medusajs/medusa/pull/6381 )
2024-02-12 18:07:15 +00:00
olivermrbl
7b30512a65
chore: Remove workspace range in deps
2024-01-25 14:08:25 +01:00
Philip Korsholm
efd9204e26
Feat(medusa-test-utils, authentication, customer, cart, payment, pricing, product, promotion): Add initModule util ( #6200 )
...
* use initModules instead of initialize when runnning auth module integration tests
* rm unused module-config
* correct db schema fix
* update authentication integration tests w/ initModule
* update cart integration tests w/ initModule
* update customer integration tests w/ initModule
* update payment integration tests w/ initModule
* update pricing integration tests w/ initModule
* update product integration tests w/ initModule
* update promotion integration tests w/ initModule
* add initModule to more product tests and return medusaApp from initModule
* align moduleOptions naming
* update dependencies
2024-01-25 10:37:38 +08:00
github-actions[bot]
47272bf2b9
chore: Version Packages ( #5880 )
2024-01-09 18:41:35 +01:00
Philip Korsholm
d16d10619d
Feat(medusa-test-utils, utils, pricing, product, link-modules): upgrade mikro orm version to latest ( #5985 )
...
* update mikro-orm version
* add changeset
* update product tests
* add optional number serializer util
* upgrade cart mikro-orm versions
* clean up test
2024-01-02 17:11:55 +01:00
Adrien de Peretti
946db51a9b
chore(): Add engines to all package.json if needed ( #5812 )
2023-12-07 17:03:50 +01:00
adil
a52d5ed786
fix(medusa-test-utils): Fixed count serialization and incorrect function call ( #5090 )
...
- Serialized `count` - Updated the function name called inside the mock implementation
Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com >
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2023-09-18 15:26:13 +02:00
Riqwan Thamir
460161a69f
feat(pricing, types, utils, medusa-sdk): Pricing Module Setup + Currency ( #4860 )
...
What:
- Setups the skeleton for pricing module
- Creates service/model/repository for currency model
- Setups types
- Setups DB
- Moved some utils to a common place
RESOLVES CORE-1477
RESOLVES CORE-1476
2023-08-29 21:58:34 +00:00
olivermrbl
66c59d54ff
chore(release): v1.8.0
2023-04-04 18:35:27 +02:00
Oliver Windall Juhl
809ab2e0eb
chore: Merge master to develop ( #3653 )
2023-03-31 13:09:57 +02:00
Adrien de Peretti
7f120e576b
chore: Merge master to develop and manage conflict ( #3570 )
2023-03-29 10:11:32 +02:00
olivermrbl
b57ea22461
chore: Enter pre-release mode and version packages
2023-03-24 10:16:11 +01:00
olivermrbl
24604f1b71
chore: Merge conflicts with master
2023-03-14 11:43:31 +01:00
olivermrbl
77fd361ce8
chore(release): v1.7.13
2023-03-13 19:09:08 +01:00
Adrien de Peretti
f0a1355feb
feat(medusa): Bulk emit events ( #3407 )
2023-03-13 15:28:51 +01:00
Riqwan Thamir
121b42acfe
chore(medusa): Typeorm upgrade to 0.3.11 ( #3041 )
2023-02-15 16:25:30 +01:00
olivermrbl
da9fb4aaa8
chore: Lint package.json
2023-02-14 17:27:43 +01:00
Adrien de Peretti
8c5219a31e
chore: Update ignored files for npm ( #3217 )
2023-02-09 17:25:14 +01:00
Oliver Windall Juhl
08324355a4
chore: Patch bump all dependencies + minor bumps winston ( #3185 )
2023-02-07 19:15:29 +01:00
Adrien de Peretti
93d0dc1bdc
fix(medusa): test, build and watch scripts ( #3025 )
2023-01-15 17:10:26 +01:00
olivermrbl
a8bde8ba74
chore(release): Publish
2023-01-11 16:27:54 +01:00
Riqwan Thamir
47d075351f
feat(medusa): Get route for admin product categories API ( #2961 )
2023-01-10 10:08:16 +01:00
Carlos R. L. Rodrigues
a94d9816fe
chore: Centralise ESLint rules ( #2162 )
...
* chore: centrilize eslint rules
2022-09-13 07:42:33 -03:00
Zakaria El Asri
9fa4238ee4
chore: improve ci pipeline ( #1764 )
...
* fix: caching deps + add true parallelization to integration tests api
* fix: github action
* chore: upgrade to yarn berry (#1762 )
* init migration
* remove: yarn.lock from all pkgs
* fix: build script in pkgs
* adjust yarn config
* fix: yarn.lock and yarnrc.yml
* fix: github actions
* fix: wrong type
* fix (medusa-react): use dts-cli instead of tsdx
* fix: yarn.lock
* fix: yarn v
* fix: prepare script
* add: comment on why we need to downgrade yarn before medusa-dev
* chore: move to Turborepo (#1763 )
* increase number of parallel nodes
* fix (medusa-fulfillment-webshipper): build script
* fix: use new version of medusa-dev
* fix: rename cache-bootstrap to cache-deps
2022-07-10 12:11:11 +02:00
olivermrbl
c16df9383c
chore(release): Publish
...
- create-medusa-app@0.0.6
- gatsby-source-medusa@0.0.47
- @medusajs/medusa-cli@1.1.27
- medusa-file-minio@1.0.4
- medusa-file-s3@1.0.12
- medusa-file-spaces@1.1.37
- @medusajs/medusa-js@1.0.10
- medusa-payment-adyen@1.1.39
- medusa-payment-klarna@1.1.39
- medusa-payment-manual@1.0.16
- medusa-payment-paypal@1.0.38
- medusa-payment-stripe@1.1.38
- medusa-plugin-add-ons@1.1.37
- medusa-plugin-brightpearl@1.1.43
- medusa-plugin-contentful@1.1.40
- medusa-plugin-economic@1.1.37
- medusa-plugin-mailchimp@1.1.37
- medusa-plugin-permissions@1.1.37
- medusa-plugin-restock-notification@0.0.30
- medusa-plugin-segment@1.1.40
- medusa-plugin-sendgrid@1.1.38
- medusa-plugin-slack-notification@1.1.37
- medusa-plugin-twilio-sms@1.1.37
- medusa-plugin-wishlist@1.1.37
- medusa-react@0.1.3
- medusa-source-shopify@1.0.3
- medusa-test-utils@1.1.37
- @medusajs/medusa@1.1.62
2022-01-11 16:54:08 +01:00
olivermrbl
ec0f2df285
chore(release): Publish
...
- gatsby-source-medusa@0.0.46
- @medusajs/medusa-cli@1.1.26
- medusa-file-minio@1.0.3
- medusa-file-s3@1.0.11
- medusa-file-spaces@1.1.36
- @medusajs/medusa-js@1.0.9
- medusa-payment-adyen@1.1.38
- medusa-payment-klarna@1.1.38
- medusa-payment-manual@1.0.15
- medusa-payment-paypal@1.0.37
- medusa-payment-stripe@1.1.37
- medusa-plugin-add-ons@1.1.36
- medusa-plugin-brightpearl@1.1.42
- medusa-plugin-contentful@1.1.39
- medusa-plugin-economic@1.1.36
- medusa-plugin-mailchimp@1.1.36
- medusa-plugin-permissions@1.1.36
- medusa-plugin-restock-notification@0.0.29
- medusa-plugin-segment@1.1.39
- medusa-plugin-sendgrid@1.1.37
- medusa-plugin-slack-notification@1.1.36
- medusa-plugin-twilio-sms@1.1.36
- medusa-plugin-wishlist@1.1.36
- medusa-react@0.1.2
- medusa-source-shopify@1.0.2
- medusa-test-utils@1.1.36
- @medusajs/medusa@1.1.61
2021-12-29 13:02:39 +01:00
olivermrbl
3bbd1e8507
chore: release assist
2021-12-17 15:39:27 +01:00
olivermrbl
81a7ff73d0
chore(release): Publish
...
- gatsby-source-medusa@0.0.45
- @medusajs/medusa-cli@1.1.25
- medusa-file-minio@1.0.2
- medusa-file-s3@1.0.10
- medusa-file-spaces@1.1.35
- @medusajs/medusa-js@1.0.8
- medusa-payment-adyen@1.1.37
- medusa-payment-klarna@1.1.37
- medusa-payment-manual@1.0.14
- medusa-payment-paypal@1.0.36
- medusa-payment-stripe@1.1.36
- medusa-plugin-add-ons@1.1.35
- medusa-plugin-brightpearl@1.1.41
- medusa-plugin-contentful@1.1.38
- medusa-plugin-economic@1.1.35
- medusa-plugin-mailchimp@1.1.35
- medusa-plugin-permissions@1.1.35
- medusa-plugin-restock-notification@0.0.28
- medusa-plugin-segment@1.1.38
- medusa-plugin-sendgrid@1.1.36
- medusa-plugin-slack-notification@1.1.35
- medusa-plugin-twilio-sms@1.1.35
- medusa-plugin-wishlist@1.1.35
- medusa-react@0.1.1
- medusa-source-shopify@1.0.1
- medusa-test-utils@1.1.35
- @medusajs/medusa@1.1.60
2021-12-17 14:24:00 +01:00
Zakaria El Asri
d0d8dd7bf6
feat: add medusa-react ( #913 )
2021-12-14 19:09:36 +01:00
Sebastian Rindom
36c0f468f9
chore(release): Publish
...
- babel-preset-medusa-package@1.1.19
- @medusajs/medusa-cli@1.1.24
- medusa-core-utils@1.1.31
- medusa-dev-cli@0.0.24
- medusa-file-minio@1.0.1
- medusa-file-s3@1.0.9
- medusa-file-spaces@1.1.34
- medusa-fulfillment-manual@1.1.31
- medusa-fulfillment-webshipper@1.1.35
- medusa-interfaces@1.1.32
- @medusajs/medusa-js@1.0.6
- medusa-payment-adyen@1.1.36
- medusa-payment-klarna@1.1.36
- medusa-payment-manual@1.0.13
- medusa-payment-paypal@1.0.35
- medusa-payment-stripe@1.1.35
- medusa-plugin-add-ons@1.1.34
- medusa-plugin-algolia@0.0.6
- medusa-plugin-brightpearl@1.1.40
- medusa-plugin-contentful@1.1.37
- medusa-plugin-economic@1.1.34
- medusa-plugin-mailchimp@1.1.34
- medusa-plugin-meilisearch@0.0.12
- medusa-plugin-permissions@1.1.34
- medusa-plugin-restock-notification@0.0.27
- medusa-plugin-segment@1.1.37
- medusa-plugin-sendgrid@1.1.35
- medusa-plugin-slack-notification@1.1.34
- medusa-plugin-twilio-sms@1.1.34
- medusa-plugin-wishlist@1.1.34
- medusa-source-shopify@1.0.0
- medusa-telemetry@0.0.11
- medusa-test-utils@1.1.34
- @medusajs/medusa@1.1.58
2021-12-08 13:21:54 +01:00
Sebastian Rindom
4fcf9c1ee5
chore(release): Publish
...
- medusa-core-utils@1.1.30
- medusa-file-s3@1.0.8
- medusa-file-spaces@1.1.33
- medusa-fulfillment-manual@1.1.30
- medusa-fulfillment-webshipper@1.1.34
- medusa-interfaces@1.1.31
- @medusajs/medusa-js@1.0.5
- medusa-payment-adyen@1.1.35
- medusa-payment-klarna@1.1.35
- medusa-payment-manual@1.0.12
- medusa-payment-paypal@1.0.34
- medusa-payment-stripe@1.1.34
- medusa-plugin-add-ons@1.1.33
- medusa-plugin-algolia@0.0.5
- medusa-plugin-brightpearl@1.1.39
- medusa-plugin-contentful@1.1.36
- medusa-plugin-economic@1.1.33
- medusa-plugin-mailchimp@1.1.33
- medusa-plugin-meilisearch@0.0.11
- medusa-plugin-permissions@1.1.33
- medusa-plugin-restock-notification@0.0.26
- medusa-plugin-segment@1.1.36
- medusa-plugin-sendgrid@1.1.34
- medusa-plugin-slack-notification@1.1.33
- medusa-plugin-twilio-sms@1.1.33
- medusa-plugin-wishlist@1.1.33
- medusa-test-utils@1.1.33
- @medusajs/medusa@1.1.57
2021-11-23 09:49:33 +01:00
olivermrbl
948f8b2593
chore: release assist
2021-11-22 17:18:27 +01:00
Oliver Juhl
7770046479
chore(release): Publish
...
- medusa-core-utils@1.1.29
- medusa-file-s3@1.0.7
- medusa-file-spaces@1.1.32
- medusa-fulfillment-manual@1.1.29
- medusa-fulfillment-webshipper@1.1.33
- medusa-interfaces@1.1.30
- @medusajs/medusa-js@1.0.4
- medusa-payment-adyen@1.1.34
- medusa-payment-klarna@1.1.34
- medusa-payment-manual@1.0.11
- medusa-payment-paypal@1.0.33
- medusa-payment-stripe@1.1.33
- medusa-plugin-add-ons@1.1.32
- medusa-plugin-algolia@0.0.4
- medusa-plugin-brightpearl@1.1.38
- medusa-plugin-contentful@1.1.35
- medusa-plugin-economic@1.1.32
- medusa-plugin-mailchimp@1.1.32
- medusa-plugin-meilisearch@0.0.10
- medusa-plugin-permissions@1.1.32
- medusa-plugin-restock-notification@0.0.25
- medusa-plugin-segment@1.1.35
- medusa-plugin-sendgrid@1.1.33
- medusa-plugin-slack-notification@1.1.32
- medusa-plugin-twilio-sms@1.1.32
- medusa-plugin-wishlist@1.1.32
- medusa-test-utils@1.1.32
- @medusajs/medusa@1.1.56
2021-11-22 17:10:54 +01:00
Sebastian Rindom
322466bc99
chore(release): Publish
...
- medusa-core-utils@1.1.28
- medusa-file-s3@1.0.6
- medusa-file-spaces@1.1.31
- medusa-fulfillment-manual@1.1.28
- medusa-fulfillment-webshipper@1.1.32
- medusa-interfaces@1.1.29
- @medusajs/medusa-js@1.0.2
- medusa-payment-adyen@1.1.33
- medusa-payment-klarna@1.1.33
- medusa-payment-manual@1.0.10
- medusa-payment-paypal@1.0.32
- medusa-payment-stripe@1.1.32
- medusa-plugin-add-ons@1.1.31
- medusa-plugin-algolia@0.0.3
- medusa-plugin-brightpearl@1.1.37
- medusa-plugin-contentful@1.1.34
- medusa-plugin-economic@1.1.31
- medusa-plugin-mailchimp@1.1.31
- medusa-plugin-meilisearch@0.0.9
- medusa-plugin-permissions@1.1.31
- medusa-plugin-restock-notification@0.0.24
- medusa-plugin-segment@1.1.34
- medusa-plugin-sendgrid@1.1.32
- medusa-plugin-slack-notification@1.1.31
- medusa-plugin-twilio-sms@1.1.31
- medusa-plugin-wishlist@1.1.31
- medusa-test-utils@1.1.31
- @medusajs/medusa@1.1.54
2021-11-19 10:30:35 +01:00
Sebastian Rindom
aa460f6359
chore: release assist
2021-11-19 10:29:02 +01:00
Sebastian Rindom
a69b1e85be
chore(release): Publish
...
- medusa-core-utils@1.1.27
- medusa-file-s3@1.0.5
- medusa-file-spaces@1.1.30
- medusa-fulfillment-manual@1.1.27
- medusa-fulfillment-webshipper@1.1.31
- medusa-interfaces@1.1.28
- @medusajs/medusa-js@1.0.1
- medusa-payment-adyen@1.1.32
- medusa-payment-klarna@1.1.32
- medusa-payment-manual@1.0.9
- medusa-payment-paypal@1.0.31
- medusa-payment-stripe@1.1.31
- medusa-plugin-add-ons@1.1.30
- medusa-plugin-algolia@0.0.2
- medusa-plugin-brightpearl@1.1.36
- medusa-plugin-contentful@1.1.33
- medusa-plugin-economic@1.1.30
- medusa-plugin-mailchimp@1.1.30
- medusa-plugin-meilisearch@0.0.8
- medusa-plugin-permissions@1.1.30
- medusa-plugin-restock-notification@0.0.23
- medusa-plugin-segment@1.1.33
- medusa-plugin-sendgrid@1.1.31
- medusa-plugin-slack-notification@1.1.30
- medusa-plugin-twilio-sms@1.1.30
- medusa-plugin-wishlist@1.1.30
- medusa-test-utils@1.1.30
- @medusajs/medusa@1.1.53
2021-11-19 10:26:29 +01:00
Sebastian Rindom
528fc3a933
chore(release): Publish
...
- babel-preset-medusa-package@1.1.17
- create-medusa-app@0.0.5
- @medusajs/medusa-cli@1.1.22
- medusa-core-utils@1.1.26
- medusa-dev-cli@0.0.22
- medusa-file-s3@1.0.4
- medusa-file-spaces@1.1.29
- medusa-fulfillment-manual@1.1.26
- medusa-fulfillment-webshipper@1.1.30
- medusa-interfaces@1.1.27
- medusa-payment-adyen@1.1.31
- medusa-payment-klarna@1.1.31
- medusa-payment-manual@1.0.8
- medusa-payment-paypal@1.0.30
- medusa-payment-stripe@1.1.30
- medusa-plugin-add-ons@1.1.29
- medusa-plugin-brightpearl@1.1.34
- medusa-plugin-contentful@1.1.31
- medusa-plugin-discount-generator@1.1.19
- medusa-plugin-economic@1.1.29
- medusa-plugin-ip-lookup@1.1.19
- medusa-plugin-mailchimp@1.1.29
- medusa-plugin-meilisearch@0.0.5
- medusa-plugin-permissions@1.1.29
- medusa-plugin-restock-notification@0.0.22
- medusa-plugin-segment@1.1.32
- medusa-plugin-sendgrid@1.1.30
- medusa-plugin-slack-notification@1.1.29
- medusa-plugin-twilio-sms@1.1.29
- medusa-plugin-wishlist@1.1.29
- medusa-telemetry@0.0.9
- medusa-test-utils@1.1.29
- @medusajs/medusa@1.1.45
2021-10-18 17:55:22 +02:00
Sebastian Rindom
0eecc128dc
chore(release): Publish
...
- babel-preset-medusa-package@1.1.16
- create-medusa-app@0.0.4
- @medusajs/medusa-cli@1.1.21
- medusa-core-utils@1.1.25
- medusa-dev-cli@0.0.21
- medusa-file-s3@1.0.3
- medusa-file-spaces@1.1.28
- medusa-fulfillment-manual@1.1.25
- medusa-fulfillment-webshipper@1.1.29
- medusa-interfaces@1.1.26
- medusa-payment-adyen@1.1.30
- medusa-payment-klarna@1.1.30
- medusa-payment-manual@1.0.7
- medusa-payment-paypal@1.0.29
- medusa-payment-stripe@1.1.29
- medusa-plugin-add-ons@1.1.28
- medusa-plugin-brightpearl@1.1.33
- medusa-plugin-contentful@1.1.30
- medusa-plugin-discount-generator@1.1.18
- medusa-plugin-economic@1.1.28
- medusa-plugin-ip-lookup@1.1.18
- medusa-plugin-mailchimp@1.1.28
- medusa-plugin-meilisearch@0.0.4
- medusa-plugin-permissions@1.1.28
- medusa-plugin-restock-notification@0.0.21
- medusa-plugin-segment@1.1.31
- medusa-plugin-sendgrid@1.1.29
- medusa-plugin-slack-notification@1.1.28
- medusa-plugin-twilio-sms@1.1.28
- medusa-plugin-wishlist@1.1.28
- medusa-telemetry@0.0.8
- medusa-test-utils@1.1.28
- @medusajs/medusa@1.1.44
2021-10-18 17:55:07 +02:00
Sebastian Rindom
7e8fbf8fc3
chore(release): Publish
...
- @medusajs/medusa-cli@1.1.20
- medusa-core-utils@1.1.24
- medusa-file-s3@1.0.2
- medusa-file-spaces@1.1.27
- medusa-fulfillment-manual@1.1.24
- medusa-fulfillment-webshipper@1.1.28
- medusa-interfaces@1.1.25
- medusa-payment-adyen@1.1.29
- medusa-payment-klarna@1.1.29
- medusa-payment-manual@1.0.6
- medusa-payment-paypal@1.0.28
- medusa-payment-stripe@1.1.28
- medusa-plugin-add-ons@1.1.27
- medusa-plugin-brightpearl@1.1.32
- medusa-plugin-contentful@1.1.29
- medusa-plugin-discount-generator@1.1.17
- medusa-plugin-economic@1.1.27
- medusa-plugin-ip-lookup@1.1.17
- medusa-plugin-mailchimp@1.1.27
- medusa-plugin-meilisearch@0.0.3
- medusa-plugin-permissions@1.1.27
- medusa-plugin-restock-notification@0.0.20
- medusa-plugin-segment@1.1.30
- medusa-plugin-sendgrid@1.1.28
- medusa-plugin-slack-notification@1.1.27
- medusa-plugin-twilio-sms@1.1.27
- medusa-plugin-wishlist@1.1.27
- medusa-telemetry@0.0.7
- medusa-test-utils@1.1.27
- @medusajs/medusa@1.1.43
2021-10-18 17:30:12 +02:00