-
-
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 docs/experimental-features
- Loading branch information
Showing
384 changed files
with
20,997 additions
and
2,401 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,7 @@ | ||
--- | ||
"@medusajs/workflows": patch | ||
"@medusajs/pricing": patch | ||
"@medusajs/medusa": patch | ||
--- | ||
|
||
fix(workflows, pricing, medusa): update region variants fix + pricing module migration scripts |
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/workflows": patch | ||
"@medusajs/product": patch | ||
"@medusajs/types": patch | ||
--- | ||
|
||
fix(workflows, product, types): Fix issues relating to update-variant workflow and options |
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/admin-ui": patch | ||
--- | ||
|
||
fix(admin-ui): delete edit variant prices in favor of bulk editor |
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,6 @@ | ||
--- | ||
"@medusajs/pricing": patch | ||
"@medusajs/types": patch | ||
--- | ||
|
||
fix(pricing,types): remove is_dynamic from model + types |
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/workflows": patch | ||
--- | ||
|
||
Fix(workflows): compensation handling |
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,8 @@ | ||
--- | ||
"@medusajs/orchestration": minor | ||
"@medusajs/workflows": minor | ||
"@medusajs/link-modules": patch | ||
"@medusajs/medusa": patch | ||
--- | ||
|
||
Workflows composer api |
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/ui": patch | ||
--- | ||
|
||
fix(ui): Update the styling of CodeBlock |
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,10 @@ | ||
--- | ||
"@medusajs/workflows": patch | ||
"@medusajs/product": patch | ||
"@medusajs/pricing": patch | ||
"@medusajs/medusa": patch | ||
"@medusajs/types": patch | ||
"@medusajs/utils": patch | ||
--- | ||
|
||
feat(medusa,types,workflows,utils,product,pricing): PricingModule Integration of PriceLists into Core |
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
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
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
6 changes: 6 additions & 0 deletions
6
docs-util/packages/typedoc-config/extended-tsconfig/workflows.json
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,6 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/tsconfig", | ||
"extends": [ | ||
"../../../../packages/workflows/tsconfig.json" | ||
] | ||
} |
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,75 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const path = require("path") | ||
const globalTypedocOptions = require("./_base") | ||
|
||
const pathPrefix = path.join(__dirname, "..", "..", "..") | ||
|
||
module.exports = { | ||
...globalTypedocOptions, | ||
entryPoints: [ | ||
path.join(pathPrefix, "packages/workflows/src/utils/composer/index.ts"), | ||
], | ||
out: [path.join(pathPrefix, "www/apps/docs/content/references/workflows")], | ||
tsconfig: path.join(__dirname, "extended-tsconfig", "workflows.json"), | ||
name: "Workflows Reference", | ||
indexTitle: "Workflows Reference", | ||
entryDocument: "index.mdx", | ||
hideInPageTOC: true, | ||
hideBreadcrumbs: true, | ||
formatting: { | ||
"*": { | ||
expandMembers: true, | ||
showCommentsAsHeader: true, | ||
sections: { | ||
member_sources_definedIn: false, | ||
reflection_hierarchy: false, | ||
member_sources_inheritedFrom: false, | ||
member_sources_implementationOf: false, | ||
reflection_implementedBy: false, | ||
member_signature_sources: false, | ||
reflection_callable: false, | ||
reflection_indexable: false, | ||
member_signature_title: false, | ||
member_signature_returns: false, | ||
member_getterSetter: false, | ||
}, | ||
parameterStyle: "component", | ||
parameterComponent: "ParameterTypes", | ||
mdxImports: [ | ||
`import ParameterTypes from "@site/src/components/ParameterTypes"`, | ||
], | ||
frontmatterData: { | ||
displayed_sidebar: "workflowsSidebar", | ||
}, | ||
}, | ||
"index\\.mdx": { | ||
reflectionGroups: { | ||
Namespaces: false, | ||
Enumerations: false, | ||
Classes: false, | ||
Interfaces: false, | ||
"Type Aliases": false, | ||
Variables: false, | ||
"Enumeration Members": false, | ||
}, | ||
}, | ||
functions: { | ||
maxLevel: 1, | ||
}, | ||
"classes/StepResponse": { | ||
reflectionGroups: { | ||
Properties: false, | ||
}, | ||
}, | ||
transform: { | ||
reflectionGroups: { | ||
"Type Parameters": false, | ||
}, | ||
}, | ||
}, | ||
objectLiteralTypeDeclarationStyle: "component", | ||
mdxOutput: true, | ||
maxLevel: 2, | ||
allReflectionsHaveOwnDocument: true, | ||
excludeExternals: true, | ||
} |
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
21 changes: 21 additions & 0 deletions
21
docs-util/packages/typedoc-plugin-custom/src/signature-modifier.ts
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,21 @@ | ||
import { | ||
Application, | ||
Context, | ||
Converter, | ||
ProjectReflection, | ||
SignatureReflection, | ||
} from "typedoc" | ||
|
||
export function load(app: Application) { | ||
app.converter.on( | ||
Converter.EVENT_CREATE_SIGNATURE, | ||
( | ||
context: Context, | ||
signature: SignatureReflection | ProjectReflection | undefined | ||
) => { | ||
if (signature?.comment?.hasModifier("@hideSignature")) { | ||
context.project.removeReflection(signature) | ||
} | ||
} | ||
) | ||
} |
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
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
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
Oops, something went wrong.