-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into fix/todo-use-product-variant-method-to-ge…
…t-sc-availability
- Loading branch information
Showing
1,873 changed files
with
33,351 additions
and
95,349 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
"@medusajs/medusa": minor | ||
"medusa-plugin-sendgrid": patch | ||
"medusa-payment-stripe": patch | ||
"medusa-plugin-algolia": patch | ||
"medusa-source-shopify": patch | ||
"medusa-core-utils": patch | ||
"medusa-file-minio": patch | ||
"medusa-interfaces": patch | ||
"medusa-test-utils": patch | ||
"@medusajs/stock-location": patch | ||
"@medusajs/inventory": patch | ||
"@medusajs/medusa-js": patch | ||
--- | ||
|
||
chore(medusa): upgrade typeorm from 0.2.51 to 0.3.11 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@medusajs/medusa-oas-cli": patch | ||
--- | ||
|
||
feat(oas): medusa-oas-cli as OAS build tool |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"@medusajs/medusa": patch | ||
"@medusajs/medusa-js": patch | ||
"medusa-react": patch | ||
--- | ||
|
||
feat(medusa,medusa-js,medusa-react): Add inventory module endpoints |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
name: OAS Comments Format Validation | ||
on: | ||
on: | ||
pull_request: | ||
paths: | ||
- packages/medusa/src/api/routes/** | ||
- packages/medusa/src/api/** | ||
- packages/medusa/src/models/** | ||
- packages/medusa/src/types/** | ||
|
||
jobs: | ||
docs-test: | ||
runs-on: ubuntu-latest | ||
env: | ||
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | ||
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
|
@@ -29,6 +34,9 @@ jobs: | |
with: | ||
extension: oas | ||
|
||
- name: Build Packages | ||
run: yarn build | ||
|
||
- name: Build OAS | ||
run: | | ||
yarn openapi:generate --dry-run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
plugins: | ||
- "./plugins/plugin.js" | ||
|
||
# Allows to replace a $ref with `type: object` in order to avoid infinite loops | ||
# when Redocly attempts to render circular references. | ||
decorators: | ||
plugin/circular-patch: | ||
verbose: false | ||
schemas: | ||
Address: | ||
- Customer | ||
Cart: | ||
- Customer | ||
- Order | ||
- Payment | ||
- PaymentSession | ||
ClaimImage: | ||
- ClaimItem | ||
ClaimItem: | ||
- ClaimOrder | ||
ClaimOrder: | ||
- Fulfillment | ||
- Order | ||
- Return | ||
Country: | ||
- Region | ||
Customer: | ||
- Order | ||
CustomerGroup: | ||
- Customer | ||
- PriceList | ||
Discount: | ||
- Discount | ||
DiscountRule: | ||
- DiscountCondition | ||
DraftOrder: | ||
- Cart | ||
- Order | ||
Fulfillment: | ||
- ClaimOrder | ||
- Order | ||
- Swap | ||
FulfillmentItem: | ||
- Fulfillment | ||
GiftCard: | ||
- Order | ||
GiftCardTransaction: | ||
- GiftCard | ||
- Order | ||
LineItem: | ||
- Cart | ||
- ClaimOrder | ||
- Order | ||
- OrderEdit | ||
- Swap | ||
LineItemAdjustment: | ||
- LineItem | ||
LineItemTaxLine: | ||
- LineItem | ||
MoneyAmount: | ||
- PriceList | ||
- ProductVariant | ||
- Region | ||
Notification: | ||
- Notification | ||
Order: | ||
- Cart | ||
- ClaimOrder | ||
- Customer | ||
- DraftOrder | ||
- Fulfillment | ||
- OrderEdit | ||
- Payment | ||
- Refund | ||
- Return | ||
- Swap | ||
OrderEdit: | ||
- Order | ||
OrderItemChange: | ||
- OrderEdit | ||
Payment: | ||
- Cart | ||
- Order | ||
- Swap | ||
ProductCategory: | ||
- ProductCategory | ||
- Product | ||
ProductCollection: | ||
- Product | ||
ProductOption: | ||
- Product | ||
ProductOptionValue: | ||
- ProductOption | ||
- ProductVariant | ||
ProductVariant: | ||
- Product | ||
ProductVariantInventoryItem: | ||
- ProductVariant | ||
Refund: | ||
- Order | ||
- Payment | ||
Return: | ||
- ClaimOrder | ||
- Order | ||
- Swap | ||
ReturnItem: | ||
- Return | ||
ReturnReason: | ||
- ReturnReason | ||
SalesChannelLocation: | ||
- SalesChannel | ||
ShippingMethod: | ||
- Cart | ||
- ClaimOrder | ||
- Order | ||
- Payment | ||
- Return | ||
- Swap | ||
ShippingMethodTaxLine: | ||
- ShippingMethod | ||
ShippingOption: | ||
- Region | ||
ShippingOptionRequirement: | ||
- ShippingOption | ||
ShippingProfile: | ||
- Product | ||
- ShippingOption | ||
Swap: | ||
- Cart | ||
- Fulfillment | ||
- Order | ||
- Payment | ||
- Return | ||
TaxRate: | ||
- Region | ||
TrackingLink: | ||
- Fulfillment | ||
|
||
# Similar config to /www/docs/docusaurus.config.js > redocusaurus | ||
# Allows to emulate rendering of API public documentation when using `yarn redocly preview-docs openapi.yaml` | ||
theme.openapi: | ||
theme: | ||
colors: | ||
primary: | ||
dart: "#242526" | ||
sidebar: | ||
width: "250px" | ||
disableSearch: true | ||
expandResponses: "200,204" | ||
generatedPayloadSamplesMaxDepth: 4 | ||
hideDownloadButton: true | ||
hideRequestPayloadSample: true | ||
nativeScrollbars: true | ||
requiredPropsFirst: true | ||
showObjectSchemaExamples: true | ||
sortTagsAlphabetically: true |
Oops, something went wrong.