From ddc6cc13a05ae2cde139da1ca2a4cfcef4ecf3eb Mon Sep 17 00:00:00 2001 From: Shahed Nasser Date: Mon, 18 Dec 2023 14:02:18 +0200 Subject: [PATCH] docs: add TSDoc for payment processor + generate docs (#5917) * added tsdocs for payment processor * generated reference for payment processor --- .../packages/scripts/generate-reference.ts | 3 +- docs-util/packages/typedoc-config/_merger.js | 21 + .../packages/typedoc-config/fulfillment.js | 1 - docs-util/packages/typedoc-config/payment.js | 8 + .../resources/helpers/declaration-title.ts | 12 +- .../src/resources/helpers/signature-title.ts | 4 +- .../type-declaration-object-literal.ts | 2 +- .../src/utils/params-utils.ts | 13 +- .../src/utils/reflection-formatter.ts | 12 +- .../src/utils/return-reflection-formatter.ts | 7 + docs-util/packages/utils/src/get-type-str.ts | 3 +- docs-util/typedoc-json-output/0-medusa.json | 37023 +++++++++------- .../typedoc-json-output/fulfillment.json | 10 +- docs-util/typedoc-json-output/payment.json | 4710 ++ .../src/interfaces/fulfillment-service.ts | 13 +- .../src/interfaces/payment-processor.ts | 598 +- packages/medusa/src/models/payment-session.ts | 20 + .../backend/add-payment-provider.md | 648 - .../modules/carts-and-checkout/payment.md | 2 +- .../docs/content/plugins/payment/index.mdx | 2 +- ...ulesSdkTypes.ExternalModuleDeclaration.mdx | 27 - ...fulfillment.AbstractFulfillmentService.mdx | 13 +- .../fulfillment.FulfillmentService.mdx | 4 +- .../js_client.AdminNotificationsResource.mdx | 6 +- .../js_client.AdminRegionsResource.mdx | 20 +- ...js_client.AdminShippingOptionsResource.mdx | 76 +- .../js_client.AdminStockLocationsResource.mdx | 10 +- .../classes/js_client.RegionsResource.mdx | 6 +- .../medusa.AbstractFulfillmentService.mdx | 13 +- .../medusa.AbstractPaymentProcessor.mdx | 609 +- ...medusa.AdminGetRegionsPaginationParams.mdx | 32 - .../classes/medusa.AdminGetRegionsParams.mdx | 20 +- ...dusa.AdminPostShippingOptionsOptionReq.mdx | 28 + .../medusa.AdminPostShippingOptionsReq.mdx | 27 +- .../classes/medusa.OptionRequirement.mdx | 23 +- .../classes/medusa.StoreGetRegionsParams.mdx | 24 +- .../medusa.StoreGetRegionsRegionParams.mdx | 32 + .../medusa/enums/medusa.ProductStatus.mdx | 31 + .../interfaces/medusa.FulfillmentService.mdx | 4 +- .../interfaces/medusa.MedusaRequest.mdx | 39 +- .../interfaces/medusa.PaymentProcessor.mdx | 575 +- .../medusa.PaymentProcessorContext.mdx | 24 +- .../medusa.PaymentProcessorError.mdx | 8 +- ...medusa.PaymentProcessorSessionResponse.mdx | 51 + .../interfaces/medusa.ProductCategoryDTO.mdx | 313 + .../medusa.ProductCollectionDTO.mdx | 330 + .../medusa/interfaces/medusa.ProductDTO.mdx | 759 + .../interfaces/medusa.ProductImageDTO.mdx | 50 + .../interfaces/medusa.ProductOptionDTO.mdx | 385 + .../medusa.ProductOptionValueDTO.mdx | 349 + .../interfaces/medusa.ProductTagDTO.mdx | 312 + .../interfaces/medusa.ProductTypeDTO.mdx | 50 + .../interfaces/medusa.ProductVariantDTO.mdx | 556 + ...a.AdminInventoryItemsLocationLevelsRes.mdx | 109 - .../medusa/types/medusa.DeleteResponse-1.mdx | 4 +- .../medusa.ExternalModuleDeclaration.mdx | 27 - .../medusa/types/medusa.InnerSelector.mdx | 23 + .../medusa.MedusaErrorHandlerFunction.mdx | 2 +- .../types/medusa.MedusaRequestHandler.mdx | 2 +- .../types/medusa.PaginatedResponse-1.mdx | 6 +- .../medusa/types/medusa.PaymentContext.mdx | 236 - .../types/medusa.PaymentSessionResponse.mdx | 9 - .../medusa/types/medusa.Selector.mdx | 2 +- .../content/references/modules/medusa.mdx | 717 +- .../content/references/modules/payment.mdx | 84 + .../payment.AbstractPaymentProcessor.mdx | 1134 + .../interfaces/payment.PaymentProcessor.mdx | 1060 + .../payment.PaymentProcessorContext.mdx | 231 + .../payment.PaymentProcessorError.mdx | 41 + ...yment.PaymentProcessorSessionResponse.mdx} | 14 +- www/apps/docs/sidebars.js | 2 +- .../components/ParameterTypes/Items/index.tsx | 3 +- www/apps/docs/src/utils/decode-str.ts | 8 + 73 files changed, 34162 insertions(+), 17470 deletions(-) create mode 100644 docs-util/packages/typedoc-config/payment.js create mode 100644 docs-util/typedoc-json-output/payment.json delete mode 100644 www/apps/docs/content/modules/carts-and-checkout/backend/add-payment-provider.md delete mode 100644 www/apps/docs/content/references/medusa/classes/medusa.AdminGetRegionsPaginationParams.mdx create mode 100644 www/apps/docs/content/references/medusa/classes/medusa.StoreGetRegionsRegionParams.mdx create mode 100644 www/apps/docs/content/references/medusa/enums/medusa.ProductStatus.mdx rename www/apps/docs/content/references/medusa/{types => interfaces}/medusa.PaymentProcessorContext.mdx (86%) create mode 100644 www/apps/docs/content/references/medusa/interfaces/medusa.PaymentProcessorSessionResponse.mdx create mode 100644 www/apps/docs/content/references/medusa/interfaces/medusa.ProductCategoryDTO.mdx create mode 100644 www/apps/docs/content/references/medusa/interfaces/medusa.ProductCollectionDTO.mdx create mode 100644 www/apps/docs/content/references/medusa/interfaces/medusa.ProductDTO.mdx create mode 100644 www/apps/docs/content/references/medusa/interfaces/medusa.ProductImageDTO.mdx create mode 100644 www/apps/docs/content/references/medusa/interfaces/medusa.ProductOptionDTO.mdx create mode 100644 www/apps/docs/content/references/medusa/interfaces/medusa.ProductOptionValueDTO.mdx create mode 100644 www/apps/docs/content/references/medusa/interfaces/medusa.ProductTagDTO.mdx create mode 100644 www/apps/docs/content/references/medusa/interfaces/medusa.ProductTypeDTO.mdx create mode 100644 www/apps/docs/content/references/medusa/interfaces/medusa.ProductVariantDTO.mdx create mode 100644 www/apps/docs/content/references/medusa/types/medusa.InnerSelector.mdx create mode 100644 www/apps/docs/content/references/modules/payment.mdx create mode 100644 www/apps/docs/content/references/payment/classes/payment.AbstractPaymentProcessor.mdx create mode 100644 www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessor.mdx create mode 100644 www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessorContext.mdx create mode 100644 www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessorError.mdx rename www/apps/docs/content/references/{medusa/types/medusa.PaymentProcessorSessionResponse.mdx => payment/interfaces/payment.PaymentProcessorSessionResponse.mdx} (57%) create mode 100644 www/apps/docs/src/utils/decode-str.ts diff --git a/docs-util/packages/scripts/generate-reference.ts b/docs-util/packages/scripts/generate-reference.ts index 344116db81..7cd7f080a1 100644 --- a/docs-util/packages/scripts/generate-reference.ts +++ b/docs-util/packages/scripts/generate-reference.ts @@ -12,7 +12,7 @@ const require = createRequire(import.meta.url) const referenceNames = process.argv.slice(2) || ["all"] const basePath = path.join(require.resolve("typedoc-config"), "..") let generatedCount = 0 -let totalCount = 0 +let totalCount = referenceNames.length let ranMerger = false if (!referenceNames.length) { @@ -37,7 +37,6 @@ referenceNames.forEach((name) => { } else if (name === "merge") { runMerger() } else { - totalCount = 1 generateReference(`${name}.js`) } }) diff --git a/docs-util/packages/typedoc-config/_merger.js b/docs-util/packages/typedoc-config/_merger.js index 0af5346beb..7ac1d9d678 100644 --- a/docs-util/packages/typedoc-config/_merger.js +++ b/docs-util/packages/typedoc-config/_merger.js @@ -227,6 +227,27 @@ module.exports = { }, }, + // PAYMENT CONFIG + "^payment": { + frontmatterData: { + displayed_sidebar: "modules", + }, + maxLevel: 2, + }, + "^payment/.*AbstractPaymentProcessor": { + reflectionDescription: `In this document, you’ll learn how to create a Payment Processor in your Medusa backend. If you’re unfamiliar with the Payment architecture in Medusa, make sure to check out the [overview](https://docs.medusajs.com/modules/carts-and-checkout/payment) first.`, + frontmatterData: { + displayed_sidebar: "modules", + slug: "/modules/carts-and-checkout/backend/add-payment-provider", + }, + reflectionTitle: { + fullReplacement: "How to Create a Payment Processor", + }, + reflectionGroups: { + Properties: false, + }, + }, + // PRICING CONFIG "^(pricing|IPricingModuleService)": { ...modulesOptions, diff --git a/docs-util/packages/typedoc-config/fulfillment.js b/docs-util/packages/typedoc-config/fulfillment.js index db271afac5..2561520e65 100644 --- a/docs-util/packages/typedoc-config/fulfillment.js +++ b/docs-util/packages/typedoc-config/fulfillment.js @@ -5,5 +5,4 @@ module.exports = getConfig({ entryPointPath: "packages/medusa/src/interfaces/fulfillment-service.ts", tsConfigName: "medusa.json", name: "fulfillment", - // enableInternalResolve: true, }) diff --git a/docs-util/packages/typedoc-config/payment.js b/docs-util/packages/typedoc-config/payment.js new file mode 100644 index 0000000000..2fcf94944f --- /dev/null +++ b/docs-util/packages/typedoc-config/payment.js @@ -0,0 +1,8 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +const getConfig = require("./utils/get-config") + +module.exports = getConfig({ + entryPointPath: "packages/medusa/src/interfaces/payment-processor.ts", + tsConfigName: "medusa.json", + name: "payment", +}) diff --git a/docs-util/packages/typedoc-plugin-markdown-medusa/src/resources/helpers/declaration-title.ts b/docs-util/packages/typedoc-plugin-markdown-medusa/src/resources/helpers/declaration-title.ts index 3b359f6a1c..fc0f169ac6 100644 --- a/docs-util/packages/typedoc-plugin-markdown-medusa/src/resources/helpers/declaration-title.ts +++ b/docs-util/packages/typedoc-plugin-markdown-medusa/src/resources/helpers/declaration-title.ts @@ -8,7 +8,7 @@ import { } from "typedoc" import { MarkdownTheme } from "../../theme" import { memberSymbol, stripComments } from "../../utils" -import { escapeChars, stripLineBreaks } from "utils" +import { escapeChars, stripLineBreaks, getType as getTypeUtils } from "utils" export default function (theme: MarkdownTheme) { Handlebars.registerHelper( @@ -25,10 +25,12 @@ export default function (theme: MarkdownTheme) { } return ( (reflection.parent?.kindOf(ReflectionKind.Enum) ? " = " : ": ") + - Handlebars.helpers.type.call( - reflectionType ? reflectionType : reflection, - "object" - ) + getTypeUtils({ + reflectionType: reflectionType || reflection.type, + collapse: "object", + escape: true, + getRelativeUrlMethod: Handlebars.helpers.relativeURL, + }) ) } diff --git a/docs-util/packages/typedoc-plugin-markdown-medusa/src/resources/helpers/signature-title.ts b/docs-util/packages/typedoc-plugin-markdown-medusa/src/resources/helpers/signature-title.ts index 7d20368eb9..026c0aa824 100644 --- a/docs-util/packages/typedoc-plugin-markdown-medusa/src/resources/helpers/signature-title.ts +++ b/docs-util/packages/typedoc-plugin-markdown-medusa/src/resources/helpers/signature-title.ts @@ -66,7 +66,9 @@ export default function (theme: MarkdownTheme) { md.push(`(${getParameters(this.parameters, false)})`) if (this.type && !this.parent?.kindOf(ReflectionKind.Constructor)) { - md.push(`: ${Handlebars.helpers.type.call(this.type, "none", false)}`) + md.push( + `: ${Handlebars.helpers.type.call(this.type, "none", !expandMembers)}` + ) } if (!expandMembers) { diff --git a/docs-util/packages/typedoc-plugin-markdown-medusa/src/resources/helpers/type-declaration-object-literal.ts b/docs-util/packages/typedoc-plugin-markdown-medusa/src/resources/helpers/type-declaration-object-literal.ts index d2bee02ca7..c4e47e7250 100644 --- a/docs-util/packages/typedoc-plugin-markdown-medusa/src/resources/helpers/type-declaration-object-literal.ts +++ b/docs-util/packages/typedoc-plugin-markdown-medusa/src/resources/helpers/type-declaration-object-literal.ts @@ -19,7 +19,7 @@ export default function (theme: MarkdownTheme) { const properties = this.reduce( (acc: ReflectionParameterType[], current: ReflectionParameterType) => - parseParams(current, acc), + parseParams(current, acc, false), [] ) as DeclarationReflection[] diff --git a/docs-util/packages/typedoc-plugin-markdown-medusa/src/utils/params-utils.ts b/docs-util/packages/typedoc-plugin-markdown-medusa/src/utils/params-utils.ts index b7195806fa..b18755d7d8 100644 --- a/docs-util/packages/typedoc-plugin-markdown-medusa/src/utils/params-utils.ts +++ b/docs-util/packages/typedoc-plugin-markdown-medusa/src/utils/params-utils.ts @@ -23,13 +23,16 @@ export function flattenParams( export function parseParams( current: ReflectionParameterType, - acc: ReflectionParameterType[] + acc: ReflectionParameterType[], + flatten?: boolean ): ReflectionParameterType[] { const shouldFlatten = - current.type && - "declaration" in current.type && - current.type?.declaration?.kind === ReflectionKind.TypeLiteral && - current.type?.declaration?.children + flatten !== undefined + ? flatten + : current.type && + "declaration" in current.type && + current.type?.declaration?.kind === ReflectionKind.TypeLiteral && + current.type?.declaration?.children return shouldFlatten ? [...acc, current, ...flattenParams(current)] : [...acc, current] diff --git a/docs-util/packages/typedoc-plugin-markdown-medusa/src/utils/reflection-formatter.ts b/docs-util/packages/typedoc-plugin-markdown-medusa/src/utils/reflection-formatter.ts index 668cd24591..45648f1488 100644 --- a/docs-util/packages/typedoc-plugin-markdown-medusa/src/utils/reflection-formatter.ts +++ b/docs-util/packages/typedoc-plugin-markdown-medusa/src/utils/reflection-formatter.ts @@ -128,12 +128,13 @@ export function reflectionComponentFormatter({ reflectionType: reflection.type, collapse: "object", project: reflection.project, + escape: true, getRelativeUrlMethod: Handlebars.helpers.relativeURL, }) : getReflectionType({ reflectionType: reflection, collapse: "object", - wrapBackticks: true, + // escape: true, project: reflection.project, getRelativeUrlMethod: Handlebars.helpers.relativeURL, }), @@ -153,15 +154,6 @@ export function reflectionComponentFormatter({ (reflection.type || hasChildren) && level + 1 <= (maxLevel || MarkdownTheme.MAX_LEVEL) ) { - // if ( - // reflection.name === "user" && - // reflection.type && - // "name" in reflection.type && - // reflection.type.name.startsWith("Omit") && - // "typeArguments" in reflection.type - // ) { - // console.log(reflection) - // } const children = hasChildren ? reflection.children : getTypeChildren(reflection.type!, project || reflection.project) diff --git a/docs-util/packages/typedoc-plugin-markdown-medusa/src/utils/return-reflection-formatter.ts b/docs-util/packages/typedoc-plugin-markdown-medusa/src/utils/return-reflection-formatter.ts index c9e31995b5..6139d1eea0 100644 --- a/docs-util/packages/typedoc-plugin-markdown-medusa/src/utils/return-reflection-formatter.ts +++ b/docs-util/packages/typedoc-plugin-markdown-medusa/src/utils/return-reflection-formatter.ts @@ -34,14 +34,21 @@ export function returnReflectionComponentFormatter({ reflectionType, collapse: "object", wrapBackticks: false, + escape: false, hideLink: true, project, getRelativeUrlMethod: Handlebars.helpers.relativeURL, }) + // if ( + // typeName === "Record<string, unknown> \\| PaymentProcessorError" + // ) { + // console.log(reflectionType) + // } const type = getType({ reflectionType: reflectionType, collapse: "object", project, + escape: true, getRelativeUrlMethod: Handlebars.helpers.relativeURL, }) const componentItem: Parameter[] = [] diff --git a/docs-util/packages/utils/src/get-type-str.ts b/docs-util/packages/utils/src/get-type-str.ts index 20ff610118..b6b3b96a3b 100644 --- a/docs-util/packages/utils/src/get-type-str.ts +++ b/docs-util/packages/utils/src/get-type-str.ts @@ -312,10 +312,9 @@ export function getReferenceType({ getRelativeUrlMethod, ...options }: TypeOptions): string { - escape = getShouldEscape(wrapBackticks, escape) - const shouldShowLink = !hideLink && model.name !== "Record" const wrappedInBackticks = wrapBackticks && !shouldShowLink + escape = getShouldEscape(wrappedInBackticks, escape) let modelReflection = model.reflection if (!modelReflection && project) { // try to load reflection diff --git a/docs-util/typedoc-json-output/0-medusa.json b/docs-util/typedoc-json-output/0-medusa.json index cd2c22c954..e56eb238ab 100644 --- a/docs-util/typedoc-json-output/0-medusa.json +++ b/docs-util/typedoc-json-output/0-medusa.json @@ -6,7 +6,7 @@ "flags": {}, "children": [ { - "id": 4732, + "id": 4759, "name": "\"medusa-interfaces\"", "variant": "declaration", "kind": 4, @@ -14,27 +14,27 @@ "extendedBy": [ { "type": "reference", - "target": 3591, + "target": 3600, "name": "AbstractTaxService" } ], "implementedBy": [ { "type": "reference", - "target": 3384, + "target": 3393, "name": "AbstractPaymentService" } ] }, { - "id": 3640, + "id": 3649, "name": "BatchJobStatus", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 3646, + "id": 3655, "name": "CANCELED", "variant": "declaration", "kind": 16, @@ -45,7 +45,7 @@ } }, { - "id": 3645, + "id": 3654, "name": "COMPLETED", "variant": "declaration", "kind": 16, @@ -56,7 +56,7 @@ } }, { - "id": 3643, + "id": 3652, "name": "CONFIRMED", "variant": "declaration", "kind": 16, @@ -67,7 +67,7 @@ } }, { - "id": 3641, + "id": 3650, "name": "CREATED", "variant": "declaration", "kind": 16, @@ -78,7 +78,7 @@ } }, { - "id": 3647, + "id": 3656, "name": "FAILED", "variant": "declaration", "kind": 16, @@ -89,7 +89,7 @@ } }, { - "id": 3642, + "id": 3651, "name": "PRE_PROCESSED", "variant": "declaration", "kind": 16, @@ -100,7 +100,7 @@ } }, { - "id": 3644, + "id": 3653, "name": "PROCESSING", "variant": "declaration", "kind": 16, @@ -115,33 +115,33 @@ { "title": "Enumeration Members", "children": [ - 3646, - 3645, - 3643, - 3641, - 3647, - 3642, - 3644 + 3655, + 3654, + 3652, + 3650, + 3656, + 3651, + 3653 ] } ] }, { - "id": 4743, + "id": 4770, "name": "DefaultPriceType", "variant": "declaration", "kind": 8, "flags": {} }, { - "id": 4981, + "id": 5073, "name": "MODULE_RESOURCE_TYPE", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 4983, + "id": 5075, "name": "ISOLATED", "variant": "declaration", "kind": 16, @@ -152,7 +152,7 @@ } }, { - "id": 4982, + "id": 5074, "name": "SHARED", "variant": "declaration", "kind": 16, @@ -167,21 +167,21 @@ { "title": "Enumeration Members", "children": [ - 4983, - 4982 + 5075, + 5074 ] } ] }, { - "id": 4081, + "id": 4093, "name": "PostgresError", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 4082, + "id": 4094, "name": "DUPLICATE_ERROR", "variant": "declaration", "kind": 16, @@ -192,7 +192,7 @@ } }, { - "id": 4083, + "id": 4095, "name": "FOREIGN_KEY_ERROR", "variant": "declaration", "kind": 16, @@ -203,7 +203,7 @@ } }, { - "id": 4085, + "id": 4097, "name": "NULL_VIOLATION", "variant": "declaration", "kind": 16, @@ -214,7 +214,7 @@ } }, { - "id": 4084, + "id": 4096, "name": "SERIALIZATION_FAILURE", "variant": "declaration", "kind": 16, @@ -229,16 +229,16 @@ { "title": "Enumeration Members", "children": [ - 4082, - 4083, - 4085, - 4084 + 4094, + 4095, + 4097, + 4096 ] } ] }, { - "id": 3906, + "id": 3915, "name": "PriceListStatus", "variant": "declaration", "kind": 8, @@ -253,7 +253,7 @@ }, "children": [ { - "id": 3907, + "id": 3916, "name": "ACTIVE", "variant": "declaration", "kind": 16, @@ -272,7 +272,7 @@ } }, { - "id": 3908, + "id": 3917, "name": "DRAFT", "variant": "declaration", "kind": 16, @@ -295,21 +295,21 @@ { "title": "Enumeration Members", "children": [ - 3907, - 3908 + 3916, + 3917 ] } ] }, { - "id": 4363, + "id": 4390, "name": "PriceListStatus", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 4364, + "id": 4391, "name": "ACTIVE", "variant": "declaration", "kind": 16, @@ -320,7 +320,7 @@ } }, { - "id": 4365, + "id": 4392, "name": "DRAFT", "variant": "declaration", "kind": 16, @@ -335,14 +335,14 @@ { "title": "Enumeration Members", "children": [ - 4364, - 4365 + 4391, + 4392 ] } ] }, { - "id": 3903, + "id": 3912, "name": "PriceListType", "variant": "declaration", "kind": 8, @@ -357,7 +357,7 @@ }, "children": [ { - "id": 3905, + "id": 3914, "name": "OVERRIDE", "variant": "declaration", "kind": 16, @@ -376,7 +376,7 @@ } }, { - "id": 3904, + "id": 3913, "name": "SALE", "variant": "declaration", "kind": 16, @@ -399,21 +399,21 @@ { "title": "Enumeration Members", "children": [ - 3905, - 3904 + 3914, + 3913 ] } ] }, { - "id": 4366, + "id": 4393, "name": "PriceListType", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 4368, + "id": 4395, "name": "OVERRIDE", "variant": "declaration", "kind": 16, @@ -424,7 +424,7 @@ } }, { - "id": 4367, + "id": 4394, "name": "SALE", "variant": "declaration", "kind": 16, @@ -439,14 +439,78 @@ { "title": "Enumeration Members", "children": [ - 4368, - 4367 + 4395, + 4394 ] } ] }, { - "id": 4742, + "id": 5097, + "name": "ProductStatus", + "variant": "declaration", + "kind": 8, + "flags": {}, + "children": [ + { + "id": 5098, + "name": "DRAFT", + "variant": "declaration", + "kind": 16, + "flags": {}, + "type": { + "type": "literal", + "value": "draft" + } + }, + { + "id": 5099, + "name": "PROPOSED", + "variant": "declaration", + "kind": 16, + "flags": {}, + "type": { + "type": "literal", + "value": "proposed" + } + }, + { + "id": 5100, + "name": "PUBLISHED", + "variant": "declaration", + "kind": 16, + "flags": {}, + "type": { + "type": "literal", + "value": "published" + } + }, + { + "id": 5101, + "name": "REJECTED", + "variant": "declaration", + "kind": 16, + "flags": {}, + "type": { + "type": "literal", + "value": "rejected" + } + } + ], + "groups": [ + { + "title": "Enumeration Members", + "children": [ + 5098, + 5099, + 5100, + 5101 + ] + } + ] + }, + { + "id": 4769, "name": "DEFAULT", "variant": "declaration", "kind": 16, @@ -457,7 +521,7 @@ } }, { - "id": 4996, + "id": 5088, "name": "EXTERNAL", "variant": "declaration", "kind": 16, @@ -468,7 +532,7 @@ } }, { - "id": 4980, + "id": 5072, "name": "INTERNAL", "variant": "declaration", "kind": 16, @@ -479,7 +543,7 @@ } }, { - "id": 2745, + "id": 2756, "name": "AbstractBatchJobStrategy", "variant": "declaration", "kind": 128, @@ -488,7 +552,7 @@ }, "children": [ { - "id": 2748, + "id": 2759, "name": "constructor", "variant": "declaration", "kind": 512, @@ -497,14 +561,14 @@ }, "signatures": [ { - "id": 2749, + "id": 2760, "name": "new AbstractBatchJobStrategy", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 2750, + "id": 2761, "name": "__container__", "variant": "param", "kind": 32768, @@ -515,7 +579,7 @@ } }, { - "id": 2751, + "id": 2762, "name": "__configModule__", "variant": "param", "kind": 32768, @@ -543,7 +607,7 @@ } }, { - "id": 2752, + "id": 2763, "name": "__moduleDeclaration__", "variant": "param", "kind": 32768, @@ -573,25 +637,25 @@ ], "type": { "type": "reference", - "target": 2745, + "target": 2756, "name": "AbstractBatchJobStrategy", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3604, + "target": 3613, "name": "TransactionBaseService.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3603, + "target": 3612, "name": "TransactionBaseService.constructor" } }, { - "id": 2781, + "id": 2792, "name": "__configModule__", "variant": "declaration", "kind": 1024, @@ -621,17 +685,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3613, + "target": 3622, "name": "TransactionBaseService.__configModule__" }, "implementationOf": { "type": "reference", - "target": 2719, + "target": 2730, "name": "IBatchJobStrategy.__configModule__" } }, { - "id": 2780, + "id": 2791, "name": "__container__", "variant": "declaration", "kind": 1024, @@ -645,17 +709,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3612, + "target": 3621, "name": "TransactionBaseService.__container__" }, "implementationOf": { "type": "reference", - "target": 2718, + "target": 2729, "name": "IBatchJobStrategy.__container__" } }, { - "id": 2782, + "id": 2793, "name": "__moduleDeclaration__", "variant": "declaration", "kind": 1024, @@ -685,17 +749,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3614, + "target": 3623, "name": "TransactionBaseService.__moduleDeclaration__" }, "implementationOf": { "type": "reference", - "target": 2720, + "target": 2731, "name": "IBatchJobStrategy.__moduleDeclaration__" } }, { - "id": 2753, + "id": 2764, "name": "batchJobService_", "variant": "declaration", "kind": 1024, @@ -714,7 +778,7 @@ } }, { - "id": 2776, + "id": 2787, "name": "manager_", "variant": "declaration", "kind": 1024, @@ -732,17 +796,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3608, + "target": 3617, "name": "TransactionBaseService.manager_" }, "implementationOf": { "type": "reference", - "target": 2714, + "target": 2725, "name": "IBatchJobStrategy.manager_" } }, { - "id": 2777, + "id": 2788, "name": "transactionManager_", "variant": "declaration", "kind": 1024, @@ -769,17 +833,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3609, + "target": 3618, "name": "TransactionBaseService.transactionManager_" }, "implementationOf": { "type": "reference", - "target": 2715, + "target": 2726, "name": "IBatchJobStrategy.transactionManager_" } }, { - "id": 2747, + "id": 2758, "name": "batchType", "variant": "declaration", "kind": 1024, @@ -792,7 +856,7 @@ } }, { - "id": 2746, + "id": 2757, "name": "identifier", "variant": "declaration", "kind": 1024, @@ -805,7 +869,7 @@ } }, { - "id": 2778, + "id": 2789, "name": "activeManager_", "variant": "declaration", "kind": 262144, @@ -813,7 +877,7 @@ "isProtected": true }, "getSignature": { - "id": 2779, + "id": 2790, "name": "activeManager_", "variant": "signature", "kind": 524288, @@ -840,17 +904,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3610, + "target": 3619, "name": "TransactionBaseService.activeManager_" }, "implementationOf": { "type": "reference", - "target": 2716, + "target": 2727, "name": "IBatchJobStrategy.activeManager_" } }, { - "id": 2791, + "id": 2802, "name": "atomicPhase_", "variant": "declaration", "kind": 2048, @@ -859,7 +923,7 @@ }, "signatures": [ { - "id": 2792, + "id": 2803, "name": "atomicPhase_", "variant": "signature", "kind": 4096, @@ -885,14 +949,14 @@ }, "typeParameter": [ { - "id": 2793, + "id": 2804, "name": "TResult", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 2794, + "id": 2805, "name": "TError", "variant": "typeParam", "kind": 131072, @@ -901,7 +965,7 @@ ], "parameters": [ { - "id": 2795, + "id": 2806, "name": "work", "variant": "param", "kind": 32768, @@ -917,21 +981,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2796, + "id": 2807, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2797, + "id": 2808, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2798, + "id": 2809, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -970,7 +1034,7 @@ } }, { - "id": 2799, + "id": 2810, "name": "isolationOrErrorHandler", "variant": "param", "kind": 32768, @@ -1000,21 +1064,21 @@ { "type": "reflection", "declaration": { - "id": 2800, + "id": 2811, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2801, + "id": 2812, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2802, + "id": 2813, "name": "error", "variant": "param", "kind": 32768, @@ -1061,7 +1125,7 @@ } }, { - "id": 2803, + "id": 2814, "name": "maybeErrorHandlerOrDontFail", "variant": "param", "kind": 32768, @@ -1079,21 +1143,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2804, + "id": 2815, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2805, + "id": 2816, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2806, + "id": 2817, "name": "error", "variant": "param", "kind": 32768, @@ -1157,29 +1221,29 @@ }, "inheritedFrom": { "type": "reference", - "target": 3624, + "target": 3633, "name": "TransactionBaseService.atomicPhase_" }, "implementationOf": { "type": "reference", - "target": 2730, + "target": 2741, "name": "IBatchJobStrategy.atomicPhase_" } } ], "inheritedFrom": { "type": "reference", - "target": 3623, + "target": 3632, "name": "TransactionBaseService.atomicPhase_" }, "implementationOf": { "type": "reference", - "target": 2729, + "target": 2740, "name": "IBatchJobStrategy.atomicPhase_" } }, { - "id": 2764, + "id": 2775, "name": "buildTemplate", "variant": "declaration", "kind": 2048, @@ -1189,7 +1253,7 @@ }, "signatures": [ { - "id": 2765, + "id": 2776, "name": "buildTemplate", "variant": "signature", "kind": 4096, @@ -1219,19 +1283,19 @@ }, "implementationOf": { "type": "reference", - "target": 2713, + "target": 2724, "name": "IBatchJobStrategy.buildTemplate" } } ], "implementationOf": { "type": "reference", - "target": 2712, + "target": 2723, "name": "IBatchJobStrategy.buildTemplate" } }, { - "id": 2770, + "id": 2781, "name": "handleProcessingError", "variant": "declaration", "kind": 2048, @@ -1240,14 +1304,14 @@ }, "signatures": [ { - "id": 2771, + "id": 2782, "name": "handleProcessingError", "variant": "signature", "kind": 4096, "flags": {}, "typeParameter": [ { - "id": 2772, + "id": 2783, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1256,7 +1320,7 @@ ], "parameters": [ { - "id": 2773, + "id": 2784, "name": "batchJobId", "variant": "param", "kind": 32768, @@ -1267,7 +1331,7 @@ } }, { - "id": 2774, + "id": 2785, "name": "err", "variant": "param", "kind": 32768, @@ -1278,7 +1342,7 @@ } }, { - "id": 2775, + "id": 2786, "name": "result", "variant": "param", "kind": 32768, @@ -1310,7 +1374,7 @@ ] }, { - "id": 2758, + "id": 2769, "name": "preProcessBatchJob", "variant": "declaration", "kind": 2048, @@ -1319,7 +1383,7 @@ }, "signatures": [ { - "id": 2759, + "id": 2770, "name": "preProcessBatchJob", "variant": "signature", "kind": 4096, @@ -1334,7 +1398,7 @@ }, "parameters": [ { - "id": 2760, + "id": 2771, "name": "batchJobId", "variant": "param", "kind": 32768, @@ -1362,26 +1426,26 @@ }, "implementationOf": { "type": "reference", - "target": 2707, + "target": 2718, "name": "IBatchJobStrategy.preProcessBatchJob" } } ], "implementationOf": { "type": "reference", - "target": 2706, + "target": 2717, "name": "IBatchJobStrategy.preProcessBatchJob" } }, { - "id": 2754, + "id": 2765, "name": "prepareBatchJobForProcessing", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2755, + "id": 2766, "name": "prepareBatchJobForProcessing", "variant": "signature", "kind": 4096, @@ -1396,20 +1460,20 @@ }, "parameters": [ { - "id": 2756, + "id": 2767, "name": "batchJob", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3649, + "target": 3658, "name": "CreateBatchJobInput", "package": "@medusajs/medusa" } }, { - "id": 2757, + "id": 2768, "name": "req", "variant": "param", "kind": 32768, @@ -1435,7 +1499,7 @@ "typeArguments": [ { "type": "reference", - "target": 3649, + "target": 3658, "name": "CreateBatchJobInput", "package": "@medusajs/medusa" } @@ -1445,19 +1509,19 @@ }, "implementationOf": { "type": "reference", - "target": 2703, + "target": 2714, "name": "IBatchJobStrategy.prepareBatchJobForProcessing" } } ], "implementationOf": { "type": "reference", - "target": 2702, + "target": 2713, "name": "IBatchJobStrategy.prepareBatchJobForProcessing" } }, { - "id": 2761, + "id": 2772, "name": "processJob", "variant": "declaration", "kind": 2048, @@ -1467,7 +1531,7 @@ }, "signatures": [ { - "id": 2762, + "id": 2773, "name": "processJob", "variant": "signature", "kind": 4096, @@ -1482,7 +1546,7 @@ }, "parameters": [ { - "id": 2763, + "id": 2774, "name": "batchJobId", "variant": "param", "kind": 32768, @@ -1510,19 +1574,19 @@ }, "implementationOf": { "type": "reference", - "target": 2710, + "target": 2721, "name": "IBatchJobStrategy.processJob" } } ], "implementationOf": { "type": "reference", - "target": 2709, + "target": 2720, "name": "IBatchJobStrategy.processJob" } }, { - "id": 2766, + "id": 2777, "name": "shouldRetryOnProcessingError", "variant": "declaration", "kind": 2048, @@ -1531,14 +1595,14 @@ }, "signatures": [ { - "id": 2767, + "id": 2778, "name": "shouldRetryOnProcessingError", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2768, + "id": 2779, "name": "batchJob", "variant": "param", "kind": 32768, @@ -1562,7 +1626,7 @@ } }, { - "id": 2769, + "id": 2780, "name": "err", "variant": "param", "kind": 32768, @@ -1592,7 +1656,7 @@ ] }, { - "id": 2786, + "id": 2797, "name": "shouldRetryTransaction_", "variant": "declaration", "kind": 2048, @@ -1601,14 +1665,14 @@ }, "signatures": [ { - "id": 2787, + "id": 2798, "name": "shouldRetryTransaction_", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2788, + "id": 2799, "name": "err", "variant": "param", "kind": 32768, @@ -1638,14 +1702,14 @@ { "type": "reflection", "declaration": { - "id": 2789, + "id": 2800, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2790, + "id": 2801, "name": "code", "variant": "declaration", "kind": 1024, @@ -1660,7 +1724,7 @@ { "title": "Properties", "children": [ - 2790 + 2801 ] } ] @@ -1676,43 +1740,43 @@ }, "inheritedFrom": { "type": "reference", - "target": 3619, + "target": 3628, "name": "TransactionBaseService.shouldRetryTransaction_" }, "implementationOf": { "type": "reference", - "target": 2725, + "target": 2736, "name": "IBatchJobStrategy.shouldRetryTransaction_" } } ], "inheritedFrom": { "type": "reference", - "target": 3618, + "target": 3627, "name": "TransactionBaseService.shouldRetryTransaction_" }, "implementationOf": { "type": "reference", - "target": 2724, + "target": 2735, "name": "IBatchJobStrategy.shouldRetryTransaction_" } }, { - "id": 2783, + "id": 2794, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2784, + "id": 2795, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2785, + "id": 2796, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -1732,30 +1796,30 @@ ], "type": { "type": "reference", - "target": 2745, + "target": 2756, "name": "AbstractBatchJobStrategy", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3616, + "target": 3625, "name": "TransactionBaseService.withTransaction" }, "implementationOf": { "type": "reference", - "target": 2722, + "target": 2733, "name": "IBatchJobStrategy.withTransaction" } } ], "inheritedFrom": { "type": "reference", - "target": 3615, + "target": 3624, "name": "TransactionBaseService.withTransaction" }, "implementationOf": { "type": "reference", - "target": 2721, + "target": 2732, "name": "IBatchJobStrategy.withTransaction" } } @@ -1764,47 +1828,47 @@ { "title": "Constructors", "children": [ - 2748 + 2759 ] }, { "title": "Properties", "children": [ - 2781, - 2780, - 2782, - 2753, - 2776, - 2777, - 2747, - 2746 + 2792, + 2791, + 2793, + 2764, + 2787, + 2788, + 2758, + 2757 ] }, { "title": "Accessors", "children": [ - 2778 + 2789 ] }, { "title": "Methods", "children": [ - 2791, - 2764, - 2770, - 2758, - 2754, - 2761, - 2766, - 2786, - 2783 + 2802, + 2775, + 2781, + 2769, + 2765, + 2772, + 2777, + 2797, + 2794 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3602, + "target": 3611, "name": "TransactionBaseService", "package": "@medusajs/medusa" } @@ -1812,14 +1876,14 @@ "implementedTypes": [ { "type": "reference", - "target": 2701, + "target": 2712, "name": "IBatchJobStrategy", "package": "@medusajs/medusa" } ] }, { - "id": 2820, + "id": 2831, "name": "AbstractCartCompletionStrategy", "variant": "declaration", "kind": 128, @@ -1828,7 +1892,7 @@ }, "children": [ { - "id": 2821, + "id": 2832, "name": "constructor", "variant": "declaration", "kind": 512, @@ -1837,14 +1901,14 @@ }, "signatures": [ { - "id": 2822, + "id": 2833, "name": "new AbstractCartCompletionStrategy", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 2823, + "id": 2834, "name": "__container__", "variant": "param", "kind": 32768, @@ -1855,7 +1919,7 @@ } }, { - "id": 2824, + "id": 2835, "name": "__configModule__", "variant": "param", "kind": 32768, @@ -1883,7 +1947,7 @@ } }, { - "id": 2825, + "id": 2836, "name": "__moduleDeclaration__", "variant": "param", "kind": 32768, @@ -1913,25 +1977,25 @@ ], "type": { "type": "reference", - "target": 2820, + "target": 2831, "name": "AbstractCartCompletionStrategy", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3604, + "target": 3613, "name": "TransactionBaseService.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3603, + "target": 3612, "name": "TransactionBaseService.constructor" } }, { - "id": 2836, + "id": 2847, "name": "__configModule__", "variant": "declaration", "kind": 1024, @@ -1961,12 +2025,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3613, + "target": 3622, "name": "TransactionBaseService.__configModule__" } }, { - "id": 2835, + "id": 2846, "name": "__container__", "variant": "declaration", "kind": 1024, @@ -1980,12 +2044,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3612, + "target": 3621, "name": "TransactionBaseService.__container__" } }, { - "id": 2837, + "id": 2848, "name": "__moduleDeclaration__", "variant": "declaration", "kind": 1024, @@ -2015,12 +2079,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3614, + "target": 3623, "name": "TransactionBaseService.__moduleDeclaration__" } }, { - "id": 2831, + "id": 2842, "name": "manager_", "variant": "declaration", "kind": 1024, @@ -2038,12 +2102,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3608, + "target": 3617, "name": "TransactionBaseService.manager_" } }, { - "id": 2832, + "id": 2843, "name": "transactionManager_", "variant": "declaration", "kind": 1024, @@ -2070,12 +2134,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3609, + "target": 3618, "name": "TransactionBaseService.transactionManager_" } }, { - "id": 2833, + "id": 2844, "name": "activeManager_", "variant": "declaration", "kind": 262144, @@ -2083,7 +2147,7 @@ "isProtected": true }, "getSignature": { - "id": 2834, + "id": 2845, "name": "activeManager_", "variant": "signature", "kind": 524288, @@ -2105,12 +2169,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3610, + "target": 3619, "name": "TransactionBaseService.activeManager_" } }, { - "id": 2846, + "id": 2857, "name": "atomicPhase_", "variant": "declaration", "kind": 2048, @@ -2119,7 +2183,7 @@ }, "signatures": [ { - "id": 2847, + "id": 2858, "name": "atomicPhase_", "variant": "signature", "kind": 4096, @@ -2145,14 +2209,14 @@ }, "typeParameter": [ { - "id": 2848, + "id": 2859, "name": "TResult", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 2849, + "id": 2860, "name": "TError", "variant": "typeParam", "kind": 131072, @@ -2161,7 +2225,7 @@ ], "parameters": [ { - "id": 2850, + "id": 2861, "name": "work", "variant": "param", "kind": 32768, @@ -2177,21 +2241,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2851, + "id": 2862, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2852, + "id": 2863, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2853, + "id": 2864, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -2230,7 +2294,7 @@ } }, { - "id": 2854, + "id": 2865, "name": "isolationOrErrorHandler", "variant": "param", "kind": 32768, @@ -2260,21 +2324,21 @@ { "type": "reflection", "declaration": { - "id": 2855, + "id": 2866, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2856, + "id": 2867, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2857, + "id": 2868, "name": "error", "variant": "param", "kind": 32768, @@ -2321,7 +2385,7 @@ } }, { - "id": 2858, + "id": 2869, "name": "maybeErrorHandlerOrDontFail", "variant": "param", "kind": 32768, @@ -2339,21 +2403,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2859, + "id": 2870, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2860, + "id": 2871, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2861, + "id": 2872, "name": "error", "variant": "param", "kind": 32768, @@ -2417,19 +2481,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 3624, + "target": 3633, "name": "TransactionBaseService.atomicPhase_" } } ], "inheritedFrom": { "type": "reference", - "target": 3623, + "target": 3632, "name": "TransactionBaseService.atomicPhase_" } }, { - "id": 2826, + "id": 2837, "name": "complete", "variant": "declaration", "kind": 2048, @@ -2438,7 +2502,7 @@ }, "signatures": [ { - "id": 2827, + "id": 2838, "name": "complete", "variant": "signature", "kind": 4096, @@ -2464,7 +2528,7 @@ }, "parameters": [ { - "id": 2828, + "id": 2839, "name": "cartId", "variant": "param", "kind": 32768, @@ -2483,7 +2547,7 @@ } }, { - "id": 2829, + "id": 2840, "name": "idempotencyKey", "variant": "param", "kind": 32768, @@ -2507,7 +2571,7 @@ } }, { - "id": 2830, + "id": 2841, "name": "context", "variant": "param", "kind": 32768, @@ -2522,7 +2586,7 @@ }, "type": { "type": "reference", - "target": 4672, + "target": 4699, "name": "RequestContext", "package": "@medusajs/medusa" } @@ -2537,7 +2601,7 @@ "typeArguments": [ { "type": "reference", - "target": 2810, + "target": 2821, "name": "CartCompletionResponse", "package": "@medusajs/medusa" } @@ -2547,19 +2611,19 @@ }, "implementationOf": { "type": "reference", - "target": 2816, + "target": 2827, "name": "ICartCompletionStrategy.complete" } } ], "implementationOf": { "type": "reference", - "target": 2815, + "target": 2826, "name": "ICartCompletionStrategy.complete" } }, { - "id": 2841, + "id": 2852, "name": "shouldRetryTransaction_", "variant": "declaration", "kind": 2048, @@ -2568,14 +2632,14 @@ }, "signatures": [ { - "id": 2842, + "id": 2853, "name": "shouldRetryTransaction_", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2843, + "id": 2854, "name": "err", "variant": "param", "kind": 32768, @@ -2605,14 +2669,14 @@ { "type": "reflection", "declaration": { - "id": 2844, + "id": 2855, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2845, + "id": 2856, "name": "code", "variant": "declaration", "kind": 1024, @@ -2627,7 +2691,7 @@ { "title": "Properties", "children": [ - 2845 + 2856 ] } ] @@ -2643,33 +2707,33 @@ }, "inheritedFrom": { "type": "reference", - "target": 3619, + "target": 3628, "name": "TransactionBaseService.shouldRetryTransaction_" } } ], "inheritedFrom": { "type": "reference", - "target": 3618, + "target": 3627, "name": "TransactionBaseService.shouldRetryTransaction_" } }, { - "id": 2838, + "id": 2849, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2839, + "id": 2850, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2840, + "id": 2851, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -2689,20 +2753,20 @@ ], "type": { "type": "reference", - "target": 2820, + "target": 2831, "name": "AbstractCartCompletionStrategy", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3616, + "target": 3625, "name": "TransactionBaseService.withTransaction" } } ], "inheritedFrom": { "type": "reference", - "target": 3615, + "target": 3624, "name": "TransactionBaseService.withTransaction" } } @@ -2711,39 +2775,39 @@ { "title": "Constructors", "children": [ - 2821 + 2832 ] }, { "title": "Properties", "children": [ - 2836, - 2835, - 2837, - 2831, - 2832 + 2847, + 2846, + 2848, + 2842, + 2843 ] }, { "title": "Accessors", "children": [ - 2833 + 2844 ] }, { "title": "Methods", "children": [ - 2846, - 2826, - 2841, - 2838 + 2857, + 2837, + 2852, + 2849 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3602, + "target": 3611, "name": "TransactionBaseService", "package": "@medusajs/medusa" } @@ -2751,14 +2815,14 @@ "implementedTypes": [ { "type": "reference", - "target": 2814, + "target": 2825, "name": "ICartCompletionStrategy", "package": "@medusajs/medusa" } ] }, { - "id": 2912, + "id": 2923, "name": "AbstractFileService", "variant": "declaration", "kind": 128, @@ -2767,7 +2831,7 @@ }, "children": [ { - "id": 2913, + "id": 2924, "name": "constructor", "variant": "declaration", "kind": 512, @@ -2776,14 +2840,14 @@ }, "signatures": [ { - "id": 2914, + "id": 2925, "name": "new AbstractFileService", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 2915, + "id": 2926, "name": "__container__", "variant": "param", "kind": 32768, @@ -2794,7 +2858,7 @@ } }, { - "id": 2916, + "id": 2927, "name": "__configModule__", "variant": "param", "kind": 32768, @@ -2822,7 +2886,7 @@ } }, { - "id": 2917, + "id": 2928, "name": "__moduleDeclaration__", "variant": "param", "kind": 32768, @@ -2852,25 +2916,25 @@ ], "type": { "type": "reference", - "target": 2912, + "target": 2923, "name": "AbstractFileService", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3604, + "target": 3613, "name": "TransactionBaseService.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3603, + "target": 3612, "name": "TransactionBaseService.constructor" } }, { - "id": 2941, + "id": 2952, "name": "__configModule__", "variant": "declaration", "kind": 1024, @@ -2900,17 +2964,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3613, + "target": 3622, "name": "TransactionBaseService.__configModule__" }, "implementationOf": { "type": "reference", - "target": 2886, + "target": 2897, "name": "IFileService.__configModule__" } }, { - "id": 2940, + "id": 2951, "name": "__container__", "variant": "declaration", "kind": 1024, @@ -2924,17 +2988,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3612, + "target": 3621, "name": "TransactionBaseService.__container__" }, "implementationOf": { "type": "reference", - "target": 2885, + "target": 2896, "name": "IFileService.__container__" } }, { - "id": 2942, + "id": 2953, "name": "__moduleDeclaration__", "variant": "declaration", "kind": 1024, @@ -2964,17 +3028,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3614, + "target": 3623, "name": "TransactionBaseService.__moduleDeclaration__" }, "implementationOf": { "type": "reference", - "target": 2887, + "target": 2898, "name": "IFileService.__moduleDeclaration__" } }, { - "id": 2936, + "id": 2947, "name": "manager_", "variant": "declaration", "kind": 1024, @@ -2992,17 +3056,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3608, + "target": 3617, "name": "TransactionBaseService.manager_" }, "implementationOf": { "type": "reference", - "target": 2881, + "target": 2892, "name": "IFileService.manager_" } }, { - "id": 2937, + "id": 2948, "name": "transactionManager_", "variant": "declaration", "kind": 1024, @@ -3029,17 +3093,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3609, + "target": 3618, "name": "TransactionBaseService.transactionManager_" }, "implementationOf": { "type": "reference", - "target": 2882, + "target": 2893, "name": "IFileService.transactionManager_" } }, { - "id": 2938, + "id": 2949, "name": "activeManager_", "variant": "declaration", "kind": 262144, @@ -3047,7 +3111,7 @@ "isProtected": true }, "getSignature": { - "id": 2939, + "id": 2950, "name": "activeManager_", "variant": "signature", "kind": 524288, @@ -3074,17 +3138,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3610, + "target": 3619, "name": "TransactionBaseService.activeManager_" }, "implementationOf": { "type": "reference", - "target": 2883, + "target": 2894, "name": "IFileService.activeManager_" } }, { - "id": 2951, + "id": 2962, "name": "atomicPhase_", "variant": "declaration", "kind": 2048, @@ -3093,7 +3157,7 @@ }, "signatures": [ { - "id": 2952, + "id": 2963, "name": "atomicPhase_", "variant": "signature", "kind": 4096, @@ -3119,14 +3183,14 @@ }, "typeParameter": [ { - "id": 2953, + "id": 2964, "name": "TResult", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 2954, + "id": 2965, "name": "TError", "variant": "typeParam", "kind": 131072, @@ -3135,7 +3199,7 @@ ], "parameters": [ { - "id": 2955, + "id": 2966, "name": "work", "variant": "param", "kind": 32768, @@ -3151,21 +3215,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2956, + "id": 2967, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2957, + "id": 2968, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2958, + "id": 2969, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -3204,7 +3268,7 @@ } }, { - "id": 2959, + "id": 2970, "name": "isolationOrErrorHandler", "variant": "param", "kind": 32768, @@ -3234,21 +3298,21 @@ { "type": "reflection", "declaration": { - "id": 2960, + "id": 2971, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2961, + "id": 2972, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2962, + "id": 2973, "name": "error", "variant": "param", "kind": 32768, @@ -3295,7 +3359,7 @@ } }, { - "id": 2963, + "id": 2974, "name": "maybeErrorHandlerOrDontFail", "variant": "param", "kind": 32768, @@ -3313,21 +3377,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2964, + "id": 2975, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2965, + "id": 2976, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2966, + "id": 2977, "name": "error", "variant": "param", "kind": 32768, @@ -3391,29 +3455,29 @@ }, "inheritedFrom": { "type": "reference", - "target": 3624, + "target": 3633, "name": "TransactionBaseService.atomicPhase_" }, "implementationOf": { "type": "reference", - "target": 2897, + "target": 2908, "name": "IFileService.atomicPhase_" } } ], "inheritedFrom": { "type": "reference", - "target": 3623, + "target": 3632, "name": "TransactionBaseService.atomicPhase_" }, "implementationOf": { "type": "reference", - "target": 2896, + "target": 2907, "name": "IFileService.atomicPhase_" } }, { - "id": 2924, + "id": 2935, "name": "delete", "variant": "declaration", "kind": 2048, @@ -3422,7 +3486,7 @@ }, "signatures": [ { - "id": 2925, + "id": 2936, "name": "delete", "variant": "signature", "kind": 4096, @@ -3437,7 +3501,7 @@ }, "parameters": [ { - "id": 2926, + "id": 2937, "name": "fileData", "variant": "param", "kind": 32768, @@ -3452,7 +3516,7 @@ }, "type": { "type": "reference", - "target": 4675, + "target": 4702, "name": "DeleteFileType", "package": "@medusajs/types" } @@ -3475,19 +3539,19 @@ }, "implementationOf": { "type": "reference", - "target": 2870, + "target": 2881, "name": "IFileService.delete" } } ], "implementationOf": { "type": "reference", - "target": 2869, + "target": 2880, "name": "IFileService.delete" } }, { - "id": 2930, + "id": 2941, "name": "getDownloadStream", "variant": "declaration", "kind": 2048, @@ -3496,7 +3560,7 @@ }, "signatures": [ { - "id": 2931, + "id": 2942, "name": "getDownloadStream", "variant": "signature", "kind": 4096, @@ -3522,7 +3586,7 @@ }, "parameters": [ { - "id": 2932, + "id": 2943, "name": "fileData", "variant": "param", "kind": 32768, @@ -3537,7 +3601,7 @@ }, "type": { "type": "reference", - "target": 4695, + "target": 4722, "name": "GetUploadedFileType", "package": "@medusajs/types" } @@ -3566,19 +3630,19 @@ }, "implementationOf": { "type": "reference", - "target": 2876, + "target": 2887, "name": "IFileService.getDownloadStream" } } ], "implementationOf": { "type": "reference", - "target": 2875, + "target": 2886, "name": "IFileService.getDownloadStream" } }, { - "id": 2933, + "id": 2944, "name": "getPresignedDownloadUrl", "variant": "declaration", "kind": 2048, @@ -3587,7 +3651,7 @@ }, "signatures": [ { - "id": 2934, + "id": 2945, "name": "getPresignedDownloadUrl", "variant": "signature", "kind": 4096, @@ -3613,7 +3677,7 @@ }, "parameters": [ { - "id": 2935, + "id": 2946, "name": "fileData", "variant": "param", "kind": 32768, @@ -3628,7 +3692,7 @@ }, "type": { "type": "reference", - "target": 4695, + "target": 4722, "name": "GetUploadedFileType", "package": "@medusajs/types" } @@ -3651,19 +3715,19 @@ }, "implementationOf": { "type": "reference", - "target": 2879, + "target": 2890, "name": "IFileService.getPresignedDownloadUrl" } } ], "implementationOf": { "type": "reference", - "target": 2878, + "target": 2889, "name": "IFileService.getPresignedDownloadUrl" } }, { - "id": 2927, + "id": 2938, "name": "getUploadStreamDescriptor", "variant": "declaration", "kind": 2048, @@ -3672,7 +3736,7 @@ }, "signatures": [ { - "id": 2928, + "id": 2939, "name": "getUploadStreamDescriptor", "variant": "signature", "kind": 4096, @@ -3687,7 +3751,7 @@ }, "parameters": [ { - "id": 2929, + "id": 2940, "name": "fileData", "variant": "param", "kind": 32768, @@ -3702,7 +3766,7 @@ }, "type": { "type": "reference", - "target": 4680, + "target": 4707, "name": "UploadStreamDescriptorType", "package": "@medusajs/types" } @@ -3717,7 +3781,7 @@ "typeArguments": [ { "type": "reference", - "target": 4687, + "target": 4714, "name": "FileServiceGetUploadStreamResult", "package": "@medusajs/types" } @@ -3727,19 +3791,19 @@ }, "implementationOf": { "type": "reference", - "target": 2873, + "target": 2884, "name": "IFileService.getUploadStreamDescriptor" } } ], "implementationOf": { "type": "reference", - "target": 2872, + "target": 2883, "name": "IFileService.getUploadStreamDescriptor" } }, { - "id": 2946, + "id": 2957, "name": "shouldRetryTransaction_", "variant": "declaration", "kind": 2048, @@ -3748,14 +3812,14 @@ }, "signatures": [ { - "id": 2947, + "id": 2958, "name": "shouldRetryTransaction_", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2948, + "id": 2959, "name": "err", "variant": "param", "kind": 32768, @@ -3785,14 +3849,14 @@ { "type": "reflection", "declaration": { - "id": 2949, + "id": 2960, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2950, + "id": 2961, "name": "code", "variant": "declaration", "kind": 1024, @@ -3807,7 +3871,7 @@ { "title": "Properties", "children": [ - 2950 + 2961 ] } ] @@ -3823,29 +3887,29 @@ }, "inheritedFrom": { "type": "reference", - "target": 3619, + "target": 3628, "name": "TransactionBaseService.shouldRetryTransaction_" }, "implementationOf": { "type": "reference", - "target": 2892, + "target": 2903, "name": "IFileService.shouldRetryTransaction_" } } ], "inheritedFrom": { "type": "reference", - "target": 3618, + "target": 3627, "name": "TransactionBaseService.shouldRetryTransaction_" }, "implementationOf": { "type": "reference", - "target": 2891, + "target": 2902, "name": "IFileService.shouldRetryTransaction_" } }, { - "id": 2918, + "id": 2929, "name": "upload", "variant": "declaration", "kind": 2048, @@ -3854,7 +3918,7 @@ }, "signatures": [ { - "id": 2919, + "id": 2930, "name": "upload", "variant": "signature", "kind": 4096, @@ -3869,7 +3933,7 @@ }, "parameters": [ { - "id": 2920, + "id": 2931, "name": "fileData", "variant": "param", "kind": 32768, @@ -3903,7 +3967,7 @@ "typeArguments": [ { "type": "reference", - "target": 4586, + "target": 4613, "name": "FileServiceUploadResult", "package": "@medusajs/types" } @@ -3913,19 +3977,19 @@ }, "implementationOf": { "type": "reference", - "target": 2864, + "target": 2875, "name": "IFileService.upload" } } ], "implementationOf": { "type": "reference", - "target": 2863, + "target": 2874, "name": "IFileService.upload" } }, { - "id": 2921, + "id": 2932, "name": "uploadProtected", "variant": "declaration", "kind": 2048, @@ -3934,7 +3998,7 @@ }, "signatures": [ { - "id": 2922, + "id": 2933, "name": "uploadProtected", "variant": "signature", "kind": 4096, @@ -3949,7 +4013,7 @@ }, "parameters": [ { - "id": 2923, + "id": 2934, "name": "fileData", "variant": "param", "kind": 32768, @@ -3983,7 +4047,7 @@ "typeArguments": [ { "type": "reference", - "target": 4586, + "target": 4613, "name": "FileServiceUploadResult", "package": "@medusajs/types" } @@ -3993,33 +4057,33 @@ }, "implementationOf": { "type": "reference", - "target": 2867, + "target": 2878, "name": "IFileService.uploadProtected" } } ], "implementationOf": { "type": "reference", - "target": 2866, + "target": 2877, "name": "IFileService.uploadProtected" } }, { - "id": 2943, + "id": 2954, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2944, + "id": 2955, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2945, + "id": 2956, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -4039,30 +4103,30 @@ ], "type": { "type": "reference", - "target": 2912, + "target": 2923, "name": "AbstractFileService", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3616, + "target": 3625, "name": "TransactionBaseService.withTransaction" }, "implementationOf": { "type": "reference", - "target": 2889, + "target": 2900, "name": "IFileService.withTransaction" } } ], "inheritedFrom": { "type": "reference", - "target": 3615, + "target": 3624, "name": "TransactionBaseService.withTransaction" }, "implementationOf": { "type": "reference", - "target": 2888, + "target": 2899, "name": "IFileService.withTransaction" } } @@ -4071,44 +4135,44 @@ { "title": "Constructors", "children": [ - 2913 + 2924 ] }, { "title": "Properties", "children": [ - 2941, - 2940, - 2942, - 2936, - 2937 + 2952, + 2951, + 2953, + 2947, + 2948 ] }, { "title": "Accessors", "children": [ - 2938 + 2949 ] }, { "title": "Methods", "children": [ - 2951, - 2924, - 2930, - 2933, - 2927, - 2946, - 2918, - 2921, - 2943 + 2962, + 2935, + 2941, + 2944, + 2938, + 2957, + 2929, + 2932, + 2954 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3602, + "target": 3611, "name": "TransactionBaseService", "package": "@medusajs/medusa" } @@ -4116,14 +4180,14 @@ "implementedTypes": [ { "type": "reference", - "target": 2862, + "target": 2873, "name": "IFileService", "package": "@medusajs/medusa" } ] }, { - "id": 3016, + "id": 3027, "name": "AbstractFulfillmentService", "variant": "declaration", "kind": 128, @@ -4186,7 +4250,7 @@ }, { "kind": "code", - "text": "```ts title=src/services/my-fulfillment.ts\nimport { AbstractFulfillmentService } from \"@medusajs/medusa\"\n\nclass MyFulfillmentService extends AbstractFulfillmentService {\n // methods here...\n}\n```" + "text": "```ts title=src/services/my-fulfillment.ts\nimport { AbstractFulfillmentService } from \"@medusajs/medusa\"\n\nclass MyFulfillmentService extends AbstractFulfillmentService {\n // methods here...\n}\n\nexport default MyFulfillmentService\n```" }, { "kind": "text", @@ -4222,7 +4286,7 @@ }, { "kind": "text", - "text": " property in the class is used when the fulfillment provider is created in the database.\n\nThe value of this property is also used to reference the fulfillment provider throughout Medusa. For example, it is used to [add a fulfillment provider](https://docs.medusajs.com/api/admin#regions_postregionsregionfulfillmentproviders) to a region.\n\n" + "text": " property in the fulfillment provider service is used when the fulfillment provider is added to the database.\n\nThe value of this property is also used to reference the fulfillment provider throughout Medusa. For example, it is used to [add a fulfillment provider](https://docs.medusajs.com/api/admin#regions_postregionsregionfulfillmentproviders) to a region.\n\n" }, { "kind": "code", @@ -4236,7 +4300,7 @@ }, "children": [ { - "id": 3018, + "id": 3029, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4245,7 +4309,7 @@ }, "signatures": [ { - "id": 3019, + "id": 3030, "name": "new AbstractFulfillmentService", "variant": "signature", "kind": 16384, @@ -4271,7 +4335,7 @@ "content": [ { "kind": "code", - "text": "```ts\nclass MyFulfillmentService extends AbstractFulfillmentService {\n static identifier = \"my-fulfillment\"\n\n // ...\n}\n```" + "text": "```ts\nclass MyFulfillmentService extends AbstractFulfillmentService {\n // ...\n constructor(container, options) {\n super(container)\n // you can access options here\n\n // you can also initialize a client that\n // communicates with a third-party service.\n this.client = new Client(options)\n }\n // ...\n}\n```" } ] } @@ -4279,7 +4343,7 @@ }, "parameters": [ { - "id": 3020, + "id": 3031, "name": "container", "variant": "param", "kind": 32768, @@ -4302,13 +4366,13 @@ }, "type": { "type": "reference", - "target": 4705, + "target": 4732, "name": "MedusaContainer", "package": "@medusajs/types" } }, { - "id": 3021, + "id": 3032, "name": "config", "variant": "param", "kind": 32768, @@ -4346,7 +4410,7 @@ ], "type": { "type": "reference", - "target": 3016, + "target": 3027, "name": "AbstractFulfillmentService", "package": "@medusajs/medusa" } @@ -4354,7 +4418,7 @@ ] }, { - "id": 3023, + "id": 3034, "name": "config", "variant": "declaration", "kind": 1024, @@ -4392,7 +4456,7 @@ } }, { - "id": 3022, + "id": 3033, "name": "container", "variant": "declaration", "kind": 1024, @@ -4418,13 +4482,13 @@ }, "type": { "type": "reference", - "target": 4705, + "target": 4732, "name": "MedusaContainer", "package": "@medusajs/types" } }, { - "id": 3017, + "id": 3028, "name": "identifier", "variant": "declaration", "kind": 1024, @@ -4489,7 +4553,7 @@ } }, { - "id": 3039, + "id": 3050, "name": "calculatePrice", "variant": "declaration", "kind": 2048, @@ -4498,7 +4562,7 @@ }, "signatures": [ { - "id": 3040, + "id": 3051, "name": "calculatePrice", "variant": "signature", "kind": 4096, @@ -4577,7 +4641,7 @@ }, "parameters": [ { - "id": 3041, + "id": 3052, "name": "optionData", "variant": "param", "kind": 32768, @@ -4600,13 +4664,13 @@ }, "type": { "type": "reference", - "target": 4701, + "target": 4728, "name": "ShippingOptionData", "package": "@medusajs/medusa" } }, { - "id": 3042, + "id": 3053, "name": "data", "variant": "param", "kind": 32768, @@ -4637,7 +4701,7 @@ "kind": "inline-tag", "tag": "@link", "text": "validateFulfillmentData", - "target": 2975, + "target": 2986, "tsLinkText": "" }, { @@ -4648,13 +4712,13 @@ }, "type": { "type": "reference", - "target": 4702, + "target": 4729, "name": "FulfillmentProviderData", "package": "@medusajs/medusa" } }, { - "id": 3043, + "id": 3054, "name": "cart", "variant": "param", "kind": 32768, @@ -4695,19 +4759,19 @@ }, "implementationOf": { "type": "reference", - "target": 2987, + "target": 2998, "name": "FulfillmentService.calculatePrice" } } ], "implementationOf": { "type": "reference", - "target": 2986, + "target": 2997, "name": "FulfillmentService.calculatePrice" } }, { - "id": 3036, + "id": 3047, "name": "canCalculate", "variant": "declaration", "kind": 2048, @@ -4716,7 +4780,7 @@ }, "signatures": [ { - "id": 3037, + "id": 3048, "name": "canCalculate", "variant": "signature", "kind": 4096, @@ -4764,7 +4828,7 @@ "kind": "inline-tag", "tag": "@link", "text": "calculatePrice", - "target": 2986, + "target": 2997, "tsLinkText": "" }, { @@ -4802,7 +4866,7 @@ }, "parameters": [ { - "id": 3038, + "id": 3049, "name": "data", "variant": "param", "kind": 32768, @@ -4825,7 +4889,7 @@ }, "type": { "type": "reference", - "target": 4701, + "target": 4728, "name": "ShippingOptionData", "package": "@medusajs/medusa" } @@ -4848,19 +4912,19 @@ }, "implementationOf": { "type": "reference", - "target": 2984, + "target": 2995, "name": "FulfillmentService.canCalculate" } } ], "implementationOf": { "type": "reference", - "target": 2983, + "target": 2994, "name": "FulfillmentService.canCalculate" } }, { - "id": 3050, + "id": 3061, "name": "cancelFulfillment", "variant": "declaration", "kind": 2048, @@ -4869,7 +4933,7 @@ }, "signatures": [ { - "id": 3051, + "id": 3062, "name": "cancelFulfillment", "variant": "signature", "kind": 4096, @@ -4908,7 +4972,7 @@ }, "parameters": [ { - "id": 3052, + "id": 3063, "name": "fulfillment", "variant": "param", "kind": 32768, @@ -4931,7 +4995,7 @@ }, "type": { "type": "reference", - "target": 4702, + "target": 4729, "name": "FulfillmentProviderData", "package": "@medusajs/medusa" } @@ -4954,19 +5018,19 @@ }, "implementationOf": { "type": "reference", - "target": 2998, + "target": 3009, "name": "FulfillmentService.cancelFulfillment" } } ], "implementationOf": { "type": "reference", - "target": 2997, + "target": 3008, "name": "FulfillmentService.cancelFulfillment" } }, { - "id": 3044, + "id": 3055, "name": "createFulfillment", "variant": "declaration", "kind": 2048, @@ -4975,7 +5039,7 @@ }, "signatures": [ { - "id": 3045, + "id": 3056, "name": "createFulfillment", "variant": "signature", "kind": 4096, @@ -5030,7 +5094,7 @@ }, "parameters": [ { - "id": 3046, + "id": 3057, "name": "data", "variant": "param", "kind": 32768, @@ -5053,13 +5117,13 @@ }, "type": { "type": "reference", - "target": 4703, + "target": 4730, "name": "ShippingMethodData", "package": "@medusajs/medusa" } }, { - "id": 3047, + "id": 3058, "name": "items", "variant": "param", "kind": 32768, @@ -5086,7 +5150,7 @@ } }, { - "id": 3048, + "id": 3059, "name": "order", "variant": "param", "kind": 32768, @@ -5110,7 +5174,7 @@ } }, { - "id": 3049, + "id": 3060, "name": "fulfillment", "variant": "param", "kind": 32768, @@ -5143,7 +5207,7 @@ "typeArguments": [ { "type": "reference", - "target": 4702, + "target": 4729, "name": "FulfillmentProviderData", "package": "@medusajs/medusa" } @@ -5153,19 +5217,19 @@ }, "implementationOf": { "type": "reference", - "target": 2992, + "target": 3003, "name": "FulfillmentService.createFulfillment" } } ], "implementationOf": { "type": "reference", - "target": 2991, + "target": 3002, "name": "FulfillmentService.createFulfillment" } }, { - "id": 3053, + "id": 3064, "name": "createReturn", "variant": "declaration", "kind": 2048, @@ -5174,7 +5238,7 @@ }, "signatures": [ { - "id": 3054, + "id": 3065, "name": "createReturn", "variant": "signature", "kind": 4096, @@ -5229,7 +5293,7 @@ }, "parameters": [ { - "id": 3055, + "id": 3066, "name": "returnOrder", "variant": "param", "kind": 32768, @@ -5244,7 +5308,7 @@ }, "type": { "type": "reference", - "target": 4704, + "target": 4731, "name": "CreateReturnType", "package": "@medusajs/medusa" } @@ -5282,19 +5346,19 @@ }, "implementationOf": { "type": "reference", - "target": 3001, + "target": 3012, "name": "FulfillmentService.createReturn" } } ], "implementationOf": { "type": "reference", - "target": 3000, + "target": 3011, "name": "FulfillmentService.createReturn" } }, { - "id": 3056, + "id": 3067, "name": "getFulfillmentDocuments", "variant": "declaration", "kind": 2048, @@ -5303,7 +5367,7 @@ }, "signatures": [ { - "id": 3057, + "id": 3068, "name": "getFulfillmentDocuments", "variant": "signature", "kind": 4096, @@ -5338,7 +5402,7 @@ }, "parameters": [ { - "id": 3058, + "id": 3069, "name": "data", "variant": "param", "kind": 32768, @@ -5361,7 +5425,7 @@ }, "type": { "type": "reference", - "target": 4702, + "target": 4729, "name": "FulfillmentProviderData", "package": "@medusajs/medusa" } @@ -5384,19 +5448,19 @@ }, "implementationOf": { "type": "reference", - "target": 3004, + "target": 3015, "name": "FulfillmentService.getFulfillmentDocuments" } } ], "implementationOf": { "type": "reference", - "target": 3003, + "target": 3014, "name": "FulfillmentService.getFulfillmentDocuments" } }, { - "id": 3026, + "id": 3037, "name": "getFulfillmentOptions", "variant": "declaration", "kind": 2048, @@ -5405,7 +5469,7 @@ }, "signatures": [ { - "id": 3027, + "id": 3038, "name": "getFulfillmentOptions", "variant": "signature", "kind": 4096, @@ -5466,19 +5530,19 @@ }, "implementationOf": { "type": "reference", - "target": 2974, + "target": 2985, "name": "FulfillmentService.getFulfillmentOptions" } } ], "implementationOf": { "type": "reference", - "target": 2973, + "target": 2984, "name": "FulfillmentService.getFulfillmentOptions" } }, { - "id": 3059, + "id": 3070, "name": "getReturnDocuments", "variant": "declaration", "kind": 2048, @@ -5487,7 +5551,7 @@ }, "signatures": [ { - "id": 3060, + "id": 3071, "name": "getReturnDocuments", "variant": "signature", "kind": 4096, @@ -5522,7 +5586,7 @@ }, "parameters": [ { - "id": 3061, + "id": 3072, "name": "data", "variant": "param", "kind": 32768, @@ -5573,19 +5637,19 @@ }, "implementationOf": { "type": "reference", - "target": 3007, + "target": 3018, "name": "FulfillmentService.getReturnDocuments" } } ], "implementationOf": { "type": "reference", - "target": 3006, + "target": 3017, "name": "FulfillmentService.getReturnDocuments" } }, { - "id": 3062, + "id": 3073, "name": "getShipmentDocuments", "variant": "declaration", "kind": 2048, @@ -5594,7 +5658,7 @@ }, "signatures": [ { - "id": 3063, + "id": 3074, "name": "getShipmentDocuments", "variant": "signature", "kind": 4096, @@ -5629,7 +5693,7 @@ }, "parameters": [ { - "id": 3064, + "id": 3075, "name": "data", "variant": "param", "kind": 32768, @@ -5688,19 +5752,19 @@ }, "implementationOf": { "type": "reference", - "target": 3010, + "target": 3021, "name": "FulfillmentService.getShipmentDocuments" } } ], "implementationOf": { "type": "reference", - "target": 3009, + "target": 3020, "name": "FulfillmentService.getShipmentDocuments" } }, { - "id": 3065, + "id": 3076, "name": "retrieveDocuments", "variant": "declaration", "kind": 2048, @@ -5709,7 +5773,7 @@ }, "signatures": [ { - "id": 3066, + "id": 3077, "name": "retrieveDocuments", "variant": "signature", "kind": 4096, @@ -5744,7 +5808,7 @@ }, "parameters": [ { - "id": 3067, + "id": 3078, "name": "fulfillmentData", "variant": "param", "kind": 32768, @@ -5786,7 +5850,7 @@ } }, { - "id": 3068, + "id": 3079, "name": "documentType", "variant": "param", "kind": 32768, @@ -5831,19 +5895,19 @@ }, "implementationOf": { "type": "reference", - "target": 3013, + "target": 3024, "name": "FulfillmentService.retrieveDocuments" } } ], "implementationOf": { "type": "reference", - "target": 3012, + "target": 3023, "name": "FulfillmentService.retrieveDocuments" } }, { - "id": 3028, + "id": 3039, "name": "validateFulfillmentData", "variant": "declaration", "kind": 2048, @@ -5852,7 +5916,7 @@ }, "signatures": [ { - "id": 3029, + "id": 3040, "name": "validateFulfillmentData", "variant": "signature", "kind": 4096, @@ -5892,7 +5956,7 @@ "kind": "inline-tag", "tag": "@link", "text": "calculatePrice", - "target": 2986, + "target": 2997, "tsLinkText": "" }, { @@ -5914,7 +5978,7 @@ }, "parameters": [ { - "id": 3030, + "id": 3041, "name": "optionData", "variant": "param", "kind": 32768, @@ -5929,13 +5993,13 @@ }, "type": { "type": "reference", - "target": 4701, + "target": 4728, "name": "ShippingOptionData", "package": "@medusajs/medusa" } }, { - "id": 3031, + "id": 3042, "name": "data", "variant": "param", "kind": 32768, @@ -5958,13 +6022,13 @@ }, "type": { "type": "reference", - "target": 4702, + "target": 4729, "name": "FulfillmentProviderData", "package": "@medusajs/medusa" } }, { - "id": 3032, + "id": 3043, "name": "cart", "variant": "param", "kind": 32768, @@ -6020,19 +6084,19 @@ }, "implementationOf": { "type": "reference", - "target": 2976, + "target": 2987, "name": "FulfillmentService.validateFulfillmentData" } } ], "implementationOf": { "type": "reference", - "target": 2975, + "target": 2986, "name": "FulfillmentService.validateFulfillmentData" } }, { - "id": 3033, + "id": 3044, "name": "validateOption", "variant": "declaration", "kind": 2048, @@ -6041,7 +6105,7 @@ }, "signatures": [ { - "id": 3034, + "id": 3045, "name": "validateOption", "variant": "signature", "kind": 4096, @@ -6096,7 +6160,7 @@ }, "parameters": [ { - "id": 3035, + "id": 3046, "name": "data", "variant": "param", "kind": 32768, @@ -6111,7 +6175,7 @@ }, "type": { "type": "reference", - "target": 4701, + "target": 4728, "name": "ShippingOptionData", "package": "@medusajs/medusa" } @@ -6134,14 +6198,14 @@ }, "implementationOf": { "type": "reference", - "target": 2981, + "target": 2992, "name": "FulfillmentService.validateOption" } } ], "implementationOf": { "type": "reference", - "target": 2980, + "target": 2991, "name": "FulfillmentService.validateOption" } } @@ -6150,46 +6214,46 @@ { "title": "Constructors", "children": [ - 3018 + 3029 ] }, { "title": "Properties", "children": [ - 3023, - 3022, - 3017 + 3034, + 3033, + 3028 ] }, { "title": "Methods", "children": [ - 3039, - 3036, 3050, - 3044, - 3053, - 3056, - 3026, - 3059, - 3062, - 3065, - 3028, - 3033 + 3047, + 3061, + 3055, + 3064, + 3067, + 3037, + 3070, + 3073, + 3076, + 3039, + 3044 ] } ], "implementedTypes": [ { "type": "reference", - "target": 2970, + "target": 2981, "name": "FulfillmentService", "package": "@medusajs/medusa" } ] }, { - "id": 3111, + "id": 3122, "name": "AbstractNotificationService", "variant": "declaration", "kind": 128, @@ -6198,7 +6262,7 @@ }, "children": [ { - "id": 3113, + "id": 3124, "name": "constructor", "variant": "declaration", "kind": 512, @@ -6207,14 +6271,14 @@ }, "signatures": [ { - "id": 3114, + "id": 3125, "name": "new AbstractNotificationService", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 3115, + "id": 3126, "name": "__container__", "variant": "param", "kind": 32768, @@ -6225,7 +6289,7 @@ } }, { - "id": 3116, + "id": 3127, "name": "__configModule__", "variant": "param", "kind": 32768, @@ -6253,7 +6317,7 @@ } }, { - "id": 3117, + "id": 3128, "name": "__moduleDeclaration__", "variant": "param", "kind": 32768, @@ -6283,25 +6347,25 @@ ], "type": { "type": "reference", - "target": 3111, + "target": 3122, "name": "AbstractNotificationService", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3604, + "target": 3613, "name": "TransactionBaseService.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3603, + "target": 3612, "name": "TransactionBaseService.constructor" } }, { - "id": 3135, + "id": 3146, "name": "__configModule__", "variant": "declaration", "kind": 1024, @@ -6331,17 +6395,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3613, + "target": 3622, "name": "TransactionBaseService.__configModule__" }, "implementationOf": { "type": "reference", - "target": 3085, + "target": 3096, "name": "INotificationService.__configModule__" } }, { - "id": 3134, + "id": 3145, "name": "__container__", "variant": "declaration", "kind": 1024, @@ -6355,17 +6419,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3612, + "target": 3621, "name": "TransactionBaseService.__container__" }, "implementationOf": { "type": "reference", - "target": 3084, + "target": 3095, "name": "INotificationService.__container__" } }, { - "id": 3136, + "id": 3147, "name": "__moduleDeclaration__", "variant": "declaration", "kind": 1024, @@ -6395,17 +6459,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3614, + "target": 3623, "name": "TransactionBaseService.__moduleDeclaration__" }, "implementationOf": { "type": "reference", - "target": 3086, + "target": 3097, "name": "INotificationService.__moduleDeclaration__" } }, { - "id": 3130, + "id": 3141, "name": "manager_", "variant": "declaration", "kind": 1024, @@ -6423,17 +6487,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3608, + "target": 3617, "name": "TransactionBaseService.manager_" }, "implementationOf": { "type": "reference", - "target": 3080, + "target": 3091, "name": "INotificationService.manager_" } }, { - "id": 3131, + "id": 3142, "name": "transactionManager_", "variant": "declaration", "kind": 1024, @@ -6460,17 +6524,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3609, + "target": 3618, "name": "TransactionBaseService.transactionManager_" }, "implementationOf": { "type": "reference", - "target": 3081, + "target": 3092, "name": "INotificationService.transactionManager_" } }, { - "id": 3112, + "id": 3123, "name": "identifier", "variant": "declaration", "kind": 1024, @@ -6483,7 +6547,7 @@ } }, { - "id": 3132, + "id": 3143, "name": "activeManager_", "variant": "declaration", "kind": 262144, @@ -6491,7 +6555,7 @@ "isProtected": true }, "getSignature": { - "id": 3133, + "id": 3144, "name": "activeManager_", "variant": "signature", "kind": 524288, @@ -6518,17 +6582,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 3610, + "target": 3619, "name": "TransactionBaseService.activeManager_" }, "implementationOf": { "type": "reference", - "target": 3082, + "target": 3093, "name": "INotificationService.activeManager_" } }, { - "id": 3145, + "id": 3156, "name": "atomicPhase_", "variant": "declaration", "kind": 2048, @@ -6537,7 +6601,7 @@ }, "signatures": [ { - "id": 3146, + "id": 3157, "name": "atomicPhase_", "variant": "signature", "kind": 4096, @@ -6563,14 +6627,14 @@ }, "typeParameter": [ { - "id": 3147, + "id": 3158, "name": "TResult", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 3148, + "id": 3159, "name": "TError", "variant": "typeParam", "kind": 131072, @@ -6579,7 +6643,7 @@ ], "parameters": [ { - "id": 3149, + "id": 3160, "name": "work", "variant": "param", "kind": 32768, @@ -6595,21 +6659,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3150, + "id": 3161, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3151, + "id": 3162, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3152, + "id": 3163, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -6648,7 +6712,7 @@ } }, { - "id": 3153, + "id": 3164, "name": "isolationOrErrorHandler", "variant": "param", "kind": 32768, @@ -6678,21 +6742,21 @@ { "type": "reflection", "declaration": { - "id": 3154, + "id": 3165, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3155, + "id": 3166, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3156, + "id": 3167, "name": "error", "variant": "param", "kind": 32768, @@ -6739,7 +6803,7 @@ } }, { - "id": 3157, + "id": 3168, "name": "maybeErrorHandlerOrDontFail", "variant": "param", "kind": 32768, @@ -6757,21 +6821,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3158, + "id": 3169, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3159, + "id": 3170, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3160, + "id": 3171, "name": "error", "variant": "param", "kind": 32768, @@ -6835,36 +6899,36 @@ }, "inheritedFrom": { "type": "reference", - "target": 3624, + "target": 3633, "name": "TransactionBaseService.atomicPhase_" }, "implementationOf": { "type": "reference", - "target": 3096, + "target": 3107, "name": "INotificationService.atomicPhase_" } } ], "inheritedFrom": { "type": "reference", - "target": 3623, + "target": 3632, "name": "TransactionBaseService.atomicPhase_" }, "implementationOf": { "type": "reference", - "target": 3095, + "target": 3106, "name": "INotificationService.atomicPhase_" } }, { - "id": 3118, + "id": 3129, "name": "getIdentifier", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3119, + "id": 3130, "name": "getIdentifier", "variant": "signature", "kind": 4096, @@ -6877,7 +6941,7 @@ ] }, { - "id": 3125, + "id": 3136, "name": "resendNotification", "variant": "declaration", "kind": 2048, @@ -6886,14 +6950,14 @@ }, "signatures": [ { - "id": 3126, + "id": 3137, "name": "resendNotification", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3127, + "id": 3138, "name": "notification", "variant": "param", "kind": 32768, @@ -6904,7 +6968,7 @@ } }, { - "id": 3128, + "id": 3139, "name": "config", "variant": "param", "kind": 32768, @@ -6915,7 +6979,7 @@ } }, { - "id": 3129, + "id": 3140, "name": "attachmentGenerator", "variant": "param", "kind": 32768, @@ -6935,7 +6999,7 @@ "typeArguments": [ { "type": "reference", - "target": 4716, + "target": 4743, "name": "ReturnedData", "package": "@medusajs/medusa" } @@ -6945,19 +7009,19 @@ }, "implementationOf": { "type": "reference", - "target": 3076, + "target": 3087, "name": "INotificationService.resendNotification" } } ], "implementationOf": { "type": "reference", - "target": 3075, + "target": 3086, "name": "INotificationService.resendNotification" } }, { - "id": 3120, + "id": 3131, "name": "sendNotification", "variant": "declaration", "kind": 2048, @@ -6966,14 +7030,14 @@ }, "signatures": [ { - "id": 3121, + "id": 3132, "name": "sendNotification", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3122, + "id": 3133, "name": "event", "variant": "param", "kind": 32768, @@ -6984,7 +7048,7 @@ } }, { - "id": 3123, + "id": 3134, "name": "data", "variant": "param", "kind": 32768, @@ -6995,7 +7059,7 @@ } }, { - "id": 3124, + "id": 3135, "name": "attachmentGenerator", "variant": "param", "kind": 32768, @@ -7015,7 +7079,7 @@ "typeArguments": [ { "type": "reference", - "target": 4716, + "target": 4743, "name": "ReturnedData", "package": "@medusajs/medusa" } @@ -7025,19 +7089,19 @@ }, "implementationOf": { "type": "reference", - "target": 3071, + "target": 3082, "name": "INotificationService.sendNotification" } } ], "implementationOf": { "type": "reference", - "target": 3070, + "target": 3081, "name": "INotificationService.sendNotification" } }, { - "id": 3140, + "id": 3151, "name": "shouldRetryTransaction_", "variant": "declaration", "kind": 2048, @@ -7046,14 +7110,14 @@ }, "signatures": [ { - "id": 3141, + "id": 3152, "name": "shouldRetryTransaction_", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3142, + "id": 3153, "name": "err", "variant": "param", "kind": 32768, @@ -7083,14 +7147,14 @@ { "type": "reflection", "declaration": { - "id": 3143, + "id": 3154, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3144, + "id": 3155, "name": "code", "variant": "declaration", "kind": 1024, @@ -7105,7 +7169,7 @@ { "title": "Properties", "children": [ - 3144 + 3155 ] } ] @@ -7121,43 +7185,43 @@ }, "inheritedFrom": { "type": "reference", - "target": 3619, + "target": 3628, "name": "TransactionBaseService.shouldRetryTransaction_" }, "implementationOf": { "type": "reference", - "target": 3091, + "target": 3102, "name": "INotificationService.shouldRetryTransaction_" } } ], "inheritedFrom": { "type": "reference", - "target": 3618, + "target": 3627, "name": "TransactionBaseService.shouldRetryTransaction_" }, "implementationOf": { "type": "reference", - "target": 3090, + "target": 3101, "name": "INotificationService.shouldRetryTransaction_" } }, { - "id": 3137, + "id": 3148, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3138, + "id": 3149, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3139, + "id": 3150, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -7177,30 +7241,30 @@ ], "type": { "type": "reference", - "target": 3111, + "target": 3122, "name": "AbstractNotificationService", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3616, + "target": 3625, "name": "TransactionBaseService.withTransaction" }, "implementationOf": { "type": "reference", - "target": 3088, + "target": 3099, "name": "INotificationService.withTransaction" } } ], "inheritedFrom": { "type": "reference", - "target": 3615, + "target": 3624, "name": "TransactionBaseService.withTransaction" }, "implementationOf": { "type": "reference", - "target": 3087, + "target": 3098, "name": "INotificationService.withTransaction" } } @@ -7209,42 +7273,42 @@ { "title": "Constructors", "children": [ - 3113 + 3124 ] }, { "title": "Properties", "children": [ - 3135, - 3134, - 3136, - 3130, - 3131, - 3112 + 3146, + 3145, + 3147, + 3141, + 3142, + 3123 ] }, { "title": "Accessors", "children": [ - 3132 + 3143 ] }, { "title": "Methods", "children": [ - 3145, - 3118, - 3125, - 3120, - 3140, - 3137 + 3156, + 3129, + 3136, + 3131, + 3151, + 3148 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3602, + "target": 3611, "name": "TransactionBaseService", "package": "@medusajs/medusa" } @@ -7252,14 +7316,14 @@ "implementedTypes": [ { "type": "reference", - "target": 3069, + "target": 3080, "name": "INotificationService", "package": "@medusajs/medusa" } ] }, { - "id": 3229, + "id": 3238, "name": "AbstractPaymentProcessor", "variant": "declaration", "kind": 128, @@ -7270,13 +7334,141 @@ "summary": [ { "kind": "text", - "text": "Payment processor in charge of creating , managing and processing a payment" + "text": "## Overview\n\nA Payment Processor is the payment method used to authorize, capture, and refund payment, among other actions. An example of a Payment Processor is Stripe.\n\nBy default, Medusa has a " + }, + { + "kind": "code", + "text": "`manual`" + }, + { + "kind": "text", + "text": " payment provider that has minimal implementation. It can be synonymous with a Cash on Delivery payment method. It allows\nstore operators to manage the payment themselves but still keep track of its different stages on Medusa.\n\nA payment processor is a service that extends the " + }, + { + "kind": "code", + "text": "`AbstractPaymentProcessor`" + }, + { + "kind": "text", + "text": " and implements its methods. So, adding a Payment Processor is as simple as\ncreating a service file in " + }, + { + "kind": "code", + "text": "`src/services`" + }, + { + "kind": "text", + "text": ". The file's name is the payment processor's class name as a slug and without the word " + }, + { + "kind": "code", + "text": "`Service`" + }, + { + "kind": "text", + "text": ".\nFor example, if you're creating a " + }, + { + "kind": "code", + "text": "`MyPaymentService`" + }, + { + "kind": "text", + "text": " class, the file name is " + }, + { + "kind": "code", + "text": "`src/services/my-payment.ts`" + }, + { + "kind": "text", + "text": ".\n\n" + }, + { + "kind": "code", + "text": "```ts\nimport { AbstractPaymentProcessor } from \"@medusajs/medusa\";\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // methods here...\n}\n\nexport default MyPaymentService\n```" + }, + { + "kind": "text", + "text": "\n\nThe methods of the payment processor are used at different points in the Checkout flow as well as when processing an order after it’s placed.\n\n![Checkout Flow - Payment](https://res.cloudinary.com/dza7lstvk/image/upload/v1680177820/Medusa%20Docs/Diagrams/checkout-payment_cy9efp.jpg)\n\n---\n\n## Identifier Property\n\nThe " + }, + { + "kind": "code", + "text": "`PaymentProvider`" + }, + { + "kind": "text", + "text": " entity has 2 properties: " + }, + { + "kind": "code", + "text": "`id`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`is_installed`" + }, + { + "kind": "text", + "text": ". The " + }, + { + "kind": "code", + "text": "`identifier`" + }, + { + "kind": "text", + "text": " property in the payment processor service is used when the payment processor is added to the database.\n\nThe value of this property is also used to reference the payment processor throughout Medusa.\nFor example, it is used to [add a payment processor](https://docs.medusajs.com/api/admin#regions_postregionsregionpaymentproviders) to a region.\n\n" + }, + { + "kind": "code", + "text": "```ts\nclass MyPaymentService extends AbstractPaymentProcessor {\n static identifier = \"my-payment\"\n // ...\n}\n```" + }, + { + "kind": "text", + "text": "\n\n---\n\n## PaymentProcessorError\n\nBefore diving into the methods of the Payment Processor, you'll notice that part of the expected return signature of these method includes " + }, + { + "kind": "code", + "text": "`PaymentProcessorError`" + }, + { + "kind": "text", + "text": ".\n\n" + }, + { + "kind": "code", + "text": "```ts\ninterface PaymentProcessorError {\n error: string\n code?: string\n detail?: any\n}\n```" + }, + { + "kind": "text", + "text": "\n\nWhile implementing the Payment Processor's methods, if you need to inform the Medusa core that an error occurred at a certain stage,\nreturn an object having the attributes defined in the " + }, + { + "kind": "code", + "text": "`PaymentProcessorError`" + }, + { + "kind": "text", + "text": " interface.\n\nFor example, the Stripe payment processor has the following method to create the error object, which is used within other methods:\n\n" + }, + { + "kind": "code", + "text": "```ts\nabstract class StripeBase extends AbstractPaymentProcessor {\n // ...\n protected buildError(\n message: string,\n e: Stripe.StripeRawError | PaymentProcessorError | Error\n ): PaymentProcessorError {\n return {\n error: message,\n code: \"code\" in e ? e.code : \"\",\n detail: isPaymentProcessorError(e)\n ? `${e.error}${EOL}${e.detail ?? \"\"}`\n : \"detail\" in e\n ? e.detail\n : e.message ?? \"\",\n }\n }\n\n // used in other methods\n async retrievePayment(\n paymentSessionData: Record\n ): Promise<\n PaymentProcessorError |\n PaymentProcessorSessionResponse[\"session_data\"]\n > {\n try {\n // ...\n } catch (e) {\n return this.buildError(\n \"An error occurred in retrievePayment\",\n e\n )\n }\n }\n}\n```" + }, + { + "kind": "text", + "text": "\n\n---" } ] }, "children": [ { - "id": 3231, + "id": 3240, "name": "constructor", "variant": "declaration", "kind": 512, @@ -7285,33 +7477,84 @@ }, "signatures": [ { - "id": 3232, + "id": 3241, "name": "new AbstractPaymentProcessor", "variant": "signature", "kind": 16384, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "You can use the " + }, + { + "kind": "code", + "text": "`constructor`" + }, + { + "kind": "text", + "text": " of your Payment Processor to have access to different services in Medusa through [dependency injection](https://docs.medusajs.com/development/fundamentals/dependency-injection).\n\nYou can also use the constructor to initialize your integration with the third-party provider. For example, if you use a client to connect to the third-party provider’s APIs,\nyou can initialize it in the constructor and use it in other methods in the service.\n\nAdditionally, if you’re creating your Payment Processor as an external plugin to be installed on any Medusa backend and you want to access the options added for the plugin,\nyou can access it in the constructor. The options are passed as a second parameter." + } + ], + "blockTags": [ + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n constructor(container, options) {\n super(container)\n // you can access options here\n\n // you can also initialize a client that\n // communicates with a third-party service.\n this.client = new Client(options)\n }\n // ...\n}\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 3233, + "id": 3242, "name": "container", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An instance of " + }, + { + "kind": "code", + "text": "`MedusaContainer`" + }, + { + "kind": "text", + "text": " that allows you to access other resources, such as services, in your Medusa backend through [dependency injection](https://docs.medusajs.com/development/fundamentals/dependency-injection)" + } + ] + }, "type": { "type": "reference", - "target": 4721, + "target": 4748, "name": "MedusaContainer", "package": "medusa-core-utils" } }, { - "id": 3234, + "id": 3243, "name": "config", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "If this fulfillment provider is created in a plugin, the plugin's options are passed in this parameter." + } + ] + }, "type": { "type": "reference", "target": { @@ -7335,7 +7578,7 @@ ], "type": { "type": "reference", - "target": 3229, + "target": 3238, "name": "AbstractPaymentProcessor", "package": "@medusajs/medusa" } @@ -7343,7 +7586,7 @@ ] }, { - "id": 3236, + "id": 3245, "name": "config", "variant": "declaration", "kind": 1024, @@ -7352,6 +7595,14 @@ "isOptional": true, "isReadonly": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "If this fulfillment provider is created in a plugin, the plugin's options are passed in this parameter." + } + ] + }, "type": { "type": "reference", "target": { @@ -7373,7 +7624,7 @@ } }, { - "id": 3235, + "id": 3244, "name": "container", "variant": "declaration", "kind": 1024, @@ -7381,15 +7632,31 @@ "isProtected": true, "isReadonly": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An instance of " + }, + { + "kind": "code", + "text": "`MedusaContainer`" + }, + { + "kind": "text", + "text": " that allows you to access other resources, such as services, in your Medusa backend through [dependency injection](https://docs.medusajs.com/development/fundamentals/dependency-injection)" + } + ] + }, "type": { "type": "reference", - "target": 4721, + "target": 4748, "name": "MedusaContainer", "package": "medusa-core-utils" } }, { - "id": 3230, + "id": 3239, "name": "identifier", "variant": "declaration", "kind": 1024, @@ -7397,13 +7664,57 @@ "isPublic": true, "isStatic": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`PaymentProvider`" + }, + { + "kind": "text", + "text": " entity has 2 properties: " + }, + { + "kind": "code", + "text": "`id`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`is_installed`" + }, + { + "kind": "text", + "text": ". The " + }, + { + "kind": "code", + "text": "`identifier`" + }, + { + "kind": "text", + "text": " property in the payment processor service is used when the payment processor is added to the database.\n\nThe value of this property is also used to reference the payment processor throughout Medusa.\nFor example, it is used to [add a payment processor](https://docs.medusajs.com/api/admin#regions_postregionsregionpaymentproviders) to a region.\n\n" + }, + { + "kind": "code", + "text": "```ts\nclass MyPaymentService extends AbstractPaymentProcessor {\n static identifier = \"my-payment\"\n // ...\n}\n```" + } + ] + }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 3242, + "id": 3251, "name": "authorizePayment", "variant": "declaration", "kind": 2048, @@ -7412,7 +7723,7 @@ }, "signatures": [ { - "id": 3243, + "id": 3252, "name": "authorizePayment", "variant": "signature", "kind": 4096, @@ -7421,17 +7732,96 @@ "summary": [ { "kind": "text", - "text": "Authorize an existing session if it is not already authorized" + "text": "This method is used to authorize payment using the Payment Session of an order. This is called when the\n[cart is completed](https://docs.medusajs.com/api/store#carts_postcartscartcomplete) and before the order is created.\n\nThis method is also used for authorizing payments of a swap of an order and when authorizing sessions in a payment collection.\nYou can interact with a third-party provider and perform any actions necessary to authorize the payment.\n\nThe payment authorization might require additional action from the customer before it is declared authorized. Once that additional action is performed,\nthe " + }, + { + "kind": "code", + "text": "`authorizePayment`" + }, + { + "kind": "text", + "text": " method will be called again to validate that the payment is now fully authorized. So, make sure to implement it for this case as well, if necessary.\n\nOnce the payment is authorized successfully and the Payment Session status is set to " + }, + { + "kind": "code", + "text": "`authorized`" + }, + { + "kind": "text", + "text": ", the associated order or swap can then be placed or created.\nIf the payment authorization fails, then an error will be thrown and the order will not be created.\n\n:::note\n\nThe payment authorization status is determined using the " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "getPaymentStatus", + "target": 3231, + "tsLinkText": "" + }, + { + "kind": "text", + "text": " method. If the status is " + }, + { + "kind": "code", + "text": "`requires_more`" + }, + { + "kind": "text", + "text": ", then it means additional actions are required\nfrom the customer. If you try to create the order with a status that isn't " + }, + { + "kind": "code", + "text": "`authorized`" + }, + { + "kind": "text", + "text": ", the process will fail.\n\n:::" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The authorization details or an error object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n PaymentSessionStatus,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async authorizePayment(\n paymentSessionData: Record,\n context: Record\n ): Promise<\n PaymentProcessorError |\n {\n status: PaymentSessionStatus;\n data: Record;\n }\n > {\n try {\n await this.client.authorize(paymentSessionData.id)\n\n return {\n status: PaymentSessionStatus.AUTHORIZED,\n data: {\n id: paymentSessionData.id\n }\n }\n } catch (e) {\n return {\n error: e.message\n }\n }\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3244, + "id": 3253, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the payment session." + } + ] + }, "type": { "type": "reference", "target": { @@ -7453,11 +7843,43 @@ } }, { - "id": 3245, + "id": 3254, "name": "context", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The context of the authorization. It may include some of the following fields:\n\n- " + }, + { + "kind": "code", + "text": "`ip`" + }, + { + "kind": "text", + "text": ": The customer’s IP.\n- " + }, + { + "kind": "code", + "text": "`idempotency_key`" + }, + { + "kind": "text", + "text": ": The [Idempotency Key](https://docs.medusajs.com/modules/carts-and-checkout/payment#idempotency-key) that is associated with the current cart. It is useful when retrying payments, retrying checkout at a failed point, or for payments that require additional actions from the customer.\n- " + }, + { + "kind": "code", + "text": "`cart_id`" + }, + { + "kind": "text", + "text": ": The ID of a cart. This is only during operations like placing an order or creating a swap." + } + ] + }, "type": { "type": "reference", "target": { @@ -7491,21 +7913,21 @@ "types": [ { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 3246, + "id": 3255, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3248, + "id": 3257, "name": "data", "variant": "declaration", "kind": 1024, @@ -7531,7 +7953,7 @@ } }, { - "id": 3247, + "id": 3256, "name": "status", "variant": "declaration", "kind": 1024, @@ -7551,8 +7973,8 @@ { "title": "Properties", "children": [ - 3248, - 3247 + 3257, + 3256 ] } ] @@ -7566,19 +7988,19 @@ }, "implementationOf": { "type": "reference", - "target": 3204, + "target": 3213, "name": "PaymentProcessor.authorizePayment" } } ], "implementationOf": { "type": "reference", - "target": 3203, + "target": 3212, "name": "PaymentProcessor.authorizePayment" } }, { - "id": 3249, + "id": 3258, "name": "cancelPayment", "variant": "declaration", "kind": 2048, @@ -7587,7 +8009,7 @@ }, "signatures": [ { - "id": 3250, + "id": 3259, "name": "cancelPayment", "variant": "signature", "kind": 4096, @@ -7596,17 +8018,61 @@ "summary": [ { "kind": "text", - "text": "Cancel an existing session" + "text": "This method is used to cancel an order’s payment. This method is typically triggered by one of the following situations:\n\n1. Before an order is placed and after the payment is authorized, an inventory check is done on products to ensure that products are still available for purchase. If the inventory check fails for any of the products, the payment is canceled.\n2. If the store operator cancels the order from the admin.\n3. When the payment of an order's swap is canceled.\n\nYou can utilize this method to interact with the third-party provider and perform any actions necessary to cancel the payment." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or a value that's stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async cancelPayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n const cancelData = this.client.cancel(paymentId)\n\n return {\n id: paymentId,\n ...cancelData\n }\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3251, + "id": 3260, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, "type": { "type": "reference", "target": { @@ -7659,7 +8125,156 @@ }, { "type": "reference", - "target": 3186, + "target": 3195, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + }, + "implementationOf": { + "type": "reference", + "target": 3229, + "name": "PaymentProcessor.cancelPayment" + } + } + ], + "implementationOf": { + "type": "reference", + "target": 3228, + "name": "PaymentProcessor.cancelPayment" + } + }, + { + "id": 3248, + "name": "capturePayment", + "variant": "declaration", + "kind": 2048, + "flags": { + "isAbstract": true + }, + "signatures": [ + { + "id": 3249, + "name": "capturePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to capture the payment amount of an order. This is typically triggered manually by the store operator from the admin.\n\nThis method is also used for capturing payments of a swap of an order, or when a request is sent to the [Capture Payment API Route](https://docs.medusajs.com/api/admin#payments_postpaymentspaymentcapture).\n\nYou can utilize this method to interact with the third-party provider and perform any actions necessary to capture the payment." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or a value that's stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async capturePayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n const captureData = this.client.catch(paymentId)\n\n return {\n id: paymentId,\n ...captureData\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 3250, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment for its first parameter." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" } @@ -7672,123 +8287,18 @@ "implementationOf": { "type": "reference", "target": 3220, - "name": "PaymentProcessor.cancelPayment" - } - } - ], - "implementationOf": { - "type": "reference", - "target": 3219, - "name": "PaymentProcessor.cancelPayment" - } - }, - { - "id": 3239, - "name": "capturePayment", - "variant": "declaration", - "kind": 2048, - "flags": { - "isAbstract": true - }, - "signatures": [ - { - "id": 3240, - "name": "capturePayment", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Capture an existing session" - } - ] - }, - "parameters": [ - { - "id": 3241, - "name": "paymentSessionData", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - }, - { - "type": "reference", - "target": 3186, - "name": "PaymentProcessorError", - "package": "@medusajs/medusa" - } - ] - } - ], - "name": "Promise", - "package": "typescript" - }, - "implementationOf": { - "type": "reference", - "target": 3211, "name": "PaymentProcessor.capturePayment" } } ], "implementationOf": { "type": "reference", - "target": 3210, + "target": 3219, "name": "PaymentProcessor.capturePayment" } }, { - "id": 3255, + "id": 3264, "name": "deletePayment", "variant": "declaration", "kind": 2048, @@ -7797,7 +8307,7 @@ }, "signatures": [ { - "id": 3256, + "id": 3265, "name": "deletePayment", "variant": "signature", "kind": 4096, @@ -7806,17 +8316,53 @@ "summary": [ { "kind": "text", - "text": "Delete an existing session" + "text": "This method is used to perform any actions necessary before a Payment Session is deleted. The Payment Session is deleted in one of the following cases:\n\n1. When a request is sent to [delete the Payment Session](https://docs.medusajs.com/api/store#carts_deletecartscartpaymentsessionssession).\n2. When the [Payment Session is refreshed](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsessionssession). The Payment Session is deleted so that a newer one is initialized instead.\n3. When the Payment Processor is no longer available. This generally happens when the store operator removes it from the available Payment Processor in the admin.\n4. When the region of the store is changed based on the cart information and the Payment Processor is not available in the new region." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or an empty object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async deletePayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n // assuming client is an initialized client\n // communicating with a third-party service.\n this.client.delete(paymentId)\n\n return {}\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3257, + "id": 3266, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment Session." + } + ] + }, "type": { "type": "reference", "target": { @@ -7869,7 +8415,7 @@ }, { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" } @@ -7881,59 +8427,19 @@ }, "implementationOf": { "type": "reference", - "target": 3214, + "target": 3223, "name": "PaymentProcessor.deletePayment" } } ], "implementationOf": { "type": "reference", - "target": 3213, + "target": 3222, "name": "PaymentProcessor.deletePayment" } }, { - "id": 3237, - "name": "getIdentifier", - "variant": "declaration", - "kind": 2048, - "flags": { - "isPublic": true - }, - "signatures": [ - { - "id": 3238, - "name": "getIdentifier", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Return a unique identifier to retrieve the payment plugin provider" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "implementationOf": { - "type": "reference", - "target": 3192, - "name": "PaymentProcessor.getIdentifier" - } - } - ], - "implementationOf": { - "type": "reference", - "target": 3191, - "name": "PaymentProcessor.getIdentifier" - } - }, - { - "id": 3258, + "id": 3267, "name": "getPaymentStatus", "variant": "declaration", "kind": 2048, @@ -7942,7 +8448,7 @@ }, "signatures": [ { - "id": 3259, + "id": 3268, "name": "getPaymentStatus", "variant": "signature", "kind": 4096, @@ -7951,17 +8457,61 @@ "summary": [ { "kind": "text", - "text": "Return the status of the session" + "text": "This method is used to get the status of a Payment or a Payment Session. Its main usage is within the place order and create swap flows.\nIf the status returned is not " + }, + { + "kind": "code", + "text": "`authorized`" + }, + { + "kind": "text", + "text": " within these flows, then the payment is considered failed and an error will be thrown, stopping the flow from completion." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The status of the Payment or Payment Session." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentSessionStatus\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async getPaymentStatus(\n paymentSessionData: Record\n ): Promise {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n return await this.client.getStatus(paymentId) as PaymentSessionStatus\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3260, + "id": 3269, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a Payment as a parameter. You can use this data to interact with the third-party provider to check the status of the payment if necessary." + } + ] + }, "type": { "type": "reference", "target": { @@ -8005,19 +8555,19 @@ }, "implementationOf": { "type": "reference", - "target": 3223, + "target": 3232, "name": "PaymentProcessor.getPaymentStatus" } } ], "implementationOf": { "type": "reference", - "target": 3222, + "target": 3231, "name": "PaymentProcessor.getPaymentStatus" } }, { - "id": 3252, + "id": 3261, "name": "initiatePayment", "variant": "declaration", "kind": 2048, @@ -8026,7 +8576,7 @@ }, "signatures": [ { - "id": 3253, + "id": 3262, "name": "initiatePayment", "variant": "signature", "kind": 4096, @@ -8035,20 +8585,48 @@ "summary": [ { "kind": "text", - "text": "Initiate a payment session with the external provider" + "text": "This method is called either if a region has only one payment provider enabled or when [a Payment Session is selected](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsession),\nwhich occurs when the customer selects their preferred payment method during checkout.\n\nIt is used to allow you to make any necessary calls to the third-party provider to initialize the payment. For example, in Stripe this method is used to create a Payment Intent for the customer." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either the payment's data or an error object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentContext,\n PaymentSessionResponse,\n // ...\n} from \"@medusajs/medusa\"\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async initiatePayment(\n context: PaymentProcessorContext\n ): Promise<\n PaymentProcessorError | PaymentProcessorSessionResponse\n > {\n // assuming client is an initialized client\n // communicating with a third-party service.\n const clientPayment = await this.client.initiate(context)\n\n return {\n session_data: {\n id: clientPayment.id\n },\n }\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3254, + "id": 3263, "name": "context", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The context of the payment." + } + ] + }, "type": { "type": "reference", - "target": 3170, + "target": 3181, "name": "PaymentProcessorContext", "package": "@medusajs/medusa" } @@ -8066,13 +8644,13 @@ "types": [ { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" }, { "type": "reference", - "target": 3180, + "target": 3190, "name": "PaymentProcessorSessionResponse", "package": "@medusajs/medusa" } @@ -8084,19 +8662,19 @@ }, "implementationOf": { "type": "reference", - "target": 3194, + "target": 3203, "name": "PaymentProcessor.initiatePayment" } } ], "implementationOf": { "type": "reference", - "target": 3193, + "target": 3202, "name": "PaymentProcessor.initiatePayment" } }, { - "id": 3261, + "id": 3270, "name": "refundPayment", "variant": "declaration", "kind": 2048, @@ -8105,7 +8683,7 @@ }, "signatures": [ { - "id": 3262, + "id": 3271, "name": "refundPayment", "variant": "signature", "kind": 4096, @@ -8114,17 +8692,61 @@ "summary": [ { "kind": "text", - "text": "Refund an existing session" + "text": "This method is used to refund an order’s payment. This is typically triggered manually by the store operator from the admin. The refund amount might be the total order amount or part of it.\n\nThis method is also used for refunding payments of a swap or a claim of an order, or when a request is sent to the [Refund Payment API Route](https://docs.medusajs.com/api/admin#payments_postpaymentspaymentrefunds).\n\nYou can utilize this method to interact with the third-party provider and perform any actions necessary to refund the payment." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or a value that's stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async refundPayment(\n paymentSessionData: Record,\n refundAmount: number\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n const refundData = this.client.refund(paymentId, refundAmount)\n\n return {\n id: paymentId,\n ...refundData\n }\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3263, + "id": 3272, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a Payment." + } + ] + }, "type": { "type": "reference", "target": { @@ -8146,11 +8768,19 @@ } }, { - "id": 3264, + "id": 3273, "name": "refundAmount", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "the amount to refund." + } + ] + }, "type": { "type": "intrinsic", "name": "number" @@ -8188,7 +8818,7 @@ }, { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" } @@ -8200,19 +8830,19 @@ }, "implementationOf": { "type": "reference", - "target": 3200, + "target": 3209, "name": "PaymentProcessor.refundPayment" } } ], "implementationOf": { "type": "reference", - "target": 3199, + "target": 3208, "name": "PaymentProcessor.refundPayment" } }, { - "id": 3265, + "id": 3274, "name": "retrievePayment", "variant": "declaration", "kind": 2048, @@ -8221,7 +8851,7 @@ }, "signatures": [ { - "id": 3266, + "id": 3275, "name": "retrievePayment", "variant": "signature", "kind": 4096, @@ -8230,17 +8860,61 @@ "summary": [ { "kind": "text", - "text": "Retrieve an existing session" + "text": "This method is used to provide a uniform way of retrieving the payment information from the third-party provider.\nFor example, in Stripe’s Payment Processor this method is used to retrieve the payment intent details from Stripe." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The payment's data, typically retrieved from a third-party provider." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async retrievePayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n return await this.client.retrieve(paymentId)\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3267, + "id": 3276, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a Payment Session. Make sure to store in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field any necessary data that would allow you to retrieve the payment data from the third-party provider." + } + ] + }, "type": { "type": "reference", "target": { @@ -8293,7 +8967,7 @@ }, { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" } @@ -8305,19 +8979,19 @@ }, "implementationOf": { "type": "reference", - "target": 3217, + "target": 3226, "name": "PaymentProcessor.retrievePayment" } } ], "implementationOf": { "type": "reference", - "target": 3216, + "target": 3225, "name": "PaymentProcessor.retrievePayment" } }, { - "id": 3268, + "id": 3277, "name": "updatePayment", "variant": "declaration", "kind": 2048, @@ -8326,7 +9000,7 @@ }, "signatures": [ { - "id": 3269, + "id": 3278, "name": "updatePayment", "variant": "signature", "kind": 4096, @@ -8335,20 +9009,48 @@ "summary": [ { "kind": "text", - "text": "Update an existing payment session" + "text": "This method is used to update the payment session when the payment amount changes. It's called whenever the cart or any of its related data is updated.\nFor example, when a [line item is added to the cart](https://docs.medusajs.com/api/store#carts_postcartscartlineitems) or when a\n[shipping method is selected](https://docs.medusajs.com/api/store#carts_postcartscartshippingmethod)." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either the payment's data or an error object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorContext,\n PaymentProcessorError,\n PaymentProcessorSessionResponse,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async updatePayment(\n context: PaymentProcessorContext\n ): Promise<\n void |\n PaymentProcessorError |\n PaymentProcessorSessionResponse\n > {\n // assuming client is an initialized client\n // communicating with a third-party service.\n const paymentId = context.paymentSessionData.id\n\n await this.client.update(paymentId, context)\n\n return {\n session_data: context.paymentSessionData\n }\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3270, + "id": 3279, "name": "context", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The context of the payment." + } + ] + }, "type": { "type": "reference", - "target": 3170, + "target": 3181, "name": "PaymentProcessorContext", "package": "@medusajs/medusa" } @@ -8370,13 +9072,13 @@ }, { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" }, { "type": "reference", - "target": 3180, + "target": 3190, "name": "PaymentProcessorSessionResponse", "package": "@medusajs/medusa" } @@ -8388,19 +9090,19 @@ }, "implementationOf": { "type": "reference", - "target": 3197, + "target": 3206, "name": "PaymentProcessor.updatePayment" } } ], "implementationOf": { "type": "reference", - "target": 3196, + "target": 3205, "name": "PaymentProcessor.updatePayment" } }, { - "id": 3271, + "id": 3280, "name": "updatePaymentData", "variant": "declaration", "kind": 2048, @@ -8409,7 +9111,7 @@ }, "signatures": [ { - "id": 3272, + "id": 3281, "name": "updatePaymentData", "variant": "signature", "kind": 4096, @@ -8418,28 +9120,96 @@ "summary": [ { "kind": "text", - "text": "Update the session data for a payment session" + "text": "This method is used to update the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a payment session. It's called when a request is sent to the\n[Update Payment Session API Route](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsessionupdate), or when the " + }, + { + "kind": "code", + "text": "`CartService`" + }, + { + "kind": "text", + "text": "'s " + }, + { + "kind": "code", + "text": "`updatePaymentSession`" + }, + { + "kind": "text", + "text": " is used.\n\nThis method can also be used to update the data in the third-party payment provider, if necessary." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "the data to store in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the payment session.\nYou can keep the data as-is, or make changes to it by communicating with the third-party provider." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n PaymentProviderService,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n protected paymentProviderService: PaymentProviderService\n // ...\n constructor(container, options) {\n super(container)\n this.paymentProviderService = container.paymentProviderService\n // ...\n }\n // ...\n async updatePaymentData(\n sessionId: string,\n data: Record\n ): Promise<\n Record |\n PaymentProcessorError\n > {\n const paymentSession = await this.paymentProviderService.retrieveSession(sessionId)\n // assuming client is an initialized client\n // communicating with a third-party service.\n const clientPayment = await this.client.update(paymentSession.data.id, data)\n\n return {\n id: clientPayment.id\n }\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3273, + "id": 3282, "name": "sessionId", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the payment session." + } + ] + }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 3274, + "id": 3283, "name": "data", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The data to be updated in the payment session." + } + ] + }, "type": { "type": "reference", "target": { @@ -8492,7 +9262,7 @@ }, { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" } @@ -8504,14 +9274,14 @@ }, "implementationOf": { "type": "reference", - "target": 3226, + "target": 3235, "name": "PaymentProcessor.updatePaymentData" } } ], "implementationOf": { "type": "reference", - "target": 3225, + "target": 3234, "name": "PaymentProcessor.updatePaymentData" } } @@ -8520,45 +9290,44 @@ { "title": "Constructors", "children": [ - 3231 + 3240 ] }, { "title": "Properties", "children": [ - 3236, - 3235, - 3230 + 3245, + 3244, + 3239 ] }, { "title": "Methods", "children": [ - 3242, - 3249, - 3239, - 3255, - 3237, + 3251, 3258, - 3252, + 3248, + 3264, + 3267, 3261, - 3265, - 3268, - 3271 + 3270, + 3274, + 3277, + 3280 ] } ], "implementedTypes": [ { "type": "reference", - "target": 3190, + "target": 3199, "name": "PaymentProcessor", "package": "@medusajs/medusa" } ] }, { - "id": 3384, + "id": 3393, "name": "AbstractPaymentService", "variant": "declaration", "kind": 128, @@ -8586,7 +9355,7 @@ }, "children": [ { - "id": 3386, + "id": 3395, "name": "constructor", "variant": "declaration", "kind": 512, @@ -8595,14 +9364,14 @@ }, "signatures": [ { - "id": 3387, + "id": 3396, "name": "new AbstractPaymentService", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 3388, + "id": 3397, "name": "container", "variant": "param", "kind": 32768, @@ -8613,7 +9382,7 @@ } }, { - "id": 3389, + "id": 3398, "name": "config", "variant": "param", "kind": 32768, @@ -8643,25 +9412,25 @@ ], "type": { "type": "reference", - "target": 3384, + "target": 3393, "name": "AbstractPaymentService", "package": "@medusajs/medusa" }, "overwrites": { "type": "reference", - "target": 3604, + "target": 3613, "name": "TransactionBaseService.constructor" } } ], "overwrites": { "type": "reference", - "target": 3603, + "target": 3612, "name": "TransactionBaseService.constructor" } }, { - "id": 3445, + "id": 3454, "name": "__configModule__", "variant": "declaration", "kind": 1024, @@ -8691,7 +9460,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3613, + "target": 3622, "name": "TransactionBaseService.__configModule__" }, "implementationOf": { @@ -8701,7 +9470,7 @@ } }, { - "id": 3444, + "id": 3453, "name": "__container__", "variant": "declaration", "kind": 1024, @@ -8715,7 +9484,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3612, + "target": 3621, "name": "TransactionBaseService.__container__" }, "implementationOf": { @@ -8725,7 +9494,7 @@ } }, { - "id": 3446, + "id": 3455, "name": "__moduleDeclaration__", "variant": "declaration", "kind": 1024, @@ -8755,7 +9524,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3614, + "target": 3623, "name": "TransactionBaseService.__moduleDeclaration__" }, "implementationOf": { @@ -8765,7 +9534,7 @@ } }, { - "id": 3440, + "id": 3449, "name": "manager_", "variant": "declaration", "kind": 1024, @@ -8783,7 +9552,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3608, + "target": 3617, "name": "TransactionBaseService.manager_" }, "implementationOf": { @@ -8793,7 +9562,7 @@ } }, { - "id": 3441, + "id": 3450, "name": "transactionManager_", "variant": "declaration", "kind": 1024, @@ -8820,7 +9589,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3609, + "target": 3618, "name": "TransactionBaseService.transactionManager_" }, "implementationOf": { @@ -8830,7 +9599,7 @@ } }, { - "id": 3385, + "id": 3394, "name": "identifier", "variant": "declaration", "kind": 1024, @@ -8844,7 +9613,7 @@ } }, { - "id": 3442, + "id": 3451, "name": "activeManager_", "variant": "declaration", "kind": 262144, @@ -8852,7 +9621,7 @@ "isProtected": true }, "getSignature": { - "id": 3443, + "id": 3452, "name": "activeManager_", "variant": "signature", "kind": 524288, @@ -8879,7 +9648,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3610, + "target": 3619, "name": "TransactionBaseService.activeManager_" }, "implementationOf": { @@ -8889,7 +9658,7 @@ } }, { - "id": 3455, + "id": 3464, "name": "atomicPhase_", "variant": "declaration", "kind": 2048, @@ -8898,7 +9667,7 @@ }, "signatures": [ { - "id": 3456, + "id": 3465, "name": "atomicPhase_", "variant": "signature", "kind": 4096, @@ -8924,14 +9693,14 @@ }, "typeParameter": [ { - "id": 3457, + "id": 3466, "name": "TResult", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 3458, + "id": 3467, "name": "TError", "variant": "typeParam", "kind": 131072, @@ -8940,7 +9709,7 @@ ], "parameters": [ { - "id": 3459, + "id": 3468, "name": "work", "variant": "param", "kind": 32768, @@ -8956,21 +9725,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3460, + "id": 3469, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3461, + "id": 3470, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3462, + "id": 3471, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -9009,7 +9778,7 @@ } }, { - "id": 3463, + "id": 3472, "name": "isolationOrErrorHandler", "variant": "param", "kind": 32768, @@ -9039,21 +9808,21 @@ { "type": "reflection", "declaration": { - "id": 3464, + "id": 3473, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3465, + "id": 3474, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3466, + "id": 3475, "name": "error", "variant": "param", "kind": 32768, @@ -9100,7 +9869,7 @@ } }, { - "id": 3467, + "id": 3476, "name": "maybeErrorHandlerOrDontFail", "variant": "param", "kind": 32768, @@ -9118,21 +9887,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3468, + "id": 3477, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3469, + "id": 3478, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3470, + "id": 3479, "name": "error", "variant": "param", "kind": 32768, @@ -9196,7 +9965,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3624, + "target": 3633, "name": "TransactionBaseService.atomicPhase_" }, "implementationOf": { @@ -9208,7 +9977,7 @@ ], "inheritedFrom": { "type": "reference", - "target": 3623, + "target": 3632, "name": "TransactionBaseService.atomicPhase_" }, "implementationOf": { @@ -9218,7 +9987,7 @@ } }, { - "id": 3414, + "id": 3423, "name": "authorizePayment", "variant": "declaration", "kind": 2048, @@ -9228,7 +9997,7 @@ }, "signatures": [ { - "id": 3415, + "id": 3424, "name": "authorizePayment", "variant": "signature", "kind": 4096, @@ -9244,7 +10013,7 @@ }, "parameters": [ { - "id": 3416, + "id": 3425, "name": "paymentSession", "variant": "param", "kind": 32768, @@ -9268,14 +10037,14 @@ } }, { - "id": 3417, + "id": 3426, "name": "context", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -9291,27 +10060,27 @@ { "type": "reflection", "declaration": { - "id": 3418, + "id": 3427, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3419, + "id": 3428, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } }, { - "id": 3420, + "id": 3429, "name": "status", "variant": "declaration", "kind": 1024, @@ -9331,8 +10100,8 @@ { "title": "Properties", "children": [ - 3419, - 3420 + 3428, + 3429 ] } ] @@ -9356,7 +10125,7 @@ } }, { - "id": 3428, + "id": 3437, "name": "cancelPayment", "variant": "declaration", "kind": 2048, @@ -9366,7 +10135,7 @@ }, "signatures": [ { - "id": 3429, + "id": 3438, "name": "cancelPayment", "variant": "signature", "kind": 4096, @@ -9392,7 +10161,7 @@ }, "parameters": [ { - "id": 3430, + "id": 3439, "name": "payment", "variant": "param", "kind": 32768, @@ -9425,7 +10194,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -9447,7 +10216,7 @@ } }, { - "id": 3421, + "id": 3430, "name": "capturePayment", "variant": "declaration", "kind": 2048, @@ -9457,7 +10226,7 @@ }, "signatures": [ { - "id": 3422, + "id": 3431, "name": "capturePayment", "variant": "signature", "kind": 4096, @@ -9483,7 +10252,7 @@ }, "parameters": [ { - "id": 3423, + "id": 3432, "name": "payment", "variant": "param", "kind": 32768, @@ -9516,7 +10285,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -9538,7 +10307,7 @@ } }, { - "id": 3399, + "id": 3408, "name": "createPayment", "variant": "declaration", "kind": 2048, @@ -9548,14 +10317,14 @@ }, "signatures": [ { - "id": 3400, + "id": 3409, "name": "createPayment", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3401, + "id": 3410, "name": "context", "variant": "param", "kind": 32768, @@ -9582,7 +10351,7 @@ }, { "type": "reference", - "target": 3281, + "target": 3290, "name": "PaymentContext", "package": "@medusajs/medusa" } @@ -9599,7 +10368,7 @@ "typeArguments": [ { "type": "reference", - "target": 3296, + "target": 3305, "name": "PaymentSessionResponse", "package": "@medusajs/medusa" } @@ -9614,7 +10383,7 @@ } }, { - "id": 3402, + "id": 3411, "name": "createPayment", "variant": "signature", "kind": 4096, @@ -9648,7 +10417,7 @@ }, "parameters": [ { - "id": 3403, + "id": 3412, "name": "cart", "variant": "param", "kind": 32768, @@ -9673,7 +10442,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -9695,7 +10464,7 @@ } }, { - "id": 3431, + "id": 3440, "name": "deletePayment", "variant": "declaration", "kind": 2048, @@ -9705,7 +10474,7 @@ }, "signatures": [ { - "id": 3432, + "id": 3441, "name": "deletePayment", "variant": "signature", "kind": 4096, @@ -9731,7 +10500,7 @@ }, "parameters": [ { - "id": 3433, + "id": 3442, "name": "paymentSession", "variant": "param", "kind": 32768, @@ -9784,7 +10553,7 @@ } }, { - "id": 3390, + "id": 3399, "name": "getIdentifier", "variant": "declaration", "kind": 2048, @@ -9793,7 +10562,7 @@ }, "signatures": [ { - "id": 3391, + "id": 3400, "name": "getIdentifier", "variant": "signature", "kind": 4096, @@ -9816,7 +10585,7 @@ } }, { - "id": 3392, + "id": 3401, "name": "getPaymentData", "variant": "declaration", "kind": 2048, @@ -9826,7 +10595,7 @@ }, "signatures": [ { - "id": 3393, + "id": 3402, "name": "getPaymentData", "variant": "signature", "kind": 4096, @@ -9842,7 +10611,7 @@ }, "parameters": [ { - "id": 3394, + "id": 3403, "name": "paymentSession", "variant": "param", "kind": 32768, @@ -9875,7 +10644,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -9897,7 +10666,7 @@ } }, { - "id": 3437, + "id": 3446, "name": "getStatus", "variant": "declaration", "kind": 2048, @@ -9907,7 +10676,7 @@ }, "signatures": [ { - "id": 3438, + "id": 3447, "name": "getStatus", "variant": "signature", "kind": 4096, @@ -9933,14 +10702,14 @@ }, "parameters": [ { - "id": 3439, + "id": 3448, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -9980,7 +10749,7 @@ } }, { - "id": 3424, + "id": 3433, "name": "refundPayment", "variant": "declaration", "kind": 2048, @@ -9990,7 +10759,7 @@ }, "signatures": [ { - "id": 3425, + "id": 3434, "name": "refundPayment", "variant": "signature", "kind": 4096, @@ -10016,7 +10785,7 @@ }, "parameters": [ { - "id": 3426, + "id": 3435, "name": "payment", "variant": "param", "kind": 32768, @@ -10040,7 +10809,7 @@ } }, { - "id": 3427, + "id": 3436, "name": "refundAmount", "variant": "param", "kind": 32768, @@ -10060,7 +10829,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -10082,7 +10851,7 @@ } }, { - "id": 3404, + "id": 3413, "name": "retrievePayment", "variant": "declaration", "kind": 2048, @@ -10092,7 +10861,7 @@ }, "signatures": [ { - "id": 3405, + "id": 3414, "name": "retrievePayment", "variant": "signature", "kind": 4096, @@ -10108,14 +10877,14 @@ }, "parameters": [ { - "id": 3406, + "id": 3415, "name": "paymentData", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -10130,7 +10899,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -10152,7 +10921,7 @@ } }, { - "id": 3434, + "id": 3443, "name": "retrieveSavedMethods", "variant": "declaration", "kind": 2048, @@ -10161,7 +10930,7 @@ }, "signatures": [ { - "id": 3435, + "id": 3444, "name": "retrieveSavedMethods", "variant": "signature", "kind": 4096, @@ -10187,7 +10956,7 @@ }, "parameters": [ { - "id": 3436, + "id": 3445, "name": "customer", "variant": "param", "kind": 32768, @@ -10222,7 +10991,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -10245,7 +11014,7 @@ } }, { - "id": 3450, + "id": 3459, "name": "shouldRetryTransaction_", "variant": "declaration", "kind": 2048, @@ -10254,14 +11023,14 @@ }, "signatures": [ { - "id": 3451, + "id": 3460, "name": "shouldRetryTransaction_", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3452, + "id": 3461, "name": "err", "variant": "param", "kind": 32768, @@ -10291,14 +11060,14 @@ { "type": "reflection", "declaration": { - "id": 3453, + "id": 3462, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3454, + "id": 3463, "name": "code", "variant": "declaration", "kind": 1024, @@ -10313,7 +11082,7 @@ { "title": "Properties", "children": [ - 3454 + 3463 ] } ] @@ -10329,7 +11098,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3619, + "target": 3628, "name": "TransactionBaseService.shouldRetryTransaction_" }, "implementationOf": { @@ -10341,7 +11110,7 @@ ], "inheritedFrom": { "type": "reference", - "target": 3618, + "target": 3627, "name": "TransactionBaseService.shouldRetryTransaction_" }, "implementationOf": { @@ -10351,7 +11120,7 @@ } }, { - "id": 3407, + "id": 3416, "name": "updatePayment", "variant": "declaration", "kind": 2048, @@ -10361,7 +11130,7 @@ }, "signatures": [ { - "id": 3408, + "id": 3417, "name": "updatePayment", "variant": "signature", "kind": 4096, @@ -10382,20 +11151,20 @@ }, "parameters": [ { - "id": 3409, + "id": 3418, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } }, { - "id": 3410, + "id": 3419, "name": "context", "variant": "param", "kind": 32768, @@ -10422,7 +11191,7 @@ }, { "type": "reference", - "target": 3281, + "target": 3290, "name": "PaymentContext", "package": "@medusajs/medusa" } @@ -10461,7 +11230,7 @@ }, { "type": "reference", - "target": 3296, + "target": 3305, "name": "PaymentSessionResponse", "package": "@medusajs/medusa" } @@ -10478,7 +11247,7 @@ } }, { - "id": 3411, + "id": 3420, "name": "updatePayment", "variant": "signature", "kind": 4096, @@ -10512,20 +11281,20 @@ }, "parameters": [ { - "id": 3412, + "id": 3421, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } }, { - "id": 3413, + "id": 3422, "name": "cart", "variant": "param", "kind": 32768, @@ -10550,7 +11319,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -10572,7 +11341,7 @@ } }, { - "id": 3395, + "id": 3404, "name": "updatePaymentData", "variant": "declaration", "kind": 2048, @@ -10582,7 +11351,7 @@ }, "signatures": [ { - "id": 3396, + "id": 3405, "name": "updatePaymentData", "variant": "signature", "kind": 4096, @@ -10598,27 +11367,27 @@ }, "parameters": [ { - "id": 3397, + "id": 3406, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } }, { - "id": 3398, + "id": 3407, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -10633,7 +11402,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -10655,21 +11424,21 @@ } }, { - "id": 3447, + "id": 3456, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3448, + "id": 3457, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3449, + "id": 3458, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -10689,13 +11458,13 @@ ], "type": { "type": "reference", - "target": 3384, + "target": 3393, "name": "AbstractPaymentService", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3616, + "target": 3625, "name": "TransactionBaseService.withTransaction" }, "implementationOf": { @@ -10707,7 +11476,7 @@ ], "inheritedFrom": { "type": "reference", - "target": 3615, + "target": 3624, "name": "TransactionBaseService.withTransaction" }, "implementationOf": { @@ -10721,52 +11490,52 @@ { "title": "Constructors", "children": [ - 3386 + 3395 ] }, { "title": "Properties", "children": [ - 3445, - 3444, - 3446, - 3440, - 3441, - 3385 + 3454, + 3453, + 3455, + 3449, + 3450, + 3394 ] }, { "title": "Accessors", "children": [ - 3442 + 3451 ] }, { "title": "Methods", "children": [ - 3455, - 3414, - 3428, - 3421, - 3399, - 3431, - 3390, - 3392, + 3464, + 3423, 3437, - 3424, + 3430, + 3408, + 3440, + 3399, + 3401, + 3446, + 3433, + 3413, + 3443, + 3459, + 3416, 3404, - 3434, - 3450, - 3407, - 3395, - 3447 + 3456 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3602, + "target": 3611, "name": "TransactionBaseService", "package": "@medusajs/medusa" } @@ -10774,14 +11543,14 @@ "implementedTypes": [ { "type": "reference", - "target": 4732, + "target": 4759, "name": "\"medusa-interfaces\"", "package": "@medusajs/medusa" } ] }, { - "id": 3488, + "id": 3497, "name": "AbstractPriceSelectionStrategy", "variant": "declaration", "kind": 128, @@ -10790,7 +11559,7 @@ }, "children": [ { - "id": 3489, + "id": 3498, "name": "constructor", "variant": "declaration", "kind": 512, @@ -10799,14 +11568,14 @@ }, "signatures": [ { - "id": 3490, + "id": 3499, "name": "new AbstractPriceSelectionStrategy", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 3491, + "id": 3500, "name": "__container__", "variant": "param", "kind": 32768, @@ -10817,7 +11586,7 @@ } }, { - "id": 3492, + "id": 3501, "name": "__configModule__", "variant": "param", "kind": 32768, @@ -10845,7 +11614,7 @@ } }, { - "id": 3493, + "id": 3502, "name": "__moduleDeclaration__", "variant": "param", "kind": 32768, @@ -10875,25 +11644,25 @@ ], "type": { "type": "reference", - "target": 3488, + "target": 3497, "name": "AbstractPriceSelectionStrategy", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3604, + "target": 3613, "name": "TransactionBaseService.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3603, + "target": 3612, "name": "TransactionBaseService.constructor" } }, { - "id": 3510, + "id": 3519, "name": "__configModule__", "variant": "declaration", "kind": 1024, @@ -10923,12 +11692,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3613, + "target": 3622, "name": "TransactionBaseService.__configModule__" } }, { - "id": 3509, + "id": 3518, "name": "__container__", "variant": "declaration", "kind": 1024, @@ -10942,12 +11711,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3612, + "target": 3621, "name": "TransactionBaseService.__container__" } }, { - "id": 3511, + "id": 3520, "name": "__moduleDeclaration__", "variant": "declaration", "kind": 1024, @@ -10977,12 +11746,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3614, + "target": 3623, "name": "TransactionBaseService.__moduleDeclaration__" } }, { - "id": 3505, + "id": 3514, "name": "manager_", "variant": "declaration", "kind": 1024, @@ -11000,12 +11769,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3608, + "target": 3617, "name": "TransactionBaseService.manager_" } }, { - "id": 3506, + "id": 3515, "name": "transactionManager_", "variant": "declaration", "kind": 1024, @@ -11032,12 +11801,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3609, + "target": 3618, "name": "TransactionBaseService.transactionManager_" } }, { - "id": 3507, + "id": 3516, "name": "activeManager_", "variant": "declaration", "kind": 262144, @@ -11045,7 +11814,7 @@ "isProtected": true }, "getSignature": { - "id": 3508, + "id": 3517, "name": "activeManager_", "variant": "signature", "kind": 524288, @@ -11067,12 +11836,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3610, + "target": 3619, "name": "TransactionBaseService.activeManager_" } }, { - "id": 3520, + "id": 3529, "name": "atomicPhase_", "variant": "declaration", "kind": 2048, @@ -11081,7 +11850,7 @@ }, "signatures": [ { - "id": 3521, + "id": 3530, "name": "atomicPhase_", "variant": "signature", "kind": 4096, @@ -11107,14 +11876,14 @@ }, "typeParameter": [ { - "id": 3522, + "id": 3531, "name": "TResult", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 3523, + "id": 3532, "name": "TError", "variant": "typeParam", "kind": 131072, @@ -11123,7 +11892,7 @@ ], "parameters": [ { - "id": 3524, + "id": 3533, "name": "work", "variant": "param", "kind": 32768, @@ -11139,21 +11908,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3525, + "id": 3534, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3526, + "id": 3535, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3527, + "id": 3536, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -11192,7 +11961,7 @@ } }, { - "id": 3528, + "id": 3537, "name": "isolationOrErrorHandler", "variant": "param", "kind": 32768, @@ -11222,21 +11991,21 @@ { "type": "reflection", "declaration": { - "id": 3529, + "id": 3538, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3530, + "id": 3539, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3531, + "id": 3540, "name": "error", "variant": "param", "kind": 32768, @@ -11283,7 +12052,7 @@ } }, { - "id": 3532, + "id": 3541, "name": "maybeErrorHandlerOrDontFail", "variant": "param", "kind": 32768, @@ -11301,21 +12070,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3533, + "id": 3542, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3534, + "id": 3543, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3535, + "id": 3544, "name": "error", "variant": "param", "kind": 32768, @@ -11379,19 +12148,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 3624, + "target": 3633, "name": "TransactionBaseService.atomicPhase_" } } ], "inheritedFrom": { "type": "reference", - "target": 3623, + "target": 3632, "name": "TransactionBaseService.atomicPhase_" } }, { - "id": 3494, + "id": 3503, "name": "calculateVariantPrice", "variant": "declaration", "kind": 2048, @@ -11401,7 +12170,7 @@ }, "signatures": [ { - "id": 3495, + "id": 3504, "name": "calculateVariantPrice", "variant": "signature", "kind": 4096, @@ -11427,7 +12196,7 @@ }, "parameters": [ { - "id": 3496, + "id": 3505, "name": "data", "variant": "param", "kind": 32768, @@ -11437,14 +12206,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 3497, + "id": 3506, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3500, + "id": 3509, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -11457,7 +12226,7 @@ } }, { - "id": 3499, + "id": 3508, "name": "taxRates", "variant": "declaration", "kind": 1024, @@ -11466,14 +12235,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4737, + "target": 4764, "name": "TaxServiceRate", "package": "@medusajs/medusa" } } }, { - "id": 3498, + "id": 3507, "name": "variantId", "variant": "declaration", "kind": 1024, @@ -11488,9 +12257,9 @@ { "title": "Properties", "children": [ - 3500, - 3499, - 3498 + 3509, + 3508, + 3507 ] } ] @@ -11499,7 +12268,7 @@ } }, { - "id": 3501, + "id": 3510, "name": "context", "variant": "param", "kind": 32768, @@ -11514,7 +12283,7 @@ }, "type": { "type": "reference", - "target": 3536, + "target": 3545, "name": "PriceSelectionContext", "package": "@medusajs/medusa" } @@ -11540,7 +12309,7 @@ }, { "type": "reference", - "target": 3552, + "target": 3561, "name": "PriceSelectionResult", "package": "@medusajs/medusa" } @@ -11554,19 +12323,19 @@ }, "implementationOf": { "type": "reference", - "target": 3476, + "target": 3485, "name": "IPriceSelectionStrategy.calculateVariantPrice" } } ], "implementationOf": { "type": "reference", - "target": 3475, + "target": 3484, "name": "IPriceSelectionStrategy.calculateVariantPrice" } }, { - "id": 3502, + "id": 3511, "name": "onVariantsPricesUpdate", "variant": "declaration", "kind": 2048, @@ -11575,7 +12344,7 @@ }, "signatures": [ { - "id": 3503, + "id": 3512, "name": "onVariantsPricesUpdate", "variant": "signature", "kind": 4096, @@ -11590,7 +12359,7 @@ }, "parameters": [ { - "id": 3504, + "id": 3513, "name": "variantIds", "variant": "param", "kind": 32768, @@ -11629,19 +12398,19 @@ }, "implementationOf": { "type": "reference", - "target": 3483, + "target": 3492, "name": "IPriceSelectionStrategy.onVariantsPricesUpdate" } } ], "implementationOf": { "type": "reference", - "target": 3482, + "target": 3491, "name": "IPriceSelectionStrategy.onVariantsPricesUpdate" } }, { - "id": 3515, + "id": 3524, "name": "shouldRetryTransaction_", "variant": "declaration", "kind": 2048, @@ -11650,14 +12419,14 @@ }, "signatures": [ { - "id": 3516, + "id": 3525, "name": "shouldRetryTransaction_", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3517, + "id": 3526, "name": "err", "variant": "param", "kind": 32768, @@ -11687,14 +12456,14 @@ { "type": "reflection", "declaration": { - "id": 3518, + "id": 3527, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3519, + "id": 3528, "name": "code", "variant": "declaration", "kind": 1024, @@ -11709,7 +12478,7 @@ { "title": "Properties", "children": [ - 3519 + 3528 ] } ] @@ -11725,33 +12494,33 @@ }, "inheritedFrom": { "type": "reference", - "target": 3619, + "target": 3628, "name": "TransactionBaseService.shouldRetryTransaction_" } } ], "inheritedFrom": { "type": "reference", - "target": 3618, + "target": 3627, "name": "TransactionBaseService.shouldRetryTransaction_" } }, { - "id": 3512, + "id": 3521, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3513, + "id": 3522, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3514, + "id": 3523, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -11771,30 +12540,30 @@ ], "type": { "type": "reference", - "target": 3488, + "target": 3497, "name": "AbstractPriceSelectionStrategy", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3616, + "target": 3625, "name": "TransactionBaseService.withTransaction" }, "implementationOf": { "type": "reference", - "target": 3486, + "target": 3495, "name": "IPriceSelectionStrategy.withTransaction" } } ], "inheritedFrom": { "type": "reference", - "target": 3615, + "target": 3624, "name": "TransactionBaseService.withTransaction" }, "implementationOf": { "type": "reference", - "target": 3485, + "target": 3494, "name": "IPriceSelectionStrategy.withTransaction" } } @@ -11803,40 +12572,40 @@ { "title": "Constructors", "children": [ - 3489 + 3498 ] }, { "title": "Properties", "children": [ - 3510, - 3509, - 3511, - 3505, - 3506 + 3519, + 3518, + 3520, + 3514, + 3515 ] }, { "title": "Accessors", "children": [ - 3507 + 3516 ] }, { "title": "Methods", "children": [ - 3520, - 3494, - 3502, - 3515, - 3512 + 3529, + 3503, + 3511, + 3524, + 3521 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3602, + "target": 3611, "name": "TransactionBaseService", "package": "@medusajs/medusa" } @@ -11844,14 +12613,14 @@ "implementedTypes": [ { "type": "reference", - "target": 3474, + "target": 3483, "name": "IPriceSelectionStrategy", "package": "@medusajs/medusa" } ] }, { - "id": 3591, + "id": 3600, "name": "AbstractTaxService", "variant": "declaration", "kind": 128, @@ -11876,21 +12645,21 @@ }, "children": [ { - "id": 3593, + "id": 3602, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 3594, + "id": 3603, "name": "new AbstractTaxService", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 3591, + "target": 3600, "name": "AbstractTaxService", "package": "@medusajs/medusa" }, @@ -11908,7 +12677,7 @@ } }, { - "id": 3592, + "id": 3601, "name": "identifier", "variant": "declaration", "kind": 1024, @@ -11922,7 +12691,7 @@ } }, { - "id": 3595, + "id": 3604, "name": "getIdentifier", "variant": "declaration", "kind": 2048, @@ -11931,7 +12700,7 @@ }, "signatures": [ { - "id": 3596, + "id": 3605, "name": "getIdentifier", "variant": "signature", "kind": 4096, @@ -11944,7 +12713,7 @@ ] }, { - "id": 3597, + "id": 3606, "name": "getTaxLines", "variant": "declaration", "kind": 2048, @@ -11954,7 +12723,7 @@ }, "signatures": [ { - "id": 3598, + "id": 3607, "name": "getTaxLines", "variant": "signature", "kind": 4096, @@ -11980,7 +12749,7 @@ }, "parameters": [ { - "id": 3599, + "id": 3608, "name": "itemLines", "variant": "param", "kind": 32768, @@ -11997,14 +12766,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3573, + "target": 3582, "name": "ItemTaxCalculationLine", "package": "@medusajs/medusa" } } }, { - "id": 3600, + "id": 3609, "name": "shippingLines", "variant": "param", "kind": 32768, @@ -12013,14 +12782,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3569, + "target": 3578, "name": "ShippingTaxCalculationLine", "package": "@medusajs/medusa" } } }, { - "id": 3601, + "id": 3610, "name": "context", "variant": "param", "kind": 32768, @@ -12035,7 +12804,7 @@ }, "type": { "type": "reference", - "target": 3577, + "target": 3586, "name": "TaxCalculationContext", "package": "@medusajs/medusa" } @@ -12052,7 +12821,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4751, + "target": 4778, "name": "ProviderTaxLine", "package": "@medusajs/medusa" } @@ -12063,14 +12832,14 @@ }, "implementationOf": { "type": "reference", - "target": 3587, + "target": 3596, "name": "ITaxService.getTaxLines" } } ], "implementationOf": { "type": "reference", - "target": 3586, + "target": 3595, "name": "ITaxService.getTaxLines" } } @@ -12079,27 +12848,27 @@ { "title": "Constructors", "children": [ - 3593 + 3602 ] }, { "title": "Properties", "children": [ - 3592 + 3601 ] }, { "title": "Methods", "children": [ - 3595, - 3597 + 3604, + 3606 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4732, + "target": 4759, "name": "\"medusa-interfaces\"", "package": "@medusajs/medusa" } @@ -12107,35 +12876,35 @@ "implementedTypes": [ { "type": "reference", - "target": 3585, + "target": 3594, "name": "ITaxService", "package": "@medusajs/medusa" } ] }, { - "id": 4264, + "id": 4291, "name": "AdditionalItem", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4265, + "id": 4292, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4266, + "id": 4293, "name": "new AdditionalItem", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4264, + "target": 4291, "name": "AdditionalItem", "package": "@medusajs/medusa" } @@ -12143,7 +12912,7 @@ ] }, { - "id": 4268, + "id": 4295, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -12161,92 +12930,8 @@ "name": "number" } }, - { - "id": 4267, - "name": "variant_id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the Product Variant." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Constructors", - "children": [ - 4265 - ] - }, - { - "title": "Properties", - "children": [ - 4268, - 4267 - ] - } - ] - }, - { - "id": 4293, - "name": "AdditionalItem", - "variant": "declaration", - "kind": 128, - "flags": {}, - "children": [ { "id": 4294, - "name": "constructor", - "variant": "declaration", - "kind": 512, - "flags": {}, - "signatures": [ - { - "id": 4295, - "name": "new AdditionalItem", - "variant": "signature", - "kind": 16384, - "flags": {}, - "type": { - "type": "reference", - "target": 4293, - "name": "AdditionalItem", - "package": "@medusajs/medusa" - } - } - ] - }, - { - "id": 4297, - "name": "quantity", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The quantity of the Product Variant." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 4296, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -12269,41 +12954,41 @@ { "title": "Constructors", "children": [ - 4294 + 4292 ] }, { "title": "Properties", "children": [ - 4297, - 4296 + 4295, + 4294 ] } ] }, { - "id": 4635, + "id": 4320, "name": "AdditionalItem", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4636, + "id": 4321, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4637, + "id": 4322, "name": "new AdditionalItem", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4635, + "target": 4320, "name": "AdditionalItem", "package": "@medusajs/medusa" } @@ -12311,7 +12996,91 @@ ] }, { - "id": 4639, + "id": 4324, + "name": "quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The quantity of the Product Variant." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 4323, + "name": "variant_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the Product Variant." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Constructors", + "children": [ + 4321 + ] + }, + { + "title": "Properties", + "children": [ + 4324, + 4323 + ] + } + ] + }, + { + "id": 4662, + "name": "AdditionalItem", + "variant": "declaration", + "kind": 128, + "flags": {}, + "children": [ + { + "id": 4663, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": {}, + "signatures": [ + { + "id": 4664, + "name": "new AdditionalItem", + "variant": "signature", + "kind": 16384, + "flags": {}, + "type": { + "type": "reference", + "target": 4662, + "name": "AdditionalItem", + "package": "@medusajs/medusa" + } + } + ] + }, + { + "id": 4666, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -12330,7 +13099,7 @@ } }, { - "id": 4638, + "id": 4665, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -12353,20 +13122,20 @@ { "title": "Constructors", "children": [ - 4636 + 4663 ] }, { "title": "Properties", "children": [ - 4639, - 4638 + 4666, + 4665 ] } ] }, { - "id": 3791, + "id": 3800, "name": "AddressCreatePayload", "variant": "declaration", "kind": 128, @@ -12381,14 +13150,14 @@ }, "children": [ { - "id": 3792, + "id": 3801, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 3793, + "id": 3802, "name": "new AddressCreatePayload", "variant": "signature", "kind": 16384, @@ -12403,7 +13172,7 @@ }, "type": { "type": "reference", - "target": 3791, + "target": 3800, "name": "AddressCreatePayload", "package": "@medusajs/medusa" } @@ -12411,7 +13180,7 @@ ] }, { - "id": 3799, + "id": 3808, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -12430,7 +13199,7 @@ } }, { - "id": 3800, + "id": 3809, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -12449,7 +13218,7 @@ } }, { - "id": 3801, + "id": 3810, "name": "city", "variant": "declaration", "kind": 1024, @@ -12468,7 +13237,7 @@ } }, { - "id": 3798, + "id": 3807, "name": "company", "variant": "declaration", "kind": 1024, @@ -12479,7 +13248,7 @@ } }, { - "id": 3802, + "id": 3811, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -12498,7 +13267,7 @@ } }, { - "id": 3794, + "id": 3803, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -12517,7 +13286,7 @@ } }, { - "id": 3795, + "id": 3804, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -12536,7 +13305,7 @@ } }, { - "id": 3797, + "id": 3806, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -12555,7 +13324,7 @@ } }, { - "id": 3796, + "id": 3805, "name": "phone", "variant": "declaration", "kind": 1024, @@ -12574,7 +13343,7 @@ } }, { - "id": 3804, + "id": 3813, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -12593,7 +13362,7 @@ } }, { - "id": 3803, + "id": 3812, "name": "province", "variant": "declaration", "kind": 1024, @@ -12616,29 +13385,29 @@ { "title": "Constructors", "children": [ - 3792 + 3801 ] }, { "title": "Properties", "children": [ - 3799, - 3800, - 3801, - 3798, - 3802, - 3794, - 3795, - 3797, - 3796, + 3808, + 3809, + 3810, + 3807, + 3811, + 3803, 3804, - 3803 + 3806, + 3805, + 3813, + 3812 ] } ] }, { - "id": 3777, + "id": 3786, "name": "AddressPayload", "variant": "declaration", "kind": 128, @@ -12653,14 +13422,14 @@ }, "children": [ { - "id": 3778, + "id": 3787, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 3779, + "id": 3788, "name": "new AddressPayload", "variant": "signature", "kind": 16384, @@ -12675,7 +13444,7 @@ }, "type": { "type": "reference", - "target": 3777, + "target": 3786, "name": "AddressPayload", "package": "@medusajs/medusa" } @@ -12683,7 +13452,7 @@ ] }, { - "id": 3785, + "id": 3794, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -12704,7 +13473,7 @@ } }, { - "id": 3786, + "id": 3795, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -12725,7 +13494,7 @@ } }, { - "id": 3787, + "id": 3796, "name": "city", "variant": "declaration", "kind": 1024, @@ -12746,7 +13515,7 @@ } }, { - "id": 3784, + "id": 3793, "name": "company", "variant": "declaration", "kind": 1024, @@ -12767,7 +13536,7 @@ } }, { - "id": 3788, + "id": 3797, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -12788,7 +13557,7 @@ } }, { - "id": 3780, + "id": 3789, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -12809,7 +13578,7 @@ } }, { - "id": 3781, + "id": 3790, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -12830,7 +13599,7 @@ } }, { - "id": 3783, + "id": 3792, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -12866,7 +13635,7 @@ } }, { - "id": 3782, + "id": 3791, "name": "phone", "variant": "declaration", "kind": 1024, @@ -12887,7 +13656,7 @@ } }, { - "id": 3790, + "id": 3799, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -12908,7 +13677,7 @@ } }, { - "id": 3789, + "id": 3798, "name": "province", "variant": "declaration", "kind": 1024, @@ -12933,30 +13702,30 @@ { "title": "Constructors", "children": [ - 3778 + 3787 ] }, { "title": "Properties", "children": [ - 3785, - 3786, - 3787, - 3784, - 3788, - 3780, - 3781, - 3783, - 3782, + 3794, + 3795, + 3796, + 3793, + 3797, + 3789, 3790, - 3789 + 3792, + 3791, + 3799, + 3798 ] } ], "extendedBy": [ { "type": "reference", - "target": 2283, + "target": 2281, "name": "StorePostCustomersCustomerAddressesAddressReq" } ] @@ -12997,14 +13766,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 4180, + "target": 4207, "name": "AdminUpsertConditionsReq.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4179, + "target": 4206, "name": "AdminUpsertConditionsReq.constructor" } }, @@ -13041,7 +13810,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4185, + "target": 4212, "name": "AdminUpsertConditionsReq.customer_groups" } }, @@ -13102,7 +13871,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4182, + "target": 4209, "name": "AdminUpsertConditionsReq.product_collections" } }, @@ -13139,7 +13908,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4184, + "target": 4211, "name": "AdminUpsertConditionsReq.product_tags" } }, @@ -13176,7 +13945,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4183, + "target": 4210, "name": "AdminUpsertConditionsReq.product_types" } }, @@ -13213,7 +13982,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4181, + "target": 4208, "name": "AdminUpsertConditionsReq.products" } } @@ -13240,35 +14009,35 @@ "extendedTypes": [ { "type": "reference", - "target": 4178, + "target": 4205, "name": "AdminUpsertConditionsReq", "package": "@medusajs/medusa" } ] }, { - "id": 2057, + "id": 2055, "name": "AdminCreateUserRequest", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2058, + "id": 2056, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2059, + "id": 2057, "name": "new AdminCreateUserRequest", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2057, + "target": 2055, "name": "AdminCreateUserRequest", "package": "@medusajs/medusa" } @@ -13276,7 +14045,7 @@ ] }, { - "id": 2060, + "id": 2058, "name": "email", "variant": "declaration", "kind": 1024, @@ -13295,7 +14064,7 @@ } }, { - "id": 2061, + "id": 2059, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -13316,7 +14085,7 @@ } }, { - "id": 2062, + "id": 2060, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -13337,7 +14106,7 @@ } }, { - "id": 2064, + "id": 2062, "name": "password", "variant": "declaration", "kind": 1024, @@ -13356,7 +14125,7 @@ } }, { - "id": 2063, + "id": 2061, "name": "role", "variant": "declaration", "kind": 1024, @@ -13386,17 +14155,17 @@ { "title": "Constructors", "children": [ - 2058 + 2056 ] }, { "title": "Properties", "children": [ + 2058, + 2059, 2060, - 2061, 2062, - 2064, - 2063 + 2061 ] } ] @@ -13448,7 +14217,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4155, + "target": 4182, "name": "CustomerGroupsBatchCustomer", "package": "@medusajs/medusa" } @@ -13506,14 +14275,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -13539,7 +14308,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -13565,7 +14334,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -13588,7 +14357,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -13748,14 +14517,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -13781,7 +14550,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -13807,7 +14576,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -13830,35 +14599,35 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 1093, + "id": 1099, "name": "AdminDeletePriceListPricesPricesReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1094, + "id": 1100, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1095, + "id": 1101, "name": "new AdminDeletePriceListPricesPricesReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1093, + "target": 1099, "name": "AdminDeletePriceListPricesPricesReq", "package": "@medusajs/medusa" } @@ -13866,7 +14635,7 @@ ] }, { - "id": 1096, + "id": 1102, "name": "price_ids", "variant": "declaration", "kind": 1024, @@ -13892,40 +14661,40 @@ { "title": "Constructors", "children": [ - 1094 + 1100 ] }, { "title": "Properties", "children": [ - 1096 + 1102 ] } ] }, { - "id": 1097, + "id": 1103, "name": "AdminDeletePriceListsPriceListProductsPricesBatchReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1098, + "id": 1104, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1099, + "id": 1105, "name": "new AdminDeletePriceListsPriceListProductsPricesBatchReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1097, + "target": 1103, "name": "AdminDeletePriceListsPriceListProductsPricesBatchReq", "package": "@medusajs/medusa" } @@ -13933,7 +14702,7 @@ ] }, { - "id": 1100, + "id": 1106, "name": "product_ids", "variant": "declaration", "kind": 1024, @@ -13959,19 +14728,19 @@ { "title": "Constructors", "children": [ - 1098 + 1104 ] }, { "title": "Properties", "children": [ - 1100 + 1106 ] } ] }, { - "id": 1225, + "id": 1231, "name": "AdminDeleteProductCategoriesCategoryProductsBatchParams", "variant": "declaration", "kind": 128, @@ -13986,39 +14755,39 @@ }, "children": [ { - "id": 1226, + "id": 1232, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1227, + "id": 1233, "name": "new AdminDeleteProductCategoriesCategoryProductsBatchParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1225, + "target": 1231, "name": "AdminDeleteProductCategoriesCategoryProductsBatchParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 1228, + "id": 1234, "name": "expand", "variant": "declaration", "kind": 1024, @@ -14039,12 +14808,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 1229, + "id": 1235, "name": "fields", "variant": "declaration", "kind": 1024, @@ -14065,7 +14834,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -14074,49 +14843,49 @@ { "title": "Constructors", "children": [ - 1226 + 1232 ] }, { "title": "Properties", "children": [ - 1228, - 1229 + 1234, + 1235 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 1221, + "id": 1227, "name": "AdminDeleteProductCategoriesCategoryProductsBatchReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1222, + "id": 1228, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1223, + "id": 1229, "name": "new AdminDeleteProductCategoriesCategoryProductsBatchReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1221, + "target": 1227, "name": "AdminDeleteProductCategoriesCategoryProductsBatchReq", "package": "@medusajs/medusa" } @@ -14124,7 +14893,7 @@ ] }, { - "id": 1224, + "id": 1230, "name": "product_ids", "variant": "declaration", "kind": 1024, @@ -14141,7 +14910,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4385, + "target": 4412, "name": "ProductBatchProductCategory", "package": "@medusajs/medusa" } @@ -14152,13 +14921,13 @@ { "title": "Constructors", "children": [ - 1222 + 1228 ] }, { "title": "Properties", "children": [ - 1224 + 1230 ] } ] @@ -14231,28 +15000,28 @@ ] }, { - "id": 1512, + "id": 1511, "name": "AdminDeletePublishableApiKeySalesChannelsBatchReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1513, + "id": 1512, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1514, + "id": 1513, "name": "new AdminDeletePublishableApiKeySalesChannelsBatchReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1512, + "target": 1511, "name": "AdminDeletePublishableApiKeySalesChannelsBatchReq", "package": "@medusajs/medusa" } @@ -14260,7 +15029,7 @@ ] }, { - "id": 1515, + "id": 1514, "name": "sales_channel_ids", "variant": "declaration", "kind": 1024, @@ -14277,7 +15046,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4507, + "target": 4534, "name": "ProductBatchSalesChannel", "package": "@medusajs/medusa" } @@ -14288,40 +15057,40 @@ { "title": "Constructors", "children": [ - 1513 + 1512 ] }, { "title": "Properties", "children": [ - 1515 + 1514 ] } ] }, { - "id": 1722, + "id": 1719, "name": "AdminDeleteSalesChannelsChannelProductsBatchReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1723, + "id": 1720, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1724, + "id": 1721, "name": "new AdminDeleteSalesChannelsChannelProductsBatchReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1722, + "target": 1719, "name": "AdminDeleteSalesChannelsChannelProductsBatchReq", "package": "@medusajs/medusa" } @@ -14329,7 +15098,7 @@ ] }, { - "id": 1725, + "id": 1722, "name": "product_ids", "variant": "declaration", "kind": 1024, @@ -14346,7 +15115,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4507, + "target": 4534, "name": "ProductBatchSalesChannel", "package": "@medusajs/medusa" } @@ -14357,40 +15126,40 @@ { "title": "Constructors", "children": [ - 1723 + 1720 ] }, { "title": "Properties", "children": [ - 1725 + 1722 ] } ] }, { - "id": 1752, + "id": 1749, "name": "AdminDeleteSalesChannelsChannelStockLocationsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1753, + "id": 1750, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1754, + "id": 1751, "name": "new AdminDeleteSalesChannelsChannelStockLocationsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1752, + "target": 1749, "name": "AdminDeleteSalesChannelsChannelStockLocationsReq", "package": "@medusajs/medusa" } @@ -14398,7 +15167,7 @@ ] }, { - "id": 1755, + "id": 1752, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -14421,19 +15190,19 @@ { "title": "Constructors", "children": [ - 1753 + 1750 ] }, { "title": "Properties", "children": [ - 1755 + 1752 ] } ] }, { - "id": 1932, + "id": 1930, "name": "AdminDeleteTaxRatesTaxRateProductTypesParams", "variant": "declaration", "kind": 128, @@ -14448,21 +15217,21 @@ }, "children": [ { - "id": 1933, + "id": 1931, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1934, + "id": 1932, "name": "new AdminDeleteTaxRatesTaxRateProductTypesParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1932, + "target": 1930, "name": "AdminDeleteTaxRatesTaxRateProductTypesParams", "package": "@medusajs/medusa" } @@ -14470,7 +15239,7 @@ ] }, { - "id": 1935, + "id": 1933, "name": "expand", "variant": "declaration", "kind": 1024, @@ -14494,7 +15263,7 @@ } }, { - "id": 1936, + "id": 1934, "name": "fields", "variant": "declaration", "kind": 1024, @@ -14522,20 +15291,20 @@ { "title": "Constructors", "children": [ - 1933 + 1931 ] }, { "title": "Properties", "children": [ - 1935, - 1936 + 1933, + 1934 ] } ] }, { - "id": 1928, + "id": 1926, "name": "AdminDeleteTaxRatesTaxRateProductTypesReq", "variant": "declaration", "kind": 128, @@ -14550,14 +15319,14 @@ }, "children": [ { - "id": 1929, + "id": 1927, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1930, + "id": 1928, "name": "new AdminDeleteTaxRatesTaxRateProductTypesReq", "variant": "signature", "kind": 16384, @@ -14572,7 +15341,7 @@ }, "type": { "type": "reference", - "target": 1928, + "target": 1926, "name": "AdminDeleteTaxRatesTaxRateProductTypesReq", "package": "@medusajs/medusa" } @@ -14580,7 +15349,7 @@ ] }, { - "id": 1931, + "id": 1929, "name": "product_types", "variant": "declaration", "kind": 1024, @@ -14606,19 +15375,19 @@ { "title": "Constructors", "children": [ - 1929 + 1927 ] }, { "title": "Properties", "children": [ - 1931 + 1929 ] } ] }, { - "id": 1941, + "id": 1939, "name": "AdminDeleteTaxRatesTaxRateProductsParams", "variant": "declaration", "kind": 128, @@ -14633,21 +15402,21 @@ }, "children": [ { - "id": 1942, + "id": 1940, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1943, + "id": 1941, "name": "new AdminDeleteTaxRatesTaxRateProductsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1941, + "target": 1939, "name": "AdminDeleteTaxRatesTaxRateProductsParams", "package": "@medusajs/medusa" } @@ -14655,7 +15424,7 @@ ] }, { - "id": 1944, + "id": 1942, "name": "expand", "variant": "declaration", "kind": 1024, @@ -14679,7 +15448,7 @@ } }, { - "id": 1945, + "id": 1943, "name": "fields", "variant": "declaration", "kind": 1024, @@ -14707,41 +15476,41 @@ { "title": "Constructors", "children": [ - 1942 + 1940 ] }, { "title": "Properties", "children": [ - 1944, - 1945 + 1942, + 1943 ] } ] }, { - "id": 1937, + "id": 1935, "name": "AdminDeleteTaxRatesTaxRateProductsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1938, + "id": 1936, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1939, + "id": 1937, "name": "new AdminDeleteTaxRatesTaxRateProductsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1937, + "target": 1935, "name": "AdminDeleteTaxRatesTaxRateProductsReq", "package": "@medusajs/medusa" } @@ -14749,7 +15518,7 @@ ] }, { - "id": 1940, + "id": 1938, "name": "products", "variant": "declaration", "kind": 1024, @@ -14775,19 +15544,19 @@ { "title": "Constructors", "children": [ - 1938 + 1936 ] }, { "title": "Properties", "children": [ - 1940 + 1938 ] } ] }, { - "id": 1950, + "id": 1948, "name": "AdminDeleteTaxRatesTaxRateShippingOptionsParams", "variant": "declaration", "kind": 128, @@ -14802,21 +15571,21 @@ }, "children": [ { - "id": 1951, + "id": 1949, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1952, + "id": 1950, "name": "new AdminDeleteTaxRatesTaxRateShippingOptionsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1950, + "target": 1948, "name": "AdminDeleteTaxRatesTaxRateShippingOptionsParams", "package": "@medusajs/medusa" } @@ -14824,7 +15593,7 @@ ] }, { - "id": 1953, + "id": 1951, "name": "expand", "variant": "declaration", "kind": 1024, @@ -14848,7 +15617,7 @@ } }, { - "id": 1954, + "id": 1952, "name": "fields", "variant": "declaration", "kind": 1024, @@ -14876,41 +15645,41 @@ { "title": "Constructors", "children": [ - 1951 + 1949 ] }, { "title": "Properties", "children": [ - 1953, - 1954 + 1951, + 1952 ] } ] }, { - "id": 1946, + "id": 1944, "name": "AdminDeleteTaxRatesTaxRateShippingOptionsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1947, + "id": 1945, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1948, + "id": 1946, "name": "new AdminDeleteTaxRatesTaxRateShippingOptionsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1946, + "target": 1944, "name": "AdminDeleteTaxRatesTaxRateShippingOptionsReq", "package": "@medusajs/medusa" } @@ -14918,7 +15687,7 @@ ] }, { - "id": 1949, + "id": 1947, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -14944,40 +15713,40 @@ { "title": "Constructors", "children": [ - 1947 + 1945 ] }, { "title": "Properties", "children": [ - 1949 + 1947 ] } ] }, { - "id": 2024, + "id": 2022, "name": "AdminDeleteUploadsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2025, + "id": 2023, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2026, + "id": 2024, "name": "new AdminDeleteUploadsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2024, + "target": 2022, "name": "AdminDeleteUploadsReq", "package": "@medusajs/medusa" } @@ -14985,7 +15754,7 @@ ] }, { - "id": 2027, + "id": 2025, "name": "file_key", "variant": "declaration", "kind": 1024, @@ -15008,13 +15777,13 @@ { "title": "Constructors", "children": [ - 2025 + 2023 ] }, { "title": "Properties", "children": [ - 2027 + 2025 ] } ] @@ -15274,7 +16043,7 @@ }, { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -15314,7 +16083,7 @@ }, { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -15354,7 +16123,7 @@ }, { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -15387,7 +16156,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -15451,7 +16220,7 @@ }, { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -15634,7 +16403,7 @@ }, { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -15691,7 +16460,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -15907,7 +16676,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -15938,7 +16707,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -16103,7 +16872,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -16176,14 +16945,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3812, + "target": 3821, "name": "FindPaginationParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3811, + "target": 3820, "name": "FindPaginationParams.constructor" } }, @@ -16274,7 +17043,7 @@ "defaultValue": "20", "inheritedFrom": { "type": "reference", - "target": 3814, + "target": 3823, "name": "FindPaginationParams.limit" } }, @@ -16312,7 +17081,7 @@ "defaultValue": "0", "inheritedFrom": { "type": "reference", - "target": 3813, + "target": 3822, "name": "FindPaginationParams.offset" } }, @@ -16375,7 +17144,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3810, + "target": 3819, "name": "FindPaginationParams", "package": "@medusajs/medusa" } @@ -16417,14 +17186,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -16450,7 +17219,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -16476,7 +17245,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -16499,7 +17268,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -16541,14 +17310,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 4161, + "target": 4188, "name": "FilterableCustomerGroupProps.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4160, + "target": 4187, "name": "FilterableCustomerGroupProps.constructor" } }, @@ -16578,13 +17347,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4166, + "target": 4193, "name": "FilterableCustomerGroupProps.created_at" } }, @@ -16610,7 +17379,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4167, + "target": 4194, "name": "FilterableCustomerGroupProps.discount_condition_id" } }, @@ -16667,7 +17436,7 @@ }, { "type": "reference", - "target": 3760, + "target": 3769, "name": "StringComparisonOperator", "package": "@medusajs/medusa" } @@ -16675,7 +17444,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4162, + "target": 4189, "name": "FilterableCustomerGroupProps.id" } }, @@ -16726,7 +17495,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4164, + "target": 4191, "name": "FilterableCustomerGroupProps.name" } }, @@ -16803,7 +17572,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4163, + "target": 4190, "name": "FilterableCustomerGroupProps.q" } }, @@ -16833,13 +17602,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4165, + "target": 4192, "name": "FilterableCustomerGroupProps.updated_at" } } @@ -16870,7 +17639,7 @@ "extendedTypes": [ { "type": "reference", - "target": 4159, + "target": 4186, "name": "FilterableCustomerGroupProps", "package": "@medusajs/medusa" } @@ -16912,14 +17681,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 4170, + "target": 4197, "name": "AdminListCustomerSelector.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4169, + "target": 4196, "name": "AdminListCustomerSelector.constructor" } }, @@ -16969,7 +17738,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4173, + "target": 4200, "name": "AdminListCustomerSelector.groups" } }, @@ -16995,7 +17764,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4172, + "target": 4199, "name": "AdminListCustomerSelector.has_account" } }, @@ -17083,7 +17852,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4171, + "target": 4198, "name": "AdminListCustomerSelector.q" } } @@ -17110,7 +17879,7 @@ "extendedTypes": [ { "type": "reference", - "target": 4168, + "target": 4195, "name": "AdminListCustomerSelector", "package": "@medusajs/medusa" } @@ -17152,14 +17921,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -17185,7 +17954,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -17211,7 +17980,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -17234,7 +18003,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -17276,14 +18045,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -17309,7 +18078,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -17335,7 +18104,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -17358,7 +18127,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -17400,14 +18169,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -17433,7 +18202,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -17459,7 +18228,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -17482,14 +18251,14 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 4186, + "id": 4213, "name": "AdminGetDiscountsDiscountRuleParams", "variant": "declaration", "kind": 128, @@ -17504,21 +18273,21 @@ }, "children": [ { - "id": 4187, + "id": 4214, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4188, + "id": 4215, "name": "new AdminGetDiscountsDiscountRuleParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4186, + "target": 4213, "name": "AdminGetDiscountsDiscountRuleParams", "package": "@medusajs/medusa" } @@ -17526,7 +18295,7 @@ ] }, { - "id": 4190, + "id": 4217, "name": "allocation", "variant": "declaration", "kind": 1024, @@ -17552,7 +18321,7 @@ } }, { - "id": 4189, + "id": 4216, "name": "type", "variant": "declaration", "kind": 1024, @@ -17582,14 +18351,14 @@ { "title": "Constructors", "children": [ - 4187 + 4214 ] }, { "title": "Properties", "children": [ - 4190, - 4189 + 4217, + 4216 ] } ] @@ -17868,7 +18637,7 @@ }, "type": { "type": "reference", - "target": 4186, + "target": 4213, "name": "AdminGetDiscountsDiscountRuleParams", "package": "@medusajs/medusa" } @@ -17901,7 +18670,7 @@ "types": [ { "type": "reference", - "target": 3805, + "target": 3814, "typeArguments": [ { "type": "intrinsic", @@ -17913,7 +18682,7 @@ }, { "type": "reference", - "target": 3810, + "target": 3819, "typeArguments": [ { "type": "intrinsic", @@ -18221,14 +18990,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -18254,7 +19023,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -18280,7 +19049,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } }, @@ -18328,7 +19097,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -18370,14 +19139,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -18403,7 +19172,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -18429,7 +19198,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -18452,7 +19221,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -18608,7 +19377,7 @@ }, { "type": "reference", - "target": 3770, + "target": 3779, "name": "NumericalComparisonOperator", "package": "@medusajs/medusa" } @@ -18655,7 +19424,7 @@ }, { "type": "reference", - "target": 3760, + "target": 3769, "name": "StringComparisonOperator", "package": "@medusajs/medusa" } @@ -18728,7 +19497,7 @@ }, { "type": "reference", - "target": 3770, + "target": 3779, "name": "NumericalComparisonOperator", "package": "@medusajs/medusa" } @@ -19051,7 +19820,7 @@ }, { "type": "reference", - "target": 3770, + "target": 3779, "name": "NumericalComparisonOperator", "package": "@medusajs/medusa" } @@ -19091,7 +19860,7 @@ }, { "type": "reference", - "target": 3770, + "target": 3779, "name": "NumericalComparisonOperator", "package": "@medusajs/medusa" } @@ -19135,7 +19904,7 @@ "types": [ { "type": "reference", - "target": 3805, + "target": 3814, "typeArguments": [ { "type": "intrinsic", @@ -19147,7 +19916,7 @@ }, { "type": "reference", - "target": 3810, + "target": 3819, "typeArguments": [ { "type": "intrinsic", @@ -19617,14 +20386,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -19650,7 +20419,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -19676,7 +20445,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -19699,7 +20468,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -19741,14 +20510,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 4305, + "target": 4332, "name": "AdminListOrdersSelector.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4304, + "target": 4331, "name": "AdminListOrdersSelector.constructor" } }, @@ -19778,13 +20547,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4319, + "target": 4346, "name": "AdminListOrdersSelector.canceled_at" } }, @@ -19810,7 +20579,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4312, + "target": 4339, "name": "AdminListOrdersSelector.cart_id" } }, @@ -19840,13 +20609,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4320, + "target": 4347, "name": "AdminListOrdersSelector.created_at" } }, @@ -19872,7 +20641,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4316, + "target": 4343, "name": "AdminListOrdersSelector.currency_code" } }, @@ -19898,7 +20667,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4313, + "target": 4340, "name": "AdminListOrdersSelector.customer_id" } }, @@ -19924,7 +20693,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4311, + "target": 4338, "name": "AdminListOrdersSelector.display_id" } }, @@ -19950,7 +20719,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4314, + "target": 4341, "name": "AdminListOrdersSelector.email" } }, @@ -20021,7 +20790,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4309, + "target": 4336, "name": "AdminListOrdersSelector.fulfillment_status" } }, @@ -20047,7 +20816,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4307, + "target": 4334, "name": "AdminListOrdersSelector.id" } }, @@ -20138,7 +20907,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4310, + "target": 4337, "name": "AdminListOrdersSelector.payment_status" } }, @@ -20164,7 +20933,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4306, + "target": 4333, "name": "AdminListOrdersSelector.q" } }, @@ -20202,7 +20971,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4315, + "target": 4342, "name": "AdminListOrdersSelector.region_id" } }, @@ -20231,7 +21000,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4318, + "target": 4345, "name": "AdminListOrdersSelector.sales_channel_id" } }, @@ -20260,7 +21029,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4308, + "target": 4335, "name": "AdminListOrdersSelector.status" } }, @@ -20286,7 +21055,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4317, + "target": 4344, "name": "AdminListOrdersSelector.tax_rate" } }, @@ -20316,13 +21085,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4321, + "target": 4348, "name": "AdminListOrdersSelector.updated_at" } } @@ -20363,7 +21132,7 @@ "extendedTypes": [ { "type": "reference", - "target": 4303, + "target": 4330, "name": "AdminListOrdersSelector", "package": "@medusajs/medusa" } @@ -20405,14 +21174,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -20438,7 +21207,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -20464,7 +21233,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -20487,14 +21256,14 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 1123, + "id": 1129, "name": "AdminGetPriceListPaginationParams", "variant": "declaration", "kind": 128, @@ -20509,39 +21278,39 @@ }, "children": [ { - "id": 1124, + "id": 1130, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1125, + "id": 1131, "name": "new AdminGetPriceListPaginationParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1123, + "target": 1129, "name": "AdminGetPriceListPaginationParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3911, + "target": 3920, "name": "FilterablePriceListProps.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3910, + "target": 3919, "name": "FilterablePriceListProps.constructor" } }, { - "id": 1137, + "id": 1143, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -20566,18 +21335,18 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3919, + "target": 3928, "name": "FilterablePriceListProps.created_at" } }, { - "id": 1134, + "id": 1140, "name": "customer_groups", "variant": "declaration", "kind": 1024, @@ -20601,12 +21370,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3916, + "target": 3925, "name": "FilterablePriceListProps.customer_groups" } }, { - "id": 1139, + "id": 1145, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -20631,18 +21400,18 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3921, + "target": 3930, "name": "FilterablePriceListProps.deleted_at" } }, { - "id": 1135, + "id": 1141, "name": "description", "variant": "declaration", "kind": 1024, @@ -20663,12 +21432,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3917, + "target": 3926, "name": "FilterablePriceListProps.description" } }, { - "id": 1128, + "id": 1134, "name": "expand", "variant": "declaration", "kind": 1024, @@ -20689,7 +21458,7 @@ } }, { - "id": 1130, + "id": 1136, "name": "id", "variant": "declaration", "kind": 1024, @@ -20710,12 +21479,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3912, + "target": 3921, "name": "FilterablePriceListProps.id" } }, { - "id": 1127, + "id": 1133, "name": "limit", "variant": "declaration", "kind": 1024, @@ -20748,7 +21517,7 @@ "defaultValue": "10" }, { - "id": 1133, + "id": 1139, "name": "name", "variant": "declaration", "kind": 1024, @@ -20769,12 +21538,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3915, + "target": 3924, "name": "FilterablePriceListProps.name" } }, { - "id": 1126, + "id": 1132, "name": "offset", "variant": "declaration", "kind": 1024, @@ -20807,7 +21576,7 @@ "defaultValue": "0" }, { - "id": 1129, + "id": 1135, "name": "order", "variant": "declaration", "kind": 1024, @@ -20836,7 +21605,7 @@ } }, { - "id": 1131, + "id": 1137, "name": "q", "variant": "declaration", "kind": 1024, @@ -20857,12 +21626,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3913, + "target": 3922, "name": "FilterablePriceListProps.q" } }, { - "id": 1132, + "id": 1138, "name": "status", "variant": "declaration", "kind": 1024, @@ -20881,19 +21650,19 @@ "type": "array", "elementType": { "type": "reference", - "target": 3906, + "target": 3915, "name": "PriceListStatus", "package": "@medusajs/medusa" } }, "inheritedFrom": { "type": "reference", - "target": 3914, + "target": 3923, "name": "FilterablePriceListProps.status" } }, { - "id": 1136, + "id": 1142, "name": "type", "variant": "declaration", "kind": 1024, @@ -20912,19 +21681,19 @@ "type": "array", "elementType": { "type": "reference", - "target": 3903, + "target": 3912, "name": "PriceListType", "package": "@medusajs/medusa" } }, "inheritedFrom": { "type": "reference", - "target": 3918, + "target": 3927, "name": "FilterablePriceListProps.type" } }, { - "id": 1138, + "id": 1144, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -20949,13 +21718,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3920, + "target": 3929, "name": "FilterablePriceListProps.updated_at" } } @@ -20964,40 +21733,40 @@ { "title": "Constructors", "children": [ - 1124 + 1130 ] }, { "title": "Properties", "children": [ - 1137, + 1143, + 1140, + 1145, + 1141, 1134, - 1139, - 1135, - 1128, - 1130, - 1127, - 1133, - 1126, - 1129, - 1131, - 1132, 1136, - 1138 + 1133, + 1139, + 1132, + 1135, + 1137, + 1138, + 1142, + 1144 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3909, + "target": 3918, "name": "FilterablePriceListProps", "package": "@medusajs/medusa" } ] }, { - "id": 1101, + "id": 1107, "name": "AdminGetPriceListsPriceListProductsParams", "variant": "declaration", "kind": 128, @@ -21012,21 +21781,21 @@ }, "children": [ { - "id": 1102, + "id": 1108, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1103, + "id": 1109, "name": "new AdminGetPriceListsPriceListProductsParams", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 1104, + "id": 1110, "name": "args", "variant": "param", "kind": 32768, @@ -21044,7 +21813,7 @@ ], "type": { "type": "reference", - "target": 1101, + "target": 1107, "name": "AdminGetPriceListsPriceListProductsParams", "package": "@medusajs/medusa" }, @@ -21062,7 +21831,7 @@ } }, { - "id": 1108, + "id": 1114, "name": "collection_id", "variant": "declaration", "kind": 1024, @@ -21086,7 +21855,7 @@ } }, { - "id": 1116, + "id": 1122, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -21111,13 +21880,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 1118, + "id": 1124, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -21142,13 +21911,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 1111, + "id": 1117, "name": "description", "variant": "declaration", "kind": 1024, @@ -21169,7 +21938,7 @@ } }, { - "id": 1119, + "id": 1125, "name": "expand", "variant": "declaration", "kind": 1024, @@ -21195,7 +21964,7 @@ } }, { - "id": 1120, + "id": 1126, "name": "fields", "variant": "declaration", "kind": 1024, @@ -21221,7 +21990,7 @@ } }, { - "id": 1112, + "id": 1118, "name": "handle", "variant": "declaration", "kind": 1024, @@ -21242,7 +22011,7 @@ } }, { - "id": 1105, + "id": 1111, "name": "id", "variant": "declaration", "kind": 1024, @@ -21263,7 +22032,7 @@ } }, { - "id": 1113, + "id": 1119, "name": "is_giftcard", "variant": "declaration", "kind": 1024, @@ -21284,7 +22053,7 @@ } }, { - "id": 1122, + "id": 1128, "name": "limit", "variant": "declaration", "kind": 1024, @@ -21319,7 +22088,7 @@ } }, { - "id": 1121, + "id": 1127, "name": "offset", "variant": "declaration", "kind": 1024, @@ -21357,7 +22126,7 @@ } }, { - "id": 1115, + "id": 1121, "name": "order", "variant": "declaration", "kind": 1024, @@ -21386,7 +22155,7 @@ } }, { - "id": 1106, + "id": 1112, "name": "q", "variant": "declaration", "kind": 1024, @@ -21407,7 +22176,7 @@ } }, { - "id": 1107, + "id": 1113, "name": "status", "variant": "declaration", "kind": 1024, @@ -21436,7 +22205,7 @@ } }, { - "id": 1109, + "id": 1115, "name": "tags", "variant": "declaration", "kind": 1024, @@ -21460,7 +22229,7 @@ } }, { - "id": 1110, + "id": 1116, "name": "title", "variant": "declaration", "kind": 1024, @@ -21481,7 +22250,7 @@ } }, { - "id": 1114, + "id": 1120, "name": "type", "variant": "declaration", "kind": 1024, @@ -21502,7 +22271,7 @@ } }, { - "id": 1117, + "id": 1123, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -21527,7 +22296,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -21537,30 +22306,30 @@ { "title": "Constructors", "children": [ - 1102 + 1108 ] }, { "title": "Properties", "children": [ - 1108, - 1116, + 1114, + 1122, + 1124, + 1117, + 1125, + 1126, 1118, 1111, 1119, - 1120, - 1112, - 1105, - 1113, - 1122, + 1128, + 1127, 1121, + 1112, + 1113, 1115, - 1106, - 1107, - 1109, - 1110, - 1114, - 1117 + 1116, + 1120, + 1123 ] } ], @@ -21570,7 +22339,7 @@ "types": [ { "type": "reference", - "target": 3805, + "target": 3814, "typeArguments": [ { "type": "intrinsic", @@ -21582,7 +22351,7 @@ }, { "type": "reference", - "target": 3810, + "target": 3819, "typeArguments": [ { "type": "intrinsic", @@ -21597,7 +22366,7 @@ ] }, { - "id": 1167, + "id": 1173, "name": "AdminGetProductCategoriesParams", "variant": "declaration", "kind": 128, @@ -21612,21 +22381,21 @@ }, "children": [ { - "id": 1168, + "id": 1174, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1169, + "id": 1175, "name": "new AdminGetProductCategoriesParams", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 1170, + "id": 1176, "name": "args", "variant": "param", "kind": 32768, @@ -21644,7 +22413,7 @@ ], "type": { "type": "reference", - "target": 1167, + "target": 1173, "name": "AdminGetProductCategoriesParams", "package": "@medusajs/medusa" }, @@ -21662,7 +22431,7 @@ } }, { - "id": 1177, + "id": 1183, "name": "expand", "variant": "declaration", "kind": 1024, @@ -21688,7 +22457,7 @@ } }, { - "id": 1178, + "id": 1184, "name": "fields", "variant": "declaration", "kind": 1024, @@ -21714,7 +22483,7 @@ } }, { - "id": 1172, + "id": 1178, "name": "handle", "variant": "declaration", "kind": 1024, @@ -21735,7 +22504,7 @@ } }, { - "id": 1173, + "id": 1179, "name": "include_descendants_tree", "variant": "declaration", "kind": 1024, @@ -21756,7 +22525,7 @@ } }, { - "id": 1175, + "id": 1181, "name": "is_active", "variant": "declaration", "kind": 1024, @@ -21777,7 +22546,7 @@ } }, { - "id": 1174, + "id": 1180, "name": "is_internal", "variant": "declaration", "kind": 1024, @@ -21798,7 +22567,7 @@ } }, { - "id": 1180, + "id": 1186, "name": "limit", "variant": "declaration", "kind": 1024, @@ -21833,7 +22602,7 @@ } }, { - "id": 1179, + "id": 1185, "name": "offset", "variant": "declaration", "kind": 1024, @@ -21871,7 +22640,7 @@ } }, { - "id": 1176, + "id": 1182, "name": "parent_category_id", "variant": "declaration", "kind": 1024, @@ -21901,7 +22670,7 @@ } }, { - "id": 1171, + "id": 1177, "name": "q", "variant": "declaration", "kind": 1024, @@ -21926,22 +22695,22 @@ { "title": "Constructors", "children": [ - 1168 + 1174 ] }, { "title": "Properties", "children": [ - 1177, + 1183, + 1184, 1178, - 1172, - 1173, - 1175, - 1174, - 1180, 1179, - 1176, - 1171 + 1181, + 1180, + 1186, + 1185, + 1182, + 1177 ] } ], @@ -21951,7 +22720,7 @@ "types": [ { "type": "reference", - "target": 3805, + "target": 3814, "typeArguments": [ { "type": "intrinsic", @@ -21963,7 +22732,7 @@ }, { "type": "reference", - "target": 3810, + "target": 3819, "typeArguments": [ { "type": "intrinsic", @@ -21978,7 +22747,7 @@ ] }, { - "id": 1162, + "id": 1168, "name": "AdminGetProductCategoryParams", "variant": "declaration", "kind": 128, @@ -21993,39 +22762,39 @@ }, "children": [ { - "id": 1163, + "id": 1169, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1164, + "id": 1170, "name": "new AdminGetProductCategoryParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1162, + "target": 1168, "name": "AdminGetProductCategoryParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 1165, + "id": 1171, "name": "expand", "variant": "declaration", "kind": 1024, @@ -22046,12 +22815,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 1166, + "id": 1172, "name": "fields", "variant": "declaration", "kind": 1024, @@ -22072,7 +22841,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -22081,28 +22850,28 @@ { "title": "Constructors", "children": [ - 1163 + 1169 ] }, { "title": "Properties", "children": [ - 1165, - 1166 + 1171, + 1172 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 1398, + "id": 1402, "name": "AdminGetProductParams", "variant": "declaration", "kind": 128, @@ -22117,39 +22886,39 @@ }, "children": [ { - "id": 1399, + "id": 1403, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1400, + "id": 1404, "name": "new AdminGetProductParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1398, + "target": 1402, "name": "AdminGetProductParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 1401, + "id": 1405, "name": "expand", "variant": "declaration", "kind": 1024, @@ -22170,12 +22939,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 1402, + "id": 1406, "name": "fields", "variant": "declaration", "kind": 1024, @@ -22196,7 +22965,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -22205,28 +22974,28 @@ { "title": "Constructors", "children": [ - 1399 + 1403 ] }, { "title": "Properties", "children": [ - 1401, - 1402 + 1405, + 1406 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 1235, + "id": 1241, "name": "AdminGetProductTagsPaginationParams", "variant": "declaration", "kind": 128, @@ -22241,21 +23010,21 @@ }, "children": [ { - "id": 1236, + "id": 1242, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1237, + "id": 1243, "name": "new AdminGetProductTagsPaginationParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1235, + "target": 1241, "name": "AdminGetProductTagsPaginationParams", "package": "@medusajs/medusa" } @@ -22263,7 +23032,7 @@ ] }, { - "id": 1238, + "id": 1244, "name": "limit", "variant": "declaration", "kind": 1024, @@ -22294,7 +23063,7 @@ "defaultValue": "10" }, { - "id": 1239, + "id": 1245, "name": "offset", "variant": "declaration", "kind": 1024, @@ -22329,27 +23098,27 @@ { "title": "Constructors", "children": [ - 1236 + 1242 ] }, { "title": "Properties", "children": [ - 1238, - 1239 + 1244, + 1245 ] } ], "extendedBy": [ { "type": "reference", - "target": 1240, + "target": 1246, "name": "AdminGetProductTagsParams" } ] }, { - "id": 1240, + "id": 1246, "name": "AdminGetProductTagsParams", "variant": "declaration", "kind": 128, @@ -22364,39 +23133,39 @@ }, "children": [ { - "id": 1241, + "id": 1247, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1242, + "id": 1248, "name": "new AdminGetProductTagsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1240, + "target": 1246, "name": "AdminGetProductTagsParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 1237, + "target": 1243, "name": "AdminGetProductTagsPaginationParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 1236, + "target": 1242, "name": "AdminGetProductTagsPaginationParams.constructor" } }, { - "id": 1246, + "id": 1252, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -22421,13 +23190,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 1249, + "id": 1255, "name": "discount_condition_id", "variant": "declaration", "kind": 1024, @@ -22448,7 +23217,7 @@ } }, { - "id": 1243, + "id": 1249, "name": "id", "variant": "declaration", "kind": 1024, @@ -22479,7 +23248,7 @@ }, { "type": "reference", - "target": 3760, + "target": 3769, "name": "StringComparisonOperator", "package": "@medusajs/medusa" } @@ -22487,7 +23256,7 @@ } }, { - "id": 1250, + "id": 1256, "name": "limit", "variant": "declaration", "kind": 1024, @@ -22518,12 +23287,12 @@ "defaultValue": "10", "inheritedFrom": { "type": "reference", - "target": 1238, + "target": 1244, "name": "AdminGetProductTagsPaginationParams.limit" } }, { - "id": 1251, + "id": 1257, "name": "offset", "variant": "declaration", "kind": 1024, @@ -22554,12 +23323,12 @@ "defaultValue": "0", "inheritedFrom": { "type": "reference", - "target": 1239, + "target": 1245, "name": "AdminGetProductTagsPaginationParams.offset" } }, { - "id": 1248, + "id": 1254, "name": "order", "variant": "declaration", "kind": 1024, @@ -22588,7 +23357,7 @@ } }, { - "id": 1244, + "id": 1250, "name": "q", "variant": "declaration", "kind": 1024, @@ -22609,7 +23378,7 @@ } }, { - "id": 1247, + "id": 1253, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -22634,13 +23403,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 1245, + "id": 1251, "name": "value", "variant": "declaration", "kind": 1024, @@ -22671,7 +23440,7 @@ }, { "type": "reference", - "target": 3760, + "target": 3769, "name": "StringComparisonOperator", "package": "@medusajs/medusa" } @@ -22683,35 +23452,35 @@ { "title": "Constructors", "children": [ - 1241 + 1247 ] }, { "title": "Properties", "children": [ - 1246, + 1252, + 1255, 1249, - 1243, + 1256, + 1257, + 1254, 1250, - 1251, - 1248, - 1244, - 1247, - 1245 + 1253, + 1251 ] } ], "extendedTypes": [ { "type": "reference", - "target": 1235, + "target": 1241, "name": "AdminGetProductTagsPaginationParams", "package": "@medusajs/medusa" } ] }, { - "id": 1257, + "id": 1263, "name": "AdminGetProductTypesParams", "variant": "declaration", "kind": 128, @@ -22726,39 +23495,39 @@ }, "children": [ { - "id": 1258, + "id": 1264, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1259, + "id": 1265, "name": "new AdminGetProductTypesParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1257, + "target": 1263, "name": "AdminGetProductTypesParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3812, + "target": 3821, "name": "FindPaginationParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3811, + "target": 3820, "name": "FindPaginationParams.constructor" } }, { - "id": 1263, + "id": 1269, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -22783,13 +23552,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 1266, + "id": 1272, "name": "discount_condition_id", "variant": "declaration", "kind": 1024, @@ -22810,7 +23579,7 @@ } }, { - "id": 1260, + "id": 1266, "name": "id", "variant": "declaration", "kind": 1024, @@ -22841,7 +23610,7 @@ }, { "type": "reference", - "target": 3760, + "target": 3769, "name": "StringComparisonOperator", "package": "@medusajs/medusa" } @@ -22849,7 +23618,7 @@ } }, { - "id": 1268, + "id": 1274, "name": "limit", "variant": "declaration", "kind": 1024, @@ -22882,12 +23651,12 @@ "defaultValue": "20", "inheritedFrom": { "type": "reference", - "target": 3814, + "target": 3823, "name": "FindPaginationParams.limit" } }, { - "id": 1267, + "id": 1273, "name": "offset", "variant": "declaration", "kind": 1024, @@ -22920,12 +23689,12 @@ "defaultValue": "0", "inheritedFrom": { "type": "reference", - "target": 3813, + "target": 3822, "name": "FindPaginationParams.offset" } }, { - "id": 1265, + "id": 1271, "name": "order", "variant": "declaration", "kind": 1024, @@ -22954,7 +23723,7 @@ } }, { - "id": 1261, + "id": 1267, "name": "q", "variant": "declaration", "kind": 1024, @@ -22975,7 +23744,7 @@ } }, { - "id": 1264, + "id": 1270, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -23000,13 +23769,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 1262, + "id": 1268, "name": "value", "variant": "declaration", "kind": 1024, @@ -23037,7 +23806,7 @@ }, { "type": "reference", - "target": 3760, + "target": 3769, "name": "StringComparisonOperator", "package": "@medusajs/medusa" } @@ -23049,35 +23818,35 @@ { "title": "Constructors", "children": [ - 1258 + 1264 ] }, { "title": "Properties", "children": [ - 1263, + 1269, + 1272, 1266, - 1260, - 1268, + 1274, + 1273, + 1271, 1267, - 1265, - 1261, - 1264, - 1262 + 1270, + 1268 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3810, + "target": 3819, "name": "FindPaginationParams", "package": "@medusajs/medusa" } ] }, { - "id": 1408, + "id": 1407, "name": "AdminGetProductsParams", "variant": "declaration", "kind": 128, @@ -23092,39 +23861,39 @@ }, "children": [ { - "id": 1409, + "id": 1408, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1410, + "id": 1409, "name": "new AdminGetProductsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1408, + "target": 1407, "name": "AdminGetProductsParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4451, + "target": 4478, "name": "FilterableProductProps.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4450, + "target": 4477, "name": "FilterableProductProps.constructor" } }, { - "id": 1429, + "id": 1428, "name": "category_id", "variant": "declaration", "kind": 1024, @@ -23148,12 +23917,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4465, + "target": 4492, "name": "FilterableProductProps.category_id" } }, { - "id": 1420, + "id": 1419, "name": "collection_id", "variant": "declaration", "kind": 1024, @@ -23177,12 +23946,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4456, + "target": 4483, "name": "FilterableProductProps.collection_id" } }, { - "id": 1431, + "id": 1430, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -23207,18 +23976,18 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4467, + "target": 4494, "name": "FilterableProductProps.created_at" } }, { - "id": 1433, + "id": 1432, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -23243,18 +24012,18 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4469, + "target": 4496, "name": "FilterableProductProps.deleted_at" } }, { - "id": 1423, + "id": 1422, "name": "description", "variant": "declaration", "kind": 1024, @@ -23275,12 +24044,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4459, + "target": 4486, "name": "FilterableProductProps.description" } }, { - "id": 1428, + "id": 1427, "name": "discount_condition_id", "variant": "declaration", "kind": 1024, @@ -23301,12 +24070,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4464, + "target": 4491, "name": "FilterableProductProps.discount_condition_id" } }, { - "id": 1413, + "id": 1412, "name": "expand", "variant": "declaration", "kind": 1024, @@ -23327,7 +24096,7 @@ } }, { - "id": 1414, + "id": 1413, "name": "fields", "variant": "declaration", "kind": 1024, @@ -23348,7 +24117,7 @@ } }, { - "id": 1424, + "id": 1423, "name": "handle", "variant": "declaration", "kind": 1024, @@ -23369,12 +24138,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4460, + "target": 4487, "name": "FilterableProductProps.handle" } }, { - "id": 1416, + "id": 1415, "name": "id", "variant": "declaration", "kind": 1024, @@ -23407,12 +24176,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4452, + "target": 4479, "name": "FilterableProductProps.id" } }, { - "id": 1430, + "id": 1429, "name": "include_category_children", "variant": "declaration", "kind": 1024, @@ -23444,12 +24213,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4466, + "target": 4493, "name": "FilterableProductProps.include_category_children" } }, { - "id": 1425, + "id": 1424, "name": "is_giftcard", "variant": "declaration", "kind": 1024, @@ -23470,12 +24239,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4461, + "target": 4488, "name": "FilterableProductProps.is_giftcard" } }, { - "id": 1412, + "id": 1411, "name": "limit", "variant": "declaration", "kind": 1024, @@ -23508,7 +24277,7 @@ "defaultValue": "50" }, { - "id": 1411, + "id": 1410, "name": "offset", "variant": "declaration", "kind": 1024, @@ -23541,7 +24310,7 @@ "defaultValue": "0" }, { - "id": 1415, + "id": 1414, "name": "order", "variant": "declaration", "kind": 1024, @@ -23570,7 +24339,7 @@ } }, { - "id": 1419, + "id": 1418, "name": "price_list_id", "variant": "declaration", "kind": 1024, @@ -23594,12 +24363,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4455, + "target": 4482, "name": "FilterableProductProps.price_list_id" } }, { - "id": 1417, + "id": 1416, "name": "q", "variant": "declaration", "kind": 1024, @@ -23620,12 +24389,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4453, + "target": 4480, "name": "FilterableProductProps.q" } }, { - "id": 1427, + "id": 1426, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -23649,12 +24418,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4463, + "target": 4490, "name": "FilterableProductProps.sales_channel_id" } }, { - "id": 1418, + "id": 1417, "name": "status", "variant": "declaration", "kind": 1024, @@ -23683,12 +24452,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4454, + "target": 4481, "name": "FilterableProductProps.status" } }, { - "id": 1421, + "id": 1420, "name": "tags", "variant": "declaration", "kind": 1024, @@ -23712,12 +24481,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4457, + "target": 4484, "name": "FilterableProductProps.tags" } }, { - "id": 1422, + "id": 1421, "name": "title", "variant": "declaration", "kind": 1024, @@ -23738,12 +24507,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4458, + "target": 4485, "name": "FilterableProductProps.title" } }, { - "id": 1426, + "id": 1425, "name": "type_id", "variant": "declaration", "kind": 1024, @@ -23767,12 +24536,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4462, + "target": 4489, "name": "FilterableProductProps.type_id" } }, { - "id": 1432, + "id": 1431, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -23797,13 +24566,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4468, + "target": 4495, "name": "FilterableProductProps.updated_at" } } @@ -23812,70 +24581,70 @@ { "title": "Constructors", "children": [ - 1409 + 1408 ] }, { "title": "Properties", "children": [ - 1429, - 1420, - 1431, - 1433, - 1423, 1428, - 1413, - 1414, - 1424, - 1416, - 1430, - 1425, - 1412, - 1411, - 1415, 1419, - 1417, - 1427, - 1418, - 1421, + 1430, + 1432, 1422, + 1427, + 1412, + 1413, + 1423, + 1415, + 1429, + 1424, + 1411, + 1410, + 1414, + 1418, + 1416, 1426, - 1432 + 1417, + 1420, + 1421, + 1425, + 1431 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4449, + "target": 4476, "name": "FilterableProductProps", "package": "@medusajs/medusa" } ] }, { - "id": 1434, + "id": 1433, "name": "AdminGetProductsVariantsParams", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1435, + "id": 1434, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1436, + "id": 1435, "name": "new AdminGetProductsVariantsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1434, + "target": 1433, "name": "AdminGetProductsVariantsParams", "package": "@medusajs/medusa" } @@ -23883,7 +24652,7 @@ ] }, { - "id": 1438, + "id": 1437, "name": "expand", "variant": "declaration", "kind": 1024, @@ -23896,7 +24665,7 @@ } }, { - "id": 1437, + "id": 1436, "name": "fields", "variant": "declaration", "kind": 1024, @@ -23909,7 +24678,7 @@ } }, { - "id": 1440, + "id": 1439, "name": "limit", "variant": "declaration", "kind": 1024, @@ -23923,7 +24692,7 @@ "defaultValue": "100" }, { - "id": 1439, + "id": 1438, "name": "offset", "variant": "declaration", "kind": 1024, @@ -23941,149 +24710,22 @@ { "title": "Constructors", "children": [ - 1435 + 1434 ] }, { "title": "Properties", "children": [ - 1438, 1437, - 1440, - 1439 + 1436, + 1439, + 1438 ] } ] }, { - "id": 1584, - "name": "AdminGetRegionsPaginationParams", - "variant": "declaration", - "kind": 128, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Parameters that can be used to configure how a list of data is paginated." - } - ] - }, - "children": [ - { - "id": 1585, - "name": "constructor", - "variant": "declaration", - "kind": 512, - "flags": {}, - "signatures": [ - { - "id": 1586, - "name": "new AdminGetRegionsPaginationParams", - "variant": "signature", - "kind": 16384, - "flags": {}, - "type": { - "type": "reference", - "target": 1584, - "name": "AdminGetRegionsPaginationParams", - "package": "@medusajs/medusa" - } - } - ] - }, - { - "id": 1587, - "name": "limit", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Limit the number of items returned in the list." - } - ], - "blockTags": [ - { - "tag": "@defaultValue", - "content": [ - { - "kind": "code", - "text": "```ts\n50\n```" - } - ] - } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - }, - "defaultValue": "50" - }, - { - "id": 1588, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The number of items to skip when retrieving a list." - } - ], - "blockTags": [ - { - "tag": "@defaultValue", - "content": [ - { - "kind": "code", - "text": "```ts\n0\n```" - } - ] - } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - }, - "defaultValue": "0" - } - ], - "groups": [ - { - "title": "Constructors", - "children": [ - 1585 - ] - }, - { - "title": "Properties", - "children": [ - 1587, - 1588 - ] - } - ], - "extendedBy": [ - { - "type": "reference", - "target": 1589, - "name": "AdminGetRegionsParams" - } - ] - }, - { - "id": 1589, + "id": 1583, "name": "AdminGetRegionsParams", "variant": "declaration", "kind": 128, @@ -24098,39 +24740,57 @@ }, "children": [ { - "id": 1590, + "id": 1584, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1591, + "id": 1585, "name": "new AdminGetRegionsParams", "variant": "signature", "kind": 16384, "flags": {}, + "parameters": [ + { + "id": 1586, + "name": "args", + "variant": "param", + "kind": 32768, + "flags": { + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "unknown" + } + } + } + ], "type": { "type": "reference", - "target": 1589, + "target": 1583, "name": "AdminGetRegionsParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 1586, - "name": "AdminGetRegionsPaginationParams.constructor" + "target": -1, + "name": "extendedFindParamsMixin({\n limit: 50,\n offset: 0,\n}).constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 1585, - "name": "AdminGetRegionsPaginationParams.constructor" + "target": -1, + "name": "extendedFindParamsMixin({\n limit: 50,\n offset: 0,\n}).constructor" } }, { - "id": 1592, + "id": 1587, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -24155,13 +24815,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 1594, + "id": 1589, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -24186,13 +24846,65 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 1595, + "id": 1590, + "name": "expand", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Comma-separated relations that should be expanded in the returned data." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "extendedFindParamsMixin({\n limit: 50,\n offset: 0,\n}).expand" + } + }, + { + "id": 1591, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Comma-separated fields that should be included in the returned data." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "extendedFindParamsMixin({\n limit: 50,\n offset: 0,\n}).fields" + } + }, + { + "id": 1593, "name": "limit", "variant": "declaration", "kind": 1024, @@ -24212,7 +24924,7 @@ "content": [ { "kind": "code", - "text": "```ts\n50\n```" + "text": "```ts\n20\n```" } ] } @@ -24222,15 +24934,15 @@ "type": "intrinsic", "name": "number" }, - "defaultValue": "50", + "defaultValue": "20", "inheritedFrom": { "type": "reference", - "target": 1587, - "name": "AdminGetRegionsPaginationParams.limit" + "target": -1, + "name": "extendedFindParamsMixin({\n limit: 50,\n offset: 0,\n}).limit" } }, { - "id": 1596, + "id": 1592, "name": "offset", "variant": "declaration", "kind": 1024, @@ -24263,12 +24975,12 @@ "defaultValue": "0", "inheritedFrom": { "type": "reference", - "target": 1588, - "name": "AdminGetRegionsPaginationParams.offset" + "target": -1, + "name": "extendedFindParamsMixin({\n limit: 50,\n offset: 0,\n}).offset" } }, { - "id": 1593, + "id": 1588, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -24293,7 +25005,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -24303,31 +25015,56 @@ { "title": "Constructors", "children": [ - 1590 + 1584 ] }, { "title": "Properties", "children": [ + 1587, + 1589, + 1590, + 1591, + 1593, 1592, - 1594, - 1595, - 1596, - 1593 + 1588 ] } ], "extendedTypes": [ { - "type": "reference", - "target": 1584, - "name": "AdminGetRegionsPaginationParams", - "package": "@medusajs/medusa" + "type": "intersection", + "types": [ + { + "type": "reference", + "target": 3814, + "typeArguments": [ + { + "type": "intrinsic", + "name": "this" + } + ], + "name": "FindParams", + "package": "@medusajs/medusa" + }, + { + "type": "reference", + "target": 3819, + "typeArguments": [ + { + "type": "intrinsic", + "name": "this" + } + ], + "name": "FindPaginationParams", + "package": "@medusajs/medusa" + } + ] } ] }, { - "id": 1556, + "id": 1555, "name": "AdminGetRegionsRegionFulfillmentOptionsRes", "variant": "declaration", "kind": 128, @@ -24342,14 +25079,14 @@ }, "children": [ { - "id": 1557, + "id": 1556, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1558, + "id": 1557, "name": "new AdminGetRegionsRegionFulfillmentOptionsRes", "variant": "signature", "kind": 16384, @@ -24364,7 +25101,7 @@ }, "type": { "type": "reference", - "target": 1556, + "target": 1555, "name": "AdminGetRegionsRegionFulfillmentOptionsRes", "package": "@medusajs/medusa" } @@ -24372,7 +25109,7 @@ ] }, { - "id": 1559, + "id": 1558, "name": "fulfillment_options", "variant": "declaration", "kind": 1024, @@ -24389,7 +25126,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1551, + "target": 1550, "name": "FulfillmentOption", "package": "@medusajs/medusa" } @@ -24400,19 +25137,19 @@ { "title": "Constructors", "children": [ - 1557 + 1556 ] }, { "title": "Properties", "children": [ - 1559 + 1558 ] } ] }, { - "id": 1682, + "id": 1679, "name": "AdminGetReservationsParams", "variant": "declaration", "kind": 128, @@ -24427,21 +25164,21 @@ }, "children": [ { - "id": 1683, + "id": 1680, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1684, + "id": 1681, "name": "new AdminGetReservationsParams", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 1685, + "id": 1682, "name": "args", "variant": "param", "kind": 32768, @@ -24459,7 +25196,7 @@ ], "type": { "type": "reference", - "target": 1682, + "target": 1679, "name": "AdminGetReservationsParams", "package": "@medusajs/medusa" }, @@ -24477,7 +25214,7 @@ } }, { - "id": 1691, + "id": 1688, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -24502,13 +25239,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 1689, + "id": 1686, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -24532,7 +25269,7 @@ } }, { - "id": 1692, + "id": 1689, "name": "description", "variant": "declaration", "kind": 1024, @@ -24564,7 +25301,7 @@ }, { "type": "reference", - "target": 3760, + "target": 3769, "name": "StringComparisonOperator", "package": "@medusajs/medusa" } @@ -24572,7 +25309,7 @@ } }, { - "id": 1693, + "id": 1690, "name": "expand", "variant": "declaration", "kind": 1024, @@ -24598,7 +25335,7 @@ } }, { - "id": 1694, + "id": 1691, "name": "fields", "variant": "declaration", "kind": 1024, @@ -24624,7 +25361,7 @@ } }, { - "id": 1687, + "id": 1684, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -24648,7 +25385,7 @@ } }, { - "id": 1696, + "id": 1693, "name": "limit", "variant": "declaration", "kind": 1024, @@ -24686,7 +25423,7 @@ } }, { - "id": 1688, + "id": 1685, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -24710,7 +25447,7 @@ } }, { - "id": 1686, + "id": 1683, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -24743,7 +25480,7 @@ } }, { - "id": 1695, + "id": 1692, "name": "offset", "variant": "declaration", "kind": 1024, @@ -24781,7 +25518,7 @@ } }, { - "id": 1690, + "id": 1687, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -24806,7 +25543,7 @@ }, "type": { "type": "reference", - "target": 3770, + "target": 3779, "name": "NumericalComparisonOperator", "package": "@medusajs/medusa" } @@ -24816,23 +25553,23 @@ { "title": "Constructors", "children": [ - 1683 + 1680 ] }, { "title": "Properties", "children": [ - 1691, - 1689, - 1692, - 1693, - 1694, - 1687, - 1696, 1688, 1686, - 1695, - 1690 + 1689, + 1690, + 1691, + 1684, + 1693, + 1685, + 1683, + 1692, + 1687 ] } ], @@ -24842,7 +25579,7 @@ "types": [ { "type": "reference", - "target": 3805, + "target": 3814, "typeArguments": [ { "type": "intrinsic", @@ -24854,7 +25591,7 @@ }, { "type": "reference", - "target": 3810, + "target": 3819, "typeArguments": [ { "type": "intrinsic", @@ -24869,7 +25606,7 @@ ] }, { - "id": 1649, + "id": 1646, "name": "AdminGetReturnsParams", "variant": "declaration", "kind": 128, @@ -24884,21 +25621,21 @@ }, "children": [ { - "id": 1650, + "id": 1647, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1651, + "id": 1648, "name": "new AdminGetReturnsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1649, + "target": 1646, "name": "AdminGetReturnsParams", "package": "@medusajs/medusa" } @@ -24906,7 +25643,7 @@ ] }, { - "id": 1652, + "id": 1649, "name": "limit", "variant": "declaration", "kind": 1024, @@ -24939,7 +25676,7 @@ "defaultValue": "50" }, { - "id": 1653, + "id": 1650, "name": "offset", "variant": "declaration", "kind": 1024, @@ -24976,20 +25713,20 @@ { "title": "Constructors", "children": [ - 1650 + 1647 ] }, { "title": "Properties", "children": [ - 1652, - 1653 + 1649, + 1650 ] } ] }, { - "id": 1726, + "id": 1723, "name": "AdminGetSalesChannelsParams", "variant": "declaration", "kind": 128, @@ -25004,21 +25741,21 @@ }, "children": [ { - "id": 1727, + "id": 1724, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1728, + "id": 1725, "name": "new AdminGetSalesChannelsParams", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 1729, + "id": 1726, "name": "args", "variant": "param", "kind": 32768, @@ -25036,7 +25773,7 @@ ], "type": { "type": "reference", - "target": 1726, + "target": 1723, "name": "AdminGetSalesChannelsParams", "package": "@medusajs/medusa" }, @@ -25054,7 +25791,7 @@ } }, { - "id": 1734, + "id": 1731, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -25079,13 +25816,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 1736, + "id": 1733, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -25110,13 +25847,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 1733, + "id": 1730, "name": "description", "variant": "declaration", "kind": 1024, @@ -25137,7 +25874,7 @@ } }, { - "id": 1738, + "id": 1735, "name": "expand", "variant": "declaration", "kind": 1024, @@ -25163,7 +25900,7 @@ } }, { - "id": 1739, + "id": 1736, "name": "fields", "variant": "declaration", "kind": 1024, @@ -25189,7 +25926,7 @@ } }, { - "id": 1730, + "id": 1727, "name": "id", "variant": "declaration", "kind": 1024, @@ -25210,7 +25947,7 @@ } }, { - "id": 1741, + "id": 1738, "name": "limit", "variant": "declaration", "kind": 1024, @@ -25248,7 +25985,7 @@ } }, { - "id": 1732, + "id": 1729, "name": "name", "variant": "declaration", "kind": 1024, @@ -25269,7 +26006,7 @@ } }, { - "id": 1740, + "id": 1737, "name": "offset", "variant": "declaration", "kind": 1024, @@ -25307,7 +26044,7 @@ } }, { - "id": 1737, + "id": 1734, "name": "order", "variant": "declaration", "kind": 1024, @@ -25336,7 +26073,7 @@ } }, { - "id": 1731, + "id": 1728, "name": "q", "variant": "declaration", "kind": 1024, @@ -25357,7 +26094,7 @@ } }, { - "id": 1735, + "id": 1732, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -25382,7 +26119,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -25392,24 +26129,24 @@ { "title": "Constructors", "children": [ - 1727 + 1724 ] }, { "title": "Properties", "children": [ - 1734, - 1736, - 1733, - 1738, - 1739, - 1730, - 1741, - 1732, - 1740, - 1737, 1731, - 1735 + 1733, + 1730, + 1735, + 1736, + 1727, + 1738, + 1729, + 1737, + 1734, + 1728, + 1732 ] } ], @@ -25419,7 +26156,7 @@ "types": [ { "type": "reference", - "target": 3805, + "target": 3814, "typeArguments": [ { "type": "intrinsic", @@ -25431,7 +26168,7 @@ }, { "type": "reference", - "target": 3810, + "target": 3819, "typeArguments": [ { "type": "intrinsic", @@ -25446,7 +26183,7 @@ ] }, { - "id": 1779, + "id": 1776, "name": "AdminGetShippingOptionsParams", "variant": "declaration", "kind": 128, @@ -25461,21 +26198,21 @@ }, "children": [ { - "id": 1780, + "id": 1777, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1781, + "id": 1778, "name": "new AdminGetShippingOptionsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1779, + "target": 1776, "name": "AdminGetShippingOptionsParams", "package": "@medusajs/medusa" } @@ -25483,7 +26220,7 @@ ] }, { - "id": 1784, + "id": 1781, "name": "admin_only", "variant": "declaration", "kind": 1024, @@ -25504,7 +26241,7 @@ } }, { - "id": 1783, + "id": 1780, "name": "is_return", "variant": "declaration", "kind": 1024, @@ -25525,7 +26262,7 @@ } }, { - "id": 1782, + "id": 1779, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -25550,21 +26287,21 @@ { "title": "Constructors", "children": [ - 1780 + 1777 ] }, { "title": "Properties", "children": [ - 1784, - 1783, - 1782 + 1781, + 1780, + 1779 ] } ] }, { - "id": 1838, + "id": 1836, "name": "AdminGetStockLocationsLocationParams", "variant": "declaration", "kind": 128, @@ -25579,39 +26316,39 @@ }, "children": [ { - "id": 1839, + "id": 1837, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1840, + "id": 1838, "name": "new AdminGetStockLocationsLocationParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1838, + "target": 1836, "name": "AdminGetStockLocationsLocationParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 1841, + "id": 1839, "name": "expand", "variant": "declaration", "kind": 1024, @@ -25632,12 +26369,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 1842, + "id": 1840, "name": "fields", "variant": "declaration", "kind": 1024, @@ -25658,7 +26395,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -25667,28 +26404,28 @@ { "title": "Constructors", "children": [ - 1839 + 1837 ] }, { "title": "Properties", "children": [ - 1841, - 1842 + 1839, + 1840 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 1843, + "id": 1841, "name": "AdminGetStockLocationsParams", "variant": "declaration", "kind": 128, @@ -25703,21 +26440,21 @@ }, "children": [ { - "id": 1844, + "id": 1842, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1845, + "id": 1843, "name": "new AdminGetStockLocationsParams", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 1846, + "id": 1844, "name": "args", "variant": "param", "kind": 32768, @@ -25735,7 +26472,7 @@ ], "type": { "type": "reference", - "target": 1843, + "target": 1841, "name": "AdminGetStockLocationsParams", "package": "@medusajs/medusa" }, @@ -25753,7 +26490,7 @@ } }, { - "id": 1849, + "id": 1847, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -25786,7 +26523,7 @@ } }, { - "id": 1851, + "id": 1849, "name": "expand", "variant": "declaration", "kind": 1024, @@ -25812,7 +26549,7 @@ } }, { - "id": 1852, + "id": 1850, "name": "fields", "variant": "declaration", "kind": 1024, @@ -25838,7 +26575,7 @@ } }, { - "id": 1847, + "id": 1845, "name": "id", "variant": "declaration", "kind": 1024, @@ -25871,7 +26608,7 @@ } }, { - "id": 1854, + "id": 1852, "name": "limit", "variant": "declaration", "kind": 1024, @@ -25909,7 +26646,7 @@ } }, { - "id": 1848, + "id": 1846, "name": "name", "variant": "declaration", "kind": 1024, @@ -25942,7 +26679,7 @@ } }, { - "id": 1853, + "id": 1851, "name": "offset", "variant": "declaration", "kind": 1024, @@ -25980,7 +26717,7 @@ } }, { - "id": 1850, + "id": 1848, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -26017,20 +26754,20 @@ { "title": "Constructors", "children": [ - 1844 + 1842 ] }, { "title": "Properties", "children": [ - 1849, - 1851, - 1852, 1847, - 1854, - 1848, - 1853, - 1850 + 1849, + 1850, + 1845, + 1852, + 1846, + 1851, + 1848 ] } ], @@ -26040,7 +26777,7 @@ "types": [ { "type": "reference", - "target": 3805, + "target": 3814, "typeArguments": [ { "type": "intrinsic", @@ -26052,7 +26789,7 @@ }, { "type": "reference", - "target": 3810, + "target": 3819, "typeArguments": [ { "type": "intrinsic", @@ -26067,7 +26804,7 @@ ] }, { - "id": 1898, + "id": 1896, "name": "AdminGetSwapsParams", "variant": "declaration", "kind": 128, @@ -26082,21 +26819,21 @@ }, "children": [ { - "id": 1899, + "id": 1897, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1900, + "id": 1898, "name": "new AdminGetSwapsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1898, + "target": 1896, "name": "AdminGetSwapsParams", "package": "@medusajs/medusa" } @@ -26104,7 +26841,7 @@ ] }, { - "id": 1901, + "id": 1899, "name": "limit", "variant": "declaration", "kind": 1024, @@ -26126,7 +26863,7 @@ "defaultValue": "50" }, { - "id": 1902, + "id": 1900, "name": "offset", "variant": "declaration", "kind": 1024, @@ -26152,20 +26889,20 @@ { "title": "Constructors", "children": [ - 1899 + 1897 ] }, { "title": "Properties", "children": [ - 1901, - 1902 + 1899, + 1900 ] } ] }, { - "id": 1912, + "id": 1910, "name": "AdminGetTaxRatesParams", "variant": "declaration", "kind": 128, @@ -26180,21 +26917,21 @@ }, "children": [ { - "id": 1913, + "id": 1911, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1914, + "id": 1912, "name": "new AdminGetTaxRatesParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1912, + "target": 1910, "name": "AdminGetTaxRatesParams", "package": "@medusajs/medusa" } @@ -26202,7 +26939,7 @@ ] }, { - "id": 1917, + "id": 1915, "name": "code", "variant": "declaration", "kind": 1024, @@ -26223,7 +26960,7 @@ } }, { - "id": 1921, + "id": 1919, "name": "expand", "variant": "declaration", "kind": 1024, @@ -26247,7 +26984,7 @@ } }, { - "id": 1922, + "id": 1920, "name": "fields", "variant": "declaration", "kind": 1024, @@ -26271,7 +27008,7 @@ } }, { - "id": 1920, + "id": 1918, "name": "limit", "variant": "declaration", "kind": 1024, @@ -26304,7 +27041,7 @@ "defaultValue": "50" }, { - "id": 1916, + "id": 1914, "name": "name", "variant": "declaration", "kind": 1024, @@ -26325,7 +27062,7 @@ } }, { - "id": 1919, + "id": 1917, "name": "offset", "variant": "declaration", "kind": 1024, @@ -26358,7 +27095,7 @@ "defaultValue": "0" }, { - "id": 1918, + "id": 1916, "name": "rate", "variant": "declaration", "kind": 1024, @@ -26390,7 +27127,7 @@ }, { "type": "reference", - "target": 3770, + "target": 3779, "name": "NumericalComparisonOperator", "package": "@medusajs/medusa" } @@ -26398,7 +27135,7 @@ } }, { - "id": 1915, + "id": 1913, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -26435,26 +27172,26 @@ { "title": "Constructors", "children": [ - 1913 + 1911 ] }, { "title": "Properties", "children": [ - 1917, - 1921, - 1922, - 1920, - 1916, + 1915, 1919, + 1920, 1918, - 1915 + 1914, + 1917, + 1916, + 1913 ] } ] }, { - "id": 1923, + "id": 1921, "name": "AdminGetTaxRatesTaxRateParams", "variant": "declaration", "kind": 128, @@ -26469,21 +27206,21 @@ }, "children": [ { - "id": 1924, + "id": 1922, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1925, + "id": 1923, "name": "new AdminGetTaxRatesTaxRateParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1923, + "target": 1921, "name": "AdminGetTaxRatesTaxRateParams", "package": "@medusajs/medusa" } @@ -26491,7 +27228,7 @@ ] }, { - "id": 1926, + "id": 1924, "name": "expand", "variant": "declaration", "kind": 1024, @@ -26515,7 +27252,7 @@ } }, { - "id": 1927, + "id": 1925, "name": "fields", "variant": "declaration", "kind": 1024, @@ -26543,20 +27280,20 @@ { "title": "Constructors", "children": [ - 1924 + 1922 ] }, { "title": "Properties", "children": [ - 1926, - 1927 + 1924, + 1925 ] } ] }, { - "id": 2096, + "id": 2094, "name": "AdminGetVariantParams", "variant": "declaration", "kind": 128, @@ -26571,39 +27308,39 @@ }, "children": [ { - "id": 2097, + "id": 2095, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2098, + "id": 2096, "name": "new AdminGetVariantParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2096, + "target": 2094, "name": "AdminGetVariantParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 2099, + "id": 2097, "name": "expand", "variant": "declaration", "kind": 1024, @@ -26624,12 +27361,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 2100, + "id": 2098, "name": "fields", "variant": "declaration", "kind": 1024, @@ -26650,7 +27387,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -26659,28 +27396,28 @@ { "title": "Constructors", "children": [ - 2097 + 2095 ] }, { "title": "Properties", "children": [ - 2099, - 2100 + 2097, + 2098 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 2081, + "id": 2079, "name": "AdminGetVariantsParams", "variant": "declaration", "kind": 128, @@ -26695,39 +27432,39 @@ }, "children": [ { - "id": 2082, + "id": 2080, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2083, + "id": 2081, "name": "new AdminGetVariantsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2081, + "target": 2079, "name": "AdminGetVariantsParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4593, + "target": 4620, "name": "AdminPriceSelectionParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4592, + "target": 4619, "name": "AdminPriceSelectionParams.constructor" } }, { - "id": 2093, + "id": 2091, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -26748,12 +27485,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4595, + "target": 4622, "name": "AdminPriceSelectionParams.cart_id" } }, { - "id": 2095, + "id": 2093, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -26774,12 +27511,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4597, + "target": 4624, "name": "AdminPriceSelectionParams.currency_code" } }, { - "id": 2092, + "id": 2090, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -26800,12 +27537,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4594, + "target": 4621, "name": "AdminPriceSelectionParams.customer_id" } }, { - "id": 2087, + "id": 2085, "name": "expand", "variant": "declaration", "kind": 1024, @@ -26826,12 +27563,12 @@ }, "overwrites": { "type": "reference", - "target": 4598, + "target": 4625, "name": "AdminPriceSelectionParams.expand" } }, { - "id": 2088, + "id": 2086, "name": "fields", "variant": "declaration", "kind": 1024, @@ -26852,12 +27589,12 @@ }, "overwrites": { "type": "reference", - "target": 4599, + "target": 4626, "name": "AdminPriceSelectionParams.fields" } }, { - "id": 2089, + "id": 2087, "name": "id", "variant": "declaration", "kind": 1024, @@ -26890,7 +27627,7 @@ } }, { - "id": 2091, + "id": 2089, "name": "inventory_quantity", "variant": "declaration", "kind": 1024, @@ -26922,7 +27659,7 @@ }, { "type": "reference", - "target": 3770, + "target": 3779, "name": "NumericalComparisonOperator", "package": "@medusajs/medusa" } @@ -26930,7 +27667,7 @@ } }, { - "id": 2085, + "id": 2083, "name": "limit", "variant": "declaration", "kind": 1024, @@ -26963,7 +27700,7 @@ "defaultValue": "20" }, { - "id": 2086, + "id": 2084, "name": "offset", "variant": "declaration", "kind": 1024, @@ -26996,7 +27733,7 @@ "defaultValue": "0" }, { - "id": 2084, + "id": 2082, "name": "q", "variant": "declaration", "kind": 1024, @@ -27017,7 +27754,7 @@ } }, { - "id": 2094, + "id": 2092, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -27038,12 +27775,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4596, + "target": 4623, "name": "AdminPriceSelectionParams.region_id" } }, { - "id": 2090, + "id": 2088, "name": "title", "variant": "declaration", "kind": 1024, @@ -27080,38 +27817,38 @@ { "title": "Constructors", "children": [ - 2082 + 2080 ] }, { "title": "Properties", "children": [ - 2093, - 2095, - 2092, - 2087, - 2088, - 2089, 2091, + 2093, + 2090, 2085, 2086, + 2087, + 2089, + 2083, 2084, - 2094, - 2090 + 2082, + 2092, + 2088 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4591, + "target": 4618, "name": "AdminPriceSelectionParams", "package": "@medusajs/medusa" } ] }, { - "id": 4168, + "id": 4195, "name": "AdminListCustomerSelector", "variant": "declaration", "kind": 128, @@ -27126,21 +27863,21 @@ }, "children": [ { - "id": 4169, + "id": 4196, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4170, + "id": 4197, "name": "new AdminListCustomerSelector", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4168, + "target": 4195, "name": "AdminListCustomerSelector", "package": "@medusajs/medusa" } @@ -27148,7 +27885,7 @@ ] }, { - "id": 4173, + "id": 4200, "name": "groups", "variant": "declaration", "kind": 1024, @@ -27172,7 +27909,7 @@ } }, { - "id": 4172, + "id": 4199, "name": "has_account", "variant": "declaration", "kind": 1024, @@ -27193,7 +27930,7 @@ } }, { - "id": 4171, + "id": 4198, "name": "q", "variant": "declaration", "kind": 1024, @@ -27218,15 +27955,15 @@ { "title": "Constructors", "children": [ - 4169 + 4196 ] }, { "title": "Properties", "children": [ - 4173, - 4172, - 4171 + 4200, + 4199, + 4198 ] } ], @@ -27239,7 +27976,7 @@ ] }, { - "id": 4303, + "id": 4330, "name": "AdminListOrdersSelector", "variant": "declaration", "kind": 128, @@ -27254,21 +27991,21 @@ }, "children": [ { - "id": 4304, + "id": 4331, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4305, + "id": 4332, "name": "new AdminListOrdersSelector", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4303, + "target": 4330, "name": "AdminListOrdersSelector", "package": "@medusajs/medusa" } @@ -27276,7 +28013,7 @@ ] }, { - "id": 4319, + "id": 4346, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -27301,13 +28038,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 4312, + "id": 4339, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -27328,7 +28065,7 @@ } }, { - "id": 4320, + "id": 4347, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -27353,13 +28090,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 4316, + "id": 4343, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -27380,7 +28117,7 @@ } }, { - "id": 4313, + "id": 4340, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -27401,7 +28138,7 @@ } }, { - "id": 4311, + "id": 4338, "name": "display_id", "variant": "declaration", "kind": 1024, @@ -27422,7 +28159,7 @@ } }, { - "id": 4314, + "id": 4341, "name": "email", "variant": "declaration", "kind": 1024, @@ -27443,7 +28180,7 @@ } }, { - "id": 4309, + "id": 4336, "name": "fulfillment_status", "variant": "declaration", "kind": 1024, @@ -27467,7 +28204,7 @@ } }, { - "id": 4307, + "id": 4334, "name": "id", "variant": "declaration", "kind": 1024, @@ -27488,7 +28225,7 @@ } }, { - "id": 4310, + "id": 4337, "name": "payment_status", "variant": "declaration", "kind": 1024, @@ -27512,7 +28249,7 @@ } }, { - "id": 4306, + "id": 4333, "name": "q", "variant": "declaration", "kind": 1024, @@ -27533,7 +28270,7 @@ } }, { - "id": 4315, + "id": 4342, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -27566,7 +28303,7 @@ } }, { - "id": 4318, + "id": 4345, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -27590,7 +28327,7 @@ } }, { - "id": 4308, + "id": 4335, "name": "status", "variant": "declaration", "kind": 1024, @@ -27614,7 +28351,7 @@ } }, { - "id": 4317, + "id": 4344, "name": "tax_rate", "variant": "declaration", "kind": 1024, @@ -27635,7 +28372,7 @@ } }, { - "id": 4321, + "id": 4348, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -27660,7 +28397,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -27670,28 +28407,28 @@ { "title": "Constructors", "children": [ - 4304 + 4331 ] }, { "title": "Properties", "children": [ - 4319, - 4312, - 4320, - 4316, - 4313, - 4311, - 4314, - 4309, - 4307, - 4310, - 4306, - 4315, - 4318, - 4308, - 4317, - 4321 + 4346, + 4339, + 4347, + 4343, + 4340, + 4338, + 4341, + 4336, + 4334, + 4337, + 4333, + 4342, + 4345, + 4335, + 4344, + 4348 ] } ], @@ -28433,7 +29170,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4155, + "target": 4182, "name": "CustomerGroupsBatchCustomer", "package": "@medusajs/medusa" } @@ -28750,7 +29487,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4174, + "target": 4201, "name": "Group", "package": "@medusajs/medusa" } @@ -29088,14 +29825,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 4180, + "target": 4207, "name": "AdminUpsertConditionsReq.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4179, + "target": 4206, "name": "AdminUpsertConditionsReq.constructor" } }, @@ -29132,7 +29869,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4185, + "target": 4212, "name": "AdminUpsertConditionsReq.customer_groups" } }, @@ -29193,7 +29930,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4182, + "target": 4209, "name": "AdminUpsertConditionsReq.product_collections" } }, @@ -29230,7 +29967,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4184, + "target": 4211, "name": "AdminUpsertConditionsReq.product_tags" } }, @@ -29267,7 +30004,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4183, + "target": 4210, "name": "AdminUpsertConditionsReq.product_types" } }, @@ -29304,7 +30041,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4181, + "target": 4208, "name": "AdminUpsertConditionsReq.products" } } @@ -29331,7 +30068,7 @@ "extendedTypes": [ { "type": "reference", - "target": 4178, + "target": 4205, "name": "AdminUpsertConditionsReq", "package": "@medusajs/medusa" } @@ -29365,14 +30102,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 4180, + "target": 4207, "name": "AdminUpsertConditionsReq.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4179, + "target": 4206, "name": "AdminUpsertConditionsReq.constructor" } }, @@ -29409,7 +30146,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4185, + "target": 4212, "name": "AdminUpsertConditionsReq.customer_groups" } }, @@ -29446,7 +30183,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4182, + "target": 4209, "name": "AdminUpsertConditionsReq.product_collections" } }, @@ -29483,7 +30220,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4184, + "target": 4211, "name": "AdminUpsertConditionsReq.product_tags" } }, @@ -29520,7 +30257,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4183, + "target": 4210, "name": "AdminUpsertConditionsReq.product_types" } }, @@ -29557,7 +30294,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4181, + "target": 4208, "name": "AdminUpsertConditionsReq.products" } } @@ -29583,7 +30320,7 @@ "extendedTypes": [ { "type": "reference", - "target": 4178, + "target": 4205, "name": "AdminUpsertConditionsReq", "package": "@medusajs/medusa" } @@ -29625,14 +30362,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -29658,7 +30395,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -29684,7 +30421,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -29707,7 +30444,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -29851,14 +30588,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -29884,7 +30621,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -29910,7 +30647,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -29933,7 +30670,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -29975,14 +30712,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -30008,7 +30745,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -30034,7 +30771,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -30057,7 +30794,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -30221,14 +30958,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -30254,7 +30991,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -30280,7 +31017,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -30303,7 +31040,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -30815,14 +31552,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -30848,7 +31585,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -30874,7 +31611,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -30897,7 +31634,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -31560,7 +32297,7 @@ }, { "type": "reference", - "target": 3777, + "target": 3786, "name": "AddressPayload", "package": "@medusajs/medusa" } @@ -31629,7 +32366,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4209, + "target": 4236, "name": "Discount", "package": "@medusajs/medusa" } @@ -31723,7 +32460,7 @@ }, { "type": "reference", - "target": 3777, + "target": 3786, "name": "AddressPayload", "package": "@medusajs/medusa" } @@ -31807,7 +32544,7 @@ }, { "type": "reference", - "target": 3777, + "target": 3786, "name": "AddressPayload", "package": "@medusajs/medusa" } @@ -31855,7 +32592,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4199, + "target": 4226, "name": "Discount", "package": "@medusajs/medusa" } @@ -31900,7 +32637,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4191, + "target": 4218, "name": "Item", "package": "@medusajs/medusa" } @@ -32008,7 +32745,7 @@ }, { "type": "reference", - "target": 3777, + "target": 3786, "name": "AddressPayload", "package": "@medusajs/medusa" } @@ -32033,7 +32770,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4203, + "target": 4230, "name": "ShippingMethod", "package": "@medusajs/medusa" } @@ -32477,14 +33214,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -32510,7 +33247,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -32536,7 +33273,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -32559,7 +33296,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -32939,14 +33676,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -32972,7 +33709,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -32998,7 +33735,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -33021,7 +33758,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -33151,14 +33888,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -33184,7 +33921,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -33210,7 +33947,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -33233,7 +33970,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -33381,14 +34118,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -33414,7 +34151,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -33440,7 +34177,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -33463,7 +34200,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -34816,14 +35553,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -34849,7 +35586,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -34875,7 +35612,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -34898,7 +35635,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -34940,14 +35677,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -34973,7 +35710,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -34999,7 +35736,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -35022,7 +35759,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -35064,14 +35801,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -35097,7 +35834,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -35123,7 +35860,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -35146,7 +35883,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -35188,14 +35925,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -35221,7 +35958,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -35247,7 +35984,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -35270,7 +36007,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -35312,14 +36049,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -35345,7 +36082,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -35371,7 +36108,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -35394,7 +36131,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -35436,14 +36173,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -35469,7 +36206,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -35495,7 +36232,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -35518,7 +36255,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -35685,14 +36422,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -35718,7 +36455,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -35744,7 +36481,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -35767,7 +36504,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -35822,7 +36559,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4334, + "target": 4361, "name": "Item", "package": "@medusajs/medusa" } @@ -35905,7 +36642,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4343, + "target": 4370, "name": "ShippingMethod", "package": "@medusajs/medusa" } @@ -35966,14 +36703,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -35999,7 +36736,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -36025,7 +36762,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -36048,7 +36785,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -36179,14 +36916,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -36212,7 +36949,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -36238,7 +36975,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -36261,7 +36998,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -36332,7 +37069,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4264, + "target": 4291, "name": "AdditionalItem", "package": "@medusajs/medusa" } @@ -36356,7 +37093,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4250, + "target": 4277, "name": "Item", "package": "@medusajs/medusa" } @@ -36479,7 +37216,7 @@ }, "type": { "type": "reference", - "target": 4259, + "target": 4286, "name": "ReturnShipping", "package": "@medusajs/medusa" } @@ -36502,7 +37239,7 @@ }, "type": { "type": "reference", - "target": 3777, + "target": 3786, "name": "AddressPayload", "package": "@medusajs/medusa" } @@ -36527,7 +37264,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4269, + "target": 4296, "name": "ShippingMethod", "package": "@medusajs/medusa" } @@ -36622,14 +37359,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -36655,7 +37392,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -36681,7 +37418,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -36704,7 +37441,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -36746,14 +37483,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -36779,7 +37516,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -36805,7 +37542,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -36828,7 +37565,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -36870,14 +37607,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -36903,7 +37640,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -36929,7 +37666,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -36952,7 +37689,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -37021,7 +37758,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4276, + "target": 4303, "name": "Item", "package": "@medusajs/medusa" } @@ -37160,14 +37897,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -37193,7 +37930,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -37219,7 +37956,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -37242,7 +37979,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -37284,14 +38021,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -37317,7 +38054,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -37343,7 +38080,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -37366,7 +38103,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -37547,7 +38284,7 @@ }, "type": { "type": "reference", - "target": 3777, + "target": 3786, "name": "AddressPayload", "package": "@medusajs/medusa" } @@ -37711,7 +38448,7 @@ }, "type": { "type": "reference", - "target": 4350, + "target": 4377, "name": "PaymentMethod", "package": "@medusajs/medusa" } @@ -37755,7 +38492,7 @@ }, "type": { "type": "reference", - "target": 3777, + "target": 3786, "name": "AddressPayload", "package": "@medusajs/medusa" } @@ -37780,7 +38517,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4355, + "target": 4382, "name": "ShippingMethod", "package": "@medusajs/medusa" } @@ -37847,14 +38584,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -37880,7 +38617,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -37906,7 +38643,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -37929,7 +38666,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -37982,7 +38719,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4322, + "target": 4349, "name": "OrdersReturnItem", "package": "@medusajs/medusa" } @@ -38112,7 +38849,7 @@ }, "type": { "type": "reference", - "target": 4329, + "target": 4356, "name": "ReturnShipping", "package": "@medusajs/medusa" } @@ -38175,14 +38912,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -38208,7 +38945,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -38234,7 +38971,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -38257,7 +38994,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -38410,14 +39147,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -38443,7 +39180,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -38469,7 +39206,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -38492,7 +39229,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -38672,14 +39409,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -38705,7 +39442,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -38731,7 +39468,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -38754,7 +39491,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -38796,14 +39533,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -38829,7 +39566,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -38855,7 +39592,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -38878,7 +39615,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -38933,7 +39670,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4293, + "target": 4320, "name": "AdditionalItem", "package": "@medusajs/medusa" } @@ -38981,7 +39718,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4298, + "target": 4325, "name": "CustomShippingOption", "package": "@medusajs/medusa" } @@ -39027,7 +39764,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4281, + "target": 4308, "name": "ReturnItem", "package": "@medusajs/medusa" } @@ -39072,7 +39809,7 @@ }, "type": { "type": "reference", - "target": 4288, + "target": 4315, "name": "ReturnShipping", "package": "@medusajs/medusa" } @@ -39157,14 +39894,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -39190,7 +39927,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -39216,7 +39953,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -39239,7 +39976,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -39406,14 +40143,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -39439,7 +40176,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -39465,7 +40202,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -39488,7 +40225,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -39530,14 +40267,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -39563,7 +40300,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -39589,7 +40326,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -39612,7 +40349,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -39766,14 +40503,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -39799,7 +40536,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -39825,7 +40562,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -39848,7 +40585,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -39966,28 +40703,28 @@ ] }, { - "id": 1076, + "id": 1082, "name": "AdminPostPriceListPricesPricesReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1077, + "id": 1083, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1078, + "id": 1084, "name": "new AdminPostPriceListPricesPricesReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1076, + "target": 1082, "name": "AdminPostPriceListPricesPricesReq", "package": "@medusajs/medusa" } @@ -39995,7 +40732,7 @@ ] }, { - "id": 1080, + "id": 1086, "name": "override", "variant": "declaration", "kind": 1024, @@ -40016,7 +40753,7 @@ } }, { - "id": 1079, + "id": 1085, "name": "prices", "variant": "declaration", "kind": 1024, @@ -40033,7 +40770,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3922, + "target": 3931, "name": "AdminPriceListPricesUpdateReq", "package": "@medusajs/medusa" } @@ -40044,41 +40781,41 @@ { "title": "Constructors", "children": [ - 1077 + 1083 ] }, { "title": "Properties", "children": [ - 1080, - 1079 + 1086, + 1085 ] } ] }, { - "id": 1140, + "id": 1146, "name": "AdminPostPriceListsPriceListPriceListReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1141, + "id": 1147, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1142, + "id": 1148, "name": "new AdminPostPriceListsPriceListPriceListReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1140, + "target": 1146, "name": "AdminPostPriceListsPriceListPriceListReq", "package": "@medusajs/medusa" } @@ -40086,7 +40823,7 @@ ] }, { - "id": 1150, + "id": 1156, "name": "customer_groups", "variant": "declaration", "kind": 1024, @@ -40105,14 +40842,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4373, + "target": 4400, "name": "CustomerGroup", "package": "@medusajs/medusa" } } }, { - "id": 1144, + "id": 1150, "name": "description", "variant": "declaration", "kind": 1024, @@ -40133,7 +40870,7 @@ } }, { - "id": 1146, + "id": 1152, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -40168,7 +40905,7 @@ } }, { - "id": 1151, + "id": 1157, "name": "includes_tax", "variant": "declaration", "kind": 1024, @@ -40211,7 +40948,7 @@ } }, { - "id": 1143, + "id": 1149, "name": "name", "variant": "declaration", "kind": 1024, @@ -40232,7 +40969,7 @@ } }, { - "id": 1149, + "id": 1155, "name": "prices", "variant": "declaration", "kind": 1024, @@ -40251,14 +40988,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3922, + "target": 3931, "name": "AdminPriceListPricesUpdateReq", "package": "@medusajs/medusa" } } }, { - "id": 1145, + "id": 1151, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -40293,7 +41030,7 @@ } }, { - "id": 1147, + "id": 1153, "name": "status", "variant": "declaration", "kind": 1024, @@ -40310,13 +41047,13 @@ }, "type": { "type": "reference", - "target": 4363, + "target": 4390, "name": "PriceListStatus", "package": "@medusajs/utils" } }, { - "id": 1148, + "id": 1154, "name": "type", "variant": "declaration", "kind": 1024, @@ -40333,7 +41070,7 @@ }, "type": { "type": "reference", - "target": 4366, + "target": 4393, "name": "PriceListType", "package": "@medusajs/utils" } @@ -40343,48 +41080,48 @@ { "title": "Constructors", "children": [ - 1141 + 1147 ] }, { "title": "Properties", "children": [ + 1156, 1150, - 1144, - 1146, - 1151, - 1143, + 1152, + 1157, 1149, - 1145, - 1147, - 1148 + 1155, + 1151, + 1153, + 1154 ] } ] }, { - "id": 1081, + "id": 1087, "name": "AdminPostPriceListsPriceListReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1082, + "id": 1088, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1083, + "id": 1089, "name": "new AdminPostPriceListsPriceListReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1081, + "target": 1087, "name": "AdminPostPriceListsPriceListReq", "package": "@medusajs/medusa" } @@ -40392,7 +41129,7 @@ ] }, { - "id": 1091, + "id": 1097, "name": "customer_groups", "variant": "declaration", "kind": 1024, @@ -40411,14 +41148,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4369, + "target": 4396, "name": "CustomerGroup", "package": "@medusajs/medusa" } } }, { - "id": 1085, + "id": 1091, "name": "description", "variant": "declaration", "kind": 1024, @@ -40437,7 +41174,7 @@ } }, { - "id": 1087, + "id": 1093, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -40463,7 +41200,7 @@ } }, { - "id": 1092, + "id": 1098, "name": "includes_tax", "variant": "declaration", "kind": 1024, @@ -40506,7 +41243,7 @@ } }, { - "id": 1084, + "id": 1090, "name": "name", "variant": "declaration", "kind": 1024, @@ -40525,7 +41262,7 @@ } }, { - "id": 1090, + "id": 1096, "name": "prices", "variant": "declaration", "kind": 1024, @@ -40542,14 +41279,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3932, + "target": 3941, "name": "AdminPriceListPricesCreateReq", "package": "@medusajs/medusa" } } }, { - "id": 1086, + "id": 1092, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -40575,7 +41312,7 @@ } }, { - "id": 1088, + "id": 1094, "name": "status", "variant": "declaration", "kind": 1024, @@ -40592,13 +41329,13 @@ }, "type": { "type": "reference", - "target": 4363, + "target": 4390, "name": "PriceListStatus", "package": "@medusajs/utils" } }, { - "id": 1089, + "id": 1095, "name": "type", "variant": "declaration", "kind": 1024, @@ -40613,7 +41350,7 @@ }, "type": { "type": "reference", - "target": 4366, + "target": 4393, "name": "PriceListType", "package": "@medusajs/utils" } @@ -40623,27 +41360,27 @@ { "title": "Constructors", "children": [ - 1082 + 1088 ] }, { "title": "Properties", "children": [ + 1097, 1091, - 1085, - 1087, - 1092, - 1084, + 1093, + 1098, 1090, - 1086, - 1088, - 1089 + 1096, + 1092, + 1094, + 1095 ] } ] }, { - "id": 1207, + "id": 1213, "name": "AdminPostProductCategoriesCategoryParams", "variant": "declaration", "kind": 128, @@ -40658,39 +41395,39 @@ }, "children": [ { - "id": 1208, + "id": 1214, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1209, + "id": 1215, "name": "new AdminPostProductCategoriesCategoryParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1207, + "target": 1213, "name": "AdminPostProductCategoriesCategoryParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 1210, + "id": 1216, "name": "expand", "variant": "declaration", "kind": 1024, @@ -40711,12 +41448,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 1211, + "id": 1217, "name": "fields", "variant": "declaration", "kind": 1024, @@ -40737,7 +41474,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -40746,28 +41483,28 @@ { "title": "Constructors", "children": [ - 1208 + 1214 ] }, { "title": "Properties", "children": [ - 1210, - 1211 + 1216, + 1217 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 1216, + "id": 1222, "name": "AdminPostProductCategoriesCategoryProductsBatchParams", "variant": "declaration", "kind": 128, @@ -40782,39 +41519,39 @@ }, "children": [ { - "id": 1217, + "id": 1223, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1218, + "id": 1224, "name": "new AdminPostProductCategoriesCategoryProductsBatchParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1216, + "target": 1222, "name": "AdminPostProductCategoriesCategoryProductsBatchParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 1219, + "id": 1225, "name": "expand", "variant": "declaration", "kind": 1024, @@ -40835,12 +41572,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 1220, + "id": 1226, "name": "fields", "variant": "declaration", "kind": 1024, @@ -40861,7 +41598,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -40870,49 +41607,49 @@ { "title": "Constructors", "children": [ - 1217 + 1223 ] }, { "title": "Properties", "children": [ - 1219, - 1220 + 1225, + 1226 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 1212, + "id": 1218, "name": "AdminPostProductCategoriesCategoryProductsBatchReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1213, + "id": 1219, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1214, + "id": 1220, "name": "new AdminPostProductCategoriesCategoryProductsBatchReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1212, + "target": 1218, "name": "AdminPostProductCategoriesCategoryProductsBatchReq", "package": "@medusajs/medusa" } @@ -40920,7 +41657,7 @@ ] }, { - "id": 1215, + "id": 1221, "name": "product_ids", "variant": "declaration", "kind": 1024, @@ -40937,7 +41674,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4385, + "target": 4412, "name": "ProductBatchProductCategory", "package": "@medusajs/medusa" } @@ -40948,58 +41685,58 @@ { "title": "Constructors", "children": [ - 1213 + 1219 ] }, { "title": "Properties", "children": [ - 1215 + 1221 ] } ] }, { - "id": 1196, + "id": 1202, "name": "AdminPostProductCategoriesCategoryReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1197, + "id": 1203, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1198, + "id": 1204, "name": "new AdminPostProductCategoriesCategoryReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1196, + "target": 1202, "name": "AdminPostProductCategoriesCategoryReq", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4379, + "target": 4406, "name": "AdminProductCategoriesReqBase.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4378, + "target": 4405, "name": "AdminProductCategoriesReqBase.constructor" } }, { - "id": 1203, + "id": 1209, "name": "description", "variant": "declaration", "kind": 1024, @@ -41020,12 +41757,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4380, + "target": 4407, "name": "AdminProductCategoriesReqBase.description" } }, { - "id": 1200, + "id": 1206, "name": "handle", "variant": "declaration", "kind": 1024, @@ -41046,12 +41783,12 @@ }, "overwrites": { "type": "reference", - "target": 4381, + "target": 4408, "name": "AdminProductCategoriesReqBase.handle" } }, { - "id": 1205, + "id": 1211, "name": "is_active", "variant": "declaration", "kind": 1024, @@ -41072,12 +41809,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4383, + "target": 4410, "name": "AdminProductCategoriesReqBase.is_active" } }, { - "id": 1204, + "id": 1210, "name": "is_internal", "variant": "declaration", "kind": 1024, @@ -41098,12 +41835,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4382, + "target": 4409, "name": "AdminProductCategoriesReqBase.is_internal" } }, { - "id": 1202, + "id": 1208, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -41139,7 +41876,7 @@ } }, { - "id": 1199, + "id": 1205, "name": "name", "variant": "declaration", "kind": 1024, @@ -41160,7 +41897,7 @@ } }, { - "id": 1206, + "id": 1212, "name": "parent_category_id", "variant": "declaration", "kind": 1024, @@ -41190,12 +41927,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4384, + "target": 4411, "name": "AdminProductCategoriesReqBase.parent_category_id" } }, { - "id": 1201, + "id": 1207, "name": "rank", "variant": "declaration", "kind": 1024, @@ -41220,34 +41957,34 @@ { "title": "Constructors", "children": [ - 1197 + 1203 ] }, { "title": "Properties", "children": [ - 1203, - 1200, - 1205, - 1204, - 1202, - 1199, + 1209, 1206, - 1201 + 1211, + 1210, + 1208, + 1205, + 1212, + 1207 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4377, + "target": 4404, "name": "AdminProductCategoriesReqBase", "package": "@medusajs/medusa" } ] }, { - "id": 1191, + "id": 1197, "name": "AdminPostProductCategoriesParams", "variant": "declaration", "kind": 128, @@ -41262,39 +41999,39 @@ }, "children": [ { - "id": 1192, + "id": 1198, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1193, + "id": 1199, "name": "new AdminPostProductCategoriesParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1191, + "target": 1197, "name": "AdminPostProductCategoriesParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 1194, + "id": 1200, "name": "expand", "variant": "declaration", "kind": 1024, @@ -41315,12 +42052,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 1195, + "id": 1201, "name": "fields", "variant": "declaration", "kind": 1024, @@ -41341,7 +42078,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -41350,67 +42087,67 @@ { "title": "Constructors", "children": [ - 1192 + 1198 ] }, { "title": "Properties", "children": [ - 1194, - 1195 + 1200, + 1201 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 1181, + "id": 1187, "name": "AdminPostProductCategoriesReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1182, + "id": 1188, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1183, + "id": 1189, "name": "new AdminPostProductCategoriesReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1181, + "target": 1187, "name": "AdminPostProductCategoriesReq", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4379, + "target": 4406, "name": "AdminProductCategoriesReqBase.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4378, + "target": 4405, "name": "AdminProductCategoriesReqBase.constructor" } }, { - "id": 1186, + "id": 1192, "name": "description", "variant": "declaration", "kind": 1024, @@ -41431,12 +42168,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4380, + "target": 4407, "name": "AdminProductCategoriesReqBase.description" } }, { - "id": 1187, + "id": 1193, "name": "handle", "variant": "declaration", "kind": 1024, @@ -41457,12 +42194,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4381, + "target": 4408, "name": "AdminProductCategoriesReqBase.handle" } }, { - "id": 1189, + "id": 1195, "name": "is_active", "variant": "declaration", "kind": 1024, @@ -41483,12 +42220,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4383, + "target": 4410, "name": "AdminProductCategoriesReqBase.is_active" } }, { - "id": 1188, + "id": 1194, "name": "is_internal", "variant": "declaration", "kind": 1024, @@ -41509,12 +42246,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4382, + "target": 4409, "name": "AdminProductCategoriesReqBase.is_internal" } }, { - "id": 1185, + "id": 1191, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -41550,7 +42287,7 @@ } }, { - "id": 1184, + "id": 1190, "name": "name", "variant": "declaration", "kind": 1024, @@ -41569,7 +42306,7 @@ } }, { - "id": 1190, + "id": 1196, "name": "parent_category_id", "variant": "declaration", "kind": 1024, @@ -41599,7 +42336,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4384, + "target": 4411, "name": "AdminProductCategoriesReqBase.parent_category_id" } } @@ -41608,54 +42345,54 @@ { "title": "Constructors", "children": [ - 1182 + 1188 ] }, { "title": "Properties", "children": [ - 1186, - 1187, - 1189, - 1188, - 1185, - 1184, - 1190 + 1192, + 1193, + 1195, + 1194, + 1191, + 1190, + 1196 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4377, + "target": 4404, "name": "AdminProductCategoriesReqBase", "package": "@medusajs/medusa" } ] }, { - "id": 1441, + "id": 1440, "name": "AdminPostProductsProductMetadataReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1442, + "id": 1441, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1443, + "id": 1442, "name": "new AdminPostProductsProductMetadataReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1441, + "target": 1440, "name": "AdminPostProductsProductMetadataReq", "package": "@medusajs/medusa" } @@ -41663,7 +42400,7 @@ ] }, { - "id": 1444, + "id": 1443, "name": "key", "variant": "declaration", "kind": 1024, @@ -41682,7 +42419,7 @@ } }, { - "id": 1445, + "id": 1444, "name": "value", "variant": "declaration", "kind": 1024, @@ -41705,41 +42442,41 @@ { "title": "Constructors", "children": [ - 1442 + 1441 ] }, { "title": "Properties", "children": [ - 1444, - 1445 + 1443, + 1444 ] } ] }, { - "id": 1446, + "id": 1445, "name": "AdminPostProductsProductOptionsOption", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1447, + "id": 1446, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1448, + "id": 1447, "name": "new AdminPostProductsProductOptionsOption", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1446, + "target": 1445, "name": "AdminPostProductsProductOptionsOption", "package": "@medusajs/medusa" } @@ -41747,7 +42484,7 @@ ] }, { - "id": 1449, + "id": 1448, "name": "title", "variant": "declaration", "kind": 1024, @@ -41770,40 +42507,40 @@ { "title": "Constructors", "children": [ - 1447 + 1446 ] }, { "title": "Properties", "children": [ - 1449 + 1448 ] } ] }, { - "id": 1339, + "id": 1348, "name": "AdminPostProductsProductOptionsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1340, + "id": 1349, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1341, + "id": 1350, "name": "new AdminPostProductsProductOptionsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1339, + "target": 1348, "name": "AdminPostProductsProductOptionsReq", "package": "@medusajs/medusa" } @@ -41811,7 +42548,7 @@ ] }, { - "id": 1342, + "id": 1351, "name": "title", "variant": "declaration", "kind": 1024, @@ -41834,40 +42571,40 @@ { "title": "Constructors", "children": [ - 1340 + 1349 ] }, { "title": "Properties", "children": [ - 1342 + 1351 ] } ] }, { - "id": 1450, + "id": 1449, "name": "AdminPostProductsProductReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1451, + "id": 1450, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1452, + "id": 1451, "name": "new AdminPostProductsProductReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1450, + "target": 1449, "name": "AdminPostProductsProductReq", "package": "@medusajs/medusa" } @@ -41875,7 +42612,7 @@ ] }, { - "id": 1465, + "id": 1464, "name": "categories", "variant": "declaration", "kind": 1024, @@ -41916,14 +42653,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4406, + "target": 4433, "name": "ProductProductCategoryReq", "package": "@medusajs/medusa" } } }, { - "id": 1462, + "id": 1461, "name": "collection_id", "variant": "declaration", "kind": 1024, @@ -41944,7 +42681,7 @@ } }, { - "id": 1455, + "id": 1454, "name": "description", "variant": "declaration", "kind": 1024, @@ -41965,7 +42702,7 @@ } }, { - "id": 1456, + "id": 1455, "name": "discountable", "variant": "declaration", "kind": 1024, @@ -41986,7 +42723,7 @@ } }, { - "id": 1459, + "id": 1458, "name": "handle", "variant": "declaration", "kind": 1024, @@ -42007,7 +42744,7 @@ } }, { - "id": 1469, + "id": 1468, "name": "height", "variant": "declaration", "kind": 1024, @@ -42028,7 +42765,7 @@ } }, { - "id": 1471, + "id": 1470, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -42049,7 +42786,7 @@ } }, { - "id": 1457, + "id": 1456, "name": "images", "variant": "declaration", "kind": 1024, @@ -42073,7 +42810,7 @@ } }, { - "id": 1468, + "id": 1467, "name": "length", "variant": "declaration", "kind": 1024, @@ -42094,7 +42831,7 @@ } }, { - "id": 1474, + "id": 1473, "name": "material", "variant": "declaration", "kind": 1024, @@ -42115,7 +42852,7 @@ } }, { - "id": 1475, + "id": 1474, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -42151,7 +42888,7 @@ } }, { - "id": 1473, + "id": 1472, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -42172,7 +42909,7 @@ } }, { - "id": 1472, + "id": 1471, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -42193,7 +42930,7 @@ } }, { - "id": 1464, + "id": 1463, "name": "sales_channels", "variant": "declaration", "kind": 1024, @@ -42219,7 +42956,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4402, + "target": 4429, "name": "ProductSalesChannelReq", "package": "@medusajs/medusa" } @@ -42228,7 +42965,7 @@ } }, { - "id": 1460, + "id": 1459, "name": "status", "variant": "declaration", "kind": 1024, @@ -42254,7 +42991,7 @@ } }, { - "id": 1454, + "id": 1453, "name": "subtitle", "variant": "declaration", "kind": 1024, @@ -42275,7 +43012,7 @@ } }, { - "id": 1463, + "id": 1462, "name": "tags", "variant": "declaration", "kind": 1024, @@ -42294,14 +43031,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4397, + "target": 4424, "name": "ProductTagReq", "package": "@medusajs/medusa" } } }, { - "id": 1458, + "id": 1457, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -42322,7 +43059,7 @@ } }, { - "id": 1453, + "id": 1452, "name": "title", "variant": "declaration", "kind": 1024, @@ -42343,7 +43080,7 @@ } }, { - "id": 1461, + "id": 1460, "name": "type", "variant": "declaration", "kind": 1024, @@ -42360,13 +43097,13 @@ }, "type": { "type": "reference", - "target": 4392, + "target": 4419, "name": "ProductTypeReq", "package": "@medusajs/medusa" } }, { - "id": 1466, + "id": 1465, "name": "variants", "variant": "declaration", "kind": 1024, @@ -42385,14 +43122,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4470, + "target": 4497, "name": "ProductVariantReq", "package": "@medusajs/medusa" } } }, { - "id": 1467, + "id": 1466, "name": "weight", "variant": "declaration", "kind": 1024, @@ -42413,7 +43150,7 @@ } }, { - "id": 1470, + "id": 1469, "name": "width", "variant": "declaration", "kind": 1024, @@ -42438,62 +43175,62 @@ { "title": "Constructors", "children": [ - 1451 + 1450 ] }, { "title": "Properties", "children": [ - 1465, - 1462, - 1455, - 1456, - 1459, - 1469, - 1471, - 1457, - 1468, - 1474, - 1475, - 1473, - 1472, 1464, - 1460, - 1454, - 1463, - 1458, - 1453, 1461, - 1466, + 1454, + 1455, + 1458, + 1468, + 1470, + 1456, 1467, - 1470 + 1473, + 1474, + 1472, + 1471, + 1463, + 1459, + 1453, + 1462, + 1457, + 1452, + 1460, + 1465, + 1466, + 1469 ] } ] }, { - "id": 1371, + "id": 1380, "name": "AdminPostProductsProductVariantsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1372, + "id": 1381, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1373, + "id": 1382, "name": "new AdminPostProductsProductVariantsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1371, + "target": 1380, "name": "AdminPostProductsProductVariantsReq", "package": "@medusajs/medusa" } @@ -42501,7 +43238,7 @@ ] }, { - "id": 1381, + "id": 1390, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -42522,7 +43259,7 @@ } }, { - "id": 1378, + "id": 1387, "name": "barcode", "variant": "declaration", "kind": 1024, @@ -42543,7 +43280,7 @@ } }, { - "id": 1376, + "id": 1385, "name": "ean", "variant": "declaration", "kind": 1024, @@ -42564,7 +43301,7 @@ } }, { - "id": 1385, + "id": 1394, "name": "height", "variant": "declaration", "kind": 1024, @@ -42585,7 +43322,7 @@ } }, { - "id": 1379, + "id": 1388, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -42606,7 +43343,7 @@ } }, { - "id": 1380, + "id": 1389, "name": "inventory_quantity", "variant": "declaration", "kind": 1024, @@ -42628,7 +43365,7 @@ "defaultValue": "0" }, { - "id": 1384, + "id": 1393, "name": "length", "variant": "declaration", "kind": 1024, @@ -42649,7 +43386,7 @@ } }, { - "id": 1382, + "id": 1391, "name": "manage_inventory", "variant": "declaration", "kind": 1024, @@ -42671,7 +43408,7 @@ "defaultValue": "true" }, { - "id": 1389, + "id": 1398, "name": "material", "variant": "declaration", "kind": 1024, @@ -42692,7 +43429,7 @@ } }, { - "id": 1390, + "id": 1399, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -42728,7 +43465,7 @@ } }, { - "id": 1388, + "id": 1397, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -42749,7 +43486,7 @@ } }, { - "id": 1392, + "id": 1401, "name": "options", "variant": "declaration", "kind": 1024, @@ -42768,7 +43505,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4444, + "target": 4471, "name": "ProductVariantOptionReq", "package": "@medusajs/medusa" } @@ -42776,7 +43513,7 @@ "defaultValue": "[]" }, { - "id": 1387, + "id": 1396, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -42797,7 +43534,7 @@ } }, { - "id": 1391, + "id": 1400, "name": "prices", "variant": "declaration", "kind": 1024, @@ -42814,14 +43551,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4436, + "target": 4463, "name": "ProductVariantPricesCreateReq", "package": "@medusajs/medusa" } } }, { - "id": 1375, + "id": 1384, "name": "sku", "variant": "declaration", "kind": 1024, @@ -42842,7 +43579,7 @@ } }, { - "id": 1374, + "id": 1383, "name": "title", "variant": "declaration", "kind": 1024, @@ -42861,7 +43598,7 @@ } }, { - "id": 1377, + "id": 1386, "name": "upc", "variant": "declaration", "kind": 1024, @@ -42882,7 +43619,7 @@ } }, { - "id": 1383, + "id": 1392, "name": "weight", "variant": "declaration", "kind": 1024, @@ -42903,7 +43640,7 @@ } }, { - "id": 1386, + "id": 1395, "name": "width", "variant": "declaration", "kind": 1024, @@ -42928,58 +43665,58 @@ { "title": "Constructors", "children": [ - 1372 + 1381 ] }, { "title": "Properties", "children": [ - 1381, - 1378, - 1376, - 1385, - 1379, - 1380, - 1384, - 1382, - 1389, 1390, - 1388, - 1392, 1387, + 1385, + 1394, + 1388, + 1389, + 1393, 1391, - 1375, - 1374, - 1377, + 1398, + 1399, + 1397, + 1401, + 1396, + 1400, + 1384, 1383, - 1386 + 1386, + 1392, + 1395 ] } ] }, { - "id": 1476, + "id": 1475, "name": "AdminPostProductsProductVariantsVariantReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1477, + "id": 1476, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1478, + "id": 1477, "name": "new AdminPostProductsProductVariantsVariantReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1476, + "target": 1475, "name": "AdminPostProductsProductVariantsVariantReq", "package": "@medusajs/medusa" } @@ -42987,7 +43724,7 @@ ] }, { - "id": 1486, + "id": 1485, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -43008,7 +43745,7 @@ } }, { - "id": 1483, + "id": 1482, "name": "barcode", "variant": "declaration", "kind": 1024, @@ -43029,7 +43766,7 @@ } }, { - "id": 1481, + "id": 1480, "name": "ean", "variant": "declaration", "kind": 1024, @@ -43050,7 +43787,7 @@ } }, { - "id": 1490, + "id": 1489, "name": "height", "variant": "declaration", "kind": 1024, @@ -43071,7 +43808,7 @@ } }, { - "id": 1484, + "id": 1483, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -43092,7 +43829,7 @@ } }, { - "id": 1485, + "id": 1484, "name": "inventory_quantity", "variant": "declaration", "kind": 1024, @@ -43113,7 +43850,7 @@ } }, { - "id": 1489, + "id": 1488, "name": "length", "variant": "declaration", "kind": 1024, @@ -43134,7 +43871,7 @@ } }, { - "id": 1487, + "id": 1486, "name": "manage_inventory", "variant": "declaration", "kind": 1024, @@ -43155,7 +43892,7 @@ } }, { - "id": 1494, + "id": 1493, "name": "material", "variant": "declaration", "kind": 1024, @@ -43176,7 +43913,7 @@ } }, { - "id": 1495, + "id": 1494, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -43212,7 +43949,7 @@ } }, { - "id": 1493, + "id": 1492, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -43233,7 +43970,7 @@ } }, { - "id": 1497, + "id": 1496, "name": "options", "variant": "declaration", "kind": 1024, @@ -43252,7 +43989,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4502, + "target": 4529, "name": "ProductVariantOptionReq", "package": "@medusajs/medusa" } @@ -43260,7 +43997,7 @@ "defaultValue": "[]" }, { - "id": 1492, + "id": 1491, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -43281,7 +44018,7 @@ } }, { - "id": 1496, + "id": 1495, "name": "prices", "variant": "declaration", "kind": 1024, @@ -43300,14 +44037,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4493, + "target": 4520, "name": "ProductVariantPricesUpdateReq", "package": "@medusajs/medusa" } } }, { - "id": 1480, + "id": 1479, "name": "sku", "variant": "declaration", "kind": 1024, @@ -43328,7 +44065,7 @@ } }, { - "id": 1479, + "id": 1478, "name": "title", "variant": "declaration", "kind": 1024, @@ -43349,7 +44086,7 @@ } }, { - "id": 1482, + "id": 1481, "name": "upc", "variant": "declaration", "kind": 1024, @@ -43370,7 +44107,7 @@ } }, { - "id": 1488, + "id": 1487, "name": "weight", "variant": "declaration", "kind": 1024, @@ -43391,7 +44128,7 @@ } }, { - "id": 1491, + "id": 1490, "name": "width", "variant": "declaration", "kind": 1024, @@ -43416,58 +44153,58 @@ { "title": "Constructors", "children": [ - 1477 + 1476 ] }, { "title": "Properties", "children": [ - 1486, - 1483, - 1481, - 1490, - 1484, 1485, + 1482, + 1480, 1489, - 1487, - 1494, - 1495, + 1483, + 1484, + 1488, + 1486, 1493, - 1497, + 1494, 1492, 1496, - 1480, + 1491, + 1495, 1479, - 1482, - 1488, - 1491 + 1478, + 1481, + 1487, + 1490 ] } ] }, { - "id": 1343, + "id": 1352, "name": "AdminPostProductsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1344, + "id": 1353, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1345, + "id": 1354, "name": "new AdminPostProductsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1343, + "target": 1352, "name": "AdminPostProductsReq", "package": "@medusajs/medusa" } @@ -43475,7 +44212,7 @@ ] }, { - "id": 1359, + "id": 1368, "name": "categories", "variant": "declaration", "kind": 1024, @@ -43516,14 +44253,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4406, + "target": 4433, "name": "ProductProductCategoryReq", "package": "@medusajs/medusa" } } }, { - "id": 1356, + "id": 1365, "name": "collection_id", "variant": "declaration", "kind": 1024, @@ -43544,7 +44281,7 @@ } }, { - "id": 1348, + "id": 1357, "name": "description", "variant": "declaration", "kind": 1024, @@ -43565,7 +44302,7 @@ } }, { - "id": 1350, + "id": 1359, "name": "discountable", "variant": "declaration", "kind": 1024, @@ -43585,7 +44322,7 @@ "defaultValue": "true" }, { - "id": 1353, + "id": 1362, "name": "handle", "variant": "declaration", "kind": 1024, @@ -43606,7 +44343,7 @@ } }, { - "id": 1364, + "id": 1373, "name": "height", "variant": "declaration", "kind": 1024, @@ -43627,7 +44364,7 @@ } }, { - "id": 1366, + "id": 1375, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -43648,7 +44385,7 @@ } }, { - "id": 1351, + "id": 1360, "name": "images", "variant": "declaration", "kind": 1024, @@ -43672,7 +44409,7 @@ } }, { - "id": 1349, + "id": 1358, "name": "is_giftcard", "variant": "declaration", "kind": 1024, @@ -43692,7 +44429,7 @@ "defaultValue": "false" }, { - "id": 1363, + "id": 1372, "name": "length", "variant": "declaration", "kind": 1024, @@ -43713,7 +44450,7 @@ } }, { - "id": 1369, + "id": 1378, "name": "material", "variant": "declaration", "kind": 1024, @@ -43734,7 +44471,7 @@ } }, { - "id": 1370, + "id": 1379, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -43770,7 +44507,7 @@ } }, { - "id": 1368, + "id": 1377, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -43791,7 +44528,7 @@ } }, { - "id": 1360, + "id": 1369, "name": "options", "variant": "declaration", "kind": 1024, @@ -43810,14 +44547,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4410, + "target": 4437, "name": "ProductOptionReq", "package": "@medusajs/medusa" } } }, { - "id": 1367, + "id": 1376, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -43838,7 +44575,7 @@ } }, { - "id": 1358, + "id": 1367, "name": "sales_channels", "variant": "declaration", "kind": 1024, @@ -43857,14 +44594,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4402, + "target": 4429, "name": "ProductSalesChannelReq", "package": "@medusajs/medusa" } } }, { - "id": 1354, + "id": 1363, "name": "status", "variant": "declaration", "kind": 1024, @@ -43891,7 +44628,7 @@ "defaultValue": "ProductStatus.DRAFT" }, { - "id": 1347, + "id": 1356, "name": "subtitle", "variant": "declaration", "kind": 1024, @@ -43912,7 +44649,7 @@ } }, { - "id": 1357, + "id": 1366, "name": "tags", "variant": "declaration", "kind": 1024, @@ -43931,14 +44668,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4397, + "target": 4424, "name": "ProductTagReq", "package": "@medusajs/medusa" } } }, { - "id": 1352, + "id": 1361, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -43959,7 +44696,7 @@ } }, { - "id": 1346, + "id": 1355, "name": "title", "variant": "declaration", "kind": 1024, @@ -43978,7 +44715,7 @@ } }, { - "id": 1355, + "id": 1364, "name": "type", "variant": "declaration", "kind": 1024, @@ -43995,13 +44732,13 @@ }, "type": { "type": "reference", - "target": 4392, + "target": 4419, "name": "ProductTypeReq", "package": "@medusajs/medusa" } }, { - "id": 1361, + "id": 1370, "name": "variants", "variant": "declaration", "kind": 1024, @@ -44020,14 +44757,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4414, + "target": 4441, "name": "ProductVariantReq", "package": "@medusajs/medusa" } } }, { - "id": 1362, + "id": 1371, "name": "weight", "variant": "declaration", "kind": 1024, @@ -44048,7 +44785,7 @@ } }, { - "id": 1365, + "id": 1374, "name": "width", "variant": "declaration", "kind": 1024, @@ -44073,37 +44810,37 @@ { "title": "Constructors", "children": [ - 1344 + 1353 ] }, { "title": "Properties", "children": [ - 1359, - 1356, - 1348, - 1350, - 1353, - 1364, - 1366, - 1351, - 1349, - 1363, - 1369, - 1370, 1368, - 1360, - 1367, - 1358, - 1354, - 1347, + 1365, 1357, - 1352, - 1346, - 1355, - 1361, + 1359, 1362, - 1365 + 1373, + 1375, + 1360, + 1358, + 1372, + 1378, + 1379, + 1377, + 1369, + 1376, + 1367, + 1363, + 1356, + 1366, + 1361, + 1355, + 1364, + 1370, + 1371, + 1374 ] } ] @@ -44176,28 +44913,28 @@ ] }, { - "id": 1508, + "id": 1507, "name": "AdminPostPublishableApiKeySalesChannelsBatchReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1509, + "id": 1508, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1510, + "id": 1509, "name": "new AdminPostPublishableApiKeySalesChannelsBatchReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1508, + "target": 1507, "name": "AdminPostPublishableApiKeySalesChannelsBatchReq", "package": "@medusajs/medusa" } @@ -44205,7 +44942,7 @@ ] }, { - "id": 1511, + "id": 1510, "name": "sales_channel_ids", "variant": "declaration", "kind": 1024, @@ -44222,7 +44959,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4507, + "target": 4534, "name": "ProductBatchSalesChannel", "package": "@medusajs/medusa" } @@ -44233,40 +44970,40 @@ { "title": "Constructors", "children": [ - 1509 + 1508 ] }, { "title": "Properties", "children": [ - 1511 + 1510 ] } ] }, { - "id": 1538, + "id": 1537, "name": "AdminPostPublishableApiKeysPublishableApiKeyReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1539, + "id": 1538, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1540, + "id": 1539, "name": "new AdminPostPublishableApiKeysPublishableApiKeyReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1538, + "target": 1537, "name": "AdminPostPublishableApiKeysPublishableApiKeyReq", "package": "@medusajs/medusa" } @@ -44274,7 +45011,7 @@ ] }, { - "id": 1541, + "id": 1540, "name": "title", "variant": "declaration", "kind": 1024, @@ -44299,40 +45036,40 @@ { "title": "Constructors", "children": [ - 1539 + 1538 ] }, { "title": "Properties", "children": [ - 1541 + 1540 ] } ] }, { - "id": 1534, + "id": 1533, "name": "AdminPostPublishableApiKeysReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1535, + "id": 1534, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1536, + "id": 1535, "name": "new AdminPostPublishableApiKeysReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1534, + "target": 1533, "name": "AdminPostPublishableApiKeysReq", "package": "@medusajs/medusa" } @@ -44340,7 +45077,7 @@ ] }, { - "id": 1537, + "id": 1536, "name": "title", "variant": "declaration", "kind": 1024, @@ -44363,40 +45100,40 @@ { "title": "Constructors", "children": [ - 1535 + 1534 ] }, { "title": "Properties", "children": [ - 1537 + 1536 ] } ] }, { - "id": 1560, + "id": 1559, "name": "AdminPostRegionsRegionCountriesReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1561, + "id": 1560, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1562, + "id": 1561, "name": "new AdminPostRegionsRegionCountriesReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1560, + "target": 1559, "name": "AdminPostRegionsRegionCountriesReq", "package": "@medusajs/medusa" } @@ -44404,7 +45141,7 @@ ] }, { - "id": 1563, + "id": 1562, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -44427,40 +45164,40 @@ { "title": "Constructors", "children": [ - 1561 + 1560 ] }, { "title": "Properties", "children": [ - 1563 + 1562 ] } ] }, { - "id": 1564, + "id": 1563, "name": "AdminPostRegionsRegionFulfillmentProvidersReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1565, + "id": 1564, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1566, + "id": 1565, "name": "new AdminPostRegionsRegionFulfillmentProvidersReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1564, + "target": 1563, "name": "AdminPostRegionsRegionFulfillmentProvidersReq", "package": "@medusajs/medusa" } @@ -44468,7 +45205,7 @@ ] }, { - "id": 1567, + "id": 1566, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -44491,40 +45228,40 @@ { "title": "Constructors", "children": [ - 1565 + 1564 ] }, { "title": "Properties", "children": [ - 1567 + 1566 ] } ] }, { - "id": 1568, + "id": 1567, "name": "AdminPostRegionsRegionPaymentProvidersReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1569, + "id": 1568, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1570, + "id": 1569, "name": "new AdminPostRegionsRegionPaymentProvidersReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1568, + "target": 1567, "name": "AdminPostRegionsRegionPaymentProvidersReq", "package": "@medusajs/medusa" } @@ -44532,7 +45269,7 @@ ] }, { - "id": 1571, + "id": 1570, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -44555,40 +45292,40 @@ { "title": "Constructors", "children": [ - 1569 + 1568 ] }, { "title": "Properties", "children": [ - 1571 + 1570 ] } ] }, { - "id": 1597, + "id": 1594, "name": "AdminPostRegionsRegionReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1598, + "id": 1595, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1599, + "id": 1596, "name": "new AdminPostRegionsRegionReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1597, + "target": 1594, "name": "AdminPostRegionsRegionReq", "package": "@medusajs/medusa" } @@ -44596,7 +45333,7 @@ ] }, { - "id": 1605, + "id": 1602, "name": "automatic_taxes", "variant": "declaration", "kind": 1024, @@ -44617,7 +45354,7 @@ } }, { - "id": 1609, + "id": 1606, "name": "countries", "variant": "declaration", "kind": 1024, @@ -44641,7 +45378,7 @@ } }, { - "id": 1601, + "id": 1598, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -44662,7 +45399,7 @@ } }, { - "id": 1608, + "id": 1605, "name": "fulfillment_providers", "variant": "declaration", "kind": 1024, @@ -44686,7 +45423,7 @@ } }, { - "id": 1604, + "id": 1601, "name": "gift_cards_taxable", "variant": "declaration", "kind": 1024, @@ -44707,7 +45444,7 @@ } }, { - "id": 1610, + "id": 1607, "name": "includes_tax", "variant": "declaration", "kind": 1024, @@ -44750,7 +45487,7 @@ } }, { - "id": 1611, + "id": 1608, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -44778,7 +45515,7 @@ } }, { - "id": 1600, + "id": 1597, "name": "name", "variant": "declaration", "kind": 1024, @@ -44799,7 +45536,7 @@ } }, { - "id": 1607, + "id": 1604, "name": "payment_providers", "variant": "declaration", "kind": 1024, @@ -44823,7 +45560,7 @@ } }, { - "id": 1602, + "id": 1599, "name": "tax_code", "variant": "declaration", "kind": 1024, @@ -44844,7 +45581,7 @@ } }, { - "id": 1606, + "id": 1603, "name": "tax_provider_id", "variant": "declaration", "kind": 1024, @@ -44874,7 +45611,7 @@ } }, { - "id": 1603, + "id": 1600, "name": "tax_rate", "variant": "declaration", "kind": 1024, @@ -44899,51 +45636,51 @@ { "title": "Constructors", "children": [ - 1598 + 1595 ] }, { "title": "Properties", "children": [ - 1605, - 1609, - 1601, - 1608, - 1604, - 1610, - 1611, - 1600, - 1607, 1602, 1606, - 1603 + 1598, + 1605, + 1601, + 1607, + 1608, + 1597, + 1604, + 1599, + 1603, + 1600 ] } ] }, { - "id": 1572, + "id": 1571, "name": "AdminPostRegionsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1573, + "id": 1572, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1574, + "id": 1573, "name": "new AdminPostRegionsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1572, + "target": 1571, "name": "AdminPostRegionsReq", "package": "@medusajs/medusa" } @@ -44951,7 +45688,7 @@ ] }, { - "id": 1581, + "id": 1580, "name": "countries", "variant": "declaration", "kind": 1024, @@ -44973,7 +45710,7 @@ } }, { - "id": 1576, + "id": 1575, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -44992,7 +45729,7 @@ } }, { - "id": 1580, + "id": 1579, "name": "fulfillment_providers", "variant": "declaration", "kind": 1024, @@ -45014,7 +45751,7 @@ } }, { - "id": 1582, + "id": 1581, "name": "includes_tax", "variant": "declaration", "kind": 1024, @@ -45057,7 +45794,7 @@ } }, { - "id": 1583, + "id": 1582, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -45085,7 +45822,7 @@ } }, { - "id": 1575, + "id": 1574, "name": "name", "variant": "declaration", "kind": 1024, @@ -45104,7 +45841,7 @@ } }, { - "id": 1579, + "id": 1578, "name": "payment_providers", "variant": "declaration", "kind": 1024, @@ -45126,7 +45863,7 @@ } }, { - "id": 1577, + "id": 1576, "name": "tax_code", "variant": "declaration", "kind": 1024, @@ -45147,7 +45884,7 @@ } }, { - "id": 1578, + "id": 1577, "name": "tax_rate", "variant": "declaration", "kind": 1024, @@ -45170,48 +45907,48 @@ { "title": "Constructors", "children": [ - 1573 + 1572 ] }, { "title": "Properties", "children": [ - 1581, - 1576, 1580, - 1582, - 1583, 1575, 1579, - 1577, - 1578 + 1581, + 1582, + 1574, + 1578, + 1576, + 1577 ] } ] }, { - "id": 1673, + "id": 1670, "name": "AdminPostReservationsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1674, + "id": 1671, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1675, + "id": 1672, "name": "new AdminPostReservationsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1673, + "target": 1670, "name": "AdminPostReservationsReq", "package": "@medusajs/medusa" } @@ -45219,7 +45956,7 @@ ] }, { - "id": 1680, + "id": 1677, "name": "description", "variant": "declaration", "kind": 1024, @@ -45240,7 +45977,7 @@ } }, { - "id": 1678, + "id": 1675, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -45259,7 +45996,7 @@ } }, { - "id": 1676, + "id": 1673, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -45280,7 +46017,7 @@ } }, { - "id": 1677, + "id": 1674, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -45299,7 +46036,7 @@ } }, { - "id": 1681, + "id": 1678, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -45335,7 +46072,7 @@ } }, { - "id": 1679, + "id": 1676, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -45358,45 +46095,45 @@ { "title": "Constructors", "children": [ - 1674 + 1671 ] }, { "title": "Properties", "children": [ - 1680, - 1678, - 1676, 1677, - 1681, - 1679 + 1675, + 1673, + 1674, + 1678, + 1676 ] } ] }, { - "id": 1697, + "id": 1694, "name": "AdminPostReservationsReservationReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1698, + "id": 1695, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1699, + "id": 1696, "name": "new AdminPostReservationsReservationReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1697, + "target": 1694, "name": "AdminPostReservationsReservationReq", "package": "@medusajs/medusa" } @@ -45404,7 +46141,7 @@ ] }, { - "id": 1702, + "id": 1699, "name": "description", "variant": "declaration", "kind": 1024, @@ -45425,7 +46162,7 @@ } }, { - "id": 1701, + "id": 1698, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -45446,7 +46183,7 @@ } }, { - "id": 1703, + "id": 1700, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -45482,7 +46219,7 @@ } }, { - "id": 1700, + "id": 1697, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -45507,43 +46244,43 @@ { "title": "Constructors", "children": [ - 1698 + 1695 ] }, { "title": "Properties", "children": [ - 1702, - 1701, - 1703, - 1700 + 1699, + 1698, + 1700, + 1697 ] } ] }, { - "id": 1629, + "id": 1626, "name": "AdminPostReturnReasonsReasonReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1630, + "id": 1627, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1631, + "id": 1628, "name": "new AdminPostReturnReasonsReasonReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1629, + "target": 1626, "name": "AdminPostReturnReasonsReasonReq", "package": "@medusajs/medusa" } @@ -45551,7 +46288,7 @@ ] }, { - "id": 1634, + "id": 1631, "name": "description", "variant": "declaration", "kind": 1024, @@ -45572,7 +46309,7 @@ } }, { - "id": 1632, + "id": 1629, "name": "label", "variant": "declaration", "kind": 1024, @@ -45593,7 +46330,7 @@ } }, { - "id": 1635, + "id": 1632, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -45629,7 +46366,7 @@ } }, { - "id": 1633, + "id": 1630, "name": "value", "variant": "declaration", "kind": 1024, @@ -45654,43 +46391,43 @@ { "title": "Constructors", "children": [ - 1630 + 1627 ] }, { "title": "Properties", "children": [ - 1634, + 1631, + 1629, 1632, - 1635, - 1633 + 1630 ] } ] }, { - "id": 1621, + "id": 1618, "name": "AdminPostReturnReasonsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1622, + "id": 1619, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1623, + "id": 1620, "name": "new AdminPostReturnReasonsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1621, + "target": 1618, "name": "AdminPostReturnReasonsReq", "package": "@medusajs/medusa" } @@ -45698,7 +46435,7 @@ ] }, { - "id": 1627, + "id": 1624, "name": "description", "variant": "declaration", "kind": 1024, @@ -45719,7 +46456,7 @@ } }, { - "id": 1625, + "id": 1622, "name": "label", "variant": "declaration", "kind": 1024, @@ -45738,7 +46475,7 @@ } }, { - "id": 1628, + "id": 1625, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -45774,7 +46511,7 @@ } }, { - "id": 1626, + "id": 1623, "name": "parent_return_reason_id", "variant": "declaration", "kind": 1024, @@ -45795,7 +46532,7 @@ } }, { - "id": 1624, + "id": 1621, "name": "value", "variant": "declaration", "kind": 1024, @@ -45818,44 +46555,44 @@ { "title": "Constructors", "children": [ - 1622 + 1619 ] }, { "title": "Properties", "children": [ - 1627, + 1624, + 1622, 1625, - 1628, - 1626, - 1624 + 1623, + 1621 ] } ] }, { - "id": 1654, + "id": 1651, "name": "AdminPostReturnsReturnReceiveReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1655, + "id": 1652, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1656, + "id": 1653, "name": "new AdminPostReturnsReturnReceiveReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1654, + "target": 1651, "name": "AdminPostReturnsReturnReceiveReq", "package": "@medusajs/medusa" } @@ -45863,7 +46600,7 @@ ] }, { - "id": 1657, + "id": 1654, "name": "items", "variant": "declaration", "kind": 1024, @@ -45880,14 +46617,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4511, + "target": 4538, "name": "Item", "package": "@medusajs/medusa" } } }, { - "id": 1659, + "id": 1656, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -45908,7 +46645,7 @@ } }, { - "id": 1658, + "id": 1655, "name": "refund", "variant": "declaration", "kind": 1024, @@ -45933,42 +46670,42 @@ { "title": "Constructors", "children": [ - 1655 + 1652 ] }, { "title": "Properties", "children": [ - 1657, - 1659, - 1658 + 1654, + 1656, + 1655 ] } ] }, { - "id": 1712, + "id": 1709, "name": "AdminPostSalesChannelsChannelProductsBatchReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1713, + "id": 1710, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1714, + "id": 1711, "name": "new AdminPostSalesChannelsChannelProductsBatchReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1712, + "target": 1709, "name": "AdminPostSalesChannelsChannelProductsBatchReq", "package": "@medusajs/medusa" } @@ -45976,7 +46713,7 @@ ] }, { - "id": 1715, + "id": 1712, "name": "product_ids", "variant": "declaration", "kind": 1024, @@ -45993,7 +46730,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4507, + "target": 4534, "name": "ProductBatchSalesChannel", "package": "@medusajs/medusa" } @@ -46004,40 +46741,40 @@ { "title": "Constructors", "children": [ - 1713 + 1710 ] }, { "title": "Properties", "children": [ - 1715 + 1712 ] } ] }, { - "id": 1748, + "id": 1745, "name": "AdminPostSalesChannelsChannelStockLocationsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1749, + "id": 1746, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1750, + "id": 1747, "name": "new AdminPostSalesChannelsChannelStockLocationsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1748, + "target": 1745, "name": "AdminPostSalesChannelsChannelStockLocationsReq", "package": "@medusajs/medusa" } @@ -46045,7 +46782,7 @@ ] }, { - "id": 1751, + "id": 1748, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -46068,40 +46805,40 @@ { "title": "Constructors", "children": [ - 1749 + 1746 ] }, { "title": "Properties", "children": [ - 1751 + 1748 ] } ] }, { - "id": 1716, + "id": 1713, "name": "AdminPostSalesChannelsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1717, + "id": 1714, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1718, + "id": 1715, "name": "new AdminPostSalesChannelsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1716, + "target": 1713, "name": "AdminPostSalesChannelsReq", "package": "@medusajs/medusa" } @@ -46109,7 +46846,7 @@ ] }, { - "id": 1720, + "id": 1717, "name": "description", "variant": "declaration", "kind": 1024, @@ -46128,7 +46865,7 @@ } }, { - "id": 1721, + "id": 1718, "name": "is_disabled", "variant": "declaration", "kind": 1024, @@ -46149,7 +46886,7 @@ } }, { - "id": 1719, + "id": 1716, "name": "name", "variant": "declaration", "kind": 1024, @@ -46172,42 +46909,42 @@ { "title": "Constructors", "children": [ - 1717 + 1714 ] }, { "title": "Properties", "children": [ - 1720, - 1721, - 1719 + 1717, + 1718, + 1716 ] } ] }, { - "id": 1742, + "id": 1739, "name": "AdminPostSalesChannelsSalesChannelReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1743, + "id": 1740, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1744, + "id": 1741, "name": "new AdminPostSalesChannelsSalesChannelReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1742, + "target": 1739, "name": "AdminPostSalesChannelsSalesChannelReq", "package": "@medusajs/medusa" } @@ -46215,7 +46952,7 @@ ] }, { - "id": 1746, + "id": 1743, "name": "description", "variant": "declaration", "kind": 1024, @@ -46236,7 +46973,7 @@ } }, { - "id": 1747, + "id": 1744, "name": "is_disabled", "variant": "declaration", "kind": 1024, @@ -46257,7 +46994,7 @@ } }, { - "id": 1745, + "id": 1742, "name": "name", "variant": "declaration", "kind": 1024, @@ -46282,42 +47019,42 @@ { "title": "Constructors", "children": [ - 1743 + 1740 ] }, { "title": "Properties", "children": [ - 1746, - 1747, - 1745 + 1743, + 1744, + 1742 ] } ] }, { - "id": 1785, + "id": 1782, "name": "AdminPostShippingOptionsOptionReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1786, + "id": 1783, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1787, + "id": 1784, "name": "new AdminPostShippingOptionsOptionReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1785, + "target": 1782, "name": "AdminPostShippingOptionsOptionReq", "package": "@medusajs/medusa" } @@ -46325,7 +47062,7 @@ ] }, { - "id": 1791, + "id": 1789, "name": "admin_only", "variant": "declaration", "kind": 1024, @@ -46346,7 +47083,7 @@ } }, { - "id": 1789, + "id": 1786, "name": "amount", "variant": "declaration", "kind": 1024, @@ -46367,7 +47104,7 @@ } }, { - "id": 1793, + "id": 1791, "name": "includes_tax", "variant": "declaration", "kind": 1024, @@ -46410,7 +47147,7 @@ } }, { - "id": 1792, + "id": 1790, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -46446,7 +47183,7 @@ } }, { - "id": 1788, + "id": 1785, "name": "name", "variant": "declaration", "kind": 1024, @@ -46465,7 +47202,25 @@ } }, { - "id": 1790, + "id": 1787, + "name": "price_type", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa/src/models/shipping-option.ts", + "qualifiedName": "ShippingOptionPriceType" + }, + "name": "ShippingOptionPriceType", + "package": "@medusajs/medusa" + } + }, + { + "id": 1788, "name": "requirements", "variant": "declaration", "kind": 1024, @@ -46482,7 +47237,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4534, + "target": 4561, "name": "OptionRequirement", "package": "@medusajs/medusa" } @@ -46493,45 +47248,46 @@ { "title": "Constructors", "children": [ - 1786 + 1783 ] }, { "title": "Properties", "children": [ - 1791, 1789, - 1793, - 1792, - 1788, - 1790 + 1786, + 1791, + 1790, + 1785, + 1787, + 1788 ] } ] }, { - "id": 1764, + "id": 1761, "name": "AdminPostShippingOptionsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1765, + "id": 1762, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1766, + "id": 1763, "name": "new AdminPostShippingOptionsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1764, + "target": 1761, "name": "AdminPostShippingOptionsReq", "package": "@medusajs/medusa" } @@ -46539,7 +47295,7 @@ ] }, { - "id": 1775, + "id": 1772, "name": "admin_only", "variant": "declaration", "kind": 1024, @@ -46561,7 +47317,7 @@ "defaultValue": "false" }, { - "id": 1773, + "id": 1770, "name": "amount", "variant": "declaration", "kind": 1024, @@ -46582,7 +47338,7 @@ } }, { - "id": 1771, + "id": 1768, "name": "data", "variant": "declaration", "kind": 1024, @@ -46596,12 +47352,27 @@ ] }, "type": { - "type": "intrinsic", - "name": "object" + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" } }, { - "id": 1778, + "id": 1775, "name": "includes_tax", "variant": "declaration", "kind": 1024, @@ -46644,7 +47415,7 @@ } }, { - "id": 1776, + "id": 1773, "name": "is_return", "variant": "declaration", "kind": 1024, @@ -46666,7 +47437,7 @@ "defaultValue": "false" }, { - "id": 1777, + "id": 1774, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -46702,7 +47473,7 @@ } }, { - "id": 1767, + "id": 1764, "name": "name", "variant": "declaration", "kind": 1024, @@ -46721,7 +47492,7 @@ } }, { - "id": 1772, + "id": 1769, "name": "price_type", "variant": "declaration", "kind": 1024, @@ -46735,12 +47506,17 @@ ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa/src/models/shipping-option.ts", + "qualifiedName": "ShippingOptionPriceType" + }, + "name": "ShippingOptionPriceType", + "package": "@medusajs/medusa" } }, { - "id": 1770, + "id": 1767, "name": "profile_id", "variant": "declaration", "kind": 1024, @@ -46761,7 +47537,7 @@ } }, { - "id": 1769, + "id": 1766, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -46780,7 +47556,7 @@ } }, { - "id": 1768, + "id": 1765, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -46799,7 +47575,7 @@ } }, { - "id": 1774, + "id": 1771, "name": "requirements", "variant": "declaration", "kind": 1024, @@ -46818,7 +47594,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4529, + "target": 4556, "name": "OptionRequirement", "package": "@medusajs/medusa" } @@ -46829,51 +47605,51 @@ { "title": "Constructors", "children": [ - 1765 + 1762 ] }, { "title": "Properties", "children": [ - 1775, - 1773, - 1771, - 1778, - 1776, - 1777, - 1767, 1772, 1770, - 1769, 1768, - 1774 + 1775, + 1773, + 1774, + 1764, + 1769, + 1767, + 1766, + 1765, + 1771 ] } ] }, { - "id": 1809, + "id": 1807, "name": "AdminPostShippingProfilesProfileReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1810, + "id": 1808, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1811, + "id": 1809, "name": "new AdminPostShippingProfilesProfileReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1809, + "target": 1807, "name": "AdminPostShippingProfilesProfileReq", "package": "@medusajs/medusa" } @@ -46881,7 +47657,7 @@ ] }, { - "id": 1813, + "id": 1811, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -46917,7 +47693,7 @@ } }, { - "id": 1812, + "id": 1810, "name": "name", "variant": "declaration", "kind": 1024, @@ -46938,7 +47714,7 @@ } }, { - "id": 1815, + "id": 1813, "name": "products", "variant": "declaration", "kind": 1024, @@ -46962,7 +47738,7 @@ } }, { - "id": 1816, + "id": 1814, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -46986,7 +47762,7 @@ } }, { - "id": 1814, + "id": 1812, "name": "type", "variant": "declaration", "kind": 1024, @@ -47016,44 +47792,44 @@ { "title": "Constructors", "children": [ - 1810 + 1808 ] }, { "title": "Properties", "children": [ + 1811, + 1810, 1813, - 1812, - 1815, - 1816, - 1814 + 1814, + 1812 ] } ] }, { - "id": 1803, + "id": 1801, "name": "AdminPostShippingProfilesReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1804, + "id": 1802, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1805, + "id": 1803, "name": "new AdminPostShippingProfilesReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1803, + "target": 1801, "name": "AdminPostShippingProfilesReq", "package": "@medusajs/medusa" } @@ -47061,7 +47837,7 @@ ] }, { - "id": 1808, + "id": 1806, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -47097,7 +47873,7 @@ } }, { - "id": 1806, + "id": 1804, "name": "name", "variant": "declaration", "kind": 1024, @@ -47116,7 +47892,7 @@ } }, { - "id": 1807, + "id": 1805, "name": "type", "variant": "declaration", "kind": 1024, @@ -47144,21 +47920,21 @@ { "title": "Constructors", "children": [ - 1804 + 1802 ] }, { "title": "Properties", "children": [ - 1808, 1806, - 1807 + 1804, + 1805 ] } ] }, { - "id": 1862, + "id": 1860, "name": "AdminPostStockLocationsLocationParams", "variant": "declaration", "kind": 128, @@ -47173,39 +47949,39 @@ }, "children": [ { - "id": 1863, + "id": 1861, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1864, + "id": 1862, "name": "new AdminPostStockLocationsLocationParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1862, + "target": 1860, "name": "AdminPostStockLocationsLocationParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 1865, + "id": 1863, "name": "expand", "variant": "declaration", "kind": 1024, @@ -47226,12 +48002,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 1866, + "id": 1864, "name": "fields", "variant": "declaration", "kind": 1024, @@ -47252,7 +48028,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -47261,49 +48037,49 @@ { "title": "Constructors", "children": [ - 1863 + 1861 ] }, { "title": "Properties", "children": [ - 1865, - 1866 + 1863, + 1864 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 1855, + "id": 1853, "name": "AdminPostStockLocationsLocationReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1856, + "id": 1854, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1857, + "id": 1855, "name": "new AdminPostStockLocationsLocationReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1855, + "target": 1853, "name": "AdminPostStockLocationsLocationReq", "package": "@medusajs/medusa" } @@ -47311,7 +48087,7 @@ ] }, { - "id": 1859, + "id": 1857, "name": "address", "variant": "declaration", "kind": 1024, @@ -47328,13 +48104,13 @@ }, "type": { "type": "reference", - "target": 4569, + "target": 4596, "name": "StockLocationAddress", "package": "@medusajs/medusa" } }, { - "id": 1860, + "id": 1858, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -47355,7 +48131,7 @@ } }, { - "id": 1861, + "id": 1859, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -47391,7 +48167,7 @@ } }, { - "id": 1858, + "id": 1856, "name": "name", "variant": "declaration", "kind": 1024, @@ -47416,22 +48192,22 @@ { "title": "Constructors", "children": [ - 1856 + 1854 ] }, { "title": "Properties", "children": [ + 1857, + 1858, 1859, - 1860, - 1861, - 1858 + 1856 ] } ] }, { - "id": 1833, + "id": 1831, "name": "AdminPostStockLocationsParams", "variant": "declaration", "kind": 128, @@ -47446,39 +48222,39 @@ }, "children": [ { - "id": 1834, + "id": 1832, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1835, + "id": 1833, "name": "new AdminPostStockLocationsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1833, + "target": 1831, "name": "AdminPostStockLocationsParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 1836, + "id": 1834, "name": "expand", "variant": "declaration", "kind": 1024, @@ -47499,12 +48275,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 1837, + "id": 1835, "name": "fields", "variant": "declaration", "kind": 1024, @@ -47525,7 +48301,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -47534,49 +48310,49 @@ { "title": "Constructors", "children": [ - 1834 + 1832 ] }, { "title": "Properties", "children": [ - 1836, - 1837 + 1834, + 1835 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 1826, + "id": 1824, "name": "AdminPostStockLocationsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1827, + "id": 1825, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1828, + "id": 1826, "name": "new AdminPostStockLocationsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1826, + "target": 1824, "name": "AdminPostStockLocationsReq", "package": "@medusajs/medusa" } @@ -47584,7 +48360,7 @@ ] }, { - "id": 1830, + "id": 1828, "name": "address", "variant": "declaration", "kind": 1024, @@ -47601,13 +48377,13 @@ }, "type": { "type": "reference", - "target": 4558, + "target": 4585, "name": "StockLocationAddress", "package": "@medusajs/medusa" } }, { - "id": 1831, + "id": 1829, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -47628,7 +48404,7 @@ } }, { - "id": 1832, + "id": 1830, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -47664,7 +48440,7 @@ } }, { - "id": 1829, + "id": 1827, "name": "name", "variant": "declaration", "kind": 1024, @@ -47687,43 +48463,43 @@ { "title": "Constructors", "children": [ - 1827 + 1825 ] }, { "title": "Properties", "children": [ + 1828, + 1829, 1830, - 1831, - 1832, - 1829 + 1827 ] } ] }, { - "id": 1880, + "id": 1878, "name": "AdminPostStoreReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1881, + "id": 1879, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1882, + "id": 1880, "name": "new AdminPostStoreReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1880, + "target": 1878, "name": "AdminPostStoreReq", "package": "@medusajs/medusa" } @@ -47731,7 +48507,7 @@ ] }, { - "id": 1888, + "id": 1886, "name": "currencies", "variant": "declaration", "kind": 1024, @@ -47755,7 +48531,7 @@ } }, { - "id": 1887, + "id": 1885, "name": "default_currency_code", "variant": "declaration", "kind": 1024, @@ -47776,7 +48552,7 @@ } }, { - "id": 1886, + "id": 1884, "name": "invite_link_template", "variant": "declaration", "kind": 1024, @@ -47797,7 +48573,7 @@ } }, { - "id": 1889, + "id": 1887, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -47833,7 +48609,7 @@ } }, { - "id": 1883, + "id": 1881, "name": "name", "variant": "declaration", "kind": 1024, @@ -47854,7 +48630,7 @@ } }, { - "id": 1885, + "id": 1883, "name": "payment_link_template", "variant": "declaration", "kind": 1024, @@ -47875,7 +48651,7 @@ } }, { - "id": 1884, + "id": 1882, "name": "swap_link_template", "variant": "declaration", "kind": 1024, @@ -47900,25 +48676,25 @@ { "title": "Constructors", "children": [ - 1881 + 1879 ] }, { "title": "Properties", "children": [ - 1888, - 1887, 1886, - 1889, - 1883, 1885, - 1884 + 1884, + 1887, + 1881, + 1883, + 1882 ] } ] }, { - "id": 1992, + "id": 1990, "name": "AdminPostTaxRatesParams", "variant": "declaration", "kind": 128, @@ -47933,21 +48709,21 @@ }, "children": [ { - "id": 1993, + "id": 1991, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1994, + "id": 1992, "name": "new AdminPostTaxRatesParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1992, + "target": 1990, "name": "AdminPostTaxRatesParams", "package": "@medusajs/medusa" } @@ -47955,7 +48731,7 @@ ] }, { - "id": 1995, + "id": 1993, "name": "expand", "variant": "declaration", "kind": 1024, @@ -47979,7 +48755,7 @@ } }, { - "id": 1996, + "id": 1994, "name": "fields", "variant": "declaration", "kind": 1024, @@ -48007,41 +48783,41 @@ { "title": "Constructors", "children": [ - 1993 + 1991 ] }, { "title": "Properties", "children": [ - 1995, - 1996 + 1993, + 1994 ] } ] }, { - "id": 1982, + "id": 1980, "name": "AdminPostTaxRatesReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1983, + "id": 1981, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1984, + "id": 1982, "name": "new AdminPostTaxRatesReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1982, + "target": 1980, "name": "AdminPostTaxRatesReq", "package": "@medusajs/medusa" } @@ -48049,7 +48825,7 @@ ] }, { - "id": 1985, + "id": 1983, "name": "code", "variant": "declaration", "kind": 1024, @@ -48068,7 +48844,7 @@ } }, { - "id": 1986, + "id": 1984, "name": "name", "variant": "declaration", "kind": 1024, @@ -48087,7 +48863,7 @@ } }, { - "id": 1991, + "id": 1989, "name": "product_types", "variant": "declaration", "kind": 1024, @@ -48111,7 +48887,7 @@ } }, { - "id": 1989, + "id": 1987, "name": "products", "variant": "declaration", "kind": 1024, @@ -48135,7 +48911,7 @@ } }, { - "id": 1988, + "id": 1986, "name": "rate", "variant": "declaration", "kind": 1024, @@ -48165,7 +48941,7 @@ } }, { - "id": 1987, + "id": 1985, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -48184,7 +48960,7 @@ } }, { - "id": 1990, + "id": 1988, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -48212,25 +48988,25 @@ { "title": "Constructors", "children": [ - 1983 + 1981 ] }, { "title": "Properties", "children": [ - 1985, - 1986, - 1991, + 1983, + 1984, 1989, - 1988, 1987, - 1990 + 1986, + 1985, + 1988 ] } ] }, { - "id": 2007, + "id": 2005, "name": "AdminPostTaxRatesTaxRateParams", "variant": "declaration", "kind": 128, @@ -48245,21 +49021,21 @@ }, "children": [ { - "id": 2008, + "id": 2006, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2009, + "id": 2007, "name": "new AdminPostTaxRatesTaxRateParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2007, + "target": 2005, "name": "AdminPostTaxRatesTaxRateParams", "package": "@medusajs/medusa" } @@ -48267,7 +49043,7 @@ ] }, { - "id": 2010, + "id": 2008, "name": "expand", "variant": "declaration", "kind": 1024, @@ -48291,7 +49067,7 @@ } }, { - "id": 2011, + "id": 2009, "name": "fields", "variant": "declaration", "kind": 1024, @@ -48319,20 +49095,20 @@ { "title": "Constructors", "children": [ - 2008 + 2006 ] }, { "title": "Properties", "children": [ - 2010, - 2011 + 2008, + 2009 ] } ] }, { - "id": 1959, + "id": 1957, "name": "AdminPostTaxRatesTaxRateProductTypesParams", "variant": "declaration", "kind": 128, @@ -48347,21 +49123,21 @@ }, "children": [ { - "id": 1960, + "id": 1958, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1961, + "id": 1959, "name": "new AdminPostTaxRatesTaxRateProductTypesParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1959, + "target": 1957, "name": "AdminPostTaxRatesTaxRateProductTypesParams", "package": "@medusajs/medusa" } @@ -48369,7 +49145,7 @@ ] }, { - "id": 1962, + "id": 1960, "name": "expand", "variant": "declaration", "kind": 1024, @@ -48393,7 +49169,7 @@ } }, { - "id": 1963, + "id": 1961, "name": "fields", "variant": "declaration", "kind": 1024, @@ -48421,20 +49197,20 @@ { "title": "Constructors", "children": [ - 1960 + 1958 ] }, { "title": "Properties", "children": [ - 1962, - 1963 + 1960, + 1961 ] } ] }, { - "id": 1955, + "id": 1953, "name": "AdminPostTaxRatesTaxRateProductTypesReq", "variant": "declaration", "kind": 128, @@ -48449,14 +49225,14 @@ }, "children": [ { - "id": 1956, + "id": 1954, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1957, + "id": 1955, "name": "new AdminPostTaxRatesTaxRateProductTypesReq", "variant": "signature", "kind": 16384, @@ -48471,7 +49247,7 @@ }, "type": { "type": "reference", - "target": 1955, + "target": 1953, "name": "AdminPostTaxRatesTaxRateProductTypesReq", "package": "@medusajs/medusa" } @@ -48479,7 +49255,7 @@ ] }, { - "id": 1958, + "id": 1956, "name": "product_types", "variant": "declaration", "kind": 1024, @@ -48505,19 +49281,19 @@ { "title": "Constructors", "children": [ - 1956 + 1954 ] }, { "title": "Properties", "children": [ - 1958 + 1956 ] } ] }, { - "id": 1968, + "id": 1966, "name": "AdminPostTaxRatesTaxRateProductsParams", "variant": "declaration", "kind": 128, @@ -48532,21 +49308,21 @@ }, "children": [ { - "id": 1969, + "id": 1967, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1970, + "id": 1968, "name": "new AdminPostTaxRatesTaxRateProductsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1968, + "target": 1966, "name": "AdminPostTaxRatesTaxRateProductsParams", "package": "@medusajs/medusa" } @@ -48554,7 +49330,7 @@ ] }, { - "id": 1971, + "id": 1969, "name": "expand", "variant": "declaration", "kind": 1024, @@ -48578,7 +49354,7 @@ } }, { - "id": 1972, + "id": 1970, "name": "fields", "variant": "declaration", "kind": 1024, @@ -48606,41 +49382,41 @@ { "title": "Constructors", "children": [ - 1969 + 1967 ] }, { "title": "Properties", "children": [ - 1971, - 1972 + 1969, + 1970 ] } ] }, { - "id": 1964, + "id": 1962, "name": "AdminPostTaxRatesTaxRateProductsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1965, + "id": 1963, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1966, + "id": 1964, "name": "new AdminPostTaxRatesTaxRateProductsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1964, + "target": 1962, "name": "AdminPostTaxRatesTaxRateProductsReq", "package": "@medusajs/medusa" } @@ -48648,7 +49424,7 @@ ] }, { - "id": 1967, + "id": 1965, "name": "products", "variant": "declaration", "kind": 1024, @@ -48674,40 +49450,40 @@ { "title": "Constructors", "children": [ - 1965 + 1963 ] }, { "title": "Properties", "children": [ - 1967 + 1965 ] } ] }, { - "id": 1997, + "id": 1995, "name": "AdminPostTaxRatesTaxRateReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1998, + "id": 1996, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1999, + "id": 1997, "name": "new AdminPostTaxRatesTaxRateReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1997, + "target": 1995, "name": "AdminPostTaxRatesTaxRateReq", "package": "@medusajs/medusa" } @@ -48715,7 +49491,7 @@ ] }, { - "id": 2000, + "id": 1998, "name": "code", "variant": "declaration", "kind": 1024, @@ -48736,7 +49512,7 @@ } }, { - "id": 2001, + "id": 1999, "name": "name", "variant": "declaration", "kind": 1024, @@ -48757,7 +49533,7 @@ } }, { - "id": 2006, + "id": 2004, "name": "product_types", "variant": "declaration", "kind": 1024, @@ -48781,7 +49557,7 @@ } }, { - "id": 2004, + "id": 2002, "name": "products", "variant": "declaration", "kind": 1024, @@ -48805,7 +49581,7 @@ } }, { - "id": 2003, + "id": 2001, "name": "rate", "variant": "declaration", "kind": 1024, @@ -48835,7 +49611,7 @@ } }, { - "id": 2002, + "id": 2000, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -48856,7 +49632,7 @@ } }, { - "id": 2005, + "id": 2003, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -48884,25 +49660,25 @@ { "title": "Constructors", "children": [ - 1998 + 1996 ] }, { "title": "Properties", "children": [ - 2000, - 2001, - 2006, + 1998, + 1999, 2004, - 2003, 2002, - 2005 + 2001, + 2000, + 2003 ] } ] }, { - "id": 1977, + "id": 1975, "name": "AdminPostTaxRatesTaxRateShippingOptionsParams", "variant": "declaration", "kind": 128, @@ -48917,21 +49693,21 @@ }, "children": [ { - "id": 1978, + "id": 1976, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1979, + "id": 1977, "name": "new AdminPostTaxRatesTaxRateShippingOptionsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1977, + "target": 1975, "name": "AdminPostTaxRatesTaxRateShippingOptionsParams", "package": "@medusajs/medusa" } @@ -48939,7 +49715,7 @@ ] }, { - "id": 1980, + "id": 1978, "name": "expand", "variant": "declaration", "kind": 1024, @@ -48963,7 +49739,7 @@ } }, { - "id": 1981, + "id": 1979, "name": "fields", "variant": "declaration", "kind": 1024, @@ -48991,41 +49767,41 @@ { "title": "Constructors", "children": [ - 1978 + 1976 ] }, { "title": "Properties", "children": [ - 1980, - 1981 + 1978, + 1979 ] } ] }, { - "id": 1973, + "id": 1971, "name": "AdminPostTaxRatesTaxRateShippingOptionsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1974, + "id": 1972, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1975, + "id": 1973, "name": "new AdminPostTaxRatesTaxRateShippingOptionsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1973, + "target": 1971, "name": "AdminPostTaxRatesTaxRateShippingOptionsReq", "package": "@medusajs/medusa" } @@ -49033,7 +49809,7 @@ ] }, { - "id": 1976, + "id": 1974, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -49059,40 +49835,40 @@ { "title": "Constructors", "children": [ - 1974 + 1972 ] }, { "title": "Properties", "children": [ - 1976 + 1974 ] } ] }, { - "id": 2028, + "id": 2026, "name": "AdminPostUploadsDownloadUrlReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2029, + "id": 2027, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2030, + "id": 2028, "name": "new AdminPostUploadsDownloadUrlReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2028, + "target": 2026, "name": "AdminPostUploadsDownloadUrlReq", "package": "@medusajs/medusa" } @@ -49100,7 +49876,7 @@ ] }, { - "id": 2031, + "id": 2029, "name": "file_key", "variant": "declaration", "kind": 1024, @@ -49123,40 +49899,40 @@ { "title": "Constructors", "children": [ - 2029 + 2027 ] }, { "title": "Properties", "children": [ - 2031 + 2029 ] } ] }, { - "id": 3932, + "id": 3941, "name": "AdminPriceListPricesCreateReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 3933, + "id": 3942, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 3934, + "id": 3943, "name": "new AdminPriceListPricesCreateReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 3932, + "target": 3941, "name": "AdminPriceListPricesCreateReq", "package": "@medusajs/medusa" } @@ -49164,7 +49940,179 @@ ] }, { - "id": 3937, + "id": 3946, + "name": "amount", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The amount to charge for the Product Variant." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3945, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The 3 character ISO currency code for which the price will be used. This is only required if `region_id` is not provided." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3949, + "name": "max_quantity", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum quantity for which the price will be used." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3948, + "name": "min_quantity", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The minimum quantity for which the price will be used." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3944, + "name": "region_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the Region for which the price is used. This is only required if `currecny_code` is not provided." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3947, + "name": "variant_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the Variant for which the price is used." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Constructors", + "children": [ + 3942 + ] + }, + { + "title": "Properties", + "children": [ + 3946, + 3945, + 3949, + 3948, + 3944, + 3947 + ] + } + ] + }, + { + "id": 3931, + "name": "AdminPriceListPricesUpdateReq", + "variant": "declaration", + "kind": 128, + "flags": {}, + "children": [ + { + "id": 3932, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": {}, + "signatures": [ + { + "id": 3933, + "name": "new AdminPriceListPricesUpdateReq", + "variant": "signature", + "kind": 16384, + "flags": {}, + "type": { + "type": "reference", + "target": 3931, + "name": "AdminPriceListPricesUpdateReq", + "package": "@medusajs/medusa" + } + } + ] + }, + { + "id": 3938, "name": "amount", "variant": "declaration", "kind": 1024, @@ -49203,6 +50151,27 @@ "name": "string" } }, + { + "id": 3934, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the price." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, { "id": 3940, "name": "max_quantity", @@ -49267,7 +50236,7 @@ } }, { - "id": 3938, + "id": 3937, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -49290,218 +50259,25 @@ { "title": "Constructors", "children": [ - 3933 + 3932 ] }, { "title": "Properties", "children": [ - 3937, + 3938, 3936, + 3934, 3940, 3939, 3935, - 3938 + 3937 ] } ] }, { - "id": 3922, - "name": "AdminPriceListPricesUpdateReq", - "variant": "declaration", - "kind": 128, - "flags": {}, - "children": [ - { - "id": 3923, - "name": "constructor", - "variant": "declaration", - "kind": 512, - "flags": {}, - "signatures": [ - { - "id": 3924, - "name": "new AdminPriceListPricesUpdateReq", - "variant": "signature", - "kind": 16384, - "flags": {}, - "type": { - "type": "reference", - "target": 3922, - "name": "AdminPriceListPricesUpdateReq", - "package": "@medusajs/medusa" - } - } - ] - }, - { - "id": 3929, - "name": "amount", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The amount to charge for the Product Variant." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 3927, - "name": "currency_code", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The 3 character ISO currency code for which the price will be used. This is only required if `region_id` is not provided." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3925, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the price." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3931, - "name": "max_quantity", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The maximum quantity for which the price will be used." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 3930, - "name": "min_quantity", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The minimum quantity for which the price will be used." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 3926, - "name": "region_id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the Region for which the price is used. This is only required if `currecny_code` is not provided." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3928, - "name": "variant_id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the Variant for which the price is used." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Constructors", - "children": [ - 3923 - ] - }, - { - "title": "Properties", - "children": [ - 3929, - 3927, - 3925, - 3931, - 3930, - 3926, - 3928 - ] - } - ] - }, - { - "id": 4591, + "id": 4618, "name": "AdminPriceSelectionParams", "variant": "declaration", "kind": 128, @@ -49516,39 +50292,39 @@ }, "children": [ { - "id": 4592, + "id": 4619, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4593, + "id": 4620, "name": "new AdminPriceSelectionParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4591, + "target": 4618, "name": "AdminPriceSelectionParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4610, + "target": 4637, "name": "PriceSelectionParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4609, + "target": 4636, "name": "PriceSelectionParams.constructor" } }, { - "id": 4595, + "id": 4622, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -49569,12 +50345,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4611, + "target": 4638, "name": "PriceSelectionParams.cart_id" } }, { - "id": 4597, + "id": 4624, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -49595,12 +50371,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4613, + "target": 4640, "name": "PriceSelectionParams.currency_code" } }, { - "id": 4594, + "id": 4621, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -49621,7 +50397,7 @@ } }, { - "id": 4598, + "id": 4625, "name": "expand", "variant": "declaration", "kind": 1024, @@ -49642,12 +50418,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4614, + "target": 4641, "name": "PriceSelectionParams.expand" } }, { - "id": 4599, + "id": 4626, "name": "fields", "variant": "declaration", "kind": 1024, @@ -49668,12 +50444,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4615, + "target": 4642, "name": "PriceSelectionParams.fields" } }, { - "id": 4596, + "id": 4623, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -49694,7 +50470,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4612, + "target": 4639, "name": "PriceSelectionParams.region_id" } } @@ -49703,25 +50479,25 @@ { "title": "Constructors", "children": [ - 4592 + 4619 ] }, { "title": "Properties", "children": [ - 4595, - 4597, - 4594, - 4598, - 4599, - 4596 + 4622, + 4624, + 4621, + 4625, + 4626, + 4623 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4608, + "target": 4635, "name": "PriceSelectionParams", "package": "@medusajs/medusa" } @@ -49729,34 +50505,34 @@ "extendedBy": [ { "type": "reference", - "target": 2081, + "target": 2079, "name": "AdminGetVariantsParams" } ] }, { - "id": 4377, + "id": 4404, "name": "AdminProductCategoriesReqBase", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4378, + "id": 4405, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4379, + "id": 4406, "name": "new AdminProductCategoriesReqBase", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4377, + "target": 4404, "name": "AdminProductCategoriesReqBase", "package": "@medusajs/medusa" } @@ -49764,7 +50540,7 @@ ] }, { - "id": 4380, + "id": 4407, "name": "description", "variant": "declaration", "kind": 1024, @@ -49777,7 +50553,7 @@ } }, { - "id": 4381, + "id": 4408, "name": "handle", "variant": "declaration", "kind": 1024, @@ -49790,7 +50566,7 @@ } }, { - "id": 4383, + "id": 4410, "name": "is_active", "variant": "declaration", "kind": 1024, @@ -49803,7 +50579,7 @@ } }, { - "id": 4382, + "id": 4409, "name": "is_internal", "variant": "declaration", "kind": 1024, @@ -49816,7 +50592,7 @@ } }, { - "id": 4384, + "id": 4411, "name": "parent_category_id", "variant": "declaration", "kind": 1024, @@ -49842,56 +50618,56 @@ { "title": "Constructors", "children": [ - 4378 + 4405 ] }, { "title": "Properties", "children": [ - 4380, - 4381, - 4383, - 4382, - 4384 + 4407, + 4408, + 4410, + 4409, + 4411 ] } ], "extendedBy": [ { "type": "reference", - "target": 1181, + "target": 1187, "name": "AdminPostProductCategoriesReq" }, { "type": "reference", - "target": 1196, + "target": 1202, "name": "AdminPostProductCategoriesCategoryReq" } ] }, { - "id": 2047, + "id": 2045, "name": "AdminResetPasswordRequest", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2048, + "id": 2046, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2049, + "id": 2047, "name": "new AdminResetPasswordRequest", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2047, + "target": 2045, "name": "AdminResetPasswordRequest", "package": "@medusajs/medusa" } @@ -49899,7 +50675,7 @@ ] }, { - "id": 2050, + "id": 2048, "name": "email", "variant": "declaration", "kind": 1024, @@ -49920,7 +50696,7 @@ } }, { - "id": 2052, + "id": 2050, "name": "password", "variant": "declaration", "kind": 1024, @@ -49939,7 +50715,7 @@ } }, { - "id": 2051, + "id": 2049, "name": "token", "variant": "declaration", "kind": 1024, @@ -49962,42 +50738,42 @@ { "title": "Constructors", "children": [ - 2048 + 2046 ] }, { "title": "Properties", "children": [ + 2048, 2050, - 2052, - 2051 + 2049 ] } ] }, { - "id": 2053, + "id": 2051, "name": "AdminResetPasswordTokenRequest", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2054, + "id": 2052, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2055, + "id": 2053, "name": "new AdminResetPasswordTokenRequest", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2053, + "target": 2051, "name": "AdminResetPasswordTokenRequest", "package": "@medusajs/medusa" } @@ -50005,7 +50781,7 @@ ] }, { - "id": 2056, + "id": 2054, "name": "email", "variant": "declaration", "kind": 1024, @@ -50028,13 +50804,13 @@ { "title": "Constructors", "children": [ - 2054 + 2052 ] }, { "title": "Properties", "children": [ - 2056 + 2054 ] } ] @@ -50313,28 +51089,28 @@ ] }, { - "id": 2065, + "id": 2063, "name": "AdminUpdateUserRequest", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2066, + "id": 2064, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2067, + "id": 2065, "name": "new AdminUpdateUserRequest", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2065, + "target": 2063, "name": "AdminUpdateUserRequest", "package": "@medusajs/medusa" } @@ -50342,7 +51118,7 @@ ] }, { - "id": 2071, + "id": 2069, "name": "api_token", "variant": "declaration", "kind": 1024, @@ -50363,7 +51139,7 @@ } }, { - "id": 2068, + "id": 2066, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -50384,7 +51160,7 @@ } }, { - "id": 2069, + "id": 2067, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -50405,7 +51181,7 @@ } }, { - "id": 2072, + "id": 2070, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -50441,7 +51217,7 @@ } }, { - "id": 2070, + "id": 2068, "name": "role", "variant": "declaration", "kind": 1024, @@ -50471,17 +51247,17 @@ { "title": "Constructors", "children": [ - 2066 + 2064 ] }, { "title": "Properties", "children": [ - 2071, - 2068, 2069, - 2072, - 2070 + 2066, + 2067, + 2070, + 2068 ] } ] @@ -50522,14 +51298,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 4180, + "target": 4207, "name": "AdminUpsertConditionsReq.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4179, + "target": 4206, "name": "AdminUpsertConditionsReq.constructor" } }, @@ -50566,7 +51342,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4185, + "target": 4212, "name": "AdminUpsertConditionsReq.customer_groups" } }, @@ -50648,7 +51424,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4182, + "target": 4209, "name": "AdminUpsertConditionsReq.product_collections" } }, @@ -50685,7 +51461,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4184, + "target": 4211, "name": "AdminUpsertConditionsReq.product_tags" } }, @@ -50722,7 +51498,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4183, + "target": 4210, "name": "AdminUpsertConditionsReq.product_types" } }, @@ -50759,7 +51535,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4181, + "target": 4208, "name": "AdminUpsertConditionsReq.products" } } @@ -50787,14 +51563,14 @@ "extendedTypes": [ { "type": "reference", - "target": 4178, + "target": 4205, "name": "AdminUpsertConditionsReq", "package": "@medusajs/medusa" } ] }, { - "id": 4178, + "id": 4205, "name": "AdminUpsertConditionsReq", "variant": "declaration", "kind": 128, @@ -50809,21 +51585,21 @@ }, "children": [ { - "id": 4179, + "id": 4206, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4180, + "id": 4207, "name": "new AdminUpsertConditionsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4178, + "target": 4205, "name": "AdminUpsertConditionsReq", "package": "@medusajs/medusa" } @@ -50831,7 +51607,7 @@ ] }, { - "id": 4185, + "id": 4212, "name": "customer_groups", "variant": "declaration", "kind": 1024, @@ -50863,7 +51639,7 @@ } }, { - "id": 4182, + "id": 4209, "name": "product_collections", "variant": "declaration", "kind": 1024, @@ -50895,7 +51671,7 @@ } }, { - "id": 4184, + "id": 4211, "name": "product_tags", "variant": "declaration", "kind": 1024, @@ -50927,7 +51703,7 @@ } }, { - "id": 4183, + "id": 4210, "name": "product_types", "variant": "declaration", "kind": 1024, @@ -50959,7 +51735,7 @@ } }, { - "id": 4181, + "id": 4208, "name": "products", "variant": "declaration", "kind": 1024, @@ -50995,17 +51771,17 @@ { "title": "Constructors", "children": [ - 4179 + 4206 ] }, { "title": "Properties", "children": [ - 4185, - 4182, - 4184, - 4183, - 4181 + 4212, + 4209, + 4211, + 4210, + 4208 ] } ], @@ -51033,7 +51809,7 @@ ] }, { - "id": 4298, + "id": 4325, "name": "CustomShippingOption", "variant": "declaration", "kind": 128, @@ -51048,14 +51824,14 @@ }, "children": [ { - "id": 4299, + "id": 4326, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4300, + "id": 4327, "name": "new CustomShippingOption", "variant": "signature", "kind": 16384, @@ -51070,7 +51846,7 @@ }, "type": { "type": "reference", - "target": 4298, + "target": 4325, "name": "CustomShippingOption", "package": "@medusajs/medusa" } @@ -51078,7 +51854,7 @@ ] }, { - "id": 4301, + "id": 4328, "name": "option_id", "variant": "declaration", "kind": 1024, @@ -51097,7 +51873,7 @@ } }, { - "id": 4302, + "id": 4329, "name": "price", "variant": "declaration", "kind": 1024, @@ -51120,20 +51896,20 @@ { "title": "Constructors", "children": [ - 4299 + 4326 ] }, { "title": "Properties", "children": [ - 4301, - 4302 + 4328, + 4329 ] } ] }, { - "id": 4369, + "id": 4396, "name": "CustomerGroup", "variant": "declaration", "kind": 128, @@ -51148,14 +51924,14 @@ }, "children": [ { - "id": 4370, + "id": 4397, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4371, + "id": 4398, "name": "new CustomerGroup", "variant": "signature", "kind": 16384, @@ -51170,7 +51946,7 @@ }, "type": { "type": "reference", - "target": 4369, + "target": 4396, "name": "CustomerGroup", "package": "@medusajs/medusa" } @@ -51178,7 +51954,7 @@ ] }, { - "id": 4372, + "id": 4399, "name": "id", "variant": "declaration", "kind": 1024, @@ -51201,19 +51977,19 @@ { "title": "Constructors", "children": [ - 4370 + 4397 ] }, { "title": "Properties", "children": [ - 4372 + 4399 ] } ] }, { - "id": 4373, + "id": 4400, "name": "CustomerGroup", "variant": "declaration", "kind": 128, @@ -51228,14 +52004,14 @@ }, "children": [ { - "id": 4374, + "id": 4401, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4375, + "id": 4402, "name": "new CustomerGroup", "variant": "signature", "kind": 16384, @@ -51250,7 +52026,7 @@ }, "type": { "type": "reference", - "target": 4373, + "target": 4400, "name": "CustomerGroup", "package": "@medusajs/medusa" } @@ -51258,7 +52034,7 @@ ] }, { - "id": 4376, + "id": 4403, "name": "id", "variant": "declaration", "kind": 1024, @@ -51281,40 +52057,40 @@ { "title": "Constructors", "children": [ - 4374 + 4401 ] }, { "title": "Properties", "children": [ - 4376 + 4403 ] } ] }, { - "id": 4155, + "id": 4182, "name": "CustomerGroupsBatchCustomer", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4156, + "id": 4183, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4157, + "id": 4184, "name": "new CustomerGroupsBatchCustomer", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4155, + "target": 4182, "name": "CustomerGroupsBatchCustomer", "package": "@medusajs/medusa" } @@ -51322,7 +52098,7 @@ ] }, { - "id": 4158, + "id": 4185, "name": "id", "variant": "declaration", "kind": 1024, @@ -51345,19 +52121,19 @@ { "title": "Constructors", "children": [ - 4156 + 4183 ] }, { "title": "Properties", "children": [ - 4158 + 4185 ] } ] }, { - "id": 3753, + "id": 3762, "name": "DateComparisonOperator", "variant": "declaration", "kind": 128, @@ -51372,21 +52148,21 @@ }, "children": [ { - "id": 3754, + "id": 3763, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 3755, + "id": 3764, "name": "new DateComparisonOperator", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -51394,7 +52170,7 @@ ] }, { - "id": 3757, + "id": 3766, "name": "gt", "variant": "declaration", "kind": 1024, @@ -51420,7 +52196,7 @@ } }, { - "id": 3758, + "id": 3767, "name": "gte", "variant": "declaration", "kind": 1024, @@ -51446,7 +52222,7 @@ } }, { - "id": 3756, + "id": 3765, "name": "lt", "variant": "declaration", "kind": 1024, @@ -51472,7 +52248,7 @@ } }, { - "id": 3759, + "id": 3768, "name": "lte", "variant": "declaration", "kind": 1024, @@ -51502,22 +52278,22 @@ { "title": "Constructors", "children": [ - 3754 + 3763 ] }, { "title": "Properties", "children": [ - 3757, - 3758, - 3756, - 3759 + 3766, + 3767, + 3765, + 3768 ] } ] }, { - "id": 4199, + "id": 4226, "name": "Discount", "variant": "declaration", "kind": 128, @@ -51532,14 +52308,14 @@ }, "children": [ { - "id": 4200, + "id": 4227, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4201, + "id": 4228, "name": "new Discount", "variant": "signature", "kind": 16384, @@ -51554,7 +52330,7 @@ }, "type": { "type": "reference", - "target": 4199, + "target": 4226, "name": "Discount", "package": "@medusajs/medusa" } @@ -51562,7 +52338,7 @@ ] }, { - "id": 4202, + "id": 4229, "name": "code", "variant": "declaration", "kind": 1024, @@ -51585,19 +52361,19 @@ { "title": "Constructors", "children": [ - 4200 + 4227 ] }, { "title": "Properties", "children": [ - 4202 + 4229 ] } ] }, { - "id": 4209, + "id": 4236, "name": "Discount", "variant": "declaration", "kind": 128, @@ -51612,14 +52388,14 @@ }, "children": [ { - "id": 4210, + "id": 4237, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4211, + "id": 4238, "name": "new Discount", "variant": "signature", "kind": 16384, @@ -51634,7 +52410,7 @@ }, "type": { "type": "reference", - "target": 4209, + "target": 4236, "name": "Discount", "package": "@medusajs/medusa" } @@ -51642,7 +52418,7 @@ ] }, { - "id": 4212, + "id": 4239, "name": "code", "variant": "declaration", "kind": 1024, @@ -51665,19 +52441,19 @@ { "title": "Constructors", "children": [ - 4210 + 4237 ] }, { "title": "Properties", "children": [ - 4212 + 4239 ] } ] }, { - "id": 4604, + "id": 4631, "name": "Discount", "variant": "declaration", "kind": 128, @@ -51692,14 +52468,14 @@ }, "children": [ { - "id": 4605, + "id": 4632, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4606, + "id": 4633, "name": "new Discount", "variant": "signature", "kind": 16384, @@ -51714,7 +52490,7 @@ }, "type": { "type": "reference", - "target": 4604, + "target": 4631, "name": "Discount", "package": "@medusajs/medusa" } @@ -51722,7 +52498,7 @@ ] }, { - "id": 4607, + "id": 4634, "name": "code", "variant": "declaration", "kind": 1024, @@ -51745,40 +52521,40 @@ { "title": "Constructors", "children": [ - 4605 + 4632 ] }, { "title": "Properties", "children": [ - 4607 + 4634 ] } ] }, { - "id": 3750, + "id": 3759, "name": "EmptyQueryParams", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 3751, + "id": 3760, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 3752, + "id": 3761, "name": "new EmptyQueryParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 3750, + "target": 3759, "name": "EmptyQueryParams", "package": "@medusajs/medusa" } @@ -51790,34 +52566,34 @@ { "title": "Constructors", "children": [ - 3751 + 3760 ] } ] }, { - "id": 3665, + "id": 3674, "name": "FilterableBatchJobProps", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 3666, + "id": 3675, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 3667, + "id": 3676, "name": "new FilterableBatchJobProps", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 3665, + "target": 3674, "name": "FilterableBatchJobProps", "package": "@medusajs/medusa" } @@ -51825,7 +52601,7 @@ ] }, { - "id": 3672, + "id": 3681, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -51834,13 +52610,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 3671, + "id": 3680, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -51865,7 +52641,7 @@ } }, { - "id": 3668, + "id": 3677, "name": "id", "variant": "declaration", "kind": 1024, @@ -51890,7 +52666,7 @@ } }, { - "id": 3669, + "id": 3678, "name": "status", "variant": "declaration", "kind": 1024, @@ -51901,14 +52677,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3640, + "target": 3649, "name": "BatchJobStatus", "package": "@medusajs/medusa" } } }, { - "id": 3670, + "id": 3679, "name": "type", "variant": "declaration", "kind": 1024, @@ -51924,7 +52700,7 @@ } }, { - "id": 3673, + "id": 3682, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -51933,7 +52709,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -51943,24 +52719,24 @@ { "title": "Constructors", "children": [ - 3666 + 3675 ] }, { "title": "Properties", "children": [ - 3672, - 3671, - 3668, - 3669, - 3670, - 3673 + 3681, + 3680, + 3677, + 3678, + 3679, + 3682 ] } ] }, { - "id": 4159, + "id": 4186, "name": "FilterableCustomerGroupProps", "variant": "declaration", "kind": 128, @@ -51975,21 +52751,21 @@ }, "children": [ { - "id": 4160, + "id": 4187, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4161, + "id": 4188, "name": "new FilterableCustomerGroupProps", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4159, + "target": 4186, "name": "FilterableCustomerGroupProps", "package": "@medusajs/medusa" } @@ -51997,7 +52773,7 @@ ] }, { - "id": 4166, + "id": 4193, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -52022,13 +52798,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 4167, + "id": 4194, "name": "discount_condition_id", "variant": "declaration", "kind": 1024, @@ -52049,7 +52825,7 @@ } }, { - "id": 4162, + "id": 4189, "name": "id", "variant": "declaration", "kind": 1024, @@ -52080,7 +52856,7 @@ }, { "type": "reference", - "target": 3760, + "target": 3769, "name": "StringComparisonOperator", "package": "@medusajs/medusa" } @@ -52088,7 +52864,7 @@ } }, { - "id": 4164, + "id": 4191, "name": "name", "variant": "declaration", "kind": 1024, @@ -52112,7 +52888,7 @@ } }, { - "id": 4163, + "id": 4190, "name": "q", "variant": "declaration", "kind": 1024, @@ -52133,7 +52909,7 @@ } }, { - "id": 4165, + "id": 4192, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -52158,7 +52934,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -52168,18 +52944,18 @@ { "title": "Constructors", "children": [ - 4160 + 4187 ] }, { "title": "Properties", "children": [ - 4166, - 4167, - 4162, - 4164, - 4163, - 4165 + 4193, + 4194, + 4189, + 4191, + 4190, + 4192 ] } ], @@ -52192,7 +52968,7 @@ ] }, { - "id": 3909, + "id": 3918, "name": "FilterablePriceListProps", "variant": "declaration", "kind": 128, @@ -52207,21 +52983,21 @@ }, "children": [ { - "id": 3910, + "id": 3919, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 3911, + "id": 3920, "name": "new FilterablePriceListProps", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 3909, + "target": 3918, "name": "FilterablePriceListProps", "package": "@medusajs/medusa" } @@ -52229,7 +53005,7 @@ ] }, { - "id": 3919, + "id": 3928, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -52254,13 +53030,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 3916, + "id": 3925, "name": "customer_groups", "variant": "declaration", "kind": 1024, @@ -52284,7 +53060,7 @@ } }, { - "id": 3921, + "id": 3930, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -52309,13 +53085,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 3917, + "id": 3926, "name": "description", "variant": "declaration", "kind": 1024, @@ -52336,7 +53112,7 @@ } }, { - "id": 3912, + "id": 3921, "name": "id", "variant": "declaration", "kind": 1024, @@ -52357,7 +53133,7 @@ } }, { - "id": 3915, + "id": 3924, "name": "name", "variant": "declaration", "kind": 1024, @@ -52378,7 +53154,7 @@ } }, { - "id": 3913, + "id": 3922, "name": "q", "variant": "declaration", "kind": 1024, @@ -52399,7 +53175,7 @@ } }, { - "id": 3914, + "id": 3923, "name": "status", "variant": "declaration", "kind": 1024, @@ -52418,14 +53194,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3906, + "target": 3915, "name": "PriceListStatus", "package": "@medusajs/medusa" } } }, { - "id": 3918, + "id": 3927, "name": "type", "variant": "declaration", "kind": 1024, @@ -52444,14 +53220,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3903, + "target": 3912, "name": "PriceListType", "package": "@medusajs/medusa" } } }, { - "id": 3920, + "id": 3929, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -52476,7 +53252,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -52486,35 +53262,35 @@ { "title": "Constructors", "children": [ - 3910 + 3919 ] }, { "title": "Properties", "children": [ - 3919, - 3916, + 3928, + 3925, + 3930, + 3926, 3921, - 3917, - 3912, - 3915, - 3913, - 3914, - 3918, - 3920 + 3924, + 3922, + 3923, + 3927, + 3929 ] } ], "extendedBy": [ { "type": "reference", - "target": 1123, + "target": 1129, "name": "AdminGetPriceListPaginationParams" } ] }, { - "id": 4449, + "id": 4476, "name": "FilterableProductProps", "variant": "declaration", "kind": 128, @@ -52529,21 +53305,21 @@ }, "children": [ { - "id": 4450, + "id": 4477, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4451, + "id": 4478, "name": "new FilterableProductProps", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4449, + "target": 4476, "name": "FilterableProductProps", "package": "@medusajs/medusa" } @@ -52551,7 +53327,7 @@ ] }, { - "id": 4465, + "id": 4492, "name": "category_id", "variant": "declaration", "kind": 1024, @@ -52575,7 +53351,7 @@ } }, { - "id": 4456, + "id": 4483, "name": "collection_id", "variant": "declaration", "kind": 1024, @@ -52599,7 +53375,7 @@ } }, { - "id": 4467, + "id": 4494, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -52624,13 +53400,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 4469, + "id": 4496, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -52655,13 +53431,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 4459, + "id": 4486, "name": "description", "variant": "declaration", "kind": 1024, @@ -52682,7 +53458,7 @@ } }, { - "id": 4464, + "id": 4491, "name": "discount_condition_id", "variant": "declaration", "kind": 1024, @@ -52703,7 +53479,7 @@ } }, { - "id": 4460, + "id": 4487, "name": "handle", "variant": "declaration", "kind": 1024, @@ -52724,7 +53500,7 @@ } }, { - "id": 4452, + "id": 4479, "name": "id", "variant": "declaration", "kind": 1024, @@ -52757,7 +53533,7 @@ } }, { - "id": 4466, + "id": 4493, "name": "include_category_children", "variant": "declaration", "kind": 1024, @@ -52789,7 +53565,7 @@ } }, { - "id": 4461, + "id": 4488, "name": "is_giftcard", "variant": "declaration", "kind": 1024, @@ -52810,7 +53586,7 @@ } }, { - "id": 4455, + "id": 4482, "name": "price_list_id", "variant": "declaration", "kind": 1024, @@ -52834,7 +53610,7 @@ } }, { - "id": 4453, + "id": 4480, "name": "q", "variant": "declaration", "kind": 1024, @@ -52855,7 +53631,7 @@ } }, { - "id": 4463, + "id": 4490, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -52879,7 +53655,7 @@ } }, { - "id": 4454, + "id": 4481, "name": "status", "variant": "declaration", "kind": 1024, @@ -52908,7 +53684,7 @@ } }, { - "id": 4457, + "id": 4484, "name": "tags", "variant": "declaration", "kind": 1024, @@ -52932,7 +53708,7 @@ } }, { - "id": 4458, + "id": 4485, "name": "title", "variant": "declaration", "kind": 1024, @@ -52953,7 +53729,7 @@ } }, { - "id": 4462, + "id": 4489, "name": "type_id", "variant": "declaration", "kind": 1024, @@ -52977,7 +53753,7 @@ } }, { - "id": 4468, + "id": 4495, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -53002,7 +53778,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -53012,43 +53788,43 @@ { "title": "Constructors", "children": [ - 4450 + 4477 ] }, { "title": "Properties", "children": [ - 4465, - 4456, - 4467, - 4469, - 4459, - 4464, - 4460, - 4452, - 4466, - 4461, - 4455, - 4453, - 4463, - 4454, - 4457, - 4458, - 4462, - 4468 + 4492, + 4483, + 4494, + 4496, + 4486, + 4491, + 4487, + 4479, + 4493, + 4488, + 4482, + 4480, + 4490, + 4481, + 4484, + 4485, + 4489, + 4495 ] } ], "extendedBy": [ { "type": "reference", - "target": 1408, + "target": 1407, "name": "AdminGetProductsParams" } ] }, { - "id": 3810, + "id": 3819, "name": "FindPaginationParams", "variant": "declaration", "kind": 128, @@ -53063,21 +53839,21 @@ }, "children": [ { - "id": 3811, + "id": 3820, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 3812, + "id": 3821, "name": "new FindPaginationParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 3810, + "target": 3819, "name": "FindPaginationParams", "package": "@medusajs/medusa" } @@ -53085,7 +53861,7 @@ ] }, { - "id": 3814, + "id": 3823, "name": "limit", "variant": "declaration", "kind": 1024, @@ -53118,7 +53894,7 @@ "defaultValue": "20" }, { - "id": 3813, + "id": 3822, "name": "offset", "variant": "declaration", "kind": 1024, @@ -53155,14 +53931,14 @@ { "title": "Constructors", "children": [ - 3811 + 3820 ] }, { "title": "Properties", "children": [ - 3814, - 3813 + 3823, + 3822 ] } ], @@ -53174,23 +53950,23 @@ }, { "type": "reference", - "target": 1257, + "target": 1263, "name": "AdminGetProductTypesParams" }, { "type": "reference", - "target": 2414, + "target": 2412, "name": "StoreGetProductTagsParams" }, { "type": "reference", - "target": 2432, + "target": 2430, "name": "StoreGetProductTypesParams" } ] }, { - "id": 3805, + "id": 3814, "name": "FindParams", "variant": "declaration", "kind": 128, @@ -53205,21 +53981,21 @@ }, "children": [ { - "id": 3806, + "id": 3815, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 3807, + "id": 3816, "name": "new FindParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -53227,7 +54003,7 @@ ] }, { - "id": 3808, + "id": 3817, "name": "expand", "variant": "declaration", "kind": 1024, @@ -53248,7 +54024,7 @@ } }, { - "id": 3809, + "id": 3818, "name": "fields", "variant": "declaration", "kind": 1024, @@ -53273,14 +54049,14 @@ { "title": "Constructors", "children": [ - 3806 + 3815 ] }, { "title": "Properties", "children": [ - 3808, - 3809 + 3817, + 3818 ] } ], @@ -53507,99 +54283,104 @@ }, { "type": "reference", - "target": 1162, + "target": 1168, "name": "AdminGetProductCategoryParams" }, { "type": "reference", - "target": 1191, + "target": 1197, "name": "AdminPostProductCategoriesParams" }, { "type": "reference", - "target": 1207, + "target": 1213, "name": "AdminPostProductCategoriesCategoryParams" }, { "type": "reference", - "target": 1216, + "target": 1222, "name": "AdminPostProductCategoriesCategoryProductsBatchParams" }, { "type": "reference", - "target": 1225, + "target": 1231, "name": "AdminDeleteProductCategoriesCategoryProductsBatchParams" }, { "type": "reference", - "target": 1398, + "target": 1402, "name": "AdminGetProductParams" }, { "type": "reference", - "target": 1833, + "target": 1831, "name": "AdminPostStockLocationsParams" }, { "type": "reference", - "target": 1838, + "target": 1836, "name": "AdminGetStockLocationsLocationParams" }, { "type": "reference", - "target": 1862, + "target": 1860, "name": "AdminPostStockLocationsLocationParams" }, { "type": "reference", - "target": 2096, + "target": 2094, "name": "AdminGetVariantParams" }, { "type": "reference", - "target": 2336, + "target": 2334, "name": "StoreGetOrdersParams" }, { "type": "reference", - "target": 2359, + "target": 2357, "name": "StoreGetPaymentCollectionsParams" }, { "type": "reference", - "target": 2391, + "target": 2389, "name": "StoreGetProductCategoriesCategoryParams" }, { "type": "reference", - "target": 4608, + "target": 2539, + "name": "StoreGetRegionsRegionParams" + }, + { + "type": "reference", + "target": 4635, "name": "PriceSelectionParams" } ] }, { - "id": 1551, + "id": 1550, "name": "FulfillmentOption", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1552, + "id": 1551, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1553, + "id": 1552, "name": "new FulfillmentOption", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1551, + "target": 1550, "name": "FulfillmentOption", "package": "@medusajs/medusa" } @@ -53607,7 +54388,7 @@ ] }, { - "id": 1555, + "id": 1554, "name": "options", "variant": "declaration", "kind": 1024, @@ -53629,7 +54410,7 @@ } }, { - "id": 1554, + "id": 1553, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -53652,14 +54433,14 @@ { "title": "Constructors", "children": [ - 1552 + 1551 ] }, { "title": "Properties", "children": [ - 1555, - 1554 + 1554, + 1553 ] } ] @@ -53700,14 +54481,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -53733,7 +54514,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -53759,7 +54540,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -53782,7 +54563,7 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -54049,7 +54830,7 @@ "types": [ { "type": "reference", - "target": 3805, + "target": 3814, "typeArguments": [ { "type": "intrinsic", @@ -54061,7 +54842,7 @@ }, { "type": "reference", - "target": 3810, + "target": 3819, "typeArguments": [ { "type": "intrinsic", @@ -54111,14 +54892,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, @@ -54144,7 +54925,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, @@ -54170,7 +54951,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -54193,14 +54974,14 @@ "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 1525, + "id": 1524, "name": "GetPublishableApiKeySalesChannelsParams", "variant": "declaration", "kind": 128, @@ -54215,21 +54996,21 @@ }, "children": [ { - "id": 1526, + "id": 1525, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1527, + "id": 1526, "name": "new GetPublishableApiKeySalesChannelsParams", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 1528, + "id": 1527, "name": "args", "variant": "param", "kind": 32768, @@ -54247,7 +55028,7 @@ ], "type": { "type": "reference", - "target": 1525, + "target": 1524, "name": "GetPublishableApiKeySalesChannelsParams", "package": "@medusajs/medusa" }, @@ -54265,7 +55046,7 @@ } }, { - "id": 1530, + "id": 1529, "name": "expand", "variant": "declaration", "kind": 1024, @@ -54291,7 +55072,7 @@ } }, { - "id": 1531, + "id": 1530, "name": "fields", "variant": "declaration", "kind": 1024, @@ -54317,7 +55098,7 @@ } }, { - "id": 1533, + "id": 1532, "name": "limit", "variant": "declaration", "kind": 1024, @@ -54355,7 +55136,7 @@ } }, { - "id": 1532, + "id": 1531, "name": "offset", "variant": "declaration", "kind": 1024, @@ -54393,7 +55174,7 @@ } }, { - "id": 1529, + "id": 1528, "name": "q", "variant": "declaration", "kind": 1024, @@ -54418,17 +55199,17 @@ { "title": "Constructors", "children": [ - 1526 + 1525 ] }, { "title": "Properties", "children": [ + 1529, 1530, - 1531, - 1533, 1532, - 1529 + 1531, + 1528 ] } ], @@ -54438,7 +55219,7 @@ "types": [ { "type": "reference", - "target": 3805, + "target": 3814, "typeArguments": [ { "type": "intrinsic", @@ -54450,7 +55231,7 @@ }, { "type": "reference", - "target": 3810, + "target": 3819, "typeArguments": [ { "type": "intrinsic", @@ -54465,7 +55246,7 @@ ] }, { - "id": 1516, + "id": 1515, "name": "GetPublishableApiKeysParams", "variant": "declaration", "kind": 128, @@ -54480,21 +55261,21 @@ }, "children": [ { - "id": 1517, + "id": 1516, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1518, + "id": 1517, "name": "new GetPublishableApiKeysParams", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 1519, + "id": 1518, "name": "args", "variant": "param", "kind": 32768, @@ -54512,7 +55293,7 @@ ], "type": { "type": "reference", - "target": 1516, + "target": 1515, "name": "GetPublishableApiKeysParams", "package": "@medusajs/medusa" }, @@ -54530,7 +55311,7 @@ } }, { - "id": 1521, + "id": 1520, "name": "expand", "variant": "declaration", "kind": 1024, @@ -54556,7 +55337,7 @@ } }, { - "id": 1522, + "id": 1521, "name": "fields", "variant": "declaration", "kind": 1024, @@ -54582,7 +55363,7 @@ } }, { - "id": 1524, + "id": 1523, "name": "limit", "variant": "declaration", "kind": 1024, @@ -54620,7 +55401,7 @@ } }, { - "id": 1523, + "id": 1522, "name": "offset", "variant": "declaration", "kind": 1024, @@ -54658,7 +55439,7 @@ } }, { - "id": 1520, + "id": 1519, "name": "q", "variant": "declaration", "kind": 1024, @@ -54683,17 +55464,17 @@ { "title": "Constructors", "children": [ - 1517 + 1516 ] }, { "title": "Properties", "children": [ + 1520, 1521, - 1522, - 1524, 1523, - 1520 + 1522, + 1519 ] } ], @@ -54703,7 +55484,7 @@ "types": [ { "type": "reference", - "target": 3805, + "target": 3814, "typeArguments": [ { "type": "intrinsic", @@ -54715,7 +55496,7 @@ }, { "type": "reference", - "target": 3810, + "target": 3819, "typeArguments": [ { "type": "intrinsic", @@ -54730,7 +55511,7 @@ ] }, { - "id": 4600, + "id": 4627, "name": "GiftCard", "variant": "declaration", "kind": 128, @@ -54745,14 +55526,14 @@ }, "children": [ { - "id": 4601, + "id": 4628, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4602, + "id": 4629, "name": "new GiftCard", "variant": "signature", "kind": 16384, @@ -54767,7 +55548,7 @@ }, "type": { "type": "reference", - "target": 4600, + "target": 4627, "name": "GiftCard", "package": "@medusajs/medusa" } @@ -54775,7 +55556,7 @@ ] }, { - "id": 4603, + "id": 4630, "name": "code", "variant": "declaration", "kind": 1024, @@ -54798,40 +55579,40 @@ { "title": "Constructors", "children": [ - 4601 + 4628 ] }, { "title": "Properties", "children": [ - 4603 + 4630 ] } ] }, { - "id": 4174, + "id": 4201, "name": "Group", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4175, + "id": 4202, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4176, + "id": 4203, "name": "new Group", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4174, + "target": 4201, "name": "Group", "package": "@medusajs/medusa" } @@ -54839,7 +55620,7 @@ ] }, { - "id": 4177, + "id": 4204, "name": "id", "variant": "declaration", "kind": 1024, @@ -54862,40 +55643,40 @@ { "title": "Constructors", "children": [ - 4175 + 4202 ] }, { "title": "Properties", "children": [ - 4177 + 4204 ] } ] }, { - "id": 2019, + "id": 2017, "name": "IAdminPostUploadsFileReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2020, + "id": 2018, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2021, + "id": 2019, "name": "new IAdminPostUploadsFileReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2019, + "target": 2017, "name": "IAdminPostUploadsFileReq", "package": "@medusajs/medusa" } @@ -54903,7 +55684,7 @@ ] }, { - "id": 2022, + "id": 2020, "name": "originalName", "variant": "declaration", "kind": 1024, @@ -54914,7 +55695,7 @@ } }, { - "id": 2023, + "id": 2021, "name": "path", "variant": "declaration", "kind": 1024, @@ -54929,20 +55710,20 @@ { "title": "Constructors", "children": [ - 2020 + 2018 ] }, { "title": "Properties", "children": [ - 2022, - 2023 + 2020, + 2021 ] } ] }, { - "id": 4806, + "id": 4861, "name": "Image", "variant": "declaration", "kind": 128, @@ -54957,14 +55738,14 @@ }, "children": [ { - "id": 4807, + "id": 4862, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4808, + "id": 4863, "name": "new Image", "variant": "signature", "kind": 16384, @@ -54979,7 +55760,7 @@ }, "type": { "type": "reference", - "target": 4806, + "target": 4861, "name": "Image", "package": "@medusajs/medusa" } @@ -54987,7 +55768,7 @@ ] }, { - "id": 4809, + "id": 4864, "name": "id", "variant": "declaration", "kind": 1024, @@ -55008,7 +55789,7 @@ } }, { - "id": 4810, + "id": 4865, "name": "url", "variant": "declaration", "kind": 1024, @@ -55033,41 +55814,41 @@ { "title": "Constructors", "children": [ - 4807 + 4862 ] }, { "title": "Properties", "children": [ - 4809, - 4810 + 4864, + 4865 ] } ] }, { - "id": 2153, + "id": 2151, "name": "Item", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2154, + "id": 2152, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2155, + "id": 2153, "name": "new Item", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2153, + "target": 2151, "name": "Item", "package": "@medusajs/medusa" } @@ -55075,7 +55856,7 @@ ] }, { - "id": 2157, + "id": 2155, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -55094,7 +55875,7 @@ } }, { - "id": 2156, + "id": 2154, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -55117,41 +55898,41 @@ { "title": "Constructors", "children": [ - 2154 + 2152 ] }, { "title": "Properties", "children": [ - 2157, - 2156 + 2155, + 2154 ] } ] }, { - "id": 4191, + "id": 4218, "name": "Item", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4192, + "id": 4219, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4193, + "id": 4220, "name": "new Item", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4191, + "target": 4218, "name": "Item", "package": "@medusajs/medusa" } @@ -55159,7 +55940,7 @@ ] }, { - "id": 4198, + "id": 4225, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -55196,7 +55977,7 @@ "defaultValue": "{}" }, { - "id": 4197, + "id": 4224, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -55215,7 +55996,7 @@ } }, { - "id": 4194, + "id": 4221, "name": "title", "variant": "declaration", "kind": 1024, @@ -55236,7 +56017,7 @@ } }, { - "id": 4195, + "id": 4222, "name": "unit_price", "variant": "declaration", "kind": 1024, @@ -55257,7 +56038,7 @@ } }, { - "id": 4196, + "id": 4223, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -55282,44 +56063,44 @@ { "title": "Constructors", "children": [ - 4192 + 4219 ] }, { "title": "Properties", "children": [ - 4198, - 4197, - 4194, - 4195, - 4196 + 4225, + 4224, + 4221, + 4222, + 4223 ] } ] }, { - "id": 4250, + "id": 4277, "name": "Item", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4251, + "id": 4278, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4252, + "id": 4279, "name": "new Item", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4250, + "target": 4277, "name": "Item", "package": "@medusajs/medusa" } @@ -55327,7 +56108,7 @@ ] }, { - "id": 4258, + "id": 4285, "name": "images", "variant": "declaration", "kind": 1024, @@ -55351,7 +56132,7 @@ } }, { - "id": 4253, + "id": 4280, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -55370,7 +56151,7 @@ } }, { - "id": 4255, + "id": 4282, "name": "note", "variant": "declaration", "kind": 1024, @@ -55391,7 +56172,7 @@ } }, { - "id": 4254, + "id": 4281, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -55410,7 +56191,7 @@ } }, { - "id": 4256, + "id": 4283, "name": "reason", "variant": "declaration", "kind": 1024, @@ -55436,7 +56217,7 @@ } }, { - "id": 4257, + "id": 4284, "name": "tags", "variant": "declaration", "kind": 1024, @@ -55464,45 +56245,45 @@ { "title": "Constructors", "children": [ - 4251 + 4278 ] }, { "title": "Properties", "children": [ - 4258, - 4253, - 4255, - 4254, - 4256, - 4257 + 4285, + 4280, + 4282, + 4281, + 4283, + 4284 ] } ] }, { - "id": 4276, + "id": 4303, "name": "Item", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4277, + "id": 4304, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4278, + "id": 4305, "name": "new Item", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4276, + "target": 4303, "name": "Item", "package": "@medusajs/medusa" } @@ -55510,7 +56291,7 @@ ] }, { - "id": 4279, + "id": 4306, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -55529,7 +56310,7 @@ } }, { - "id": 4280, + "id": 4307, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -55552,41 +56333,41 @@ { "title": "Constructors", "children": [ - 4277 + 4304 ] }, { "title": "Properties", "children": [ - 4279, - 4280 + 4306, + 4307 ] } ] }, { - "id": 4334, + "id": 4361, "name": "Item", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4335, + "id": 4362, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4336, + "id": 4363, "name": "new Item", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4334, + "target": 4361, "name": "Item", "package": "@medusajs/medusa" } @@ -55594,7 +56375,7 @@ ] }, { - "id": 4337, + "id": 4364, "name": "id", "variant": "declaration", "kind": 1024, @@ -55613,7 +56394,7 @@ } }, { - "id": 4340, + "id": 4367, "name": "images", "variant": "declaration", "kind": 1024, @@ -55630,14 +56411,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4806, + "target": 4861, "name": "Image", "package": "@medusajs/medusa" } } }, { - "id": 4342, + "id": 4369, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -55673,7 +56454,7 @@ } }, { - "id": 4338, + "id": 4365, "name": "note", "variant": "declaration", "kind": 1024, @@ -55694,7 +56475,7 @@ } }, { - "id": 4339, + "id": 4366, "name": "reason", "variant": "declaration", "kind": 1024, @@ -55715,7 +56496,7 @@ } }, { - "id": 4341, + "id": 4368, "name": "tags", "variant": "declaration", "kind": 1024, @@ -55732,7 +56513,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4811, + "target": 4866, "name": "Tag", "package": "@medusajs/medusa" } @@ -55743,45 +56524,45 @@ { "title": "Constructors", "children": [ - 4335 + 4362 ] }, { "title": "Properties", "children": [ - 4337, - 4340, - 4342, - 4338, - 4339, - 4341 + 4364, + 4367, + 4369, + 4365, + 4366, + 4368 ] } ] }, { - "id": 4511, + "id": 4538, "name": "Item", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4512, + "id": 4539, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4513, + "id": 4540, "name": "new Item", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4511, + "target": 4538, "name": "Item", "package": "@medusajs/medusa" } @@ -55789,7 +56570,7 @@ ] }, { - "id": 4514, + "id": 4541, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -55808,7 +56589,7 @@ } }, { - "id": 4515, + "id": 4542, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -55831,41 +56612,41 @@ { "title": "Constructors", "children": [ - 4512 + 4539 ] }, { "title": "Properties", "children": [ - 4514, - 4515 + 4541, + 4542 ] } ] }, { - "id": 4616, + "id": 4643, "name": "Item", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4617, + "id": 4644, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4618, + "id": 4645, "name": "new Item", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4616, + "target": 4643, "name": "Item", "package": "@medusajs/medusa" } @@ -55873,7 +56654,7 @@ ] }, { - "id": 4619, + "id": 4646, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -55892,7 +56673,7 @@ } }, { - "id": 4622, + "id": 4649, "name": "note", "variant": "declaration", "kind": 1024, @@ -55913,7 +56694,7 @@ } }, { - "id": 4620, + "id": 4647, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -55932,7 +56713,7 @@ } }, { - "id": 4621, + "id": 4648, "name": "reason_id", "variant": "declaration", "kind": 1024, @@ -55957,43 +56738,43 @@ { "title": "Constructors", "children": [ - 4617 + 4644 ] }, { "title": "Properties", "children": [ - 4619, - 4622, - 4620, - 4621 + 4646, + 4649, + 4647, + 4648 ] } ] }, { - "id": 4628, + "id": 4655, "name": "Item", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4629, + "id": 4656, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4630, + "id": 4657, "name": "new Item", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4628, + "target": 4655, "name": "Item", "package": "@medusajs/medusa" } @@ -56001,7 +56782,7 @@ ] }, { - "id": 4631, + "id": 4658, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -56020,7 +56801,7 @@ } }, { - "id": 4634, + "id": 4661, "name": "note", "variant": "declaration", "kind": 1024, @@ -56041,7 +56822,7 @@ } }, { - "id": 4632, + "id": 4659, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -56060,7 +56841,7 @@ } }, { - "id": 4633, + "id": 4660, "name": "reason_id", "variant": "declaration", "kind": 1024, @@ -56085,22 +56866,22 @@ { "title": "Constructors", "children": [ - 4629 + 4656 ] }, { "title": "Properties", "children": [ - 4631, - 4634, - 4632, - 4633 + 4658, + 4661, + 4659, + 4660 ] } ] }, { - "id": 4640, + "id": 4667, "name": "MedusaError", "variant": "declaration", "kind": 128, @@ -56115,14 +56896,14 @@ }, "children": [ { - "id": 4657, + "id": 4684, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4658, + "id": 4685, "name": "new MedusaError", "variant": "signature", "kind": 16384, @@ -56137,7 +56918,7 @@ }, "parameters": [ { - "id": 4659, + "id": 4686, "name": "type", "variant": "param", "kind": 32768, @@ -56156,7 +56937,7 @@ } }, { - "id": 4660, + "id": 4687, "name": "message", "variant": "param", "kind": 32768, @@ -56175,7 +56956,7 @@ } }, { - "id": 4661, + "id": 4688, "name": "code", "variant": "param", "kind": 32768, @@ -56196,7 +56977,7 @@ } }, { - "id": 4662, + "id": 4689, "name": "params", "variant": "param", "kind": 32768, @@ -56219,7 +57000,7 @@ ], "type": { "type": "reference", - "target": 4640, + "target": 4667, "name": "MedusaError", "package": "medusa-core-utils" }, @@ -56237,7 +57018,7 @@ } }, { - "id": 4665, + "id": 4692, "name": "code", "variant": "declaration", "kind": 1024, @@ -56250,7 +57031,7 @@ } }, { - "id": 4666, + "id": 4693, "name": "date", "variant": "declaration", "kind": 1024, @@ -56266,7 +57047,7 @@ } }, { - "id": 4664, + "id": 4691, "name": "message", "variant": "declaration", "kind": 1024, @@ -56282,7 +57063,7 @@ } }, { - "id": 4663, + "id": 4690, "name": "type", "variant": "declaration", "kind": 1024, @@ -56293,7 +57074,7 @@ } }, { - "id": 4653, + "id": 4680, "name": "Codes", "variant": "declaration", "kind": 1024, @@ -56303,14 +57084,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4654, + "id": 4681, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4656, + "id": 4683, "name": "CART_INCOMPATIBLE_STATE", "variant": "declaration", "kind": 1024, @@ -56321,7 +57102,7 @@ } }, { - "id": 4655, + "id": 4682, "name": "INSUFFICIENT_INVENTORY", "variant": "declaration", "kind": 1024, @@ -56336,8 +57117,8 @@ { "title": "Properties", "children": [ - 4656, - 4655 + 4683, + 4682 ] } ] @@ -56345,7 +57126,7 @@ } }, { - "id": 4641, + "id": 4668, "name": "Types", "variant": "declaration", "kind": 1024, @@ -56355,14 +57136,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4642, + "id": 4669, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4651, + "id": 4678, "name": "CONFLICT", "variant": "declaration", "kind": 1024, @@ -56373,7 +57154,7 @@ } }, { - "id": 4643, + "id": 4670, "name": "DB_ERROR", "variant": "declaration", "kind": 1024, @@ -56392,7 +57173,7 @@ } }, { - "id": 4644, + "id": 4671, "name": "DUPLICATE_ERROR", "variant": "declaration", "kind": 1024, @@ -56403,7 +57184,7 @@ } }, { - "id": 4645, + "id": 4672, "name": "INVALID_ARGUMENT", "variant": "declaration", "kind": 1024, @@ -56414,7 +57195,7 @@ } }, { - "id": 4646, + "id": 4673, "name": "INVALID_DATA", "variant": "declaration", "kind": 1024, @@ -56425,7 +57206,7 @@ } }, { - "id": 4649, + "id": 4676, "name": "NOT_ALLOWED", "variant": "declaration", "kind": 1024, @@ -56436,7 +57217,7 @@ } }, { - "id": 4648, + "id": 4675, "name": "NOT_FOUND", "variant": "declaration", "kind": 1024, @@ -56447,7 +57228,7 @@ } }, { - "id": 4652, + "id": 4679, "name": "PAYMENT_AUTHORIZATION_ERROR", "variant": "declaration", "kind": 1024, @@ -56458,7 +57239,7 @@ } }, { - "id": 4647, + "id": 4674, "name": "UNAUTHORIZED", "variant": "declaration", "kind": 1024, @@ -56469,7 +57250,7 @@ } }, { - "id": 4650, + "id": 4677, "name": "UNEXPECTED_STATE", "variant": "declaration", "kind": 1024, @@ -56484,16 +57265,16 @@ { "title": "Properties", "children": [ - 4651, - 4643, - 4644, - 4645, - 4646, - 4649, - 4648, - 4652, - 4647, - 4650 + 4678, + 4670, + 4671, + 4672, + 4673, + 4676, + 4675, + 4679, + 4674, + 4677 ] } ] @@ -56505,18 +57286,18 @@ { "title": "Constructors", "children": [ - 4657 + 4684 ] }, { "title": "Properties", "children": [ - 4665, - 4666, - 4664, - 4663, - 4653, - 4641 + 4692, + 4693, + 4691, + 4690, + 4680, + 4668 ] } ], @@ -56533,7 +57314,7 @@ ] }, { - "id": 3770, + "id": 3779, "name": "NumericalComparisonOperator", "variant": "declaration", "kind": 128, @@ -56548,21 +57329,21 @@ }, "children": [ { - "id": 3771, + "id": 3780, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 3772, + "id": 3781, "name": "new NumericalComparisonOperator", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 3770, + "target": 3779, "name": "NumericalComparisonOperator", "package": "@medusajs/medusa" } @@ -56570,7 +57351,7 @@ ] }, { - "id": 3774, + "id": 3783, "name": "gt", "variant": "declaration", "kind": 1024, @@ -56591,7 +57372,7 @@ } }, { - "id": 3775, + "id": 3784, "name": "gte", "variant": "declaration", "kind": 1024, @@ -56612,7 +57393,7 @@ } }, { - "id": 3773, + "id": 3782, "name": "lt", "variant": "declaration", "kind": 1024, @@ -56633,7 +57414,7 @@ } }, { - "id": 3776, + "id": 3785, "name": "lte", "variant": "declaration", "kind": 1024, @@ -56658,43 +57439,43 @@ { "title": "Constructors", "children": [ - 3771 + 3780 ] }, { "title": "Properties", "children": [ - 3774, - 3775, - 3773, - 3776 + 3783, + 3784, + 3782, + 3785 ] } ] }, { - "id": 4529, + "id": 4556, "name": "OptionRequirement", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4530, + "id": 4557, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4531, + "id": 4558, "name": "new OptionRequirement", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4529, + "target": 4556, "name": "OptionRequirement", "package": "@medusajs/medusa" } @@ -56702,7 +57483,7 @@ ] }, { - "id": 4533, + "id": 4560, "name": "amount", "variant": "declaration", "kind": 1024, @@ -56721,7 +57502,7 @@ } }, { - "id": 4532, + "id": 4559, "name": "type", "variant": "declaration", "kind": 1024, @@ -56735,8 +57516,13 @@ ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa/src/models/shipping-option-requirement.ts", + "qualifiedName": "RequirementType" + }, + "name": "RequirementType", + "package": "@medusajs/medusa" } } ], @@ -56744,41 +57530,41 @@ { "title": "Constructors", "children": [ - 4530 + 4557 ] }, { "title": "Properties", "children": [ - 4533, - 4532 + 4560, + 4559 ] } ] }, { - "id": 4534, + "id": 4561, "name": "OptionRequirement", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4535, + "id": 4562, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4536, + "id": 4563, "name": "new OptionRequirement", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4534, + "target": 4561, "name": "OptionRequirement", "package": "@medusajs/medusa" } @@ -56786,7 +57572,7 @@ ] }, { - "id": 4539, + "id": 4566, "name": "amount", "variant": "declaration", "kind": 1024, @@ -56805,7 +57591,7 @@ } }, { - "id": 4537, + "id": 4564, "name": "id", "variant": "declaration", "kind": 1024, @@ -56824,7 +57610,7 @@ } }, { - "id": 4538, + "id": 4565, "name": "type", "variant": "declaration", "kind": 1024, @@ -56847,42 +57633,42 @@ { "title": "Constructors", "children": [ - 4535 + 4562 ] }, { "title": "Properties", "children": [ - 4539, - 4537, - 4538 + 4566, + 4564, + 4565 ] } ] }, { - "id": 4322, + "id": 4349, "name": "OrdersReturnItem", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4323, + "id": 4350, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4324, + "id": 4351, "name": "new OrdersReturnItem", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4322, + "target": 4349, "name": "OrdersReturnItem", "package": "@medusajs/medusa" } @@ -56890,7 +57676,7 @@ ] }, { - "id": 4325, + "id": 4352, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -56909,7 +57695,7 @@ } }, { - "id": 4328, + "id": 4355, "name": "note", "variant": "declaration", "kind": 1024, @@ -56930,7 +57716,7 @@ } }, { - "id": 4326, + "id": 4353, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -56949,7 +57735,7 @@ } }, { - "id": 4327, + "id": 4354, "name": "reason_id", "variant": "declaration", "kind": 1024, @@ -56974,22 +57760,22 @@ { "title": "Constructors", "children": [ - 4323 + 4350 ] }, { "title": "Properties", "children": [ - 4325, - 4328, - 4326, - 4327 + 4352, + 4355, + 4353, + 4354 ] } ] }, { - "id": 4350, + "id": 4377, "name": "PaymentMethod", "variant": "declaration", "kind": 128, @@ -57004,21 +57790,21 @@ }, "children": [ { - "id": 4351, + "id": 4378, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4352, + "id": 4379, "name": "new PaymentMethod", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4350, + "target": 4377, "name": "PaymentMethod", "package": "@medusajs/medusa" } @@ -57026,7 +57812,7 @@ ] }, { - "id": 4354, + "id": 4381, "name": "data", "variant": "declaration", "kind": 1024, @@ -57062,7 +57848,7 @@ } }, { - "id": 4353, + "id": 4380, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -57087,20 +57873,20 @@ { "title": "Constructors", "children": [ - 4351 + 4378 ] }, { "title": "Properties", "children": [ - 4354, - 4353 + 4381, + 4380 ] } ] }, { - "id": 4608, + "id": 4635, "name": "PriceSelectionParams", "variant": "declaration", "kind": 128, @@ -57115,39 +57901,39 @@ }, "children": [ { - "id": 4609, + "id": 4636, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4610, + "id": 4637, "name": "new PriceSelectionParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4608, + "target": 4635, "name": "PriceSelectionParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 4611, + "id": 4638, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -57168,7 +57954,7 @@ } }, { - "id": 4613, + "id": 4640, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -57189,7 +57975,7 @@ } }, { - "id": 4614, + "id": 4641, "name": "expand", "variant": "declaration", "kind": 1024, @@ -57210,12 +57996,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 4615, + "id": 4642, "name": "fields", "variant": "declaration", "kind": 1024, @@ -57236,12 +58022,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } }, { - "id": 4612, + "id": 4639, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -57266,24 +58052,24 @@ { "title": "Constructors", "children": [ - 4609 + 4636 ] }, { "title": "Properties", "children": [ - 4611, - 4613, - 4614, - 4615, - 4612 + 4638, + 4640, + 4641, + 4642, + 4639 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } @@ -57291,49 +58077,49 @@ "extendedBy": [ { "type": "reference", - "target": 2487, + "target": 2488, "name": "StoreGetProductsPaginationParams" }, { "type": "reference", - "target": 2592, + "target": 2603, "name": "StoreGetVariantsVariantParams" }, { "type": "reference", - "target": 2601, + "target": 2612, "name": "StoreGetVariantsParams" }, { "type": "reference", - "target": 4591, + "target": 4618, "name": "AdminPriceSelectionParams" } ] }, { - "id": 4385, + "id": 4412, "name": "ProductBatchProductCategory", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4386, + "id": 4413, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4387, + "id": 4414, "name": "new ProductBatchProductCategory", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4385, + "target": 4412, "name": "ProductBatchProductCategory", "package": "@medusajs/medusa" } @@ -57341,7 +58127,7 @@ ] }, { - "id": 4388, + "id": 4415, "name": "id", "variant": "declaration", "kind": 1024, @@ -57364,40 +58150,40 @@ { "title": "Constructors", "children": [ - 4386 + 4413 ] }, { "title": "Properties", "children": [ - 4388 + 4415 ] } ] }, { - "id": 4507, + "id": 4534, "name": "ProductBatchSalesChannel", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4508, + "id": 4535, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4509, + "id": 4536, "name": "new ProductBatchSalesChannel", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4507, + "target": 4534, "name": "ProductBatchSalesChannel", "package": "@medusajs/medusa" } @@ -57405,7 +58191,7 @@ ] }, { - "id": 4510, + "id": 4537, "name": "id", "variant": "declaration", "kind": 1024, @@ -57428,40 +58214,40 @@ { "title": "Constructors", "children": [ - 4508 + 4535 ] }, { "title": "Properties", "children": [ - 4510 + 4537 ] } ] }, { - "id": 4410, + "id": 4437, "name": "ProductOptionReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4411, + "id": 4438, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4412, + "id": 4439, "name": "new ProductOptionReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4410, + "target": 4437, "name": "ProductOptionReq", "package": "@medusajs/medusa" } @@ -57469,7 +58255,7 @@ ] }, { - "id": 4413, + "id": 4440, "name": "title", "variant": "declaration", "kind": 1024, @@ -57492,40 +58278,40 @@ { "title": "Constructors", "children": [ - 4411 + 4438 ] }, { "title": "Properties", "children": [ - 4413 + 4440 ] } ] }, { - "id": 4406, + "id": 4433, "name": "ProductProductCategoryReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4407, + "id": 4434, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4408, + "id": 4435, "name": "new ProductProductCategoryReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4406, + "target": 4433, "name": "ProductProductCategoryReq", "package": "@medusajs/medusa" } @@ -57533,7 +58319,7 @@ ] }, { - "id": 4409, + "id": 4436, "name": "id", "variant": "declaration", "kind": 1024, @@ -57556,40 +58342,40 @@ { "title": "Constructors", "children": [ - 4407 + 4434 ] }, { "title": "Properties", "children": [ - 4409 + 4436 ] } ] }, { - "id": 4402, + "id": 4429, "name": "ProductSalesChannelReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4403, + "id": 4430, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4404, + "id": 4431, "name": "new ProductSalesChannelReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4402, + "target": 4429, "name": "ProductSalesChannelReq", "package": "@medusajs/medusa" } @@ -57597,7 +58383,7 @@ ] }, { - "id": 4405, + "id": 4432, "name": "id", "variant": "declaration", "kind": 1024, @@ -57620,40 +58406,40 @@ { "title": "Constructors", "children": [ - 4403 + 4430 ] }, { "title": "Properties", "children": [ - 4405 + 4432 ] } ] }, { - "id": 4397, + "id": 4424, "name": "ProductTagReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4398, + "id": 4425, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4399, + "id": 4426, "name": "new ProductTagReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4397, + "target": 4424, "name": "ProductTagReq", "package": "@medusajs/medusa" } @@ -57661,7 +58447,7 @@ ] }, { - "id": 4400, + "id": 4427, "name": "id", "variant": "declaration", "kind": 1024, @@ -57682,7 +58468,7 @@ } }, { - "id": 4401, + "id": 4428, "name": "value", "variant": "declaration", "kind": 1024, @@ -57705,20 +58491,20 @@ { "title": "Constructors", "children": [ - 4398 + 4425 ] }, { "title": "Properties", "children": [ - 4400, - 4401 + 4427, + 4428 ] } ] }, { - "id": 4392, + "id": 4419, "name": "ProductTypeReq", "variant": "declaration", "kind": 128, @@ -57733,21 +58519,21 @@ }, "children": [ { - "id": 4393, + "id": 4420, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4394, + "id": 4421, "name": "new ProductTypeReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4392, + "target": 4419, "name": "ProductTypeReq", "package": "@medusajs/medusa" } @@ -57755,7 +58541,7 @@ ] }, { - "id": 4395, + "id": 4422, "name": "id", "variant": "declaration", "kind": 1024, @@ -57776,7 +58562,7 @@ } }, { - "id": 4396, + "id": 4423, "name": "value", "variant": "declaration", "kind": 1024, @@ -57799,41 +58585,41 @@ { "title": "Constructors", "children": [ - 4393 + 4420 ] }, { "title": "Properties", "children": [ - 4395, - 4396 + 4422, + 4423 ] } ] }, { - "id": 4444, + "id": 4471, "name": "ProductVariantOptionReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4445, + "id": 4472, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4446, + "id": 4473, "name": "new ProductVariantOptionReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4444, + "target": 4471, "name": "ProductVariantOptionReq", "package": "@medusajs/medusa" } @@ -57841,7 +58627,7 @@ ] }, { - "id": 4448, + "id": 4475, "name": "option_id", "variant": "declaration", "kind": 1024, @@ -57860,7 +58646,7 @@ } }, { - "id": 4447, + "id": 4474, "name": "value", "variant": "declaration", "kind": 1024, @@ -57883,41 +58669,41 @@ { "title": "Constructors", "children": [ - 4445 + 4472 ] }, { "title": "Properties", "children": [ - 4448, - 4447 + 4475, + 4474 ] } ] }, { - "id": 4502, + "id": 4529, "name": "ProductVariantOptionReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4503, + "id": 4530, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4504, + "id": 4531, "name": "new ProductVariantOptionReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4502, + "target": 4529, "name": "ProductVariantOptionReq", "package": "@medusajs/medusa" } @@ -57925,7 +58711,7 @@ ] }, { - "id": 4506, + "id": 4533, "name": "option_id", "variant": "declaration", "kind": 1024, @@ -57944,7 +58730,7 @@ } }, { - "id": 4505, + "id": 4532, "name": "value", "variant": "declaration", "kind": 1024, @@ -57967,41 +58753,41 @@ { "title": "Constructors", "children": [ - 4503 + 4530 ] }, { "title": "Properties", "children": [ - 4506, - 4505 + 4533, + 4532 ] } ] }, { - "id": 4816, + "id": 4871, "name": "ProductVariantOptionReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4817, + "id": 4872, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4818, + "id": 4873, "name": "new ProductVariantOptionReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4816, + "target": 4871, "name": "ProductVariantOptionReq", "package": "@medusajs/medusa" } @@ -58009,7 +58795,7 @@ ] }, { - "id": 4819, + "id": 4874, "name": "value", "variant": "declaration", "kind": 1024, @@ -58032,40 +58818,40 @@ { "title": "Constructors", "children": [ - 4817 + 4872 ] }, { "title": "Properties", "children": [ - 4819 + 4874 ] } ] }, { - "id": 4820, + "id": 4875, "name": "ProductVariantOptionReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4821, + "id": 4876, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4822, + "id": 4877, "name": "new ProductVariantOptionReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4820, + "target": 4875, "name": "ProductVariantOptionReq", "package": "@medusajs/medusa" } @@ -58073,7 +58859,7 @@ ] }, { - "id": 4824, + "id": 4879, "name": "option_id", "variant": "declaration", "kind": 1024, @@ -58092,7 +58878,7 @@ } }, { - "id": 4823, + "id": 4878, "name": "value", "variant": "declaration", "kind": 1024, @@ -58115,41 +58901,41 @@ { "title": "Constructors", "children": [ - 4821 + 4876 ] }, { "title": "Properties", "children": [ - 4824, - 4823 + 4879, + 4878 ] } ] }, { - "id": 4436, + "id": 4463, "name": "ProductVariantPricesCreateReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4437, + "id": 4464, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4438, + "id": 4465, "name": "new ProductVariantPricesCreateReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4436, + "target": 4463, "name": "ProductVariantPricesCreateReq", "package": "@medusajs/medusa" } @@ -58157,7 +58943,7 @@ ] }, { - "id": 4441, + "id": 4468, "name": "amount", "variant": "declaration", "kind": 1024, @@ -58176,7 +58962,7 @@ } }, { - "id": 4440, + "id": 4467, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -58197,7 +58983,7 @@ } }, { - "id": 4443, + "id": 4470, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -58218,7 +59004,7 @@ } }, { - "id": 4442, + "id": 4469, "name": "min_quantity", "variant": "declaration", "kind": 1024, @@ -58239,7 +59025,7 @@ } }, { - "id": 4439, + "id": 4466, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -58264,44 +59050,44 @@ { "title": "Constructors", "children": [ - 4437 + 4464 ] }, { "title": "Properties", "children": [ - 4441, - 4440, - 4443, - 4442, - 4439 + 4468, + 4467, + 4470, + 4469, + 4466 ] } ] }, { - "id": 4493, + "id": 4520, "name": "ProductVariantPricesUpdateReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4494, + "id": 4521, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4495, + "id": 4522, "name": "new ProductVariantPricesUpdateReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4493, + "target": 4520, "name": "ProductVariantPricesUpdateReq", "package": "@medusajs/medusa" } @@ -58309,7 +59095,7 @@ ] }, { - "id": 4499, + "id": 4526, "name": "amount", "variant": "declaration", "kind": 1024, @@ -58328,7 +59114,7 @@ } }, { - "id": 4498, + "id": 4525, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -58349,7 +59135,7 @@ } }, { - "id": 4496, + "id": 4523, "name": "id", "variant": "declaration", "kind": 1024, @@ -58370,7 +59156,7 @@ } }, { - "id": 4501, + "id": 4528, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -58391,7 +59177,7 @@ } }, { - "id": 4500, + "id": 4527, "name": "min_quantity", "variant": "declaration", "kind": 1024, @@ -58412,7 +59198,7 @@ } }, { - "id": 4497, + "id": 4524, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -58437,45 +59223,45 @@ { "title": "Constructors", "children": [ - 4494 + 4521 ] }, { "title": "Properties", "children": [ - 4499, - 4498, - 4496, - 4501, - 4500, - 4497 + 4526, + 4525, + 4523, + 4528, + 4527, + 4524 ] } ] }, { - "id": 4414, + "id": 4441, "name": "ProductVariantReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4415, + "id": 4442, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4416, + "id": 4443, "name": "new ProductVariantReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4414, + "target": 4441, "name": "ProductVariantReq", "package": "@medusajs/medusa" } @@ -58483,7 +59269,7 @@ ] }, { - "id": 4424, + "id": 4451, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -58504,7 +59290,7 @@ } }, { - "id": 4421, + "id": 4448, "name": "barcode", "variant": "declaration", "kind": 1024, @@ -58525,7 +59311,7 @@ } }, { - "id": 4419, + "id": 4446, "name": "ean", "variant": "declaration", "kind": 1024, @@ -58546,7 +59332,7 @@ } }, { - "id": 4428, + "id": 4455, "name": "height", "variant": "declaration", "kind": 1024, @@ -58567,7 +59353,7 @@ } }, { - "id": 4422, + "id": 4449, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -58588,7 +59374,7 @@ } }, { - "id": 4423, + "id": 4450, "name": "inventory_quantity", "variant": "declaration", "kind": 1024, @@ -58610,7 +59396,7 @@ "defaultValue": "0" }, { - "id": 4427, + "id": 4454, "name": "length", "variant": "declaration", "kind": 1024, @@ -58631,7 +59417,7 @@ } }, { - "id": 4425, + "id": 4452, "name": "manage_inventory", "variant": "declaration", "kind": 1024, @@ -58652,7 +59438,7 @@ } }, { - "id": 4432, + "id": 4459, "name": "material", "variant": "declaration", "kind": 1024, @@ -58673,7 +59459,7 @@ } }, { - "id": 4433, + "id": 4460, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -58709,7 +59495,7 @@ } }, { - "id": 4431, + "id": 4458, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -58730,7 +59516,7 @@ } }, { - "id": 4435, + "id": 4462, "name": "options", "variant": "declaration", "kind": 1024, @@ -58749,7 +59535,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4816, + "target": 4871, "name": "ProductVariantOptionReq", "package": "@medusajs/medusa" } @@ -58757,7 +59543,7 @@ "defaultValue": "[]" }, { - "id": 4430, + "id": 4457, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -58778,7 +59564,7 @@ } }, { - "id": 4434, + "id": 4461, "name": "prices", "variant": "declaration", "kind": 1024, @@ -58795,14 +59581,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4436, + "target": 4463, "name": "ProductVariantPricesCreateReq", "package": "@medusajs/medusa" } } }, { - "id": 4418, + "id": 4445, "name": "sku", "variant": "declaration", "kind": 1024, @@ -58823,7 +59609,7 @@ } }, { - "id": 4417, + "id": 4444, "name": "title", "variant": "declaration", "kind": 1024, @@ -58842,7 +59628,7 @@ } }, { - "id": 4420, + "id": 4447, "name": "upc", "variant": "declaration", "kind": 1024, @@ -58863,7 +59649,7 @@ } }, { - "id": 4426, + "id": 4453, "name": "weight", "variant": "declaration", "kind": 1024, @@ -58884,7 +59670,7 @@ } }, { - "id": 4429, + "id": 4456, "name": "width", "variant": "declaration", "kind": 1024, @@ -58909,58 +59695,58 @@ { "title": "Constructors", "children": [ - 4415 + 4442 ] }, { "title": "Properties", "children": [ - 4424, - 4421, - 4419, - 4428, - 4422, - 4423, - 4427, - 4425, - 4432, - 4433, - 4431, - 4435, - 4430, - 4434, - 4418, - 4417, - 4420, - 4426, - 4429 + 4451, + 4448, + 4446, + 4455, + 4449, + 4450, + 4454, + 4452, + 4459, + 4460, + 4458, + 4462, + 4457, + 4461, + 4445, + 4444, + 4447, + 4453, + 4456 ] } ] }, { - "id": 4470, + "id": 4497, "name": "ProductVariantReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4471, + "id": 4498, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4472, + "id": 4499, "name": "new ProductVariantReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4470, + "target": 4497, "name": "ProductVariantReq", "package": "@medusajs/medusa" } @@ -58968,7 +59754,7 @@ ] }, { - "id": 4481, + "id": 4508, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -58989,7 +59775,7 @@ } }, { - "id": 4478, + "id": 4505, "name": "barcode", "variant": "declaration", "kind": 1024, @@ -59010,7 +59796,7 @@ } }, { - "id": 4476, + "id": 4503, "name": "ean", "variant": "declaration", "kind": 1024, @@ -59031,7 +59817,7 @@ } }, { - "id": 4485, + "id": 4512, "name": "height", "variant": "declaration", "kind": 1024, @@ -59052,7 +59838,7 @@ } }, { - "id": 4479, + "id": 4506, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -59073,7 +59859,7 @@ } }, { - "id": 4473, + "id": 4500, "name": "id", "variant": "declaration", "kind": 1024, @@ -59094,7 +59880,7 @@ } }, { - "id": 4480, + "id": 4507, "name": "inventory_quantity", "variant": "declaration", "kind": 1024, @@ -59115,7 +59901,7 @@ } }, { - "id": 4484, + "id": 4511, "name": "length", "variant": "declaration", "kind": 1024, @@ -59136,7 +59922,7 @@ } }, { - "id": 4482, + "id": 4509, "name": "manage_inventory", "variant": "declaration", "kind": 1024, @@ -59157,7 +59943,7 @@ } }, { - "id": 4489, + "id": 4516, "name": "material", "variant": "declaration", "kind": 1024, @@ -59178,7 +59964,7 @@ } }, { - "id": 4490, + "id": 4517, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -59214,7 +60000,7 @@ } }, { - "id": 4488, + "id": 4515, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -59235,7 +60021,7 @@ } }, { - "id": 4492, + "id": 4519, "name": "options", "variant": "declaration", "kind": 1024, @@ -59254,7 +60040,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4820, + "target": 4875, "name": "ProductVariantOptionReq", "package": "@medusajs/medusa" } @@ -59262,7 +60048,7 @@ "defaultValue": "[]" }, { - "id": 4487, + "id": 4514, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -59283,7 +60069,7 @@ } }, { - "id": 4491, + "id": 4518, "name": "prices", "variant": "declaration", "kind": 1024, @@ -59302,14 +60088,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4493, + "target": 4520, "name": "ProductVariantPricesUpdateReq", "package": "@medusajs/medusa" } } }, { - "id": 4475, + "id": 4502, "name": "sku", "variant": "declaration", "kind": 1024, @@ -59330,7 +60116,7 @@ } }, { - "id": 4474, + "id": 4501, "name": "title", "variant": "declaration", "kind": 1024, @@ -59351,7 +60137,7 @@ } }, { - "id": 4477, + "id": 4504, "name": "upc", "variant": "declaration", "kind": 1024, @@ -59372,7 +60158,7 @@ } }, { - "id": 4483, + "id": 4510, "name": "weight", "variant": "declaration", "kind": 1024, @@ -59393,7 +60179,7 @@ } }, { - "id": 4486, + "id": 4513, "name": "width", "variant": "declaration", "kind": 1024, @@ -59418,38 +60204,38 @@ { "title": "Constructors", "children": [ - 4471 + 4498 ] }, { "title": "Properties", "children": [ - 4481, - 4478, - 4476, - 4485, - 4479, - 4473, - 4480, - 4484, - 4482, - 4489, - 4490, - 4488, - 4492, - 4487, - 4491, - 4475, - 4474, - 4477, - 4483, - 4486 + 4508, + 4505, + 4503, + 4512, + 4506, + 4500, + 4507, + 4511, + 4509, + 4516, + 4517, + 4515, + 4519, + 4514, + 4518, + 4502, + 4501, + 4504, + 4510, + 4513 ] } ] }, { - "id": 4281, + "id": 4308, "name": "ReturnItem", "variant": "declaration", "kind": 128, @@ -59464,14 +60250,14 @@ }, "children": [ { - "id": 4282, + "id": 4309, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4283, + "id": 4310, "name": "new ReturnItem", "variant": "signature", "kind": 16384, @@ -59486,7 +60272,7 @@ }, "type": { "type": "reference", - "target": 4281, + "target": 4308, "name": "ReturnItem", "package": "@medusajs/medusa" } @@ -59494,7 +60280,7 @@ ] }, { - "id": 4284, + "id": 4311, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -59513,7 +60299,7 @@ } }, { - "id": 4287, + "id": 4314, "name": "note", "variant": "declaration", "kind": 1024, @@ -59534,7 +60320,7 @@ } }, { - "id": 4285, + "id": 4312, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -59553,7 +60339,7 @@ } }, { - "id": 4286, + "id": 4313, "name": "reason_id", "variant": "declaration", "kind": 1024, @@ -59578,22 +60364,22 @@ { "title": "Constructors", "children": [ - 4282 + 4309 ] }, { "title": "Properties", "children": [ - 4284, - 4287, - 4285, - 4286 + 4311, + 4314, + 4312, + 4313 ] } ] }, { - "id": 4259, + "id": 4286, "name": "ReturnShipping", "variant": "declaration", "kind": 128, @@ -59608,129 +60394,35 @@ }, "children": [ { - "id": 4260, + "id": 4287, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4261, + "id": 4288, "name": "new ReturnShipping", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4259, + "target": 4286, "name": "ReturnShipping", "package": "@medusajs/medusa" } } ] }, - { - "id": 4262, - "name": "option_id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the shipping option used for the return." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 4263, - "name": "price", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The shipping method's price." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Constructors", - "children": [ - 4260 - ] - }, - { - "title": "Properties", - "children": [ - 4262, - 4263 - ] - } - ] - }, - { - "id": 4288, - "name": "ReturnShipping", - "variant": "declaration", - "kind": 128, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The return's shipping method details." - } - ] - }, - "children": [ { "id": 4289, - "name": "constructor", - "variant": "declaration", - "kind": 512, - "flags": {}, - "signatures": [ - { - "id": 4290, - "name": "new ReturnShipping", - "variant": "signature", - "kind": 16384, - "flags": {}, - "type": { - "type": "reference", - "target": 4288, - "name": "ReturnShipping", - "package": "@medusajs/medusa" - } - } - ] - }, - { - "id": 4291, "name": "option_id", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { @@ -59745,7 +60437,7 @@ } }, { - "id": 4292, + "id": 4290, "name": "price", "variant": "declaration", "kind": 1024, @@ -59770,20 +60462,20 @@ { "title": "Constructors", "children": [ - 4289 + 4287 ] }, { "title": "Properties", "children": [ - 4291, - 4292 + 4289, + 4290 ] } ] }, { - "id": 4329, + "id": 4315, "name": "ReturnShipping", "variant": "declaration", "kind": 128, @@ -59798,21 +60490,21 @@ }, "children": [ { - "id": 4330, + "id": 4316, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4331, + "id": 4317, "name": "new ReturnShipping", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4329, + "target": 4315, "name": "ReturnShipping", "package": "@medusajs/medusa" } @@ -59820,13 +60512,11 @@ ] }, { - "id": 4332, + "id": 4318, "name": "option_id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { @@ -59841,7 +60531,7 @@ } }, { - "id": 4333, + "id": 4319, "name": "price", "variant": "declaration", "kind": 1024, @@ -59866,41 +60556,49 @@ { "title": "Constructors", "children": [ - 4330 + 4316 ] }, { "title": "Properties", "children": [ - 4332, - 4333 + 4318, + 4319 ] } ] }, { - "id": 4623, + "id": 4356, "name": "ReturnShipping", "variant": "declaration", "kind": 128, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The return's shipping method details." + } + ] + }, "children": [ { - "id": 4624, + "id": 4357, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4625, + "id": 4358, "name": "new ReturnShipping", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4623, + "target": 4356, "name": "ReturnShipping", "package": "@medusajs/medusa" } @@ -59908,7 +60606,95 @@ ] }, { - "id": 4626, + "id": 4359, + "name": "option_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the shipping option used for the return." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 4360, + "name": "price", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The shipping method's price." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Constructors", + "children": [ + 4357 + ] + }, + { + "title": "Properties", + "children": [ + 4359, + 4360 + ] + } + ] + }, + { + "id": 4650, + "name": "ReturnShipping", + "variant": "declaration", + "kind": 128, + "flags": {}, + "children": [ + { + "id": 4651, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": {}, + "signatures": [ + { + "id": 4652, + "name": "new ReturnShipping", + "variant": "signature", + "kind": 16384, + "flags": {}, + "type": { + "type": "reference", + "target": 4650, + "name": "ReturnShipping", + "package": "@medusajs/medusa" + } + } + ] + }, + { + "id": 4653, "name": "option_id", "variant": "declaration", "kind": 1024, @@ -59931,19 +60717,19 @@ { "title": "Constructors", "children": [ - 4624 + 4651 ] }, { "title": "Properties", "children": [ - 4626 + 4653 ] } ] }, { - "id": 2332, + "id": 2330, "name": "ShippingAddressPayload", "variant": "declaration", "kind": 128, @@ -59958,21 +60744,21 @@ }, "children": [ { - "id": 2333, + "id": 2331, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2334, + "id": 2332, "name": "new ShippingAddressPayload", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2332, + "target": 2330, "name": "ShippingAddressPayload", "package": "@medusajs/medusa" } @@ -59980,7 +60766,7 @@ ] }, { - "id": 2335, + "id": 2333, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -60005,19 +60791,19 @@ { "title": "Constructors", "children": [ - 2333 + 2331 ] }, { "title": "Properties", "children": [ - 2335 + 2333 ] } ] }, { - "id": 4203, + "id": 4230, "name": "ShippingMethod", "variant": "declaration", "kind": 128, @@ -60032,14 +60818,14 @@ }, "children": [ { - "id": 4204, + "id": 4231, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4205, + "id": 4232, "name": "new ShippingMethod", "variant": "signature", "kind": 16384, @@ -60054,7 +60840,7 @@ }, "type": { "type": "reference", - "target": 4203, + "target": 4230, "name": "ShippingMethod", "package": "@medusajs/medusa" } @@ -60062,7 +60848,7 @@ ] }, { - "id": 4207, + "id": 4234, "name": "data", "variant": "declaration", "kind": 1024, @@ -60099,7 +60885,7 @@ "defaultValue": "{}" }, { - "id": 4206, + "id": 4233, "name": "option_id", "variant": "declaration", "kind": 1024, @@ -60118,7 +60904,7 @@ } }, { - "id": 4208, + "id": 4235, "name": "price", "variant": "declaration", "kind": 1024, @@ -60143,21 +60929,21 @@ { "title": "Constructors", "children": [ - 4204 + 4231 ] }, { "title": "Properties", "children": [ - 4207, - 4206, - 4208 + 4234, + 4233, + 4235 ] } ] }, { - "id": 4269, + "id": 4296, "name": "ShippingMethod", "variant": "declaration", "kind": 128, @@ -60172,14 +60958,14 @@ }, "children": [ { - "id": 4270, + "id": 4297, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4271, + "id": 4298, "name": "new ShippingMethod", "variant": "signature", "kind": 16384, @@ -60194,7 +60980,7 @@ }, "type": { "type": "reference", - "target": 4269, + "target": 4296, "name": "ShippingMethod", "package": "@medusajs/medusa" } @@ -60202,7 +60988,7 @@ ] }, { - "id": 4275, + "id": 4302, "name": "data", "variant": "declaration", "kind": 1024, @@ -60238,7 +61024,7 @@ } }, { - "id": 4272, + "id": 4299, "name": "id", "variant": "declaration", "kind": 1024, @@ -60259,7 +61045,7 @@ } }, { - "id": 4273, + "id": 4300, "name": "option_id", "variant": "declaration", "kind": 1024, @@ -60280,7 +61066,7 @@ } }, { - "id": 4274, + "id": 4301, "name": "price", "variant": "declaration", "kind": 1024, @@ -60305,22 +61091,22 @@ { "title": "Constructors", "children": [ - 4270 + 4297 ] }, { "title": "Properties", "children": [ - 4275, - 4272, - 4273, - 4274 + 4302, + 4299, + 4300, + 4301 ] } ] }, { - "id": 4343, + "id": 4370, "name": "ShippingMethod", "variant": "declaration", "kind": 128, @@ -60335,14 +61121,14 @@ }, "children": [ { - "id": 4344, + "id": 4371, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4345, + "id": 4372, "name": "new ShippingMethod", "variant": "signature", "kind": 16384, @@ -60357,7 +61143,7 @@ }, "type": { "type": "reference", - "target": 4343, + "target": 4370, "name": "ShippingMethod", "package": "@medusajs/medusa" } @@ -60365,7 +61151,7 @@ ] }, { - "id": 4349, + "id": 4376, "name": "data", "variant": "declaration", "kind": 1024, @@ -60401,7 +61187,7 @@ } }, { - "id": 4346, + "id": 4373, "name": "id", "variant": "declaration", "kind": 1024, @@ -60422,7 +61208,7 @@ } }, { - "id": 4347, + "id": 4374, "name": "option_id", "variant": "declaration", "kind": 1024, @@ -60443,7 +61229,7 @@ } }, { - "id": 4348, + "id": 4375, "name": "price", "variant": "declaration", "kind": 1024, @@ -60468,22 +61254,22 @@ { "title": "Constructors", "children": [ - 4344 + 4371 ] }, { "title": "Properties", "children": [ - 4349, - 4346, - 4347, - 4348 + 4376, + 4373, + 4374, + 4375 ] } ] }, { - "id": 4355, + "id": 4382, "name": "ShippingMethod", "variant": "declaration", "kind": 128, @@ -60498,14 +61284,14 @@ }, "children": [ { - "id": 4356, + "id": 4383, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4357, + "id": 4384, "name": "new ShippingMethod", "variant": "signature", "kind": 16384, @@ -60520,7 +61306,7 @@ }, "type": { "type": "reference", - "target": 4355, + "target": 4382, "name": "ShippingMethod", "package": "@medusajs/medusa" } @@ -60528,7 +61314,7 @@ ] }, { - "id": 4361, + "id": 4388, "name": "data", "variant": "declaration", "kind": 1024, @@ -60564,7 +61350,7 @@ } }, { - "id": 4362, + "id": 4389, "name": "items", "variant": "declaration", "kind": 1024, @@ -60603,7 +61389,7 @@ } }, { - "id": 4360, + "id": 4387, "name": "price", "variant": "declaration", "kind": 1024, @@ -60624,7 +61410,7 @@ } }, { - "id": 4359, + "id": 4386, "name": "profile_id", "variant": "declaration", "kind": 1024, @@ -60645,7 +61431,7 @@ } }, { - "id": 4358, + "id": 4385, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -60670,44 +61456,44 @@ { "title": "Constructors", "children": [ - 4356 + 4383 ] }, { "title": "Properties", "children": [ - 4361, - 4362, - 4360, - 4359, - 4358 + 4388, + 4389, + 4387, + 4386, + 4385 ] } ] }, { - "id": 4558, + "id": 4585, "name": "StockLocationAddress", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4559, + "id": 4586, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4560, + "id": 4587, "name": "new StockLocationAddress", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4558, + "target": 4585, "name": "StockLocationAddress", "package": "@medusajs/medusa" } @@ -60715,7 +61501,7 @@ ] }, { - "id": 4561, + "id": 4588, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -60734,7 +61520,7 @@ } }, { - "id": 4562, + "id": 4589, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -60755,7 +61541,7 @@ } }, { - "id": 4564, + "id": 4591, "name": "city", "variant": "declaration", "kind": 1024, @@ -60776,7 +61562,7 @@ } }, { - "id": 4563, + "id": 4590, "name": "company", "variant": "declaration", "kind": 1024, @@ -60797,7 +61583,7 @@ } }, { - "id": 4565, + "id": 4592, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -60816,7 +61602,7 @@ } }, { - "id": 4566, + "id": 4593, "name": "phone", "variant": "declaration", "kind": 1024, @@ -60837,7 +61623,7 @@ } }, { - "id": 4567, + "id": 4594, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -60858,7 +61644,7 @@ } }, { - "id": 4568, + "id": 4595, "name": "province", "variant": "declaration", "kind": 1024, @@ -60883,26 +61669,26 @@ { "title": "Constructors", "children": [ - 4559 + 4586 ] }, { "title": "Properties", "children": [ - 4561, - 4562, - 4564, - 4563, - 4565, - 4566, - 4567, - 4568 + 4588, + 4589, + 4591, + 4590, + 4592, + 4593, + 4594, + 4595 ] } ] }, { - "id": 4569, + "id": 4596, "name": "StockLocationAddress", "variant": "declaration", "kind": 128, @@ -60917,21 +61703,21 @@ }, "children": [ { - "id": 4570, + "id": 4597, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4571, + "id": 4598, "name": "new StockLocationAddress", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4569, + "target": 4596, "name": "StockLocationAddress", "package": "@medusajs/medusa" } @@ -60939,7 +61725,7 @@ ] }, { - "id": 4572, + "id": 4599, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -60958,7 +61744,7 @@ } }, { - "id": 4573, + "id": 4600, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -60979,7 +61765,7 @@ } }, { - "id": 4575, + "id": 4602, "name": "city", "variant": "declaration", "kind": 1024, @@ -61000,7 +61786,7 @@ } }, { - "id": 4574, + "id": 4601, "name": "company", "variant": "declaration", "kind": 1024, @@ -61021,7 +61807,7 @@ } }, { - "id": 4576, + "id": 4603, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -61040,7 +61826,7 @@ } }, { - "id": 4577, + "id": 4604, "name": "phone", "variant": "declaration", "kind": 1024, @@ -61061,7 +61847,7 @@ } }, { - "id": 4578, + "id": 4605, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -61082,7 +61868,7 @@ } }, { - "id": 4579, + "id": 4606, "name": "province", "variant": "declaration", "kind": 1024, @@ -61107,26 +61893,26 @@ { "title": "Constructors", "children": [ - 4570 + 4597 ] }, { "title": "Properties", "children": [ - 4572, - 4573, - 4575, - 4574, - 4576, - 4577, - 4578, - 4579 + 4599, + 4600, + 4602, + 4601, + 4603, + 4604, + 4605, + 4606 ] } ] }, { - "id": 2206, + "id": 2204, "name": "StoreGetCollectionsParams", "variant": "declaration", "kind": 128, @@ -61141,21 +61927,21 @@ }, "children": [ { - "id": 2207, + "id": 2205, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2208, + "id": 2206, "name": "new StoreGetCollectionsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2206, + "target": 2204, "name": "StoreGetCollectionsParams", "package": "@medusajs/medusa" } @@ -61163,7 +61949,7 @@ ] }, { - "id": 2212, + "id": 2210, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -61188,13 +61974,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 2209, + "id": 2207, "name": "handle", "variant": "declaration", "kind": 1024, @@ -61218,7 +62004,7 @@ } }, { - "id": 2210, + "id": 2208, "name": "limit", "variant": "declaration", "kind": 1024, @@ -61251,7 +62037,7 @@ "defaultValue": "10" }, { - "id": 2211, + "id": 2209, "name": "offset", "variant": "declaration", "kind": 1024, @@ -61284,7 +62070,7 @@ "defaultValue": "0" }, { - "id": 2213, + "id": 2211, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -61309,7 +62095,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -61319,23 +62105,23 @@ { "title": "Constructors", "children": [ - 2207 + 2205 ] }, { "title": "Properties", "children": [ - 2212, - 2209, 2210, - 2211, - 2213 + 2207, + 2208, + 2209, + 2211 ] } ] }, { - "id": 2245, + "id": 2243, "name": "StoreGetCustomersCustomerOrdersPaginationParams", "variant": "declaration", "kind": 128, @@ -61350,21 +62136,21 @@ }, "children": [ { - "id": 2246, + "id": 2244, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2247, + "id": 2245, "name": "new StoreGetCustomersCustomerOrdersPaginationParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2245, + "target": 2243, "name": "StoreGetCustomersCustomerOrdersPaginationParams", "package": "@medusajs/medusa" } @@ -61372,7 +62158,7 @@ ] }, { - "id": 2251, + "id": 2249, "name": "expand", "variant": "declaration", "kind": 1024, @@ -61393,7 +62179,7 @@ } }, { - "id": 2250, + "id": 2248, "name": "fields", "variant": "declaration", "kind": 1024, @@ -61414,7 +62200,7 @@ } }, { - "id": 2248, + "id": 2246, "name": "limit", "variant": "declaration", "kind": 1024, @@ -61445,7 +62231,7 @@ "defaultValue": "10" }, { - "id": 2249, + "id": 2247, "name": "offset", "variant": "declaration", "kind": 1024, @@ -61480,29 +62266,29 @@ { "title": "Constructors", "children": [ - 2246 + 2244 ] }, { "title": "Properties", "children": [ - 2251, - 2250, + 2249, 2248, - 2249 + 2246, + 2247 ] } ], "extendedBy": [ { "type": "reference", - "target": 2252, + "target": 2250, "name": "StoreGetCustomersCustomerOrdersParams" } ] }, { - "id": 2252, + "id": 2250, "name": "StoreGetCustomersCustomerOrdersParams", "variant": "declaration", "kind": 128, @@ -61517,39 +62303,39 @@ }, "children": [ { - "id": 2253, + "id": 2251, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2254, + "id": 2252, "name": "new StoreGetCustomersCustomerOrdersParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2252, + "target": 2250, "name": "StoreGetCustomersCustomerOrdersParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 2247, + "target": 2245, "name": "StoreGetCustomersCustomerOrdersPaginationParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 2246, + "target": 2244, "name": "StoreGetCustomersCustomerOrdersPaginationParams.constructor" } }, { - "id": 2268, + "id": 2266, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -61574,13 +62360,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 2261, + "id": 2259, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -61601,7 +62387,7 @@ } }, { - "id": 2266, + "id": 2264, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -61626,13 +62412,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 2264, + "id": 2262, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -61653,7 +62439,7 @@ } }, { - "id": 2260, + "id": 2258, "name": "display_id", "variant": "declaration", "kind": 1024, @@ -61674,7 +62460,7 @@ } }, { - "id": 2262, + "id": 2260, "name": "email", "variant": "declaration", "kind": 1024, @@ -61695,7 +62481,7 @@ } }, { - "id": 2272, + "id": 2270, "name": "expand", "variant": "declaration", "kind": 1024, @@ -61716,12 +62502,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2251, + "target": 2249, "name": "StoreGetCustomersCustomerOrdersPaginationParams.expand" } }, { - "id": 2271, + "id": 2269, "name": "fields", "variant": "declaration", "kind": 1024, @@ -61742,12 +62528,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2250, + "target": 2248, "name": "StoreGetCustomersCustomerOrdersPaginationParams.fields" } }, { - "id": 2258, + "id": 2256, "name": "fulfillment_status", "variant": "declaration", "kind": 1024, @@ -61776,7 +62562,7 @@ } }, { - "id": 2255, + "id": 2253, "name": "id", "variant": "declaration", "kind": 1024, @@ -61797,7 +62583,7 @@ } }, { - "id": 2269, + "id": 2267, "name": "limit", "variant": "declaration", "kind": 1024, @@ -61828,12 +62614,12 @@ "defaultValue": "10", "inheritedFrom": { "type": "reference", - "target": 2248, + "target": 2246, "name": "StoreGetCustomersCustomerOrdersPaginationParams.limit" } }, { - "id": 2270, + "id": 2268, "name": "offset", "variant": "declaration", "kind": 1024, @@ -61864,12 +62650,12 @@ "defaultValue": "0", "inheritedFrom": { "type": "reference", - "target": 2249, + "target": 2247, "name": "StoreGetCustomersCustomerOrdersPaginationParams.offset" } }, { - "id": 2259, + "id": 2257, "name": "payment_status", "variant": "declaration", "kind": 1024, @@ -61898,7 +62684,7 @@ } }, { - "id": 2256, + "id": 2254, "name": "q", "variant": "declaration", "kind": 1024, @@ -61919,7 +62705,7 @@ } }, { - "id": 2263, + "id": 2261, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -61940,7 +62726,7 @@ } }, { - "id": 2257, + "id": 2255, "name": "status", "variant": "declaration", "kind": 1024, @@ -61969,7 +62755,7 @@ } }, { - "id": 2265, + "id": 2263, "name": "tax_rate", "variant": "declaration", "kind": 1024, @@ -61990,7 +62776,7 @@ } }, { - "id": 2267, + "id": 2265, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -62015,7 +62801,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -62025,44 +62811,44 @@ { "title": "Constructors", "children": [ - 2253 + 2251 ] }, { "title": "Properties", "children": [ - 2268, - 2261, 2266, - 2264, - 2260, - 2262, - 2272, - 2271, - 2258, - 2255, - 2269, - 2270, 2259, + 2264, + 2262, + 2258, + 2260, + 2270, + 2269, 2256, - 2263, + 2253, + 2267, + 2268, 2257, - 2265, - 2267 + 2254, + 2261, + 2255, + 2263, + 2265 ] } ], "extendedTypes": [ { "type": "reference", - "target": 2245, + "target": 2243, "name": "StoreGetCustomersCustomerOrdersPaginationParams", "package": "@medusajs/medusa" } ] }, { - "id": 2336, + "id": 2334, "name": "StoreGetOrdersParams", "variant": "declaration", "kind": 128, @@ -62077,39 +62863,39 @@ }, "children": [ { - "id": 2337, + "id": 2335, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2338, + "id": 2336, "name": "new StoreGetOrdersParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2336, + "target": 2334, "name": "StoreGetOrdersParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 2339, + "id": 2337, "name": "display_id", "variant": "declaration", "kind": 1024, @@ -62128,7 +62914,7 @@ } }, { - "id": 2340, + "id": 2338, "name": "email", "variant": "declaration", "kind": 1024, @@ -62147,7 +62933,7 @@ } }, { - "id": 2342, + "id": 2340, "name": "expand", "variant": "declaration", "kind": 1024, @@ -62168,12 +62954,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 2343, + "id": 2341, "name": "fields", "variant": "declaration", "kind": 1024, @@ -62194,12 +62980,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } }, { - "id": 2341, + "id": 2339, "name": "shipping_address", "variant": "declaration", "kind": 1024, @@ -62216,7 +63002,7 @@ }, "type": { "type": "reference", - "target": 2332, + "target": 2330, "name": "ShippingAddressPayload", "package": "@medusajs/medusa" } @@ -62226,31 +63012,31 @@ { "title": "Constructors", "children": [ - 2337 + 2335 ] }, { "title": "Properties", "children": [ - 2339, + 2337, + 2338, 2340, - 2342, - 2343, - 2341 + 2341, + 2339 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 2359, + "id": 2357, "name": "StoreGetPaymentCollectionsParams", "variant": "declaration", "kind": 128, @@ -62265,39 +63051,39 @@ }, "children": [ { - "id": 2360, + "id": 2358, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2361, + "id": 2359, "name": "new StoreGetPaymentCollectionsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2359, + "target": 2357, "name": "StoreGetPaymentCollectionsParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 2362, + "id": 2360, "name": "expand", "variant": "declaration", "kind": 1024, @@ -62318,12 +63104,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 2363, + "id": 2361, "name": "fields", "variant": "declaration", "kind": 1024, @@ -62344,7 +63130,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -62353,28 +63139,28 @@ { "title": "Constructors", "children": [ - 2360 + 2358 ] }, { "title": "Properties", "children": [ - 2362, - 2363 + 2360, + 2361 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 2391, + "id": 2389, "name": "StoreGetProductCategoriesCategoryParams", "variant": "declaration", "kind": 128, @@ -62389,39 +63175,39 @@ }, "children": [ { - "id": 2392, + "id": 2390, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2393, + "id": 2391, "name": "new StoreGetProductCategoriesCategoryParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2391, + "target": 2389, "name": "StoreGetProductCategoriesCategoryParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3807, + "target": 3816, "name": "FindParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3806, + "target": 3815, "name": "FindParams.constructor" } }, { - "id": 2394, + "id": 2392, "name": "expand", "variant": "declaration", "kind": 1024, @@ -62442,12 +63228,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3808, + "target": 3817, "name": "FindParams.expand" } }, { - "id": 2395, + "id": 2393, "name": "fields", "variant": "declaration", "kind": 1024, @@ -62468,7 +63254,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3809, + "target": 3818, "name": "FindParams.fields" } } @@ -62477,28 +63263,28 @@ { "title": "Constructors", "children": [ - 2392 + 2390 ] }, { "title": "Properties", "children": [ - 2394, - 2395 + 2392, + 2393 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" } ] }, { - "id": 2396, + "id": 2394, "name": "StoreGetProductCategoriesParams", "variant": "declaration", "kind": 128, @@ -62513,21 +63299,21 @@ }, "children": [ { - "id": 2397, + "id": 2395, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2398, + "id": 2396, "name": "new StoreGetProductCategoriesParams", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 2399, + "id": 2397, "name": "args", "variant": "param", "kind": 32768, @@ -62545,7 +63331,7 @@ ], "type": { "type": "reference", - "target": 2396, + "target": 2394, "name": "StoreGetProductCategoriesParams", "package": "@medusajs/medusa" }, @@ -62563,7 +63349,7 @@ } }, { - "id": 2404, + "id": 2402, "name": "expand", "variant": "declaration", "kind": 1024, @@ -62589,7 +63375,7 @@ } }, { - "id": 2405, + "id": 2403, "name": "fields", "variant": "declaration", "kind": 1024, @@ -62615,7 +63401,7 @@ } }, { - "id": 2401, + "id": 2399, "name": "handle", "variant": "declaration", "kind": 1024, @@ -62636,7 +63422,7 @@ } }, { - "id": 2403, + "id": 2401, "name": "include_descendants_tree", "variant": "declaration", "kind": 1024, @@ -62657,7 +63443,7 @@ } }, { - "id": 2407, + "id": 2405, "name": "limit", "variant": "declaration", "kind": 1024, @@ -62692,7 +63478,7 @@ } }, { - "id": 2406, + "id": 2404, "name": "offset", "variant": "declaration", "kind": 1024, @@ -62730,7 +63516,7 @@ } }, { - "id": 2402, + "id": 2400, "name": "parent_category_id", "variant": "declaration", "kind": 1024, @@ -62760,7 +63546,7 @@ } }, { - "id": 2400, + "id": 2398, "name": "q", "variant": "declaration", "kind": 1024, @@ -62785,20 +63571,20 @@ { "title": "Constructors", "children": [ - 2397 + 2395 ] }, { "title": "Properties", "children": [ - 2404, - 2405, - 2401, - 2403, - 2407, - 2406, 2402, - 2400 + 2403, + 2399, + 2401, + 2405, + 2404, + 2400, + 2398 ] } ], @@ -62808,7 +63594,7 @@ "types": [ { "type": "reference", - "target": 3805, + "target": 3814, "typeArguments": [ { "type": "intrinsic", @@ -62820,7 +63606,7 @@ }, { "type": "reference", - "target": 3810, + "target": 3819, "typeArguments": [ { "type": "intrinsic", @@ -62835,7 +63621,7 @@ ] }, { - "id": 2414, + "id": 2412, "name": "StoreGetProductTagsParams", "variant": "declaration", "kind": 128, @@ -62850,39 +63636,39 @@ }, "children": [ { - "id": 2415, + "id": 2413, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2416, + "id": 2414, "name": "new StoreGetProductTagsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2414, + "target": 2412, "name": "StoreGetProductTagsParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3812, + "target": 3821, "name": "FindPaginationParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3811, + "target": 3820, "name": "FindPaginationParams.constructor" } }, { - "id": 2420, + "id": 2418, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -62907,13 +63693,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 2423, + "id": 2421, "name": "discount_condition_id", "variant": "declaration", "kind": 1024, @@ -62934,7 +63720,7 @@ } }, { - "id": 2417, + "id": 2415, "name": "id", "variant": "declaration", "kind": 1024, @@ -62965,7 +63751,7 @@ }, { "type": "reference", - "target": 3760, + "target": 3769, "name": "StringComparisonOperator", "package": "@medusajs/medusa" } @@ -62973,7 +63759,7 @@ } }, { - "id": 2425, + "id": 2423, "name": "limit", "variant": "declaration", "kind": 1024, @@ -63006,12 +63792,12 @@ "defaultValue": "20", "inheritedFrom": { "type": "reference", - "target": 3814, + "target": 3823, "name": "FindPaginationParams.limit" } }, { - "id": 2424, + "id": 2422, "name": "offset", "variant": "declaration", "kind": 1024, @@ -63044,12 +63830,12 @@ "defaultValue": "0", "inheritedFrom": { "type": "reference", - "target": 3813, + "target": 3822, "name": "FindPaginationParams.offset" } }, { - "id": 2422, + "id": 2420, "name": "order", "variant": "declaration", "kind": 1024, @@ -63078,7 +63864,7 @@ } }, { - "id": 2418, + "id": 2416, "name": "q", "variant": "declaration", "kind": 1024, @@ -63099,7 +63885,7 @@ } }, { - "id": 2421, + "id": 2419, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -63124,13 +63910,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 2419, + "id": 2417, "name": "value", "variant": "declaration", "kind": 1024, @@ -63161,7 +63947,7 @@ }, { "type": "reference", - "target": 3760, + "target": 3769, "name": "StringComparisonOperator", "package": "@medusajs/medusa" } @@ -63173,35 +63959,35 @@ { "title": "Constructors", "children": [ - 2415 + 2413 ] }, { "title": "Properties", "children": [ - 2420, - 2423, - 2417, - 2425, - 2424, - 2422, 2418, 2421, - 2419 + 2415, + 2423, + 2422, + 2420, + 2416, + 2419, + 2417 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3810, + "target": 3819, "name": "FindPaginationParams", "package": "@medusajs/medusa" } ] }, { - "id": 2432, + "id": 2430, "name": "StoreGetProductTypesParams", "variant": "declaration", "kind": 128, @@ -63216,39 +64002,39 @@ }, "children": [ { - "id": 2433, + "id": 2431, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2434, + "id": 2432, "name": "new StoreGetProductTypesParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2432, + "target": 2430, "name": "StoreGetProductTypesParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3812, + "target": 3821, "name": "FindPaginationParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3811, + "target": 3820, "name": "FindPaginationParams.constructor" } }, { - "id": 2438, + "id": 2436, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -63273,13 +64059,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 2441, + "id": 2439, "name": "discount_condition_id", "variant": "declaration", "kind": 1024, @@ -63300,7 +64086,7 @@ } }, { - "id": 2435, + "id": 2433, "name": "id", "variant": "declaration", "kind": 1024, @@ -63331,7 +64117,7 @@ }, { "type": "reference", - "target": 3760, + "target": 3769, "name": "StringComparisonOperator", "package": "@medusajs/medusa" } @@ -63339,7 +64125,7 @@ } }, { - "id": 2443, + "id": 2441, "name": "limit", "variant": "declaration", "kind": 1024, @@ -63372,12 +64158,12 @@ "defaultValue": "20", "inheritedFrom": { "type": "reference", - "target": 3814, + "target": 3823, "name": "FindPaginationParams.limit" } }, { - "id": 2442, + "id": 2440, "name": "offset", "variant": "declaration", "kind": 1024, @@ -63410,12 +64196,12 @@ "defaultValue": "0", "inheritedFrom": { "type": "reference", - "target": 3813, + "target": 3822, "name": "FindPaginationParams.offset" } }, { - "id": 2440, + "id": 2438, "name": "order", "variant": "declaration", "kind": 1024, @@ -63444,7 +64230,7 @@ } }, { - "id": 2436, + "id": 2434, "name": "q", "variant": "declaration", "kind": 1024, @@ -63465,7 +64251,7 @@ } }, { - "id": 2439, + "id": 2437, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -63490,13 +64276,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 2437, + "id": 2435, "name": "value", "variant": "declaration", "kind": 1024, @@ -63527,7 +64313,7 @@ }, { "type": "reference", - "target": 3760, + "target": 3769, "name": "StringComparisonOperator", "package": "@medusajs/medusa" } @@ -63539,35 +64325,35 @@ { "title": "Constructors", "children": [ - 2433 + 2431 ] }, { "title": "Properties", "children": [ - 2438, - 2441, - 2435, - 2443, - 2442, - 2440, 2436, 2439, - 2437 + 2433, + 2441, + 2440, + 2438, + 2434, + 2437, + 2435 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3810, + "target": 3819, "name": "FindPaginationParams", "package": "@medusajs/medusa" } ] }, { - "id": 2487, + "id": 2488, "name": "StoreGetProductsPaginationParams", "variant": "declaration", "kind": 128, @@ -63582,39 +64368,39 @@ }, "children": [ { - "id": 2488, + "id": 2489, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2489, + "id": 2490, "name": "new StoreGetProductsPaginationParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2487, + "target": 2488, "name": "StoreGetProductsPaginationParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4610, + "target": 4637, "name": "PriceSelectionParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4609, + "target": 4636, "name": "PriceSelectionParams.constructor" } }, { - "id": 2493, + "id": 2494, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -63635,12 +64421,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4611, + "target": 4638, "name": "PriceSelectionParams.cart_id" } }, { - "id": 2495, + "id": 2496, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -63661,12 +64447,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4613, + "target": 4640, "name": "PriceSelectionParams.currency_code" } }, { - "id": 2496, + "id": 2497, "name": "expand", "variant": "declaration", "kind": 1024, @@ -63687,12 +64473,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4614, + "target": 4641, "name": "PriceSelectionParams.expand" } }, { - "id": 2497, + "id": 2498, "name": "fields", "variant": "declaration", "kind": 1024, @@ -63713,12 +64499,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4615, + "target": 4642, "name": "PriceSelectionParams.fields" } }, { - "id": 2491, + "id": 2492, "name": "limit", "variant": "declaration", "kind": 1024, @@ -63751,7 +64537,7 @@ "defaultValue": "100" }, { - "id": 2490, + "id": 2491, "name": "offset", "variant": "declaration", "kind": 1024, @@ -63784,7 +64570,7 @@ "defaultValue": "0" }, { - "id": 2492, + "id": 2493, "name": "order", "variant": "declaration", "kind": 1024, @@ -63813,7 +64599,7 @@ } }, { - "id": 2494, + "id": 2495, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -63834,7 +64620,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 4612, + "target": 4639, "name": "PriceSelectionParams.region_id" } } @@ -63843,27 +64629,27 @@ { "title": "Constructors", "children": [ - 2488 + 2489 ] }, { "title": "Properties", "children": [ - 2493, - 2495, + 2494, 2496, 2497, - 2491, - 2490, + 2498, 2492, - 2494 + 2491, + 2493, + 2495 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4608, + "target": 4635, "name": "PriceSelectionParams", "package": "@medusajs/medusa" } @@ -63871,13 +64657,13 @@ "extendedBy": [ { "type": "reference", - "target": 2498, + "target": 2499, "name": "StoreGetProductsParams" } ] }, { - "id": 2498, + "id": 2499, "name": "StoreGetProductsParams", "variant": "declaration", "kind": 128, @@ -63892,39 +64678,39 @@ }, "children": [ { - "id": 2499, + "id": 2500, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2500, + "id": 2501, "name": "new StoreGetProductsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2498, + "target": 2499, "name": "StoreGetProductsParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 2489, + "target": 2490, "name": "StoreGetProductsPaginationParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 2488, + "target": 2489, "name": "StoreGetProductsPaginationParams.constructor" } }, { - "id": 2518, + "id": 2519, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -63945,12 +64731,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2493, + "target": 2494, "name": "StoreGetProductsPaginationParams.cart_id" } }, { - "id": 2511, + "id": 2512, "name": "category_id", "variant": "declaration", "kind": 1024, @@ -63974,7 +64760,7 @@ } }, { - "id": 2503, + "id": 2504, "name": "collection_id", "variant": "declaration", "kind": 1024, @@ -63998,7 +64784,7 @@ } }, { - "id": 2513, + "id": 2514, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -64023,13 +64809,13 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 2520, + "id": 2521, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -64050,12 +64836,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2495, + "target": 2496, "name": "StoreGetProductsPaginationParams.currency_code" } }, { - "id": 2506, + "id": 2507, "name": "description", "variant": "declaration", "kind": 1024, @@ -64076,7 +64862,7 @@ } }, { - "id": 2521, + "id": 2522, "name": "expand", "variant": "declaration", "kind": 1024, @@ -64097,12 +64883,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2496, + "target": 2497, "name": "StoreGetProductsPaginationParams.expand" } }, { - "id": 2522, + "id": 2523, "name": "fields", "variant": "declaration", "kind": 1024, @@ -64123,12 +64909,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2497, + "target": 2498, "name": "StoreGetProductsPaginationParams.fields" } }, { - "id": 2507, + "id": 2508, "name": "handle", "variant": "declaration", "kind": 1024, @@ -64149,7 +64935,7 @@ } }, { - "id": 2501, + "id": 2502, "name": "id", "variant": "declaration", "kind": 1024, @@ -64182,7 +64968,7 @@ } }, { - "id": 2512, + "id": 2513, "name": "include_category_children", "variant": "declaration", "kind": 1024, @@ -64214,7 +65000,7 @@ } }, { - "id": 2508, + "id": 2509, "name": "is_giftcard", "variant": "declaration", "kind": 1024, @@ -64235,7 +65021,7 @@ } }, { - "id": 2516, + "id": 2517, "name": "limit", "variant": "declaration", "kind": 1024, @@ -64268,12 +65054,12 @@ "defaultValue": "100", "inheritedFrom": { "type": "reference", - "target": 2491, + "target": 2492, "name": "StoreGetProductsPaginationParams.limit" } }, { - "id": 2515, + "id": 2516, "name": "offset", "variant": "declaration", "kind": 1024, @@ -64306,12 +65092,12 @@ "defaultValue": "0", "inheritedFrom": { "type": "reference", - "target": 2490, + "target": 2491, "name": "StoreGetProductsPaginationParams.offset" } }, { - "id": 2517, + "id": 2518, "name": "order", "variant": "declaration", "kind": 1024, @@ -64340,12 +65126,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2492, + "target": 2493, "name": "StoreGetProductsPaginationParams.order" } }, { - "id": 2502, + "id": 2503, "name": "q", "variant": "declaration", "kind": 1024, @@ -64366,7 +65152,7 @@ } }, { - "id": 2519, + "id": 2520, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -64387,12 +65173,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2494, + "target": 2495, "name": "StoreGetProductsPaginationParams.region_id" } }, { - "id": 2510, + "id": 2511, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -64416,7 +65202,7 @@ } }, { - "id": 2504, + "id": 2505, "name": "tags", "variant": "declaration", "kind": 1024, @@ -64440,7 +65226,7 @@ } }, { - "id": 2505, + "id": 2506, "name": "title", "variant": "declaration", "kind": 1024, @@ -64461,7 +65247,7 @@ } }, { - "id": 2509, + "id": 2510, "name": "type_id", "variant": "declaration", "kind": 1024, @@ -64485,7 +65271,7 @@ } }, { - "id": 2514, + "id": 2515, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -64510,7 +65296,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -64520,77 +65306,105 @@ { "title": "Constructors", "children": [ - 2499 + 2500 ] }, { "title": "Properties", "children": [ - 2518, - 2511, - 2503, - 2513, - 2520, - 2506, - 2521, - 2522, - 2507, - 2501, - 2512, - 2508, - 2516, - 2515, - 2517, - 2502, 2519, - 2510, + 2512, 2504, - 2505, + 2514, + 2521, + 2507, + 2522, + 2523, + 2508, + 2502, + 2513, 2509, - 2514 + 2517, + 2516, + 2518, + 2503, + 2520, + 2511, + 2505, + 2506, + 2510, + 2515 ] } ], "extendedTypes": [ { "type": "reference", - "target": 2487, + "target": 2488, "name": "StoreGetProductsPaginationParams", "package": "@medusajs/medusa" } ] }, { - "id": 2536, + "id": 2544, "name": "StoreGetRegionsParams", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2537, + "id": 2545, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2538, + "id": 2546, "name": "new StoreGetRegionsParams", "variant": "signature", "kind": 16384, "flags": {}, + "parameters": [ + { + "id": 2547, + "name": "args", + "variant": "param", + "kind": 32768, + "flags": { + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "unknown" + } + } + } + ], "type": { "type": "reference", - "target": 2536, + "target": 2544, "name": "StoreGetRegionsParams", "package": "@medusajs/medusa" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "extendedFindParamsMixin({\n limit: 100,\n offset: 0,\n}).constructor" } } - ] + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "extendedFindParamsMixin({\n limit: 100,\n offset: 0,\n}).constructor" + } }, { - "id": 2541, + "id": 2548, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -64599,41 +65413,141 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } }, { - "id": 2539, + "id": 2550, + "name": "expand", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Comma-separated relations that should be expanded in the returned data." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "extendedFindParamsMixin({\n limit: 100,\n offset: 0,\n}).expand" + } + }, + { + "id": 2551, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Comma-separated fields that should be included in the returned data." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "extendedFindParamsMixin({\n limit: 100,\n offset: 0,\n}).fields" + } + }, + { + "id": 2553, "name": "limit", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Limit the number of items returned in the list." + } + ], + "blockTags": [ + { + "tag": "@defaultValue", + "content": [ + { + "kind": "code", + "text": "```ts\n20\n```" + } + ] + } + ] + }, "type": { "type": "intrinsic", "name": "number" }, - "defaultValue": "100" + "defaultValue": "20", + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "extendedFindParamsMixin({\n limit: 100,\n offset: 0,\n}).limit" + } }, { - "id": 2540, + "id": 2552, "name": "offset", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of items to skip when retrieving a list." + } + ], + "blockTags": [ + { + "tag": "@defaultValue", + "content": [ + { + "kind": "code", + "text": "```ts\n0\n```" + } + ] + } + ] + }, "type": { "type": "intrinsic", "name": "number" }, - "defaultValue": "0" + "defaultValue": "0", + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "extendedFindParamsMixin({\n limit: 100,\n offset: 0,\n}).offset" + } }, { - "id": 2542, + "id": 2549, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -64642,7 +65556,7 @@ }, "type": { "type": "reference", - "target": 3753, + "target": 3762, "name": "DateComparisonOperator", "package": "@medusajs/medusa" } @@ -64652,22 +65566,179 @@ { "title": "Constructors", "children": [ - 2537 + 2545 ] }, { "title": "Properties", "children": [ - 2541, - 2539, - 2540, - 2542 + 2548, + 2550, + 2551, + 2553, + 2552, + 2549 + ] + } + ], + "extendedTypes": [ + { + "type": "intersection", + "types": [ + { + "type": "reference", + "target": 3814, + "typeArguments": [ + { + "type": "intrinsic", + "name": "this" + } + ], + "name": "FindParams", + "package": "@medusajs/medusa" + }, + { + "type": "reference", + "target": 3819, + "typeArguments": [ + { + "type": "intrinsic", + "name": "this" + } + ], + "name": "FindPaginationParams", + "package": "@medusajs/medusa" + } ] } ] }, { - "id": 2566, + "id": 2539, + "name": "StoreGetRegionsRegionParams", + "variant": "declaration", + "kind": 128, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Parameters that can be used to configure how data is retrieved." + } + ] + }, + "children": [ + { + "id": 2540, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": {}, + "signatures": [ + { + "id": 2541, + "name": "new StoreGetRegionsRegionParams", + "variant": "signature", + "kind": 16384, + "flags": {}, + "type": { + "type": "reference", + "target": 2539, + "name": "StoreGetRegionsRegionParams", + "package": "@medusajs/medusa" + }, + "inheritedFrom": { + "type": "reference", + "target": 3816, + "name": "FindParams.constructor" + } + } + ], + "inheritedFrom": { + "type": "reference", + "target": 3815, + "name": "FindParams.constructor" + } + }, + { + "id": 2542, + "name": "expand", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Comma-separated relations that should be expanded in the returned data." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 3817, + "name": "FindParams.expand" + } + }, + { + "id": 2543, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Comma-separated fields that should be included in the returned data." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 3818, + "name": "FindParams.fields" + } + } + ], + "groups": [ + { + "title": "Constructors", + "children": [ + 2540 + ] + }, + { + "title": "Properties", + "children": [ + 2542, + 2543 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 3814, + "name": "FindParams", + "package": "@medusajs/medusa" + } + ] + }, + { + "id": 2577, "name": "StoreGetShippingOptionsParams", "variant": "declaration", "kind": 128, @@ -64682,21 +65753,21 @@ }, "children": [ { - "id": 2567, + "id": 2578, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2568, + "id": 2579, "name": "new StoreGetShippingOptionsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2566, + "target": 2577, "name": "StoreGetShippingOptionsParams", "package": "@medusajs/medusa" } @@ -64704,7 +65775,7 @@ ] }, { - "id": 2571, + "id": 2582, "name": "is_return", "variant": "declaration", "kind": 1024, @@ -64725,7 +65796,7 @@ } }, { - "id": 2569, + "id": 2580, "name": "product_ids", "variant": "declaration", "kind": 1024, @@ -64746,7 +65817,7 @@ } }, { - "id": 2570, + "id": 2581, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -64771,21 +65842,21 @@ { "title": "Constructors", "children": [ - 2567 + 2578 ] }, { "title": "Properties", "children": [ - 2571, - 2569, - 2570 + 2582, + 2580, + 2581 ] } ] }, { - "id": 2601, + "id": 2612, "name": "StoreGetVariantsParams", "variant": "declaration", "kind": 128, @@ -64800,39 +65871,39 @@ }, "children": [ { - "id": 2602, + "id": 2613, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2603, + "id": 2614, "name": "new StoreGetVariantsParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2601, + "target": 2612, "name": "StoreGetVariantsParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4610, + "target": 4637, "name": "PriceSelectionParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4609, + "target": 4636, "name": "PriceSelectionParams.constructor" } }, { - "id": 2611, + "id": 2622, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -64853,12 +65924,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4611, + "target": 4638, "name": "PriceSelectionParams.cart_id" } }, { - "id": 2613, + "id": 2624, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -64879,12 +65950,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4613, + "target": 4640, "name": "PriceSelectionParams.currency_code" } }, { - "id": 2614, + "id": 2625, "name": "expand", "variant": "declaration", "kind": 1024, @@ -64905,12 +65976,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4614, + "target": 4641, "name": "PriceSelectionParams.expand" } }, { - "id": 2615, + "id": 2626, "name": "fields", "variant": "declaration", "kind": 1024, @@ -64931,12 +66002,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4615, + "target": 4642, "name": "PriceSelectionParams.fields" } }, { - "id": 2608, + "id": 2619, "name": "id", "variant": "declaration", "kind": 1024, @@ -64969,7 +66040,7 @@ } }, { - "id": 2606, + "id": 2617, "name": "ids", "variant": "declaration", "kind": 1024, @@ -64990,7 +66061,7 @@ } }, { - "id": 2610, + "id": 2621, "name": "inventory_quantity", "variant": "declaration", "kind": 1024, @@ -65022,7 +66093,7 @@ }, { "type": "reference", - "target": 3770, + "target": 3779, "name": "NumericalComparisonOperator", "package": "@medusajs/medusa" } @@ -65030,7 +66101,7 @@ } }, { - "id": 2604, + "id": 2615, "name": "limit", "variant": "declaration", "kind": 1024, @@ -65063,7 +66134,7 @@ "defaultValue": "100" }, { - "id": 2605, + "id": 2616, "name": "offset", "variant": "declaration", "kind": 1024, @@ -65096,7 +66167,7 @@ "defaultValue": "0" }, { - "id": 2612, + "id": 2623, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -65117,12 +66188,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4612, + "target": 4639, "name": "PriceSelectionParams.region_id" } }, { - "id": 2607, + "id": 2618, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -65143,7 +66214,7 @@ } }, { - "id": 2609, + "id": 2620, "name": "title", "variant": "declaration", "kind": 1024, @@ -65180,38 +66251,38 @@ { "title": "Constructors", "children": [ - 2602 + 2613 ] }, { "title": "Properties", "children": [ - 2611, - 2613, - 2614, + 2622, + 2624, + 2625, + 2626, + 2619, + 2617, + 2621, 2615, - 2608, - 2606, - 2610, - 2604, - 2605, - 2612, - 2607, - 2609 + 2616, + 2623, + 2618, + 2620 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4608, + "target": 4635, "name": "PriceSelectionParams", "package": "@medusajs/medusa" } ] }, { - "id": 2592, + "id": 2603, "name": "StoreGetVariantsVariantParams", "variant": "declaration", "kind": 128, @@ -65226,39 +66297,39 @@ }, "children": [ { - "id": 2593, + "id": 2604, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2594, + "id": 2605, "name": "new StoreGetVariantsVariantParams", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2592, + "target": 2603, "name": "StoreGetVariantsVariantParams", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4610, + "target": 4637, "name": "PriceSelectionParams.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 4609, + "target": 4636, "name": "PriceSelectionParams.constructor" } }, { - "id": 2596, + "id": 2607, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -65279,12 +66350,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4611, + "target": 4638, "name": "PriceSelectionParams.cart_id" } }, { - "id": 2598, + "id": 2609, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -65305,12 +66376,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4613, + "target": 4640, "name": "PriceSelectionParams.currency_code" } }, { - "id": 2599, + "id": 2610, "name": "expand", "variant": "declaration", "kind": 1024, @@ -65331,12 +66402,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4614, + "target": 4641, "name": "PriceSelectionParams.expand" } }, { - "id": 2600, + "id": 2611, "name": "fields", "variant": "declaration", "kind": 1024, @@ -65357,12 +66428,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4615, + "target": 4642, "name": "PriceSelectionParams.fields" } }, { - "id": 2597, + "id": 2608, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -65383,12 +66454,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4612, + "target": 4639, "name": "PriceSelectionParams.region_id" } }, { - "id": 2595, + "id": 2606, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -65405,53 +66476,53 @@ { "title": "Constructors", "children": [ - 2593 + 2604 ] }, { "title": "Properties", "children": [ - 2596, - 2598, - 2599, - 2600, - 2597, - 2595 + 2607, + 2609, + 2610, + 2611, + 2608, + 2606 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4608, + "target": 4635, "name": "PriceSelectionParams", "package": "@medusajs/medusa" } ] }, { - "id": 2374, + "id": 2372, "name": "StorePaymentCollectionSessionsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2375, + "id": 2373, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2376, + "id": 2374, "name": "new StorePaymentCollectionSessionsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2374, + "target": 2372, "name": "StorePaymentCollectionSessionsReq", "package": "@medusajs/medusa" } @@ -65459,7 +66530,7 @@ ] }, { - "id": 2377, + "id": 2375, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -65482,40 +66553,40 @@ { "title": "Constructors", "children": [ - 2375 + 2373 ] }, { "title": "Properties", "children": [ - 2377 + 2375 ] } ] }, { - "id": 2128, + "id": 2126, "name": "StorePostAuthReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2129, + "id": 2127, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2130, + "id": 2128, "name": "new StorePostAuthReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2128, + "target": 2126, "name": "StorePostAuthReq", "package": "@medusajs/medusa" } @@ -65523,7 +66594,7 @@ ] }, { - "id": 2131, + "id": 2129, "name": "email", "variant": "declaration", "kind": 1024, @@ -65542,7 +66613,7 @@ } }, { - "id": 2132, + "id": 2130, "name": "password", "variant": "declaration", "kind": 1024, @@ -65565,20 +66636,20 @@ { "title": "Constructors", "children": [ - 2129 + 2127 ] }, { "title": "Properties", "children": [ - 2131, - 2132 + 2129, + 2130 ] } ] }, { - "id": 2158, + "id": 2156, "name": "StorePostCartReq", "variant": "declaration", "kind": 128, @@ -65593,14 +66664,14 @@ }, "children": [ { - "id": 2159, + "id": 2157, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2160, + "id": 2158, "name": "new StorePostCartReq", "variant": "signature", "kind": 16384, @@ -65615,7 +66686,7 @@ }, "type": { "type": "reference", - "target": 2158, + "target": 2156, "name": "StorePostCartReq", "package": "@medusajs/medusa" } @@ -65623,7 +66694,7 @@ ] }, { - "id": 2164, + "id": 2162, "name": "context", "variant": "declaration", "kind": 1024, @@ -65644,7 +66715,7 @@ } }, { - "id": 2162, + "id": 2160, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -65665,7 +66736,7 @@ } }, { - "id": 2163, + "id": 2161, "name": "items", "variant": "declaration", "kind": 1024, @@ -65684,14 +66755,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2153, + "target": 2151, "name": "Item", "package": "@medusajs/medusa" } } }, { - "id": 2161, + "id": 2159, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -65712,7 +66783,7 @@ } }, { - "id": 2165, + "id": 2163, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -65737,44 +66808,44 @@ { "title": "Constructors", "children": [ - 2159 + 2157 ] }, { "title": "Properties", "children": [ - 2164, 2162, - 2163, + 2160, 2161, - 2165 + 2159, + 2163 ] } ] }, { - "id": 2189, + "id": 2187, "name": "StorePostCartsCartLineItemsItemReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2190, + "id": 2188, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2191, + "id": 2189, "name": "new StorePostCartsCartLineItemsItemReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2189, + "target": 2187, "name": "StorePostCartsCartLineItemsItemReq", "package": "@medusajs/medusa" } @@ -65782,7 +66853,7 @@ ] }, { - "id": 2193, + "id": 2191, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -65818,7 +66889,7 @@ } }, { - "id": 2192, + "id": 2190, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -65841,41 +66912,41 @@ { "title": "Constructors", "children": [ - 2190 + 2188 ] }, { "title": "Properties", "children": [ - 2193, - 2192 + 2191, + 2190 ] } ] }, { - "id": 2166, + "id": 2164, "name": "StorePostCartsCartLineItemsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2167, + "id": 2165, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2168, + "id": 2166, "name": "new StorePostCartsCartLineItemsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2166, + "target": 2164, "name": "StorePostCartsCartLineItemsReq", "package": "@medusajs/medusa" } @@ -65883,7 +66954,7 @@ ] }, { - "id": 2171, + "id": 2169, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -65919,7 +66990,7 @@ } }, { - "id": 2170, + "id": 2168, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -65938,7 +67009,7 @@ } }, { - "id": 2169, + "id": 2167, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -65961,42 +67032,42 @@ { "title": "Constructors", "children": [ - 2167 + 2165 ] }, { "title": "Properties", "children": [ - 2171, - 2170, - 2169 + 2169, + 2168, + 2167 ] } ] }, { - "id": 2172, + "id": 2170, "name": "StorePostCartsCartPaymentSessionReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2173, + "id": 2171, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2174, + "id": 2172, "name": "new StorePostCartsCartPaymentSessionReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2172, + "target": 2170, "name": "StorePostCartsCartPaymentSessionReq", "package": "@medusajs/medusa" } @@ -66004,7 +67075,7 @@ ] }, { - "id": 2175, + "id": 2173, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -66027,40 +67098,40 @@ { "title": "Constructors", "children": [ - 2173 + 2171 ] }, { "title": "Properties", "children": [ - 2175 + 2173 ] } ] }, { - "id": 2194, + "id": 2192, "name": "StorePostCartsCartPaymentSessionUpdateReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2195, + "id": 2193, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2196, + "id": 2194, "name": "new StorePostCartsCartPaymentSessionUpdateReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2194, + "target": 2192, "name": "StorePostCartsCartPaymentSessionUpdateReq", "package": "@medusajs/medusa" } @@ -66068,7 +67139,7 @@ ] }, { - "id": 2197, + "id": 2195, "name": "data", "variant": "declaration", "kind": 1024, @@ -66106,40 +67177,40 @@ { "title": "Constructors", "children": [ - 2195 + 2193 ] }, { "title": "Properties", "children": [ - 2197 + 2195 ] } ] }, { - "id": 2176, + "id": 2174, "name": "StorePostCartsCartReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2177, + "id": 2175, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2178, + "id": 2176, "name": "new StorePostCartsCartReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2176, + "target": 2174, "name": "StorePostCartsCartReq", "package": "@medusajs/medusa" } @@ -66147,7 +67218,7 @@ ] }, { - "id": 2182, + "id": 2180, "name": "billing_address", "variant": "declaration", "kind": 1024, @@ -66171,7 +67242,7 @@ }, { "type": "reference", - "target": 3777, + "target": 3786, "name": "AddressPayload", "package": "@medusajs/medusa" } @@ -66179,7 +67250,7 @@ } }, { - "id": 2187, + "id": 2185, "name": "context", "variant": "declaration", "kind": 1024, @@ -66200,7 +67271,7 @@ } }, { - "id": 2180, + "id": 2178, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -66221,7 +67292,7 @@ } }, { - "id": 2186, + "id": 2184, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -66242,7 +67313,7 @@ } }, { - "id": 2185, + "id": 2183, "name": "discounts", "variant": "declaration", "kind": 1024, @@ -66261,14 +67332,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4604, + "target": 4631, "name": "Discount", "package": "@medusajs/medusa" } } }, { - "id": 2181, + "id": 2179, "name": "email", "variant": "declaration", "kind": 1024, @@ -66289,7 +67360,7 @@ } }, { - "id": 2184, + "id": 2182, "name": "gift_cards", "variant": "declaration", "kind": 1024, @@ -66308,14 +67379,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4600, + "target": 4627, "name": "GiftCard", "package": "@medusajs/medusa" } } }, { - "id": 2179, + "id": 2177, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -66336,7 +67407,7 @@ } }, { - "id": 2188, + "id": 2186, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -66357,7 +67428,7 @@ } }, { - "id": 2183, + "id": 2181, "name": "shipping_address", "variant": "declaration", "kind": 1024, @@ -66381,7 +67452,7 @@ }, { "type": "reference", - "target": 3777, + "target": 3786, "name": "AddressPayload", "package": "@medusajs/medusa" } @@ -66393,49 +67464,49 @@ { "title": "Constructors", "children": [ - 2177 + 2175 ] }, { "title": "Properties", "children": [ - 2182, - 2187, 2180, - 2186, 2185, - 2181, + 2178, 2184, + 2183, 2179, - 2188, - 2183 + 2182, + 2177, + 2186, + 2181 ] } ] }, { - "id": 2148, + "id": 2146, "name": "StorePostCartsCartShippingMethodReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2149, + "id": 2147, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2150, + "id": 2148, "name": "new StorePostCartsCartShippingMethodReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2148, + "target": 2146, "name": "StorePostCartsCartShippingMethodReq", "package": "@medusajs/medusa" } @@ -66443,7 +67514,7 @@ ] }, { - "id": 2152, + "id": 2150, "name": "data", "variant": "declaration", "kind": 1024, @@ -66480,7 +67551,7 @@ "defaultValue": "{}" }, { - "id": 2151, + "id": 2149, "name": "option_id", "variant": "declaration", "kind": 1024, @@ -66503,41 +67574,41 @@ { "title": "Constructors", "children": [ - 2149 + 2147 ] }, { "title": "Properties", "children": [ - 2152, - 2151 + 2150, + 2149 ] } ] }, { - "id": 2328, + "id": 2326, "name": "StorePostCustomersCustomerAcceptClaimReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2329, + "id": 2327, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2330, + "id": 2328, "name": "new StorePostCustomersCustomerAcceptClaimReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2328, + "target": 2326, "name": "StorePostCustomersCustomerAcceptClaimReq", "package": "@medusajs/medusa" } @@ -66545,7 +67616,7 @@ ] }, { - "id": 2331, + "id": 2329, "name": "token", "variant": "declaration", "kind": 1024, @@ -66568,58 +67639,58 @@ { "title": "Constructors", "children": [ - 2329 + 2327 ] }, { "title": "Properties", "children": [ - 2331 + 2329 ] } ] }, { - "id": 2283, + "id": 2281, "name": "StorePostCustomersCustomerAddressesAddressReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2284, + "id": 2282, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2285, + "id": 2283, "name": "new StorePostCustomersCustomerAddressesAddressReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2283, + "target": 2281, "name": "StorePostCustomersCustomerAddressesAddressReq", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3779, + "target": 3788, "name": "AddressPayload.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 3778, + "target": 3787, "name": "AddressPayload.constructor" } }, { - "id": 2291, + "id": 2289, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -66640,12 +67711,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3785, + "target": 3794, "name": "AddressPayload.address_1" } }, { - "id": 2292, + "id": 2290, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -66666,12 +67737,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3786, + "target": 3795, "name": "AddressPayload.address_2" } }, { - "id": 2293, + "id": 2291, "name": "city", "variant": "declaration", "kind": 1024, @@ -66692,12 +67763,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3787, + "target": 3796, "name": "AddressPayload.city" } }, { - "id": 2290, + "id": 2288, "name": "company", "variant": "declaration", "kind": 1024, @@ -66718,12 +67789,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3784, + "target": 3793, "name": "AddressPayload.company" } }, { - "id": 2294, + "id": 2292, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -66744,12 +67815,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3788, + "target": 3797, "name": "AddressPayload.country_code" } }, { - "id": 2286, + "id": 2284, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -66770,12 +67841,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3780, + "target": 3789, "name": "AddressPayload.first_name" } }, { - "id": 2287, + "id": 2285, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -66796,12 +67867,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3781, + "target": 3790, "name": "AddressPayload.last_name" } }, { - "id": 2289, + "id": 2287, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -66837,12 +67908,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3783, + "target": 3792, "name": "AddressPayload.metadata" } }, { - "id": 2288, + "id": 2286, "name": "phone", "variant": "declaration", "kind": 1024, @@ -66863,12 +67934,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3782, + "target": 3791, "name": "AddressPayload.phone" } }, { - "id": 2296, + "id": 2294, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -66889,12 +67960,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3790, + "target": 3799, "name": "AddressPayload.postal_code" } }, { - "id": 2295, + "id": 2293, "name": "province", "variant": "declaration", "kind": 1024, @@ -66915,7 +67986,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3789, + "target": 3798, "name": "AddressPayload.province" } } @@ -66924,58 +67995,58 @@ { "title": "Constructors", "children": [ - 2284 + 2282 ] }, { "title": "Properties", "children": [ - 2291, - 2292, - 2293, - 2290, - 2294, - 2286, - 2287, 2289, + 2290, + 2291, 2288, - 2296, - 2295 + 2292, + 2284, + 2285, + 2287, + 2286, + 2294, + 2293 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3777, + "target": 3786, "name": "AddressPayload", "package": "@medusajs/medusa" } ] }, { - "id": 2233, + "id": 2231, "name": "StorePostCustomersCustomerAddressesReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2234, + "id": 2232, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2235, + "id": 2233, "name": "new StorePostCustomersCustomerAddressesReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2233, + "target": 2231, "name": "StorePostCustomersCustomerAddressesReq", "package": "@medusajs/medusa" } @@ -66983,7 +68054,7 @@ ] }, { - "id": 2236, + "id": 2234, "name": "address", "variant": "declaration", "kind": 1024, @@ -66998,7 +68069,7 @@ }, "type": { "type": "reference", - "target": 3791, + "target": 3800, "name": "AddressCreatePayload", "package": "@medusajs/medusa" } @@ -67008,40 +68079,40 @@ { "title": "Constructors", "children": [ - 2234 + 2232 ] }, { "title": "Properties", "children": [ - 2236 + 2234 ] } ] }, { - "id": 2344, + "id": 2342, "name": "StorePostCustomersCustomerOrderClaimReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2345, + "id": 2343, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2346, + "id": 2344, "name": "new StorePostCustomersCustomerOrderClaimReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2344, + "target": 2342, "name": "StorePostCustomersCustomerOrderClaimReq", "package": "@medusajs/medusa" } @@ -67049,7 +68120,7 @@ ] }, { - "id": 2347, + "id": 2345, "name": "order_ids", "variant": "declaration", "kind": 1024, @@ -67075,40 +68146,40 @@ { "title": "Constructors", "children": [ - 2345 + 2343 ] }, { "title": "Properties", "children": [ - 2347 + 2345 ] } ] }, { - "id": 2279, + "id": 2277, "name": "StorePostCustomersCustomerPasswordTokenReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2280, + "id": 2278, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2281, + "id": 2279, "name": "new StorePostCustomersCustomerPasswordTokenReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2279, + "target": 2277, "name": "StorePostCustomersCustomerPasswordTokenReq", "package": "@medusajs/medusa" } @@ -67116,7 +68187,7 @@ ] }, { - "id": 2282, + "id": 2280, "name": "email", "variant": "declaration", "kind": 1024, @@ -67139,40 +68210,40 @@ { "title": "Constructors", "children": [ - 2280 + 2278 ] }, { "title": "Properties", "children": [ - 2282 + 2280 ] } ] }, { - "id": 2297, + "id": 2295, "name": "StorePostCustomersCustomerReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2298, + "id": 2296, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2299, + "id": 2297, "name": "new StorePostCustomersCustomerReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2297, + "target": 2295, "name": "StorePostCustomersCustomerReq", "package": "@medusajs/medusa" } @@ -67180,7 +68251,7 @@ ] }, { - "id": 2300, + "id": 2298, "name": "billing_address", "variant": "declaration", "kind": 1024, @@ -67204,7 +68275,7 @@ }, { "type": "reference", - "target": 3777, + "target": 3786, "name": "AddressPayload", "package": "@medusajs/medusa" } @@ -67212,7 +68283,7 @@ } }, { - "id": 2305, + "id": 2303, "name": "email", "variant": "declaration", "kind": 1024, @@ -67233,7 +68304,7 @@ } }, { - "id": 2301, + "id": 2299, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -67254,7 +68325,7 @@ } }, { - "id": 2302, + "id": 2300, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -67275,7 +68346,7 @@ } }, { - "id": 2306, + "id": 2304, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -67311,7 +68382,7 @@ } }, { - "id": 2303, + "id": 2301, "name": "password", "variant": "declaration", "kind": 1024, @@ -67332,7 +68403,7 @@ } }, { - "id": 2304, + "id": 2302, "name": "phone", "variant": "declaration", "kind": 1024, @@ -67357,46 +68428,46 @@ { "title": "Constructors", "children": [ - 2298 + 2296 ] }, { "title": "Properties", "children": [ - 2300, - 2305, - 2301, - 2302, - 2306, + 2298, 2303, - 2304 + 2299, + 2300, + 2304, + 2301, + 2302 ] } ] }, { - "id": 2237, + "id": 2235, "name": "StorePostCustomersReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2238, + "id": 2236, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2239, + "id": 2237, "name": "new StorePostCustomersReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2237, + "target": 2235, "name": "StorePostCustomersReq", "package": "@medusajs/medusa" } @@ -67404,7 +68475,7 @@ ] }, { - "id": 2242, + "id": 2240, "name": "email", "variant": "declaration", "kind": 1024, @@ -67423,7 +68494,7 @@ } }, { - "id": 2240, + "id": 2238, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -67442,7 +68513,7 @@ } }, { - "id": 2241, + "id": 2239, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -67461,7 +68532,7 @@ } }, { - "id": 2243, + "id": 2241, "name": "password", "variant": "declaration", "kind": 1024, @@ -67480,7 +68551,7 @@ } }, { - "id": 2244, + "id": 2242, "name": "phone", "variant": "declaration", "kind": 1024, @@ -67505,44 +68576,44 @@ { "title": "Constructors", "children": [ - 2238 + 2236 ] }, { "title": "Properties", "children": [ - 2242, 2240, + 2238, + 2239, 2241, - 2243, - 2244 + 2242 ] } ] }, { - "id": 2273, + "id": 2271, "name": "StorePostCustomersResetPasswordReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2274, + "id": 2272, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2275, + "id": 2273, "name": "new StorePostCustomersResetPasswordReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2273, + "target": 2271, "name": "StorePostCustomersResetPasswordReq", "package": "@medusajs/medusa" } @@ -67550,7 +68621,7 @@ ] }, { - "id": 2276, + "id": 2274, "name": "email", "variant": "declaration", "kind": 1024, @@ -67569,7 +68640,7 @@ } }, { - "id": 2278, + "id": 2276, "name": "password", "variant": "declaration", "kind": 1024, @@ -67588,7 +68659,7 @@ } }, { - "id": 2277, + "id": 2275, "name": "token", "variant": "declaration", "kind": 1024, @@ -67611,42 +68682,42 @@ { "title": "Constructors", "children": [ - 2274 + 2272 ] }, { "title": "Properties", "children": [ + 2274, 2276, - 2278, - 2277 + 2275 ] } ] }, { - "id": 2317, + "id": 2315, "name": "StorePostOrderEditsOrderEditDecline", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2318, + "id": 2316, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2319, + "id": 2317, "name": "new StorePostOrderEditsOrderEditDecline", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2317, + "target": 2315, "name": "StorePostOrderEditsOrderEditDecline", "package": "@medusajs/medusa" } @@ -67654,7 +68725,7 @@ ] }, { - "id": 2320, + "id": 2318, "name": "declined_reason", "variant": "declaration", "kind": 1024, @@ -67679,40 +68750,40 @@ { "title": "Constructors", "children": [ - 2318 + 2316 ] }, { "title": "Properties", "children": [ - 2320 + 2318 ] } ] }, { - "id": 2355, + "id": 2353, "name": "StorePostPaymentCollectionsBatchSessionsAuthorizeReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2356, + "id": 2354, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2357, + "id": 2355, "name": "new StorePostPaymentCollectionsBatchSessionsAuthorizeReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2355, + "target": 2353, "name": "StorePostPaymentCollectionsBatchSessionsAuthorizeReq", "package": "@medusajs/medusa" } @@ -67720,7 +68791,7 @@ ] }, { - "id": 2358, + "id": 2356, "name": "session_ids", "variant": "declaration", "kind": 1024, @@ -67746,40 +68817,40 @@ { "title": "Constructors", "children": [ - 2356 + 2354 ] }, { "title": "Properties", "children": [ - 2358 + 2356 ] } ] }, { - "id": 2370, + "id": 2368, "name": "StorePostPaymentCollectionsBatchSessionsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2371, + "id": 2369, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2372, + "id": 2370, "name": "new StorePostPaymentCollectionsBatchSessionsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2370, + "target": 2368, "name": "StorePostPaymentCollectionsBatchSessionsReq", "package": "@medusajs/medusa" } @@ -67787,7 +68858,7 @@ ] }, { - "id": 2373, + "id": 2371, "name": "sessions", "variant": "declaration", "kind": 1024, @@ -67804,7 +68875,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2364, + "target": 2362, "name": "StorePostPaymentCollectionsSessionsReq", "package": "@medusajs/medusa" } @@ -67815,40 +68886,40 @@ { "title": "Constructors", "children": [ - 2371 + 2369 ] }, { "title": "Properties", "children": [ - 2373 + 2371 ] } ] }, { - "id": 2364, + "id": 2362, "name": "StorePostPaymentCollectionsSessionsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2365, + "id": 2363, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2366, + "id": 2364, "name": "new StorePostPaymentCollectionsSessionsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2364, + "target": 2362, "name": "StorePostPaymentCollectionsSessionsReq", "package": "@medusajs/medusa" } @@ -67856,7 +68927,7 @@ ] }, { - "id": 2368, + "id": 2366, "name": "amount", "variant": "declaration", "kind": 1024, @@ -67875,7 +68946,7 @@ } }, { - "id": 2367, + "id": 2365, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -67894,7 +68965,7 @@ } }, { - "id": 2369, + "id": 2367, "name": "session_id", "variant": "declaration", "kind": 1024, @@ -67919,42 +68990,42 @@ { "title": "Constructors", "children": [ - 2365 + 2363 ] }, { "title": "Properties", "children": [ - 2368, - 2367, - 2369 + 2366, + 2365, + 2367 ] } ] }, { - "id": 2554, + "id": 2565, "name": "StorePostReturnsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2555, + "id": 2566, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2556, + "id": 2567, "name": "new StorePostReturnsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2554, + "target": 2565, "name": "StorePostReturnsReq", "package": "@medusajs/medusa" } @@ -67962,7 +69033,7 @@ ] }, { - "id": 2558, + "id": 2569, "name": "items", "variant": "declaration", "kind": 1024, @@ -67979,14 +69050,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4616, + "target": 4643, "name": "Item", "package": "@medusajs/medusa" } } }, { - "id": 2557, + "id": 2568, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -68005,7 +69076,7 @@ } }, { - "id": 2559, + "id": 2570, "name": "return_shipping", "variant": "declaration", "kind": 1024, @@ -68022,7 +69093,7 @@ }, "type": { "type": "reference", - "target": 4623, + "target": 4650, "name": "ReturnShipping", "package": "@medusajs/medusa" } @@ -68032,42 +69103,42 @@ { "title": "Constructors", "children": [ - 2555 + 2566 ] }, { "title": "Properties", "children": [ - 2558, - 2557, - 2559 + 2569, + 2568, + 2570 ] } ] }, { - "id": 2523, + "id": 2524, "name": "StorePostSearchReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2524, + "id": 2525, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2525, + "id": 2526, "name": "new StorePostSearchReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2523, + "target": 2524, "name": "StorePostSearchReq", "package": "@medusajs/medusa" } @@ -68075,7 +69146,7 @@ ] }, { - "id": 2529, + "id": 2530, "name": "filter", "variant": "declaration", "kind": 1024, @@ -68096,7 +69167,7 @@ } }, { - "id": 2528, + "id": 2529, "name": "limit", "variant": "declaration", "kind": 1024, @@ -68117,7 +69188,7 @@ } }, { - "id": 2527, + "id": 2528, "name": "offset", "variant": "declaration", "kind": 1024, @@ -68138,7 +69209,7 @@ } }, { - "id": 2526, + "id": 2527, "name": "q", "variant": "declaration", "kind": 1024, @@ -68163,43 +69234,43 @@ { "title": "Constructors", "children": [ - 2524 + 2525 ] }, { "title": "Properties", "children": [ + 2530, 2529, 2528, - 2527, - 2526 + 2527 ] } ] }, { - "id": 2577, + "id": 2588, "name": "StorePostSwapsReq", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2578, + "id": 2589, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2579, + "id": 2590, "name": "new StorePostSwapsReq", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2577, + "target": 2588, "name": "StorePostSwapsReq", "package": "@medusajs/medusa" } @@ -68207,7 +69278,7 @@ ] }, { - "id": 2582, + "id": 2593, "name": "additional_items", "variant": "declaration", "kind": 1024, @@ -68224,14 +69295,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4635, + "target": 4662, "name": "AdditionalItem", "package": "@medusajs/medusa" } } }, { - "id": 2580, + "id": 2591, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -68250,7 +69321,7 @@ } }, { - "id": 2581, + "id": 2592, "name": "return_items", "variant": "declaration", "kind": 1024, @@ -68267,14 +69338,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4628, + "target": 4655, "name": "Item", "package": "@medusajs/medusa" } } }, { - "id": 2583, + "id": 2594, "name": "return_shipping_option", "variant": "declaration", "kind": 1024, @@ -68299,22 +69370,22 @@ { "title": "Constructors", "children": [ - 2578 + 2589 ] }, { "title": "Properties", "children": [ - 2582, - 2580, - 2581, - 2583 + 2593, + 2591, + 2592, + 2594 ] } ] }, { - "id": 3760, + "id": 3769, "name": "StringComparisonOperator", "variant": "declaration", "kind": 128, @@ -68329,21 +69400,21 @@ }, "children": [ { - "id": 3761, + "id": 3770, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 3762, + "id": 3771, "name": "new StringComparisonOperator", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 3760, + "target": 3769, "name": "StringComparisonOperator", "package": "@medusajs/medusa" } @@ -68351,7 +69422,7 @@ ] }, { - "id": 3767, + "id": 3776, "name": "contains", "variant": "declaration", "kind": 1024, @@ -68372,7 +69443,7 @@ } }, { - "id": 3769, + "id": 3778, "name": "ends_with", "variant": "declaration", "kind": 1024, @@ -68393,7 +69464,7 @@ } }, { - "id": 3764, + "id": 3773, "name": "gt", "variant": "declaration", "kind": 1024, @@ -68414,7 +69485,7 @@ } }, { - "id": 3765, + "id": 3774, "name": "gte", "variant": "declaration", "kind": 1024, @@ -68435,7 +69506,7 @@ } }, { - "id": 3763, + "id": 3772, "name": "lt", "variant": "declaration", "kind": 1024, @@ -68456,7 +69527,7 @@ } }, { - "id": 3766, + "id": 3775, "name": "lte", "variant": "declaration", "kind": 1024, @@ -68477,7 +69548,7 @@ } }, { - "id": 3768, + "id": 3777, "name": "starts_with", "variant": "declaration", "kind": 1024, @@ -68502,46 +69573,46 @@ { "title": "Constructors", "children": [ - 3761 + 3770 ] }, { "title": "Properties", "children": [ - 3767, - 3769, - 3764, - 3765, - 3763, - 3766, - 3768 + 3776, + 3778, + 3773, + 3774, + 3772, + 3775, + 3777 ] } ] }, { - "id": 4811, + "id": 4866, "name": "Tag", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4812, + "id": 4867, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4813, + "id": 4868, "name": "new Tag", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4811, + "target": 4866, "name": "Tag", "package": "@medusajs/medusa" } @@ -68549,7 +69620,7 @@ ] }, { - "id": 4814, + "id": 4869, "name": "id", "variant": "declaration", "kind": 1024, @@ -68570,7 +69641,7 @@ } }, { - "id": 4815, + "id": 4870, "name": "value", "variant": "declaration", "kind": 1024, @@ -68595,20 +69666,20 @@ { "title": "Constructors", "children": [ - 4812 + 4867 ] }, { "title": "Properties", "children": [ - 4814, - 4815 + 4869, + 4870 ] } ] }, { - "id": 3602, + "id": 3611, "name": "TransactionBaseService", "variant": "declaration", "kind": 128, @@ -68617,7 +69688,7 @@ }, "children": [ { - "id": 3603, + "id": 3612, "name": "constructor", "variant": "declaration", "kind": 512, @@ -68626,14 +69697,14 @@ }, "signatures": [ { - "id": 3604, + "id": 3613, "name": "new TransactionBaseService", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 3605, + "id": 3614, "name": "__container__", "variant": "param", "kind": 32768, @@ -68644,7 +69715,7 @@ } }, { - "id": 3606, + "id": 3615, "name": "__configModule__", "variant": "param", "kind": 32768, @@ -68672,7 +69743,7 @@ } }, { - "id": 3607, + "id": 3616, "name": "__moduleDeclaration__", "variant": "param", "kind": 32768, @@ -68702,7 +69773,7 @@ ], "type": { "type": "reference", - "target": 3602, + "target": 3611, "name": "TransactionBaseService", "package": "@medusajs/medusa" } @@ -68710,7 +69781,7 @@ ] }, { - "id": 3613, + "id": 3622, "name": "__configModule__", "variant": "declaration", "kind": 1024, @@ -68740,7 +69811,7 @@ } }, { - "id": 3612, + "id": 3621, "name": "__container__", "variant": "declaration", "kind": 1024, @@ -68754,7 +69825,7 @@ } }, { - "id": 3614, + "id": 3623, "name": "__moduleDeclaration__", "variant": "declaration", "kind": 1024, @@ -68784,7 +69855,7 @@ } }, { - "id": 3608, + "id": 3617, "name": "manager_", "variant": "declaration", "kind": 1024, @@ -68802,7 +69873,7 @@ } }, { - "id": 3609, + "id": 3618, "name": "transactionManager_", "variant": "declaration", "kind": 1024, @@ -68829,7 +69900,7 @@ } }, { - "id": 3610, + "id": 3619, "name": "activeManager_", "variant": "declaration", "kind": 262144, @@ -68837,7 +69908,7 @@ "isProtected": true }, "getSignature": { - "id": 3611, + "id": 3620, "name": "activeManager_", "variant": "signature", "kind": 524288, @@ -68854,7 +69925,7 @@ } }, { - "id": 3623, + "id": 3632, "name": "atomicPhase_", "variant": "declaration", "kind": 2048, @@ -68863,7 +69934,7 @@ }, "signatures": [ { - "id": 3624, + "id": 3633, "name": "atomicPhase_", "variant": "signature", "kind": 4096, @@ -68889,14 +69960,14 @@ }, "typeParameter": [ { - "id": 3625, + "id": 3634, "name": "TResult", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 3626, + "id": 3635, "name": "TError", "variant": "typeParam", "kind": 131072, @@ -68905,7 +69976,7 @@ ], "parameters": [ { - "id": 3627, + "id": 3636, "name": "work", "variant": "param", "kind": 32768, @@ -68921,21 +69992,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3628, + "id": 3637, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3629, + "id": 3638, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3630, + "id": 3639, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -68974,7 +70045,7 @@ } }, { - "id": 3631, + "id": 3640, "name": "isolationOrErrorHandler", "variant": "param", "kind": 32768, @@ -69004,21 +70075,21 @@ { "type": "reflection", "declaration": { - "id": 3632, + "id": 3641, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3633, + "id": 3642, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3634, + "id": 3643, "name": "error", "variant": "param", "kind": 32768, @@ -69065,7 +70136,7 @@ } }, { - "id": 3635, + "id": 3644, "name": "maybeErrorHandlerOrDontFail", "variant": "param", "kind": 32768, @@ -69083,21 +70154,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3636, + "id": 3645, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3637, + "id": 3646, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3638, + "id": 3647, "name": "error", "variant": "param", "kind": 32768, @@ -69163,7 +70234,7 @@ ] }, { - "id": 3618, + "id": 3627, "name": "shouldRetryTransaction_", "variant": "declaration", "kind": 2048, @@ -69172,14 +70243,14 @@ }, "signatures": [ { - "id": 3619, + "id": 3628, "name": "shouldRetryTransaction_", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3620, + "id": 3629, "name": "err", "variant": "param", "kind": 32768, @@ -69209,14 +70280,14 @@ { "type": "reflection", "declaration": { - "id": 3621, + "id": 3630, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3622, + "id": 3631, "name": "code", "variant": "declaration", "kind": 1024, @@ -69231,7 +70302,7 @@ { "title": "Properties", "children": [ - 3622 + 3631 ] } ] @@ -69249,21 +70320,21 @@ ] }, { - "id": 3615, + "id": 3624, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3616, + "id": 3625, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3617, + "id": 3626, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -69283,7 +70354,7 @@ ], "type": { "type": "reference", - "target": 3602, + "target": 3611, "name": "TransactionBaseService", "package": "@medusajs/medusa" } @@ -69295,96 +70366,96 @@ { "title": "Constructors", "children": [ - 3603 + 3612 ] }, { "title": "Properties", "children": [ - 3613, - 3612, - 3614, - 3608, - 3609 + 3622, + 3621, + 3623, + 3617, + 3618 ] }, { "title": "Accessors", "children": [ - 3610 + 3619 ] }, { "title": "Methods", "children": [ - 3623, - 3618, - 3615 + 3632, + 3627, + 3624 ] } ], "extendedBy": [ { "type": "reference", - "target": 2701, + "target": 2712, "name": "IBatchJobStrategy" }, { "type": "reference", - "target": 2745, + "target": 2756, "name": "AbstractBatchJobStrategy" }, { "type": "reference", - "target": 2820, + "target": 2831, "name": "AbstractCartCompletionStrategy" }, { "type": "reference", - "target": 2862, + "target": 2873, "name": "IFileService" }, { "type": "reference", - "target": 2912, + "target": 2923, "name": "AbstractFileService" }, { "type": "reference", - "target": 3069, + "target": 3080, "name": "INotificationService" }, { "type": "reference", - "target": 3111, + "target": 3122, "name": "AbstractNotificationService" }, { "type": "reference", - "target": 3302, + "target": 3311, "name": "PaymentService" }, { "type": "reference", - "target": 3384, + "target": 3393, "name": "AbstractPaymentService" }, { "type": "reference", - "target": 3488, + "target": 3497, "name": "AbstractPriceSelectionStrategy" } ] }, { - "id": 3719, + "id": 3728, "name": "CustomFindOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3722, + "id": 3731, "name": "order", "variant": "declaration", "kind": 1024, @@ -69402,7 +70473,7 @@ } }, { - "id": 3720, + "id": 3729, "name": "select", "variant": "declaration", "kind": 1024, @@ -69450,7 +70521,7 @@ } }, { - "id": 3723, + "id": 3732, "name": "skip", "variant": "declaration", "kind": 1024, @@ -69463,7 +70534,7 @@ } }, { - "id": 3724, + "id": 3733, "name": "take", "variant": "declaration", "kind": 1024, @@ -69476,7 +70547,7 @@ } }, { - "id": 3721, + "id": 3730, "name": "where", "variant": "declaration", "kind": 1024, @@ -69621,24 +70692,24 @@ { "title": "Properties", "children": [ - 3722, - 3720, - 3723, - 3724, - 3721 + 3731, + 3729, + 3732, + 3733, + 3730 ] } ], "typeParameters": [ { - "id": 3725, + "id": 3734, "name": "TModel", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 3726, + "id": 3735, "name": "InKeys", "variant": "typeParam", "kind": 131072, @@ -69657,7 +70728,7 @@ ] }, { - "id": 3746, + "id": 3755, "name": "DeleteResponse", "variant": "declaration", "kind": 256, @@ -69672,7 +70743,7 @@ }, "children": [ { - "id": 3749, + "id": 3758, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -69692,7 +70763,7 @@ "defaultValue": true }, { - "id": 3747, + "id": 3756, "name": "id", "variant": "declaration", "kind": 1024, @@ -69711,7 +70782,7 @@ } }, { - "id": 3748, + "id": 3757, "name": "object", "variant": "declaration", "kind": 1024, @@ -69735,22 +70806,22 @@ { "title": "Properties", "children": [ - 3749, - 3747, - 3748 + 3758, + 3756, + 3757 ] } ] }, { - "id": 3689, + "id": 3698, "name": "FindConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3694, + "id": 3703, "name": "order", "variant": "declaration", "kind": 1024, @@ -69760,20 +70831,20 @@ "type": { "type": "reflection", "declaration": { - "id": 3695, + "id": 3704, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignature": { - "id": 3696, + "id": 3705, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 3697, + "id": 3706, "name": "K", "variant": "param", "kind": 32768, @@ -69802,7 +70873,7 @@ } }, { - "id": 3693, + "id": 3702, "name": "relations", "variant": "declaration", "kind": 1024, @@ -69818,7 +70889,7 @@ } }, { - "id": 3690, + "id": 3699, "name": "select", "variant": "declaration", "kind": 1024, @@ -69840,7 +70911,7 @@ } }, { - "id": 3691, + "id": 3700, "name": "skip", "variant": "declaration", "kind": 1024, @@ -69853,7 +70924,7 @@ } }, { - "id": 3692, + "id": 3701, "name": "take", "variant": "declaration", "kind": 1024, @@ -69870,17 +70941,17 @@ { "title": "Properties", "children": [ - 3694, - 3693, - 3690, - 3691, - 3692 + 3703, + 3702, + 3699, + 3700, + 3701 ] } ], "typeParameters": [ { - "id": 3698, + "id": 3707, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -69889,7 +70960,7 @@ ] }, { - "id": 2970, + "id": 2981, "name": "FulfillmentService", "variant": "declaration", "kind": 256, @@ -69950,7 +71021,7 @@ }, { "kind": "code", - "text": "```ts title=src/services/my-fulfillment.ts\nimport { AbstractFulfillmentService } from \"@medusajs/medusa\"\n\nclass MyFulfillmentService extends AbstractFulfillmentService {\n // methods here...\n}\n```" + "text": "```ts title=src/services/my-fulfillment.ts\nimport { AbstractFulfillmentService } from \"@medusajs/medusa\"\n\nclass MyFulfillmentService extends AbstractFulfillmentService {\n // methods here...\n}\n\nexport default MyFulfillmentService\n```" }, { "kind": "text", @@ -69986,7 +71057,7 @@ }, { "kind": "text", - "text": " property in the class is used when the fulfillment provider is created in the database.\n\nThe value of this property is also used to reference the fulfillment provider throughout Medusa. For example, it is used to [add a fulfillment provider](https://docs.medusajs.com/api/admin#regions_postregionsregionfulfillmentproviders) to a region.\n\n" + "text": " property in the fulfillment provider service is used when the fulfillment provider is added to the database.\n\nThe value of this property is also used to reference the fulfillment provider throughout Medusa. For example, it is used to [add a fulfillment provider](https://docs.medusajs.com/api/admin#regions_postregionsregionfulfillmentproviders) to a region.\n\n" }, { "kind": "code", @@ -70000,14 +71071,14 @@ }, "children": [ { - "id": 2986, + "id": 2997, "name": "calculatePrice", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2987, + "id": 2998, "name": "calculatePrice", "variant": "signature", "kind": 4096, @@ -70086,7 +71157,7 @@ }, "parameters": [ { - "id": 2988, + "id": 2999, "name": "optionData", "variant": "param", "kind": 32768, @@ -70109,13 +71180,13 @@ }, "type": { "type": "reference", - "target": 4701, + "target": 4728, "name": "ShippingOptionData", "package": "@medusajs/medusa" } }, { - "id": 2989, + "id": 3000, "name": "data", "variant": "param", "kind": 32768, @@ -70146,7 +71217,7 @@ "kind": "inline-tag", "tag": "@link", "text": "validateFulfillmentData", - "target": 2975, + "target": 2986, "tsLinkText": "" }, { @@ -70157,13 +71228,13 @@ }, "type": { "type": "reference", - "target": 4702, + "target": 4729, "name": "FulfillmentProviderData", "package": "@medusajs/medusa" } }, { - "id": 2990, + "id": 3001, "name": "cart", "variant": "param", "kind": 32768, @@ -70206,14 +71277,14 @@ ] }, { - "id": 2983, + "id": 2994, "name": "canCalculate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2984, + "id": 2995, "name": "canCalculate", "variant": "signature", "kind": 4096, @@ -70261,7 +71332,7 @@ "kind": "inline-tag", "tag": "@link", "text": "calculatePrice", - "target": 2986, + "target": 2997, "tsLinkText": "" }, { @@ -70299,7 +71370,7 @@ }, "parameters": [ { - "id": 2985, + "id": 2996, "name": "data", "variant": "param", "kind": 32768, @@ -70322,7 +71393,7 @@ }, "type": { "type": "reference", - "target": 4701, + "target": 4728, "name": "ShippingOptionData", "package": "@medusajs/medusa" } @@ -70347,14 +71418,14 @@ ] }, { - "id": 2997, + "id": 3008, "name": "cancelFulfillment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2998, + "id": 3009, "name": "cancelFulfillment", "variant": "signature", "kind": 4096, @@ -70393,7 +71464,7 @@ }, "parameters": [ { - "id": 2999, + "id": 3010, "name": "fulfillmentData", "variant": "param", "kind": 32768, @@ -70416,7 +71487,7 @@ }, "type": { "type": "reference", - "target": 4702, + "target": 4729, "name": "FulfillmentProviderData", "package": "@medusajs/medusa" } @@ -70441,14 +71512,14 @@ ] }, { - "id": 2991, + "id": 3002, "name": "createFulfillment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2992, + "id": 3003, "name": "createFulfillment", "variant": "signature", "kind": 4096, @@ -70503,7 +71574,7 @@ }, "parameters": [ { - "id": 2993, + "id": 3004, "name": "data", "variant": "param", "kind": 32768, @@ -70526,13 +71597,13 @@ }, "type": { "type": "reference", - "target": 4703, + "target": 4730, "name": "ShippingMethodData", "package": "@medusajs/medusa" } }, { - "id": 2994, + "id": 3005, "name": "items", "variant": "param", "kind": 32768, @@ -70559,7 +71630,7 @@ } }, { - "id": 2995, + "id": 3006, "name": "order", "variant": "param", "kind": 32768, @@ -70615,7 +71686,7 @@ } }, { - "id": 2996, + "id": 3007, "name": "fulfillment", "variant": "param", "kind": 32768, @@ -70648,7 +71719,7 @@ "typeArguments": [ { "type": "reference", - "target": 4702, + "target": 4729, "name": "FulfillmentProviderData", "package": "@medusajs/medusa" } @@ -70660,14 +71731,14 @@ ] }, { - "id": 3000, + "id": 3011, "name": "createReturn", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3001, + "id": 3012, "name": "createReturn", "variant": "signature", "kind": 4096, @@ -70722,7 +71793,7 @@ }, "parameters": [ { - "id": 3002, + "id": 3013, "name": "returnOrder", "variant": "param", "kind": 32768, @@ -70737,7 +71808,7 @@ }, "type": { "type": "reference", - "target": 4704, + "target": 4731, "name": "CreateReturnType", "package": "@medusajs/medusa" } @@ -70777,14 +71848,14 @@ ] }, { - "id": 3003, + "id": 3014, "name": "getFulfillmentDocuments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3004, + "id": 3015, "name": "getFulfillmentDocuments", "variant": "signature", "kind": 4096, @@ -70819,7 +71890,7 @@ }, "parameters": [ { - "id": 3005, + "id": 3016, "name": "data", "variant": "param", "kind": 32768, @@ -70842,7 +71913,7 @@ }, "type": { "type": "reference", - "target": 4702, + "target": 4729, "name": "FulfillmentProviderData", "package": "@medusajs/medusa" } @@ -70867,14 +71938,14 @@ ] }, { - "id": 2973, + "id": 2984, "name": "getFulfillmentOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2974, + "id": 2985, "name": "getFulfillmentOptions", "variant": "signature", "kind": 4096, @@ -70937,14 +72008,14 @@ ] }, { - "id": 3006, + "id": 3017, "name": "getReturnDocuments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3007, + "id": 3018, "name": "getReturnDocuments", "variant": "signature", "kind": 4096, @@ -70979,7 +72050,7 @@ }, "parameters": [ { - "id": 3008, + "id": 3019, "name": "data", "variant": "param", "kind": 32768, @@ -71032,14 +72103,14 @@ ] }, { - "id": 3009, + "id": 3020, "name": "getShipmentDocuments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3010, + "id": 3021, "name": "getShipmentDocuments", "variant": "signature", "kind": 4096, @@ -71074,7 +72145,7 @@ }, "parameters": [ { - "id": 3011, + "id": 3022, "name": "data", "variant": "param", "kind": 32768, @@ -71135,14 +72206,14 @@ ] }, { - "id": 3012, + "id": 3023, "name": "retrieveDocuments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3013, + "id": 3024, "name": "retrieveDocuments", "variant": "signature", "kind": 4096, @@ -71177,7 +72248,7 @@ }, "parameters": [ { - "id": 3014, + "id": 3025, "name": "fulfillmentData", "variant": "param", "kind": 32768, @@ -71200,13 +72271,13 @@ }, "type": { "type": "reference", - "target": 4702, + "target": 4729, "name": "FulfillmentProviderData", "package": "@medusajs/medusa" } }, { - "id": 3015, + "id": 3026, "name": "documentType", "variant": "param", "kind": 32768, @@ -71253,14 +72324,14 @@ ] }, { - "id": 2975, + "id": 2986, "name": "validateFulfillmentData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2976, + "id": 2987, "name": "validateFulfillmentData", "variant": "signature", "kind": 4096, @@ -71300,7 +72371,7 @@ "kind": "inline-tag", "tag": "@link", "text": "calculatePrice", - "target": 2986, + "target": 2997, "tsLinkText": "" }, { @@ -71322,7 +72393,7 @@ }, "parameters": [ { - "id": 2977, + "id": 2988, "name": "optionData", "variant": "param", "kind": 32768, @@ -71337,13 +72408,13 @@ }, "type": { "type": "reference", - "target": 4701, + "target": 4728, "name": "ShippingOptionData", "package": "@medusajs/medusa" } }, { - "id": 2978, + "id": 2989, "name": "data", "variant": "param", "kind": 32768, @@ -71366,13 +72437,13 @@ }, "type": { "type": "reference", - "target": 4702, + "target": 4729, "name": "FulfillmentProviderData", "package": "@medusajs/medusa" } }, { - "id": 2979, + "id": 2990, "name": "cart", "variant": "param", "kind": 32768, @@ -71430,14 +72501,14 @@ ] }, { - "id": 2980, + "id": 2991, "name": "validateOption", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2981, + "id": 2992, "name": "validateOption", "variant": "signature", "kind": 4096, @@ -71492,7 +72563,7 @@ }, "parameters": [ { - "id": 2982, + "id": 2993, "name": "data", "variant": "param", "kind": 32768, @@ -71507,7 +72578,7 @@ }, "type": { "type": "reference", - "target": 4701, + "target": 4728, "name": "ShippingOptionData", "package": "@medusajs/medusa" } @@ -71536,38 +72607,38 @@ { "title": "Methods", "children": [ - 2986, - 2983, 2997, - 2991, - 3000, - 3003, - 2973, - 3006, - 3009, - 3012, - 2975, - 2980 + 2994, + 3008, + 3002, + 3011, + 3014, + 2984, + 3017, + 3020, + 3023, + 2986, + 2991 ] } ], "implementedBy": [ { "type": "reference", - "target": 3016, + "target": 3027, "name": "AbstractFulfillmentService" } ] }, { - "id": 2701, + "id": 2712, "name": "IBatchJobStrategy", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2719, + "id": 2730, "name": "__configModule__", "variant": "declaration", "kind": 1024, @@ -71597,12 +72668,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3613, + "target": 3622, "name": "TransactionBaseService.__configModule__" } }, { - "id": 2718, + "id": 2729, "name": "__container__", "variant": "declaration", "kind": 1024, @@ -71616,12 +72687,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3612, + "target": 3621, "name": "TransactionBaseService.__container__" } }, { - "id": 2720, + "id": 2731, "name": "__moduleDeclaration__", "variant": "declaration", "kind": 1024, @@ -71651,12 +72722,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3614, + "target": 3623, "name": "TransactionBaseService.__moduleDeclaration__" } }, { - "id": 2714, + "id": 2725, "name": "manager_", "variant": "declaration", "kind": 1024, @@ -71674,12 +72745,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3608, + "target": 3617, "name": "TransactionBaseService.manager_" } }, { - "id": 2715, + "id": 2726, "name": "transactionManager_", "variant": "declaration", "kind": 1024, @@ -71706,12 +72777,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3609, + "target": 3618, "name": "TransactionBaseService.transactionManager_" } }, { - "id": 2716, + "id": 2727, "name": "activeManager_", "variant": "declaration", "kind": 262144, @@ -71719,7 +72790,7 @@ "isProtected": true }, "getSignature": { - "id": 2717, + "id": 2728, "name": "activeManager_", "variant": "signature", "kind": 524288, @@ -71741,12 +72812,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3610, + "target": 3619, "name": "TransactionBaseService.activeManager_" } }, { - "id": 2729, + "id": 2740, "name": "atomicPhase_", "variant": "declaration", "kind": 2048, @@ -71755,7 +72826,7 @@ }, "signatures": [ { - "id": 2730, + "id": 2741, "name": "atomicPhase_", "variant": "signature", "kind": 4096, @@ -71781,14 +72852,14 @@ }, "typeParameter": [ { - "id": 2731, + "id": 2742, "name": "TResult", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 2732, + "id": 2743, "name": "TError", "variant": "typeParam", "kind": 131072, @@ -71797,7 +72868,7 @@ ], "parameters": [ { - "id": 2733, + "id": 2744, "name": "work", "variant": "param", "kind": 32768, @@ -71813,21 +72884,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2734, + "id": 2745, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2735, + "id": 2746, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2736, + "id": 2747, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -71866,7 +72937,7 @@ } }, { - "id": 2737, + "id": 2748, "name": "isolationOrErrorHandler", "variant": "param", "kind": 32768, @@ -71896,21 +72967,21 @@ { "type": "reflection", "declaration": { - "id": 2738, + "id": 2749, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2739, + "id": 2750, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2740, + "id": 2751, "name": "error", "variant": "param", "kind": 32768, @@ -71957,7 +73028,7 @@ } }, { - "id": 2741, + "id": 2752, "name": "maybeErrorHandlerOrDontFail", "variant": "param", "kind": 32768, @@ -71975,21 +73046,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2742, + "id": 2753, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2743, + "id": 2754, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2744, + "id": 2755, "name": "error", "variant": "param", "kind": 32768, @@ -72053,26 +73124,26 @@ }, "inheritedFrom": { "type": "reference", - "target": 3624, + "target": 3633, "name": "TransactionBaseService.atomicPhase_" } } ], "inheritedFrom": { "type": "reference", - "target": 3623, + "target": 3632, "name": "TransactionBaseService.atomicPhase_" } }, { - "id": 2712, + "id": 2723, "name": "buildTemplate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2713, + "id": 2724, "name": "buildTemplate", "variant": "signature", "kind": 4096, @@ -72104,14 +73175,14 @@ ] }, { - "id": 2706, + "id": 2717, "name": "preProcessBatchJob", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2707, + "id": 2718, "name": "preProcessBatchJob", "variant": "signature", "kind": 4096, @@ -72126,7 +73197,7 @@ }, "parameters": [ { - "id": 2708, + "id": 2719, "name": "batchJobId", "variant": "param", "kind": 32768, @@ -72156,14 +73227,14 @@ ] }, { - "id": 2702, + "id": 2713, "name": "prepareBatchJobForProcessing", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2703, + "id": 2714, "name": "prepareBatchJobForProcessing", "variant": "signature", "kind": 4096, @@ -72178,20 +73249,20 @@ }, "parameters": [ { - "id": 2704, + "id": 2715, "name": "batchJobEntity", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3649, + "target": 3658, "name": "CreateBatchJobInput", "package": "@medusajs/medusa" } }, { - "id": 2705, + "id": 2716, "name": "req", "variant": "param", "kind": 32768, @@ -72217,7 +73288,7 @@ "typeArguments": [ { "type": "reference", - "target": 3649, + "target": 3658, "name": "CreateBatchJobInput", "package": "@medusajs/medusa" } @@ -72229,14 +73300,14 @@ ] }, { - "id": 2709, + "id": 2720, "name": "processJob", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2710, + "id": 2721, "name": "processJob", "variant": "signature", "kind": 4096, @@ -72251,7 +73322,7 @@ }, "parameters": [ { - "id": 2711, + "id": 2722, "name": "batchJobId", "variant": "param", "kind": 32768, @@ -72281,7 +73352,7 @@ ] }, { - "id": 2724, + "id": 2735, "name": "shouldRetryTransaction_", "variant": "declaration", "kind": 2048, @@ -72290,14 +73361,14 @@ }, "signatures": [ { - "id": 2725, + "id": 2736, "name": "shouldRetryTransaction_", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2726, + "id": 2737, "name": "err", "variant": "param", "kind": 32768, @@ -72327,14 +73398,14 @@ { "type": "reflection", "declaration": { - "id": 2727, + "id": 2738, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2728, + "id": 2739, "name": "code", "variant": "declaration", "kind": 1024, @@ -72349,7 +73420,7 @@ { "title": "Properties", "children": [ - 2728 + 2739 ] } ] @@ -72365,33 +73436,33 @@ }, "inheritedFrom": { "type": "reference", - "target": 3619, + "target": 3628, "name": "TransactionBaseService.shouldRetryTransaction_" } } ], "inheritedFrom": { "type": "reference", - "target": 3618, + "target": 3627, "name": "TransactionBaseService.shouldRetryTransaction_" } }, { - "id": 2721, + "id": 2732, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2722, + "id": 2733, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2723, + "id": 2734, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -72411,20 +73482,20 @@ ], "type": { "type": "reference", - "target": 2701, + "target": 2712, "name": "IBatchJobStrategy", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3616, + "target": 3625, "name": "TransactionBaseService.withTransaction" } } ], "inheritedFrom": { "type": "reference", - "target": 3615, + "target": 3624, "name": "TransactionBaseService.withTransaction" } } @@ -72433,36 +73504,36 @@ { "title": "Properties", "children": [ - 2719, - 2718, - 2720, - 2714, - 2715 + 2730, + 2729, + 2731, + 2725, + 2726 ] }, { "title": "Accessors", "children": [ - 2716 + 2727 ] }, { "title": "Methods", "children": [ - 2729, - 2712, - 2706, - 2702, - 2709, - 2724, - 2721 + 2740, + 2723, + 2717, + 2713, + 2720, + 2735, + 2732 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3602, + "target": 3611, "name": "TransactionBaseService", "package": "@medusajs/medusa" } @@ -72470,27 +73541,27 @@ "implementedBy": [ { "type": "reference", - "target": 2745, + "target": 2756, "name": "AbstractBatchJobStrategy" } ] }, { - "id": 2814, + "id": 2825, "name": "ICartCompletionStrategy", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2815, + "id": 2826, "name": "complete", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2816, + "id": 2827, "name": "complete", "variant": "signature", "kind": 4096, @@ -72516,7 +73587,7 @@ }, "parameters": [ { - "id": 2817, + "id": 2828, "name": "cartId", "variant": "param", "kind": 32768, @@ -72535,7 +73606,7 @@ } }, { - "id": 2818, + "id": 2829, "name": "idempotencyKey", "variant": "param", "kind": 32768, @@ -72559,7 +73630,7 @@ } }, { - "id": 2819, + "id": 2830, "name": "context", "variant": "param", "kind": 32768, @@ -72574,7 +73645,7 @@ }, "type": { "type": "reference", - "target": 4672, + "target": 4699, "name": "RequestContext", "package": "@medusajs/medusa" } @@ -72589,7 +73660,7 @@ "typeArguments": [ { "type": "reference", - "target": 2810, + "target": 2821, "name": "CartCompletionResponse", "package": "@medusajs/medusa" } @@ -72605,27 +73676,27 @@ { "title": "Methods", "children": [ - 2815 + 2826 ] } ], "implementedBy": [ { "type": "reference", - "target": 2820, + "target": 2831, "name": "AbstractCartCompletionStrategy" } ] }, { - "id": 2862, + "id": 2873, "name": "IFileService", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2886, + "id": 2897, "name": "__configModule__", "variant": "declaration", "kind": 1024, @@ -72655,12 +73726,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3613, + "target": 3622, "name": "TransactionBaseService.__configModule__" } }, { - "id": 2885, + "id": 2896, "name": "__container__", "variant": "declaration", "kind": 1024, @@ -72674,12 +73745,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3612, + "target": 3621, "name": "TransactionBaseService.__container__" } }, { - "id": 2887, + "id": 2898, "name": "__moduleDeclaration__", "variant": "declaration", "kind": 1024, @@ -72709,12 +73780,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3614, + "target": 3623, "name": "TransactionBaseService.__moduleDeclaration__" } }, { - "id": 2881, + "id": 2892, "name": "manager_", "variant": "declaration", "kind": 1024, @@ -72732,12 +73803,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3608, + "target": 3617, "name": "TransactionBaseService.manager_" } }, { - "id": 2882, + "id": 2893, "name": "transactionManager_", "variant": "declaration", "kind": 1024, @@ -72764,12 +73835,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3609, + "target": 3618, "name": "TransactionBaseService.transactionManager_" } }, { - "id": 2883, + "id": 2894, "name": "activeManager_", "variant": "declaration", "kind": 262144, @@ -72777,7 +73848,7 @@ "isProtected": true }, "getSignature": { - "id": 2884, + "id": 2895, "name": "activeManager_", "variant": "signature", "kind": 524288, @@ -72799,12 +73870,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3610, + "target": 3619, "name": "TransactionBaseService.activeManager_" } }, { - "id": 2896, + "id": 2907, "name": "atomicPhase_", "variant": "declaration", "kind": 2048, @@ -72813,7 +73884,7 @@ }, "signatures": [ { - "id": 2897, + "id": 2908, "name": "atomicPhase_", "variant": "signature", "kind": 4096, @@ -72839,14 +73910,14 @@ }, "typeParameter": [ { - "id": 2898, + "id": 2909, "name": "TResult", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 2899, + "id": 2910, "name": "TError", "variant": "typeParam", "kind": 131072, @@ -72855,7 +73926,7 @@ ], "parameters": [ { - "id": 2900, + "id": 2911, "name": "work", "variant": "param", "kind": 32768, @@ -72871,21 +73942,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2901, + "id": 2912, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2902, + "id": 2913, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2903, + "id": 2914, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -72924,7 +73995,7 @@ } }, { - "id": 2904, + "id": 2915, "name": "isolationOrErrorHandler", "variant": "param", "kind": 32768, @@ -72954,21 +74025,21 @@ { "type": "reflection", "declaration": { - "id": 2905, + "id": 2916, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2906, + "id": 2917, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2907, + "id": 2918, "name": "error", "variant": "param", "kind": 32768, @@ -73015,7 +74086,7 @@ } }, { - "id": 2908, + "id": 2919, "name": "maybeErrorHandlerOrDontFail", "variant": "param", "kind": 32768, @@ -73033,21 +74104,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2909, + "id": 2920, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2910, + "id": 2921, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2911, + "id": 2922, "name": "error", "variant": "param", "kind": 32768, @@ -73111,26 +74182,26 @@ }, "inheritedFrom": { "type": "reference", - "target": 3624, + "target": 3633, "name": "TransactionBaseService.atomicPhase_" } } ], "inheritedFrom": { "type": "reference", - "target": 3623, + "target": 3632, "name": "TransactionBaseService.atomicPhase_" } }, { - "id": 2869, + "id": 2880, "name": "delete", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2870, + "id": 2881, "name": "delete", "variant": "signature", "kind": 4096, @@ -73145,7 +74216,7 @@ }, "parameters": [ { - "id": 2871, + "id": 2882, "name": "fileData", "variant": "param", "kind": 32768, @@ -73160,7 +74231,7 @@ }, "type": { "type": "reference", - "target": 4675, + "target": 4702, "name": "DeleteFileType", "package": "@medusajs/types" } @@ -73185,14 +74256,14 @@ ] }, { - "id": 2875, + "id": 2886, "name": "getDownloadStream", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2876, + "id": 2887, "name": "getDownloadStream", "variant": "signature", "kind": 4096, @@ -73218,7 +74289,7 @@ }, "parameters": [ { - "id": 2877, + "id": 2888, "name": "fileData", "variant": "param", "kind": 32768, @@ -73233,7 +74304,7 @@ }, "type": { "type": "reference", - "target": 4695, + "target": 4722, "name": "GetUploadedFileType", "package": "@medusajs/types" } @@ -73264,14 +74335,14 @@ ] }, { - "id": 2878, + "id": 2889, "name": "getPresignedDownloadUrl", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2879, + "id": 2890, "name": "getPresignedDownloadUrl", "variant": "signature", "kind": 4096, @@ -73297,7 +74368,7 @@ }, "parameters": [ { - "id": 2880, + "id": 2891, "name": "fileData", "variant": "param", "kind": 32768, @@ -73312,7 +74383,7 @@ }, "type": { "type": "reference", - "target": 4695, + "target": 4722, "name": "GetUploadedFileType", "package": "@medusajs/types" } @@ -73337,14 +74408,14 @@ ] }, { - "id": 2872, + "id": 2883, "name": "getUploadStreamDescriptor", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2873, + "id": 2884, "name": "getUploadStreamDescriptor", "variant": "signature", "kind": 4096, @@ -73359,7 +74430,7 @@ }, "parameters": [ { - "id": 2874, + "id": 2885, "name": "fileData", "variant": "param", "kind": 32768, @@ -73374,7 +74445,7 @@ }, "type": { "type": "reference", - "target": 4680, + "target": 4707, "name": "UploadStreamDescriptorType", "package": "@medusajs/types" } @@ -73389,7 +74460,7 @@ "typeArguments": [ { "type": "reference", - "target": 4687, + "target": 4714, "name": "FileServiceGetUploadStreamResult", "package": "@medusajs/types" } @@ -73401,7 +74472,7 @@ ] }, { - "id": 2891, + "id": 2902, "name": "shouldRetryTransaction_", "variant": "declaration", "kind": 2048, @@ -73410,14 +74481,14 @@ }, "signatures": [ { - "id": 2892, + "id": 2903, "name": "shouldRetryTransaction_", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2893, + "id": 2904, "name": "err", "variant": "param", "kind": 32768, @@ -73447,14 +74518,14 @@ { "type": "reflection", "declaration": { - "id": 2894, + "id": 2905, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2895, + "id": 2906, "name": "code", "variant": "declaration", "kind": 1024, @@ -73469,7 +74540,7 @@ { "title": "Properties", "children": [ - 2895 + 2906 ] } ] @@ -73485,26 +74556,26 @@ }, "inheritedFrom": { "type": "reference", - "target": 3619, + "target": 3628, "name": "TransactionBaseService.shouldRetryTransaction_" } } ], "inheritedFrom": { "type": "reference", - "target": 3618, + "target": 3627, "name": "TransactionBaseService.shouldRetryTransaction_" } }, { - "id": 2863, + "id": 2874, "name": "upload", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2864, + "id": 2875, "name": "upload", "variant": "signature", "kind": 4096, @@ -73519,7 +74590,7 @@ }, "parameters": [ { - "id": 2865, + "id": 2876, "name": "file", "variant": "param", "kind": 32768, @@ -73553,7 +74624,7 @@ "typeArguments": [ { "type": "reference", - "target": 4586, + "target": 4613, "name": "FileServiceUploadResult", "package": "@medusajs/types" } @@ -73565,14 +74636,14 @@ ] }, { - "id": 2866, + "id": 2877, "name": "uploadProtected", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2867, + "id": 2878, "name": "uploadProtected", "variant": "signature", "kind": 4096, @@ -73587,7 +74658,7 @@ }, "parameters": [ { - "id": 2868, + "id": 2879, "name": "file", "variant": "param", "kind": 32768, @@ -73621,7 +74692,7 @@ "typeArguments": [ { "type": "reference", - "target": 4586, + "target": 4613, "name": "FileServiceUploadResult", "package": "@medusajs/types" } @@ -73633,21 +74704,21 @@ ] }, { - "id": 2888, + "id": 2899, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2889, + "id": 2900, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2890, + "id": 2901, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -73667,20 +74738,20 @@ ], "type": { "type": "reference", - "target": 2862, + "target": 2873, "name": "IFileService", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3616, + "target": 3625, "name": "TransactionBaseService.withTransaction" } } ], "inheritedFrom": { "type": "reference", - "target": 3615, + "target": 3624, "name": "TransactionBaseService.withTransaction" } } @@ -73689,38 +74760,38 @@ { "title": "Properties", "children": [ - 2886, - 2885, - 2887, - 2881, - 2882 + 2897, + 2896, + 2898, + 2892, + 2893 ] }, { "title": "Accessors", "children": [ - 2883 + 2894 ] }, { "title": "Methods", "children": [ - 2896, - 2869, - 2875, - 2878, - 2872, - 2891, - 2863, - 2866, - 2888 + 2907, + 2880, + 2886, + 2889, + 2883, + 2902, + 2874, + 2877, + 2899 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3602, + "target": 3611, "name": "TransactionBaseService", "package": "@medusajs/medusa" } @@ -73728,20 +74799,20 @@ "implementedBy": [ { "type": "reference", - "target": 2912, + "target": 2923, "name": "AbstractFileService" } ] }, { - "id": 3069, + "id": 3080, "name": "INotificationService", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3085, + "id": 3096, "name": "__configModule__", "variant": "declaration", "kind": 1024, @@ -73771,12 +74842,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3613, + "target": 3622, "name": "TransactionBaseService.__configModule__" } }, { - "id": 3084, + "id": 3095, "name": "__container__", "variant": "declaration", "kind": 1024, @@ -73790,12 +74861,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3612, + "target": 3621, "name": "TransactionBaseService.__container__" } }, { - "id": 3086, + "id": 3097, "name": "__moduleDeclaration__", "variant": "declaration", "kind": 1024, @@ -73825,12 +74896,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3614, + "target": 3623, "name": "TransactionBaseService.__moduleDeclaration__" } }, { - "id": 3080, + "id": 3091, "name": "manager_", "variant": "declaration", "kind": 1024, @@ -73848,12 +74919,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3608, + "target": 3617, "name": "TransactionBaseService.manager_" } }, { - "id": 3081, + "id": 3092, "name": "transactionManager_", "variant": "declaration", "kind": 1024, @@ -73880,12 +74951,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3609, + "target": 3618, "name": "TransactionBaseService.transactionManager_" } }, { - "id": 3082, + "id": 3093, "name": "activeManager_", "variant": "declaration", "kind": 262144, @@ -73893,7 +74964,7 @@ "isProtected": true }, "getSignature": { - "id": 3083, + "id": 3094, "name": "activeManager_", "variant": "signature", "kind": 524288, @@ -73915,12 +74986,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3610, + "target": 3619, "name": "TransactionBaseService.activeManager_" } }, { - "id": 3095, + "id": 3106, "name": "atomicPhase_", "variant": "declaration", "kind": 2048, @@ -73929,7 +75000,7 @@ }, "signatures": [ { - "id": 3096, + "id": 3107, "name": "atomicPhase_", "variant": "signature", "kind": 4096, @@ -73955,14 +75026,14 @@ }, "typeParameter": [ { - "id": 3097, + "id": 3108, "name": "TResult", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 3098, + "id": 3109, "name": "TError", "variant": "typeParam", "kind": 131072, @@ -73971,7 +75042,7 @@ ], "parameters": [ { - "id": 3099, + "id": 3110, "name": "work", "variant": "param", "kind": 32768, @@ -73987,21 +75058,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3100, + "id": 3111, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3101, + "id": 3112, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3102, + "id": 3113, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -74040,7 +75111,7 @@ } }, { - "id": 3103, + "id": 3114, "name": "isolationOrErrorHandler", "variant": "param", "kind": 32768, @@ -74070,21 +75141,21 @@ { "type": "reflection", "declaration": { - "id": 3104, + "id": 3115, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3105, + "id": 3116, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3106, + "id": 3117, "name": "error", "variant": "param", "kind": 32768, @@ -74131,7 +75202,7 @@ } }, { - "id": 3107, + "id": 3118, "name": "maybeErrorHandlerOrDontFail", "variant": "param", "kind": 32768, @@ -74149,21 +75220,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3108, + "id": 3119, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3109, + "id": 3120, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3110, + "id": 3121, "name": "error", "variant": "param", "kind": 32768, @@ -74227,33 +75298,33 @@ }, "inheritedFrom": { "type": "reference", - "target": 3624, + "target": 3633, "name": "TransactionBaseService.atomicPhase_" } } ], "inheritedFrom": { "type": "reference", - "target": 3623, + "target": 3632, "name": "TransactionBaseService.atomicPhase_" } }, { - "id": 3075, + "id": 3086, "name": "resendNotification", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3076, + "id": 3087, "name": "resendNotification", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3077, + "id": 3088, "name": "notification", "variant": "param", "kind": 32768, @@ -74264,7 +75335,7 @@ } }, { - "id": 3078, + "id": 3089, "name": "config", "variant": "param", "kind": 32768, @@ -74275,7 +75346,7 @@ } }, { - "id": 3079, + "id": 3090, "name": "attachmentGenerator", "variant": "param", "kind": 32768, @@ -74295,7 +75366,7 @@ "typeArguments": [ { "type": "reference", - "target": 4716, + "target": 4743, "name": "ReturnedData", "package": "@medusajs/medusa" } @@ -74307,21 +75378,21 @@ ] }, { - "id": 3070, + "id": 3081, "name": "sendNotification", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3071, + "id": 3082, "name": "sendNotification", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3072, + "id": 3083, "name": "event", "variant": "param", "kind": 32768, @@ -74332,7 +75403,7 @@ } }, { - "id": 3073, + "id": 3084, "name": "data", "variant": "param", "kind": 32768, @@ -74343,7 +75414,7 @@ } }, { - "id": 3074, + "id": 3085, "name": "attachmentGenerator", "variant": "param", "kind": 32768, @@ -74363,7 +75434,7 @@ "typeArguments": [ { "type": "reference", - "target": 4716, + "target": 4743, "name": "ReturnedData", "package": "@medusajs/medusa" } @@ -74375,7 +75446,7 @@ ] }, { - "id": 3090, + "id": 3101, "name": "shouldRetryTransaction_", "variant": "declaration", "kind": 2048, @@ -74384,14 +75455,14 @@ }, "signatures": [ { - "id": 3091, + "id": 3102, "name": "shouldRetryTransaction_", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3092, + "id": 3103, "name": "err", "variant": "param", "kind": 32768, @@ -74421,14 +75492,14 @@ { "type": "reflection", "declaration": { - "id": 3093, + "id": 3104, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3094, + "id": 3105, "name": "code", "variant": "declaration", "kind": 1024, @@ -74443,7 +75514,7 @@ { "title": "Properties", "children": [ - 3094 + 3105 ] } ] @@ -74459,33 +75530,33 @@ }, "inheritedFrom": { "type": "reference", - "target": 3619, + "target": 3628, "name": "TransactionBaseService.shouldRetryTransaction_" } } ], "inheritedFrom": { "type": "reference", - "target": 3618, + "target": 3627, "name": "TransactionBaseService.shouldRetryTransaction_" } }, { - "id": 3087, + "id": 3098, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3088, + "id": 3099, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3089, + "id": 3100, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -74505,20 +75576,20 @@ ], "type": { "type": "reference", - "target": 3069, + "target": 3080, "name": "INotificationService", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3616, + "target": 3625, "name": "TransactionBaseService.withTransaction" } } ], "inheritedFrom": { "type": "reference", - "target": 3615, + "target": 3624, "name": "TransactionBaseService.withTransaction" } } @@ -74527,34 +75598,34 @@ { "title": "Properties", "children": [ - 3085, - 3084, - 3086, - 3080, - 3081 + 3096, + 3095, + 3097, + 3091, + 3092 ] }, { "title": "Accessors", "children": [ - 3082 + 3093 ] }, { "title": "Methods", "children": [ - 3095, - 3075, - 3070, - 3090, - 3087 + 3106, + 3086, + 3081, + 3101, + 3098 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3602, + "target": 3611, "name": "TransactionBaseService", "package": "@medusajs/medusa" } @@ -74562,27 +75633,27 @@ "implementedBy": [ { "type": "reference", - "target": 3111, + "target": 3122, "name": "AbstractNotificationService" } ] }, { - "id": 3474, + "id": 3483, "name": "IPriceSelectionStrategy", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3475, + "id": 3484, "name": "calculateVariantPrice", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3476, + "id": 3485, "name": "calculateVariantPrice", "variant": "signature", "kind": 4096, @@ -74608,7 +75679,7 @@ }, "parameters": [ { - "id": 3477, + "id": 3486, "name": "data", "variant": "param", "kind": 32768, @@ -74618,14 +75689,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 3478, + "id": 3487, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3480, + "id": 3489, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -74638,7 +75709,7 @@ } }, { - "id": 3479, + "id": 3488, "name": "variantId", "variant": "declaration", "kind": 1024, @@ -74653,8 +75724,8 @@ { "title": "Properties", "children": [ - 3480, - 3479 + 3489, + 3488 ] } ] @@ -74663,7 +75734,7 @@ } }, { - "id": 3481, + "id": 3490, "name": "context", "variant": "param", "kind": 32768, @@ -74678,7 +75749,7 @@ }, "type": { "type": "reference", - "target": 3536, + "target": 3545, "name": "PriceSelectionContext", "package": "@medusajs/medusa" } @@ -74704,7 +75775,7 @@ }, { "type": "reference", - "target": 3552, + "target": 3561, "name": "PriceSelectionResult", "package": "@medusajs/medusa" } @@ -74720,14 +75791,14 @@ ] }, { - "id": 3482, + "id": 3491, "name": "onVariantsPricesUpdate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3483, + "id": 3492, "name": "onVariantsPricesUpdate", "variant": "signature", "kind": 4096, @@ -74742,7 +75813,7 @@ }, "parameters": [ { - "id": 3484, + "id": 3493, "name": "variantIds", "variant": "param", "kind": 32768, @@ -74783,21 +75854,21 @@ ] }, { - "id": 3485, + "id": 3494, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3486, + "id": 3495, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3487, + "id": 3496, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -74817,20 +75888,20 @@ ], "type": { "type": "reference", - "target": 3474, + "target": 3483, "name": "IPriceSelectionStrategy", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 4735, + "target": 4762, "name": "ITransactionBaseService.withTransaction" } } ], "inheritedFrom": { "type": "reference", - "target": 4734, + "target": 4761, "name": "ITransactionBaseService.withTransaction" } } @@ -74839,16 +75910,16 @@ { "title": "Methods", "children": [ - 3475, - 3482, - 3485 + 3484, + 3491, + 3494 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4733, + "target": 4760, "name": "ITransactionBaseService", "package": "@medusajs/types" } @@ -74856,27 +75927,27 @@ "implementedBy": [ { "type": "reference", - "target": 3488, + "target": 3497, "name": "AbstractPriceSelectionStrategy" } ] }, { - "id": 3563, + "id": 3572, "name": "ITaxCalculationStrategy", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3564, + "id": 3573, "name": "calculate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3565, + "id": 3574, "name": "calculate", "variant": "signature", "kind": 4096, @@ -74902,7 +75973,7 @@ }, "parameters": [ { - "id": 3566, + "id": 3575, "name": "items", "variant": "param", "kind": 32768, @@ -74929,7 +76000,7 @@ } }, { - "id": 3567, + "id": 3576, "name": "taxLines", "variant": "param", "kind": 32768, @@ -74970,7 +76041,7 @@ } }, { - "id": 3568, + "id": 3577, "name": "calculationContext", "variant": "param", "kind": 32768, @@ -74985,7 +76056,7 @@ }, "type": { "type": "reference", - "target": 3577, + "target": 3586, "name": "TaxCalculationContext", "package": "@medusajs/medusa" } @@ -75014,13 +76085,13 @@ { "title": "Methods", "children": [ - 3564 + 3573 ] } ] }, { - "id": 3585, + "id": 3594, "name": "ITaxService", "variant": "declaration", "kind": 256, @@ -75043,14 +76114,14 @@ }, "children": [ { - "id": 3586, + "id": 3595, "name": "getTaxLines", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3587, + "id": 3596, "name": "getTaxLines", "variant": "signature", "kind": 4096, @@ -75076,7 +76147,7 @@ }, "parameters": [ { - "id": 3588, + "id": 3597, "name": "itemLines", "variant": "param", "kind": 32768, @@ -75093,14 +76164,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3573, + "target": 3582, "name": "ItemTaxCalculationLine", "package": "@medusajs/medusa" } } }, { - "id": 3589, + "id": 3598, "name": "shippingLines", "variant": "param", "kind": 32768, @@ -75109,14 +76180,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3569, + "target": 3578, "name": "ShippingTaxCalculationLine", "package": "@medusajs/medusa" } } }, { - "id": 3590, + "id": 3599, "name": "context", "variant": "param", "kind": 32768, @@ -75131,7 +76202,7 @@ }, "type": { "type": "reference", - "target": 3577, + "target": 3586, "name": "TaxCalculationContext", "package": "@medusajs/medusa" } @@ -75148,7 +76219,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4751, + "target": 4778, "name": "ProviderTaxLine", "package": "@medusajs/medusa" } @@ -75165,41 +76236,41 @@ { "title": "Methods", "children": [ - 3586 + 3595 ] } ], "implementedBy": [ { "type": "reference", - "target": 3591, + "target": 3600, "name": "AbstractTaxService" } ] }, { - "id": 4733, + "id": 4760, "name": "ITransactionBaseService", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4734, + "id": 4761, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4735, + "id": 4762, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4736, + "id": 4763, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -75219,7 +76290,7 @@ ], "type": { "type": "reference", - "target": 4733, + "target": 4760, "name": "ITransactionBaseService", "package": "@medusajs/types" } @@ -75231,27 +76302,27 @@ { "title": "Methods", "children": [ - 4734 + 4761 ] } ], "extendedBy": [ { "type": "reference", - "target": 3474, + "target": 3483, "name": "IPriceSelectionStrategy" } ] }, { - "id": 4880, + "id": 4935, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4882, + "id": 4937, "name": "alias", "variant": "declaration", "kind": 1024, @@ -75271,7 +76342,7 @@ "types": [ { "type": "reference", - "target": 4953, + "target": 5045, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -75279,7 +76350,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4953, + "target": 5045, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -75288,7 +76359,7 @@ } }, { - "id": 4893, + "id": 4948, "name": "args", "variant": "declaration", "kind": 1024, @@ -75324,7 +76395,7 @@ } }, { - "id": 4889, + "id": 4944, "name": "extends", "variant": "declaration", "kind": 1024, @@ -75336,27 +76407,27 @@ "elementType": { "type": "reflection", "declaration": { - "id": 4890, + "id": 4945, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4892, + "id": 4947, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4956, + "target": 5048, "name": "JoinerRelationship", "package": "@medusajs/types" } }, { - "id": 4891, + "id": 4946, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -75371,8 +76442,8 @@ { "title": "Properties", "children": [ - 4892, - 4891 + 4947, + 4946 ] } ] @@ -75381,7 +76452,7 @@ } }, { - "id": 4883, + "id": 4938, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -75417,14 +76488,14 @@ { "type": "reflection", "declaration": { - "id": 4884, + "id": 4939, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4886, + "id": 4941, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -75438,7 +76509,7 @@ } }, { - "id": 4885, + "id": 4940, "name": "path", "variant": "declaration", "kind": 1024, @@ -75453,8 +76524,8 @@ { "title": "Properties", "children": [ - 4886, - 4885 + 4941, + 4940 ] } ] @@ -75468,7 +76539,7 @@ } }, { - "id": 4887, + "id": 4942, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -75482,7 +76553,7 @@ } }, { - "id": 4888, + "id": 4943, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -75493,14 +76564,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4956, + "target": 5048, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 4881, + "id": 4936, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -75515,26 +76586,26 @@ { "title": "Properties", "children": [ - 4882, - 4893, - 4889, - 4883, - 4887, - 4888, - 4881 + 4937, + 4948, + 4944, + 4938, + 4942, + 4943, + 4936 ] } ] }, { - "id": 4953, + "id": 5045, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4955, + "id": 5047, "name": "args", "variant": "declaration", "kind": 1024, @@ -75570,7 +76641,7 @@ } }, { - "id": 4954, + "id": 5046, "name": "name", "variant": "declaration", "kind": 1024, @@ -75597,21 +76668,21 @@ { "title": "Properties", "children": [ - 4955, - 4954 + 5047, + 5046 ] } ] }, { - "id": 3984, + "id": 3993, "name": "MedusaRequest", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3992, + "id": 4004, "name": "allowedProperties", "variant": "declaration", "kind": 1024, @@ -75630,7 +76701,7 @@ } }, { - "id": 3994, + "id": 4006, "name": "errors", "variant": "declaration", "kind": 1024, @@ -75649,7 +76720,7 @@ } }, { - "id": 3991, + "id": 4003, "name": "filterableFields", "variant": "declaration", "kind": 1024, @@ -75680,7 +76751,7 @@ } }, { - "id": 3993, + "id": 4005, "name": "includes", "variant": "declaration", "kind": 1024, @@ -75713,14 +76784,14 @@ } }, { - "id": 3989, + "id": 4001, "name": "listConfig", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3689, + "target": 3698, "typeArguments": [ { "type": "intrinsic", @@ -75737,14 +76808,14 @@ } }, { - "id": 3990, + "id": 4002, "name": "retrieveConfig", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3689, + "target": 3698, "typeArguments": [ { "type": "intrinsic", @@ -75761,14 +76832,14 @@ } }, { - "id": 3986, + "id": 3998, "name": "scope", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4721, + "target": 4748, "name": "MedusaContainer", "package": "medusa-core-utils" }, @@ -75779,7 +76850,7 @@ } }, { - "id": 3985, + "id": 3994, "name": "user", "variant": "declaration", "kind": 1024, @@ -75787,8 +76858,51 @@ "isOptional": true }, "type": { - "type": "intrinsic", - "name": "Object" + "type": "reflection", + "declaration": { + "id": 3995, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3996, + "name": "customer_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3997, + "name": "userId", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3996, + 3997 + ] + } + ] + } }, "overwrites": { "type": "reference", @@ -75797,7 +76911,7 @@ } }, { - "id": 3988, + "id": 4000, "name": "validatedBody", "variant": "declaration", "kind": 1024, @@ -75813,7 +76927,7 @@ } }, { - "id": 3987, + "id": 3999, "name": "validatedQuery", "variant": "declaration", "kind": 1024, @@ -75823,7 +76937,7 @@ "types": [ { "type": "reference", - "target": 3736, + "target": 3745, "name": "RequestQueryFields", "package": "@medusajs/medusa" }, @@ -75859,16 +76973,16 @@ { "title": "Properties", "children": [ - 3992, + 4004, + 4006, + 4003, + 4005, + 4001, + 4002, + 3998, 3994, - 3991, - 3993, - 3989, - 3990, - 3986, - 3985, - 3988, - 3987 + 4000, + 3999 ] } ], @@ -75886,7 +77000,7 @@ ] }, { - "id": 3742, + "id": 3751, "name": "PaginatedResponse", "variant": "declaration", "kind": 256, @@ -75901,7 +77015,7 @@ }, "children": [ { - "id": 3745, + "id": 3754, "name": "count", "variant": "declaration", "kind": 1024, @@ -75920,7 +77034,7 @@ } }, { - "id": 3743, + "id": 3752, "name": "limit", "variant": "declaration", "kind": 1024, @@ -75939,7 +77053,7 @@ } }, { - "id": 3744, + "id": 3753, "name": "offset", "variant": "declaration", "kind": 1024, @@ -75962,15 +77076,15 @@ { "title": "Properties", "children": [ - 3745, - 3743, - 3744 + 3754, + 3752, + 3753 ] } ] }, { - "id": 3190, + "id": 3199, "name": "PaymentProcessor", "variant": "declaration", "kind": 256, @@ -75979,20 +77093,148 @@ "summary": [ { "kind": "text", - "text": "The new payment service plugin interface\nThis work is still experimental and can be changed until it becomes stable" + "text": "## Overview\n\nA Payment Processor is the payment method used to authorize, capture, and refund payment, among other actions. An example of a Payment Processor is Stripe.\n\nBy default, Medusa has a " + }, + { + "kind": "code", + "text": "`manual`" + }, + { + "kind": "text", + "text": " payment provider that has minimal implementation. It can be synonymous with a Cash on Delivery payment method. It allows\nstore operators to manage the payment themselves but still keep track of its different stages on Medusa.\n\nA payment processor is a service that extends the " + }, + { + "kind": "code", + "text": "`AbstractPaymentProcessor`" + }, + { + "kind": "text", + "text": " and implements its methods. So, adding a Payment Processor is as simple as\ncreating a service file in " + }, + { + "kind": "code", + "text": "`src/services`" + }, + { + "kind": "text", + "text": ". The file's name is the payment processor's class name as a slug and without the word " + }, + { + "kind": "code", + "text": "`Service`" + }, + { + "kind": "text", + "text": ".\nFor example, if you're creating a " + }, + { + "kind": "code", + "text": "`MyPaymentService`" + }, + { + "kind": "text", + "text": " class, the file name is " + }, + { + "kind": "code", + "text": "`src/services/my-payment.ts`" + }, + { + "kind": "text", + "text": ".\n\n" + }, + { + "kind": "code", + "text": "```ts\nimport { AbstractPaymentProcessor } from \"@medusajs/medusa\";\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // methods here...\n}\n\nexport default MyPaymentService\n```" + }, + { + "kind": "text", + "text": "\n\nThe methods of the payment processor are used at different points in the Checkout flow as well as when processing an order after it’s placed.\n\n![Checkout Flow - Payment](https://res.cloudinary.com/dza7lstvk/image/upload/v1680177820/Medusa%20Docs/Diagrams/checkout-payment_cy9efp.jpg)\n\n---\n\n## Identifier Property\n\nThe " + }, + { + "kind": "code", + "text": "`PaymentProvider`" + }, + { + "kind": "text", + "text": " entity has 2 properties: " + }, + { + "kind": "code", + "text": "`id`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`is_installed`" + }, + { + "kind": "text", + "text": ". The " + }, + { + "kind": "code", + "text": "`identifier`" + }, + { + "kind": "text", + "text": " property in the payment processor service is used when the payment processor is added to the database.\n\nThe value of this property is also used to reference the payment processor throughout Medusa.\nFor example, it is used to [add a payment processor](https://docs.medusajs.com/api/admin#regions_postregionsregionpaymentproviders) to a region.\n\n" + }, + { + "kind": "code", + "text": "```ts\nclass MyPaymentService extends AbstractPaymentProcessor {\n static identifier = \"my-payment\"\n // ...\n}\n```" + }, + { + "kind": "text", + "text": "\n\n---\n\n## PaymentProcessorError\n\nBefore diving into the methods of the Payment Processor, you'll notice that part of the expected return signature of these method includes " + }, + { + "kind": "code", + "text": "`PaymentProcessorError`" + }, + { + "kind": "text", + "text": ".\n\n" + }, + { + "kind": "code", + "text": "```ts\ninterface PaymentProcessorError {\n error: string\n code?: string\n detail?: any\n}\n```" + }, + { + "kind": "text", + "text": "\n\nWhile implementing the Payment Processor's methods, if you need to inform the Medusa core that an error occurred at a certain stage,\nreturn an object having the attributes defined in the " + }, + { + "kind": "code", + "text": "`PaymentProcessorError`" + }, + { + "kind": "text", + "text": " interface.\n\nFor example, the Stripe payment processor has the following method to create the error object, which is used within other methods:\n\n" + }, + { + "kind": "code", + "text": "```ts\nabstract class StripeBase extends AbstractPaymentProcessor {\n // ...\n protected buildError(\n message: string,\n e: Stripe.StripeRawError | PaymentProcessorError | Error\n ): PaymentProcessorError {\n return {\n error: message,\n code: \"code\" in e ? e.code : \"\",\n detail: isPaymentProcessorError(e)\n ? `${e.error}${EOL}${e.detail ?? \"\"}`\n : \"detail\" in e\n ? e.detail\n : e.message ?? \"\",\n }\n }\n\n // used in other methods\n async retrievePayment(\n paymentSessionData: Record\n ): Promise<\n PaymentProcessorError |\n PaymentProcessorSessionResponse[\"session_data\"]\n > {\n try {\n // ...\n } catch (e) {\n return this.buildError(\n \"An error occurred in retrievePayment\",\n e\n )\n }\n }\n}\n```" + }, + { + "kind": "text", + "text": "\n\n---" } ] }, "children": [ { - "id": 3203, + "id": 3212, "name": "authorizePayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3204, + "id": 3213, "name": "authorizePayment", "variant": "signature", "kind": 4096, @@ -76001,17 +77243,96 @@ "summary": [ { "kind": "text", - "text": "Authorize an existing session if it is not already authorized" + "text": "This method is used to authorize payment using the Payment Session of an order. This is called when the\n[cart is completed](https://docs.medusajs.com/api/store#carts_postcartscartcomplete) and before the order is created.\n\nThis method is also used for authorizing payments of a swap of an order and when authorizing sessions in a payment collection.\nYou can interact with a third-party provider and perform any actions necessary to authorize the payment.\n\nThe payment authorization might require additional action from the customer before it is declared authorized. Once that additional action is performed,\nthe " + }, + { + "kind": "code", + "text": "`authorizePayment`" + }, + { + "kind": "text", + "text": " method will be called again to validate that the payment is now fully authorized. So, make sure to implement it for this case as well, if necessary.\n\nOnce the payment is authorized successfully and the Payment Session status is set to " + }, + { + "kind": "code", + "text": "`authorized`" + }, + { + "kind": "text", + "text": ", the associated order or swap can then be placed or created.\nIf the payment authorization fails, then an error will be thrown and the order will not be created.\n\n:::note\n\nThe payment authorization status is determined using the " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "getPaymentStatus", + "target": 3231, + "tsLinkText": "" + }, + { + "kind": "text", + "text": " method. If the status is " + }, + { + "kind": "code", + "text": "`requires_more`" + }, + { + "kind": "text", + "text": ", then it means additional actions are required\nfrom the customer. If you try to create the order with a status that isn't " + }, + { + "kind": "code", + "text": "`authorized`" + }, + { + "kind": "text", + "text": ", the process will fail.\n\n:::" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The authorization details or an error object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n PaymentSessionStatus,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async authorizePayment(\n paymentSessionData: Record,\n context: Record\n ): Promise<\n PaymentProcessorError |\n {\n status: PaymentSessionStatus;\n data: Record;\n }\n > {\n try {\n await this.client.authorize(paymentSessionData.id)\n\n return {\n status: PaymentSessionStatus.AUTHORIZED,\n data: {\n id: paymentSessionData.id\n }\n }\n } catch (e) {\n return {\n error: e.message\n }\n }\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3205, + "id": 3214, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the payment session." + } + ] + }, "type": { "type": "reference", "target": { @@ -76033,11 +77354,43 @@ } }, { - "id": 3206, + "id": 3215, "name": "context", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The context of the authorization. It may include some of the following fields:\n\n- " + }, + { + "kind": "code", + "text": "`ip`" + }, + { + "kind": "text", + "text": ": The customer’s IP.\n- " + }, + { + "kind": "code", + "text": "`idempotency_key`" + }, + { + "kind": "text", + "text": ": The [Idempotency Key](https://docs.medusajs.com/modules/carts-and-checkout/payment#idempotency-key) that is associated with the current cart. It is useful when retrying payments, retrying checkout at a failed point, or for payments that require additional actions from the customer.\n- " + }, + { + "kind": "code", + "text": "`cart_id`" + }, + { + "kind": "text", + "text": ": The ID of a cart. This is only during operations like placing an order or creating a swap." + } + ] + }, "type": { "type": "reference", "target": { @@ -76071,25 +77424,49 @@ "types": [ { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 3207, + "id": 3216, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3209, + "id": 3218, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " to be stored in the payment session's " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field." + } + ] + }, "type": { "type": "reference", "target": { @@ -76111,11 +77488,27 @@ } }, { - "id": 3208, + "id": 3217, "name": "status", "variant": "declaration", "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The status of the payment, which will be stored in the payment session's " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": " field." + } + ] + }, "type": { "type": "reference", "target": { @@ -76131,8 +77524,8 @@ { "title": "Properties", "children": [ - 3209, - 3208 + 3218, + 3217 ] } ] @@ -76148,14 +77541,14 @@ ] }, { - "id": 3219, + "id": 3228, "name": "cancelPayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3220, + "id": 3229, "name": "cancelPayment", "variant": "signature", "kind": 4096, @@ -76164,7 +77557,172 @@ "summary": [ { "kind": "text", - "text": "Cancel an existing session" + "text": "This method is used to cancel an order’s payment. This method is typically triggered by one of the following situations:\n\n1. Before an order is placed and after the payment is authorized, an inventory check is done on products to ensure that products are still available for purchase. If the inventory check fails for any of the products, the payment is canceled.\n2. If the store operator cancels the order from the admin.\n3. When the payment of an order's swap is canceled.\n\nYou can utilize this method to interact with the third-party provider and perform any actions necessary to cancel the payment." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or a value that's stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async cancelPayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n const cancelData = this.client.cancel(paymentId)\n\n return {\n id: paymentId,\n ...cancelData\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 3230, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 3195, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 3219, + "name": "capturePayment", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 3220, + "name": "capturePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to capture the payment amount of an order. This is typically triggered manually by the store operator from the admin.\n\nThis method is also used for capturing payments of a swap of an order, or when a request is sent to the [Capture Payment API Route](https://docs.medusajs.com/api/admin#payments_postpaymentspaymentcapture).\n\nYou can utilize this method to interact with the third-party provider and perform any actions necessary to capture the payment." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or a value that's stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async capturePayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n const captureData = this.client.catch(paymentId)\n\n return {\n id: paymentId,\n ...captureData\n }\n }\n}\n```" + } + ] } ] }, @@ -76175,6 +77733,22 @@ "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment for its first parameter." + } + ] + }, "type": { "type": "reference", "target": { @@ -76227,7 +77801,7 @@ }, { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" } @@ -76241,107 +77815,14 @@ ] }, { - "id": 3210, - "name": "capturePayment", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ - { - "id": 3211, - "name": "capturePayment", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Capture an existing session" - } - ] - }, - "parameters": [ - { - "id": 3212, - "name": "paymentSessionData", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - }, - { - "type": "reference", - "target": 3186, - "name": "PaymentProcessorError", - "package": "@medusajs/medusa" - } - ] - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 3213, + "id": 3222, "name": "deletePayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3214, + "id": 3223, "name": "deletePayment", "variant": "signature", "kind": 4096, @@ -76350,128 +77831,27 @@ "summary": [ { "kind": "text", - "text": "Delete an existing session" - } - ] - }, - "parameters": [ - { - "id": 3215, - "name": "paymentSessionData", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - }, - { - "type": "reference", - "target": 3186, - "name": "PaymentProcessorError", - "package": "@medusajs/medusa" - } - ] + "text": "This method is used to perform any actions necessary before a Payment Session is deleted. The Payment Session is deleted in one of the following cases:\n\n1. When a request is sent to [delete the Payment Session](https://docs.medusajs.com/api/store#carts_deletecartscartpaymentsessionssession).\n2. When the [Payment Session is refreshed](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsessionssession). The Payment Session is deleted so that a newer one is initialized instead.\n3. When the Payment Processor is no longer available. This generally happens when the store operator removes it from the available Payment Processor in the admin.\n4. When the region of the store is changed based on the cart information and the Payment Processor is not available in the new region." } ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 3191, - "name": "getIdentifier", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ - { - "id": 3192, - "name": "getIdentifier", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ + "blockTags": [ { - "kind": "text", - "text": "Return a unique identifier to retrieve the payment plugin provider" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - }, - { - "id": 3222, - "name": "getPaymentStatus", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ - { - "id": 3223, - "name": "getPaymentStatus", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or an empty object." + } + ] + }, { - "kind": "text", - "text": "Return the status of the session" + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async deletePayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n // assuming client is an initialized client\n // communicating with a third-party service.\n this.client.delete(paymentId)\n\n return {}\n }\n}\n```" + } + ] } ] }, @@ -76482,6 +77862,159 @@ "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment Session." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 3195, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 3231, + "name": "getPaymentStatus", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 3232, + "name": "getPaymentStatus", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to get the status of a Payment or a Payment Session. Its main usage is within the place order and create swap flows.\nIf the status returned is not " + }, + { + "kind": "code", + "text": "`authorized`" + }, + { + "kind": "text", + "text": " within these flows, then the payment is considered failed and an error will be thrown, stopping the flow from completion." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The status of the Payment or Payment Session." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentSessionStatus\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async getPaymentStatus(\n paymentSessionData: Record\n ): Promise {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n return await this.client.getStatus(paymentId) as PaymentSessionStatus\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 3233, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a Payment as a parameter. You can use this data to interact with the third-party provider to check the status of the payment if necessary." + } + ] + }, "type": { "type": "reference", "target": { @@ -76527,14 +78060,14 @@ ] }, { - "id": 3193, + "id": 3202, "name": "initiatePayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3194, + "id": 3203, "name": "initiatePayment", "variant": "signature", "kind": 4096, @@ -76543,20 +78076,48 @@ "summary": [ { "kind": "text", - "text": "Initiate a payment session with the external provider" + "text": "This method is called either if a region has only one payment provider enabled or when [a Payment Session is selected](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsession),\nwhich occurs when the customer selects their preferred payment method during checkout.\n\nIt is used to allow you to make any necessary calls to the third-party provider to initialize the payment. For example, in Stripe this method is used to create a Payment Intent for the customer." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either the payment's data or an error object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentContext,\n PaymentSessionResponse,\n // ...\n} from \"@medusajs/medusa\"\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async initiatePayment(\n context: PaymentProcessorContext\n ): Promise<\n PaymentProcessorError | PaymentProcessorSessionResponse\n > {\n // assuming client is an initialized client\n // communicating with a third-party service.\n const clientPayment = await this.client.initiate(context)\n\n return {\n session_data: {\n id: clientPayment.id\n },\n }\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3195, + "id": 3204, "name": "context", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The context of the payment." + } + ] + }, "type": { "type": "reference", - "target": 3170, + "target": 3181, "name": "PaymentProcessorContext", "package": "@medusajs/medusa" } @@ -76574,13 +78135,13 @@ "types": [ { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" }, { "type": "reference", - "target": 3180, + "target": 3190, "name": "PaymentProcessorSessionResponse", "package": "@medusajs/medusa" } @@ -76594,14 +78155,14 @@ ] }, { - "id": 3199, + "id": 3208, "name": "refundPayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3200, + "id": 3209, "name": "refundPayment", "variant": "signature", "kind": 4096, @@ -76610,17 +78171,61 @@ "summary": [ { "kind": "text", - "text": "Refund an existing session" + "text": "This method is used to refund an order’s payment. This is typically triggered manually by the store operator from the admin. The refund amount might be the total order amount or part of it.\n\nThis method is also used for refunding payments of a swap or a claim of an order, or when a request is sent to the [Refund Payment API Route](https://docs.medusajs.com/api/admin#payments_postpaymentspaymentrefunds).\n\nYou can utilize this method to interact with the third-party provider and perform any actions necessary to refund the payment." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or a value that's stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async refundPayment(\n paymentSessionData: Record,\n refundAmount: number\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n const refundData = this.client.refund(paymentId, refundAmount)\n\n return {\n id: paymentId,\n ...refundData\n }\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3201, + "id": 3210, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a Payment." + } + ] + }, "type": { "type": "reference", "target": { @@ -76642,11 +78247,19 @@ } }, { - "id": 3202, + "id": 3211, "name": "refundAmount", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "the amount to refund." + } + ] + }, "type": { "type": "intrinsic", "name": "number" @@ -76684,7 +78297,7 @@ }, { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" } @@ -76698,14 +78311,14 @@ ] }, { - "id": 3216, + "id": 3225, "name": "retrievePayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3217, + "id": 3226, "name": "retrievePayment", "variant": "signature", "kind": 4096, @@ -76714,17 +78327,61 @@ "summary": [ { "kind": "text", - "text": "Retrieve an existing session" + "text": "This method is used to provide a uniform way of retrieving the payment information from the third-party provider.\nFor example, in Stripe’s Payment Processor this method is used to retrieve the payment intent details from Stripe." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The payment's data, typically retrieved from a third-party provider." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async retrievePayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n return await this.client.retrieve(paymentId)\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3218, + "id": 3227, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a Payment Session. Make sure to store in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field any necessary data that would allow you to retrieve the payment data from the third-party provider." + } + ] + }, "type": { "type": "reference", "target": { @@ -76777,7 +78434,7 @@ }, { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" } @@ -76791,14 +78448,14 @@ ] }, { - "id": 3196, + "id": 3205, "name": "updatePayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3197, + "id": 3206, "name": "updatePayment", "variant": "signature", "kind": 4096, @@ -76807,20 +78464,48 @@ "summary": [ { "kind": "text", - "text": "Update an existing payment session" + "text": "This method is used to update the payment session when the payment amount changes. It's called whenever the cart or any of its related data is updated.\nFor example, when a [line item is added to the cart](https://docs.medusajs.com/api/store#carts_postcartscartlineitems) or when a\n[shipping method is selected](https://docs.medusajs.com/api/store#carts_postcartscartshippingmethod)." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either the payment's data or an error object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorContext,\n PaymentProcessorError,\n PaymentProcessorSessionResponse,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async updatePayment(\n context: PaymentProcessorContext\n ): Promise<\n void |\n PaymentProcessorError |\n PaymentProcessorSessionResponse\n > {\n // assuming client is an initialized client\n // communicating with a third-party service.\n const paymentId = context.paymentSessionData.id\n\n await this.client.update(paymentId, context)\n\n return {\n session_data: context.paymentSessionData\n }\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3198, + "id": 3207, "name": "context", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The context of the payment." + } + ] + }, "type": { "type": "reference", - "target": 3170, + "target": 3181, "name": "PaymentProcessorContext", "package": "@medusajs/medusa" } @@ -76842,13 +78527,13 @@ }, { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" }, { "type": "reference", - "target": 3180, + "target": 3190, "name": "PaymentProcessorSessionResponse", "package": "@medusajs/medusa" } @@ -76862,14 +78547,14 @@ ] }, { - "id": 3225, + "id": 3234, "name": "updatePaymentData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3226, + "id": 3235, "name": "updatePaymentData", "variant": "signature", "kind": 4096, @@ -76878,28 +78563,96 @@ "summary": [ { "kind": "text", - "text": "Update the session data for a payment session" + "text": "This method is used to update the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a payment session. It's called when a request is sent to the\n[Update Payment Session API Route](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsessionupdate), or when the " + }, + { + "kind": "code", + "text": "`CartService`" + }, + { + "kind": "text", + "text": "'s " + }, + { + "kind": "code", + "text": "`updatePaymentSession`" + }, + { + "kind": "text", + "text": " is used.\n\nThis method can also be used to update the data in the third-party payment provider, if necessary." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "the data to store in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the payment session.\nYou can keep the data as-is, or make changes to it by communicating with the third-party provider." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n PaymentProviderService,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n protected paymentProviderService: PaymentProviderService\n // ...\n constructor(container, options) {\n super(container)\n this.paymentProviderService = container.paymentProviderService\n // ...\n }\n // ...\n async updatePaymentData(\n sessionId: string,\n data: Record\n ): Promise<\n Record |\n PaymentProcessorError\n > {\n const paymentSession = await this.paymentProviderService.retrieveSession(sessionId)\n // assuming client is an initialized client\n // communicating with a third-party service.\n const clientPayment = await this.client.update(paymentSession.data.id, data)\n\n return {\n id: clientPayment.id\n }\n }\n}\n```" + } + ] } ] }, "parameters": [ { - "id": 3227, + "id": 3236, "name": "sessionId", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the payment session." + } + ] + }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 3228, + "id": 3237, "name": "data", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The data to be updated in the payment session." + } + ] + }, "type": { "type": "reference", "target": { @@ -76952,7 +78705,7 @@ }, { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" } @@ -76970,43 +78723,189 @@ { "title": "Methods", "children": [ - 3203, + 3212, + 3228, 3219, - 3210, - 3213, - 3191, 3222, - 3193, - 3199, - 3216, - 3196, - 3225 + 3231, + 3202, + 3208, + 3225, + 3205, + 3234 ] } ], "implementedBy": [ { "type": "reference", - "target": 3229, + "target": 3238, "name": "AbstractPaymentProcessor" } ] }, { - "id": 3186, - "name": "PaymentProcessorError", + "id": 3181, + "name": "PaymentProcessorContext", "variant": "declaration", "kind": 256, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A payment's context." + } + ] + }, "children": [ { - "id": 3188, - "name": "code", + "id": 3185, + "name": "amount", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The payment's amount." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3182, + "name": "billing_address", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The payment's billing address." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa/src/models/address.ts", + "qualifiedName": "Address" + }, + "name": "Address", + "package": "@medusajs/medusa" + } + ] + } + }, + { + "id": 3188, + "name": "context", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The cart's context." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 3184, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The selected currency code, typically associated with the customer's cart." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3187, + "name": "customer", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The customer associated with this payment." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa/src/models/customer.ts", + "qualifiedName": "Customer" + }, + "name": "Customer", + "package": "@medusajs/medusa" + } + }, + { + "id": 3183, + "name": "email", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The customer's email." + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -77014,23 +78913,60 @@ }, { "id": 3189, - "name": "detail", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "any" - } - }, - { - "id": 3187, - "name": "error", + "name": "paymentSessionData", "variant": "declaration", "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "If the payment session hasn't been created or initiated yet, it'll be an empty object.\nIf the payment session exists, it'll be the value of the payment session's " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 3186, + "name": "resource_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the resource the payment is associated with. For example, the cart's ID." + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -77041,15 +78977,265 @@ { "title": "Properties", "children": [ + 3185, + 3182, 3188, + 3184, + 3187, + 3183, 3189, - 3187 + 3186 ] } ] }, { - "id": 3302, + "id": 3195, + "name": "PaymentProcessorError", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An object that is returned in case of an error." + } + ] + }, + "children": [ + { + "id": 3197, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The error code." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3198, + "name": "detail", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Any additional helpful details." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 3196, + "name": "error", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The error message" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3197, + 3198, + 3196 + ] + } + ] + }, + { + "id": 3190, + "name": "PaymentProcessorSessionResponse", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The response of operations on a payment." + } + ] + }, + "children": [ + { + "id": 3194, + "name": "session_data", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The data to be stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment Session to be created.\nThe " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field is useful to hold any data required by the third-party provider to process the payment or retrieve its details at a later point." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 3191, + "name": "update_requests", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to specify data that should be updated in the Medusa backend." + } + ] + }, + "type": { + "type": "reflection", + "declaration": { + "id": 3192, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3193, + "name": "customer_metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies a new value of the " + }, + { + "kind": "code", + "text": "`metadata`" + }, + { + "kind": "text", + "text": " field of the customer associated with the payment." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3193 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3194, + 3191 + ] + } + ] + }, + { + "id": 3311, "name": "PaymentService", "variant": "declaration", "kind": 256, @@ -77075,7 +79261,7 @@ }, "children": [ { - "id": 3358, + "id": 3367, "name": "__configModule__", "variant": "declaration", "kind": 1024, @@ -77105,12 +79291,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3613, + "target": 3622, "name": "TransactionBaseService.__configModule__" } }, { - "id": 3357, + "id": 3366, "name": "__container__", "variant": "declaration", "kind": 1024, @@ -77124,12 +79310,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3612, + "target": 3621, "name": "TransactionBaseService.__container__" } }, { - "id": 3359, + "id": 3368, "name": "__moduleDeclaration__", "variant": "declaration", "kind": 1024, @@ -77159,12 +79345,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3614, + "target": 3623, "name": "TransactionBaseService.__moduleDeclaration__" } }, { - "id": 3353, + "id": 3362, "name": "manager_", "variant": "declaration", "kind": 1024, @@ -77182,12 +79368,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3608, + "target": 3617, "name": "TransactionBaseService.manager_" } }, { - "id": 3354, + "id": 3363, "name": "transactionManager_", "variant": "declaration", "kind": 1024, @@ -77214,12 +79400,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3609, + "target": 3618, "name": "TransactionBaseService.transactionManager_" } }, { - "id": 3355, + "id": 3364, "name": "activeManager_", "variant": "declaration", "kind": 262144, @@ -77227,7 +79413,7 @@ "isProtected": true }, "getSignature": { - "id": 3356, + "id": 3365, "name": "activeManager_", "variant": "signature", "kind": 524288, @@ -77249,12 +79435,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3610, + "target": 3619, "name": "TransactionBaseService.activeManager_" } }, { - "id": 3368, + "id": 3377, "name": "atomicPhase_", "variant": "declaration", "kind": 2048, @@ -77263,7 +79449,7 @@ }, "signatures": [ { - "id": 3369, + "id": 3378, "name": "atomicPhase_", "variant": "signature", "kind": 4096, @@ -77289,14 +79475,14 @@ }, "typeParameter": [ { - "id": 3370, + "id": 3379, "name": "TResult", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 3371, + "id": 3380, "name": "TError", "variant": "typeParam", "kind": 131072, @@ -77305,7 +79491,7 @@ ], "parameters": [ { - "id": 3372, + "id": 3381, "name": "work", "variant": "param", "kind": 32768, @@ -77321,21 +79507,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3373, + "id": 3382, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3374, + "id": 3383, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3375, + "id": 3384, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -77374,7 +79560,7 @@ } }, { - "id": 3376, + "id": 3385, "name": "isolationOrErrorHandler", "variant": "param", "kind": 32768, @@ -77404,21 +79590,21 @@ { "type": "reflection", "declaration": { - "id": 3377, + "id": 3386, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3378, + "id": 3387, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3379, + "id": 3388, "name": "error", "variant": "param", "kind": 32768, @@ -77465,7 +79651,7 @@ } }, { - "id": 3380, + "id": 3389, "name": "maybeErrorHandlerOrDontFail", "variant": "param", "kind": 32768, @@ -77483,21 +79669,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3381, + "id": 3390, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3382, + "id": 3391, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3383, + "id": 3392, "name": "error", "variant": "param", "kind": 32768, @@ -77561,26 +79747,26 @@ }, "inheritedFrom": { "type": "reference", - "target": 3624, + "target": 3633, "name": "TransactionBaseService.atomicPhase_" } } ], "inheritedFrom": { "type": "reference", - "target": 3623, + "target": 3632, "name": "TransactionBaseService.atomicPhase_" } }, { - "id": 3327, + "id": 3336, "name": "authorizePayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3328, + "id": 3337, "name": "authorizePayment", "variant": "signature", "kind": 4096, @@ -77606,7 +79792,7 @@ }, "parameters": [ { - "id": 3329, + "id": 3338, "name": "paymentSession", "variant": "param", "kind": 32768, @@ -77622,14 +79808,14 @@ } }, { - "id": 3330, + "id": 3339, "name": "context", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -77645,27 +79831,27 @@ { "type": "reflection", "declaration": { - "id": 3331, + "id": 3340, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3332, + "id": 3341, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } }, { - "id": 3333, + "id": 3342, "name": "status", "variant": "declaration", "kind": 1024, @@ -77685,8 +79871,8 @@ { "title": "Properties", "children": [ - 3332, - 3333 + 3341, + 3342 ] } ] @@ -77700,14 +79886,14 @@ ] }, { - "id": 3341, + "id": 3350, "name": "cancelPayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3342, + "id": 3351, "name": "cancelPayment", "variant": "signature", "kind": 4096, @@ -77733,7 +79919,7 @@ }, "parameters": [ { - "id": 3343, + "id": 3352, "name": "payment", "variant": "param", "kind": 32768, @@ -77758,7 +79944,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -77770,14 +79956,14 @@ ] }, { - "id": 3334, + "id": 3343, "name": "capturePayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3335, + "id": 3344, "name": "capturePayment", "variant": "signature", "kind": 4096, @@ -77803,7 +79989,7 @@ }, "parameters": [ { - "id": 3336, + "id": 3345, "name": "payment", "variant": "param", "kind": 32768, @@ -77828,7 +80014,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -77840,14 +80026,14 @@ ] }, { - "id": 3312, + "id": 3321, "name": "createPayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3313, + "id": 3322, "name": "createPayment", "variant": "signature", "kind": 4096, @@ -77873,7 +80059,7 @@ }, "parameters": [ { - "id": 3314, + "id": 3323, "name": "context", "variant": "param", "kind": 32768, @@ -77900,7 +80086,7 @@ }, { "type": "reference", - "target": 3281, + "target": 3290, "name": "PaymentContext", "package": "@medusajs/medusa" } @@ -77917,7 +80103,7 @@ "typeArguments": [ { "type": "reference", - "target": 3296, + "target": 3305, "name": "PaymentSessionResponse", "package": "@medusajs/medusa" } @@ -77927,7 +80113,7 @@ } }, { - "id": 3315, + "id": 3324, "name": "createPayment", "variant": "signature", "kind": 4096, @@ -77961,7 +80147,7 @@ }, "parameters": [ { - "id": 3316, + "id": 3325, "name": "cart", "variant": "param", "kind": 32768, @@ -77986,7 +80172,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -77998,14 +80184,14 @@ ] }, { - "id": 3344, + "id": 3353, "name": "deletePayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3345, + "id": 3354, "name": "deletePayment", "variant": "signature", "kind": 4096, @@ -78031,7 +80217,7 @@ }, "parameters": [ { - "id": 3346, + "id": 3355, "name": "paymentSession", "variant": "param", "kind": 32768, @@ -78066,14 +80252,14 @@ ] }, { - "id": 3303, + "id": 3312, "name": "getIdentifier", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3304, + "id": 3313, "name": "getIdentifier", "variant": "signature", "kind": 4096, @@ -78086,14 +80272,14 @@ ] }, { - "id": 3305, + "id": 3314, "name": "getPaymentData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3306, + "id": 3315, "name": "getPaymentData", "variant": "signature", "kind": 4096, @@ -78119,7 +80305,7 @@ }, "parameters": [ { - "id": 3307, + "id": 3316, "name": "paymentSession", "variant": "param", "kind": 32768, @@ -78144,7 +80330,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -78156,14 +80342,14 @@ ] }, { - "id": 3350, + "id": 3359, "name": "getStatus", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3351, + "id": 3360, "name": "getStatus", "variant": "signature", "kind": 4096, @@ -78189,14 +80375,14 @@ }, "parameters": [ { - "id": 3352, + "id": 3361, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -78226,14 +80412,14 @@ ] }, { - "id": 3337, + "id": 3346, "name": "refundPayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3338, + "id": 3347, "name": "refundPayment", "variant": "signature", "kind": 4096, @@ -78259,7 +80445,7 @@ }, "parameters": [ { - "id": 3339, + "id": 3348, "name": "payment", "variant": "param", "kind": 32768, @@ -78275,7 +80461,7 @@ } }, { - "id": 3340, + "id": 3349, "name": "refundAmount", "variant": "param", "kind": 32768, @@ -78295,7 +80481,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -78307,14 +80493,14 @@ ] }, { - "id": 3317, + "id": 3326, "name": "retrievePayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3318, + "id": 3327, "name": "retrievePayment", "variant": "signature", "kind": 4096, @@ -78340,14 +80526,14 @@ }, "parameters": [ { - "id": 3319, + "id": 3328, "name": "paymentData", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -78362,7 +80548,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -78374,14 +80560,14 @@ ] }, { - "id": 3347, + "id": 3356, "name": "retrieveSavedMethods", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3348, + "id": 3357, "name": "retrieveSavedMethods", "variant": "signature", "kind": 4096, @@ -78407,7 +80593,7 @@ }, "parameters": [ { - "id": 3349, + "id": 3358, "name": "customer", "variant": "param", "kind": 32768, @@ -78434,7 +80620,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -78447,7 +80633,7 @@ ] }, { - "id": 3363, + "id": 3372, "name": "shouldRetryTransaction_", "variant": "declaration", "kind": 2048, @@ -78456,14 +80642,14 @@ }, "signatures": [ { - "id": 3364, + "id": 3373, "name": "shouldRetryTransaction_", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3365, + "id": 3374, "name": "err", "variant": "param", "kind": 32768, @@ -78493,14 +80679,14 @@ { "type": "reflection", "declaration": { - "id": 3366, + "id": 3375, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3367, + "id": 3376, "name": "code", "variant": "declaration", "kind": 1024, @@ -78515,7 +80701,7 @@ { "title": "Properties", "children": [ - 3367 + 3376 ] } ] @@ -78531,46 +80717,46 @@ }, "inheritedFrom": { "type": "reference", - "target": 3619, + "target": 3628, "name": "TransactionBaseService.shouldRetryTransaction_" } } ], "inheritedFrom": { "type": "reference", - "target": 3618, + "target": 3627, "name": "TransactionBaseService.shouldRetryTransaction_" } }, { - "id": 3320, + "id": 3329, "name": "updatePayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3321, + "id": 3330, "name": "updatePayment", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3322, + "id": 3331, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } }, { - "id": 3323, + "id": 3332, "name": "context", "variant": "param", "kind": 32768, @@ -78589,7 +80775,7 @@ }, { "type": "reference", - "target": 3281, + "target": 3290, "name": "PaymentContext", "package": "@medusajs/medusa" } @@ -78609,13 +80795,13 @@ "types": [ { "type": "reference", - "target": 3296, + "target": 3305, "name": "PaymentSessionResponse", "package": "@medusajs/medusa" }, { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -78627,7 +80813,7 @@ } }, { - "id": 3324, + "id": 3333, "name": "updatePayment", "variant": "signature", "kind": 4096, @@ -78653,20 +80839,20 @@ }, "parameters": [ { - "id": 3325, + "id": 3334, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } }, { - "id": 3326, + "id": 3335, "name": "cart", "variant": "param", "kind": 32768, @@ -78691,7 +80877,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -78703,14 +80889,14 @@ ] }, { - "id": 3308, + "id": 3317, "name": "updatePaymentData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3309, + "id": 3318, "name": "updatePaymentData", "variant": "signature", "kind": 4096, @@ -78736,27 +80922,27 @@ }, "parameters": [ { - "id": 3310, + "id": 3319, "name": "paymentSessionData", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } }, { - "id": 3311, + "id": 3320, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -78771,7 +80957,7 @@ "typeArguments": [ { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } @@ -78783,21 +80969,21 @@ ] }, { - "id": 3360, + "id": 3369, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3361, + "id": 3370, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3362, + "id": 3371, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -78817,20 +81003,20 @@ ], "type": { "type": "reference", - "target": 3302, + "target": 3311, "name": "PaymentService", "package": "@medusajs/medusa" }, "inheritedFrom": { "type": "reference", - "target": 3616, + "target": 3625, "name": "TransactionBaseService.withTransaction" } } ], "inheritedFrom": { "type": "reference", - "target": 3615, + "target": 3624, "name": "TransactionBaseService.withTransaction" } } @@ -78839,52 +81025,3014 @@ { "title": "Properties", "children": [ - 3358, - 3357, - 3359, - 3353, - 3354 + 3367, + 3366, + 3368, + 3362, + 3363 ] }, { "title": "Accessors", "children": [ - 3355 + 3364 ] }, { "title": "Methods", "children": [ - 3368, - 3327, - 3341, - 3334, - 3312, - 3344, - 3303, - 3305, + 3377, + 3336, 3350, - 3337, + 3343, + 3321, + 3353, + 3312, + 3314, + 3359, + 3346, + 3326, + 3356, + 3372, + 3329, 3317, - 3347, - 3363, - 3320, - 3308, - 3360 + 3369 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3602, + "target": 3611, "name": "TransactionBaseService", "package": "@medusajs/medusa" } ] }, { - "id": 3736, + "id": 5109, + "name": "ProductCategoryDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A product category's data." + } + ] + }, + "children": [ + { + "id": 5118, + "name": "category_children", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated child categories." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 5109, + "name": "ProductCategoryDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 5119, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product category was created." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 5112, + "name": "description", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The description of the product category." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5113, + "name": "handle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The handle of the product category. The handle can be used to create slug URL paths." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5110, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the product category." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5114, + "name": "is_active", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the product category is active." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 5115, + "name": "is_internal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the product category is internal. This can be used to only show the product category to admins and hide it from customers." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 5111, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the product category." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5117, + "name": "parent_category", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated parent category." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 5109, + "name": "ProductCategoryDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5116, + "name": "rank", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ranking of the product category among sibling categories." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 5120, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product category was updated." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 5118, + 5119, + 5112, + 5113, + 5110, + 5114, + 5115, + 5111, + 5117, + 5116, + 5120 + ] + } + ] + }, + { + "id": 5102, + "name": "ProductCollectionDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A product collection's data." + } + ] + }, + "children": [ + { + "id": 5107, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product collection was deleted." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 5105, + "name": "handle", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The handle of the product collection. The handle can be used to create slug URL paths." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5103, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the product collection." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5106, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Holds custom data in key-value pairs." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + }, + { + "id": 5108, + "name": "products", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated products." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 5004, + "name": "ProductDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 5104, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The title of the product collection." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 5107, + 5105, + 5103, + 5106, + 5108, + 5104 + ] + } + ] + }, + { + "id": 5004, + "name": "ProductDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A product's data." + } + ] + }, + "children": [ + { + "id": 5022, + "name": "categories", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated product categories." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "array", + "elementType": { + "type": "reference", + "target": 5109, + "name": "ProductCategoryDTO", + "package": "@medusajs/types" + } + } + ] + } + }, + { + "id": 5021, + "name": "collection", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated product collection." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 5102, + "name": "ProductCollectionDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5030, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product was created." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 5032, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product was deleted." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 5009, + "name": "description", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The description of the product." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 5028, + "name": "discountable", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the product can be discounted." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 5029, + "name": "external_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the product in an external system. This is useful if you're integrating the product with a third-party service and want to maintain\na reference to the ID in the integrated service." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 5007, + "name": "handle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The handle of the product. The handle can be used to create slug URL paths." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 5016, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The height of the product." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + }, + { + "id": 5018, + "name": "hs_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The HS Code of the product." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 5005, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the product." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5027, + "name": "images", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated product images." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 5131, + "name": "ProductImageDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 5010, + "name": "is_giftcard", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the product is a gift card." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 5015, + "name": "length", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The length of the product." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + }, + { + "id": 5020, + "name": "material", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The material of the product." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 5033, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Holds custom data in key-value pairs." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 5019, + "name": "mid_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The MID Code of the product." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 5026, + "name": "options", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated product options." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 5090, + "name": "ProductOptionDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 5017, + "name": "origin_country", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The origin country of the product." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 5011, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The status of the product." + } + ] + }, + "type": { + "type": "reference", + "target": 5097, + "name": "ProductStatus", + "package": "@medusajs/types" + } + }, + { + "id": 5008, + "name": "subtitle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The subttle of the product." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 5024, + "name": "tags", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated product tags." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 5126, + "name": "ProductTagDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 5012, + "name": "thumbnail", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of the product's thumbnail." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 5006, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The title of the product." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5023, + "name": "type", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated product type." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 5121, + "name": "ProductTypeDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 5031, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product was updated." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 5025, + "name": "variants", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated product variants." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 4835, + "name": "ProductVariantDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 5014, + "name": "weight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The weight of the product." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + }, + { + "id": 5013, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The width of the product." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 5022, + 5021, + 5030, + 5032, + 5009, + 5028, + 5029, + 5007, + 5016, + 5018, + 5005, + 5027, + 5010, + 5015, + 5020, + 5033, + 5019, + 5026, + 5017, + 5011, + 5008, + 5024, + 5012, + 5006, + 5023, + 5031, + 5025, + 5014, + 5013 + ] + } + ] + }, + { + "id": 5131, + "name": "ProductImageDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The product image's data." + } + ] + }, + "children": [ + { + "id": 5135, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product image was deleted." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 5132, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the product image." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5134, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Holds custom data in key-value pairs." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + }, + { + "id": 5133, + "name": "url", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of the product image." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 5135, + 5132, + 5134, + 5133 + ] + } + ] + }, + { + "id": 5090, + "name": "ProductOptionDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A product option's data." + } + ] + }, + "children": [ + { + "id": 5096, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product option was deleted." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 5091, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the product option." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5095, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Holds custom data in key-value pairs." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + }, + { + "id": 5093, + "name": "product", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated product." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 5004, + "name": "ProductDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5092, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The title of the product option." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5094, + "name": "values", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated product option values." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 4997, + "name": "ProductOptionValueDTO", + "package": "@medusajs/types" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 5096, + 5091, + 5095, + 5093, + 5092, + 5094 + ] + } + ] + }, + { + "id": 4997, + "name": "ProductOptionValueDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The product option value's data." + } + ] + }, + "children": [ + { + "id": 5003, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product option value was deleted." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 4998, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the product option value." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5002, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Holds custom data in key-value pairs." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + }, + { + "id": 5000, + "name": "option", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated product option. It may only be available if the " + }, + { + "kind": "code", + "text": "`option`" + }, + { + "kind": "text", + "text": " relation is expanded." + } + ] + }, + "type": { + "type": "reference", + "target": 5090, + "name": "ProductOptionDTO", + "package": "@medusajs/types" + } + }, + { + "id": 4999, + "name": "value", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The value of the product option value." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5001, + "name": "variant", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated product variant. It may only be available if the " + }, + { + "kind": "code", + "text": "`variant`" + }, + { + "kind": "text", + "text": " relation is expanded." + } + ] + }, + "type": { + "type": "reference", + "target": 4835, + "name": "ProductVariantDTO", + "package": "@medusajs/types" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 5003, + 4998, + 5002, + 5000, + 4999, + 5001 + ] + } + ] + }, + { + "id": 5126, + "name": "ProductTagDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A product tag's data." + } + ] + }, + "children": [ + { + "id": 5127, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the product tag." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5129, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Holds custom data in key-value pairs." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + }, + { + "id": 5130, + "name": "products", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated products." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 5004, + "name": "ProductDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 5128, + "name": "value", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The value of the product tag." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 5127, + 5129, + 5130, + 5128 + ] + } + ] + }, + { + "id": 5121, + "name": "ProductTypeDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A product type's data." + } + ] + }, + "children": [ + { + "id": 5125, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product type was deleted." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 5122, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the product type." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5124, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Holds custom data in key-value pairs." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + }, + { + "id": 5123, + "name": "value", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The value of the product type." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 5125, + 5122, + 5124, + 5123 + ] + } + ] + }, + { + "id": 4835, + "name": "ProductVariantDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A product variant's data." + } + ] + }, + "children": [ + { + "id": 4843, + "name": "allow_backorder", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the product variant can be ordered when it's out of stock." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 4839, + "name": "barcode", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The barcode of the product variant." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 4858, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product variant was created." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 4860, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product variant was deleted." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 4840, + "name": "ean", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The EAN of the product variant." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 4851, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The height of the product variant." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + }, + { + "id": 4845, + "name": "hs_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The HS Code of the product variant." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 4836, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the product variant." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 4842, + "name": "inventory_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The inventory quantiy of the product variant." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 4850, + "name": "length", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The length of the product variant." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + }, + { + "id": 4844, + "name": "manage_inventory", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the product variant's inventory should be managed by the core system." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 4848, + "name": "material", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The material of the product variant." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 4854, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Holds custom data in key-value pairs." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + }, + { + "id": 4847, + "name": "mid_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The MID Code of the product variant." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 4853, + "name": "options", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated product options." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 4997, + "name": "ProductOptionValueDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 4846, + "name": "origin_country", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The origin country of the product variant." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 4855, + "name": "product", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated product." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 5004, + "name": "ProductDTO", + "package": "@medusajs/types" + } + }, + { + "id": 4856, + "name": "product_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated product." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 4838, + "name": "sku", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The SKU of the product variant." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 4837, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The tile of the product variant." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 4841, + "name": "upc", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The UPC of the product variant." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 4859, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product variant was updated." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 4857, + "name": "variant_rank", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "he ranking of the variant among other variants associated with the product." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + }, + { + "id": 4849, + "name": "weight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The weight of the product variant." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + }, + { + "id": 4852, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The width of the product variant." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 4843, + 4839, + 4858, + 4860, + 4840, + 4851, + 4845, + 4836, + 4842, + 4850, + 4844, + 4848, + 4854, + 4847, + 4853, + 4846, + 4855, + 4856, + 4838, + 4837, + 4841, + 4859, + 4857, + 4849, + 4852 + ] + } + ] + }, + { + "id": 3745, "name": "RequestQueryFields", "variant": "declaration", "kind": 256, @@ -78899,7 +84047,7 @@ }, "children": [ { - "id": 3737, + "id": 3746, "name": "expand", "variant": "declaration", "kind": 1024, @@ -78920,7 +84068,7 @@ } }, { - "id": 3738, + "id": 3747, "name": "fields", "variant": "declaration", "kind": 1024, @@ -78941,7 +84089,7 @@ } }, { - "id": 3740, + "id": 3749, "name": "limit", "variant": "declaration", "kind": 1024, @@ -78962,7 +84110,7 @@ } }, { - "id": 3739, + "id": 3748, "name": "offset", "variant": "declaration", "kind": 1024, @@ -78983,7 +84131,7 @@ } }, { - "id": 3741, + "id": 3750, "name": "order", "variant": "declaration", "kind": 1024, @@ -79016,24 +84164,24 @@ { "title": "Properties", "children": [ - 3737, - 3738, - 3740, - 3739, - 3741 + 3746, + 3747, + 3749, + 3748, + 3750 ] } ] }, { - "id": 4799, + "id": 4828, "name": "SubscriberContext", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4800, + "id": 4829, "name": "subscriberId", "variant": "declaration", "kind": 1024, @@ -79050,7 +84198,7 @@ { "title": "Properties", "children": [ - 4800 + 4829 ] } ], @@ -79084,7 +84232,7 @@ "flags": {}, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } @@ -79226,7 +84374,7 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, @@ -79413,7 +84561,7 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } @@ -79435,7 +84583,7 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, @@ -79573,7 +84721,7 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, @@ -79703,7 +84851,7 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } @@ -79725,7 +84873,7 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, @@ -79863,7 +85011,7 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, @@ -80081,7 +85229,7 @@ } }, { - "id": 1796, + "id": 1794, "name": "AdminDeleteShippingProfileRes", "variant": "declaration", "kind": 2097152, @@ -80094,13 +85242,13 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } }, { - "id": 2015, + "id": 2013, "name": "AdminDeleteUploadsRes", "variant": "declaration", "kind": 2097152, @@ -80113,13 +85261,13 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } }, { - "id": 2041, + "id": 2039, "name": "AdminDeleteUserRes", "variant": "declaration", "kind": 2097152, @@ -80132,7 +85280,7 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } @@ -80154,7 +85302,7 @@ "types": [ { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" }, @@ -80276,7 +85424,7 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } @@ -80303,7 +85451,7 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, @@ -80433,7 +85581,7 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } @@ -80460,7 +85608,7 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, @@ -80577,7 +85725,7 @@ } }, { - "id": 1868, + "id": 1866, "name": "AdminExtendedStoresRes", "variant": "declaration", "kind": 2097152, @@ -80596,14 +85744,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1869, + "id": 1867, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1870, + "id": 1868, "name": "store", "variant": "declaration", "kind": 1024, @@ -80618,7 +85766,7 @@ }, "type": { "type": "reference", - "target": 4580, + "target": 4607, "name": "ExtendedStoreDTO", "package": "@medusajs/medusa" } @@ -80628,7 +85776,7 @@ { "title": "Properties", "children": [ - 1870 + 1868 ] } ] @@ -80636,7 +85784,7 @@ } }, { - "id": 2116, + "id": 2114, "name": "AdminGetVariantsVariantInventoryRes", "variant": "declaration", "kind": 2097152, @@ -80655,14 +85803,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2117, + "id": 2115, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2118, + "id": 2116, "name": "variant", "variant": "declaration", "kind": 1024, @@ -80677,7 +85825,7 @@ }, "type": { "type": "reference", - "target": 2107, + "target": 2105, "name": "VariantInventory", "package": "@medusajs/medusa" } @@ -80687,7 +85835,7 @@ { "title": "Properties", "children": [ - 2118 + 2116 ] } ] @@ -80708,7 +85856,7 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } @@ -80735,7 +85883,7 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, @@ -80865,7 +86013,7 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } @@ -80887,7 +86035,7 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, @@ -80918,7 +86066,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4213, + "target": 4240, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -80955,7 +86103,7 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, @@ -81092,7 +86240,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4233, + "target": 4260, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -81165,7 +86313,7 @@ }, "type": { "type": "reference", - "target": 4213, + "target": 4240, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -81196,7 +86344,7 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } @@ -81280,7 +86428,7 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } @@ -81307,7 +86455,7 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, @@ -81440,7 +86588,7 @@ "types": [ { "type": "reference", - "target": 4245, + "target": 4272, "name": "PaginatedResponse", "package": "@medusajs/types" }, @@ -81570,7 +86718,7 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } @@ -81696,7 +86844,7 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, @@ -81834,7 +86982,7 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, @@ -82107,7 +87255,7 @@ } }, { - "id": 1877, + "id": 1875, "name": "AdminPaymentProvidersList", "variant": "declaration", "kind": 2097152, @@ -82126,14 +87274,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1878, + "id": 1876, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1879, + "id": 1877, "name": "payment_providers", "variant": "declaration", "kind": 1024, @@ -82164,7 +87312,7 @@ { "title": "Properties", "children": [ - 1879 + 1877 ] } ] @@ -82296,7 +87444,7 @@ } }, { - "id": 1062, + "id": 1068, "name": "AdminPriceListDeleteBatchRes", "variant": "declaration", "kind": 2097152, @@ -82315,14 +87463,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1063, + "id": 1069, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1065, + "id": 1071, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -82342,7 +87490,7 @@ "defaultValue": true }, { - "id": 1064, + "id": 1070, "name": "ids", "variant": "declaration", "kind": 1024, @@ -82364,7 +87512,7 @@ } }, { - "id": 1066, + "id": 1072, "name": "object", "variant": "declaration", "kind": 1024, @@ -82388,9 +87536,9 @@ { "title": "Properties", "children": [ - 1065, - 1064, - 1066 + 1071, + 1070, + 1072 ] } ] @@ -82398,7 +87546,7 @@ } }, { - "id": 1067, + "id": 1073, "name": "AdminPriceListDeleteProductPricesRes", "variant": "declaration", "kind": 2097152, @@ -82411,13 +87559,13 @@ }, "type": { "type": "reference", - "target": 1062, + "target": 1068, "name": "AdminPriceListDeleteBatchRes", "package": "@medusajs/medusa" } }, { - "id": 1069, + "id": 1075, "name": "AdminPriceListDeleteRes", "variant": "declaration", "kind": 2097152, @@ -82430,13 +87578,13 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } }, { - "id": 1068, + "id": 1074, "name": "AdminPriceListDeleteVariantPricesRes", "variant": "declaration", "kind": 2097152, @@ -82449,13 +87597,13 @@ }, "type": { "type": "reference", - "target": 1062, + "target": 1068, "name": "AdminPriceListDeleteBatchRes", "package": "@medusajs/medusa" } }, { - "id": 1059, + "id": 1065, "name": "AdminPriceListRes", "variant": "declaration", "kind": 2097152, @@ -82474,14 +87622,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1060, + "id": 1066, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1061, + "id": 1067, "name": "price_list", "variant": "declaration", "kind": 1024, @@ -82509,7 +87657,7 @@ { "title": "Properties", "children": [ - 1061 + 1067 ] } ] @@ -82517,7 +87665,7 @@ } }, { - "id": 1070, + "id": 1076, "name": "AdminPriceListsListRes", "variant": "declaration", "kind": 2097152, @@ -82538,21 +87686,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1071, + "id": 1077, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1072, + "id": 1078, "name": "price_lists", "variant": "declaration", "kind": 1024, @@ -82583,7 +87731,7 @@ { "title": "Properties", "children": [ - 1072 + 1078 ] } ] @@ -82593,7 +87741,7 @@ } }, { - "id": 1073, + "id": 1079, "name": "AdminPriceListsProductsListRes", "variant": "declaration", "kind": 2097152, @@ -82614,21 +87762,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1074, + "id": 1080, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1075, + "id": 1081, "name": "products", "variant": "declaration", "kind": 1024, @@ -82659,7 +87807,7 @@ { "title": "Properties", "children": [ - 1075 + 1081 ] } ] @@ -82669,7 +87817,7 @@ } }, { - "id": 1158, + "id": 1164, "name": "AdminProductCategoriesCategoryDeleteRes", "variant": "declaration", "kind": 2097152, @@ -82682,13 +87830,13 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } }, { - "id": 1155, + "id": 1161, "name": "AdminProductCategoriesCategoryRes", "variant": "declaration", "kind": 2097152, @@ -82707,14 +87855,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1156, + "id": 1162, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1157, + "id": 1163, "name": "product_category", "variant": "declaration", "kind": 1024, @@ -82742,7 +87890,7 @@ { "title": "Properties", "children": [ - 1157 + 1163 ] } ] @@ -82750,7 +87898,7 @@ } }, { - "id": 1159, + "id": 1165, "name": "AdminProductCategoriesListRes", "variant": "declaration", "kind": 2097152, @@ -82771,21 +87919,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1160, + "id": 1166, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1161, + "id": 1167, "name": "product_categories", "variant": "declaration", "kind": 1024, @@ -82816,7 +87964,7 @@ { "title": "Properties", "children": [ - 1161 + 1167 ] } ] @@ -82826,7 +87974,7 @@ } }, { - "id": 1232, + "id": 1238, "name": "AdminProductTagsListRes", "variant": "declaration", "kind": 2097152, @@ -82847,21 +87995,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1233, + "id": 1239, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1234, + "id": 1240, "name": "product_tags", "variant": "declaration", "kind": 1024, @@ -82892,7 +88040,7 @@ { "title": "Properties", "children": [ - 1234 + 1240 ] } ] @@ -82902,7 +88050,7 @@ } }, { - "id": 1254, + "id": 1260, "name": "AdminProductTypesListRes", "variant": "declaration", "kind": 2097152, @@ -82923,21 +88071,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1255, + "id": 1261, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1256, + "id": 1262, "name": "product_types", "variant": "declaration", "kind": 1024, @@ -82968,7 +88116,7 @@ { "title": "Properties", "children": [ - 1256 + 1262 ] } ] @@ -82978,7 +88126,7 @@ } }, { - "id": 1305, + "id": 1314, "name": "AdminProductsDeleteOptionRes", "variant": "declaration", "kind": 2097152, @@ -82997,14 +88145,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1306, + "id": 1315, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1309, + "id": 1318, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -83024,7 +88172,7 @@ "defaultValue": true }, { - "id": 1308, + "id": 1317, "name": "object", "variant": "declaration", "kind": 1024, @@ -83044,7 +88192,7 @@ "defaultValue": "option" }, { - "id": 1307, + "id": 1316, "name": "option_id", "variant": "declaration", "kind": 1024, @@ -83063,7 +88211,7 @@ } }, { - "id": 1310, + "id": 1319, "name": "product", "variant": "declaration", "kind": 1024, @@ -83091,10 +88239,10 @@ { "title": "Properties", "children": [ - 1309, - 1308, - 1307, - 1310 + 1318, + 1317, + 1316, + 1319 ] } ] @@ -83102,7 +88250,7 @@ } }, { - "id": 1317, + "id": 1326, "name": "AdminProductsDeleteRes", "variant": "declaration", "kind": 2097152, @@ -83121,14 +88269,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1318, + "id": 1327, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1321, + "id": 1330, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -83148,7 +88296,7 @@ "defaultValue": true }, { - "id": 1319, + "id": 1328, "name": "id", "variant": "declaration", "kind": 1024, @@ -83167,7 +88315,7 @@ } }, { - "id": 1320, + "id": 1329, "name": "object", "variant": "declaration", "kind": 1024, @@ -83191,9 +88339,9 @@ { "title": "Properties", "children": [ - 1321, - 1319, - 1320 + 1330, + 1328, + 1329 ] } ] @@ -83201,7 +88349,7 @@ } }, { - "id": 1311, + "id": 1320, "name": "AdminProductsDeleteVariantRes", "variant": "declaration", "kind": 2097152, @@ -83220,14 +88368,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1312, + "id": 1321, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1315, + "id": 1324, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -83247,7 +88395,7 @@ "defaultValue": true }, { - "id": 1314, + "id": 1323, "name": "object", "variant": "declaration", "kind": 1024, @@ -83267,7 +88415,7 @@ "defaultValue": "product-variant" }, { - "id": 1316, + "id": 1325, "name": "product", "variant": "declaration", "kind": 1024, @@ -83291,7 +88439,7 @@ } }, { - "id": 1313, + "id": 1322, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -83314,10 +88462,10 @@ { "title": "Properties", "children": [ - 1315, - 1314, - 1316, - 1313 + 1324, + 1323, + 1325, + 1322 ] } ] @@ -83325,7 +88473,7 @@ } }, { - "id": 1322, + "id": 1331, "name": "AdminProductsListRes", "variant": "declaration", "kind": 2097152, @@ -83346,21 +88494,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1323, + "id": 1332, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1324, + "id": 1333, "name": "products", "variant": "declaration", "kind": 1024, @@ -83380,7 +88528,7 @@ "types": [ { "type": "reference", - "target": 4389, + "target": 4416, "name": "PricedProduct", "package": "@medusajs/medusa" }, @@ -83402,7 +88550,7 @@ { "title": "Properties", "children": [ - 1324 + 1333 ] } ] @@ -83412,7 +88560,7 @@ } }, { - "id": 1331, + "id": 1340, "name": "AdminProductsListTagsRes", "variant": "declaration", "kind": 2097152, @@ -83431,14 +88579,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1332, + "id": 1341, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1333, + "id": 1342, "name": "tags", "variant": "declaration", "kind": 1024, @@ -83492,14 +88640,14 @@ { "type": "reflection", "declaration": { - "id": 1334, + "id": 1343, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1335, + "id": 1344, "name": "usage_count", "variant": "declaration", "kind": 1024, @@ -83522,7 +88670,7 @@ { "title": "Properties", "children": [ - 1335 + 1344 ] } ] @@ -83537,7 +88685,7 @@ { "title": "Properties", "children": [ - 1333 + 1342 ] } ] @@ -83545,7 +88693,7 @@ } }, { - "id": 1328, + "id": 1337, "name": "AdminProductsListTypesRes", "variant": "declaration", "kind": 2097152, @@ -83559,14 +88707,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1329, + "id": 1338, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1330, + "id": 1339, "name": "types", "variant": "declaration", "kind": 1024, @@ -83597,7 +88745,7 @@ { "title": "Properties", "children": [ - 1330 + 1339 ] } ] @@ -83605,7 +88753,7 @@ } }, { - "id": 1325, + "id": 1334, "name": "AdminProductsListVariantsRes", "variant": "declaration", "kind": 2097152, @@ -83621,21 +88769,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1326, + "id": 1335, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1327, + "id": 1336, "name": "variants", "variant": "declaration", "kind": 1024, @@ -83666,7 +88814,7 @@ { "title": "Properties", "children": [ - 1327 + 1336 ] } ] @@ -83676,7 +88824,7 @@ } }, { - "id": 1336, + "id": 1345, "name": "AdminProductsRes", "variant": "declaration", "kind": 2097152, @@ -83695,14 +88843,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1337, + "id": 1346, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1338, + "id": 1347, "name": "product", "variant": "declaration", "kind": 1024, @@ -83730,7 +88878,7 @@ { "title": "Properties", "children": [ - 1338 + 1347 ] } ] @@ -83738,7 +88886,7 @@ } }, { - "id": 1504, + "id": 1503, "name": "AdminPublishableApiKeyDeleteRes", "variant": "declaration", "kind": 2097152, @@ -83751,13 +88899,13 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } }, { - "id": 1501, + "id": 1500, "name": "AdminPublishableApiKeysListRes", "variant": "declaration", "kind": 2097152, @@ -83778,21 +88926,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1502, + "id": 1501, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1503, + "id": 1502, "name": "publishable_api_keys", "variant": "declaration", "kind": 1024, @@ -83823,7 +88971,7 @@ { "title": "Properties", "children": [ - 1503 + 1502 ] } ] @@ -83833,7 +88981,7 @@ } }, { - "id": 1505, + "id": 1504, "name": "AdminPublishableApiKeysListSalesChannelsRes", "variant": "declaration", "kind": 2097152, @@ -83852,14 +89000,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1506, + "id": 1505, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1507, + "id": 1506, "name": "sales_channels", "variant": "declaration", "kind": 1024, @@ -83890,7 +89038,7 @@ { "title": "Properties", "children": [ - 1507 + 1506 ] } ] @@ -83898,7 +89046,7 @@ } }, { - "id": 1498, + "id": 1497, "name": "AdminPublishableApiKeysRes", "variant": "declaration", "kind": 2097152, @@ -83917,14 +89065,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1499, + "id": 1498, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1500, + "id": 1499, "name": "publishable_api_key", "variant": "declaration", "kind": 1024, @@ -83952,7 +89100,7 @@ { "title": "Properties", "children": [ - 1500 + 1499 ] } ] @@ -84022,7 +89170,7 @@ } }, { - "id": 1550, + "id": 1549, "name": "AdminRegionsDeleteRes", "variant": "declaration", "kind": 2097152, @@ -84035,13 +89183,13 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } }, { - "id": 1547, + "id": 1546, "name": "AdminRegionsListRes", "variant": "declaration", "kind": 2097152, @@ -84062,21 +89210,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1548, + "id": 1547, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1549, + "id": 1548, "name": "regions", "variant": "declaration", "kind": 1024, @@ -84107,7 +89255,7 @@ { "title": "Properties", "children": [ - 1549 + 1548 ] } ] @@ -84117,7 +89265,7 @@ } }, { - "id": 1544, + "id": 1543, "name": "AdminRegionsRes", "variant": "declaration", "kind": 2097152, @@ -84136,14 +89284,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1545, + "id": 1544, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1546, + "id": 1545, "name": "region", "variant": "declaration", "kind": 1024, @@ -84171,7 +89319,7 @@ { "title": "Properties", "children": [ - 1546 + 1545 ] } ] @@ -84179,7 +89327,7 @@ } }, { - "id": 1672, + "id": 1669, "name": "AdminReservationsDeleteRes", "variant": "declaration", "kind": 2097152, @@ -84192,13 +89340,13 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } }, { - "id": 1667, + "id": 1664, "name": "AdminReservationsListRes", "variant": "declaration", "kind": 2097152, @@ -84219,21 +89367,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1668, + "id": 1665, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1669, + "id": 1666, "name": "reservations", "variant": "declaration", "kind": 1024, @@ -84250,7 +89398,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4516, + "target": 4543, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -84261,7 +89409,7 @@ { "title": "Properties", "children": [ - 1669 + 1666 ] } ] @@ -84271,7 +89419,7 @@ } }, { - "id": 1660, + "id": 1657, "name": "AdminReservationsRes", "variant": "declaration", "kind": 2097152, @@ -84290,14 +89438,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1661, + "id": 1658, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1662, + "id": 1659, "name": "reservation", "variant": "declaration", "kind": 1024, @@ -84312,7 +89460,7 @@ }, "type": { "type": "reference", - "target": 4516, + "target": 4543, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -84322,7 +89470,7 @@ { "title": "Properties", "children": [ - 1662 + 1659 ] } ] @@ -84330,7 +89478,7 @@ } }, { - "id": 1620, + "id": 1617, "name": "AdminReturnReasonsDeleteRes", "variant": "declaration", "kind": 2097152, @@ -84343,13 +89491,13 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } }, { - "id": 1617, + "id": 1614, "name": "AdminReturnReasonsListRes", "variant": "declaration", "kind": 2097152, @@ -84368,14 +89516,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1618, + "id": 1615, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1619, + "id": 1616, "name": "return_reasons", "variant": "declaration", "kind": 1024, @@ -84406,7 +89554,7 @@ { "title": "Properties", "children": [ - 1619 + 1616 ] } ] @@ -84414,7 +89562,7 @@ } }, { - "id": 1614, + "id": 1611, "name": "AdminReturnReasonsRes", "variant": "declaration", "kind": 2097152, @@ -84433,14 +89581,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1615, + "id": 1612, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1616, + "id": 1613, "name": "return_reason", "variant": "declaration", "kind": 1024, @@ -84468,7 +89616,7 @@ { "title": "Properties", "children": [ - 1616 + 1613 ] } ] @@ -84476,7 +89624,7 @@ } }, { - "id": 1640, + "id": 1637, "name": "AdminReturnsCancelRes", "variant": "declaration", "kind": 2097152, @@ -84495,14 +89643,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1641, + "id": 1638, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1642, + "id": 1639, "name": "order", "variant": "declaration", "kind": 1024, @@ -84530,7 +89678,7 @@ { "title": "Properties", "children": [ - 1642 + 1639 ] } ] @@ -84538,7 +89686,7 @@ } }, { - "id": 1643, + "id": 1640, "name": "AdminReturnsListRes", "variant": "declaration", "kind": 2097152, @@ -84559,21 +89707,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1644, + "id": 1641, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1645, + "id": 1642, "name": "returns", "variant": "declaration", "kind": 1024, @@ -84604,7 +89752,7 @@ { "title": "Properties", "children": [ - 1645 + 1642 ] } ] @@ -84614,7 +89762,7 @@ } }, { - "id": 1646, + "id": 1643, "name": "AdminReturnsRes", "variant": "declaration", "kind": 2097152, @@ -84633,14 +89781,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1647, + "id": 1644, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1648, + "id": 1645, "name": "return", "variant": "declaration", "kind": 1024, @@ -84668,7 +89816,7 @@ { "title": "Properties", "children": [ - 1648 + 1645 ] } ] @@ -84676,7 +89824,7 @@ } }, { - "id": 1708, + "id": 1705, "name": "AdminSalesChannelsDeleteLocationRes", "variant": "declaration", "kind": 2097152, @@ -84689,13 +89837,13 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } }, { - "id": 1707, + "id": 1704, "name": "AdminSalesChannelsDeleteRes", "variant": "declaration", "kind": 2097152, @@ -84708,13 +89856,13 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } }, { - "id": 1709, + "id": 1706, "name": "AdminSalesChannelsListRes", "variant": "declaration", "kind": 2097152, @@ -84735,21 +89883,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1710, + "id": 1707, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1711, + "id": 1708, "name": "sales_channels", "variant": "declaration", "kind": 1024, @@ -84780,7 +89928,7 @@ { "title": "Properties", "children": [ - 1711 + 1708 ] } ] @@ -84790,7 +89938,7 @@ } }, { - "id": 1704, + "id": 1701, "name": "AdminSalesChannelsRes", "variant": "declaration", "kind": 2097152, @@ -84809,14 +89957,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1705, + "id": 1702, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1706, + "id": 1703, "name": "sales_channel", "variant": "declaration", "kind": 1024, @@ -84844,7 +89992,7 @@ { "title": "Properties", "children": [ - 1706 + 1703 ] } ] @@ -84852,7 +90000,7 @@ } }, { - "id": 1763, + "id": 1760, "name": "AdminShippingOptionsDeleteRes", "variant": "declaration", "kind": 2097152, @@ -84865,13 +90013,13 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } }, { - "id": 1757, + "id": 1754, "name": "AdminShippingOptionsListRes", "variant": "declaration", "kind": 2097152, @@ -84892,21 +90040,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1758, + "id": 1755, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1759, + "id": 1756, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -84937,7 +90085,7 @@ { "title": "Properties", "children": [ - 1759 + 1756 ] } ] @@ -84947,7 +90095,7 @@ } }, { - "id": 1760, + "id": 1757, "name": "AdminShippingOptionsRes", "variant": "declaration", "kind": 2097152, @@ -84966,14 +90114,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1761, + "id": 1758, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1762, + "id": 1759, "name": "shipping_option", "variant": "declaration", "kind": 1024, @@ -85001,7 +90149,7 @@ { "title": "Properties", "children": [ - 1762 + 1759 ] } ] @@ -85009,7 +90157,7 @@ } }, { - "id": 1800, + "id": 1798, "name": "AdminShippingProfilesListRes", "variant": "declaration", "kind": 2097152, @@ -85028,14 +90176,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1801, + "id": 1799, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1802, + "id": 1800, "name": "shipping_profiles", "variant": "declaration", "kind": 1024, @@ -85066,7 +90214,7 @@ { "title": "Properties", "children": [ - 1802 + 1800 ] } ] @@ -85074,7 +90222,7 @@ } }, { - "id": 1797, + "id": 1795, "name": "AdminShippingProfilesRes", "variant": "declaration", "kind": 2097152, @@ -85093,14 +90241,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1798, + "id": 1796, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1799, + "id": 1797, "name": "shipping_profile", "variant": "declaration", "kind": 1024, @@ -85128,7 +90276,7 @@ { "title": "Properties", "children": [ - 1799 + 1797 ] } ] @@ -85136,7 +90284,7 @@ } }, { - "id": 1819, + "id": 1817, "name": "AdminStockLocationsDeleteRes", "variant": "declaration", "kind": 2097152, @@ -85149,13 +90297,13 @@ }, "type": { "type": "reference", - "target": 4550, + "target": 4577, "name": "DeleteResponse", "package": "@medusajs/types" } }, { - "id": 1823, + "id": 1821, "name": "AdminStockLocationsListRes", "variant": "declaration", "kind": 2097152, @@ -85176,21 +90324,21 @@ "types": [ { "type": "reference", - "target": 4245, + "target": 4272, "name": "PaginatedResponse", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 1824, + "id": 1822, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1825, + "id": 1823, "name": "stock_locations", "variant": "declaration", "kind": 1024, @@ -85199,7 +90347,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4555, + "target": 4582, "name": "StockLocationTypes.StockLocationExpandedDTO", "package": "@medusajs/types", "qualifiedName": "StockLocationExpandedDTO" @@ -85211,7 +90359,7 @@ { "title": "Properties", "children": [ - 1825 + 1823 ] } ] @@ -85221,7 +90369,7 @@ } }, { - "id": 1820, + "id": 1818, "name": "AdminStockLocationsRes", "variant": "declaration", "kind": 2097152, @@ -85240,14 +90388,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1821, + "id": 1819, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1822, + "id": 1820, "name": "stock_location", "variant": "declaration", "kind": 1024, @@ -85262,7 +90410,7 @@ }, "type": { "type": "reference", - "target": 4555, + "target": 4582, "name": "StockLocationTypes.StockLocationExpandedDTO", "package": "@medusajs/types", "qualifiedName": "StockLocationExpandedDTO" @@ -85273,7 +90421,7 @@ { "title": "Properties", "children": [ - 1822 + 1820 ] } ] @@ -85281,7 +90429,7 @@ } }, { - "id": 1871, + "id": 1869, "name": "AdminStoresRes", "variant": "declaration", "kind": 2097152, @@ -85300,14 +90448,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1872, + "id": 1870, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1873, + "id": 1871, "name": "store", "variant": "declaration", "kind": 1024, @@ -85335,7 +90483,7 @@ { "title": "Properties", "children": [ - 1873 + 1871 ] } ] @@ -85343,7 +90491,7 @@ } }, { - "id": 1892, + "id": 1890, "name": "AdminSwapsListRes", "variant": "declaration", "kind": 2097152, @@ -85364,21 +90512,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1893, + "id": 1891, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1894, + "id": 1892, "name": "swaps", "variant": "declaration", "kind": 1024, @@ -85409,7 +90557,7 @@ { "title": "Properties", "children": [ - 1894 + 1892 ] } ] @@ -85419,7 +90567,7 @@ } }, { - "id": 1895, + "id": 1893, "name": "AdminSwapsRes", "variant": "declaration", "kind": 2097152, @@ -85438,14 +90586,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1896, + "id": 1894, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1897, + "id": 1895, "name": "swap", "variant": "declaration", "kind": 1024, @@ -85473,7 +90621,7 @@ { "title": "Properties", "children": [ - 1897 + 1895 ] } ] @@ -85481,7 +90629,7 @@ } }, { - "id": 1874, + "id": 1872, "name": "AdminTaxProvidersList", "variant": "declaration", "kind": 2097152, @@ -85500,14 +90648,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1875, + "id": 1873, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1876, + "id": 1874, "name": "tax_providers", "variant": "declaration", "kind": 1024, @@ -85538,7 +90686,7 @@ { "title": "Properties", "children": [ - 1876 + 1874 ] } ] @@ -85546,7 +90694,7 @@ } }, { - "id": 1905, + "id": 1903, "name": "AdminTaxRatesDeleteRes", "variant": "declaration", "kind": 2097152, @@ -85559,13 +90707,13 @@ }, "type": { "type": "reference", - "target": 3746, + "target": 3755, "name": "DeleteResponse", "package": "@medusajs/medusa" } }, { - "id": 1906, + "id": 1904, "name": "AdminTaxRatesListRes", "variant": "declaration", "kind": 2097152, @@ -85586,21 +90734,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 1907, + "id": 1905, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1908, + "id": 1906, "name": "tax_rates", "variant": "declaration", "kind": 1024, @@ -85631,7 +90779,7 @@ { "title": "Properties", "children": [ - 1908 + 1906 ] } ] @@ -85641,7 +90789,7 @@ } }, { - "id": 1909, + "id": 1907, "name": "AdminTaxRatesRes", "variant": "declaration", "kind": 2097152, @@ -85660,14 +90808,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1910, + "id": 1908, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1911, + "id": 1909, "name": "tax_rate", "variant": "declaration", "kind": 1024, @@ -85695,7 +90843,7 @@ { "title": "Properties", "children": [ - 1911 + 1909 ] } ] @@ -85703,7 +90851,7 @@ } }, { - "id": 2016, + "id": 2014, "name": "AdminUploadsDownloadUrlRes", "variant": "declaration", "kind": 2097152, @@ -85722,14 +90870,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2017, + "id": 2015, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2018, + "id": 2016, "name": "download_url", "variant": "declaration", "kind": 1024, @@ -85752,7 +90900,7 @@ { "title": "Properties", "children": [ - 2018 + 2016 ] } ] @@ -85760,7 +90908,7 @@ } }, { - "id": 2012, + "id": 2010, "name": "AdminUploadsRes", "variant": "declaration", "kind": 2097152, @@ -85779,14 +90927,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2013, + "id": 2011, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2014, + "id": 2012, "name": "uploads", "variant": "declaration", "kind": 1024, @@ -85803,7 +90951,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4586, + "target": 4613, "name": "FileServiceUploadResult", "package": "@medusajs/types" } @@ -85814,7 +90962,7 @@ { "title": "Properties", "children": [ - 2014 + 2012 ] } ] @@ -85822,7 +90970,7 @@ } }, { - "id": 2035, + "id": 2033, "name": "AdminUserRes", "variant": "declaration", "kind": 2097152, @@ -85841,14 +90989,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2036, + "id": 2034, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2037, + "id": 2035, "name": "user", "variant": "declaration", "kind": 1024, @@ -85891,7 +91039,7 @@ { "title": "Properties", "children": [ - 2037 + 2035 ] } ] @@ -85899,7 +91047,7 @@ } }, { - "id": 2038, + "id": 2036, "name": "AdminUsersListRes", "variant": "declaration", "kind": 2097152, @@ -85918,14 +91066,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2039, + "id": 2037, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2040, + "id": 2038, "name": "users", "variant": "declaration", "kind": 1024, @@ -85971,7 +91119,7 @@ { "title": "Properties", "children": [ - 2040 + 2038 ] } ] @@ -85979,7 +91127,7 @@ } }, { - "id": 2075, + "id": 2073, "name": "AdminVariantsListRes", "variant": "declaration", "kind": 2097152, @@ -86000,21 +91148,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 2076, + "id": 2074, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2077, + "id": 2075, "name": "variants", "variant": "declaration", "kind": 1024, @@ -86031,7 +91179,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4590, + "target": 4617, "name": "PricedVariant", "package": "@medusajs/medusa" } @@ -86042,7 +91190,7 @@ { "title": "Properties", "children": [ - 2077 + 2075 ] } ] @@ -86052,7 +91200,7 @@ } }, { - "id": 2078, + "id": 2076, "name": "AdminVariantsRes", "variant": "declaration", "kind": 2097152, @@ -86071,14 +91219,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2079, + "id": 2077, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2080, + "id": 2078, "name": "variant", "variant": "declaration", "kind": 1024, @@ -86093,7 +91241,7 @@ }, "type": { "type": "reference", - "target": 4590, + "target": 4617, "name": "PricedVariant", "package": "@medusajs/medusa" } @@ -86103,7 +91251,7 @@ { "title": "Properties", "children": [ - 2080 + 2078 ] } ] @@ -86111,7 +91259,7 @@ } }, { - "id": 3674, + "id": 3683, "name": "BatchJobCreateProps", "variant": "declaration", "kind": 2097152, @@ -86159,7 +91307,7 @@ } }, { - "id": 3654, + "id": 3663, "name": "BatchJobResultError", "variant": "declaration", "kind": 2097152, @@ -86167,14 +91315,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3655, + "id": 3664, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3657, + "id": 3666, "name": "code", "variant": "declaration", "kind": 1024, @@ -86194,7 +91342,7 @@ } }, { - "id": 3656, + "id": 3665, "name": "message", "variant": "declaration", "kind": 1024, @@ -86209,20 +91357,20 @@ { "title": "Properties", "children": [ - 3657, - 3656 + 3666, + 3665 ] } ], "indexSignature": { - "id": 3658, + "id": 3667, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 3659, + "id": 3668, "name": "key", "variant": "param", "kind": 32768, @@ -86242,7 +91390,7 @@ } }, { - "id": 3660, + "id": 3669, "name": "BatchJobResultStatDescriptor", "variant": "declaration", "kind": 2097152, @@ -86250,14 +91398,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3661, + "id": 3670, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3662, + "id": 3671, "name": "key", "variant": "declaration", "kind": 1024, @@ -86268,7 +91416,7 @@ } }, { - "id": 3664, + "id": 3673, "name": "message", "variant": "declaration", "kind": 1024, @@ -86279,7 +91427,7 @@ } }, { - "id": 3663, + "id": 3672, "name": "name", "variant": "declaration", "kind": 1024, @@ -86294,9 +91442,9 @@ { "title": "Properties", "children": [ - 3662, - 3664, - 3663 + 3671, + 3673, + 3672 ] } ] @@ -86304,7 +91452,7 @@ } }, { - "id": 3648, + "id": 3657, "name": "BatchJobUpdateProps", "variant": "declaration", "kind": 2097152, @@ -86355,7 +91503,7 @@ } }, { - "id": 2810, + "id": 2821, "name": "CartCompletionResponse", "variant": "declaration", "kind": 2097152, @@ -86363,14 +91511,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2811, + "id": 2822, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2813, + "id": 2824, "name": "response_body", "variant": "declaration", "kind": 1024, @@ -86404,7 +91552,7 @@ } }, { - "id": 2812, + "id": 2823, "name": "response_code", "variant": "declaration", "kind": 1024, @@ -86427,8 +91575,8 @@ { "title": "Properties", "children": [ - 2813, - 2812 + 2824, + 2823 ] } ] @@ -86436,14 +91584,14 @@ } }, { - "id": 3819, + "id": 3828, "name": "ClassConstructor", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3823, + "id": 3832, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86453,21 +91601,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3820, + "id": 3829, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3821, + "id": 3830, "name": "new ClassConstructor", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 3822, + "id": 3831, "name": "args", "variant": "param", "kind": 32768, @@ -86495,21 +91643,21 @@ } }, { - "id": 3888, + "id": 3897, "name": "ConfigModule", "variant": "declaration", "kind": 2097152, "flags": {}, "type": { "type": "reference", - "target": 4779, + "target": 4808, "name": "CommonTypes.ConfigModule", "package": "@medusajs/types", "qualifiedName": "ConfigModule" } }, { - "id": 4779, + "id": 4808, "name": "ConfigModule", "variant": "declaration", "kind": 2097152, @@ -86517,14 +91665,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4780, + "id": 4809, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4782, + "id": 4811, "name": "featureFlags", "variant": "declaration", "kind": 1024, @@ -86559,7 +91707,7 @@ } }, { - "id": 4783, + "id": 4812, "name": "modules", "variant": "declaration", "kind": 1024, @@ -86596,13 +91744,13 @@ "types": [ { "type": "reference", - "target": 4919, + "target": 4974, "name": "InternalModuleDeclaration", "package": "@medusajs/types" }, { "type": "reference", - "target": 4929, + "target": 4984, "name": "ExternalModuleDeclaration", "package": "@medusajs/types" } @@ -86620,7 +91768,7 @@ } }, { - "id": 4784, + "id": 4813, "name": "plugins", "variant": "declaration", "kind": 1024, @@ -86633,14 +91781,14 @@ { "type": "reflection", "declaration": { - "id": 4785, + "id": 4814, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4787, + "id": 4816, "name": "options", "variant": "declaration", "kind": 1024, @@ -86666,7 +91814,7 @@ } }, { - "id": 4786, + "id": 4815, "name": "resolve", "variant": "declaration", "kind": 1024, @@ -86681,8 +91829,8 @@ { "title": "Properties", "children": [ - 4787, - 4786 + 4816, + 4815 ] } ] @@ -86697,14 +91845,14 @@ } }, { - "id": 4781, + "id": 4810, "name": "projectConfig", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4898, + "target": 4953, "name": "ProjectConfigOptions", "package": "@medusajs/types" } @@ -86714,10 +91862,10 @@ { "title": "Properties", "children": [ - 4782, - 4783, - 4784, - 4781 + 4811, + 4812, + 4813, + 4810 ] } ] @@ -86725,14 +91873,14 @@ } }, { - "id": 3883, + "id": 3892, "name": "Constructor", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3887, + "id": 3896, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86742,21 +91890,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3884, + "id": 3893, "name": "__type", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 3885, + "id": 3894, "name": "__type", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 3886, + "id": 3895, "name": "args", "variant": "param", "kind": 32768, @@ -86784,14 +91932,14 @@ } }, { - "id": 4801, + "id": 4830, "name": "Constructor", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4805, + "id": 4834, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86801,21 +91949,21 @@ "type": { "type": "reflection", "declaration": { - "id": 4802, + "id": 4831, "name": "__type", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4803, + "id": 4832, "name": "__type", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 4804, + "id": 4833, "name": "args", "variant": "param", "kind": 32768, @@ -86843,7 +91991,7 @@ } }, { - "id": 3649, + "id": 3658, "name": "CreateBatchJobInput", "variant": "declaration", "kind": 2097152, @@ -86851,14 +91999,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3650, + "id": 3659, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3652, + "id": 3661, "name": "context", "variant": "declaration", "kind": 1024, @@ -86881,7 +92029,7 @@ } }, { - "id": 3653, + "id": 3662, "name": "dry_run", "variant": "declaration", "kind": 1024, @@ -86892,7 +92040,7 @@ } }, { - "id": 3651, + "id": 3660, "name": "type", "variant": "declaration", "kind": 1024, @@ -86907,9 +92055,9 @@ { "title": "Properties", "children": [ - 3652, - 3653, - 3651 + 3661, + 3662, + 3660 ] } ] @@ -86917,7 +92065,7 @@ } }, { - "id": 3941, + "id": 3950, "name": "CreatePriceListInput", "variant": "declaration", "kind": 2097152, @@ -86925,14 +92073,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3942, + "id": 3951, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3948, + "id": 3957, "name": "customer_groups", "variant": "declaration", "kind": 1024, @@ -86944,14 +92092,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 3949, + "id": 3958, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3950, + "id": 3959, "name": "id", "variant": "declaration", "kind": 1024, @@ -86966,7 +92114,7 @@ { "title": "Properties", "children": [ - 3950 + 3959 ] } ] @@ -86975,7 +92123,7 @@ } }, { - "id": 3944, + "id": 3953, "name": "description", "variant": "declaration", "kind": 1024, @@ -86986,7 +92134,7 @@ } }, { - "id": 3952, + "id": 3961, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -87004,7 +92152,7 @@ } }, { - "id": 3953, + "id": 3962, "name": "includes_tax", "variant": "declaration", "kind": 1024, @@ -87017,7 +92165,7 @@ } }, { - "id": 3943, + "id": 3952, "name": "name", "variant": "declaration", "kind": 1024, @@ -87028,7 +92176,7 @@ } }, { - "id": 3947, + "id": 3956, "name": "prices", "variant": "declaration", "kind": 1024, @@ -87037,14 +92185,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3932, + "target": 3941, "name": "AdminPriceListPricesCreateReq", "package": "@medusajs/medusa" } } }, { - "id": 3951, + "id": 3960, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -87062,7 +92210,7 @@ } }, { - "id": 3946, + "id": 3955, "name": "status", "variant": "declaration", "kind": 1024, @@ -87071,20 +92219,20 @@ }, "type": { "type": "reference", - "target": 3906, + "target": 3915, "name": "PriceListStatus", "package": "@medusajs/medusa" } }, { - "id": 3945, + "id": 3954, "name": "type", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3903, + "target": 3912, "name": "PriceListType", "package": "@medusajs/medusa" } @@ -87094,15 +92242,15 @@ { "title": "Properties", "children": [ - 3948, - 3944, - 3952, + 3957, 3953, - 3943, - 3947, - 3951, - 3946, - 3945 + 3961, + 3962, + 3952, + 3956, + 3960, + 3955, + 3954 ] } ] @@ -87110,7 +92258,7 @@ } }, { - "id": 4704, + "id": 4731, "name": "CreateReturnType", "variant": "declaration", "kind": 2097152, @@ -87141,7 +92289,7 @@ } }, { - "id": 3278, + "id": 3287, "name": "Data", "variant": "declaration", "kind": 2097152, @@ -87183,7 +92331,7 @@ "types": [ { "type": "reference", - "target": 4213, + "target": 4240, "name": "InventoryItemDTO", "package": "@medusajs/types" }, @@ -87216,7 +92364,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4233, + "target": 4260, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -87307,7 +92455,7 @@ } }, { - "id": 4675, + "id": 4702, "name": "DeleteFileType", "variant": "declaration", "kind": 2097152, @@ -87315,14 +92463,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4676, + "id": 4703, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4677, + "id": 4704, "name": "fileKey", "variant": "declaration", "kind": 1024, @@ -87337,19 +92485,19 @@ { "title": "Properties", "children": [ - 4677 + 4704 ] } ], "indexSignature": { - "id": 4678, + "id": 4705, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 4679, + "id": 4706, "name": "x", "variant": "param", "kind": 32768, @@ -87369,7 +92517,7 @@ } }, { - "id": 4550, + "id": 4577, "name": "DeleteResponse", "variant": "declaration", "kind": 2097152, @@ -87385,14 +92533,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4551, + "id": 4578, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4554, + "id": 4581, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -87408,10 +92556,11 @@ "type": { "type": "intrinsic", "name": "boolean" - } + }, + "defaultValue": true }, { - "id": 4552, + "id": 4579, "name": "id", "variant": "declaration", "kind": 1024, @@ -87430,7 +92579,7 @@ } }, { - "id": 4553, + "id": 4580, "name": "object", "variant": "declaration", "kind": 1024, @@ -87446,16 +92595,17 @@ "type": { "type": "intrinsic", "name": "string" - } + }, + "defaultValue": "stock_location" } ], "groups": [ { "title": "Properties", "children": [ - 4554, - 4552, - 4553 + 4581, + 4579, + 4580 ] } ] @@ -87463,7 +92613,7 @@ } }, { - "id": 4862, + "id": 4917, "name": "DiscountAllocation", "variant": "declaration", "kind": 2097152, @@ -87479,14 +92629,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4863, + "id": 4918, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4864, + "id": 4919, "name": "amount", "variant": "declaration", "kind": 1024, @@ -87497,7 +92647,7 @@ } }, { - "id": 4865, + "id": 4920, "name": "unit_amount", "variant": "declaration", "kind": 1024, @@ -87512,8 +92662,8 @@ { "title": "Properties", "children": [ - 4864, - 4865 + 4919, + 4920 ] } ] @@ -87521,14 +92671,14 @@ } }, { - "id": 3699, + "id": 3708, "name": "ExtendedFindConfig", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3707, + "id": 3716, "name": "TEntity", "variant": "typeParam", "kind": 131072, @@ -87636,14 +92786,14 @@ { "type": "reflection", "declaration": { - "id": 3700, + "id": 3709, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3704, + "id": 3713, "name": "order", "variant": "declaration", "kind": 1024, @@ -87669,7 +92819,7 @@ } }, { - "id": 3702, + "id": 3711, "name": "relations", "variant": "declaration", "kind": 1024, @@ -87695,7 +92845,7 @@ } }, { - "id": 3701, + "id": 3710, "name": "select", "variant": "declaration", "kind": 1024, @@ -87721,7 +92871,7 @@ } }, { - "id": 3705, + "id": 3714, "name": "skip", "variant": "declaration", "kind": 1024, @@ -87734,7 +92884,7 @@ } }, { - "id": 3706, + "id": 3715, "name": "take", "variant": "declaration", "kind": 1024, @@ -87747,7 +92897,7 @@ } }, { - "id": 3703, + "id": 3712, "name": "where", "variant": "declaration", "kind": 1024, @@ -87800,12 +92950,12 @@ { "title": "Properties", "children": [ - 3704, - 3702, - 3701, - 3705, - 3706, - 3703 + 3713, + 3711, + 3710, + 3714, + 3715, + 3712 ] } ] @@ -87815,14 +92965,14 @@ } }, { - "id": 3815, + "id": 3824, "name": "ExtendedRequest", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3818, + "id": 3827, "name": "TEntity", "variant": "typeParam", "kind": 131072, @@ -87845,14 +92995,14 @@ { "type": "reflection", "declaration": { - "id": 3816, + "id": 3825, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3817, + "id": 3826, "name": "resource", "variant": "declaration", "kind": 1024, @@ -87869,7 +93019,7 @@ { "title": "Properties", "children": [ - 3817 + 3826 ] } ] @@ -87879,7 +93029,7 @@ } }, { - "id": 1663, + "id": 1660, "name": "ExtendedReservationItem", "variant": "declaration", "kind": 2097152, @@ -87895,21 +93045,21 @@ "types": [ { "type": "reference", - "target": 4516, + "target": 4543, "name": "ReservationItemDTO", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 1664, + "id": 1661, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1666, + "id": 1663, "name": "inventory_item", "variant": "declaration", "kind": 1024, @@ -87926,13 +93076,13 @@ }, "type": { "type": "reference", - "target": 4213, + "target": 4240, "name": "InventoryItemDTO", "package": "@medusajs/types" } }, { - "id": 1665, + "id": 1662, "name": "line_item", "variant": "declaration", "kind": 1024, @@ -87962,8 +93112,8 @@ { "title": "Properties", "children": [ - 1666, - 1665 + 1663, + 1662 ] } ] @@ -87973,7 +93123,7 @@ } }, { - "id": 4580, + "id": 4607, "name": "ExtendedStoreDTO", "variant": "declaration", "kind": 2097152, @@ -87999,14 +93149,14 @@ { "type": "reflection", "declaration": { - "id": 4581, + "id": 4608, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4584, + "id": 4611, "name": "feature_flags", "variant": "declaration", "kind": 1024, @@ -88021,13 +93171,13 @@ }, "type": { "type": "reference", - "target": 4840, + "target": 4895, "name": "FeatureFlagsResponse", "package": "@medusajs/medusa" } }, { - "id": 4583, + "id": 4610, "name": "fulfillment_providers", "variant": "declaration", "kind": 1024, @@ -88054,7 +93204,7 @@ } }, { - "id": 4585, + "id": 4612, "name": "modules", "variant": "declaration", "kind": 1024, @@ -88069,13 +93219,13 @@ }, "type": { "type": "reference", - "target": 4844, + "target": 4899, "name": "ModulesResponse", "package": "@medusajs/medusa" } }, { - "id": 4582, + "id": 4609, "name": "payment_providers", "variant": "declaration", "kind": 1024, @@ -88106,10 +93256,10 @@ { "title": "Properties", "children": [ - 4584, - 4583, - 4585, - 4582 + 4611, + 4610, + 4612, + 4609 ] } ] @@ -88119,7 +93269,7 @@ } }, { - "id": 4929, + "id": 4984, "name": "ExternalModuleDeclaration", "variant": "declaration", "kind": 2097152, @@ -88127,14 +93277,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4930, + "id": 4985, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4939, + "id": 4994, "name": "alias", "variant": "declaration", "kind": 1024, @@ -88155,7 +93305,7 @@ } }, { - "id": 4932, + "id": 4987, "name": "definition", "variant": "declaration", "kind": 1024, @@ -88164,13 +93314,13 @@ }, "type": { "type": "reference", - "target": 4984, + "target": 5076, "name": "ModuleDefinition", "package": "@medusajs/types" } }, { - "id": 4940, + "id": 4995, "name": "main", "variant": "declaration", "kind": 1024, @@ -88191,7 +93341,7 @@ } }, { - "id": 4938, + "id": 4993, "name": "options", "variant": "declaration", "kind": 1024, @@ -88219,20 +93369,20 @@ } }, { - "id": 4931, + "id": 4986, "name": "scope", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4996, + "target": 5088, "name": "MODULE_SCOPE.EXTERNAL", "package": "@medusajs/types" } }, { - "id": 4933, + "id": 4988, "name": "server", "variant": "declaration", "kind": 1024, @@ -88242,14 +93392,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4934, + "id": 4989, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4937, + "id": 4992, "name": "keepAlive", "variant": "declaration", "kind": 1024, @@ -88260,7 +93410,7 @@ } }, { - "id": 4935, + "id": 4990, "name": "type", "variant": "declaration", "kind": 1024, @@ -88271,7 +93421,7 @@ } }, { - "id": 4936, + "id": 4991, "name": "url", "variant": "declaration", "kind": 1024, @@ -88286,9 +93436,9 @@ { "title": "Properties", "children": [ - 4937, - 4935, - 4936 + 4992, + 4990, + 4991 ] } ] @@ -88300,12 +93450,12 @@ { "title": "Properties", "children": [ - 4939, - 4932, - 4940, - 4938, - 4931, - 4933 + 4994, + 4987, + 4995, + 4993, + 4986, + 4988 ] } ] @@ -88313,7 +93463,7 @@ } }, { - "id": 4840, + "id": 4895, "name": "FeatureFlagsResponse", "variant": "declaration", "kind": 2097152, @@ -88329,14 +93479,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 4841, + "id": 4896, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4842, + "id": 4897, "name": "key", "variant": "declaration", "kind": 1024, @@ -88347,7 +93497,7 @@ } }, { - "id": 4843, + "id": 4898, "name": "value", "variant": "declaration", "kind": 1024, @@ -88386,8 +93536,8 @@ { "title": "Properties", "children": [ - 4842, - 4843 + 4897, + 4898 ] } ] @@ -88396,7 +93546,7 @@ } }, { - "id": 4687, + "id": 4714, "name": "FileServiceGetUploadStreamResult", "variant": "declaration", "kind": 2097152, @@ -88404,14 +93554,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4688, + "id": 4715, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4692, + "id": 4719, "name": "fileKey", "variant": "declaration", "kind": 1024, @@ -88422,7 +93572,7 @@ } }, { - "id": 4690, + "id": 4717, "name": "promise", "variant": "declaration", "kind": 1024, @@ -88444,7 +93594,7 @@ } }, { - "id": 4691, + "id": 4718, "name": "url", "variant": "declaration", "kind": 1024, @@ -88455,7 +93605,7 @@ } }, { - "id": 4689, + "id": 4716, "name": "writeStream", "variant": "declaration", "kind": 1024, @@ -88476,22 +93626,22 @@ { "title": "Properties", "children": [ - 4692, - 4690, - 4691, - 4689 + 4719, + 4717, + 4718, + 4716 ] } ], "indexSignature": { - "id": 4693, + "id": 4720, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 4694, + "id": 4721, "name": "x", "variant": "param", "kind": 32768, @@ -88511,7 +93661,7 @@ } }, { - "id": 4586, + "id": 4613, "name": "FileServiceUploadResult", "variant": "declaration", "kind": 2097152, @@ -88519,14 +93669,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4587, + "id": 4614, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4589, + "id": 4616, "name": "key", "variant": "declaration", "kind": 1024, @@ -88545,7 +93695,7 @@ } }, { - "id": 4588, + "id": 4615, "name": "url", "variant": "declaration", "kind": 1024, @@ -88568,8 +93718,8 @@ { "title": "Properties", "children": [ - 4589, - 4588 + 4616, + 4615 ] } ] @@ -88577,7 +93727,7 @@ } }, { - "id": 4702, + "id": 4729, "name": "FulfillmentProviderData", "variant": "declaration", "kind": 2097152, @@ -88603,7 +93753,7 @@ } }, { - "id": 4695, + "id": 4722, "name": "GetUploadedFileType", "variant": "declaration", "kind": 2097152, @@ -88611,14 +93761,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4696, + "id": 4723, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4697, + "id": 4724, "name": "fileKey", "variant": "declaration", "kind": 1024, @@ -88629,7 +93779,7 @@ } }, { - "id": 4698, + "id": 4725, "name": "isPrivate", "variant": "declaration", "kind": 1024, @@ -88646,20 +93796,20 @@ { "title": "Properties", "children": [ - 4697, - 4698 + 4724, + 4725 ] } ], "indexSignature": { - "id": 4699, + "id": 4726, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 4700, + "id": 4727, "name": "x", "variant": "param", "kind": 32768, @@ -88679,7 +93829,7 @@ } }, { - "id": 4858, + "id": 4913, "name": "GiftCardAllocation", "variant": "declaration", "kind": 2097152, @@ -88695,14 +93845,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4859, + "id": 4914, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4860, + "id": 4915, "name": "amount", "variant": "declaration", "kind": 1024, @@ -88713,7 +93863,7 @@ } }, { - "id": 4861, + "id": 4916, "name": "unit_amount", "variant": "declaration", "kind": 1024, @@ -88728,8 +93878,8 @@ { "title": "Properties", "children": [ - 4860, - 4861 + 4915, + 4916 ] } ] @@ -88737,7 +93887,7 @@ } }, { - "id": 4974, + "id": 5066, "name": "HttpCompressionOptions", "variant": "declaration", "kind": 2097152, @@ -88745,14 +93895,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4975, + "id": 5067, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4976, + "id": 5068, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -88765,7 +93915,7 @@ } }, { - "id": 4977, + "id": 5069, "name": "level", "variant": "declaration", "kind": 1024, @@ -88778,7 +93928,7 @@ } }, { - "id": 4978, + "id": 5070, "name": "memLevel", "variant": "declaration", "kind": 1024, @@ -88791,7 +93941,7 @@ } }, { - "id": 4979, + "id": 5071, "name": "threshold", "variant": "declaration", "kind": 1024, @@ -88817,10 +93967,10 @@ { "title": "Properties", "children": [ - 4976, - 4977, - 4978, - 4979 + 5068, + 5069, + 5070, + 5071 ] } ] @@ -88828,7 +93978,139 @@ } }, { - "id": 4919, + "id": 4806, + "name": "InnerSelector", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 4807, + "name": "TEntity", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "mapped", + "parameter": "key", + "parameterType": { + "type": "typeOperator", + "operator": "keyof", + "target": { + "type": "reference", + "target": -1, + "name": "TEntity", + "refersToTypeParameter": true + } + }, + "templateType": { + "type": "union", + "types": [ + { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": -1, + "name": "key", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": -1, + "name": "TEntity", + "refersToTypeParameter": true + } + }, + { + "type": "array", + "elementType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": -1, + "name": "key", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": -1, + "name": "TEntity", + "refersToTypeParameter": true + } + } + }, + { + "type": "reference", + "target": 3762, + "name": "DateComparisonOperator", + "package": "@medusajs/medusa" + }, + { + "type": "reference", + "target": 3769, + "name": "StringComparisonOperator", + "package": "@medusajs/medusa" + }, + { + "type": "reference", + "target": 3779, + "name": "NumericalComparisonOperator", + "package": "@medusajs/medusa" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/typeorm/find-options/FindOperator.d.ts", + "qualifiedName": "FindOperator" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "array", + "elementType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": -1, + "name": "key", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": -1, + "name": "TEntity", + "refersToTypeParameter": true + } + } + }, + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + ], + "name": "FindOperator", + "package": "typeorm" + } + ] + }, + "optionalModifier": "+" + } + }, + { + "id": 4974, "name": "InternalModuleDeclaration", "variant": "declaration", "kind": 2097152, @@ -88836,14 +94118,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4920, + "id": 4975, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4927, + "id": 4982, "name": "alias", "variant": "declaration", "kind": 1024, @@ -88864,7 +94146,7 @@ } }, { - "id": 4924, + "id": 4979, "name": "definition", "variant": "declaration", "kind": 1024, @@ -88873,13 +94155,13 @@ }, "type": { "type": "reference", - "target": 4984, + "target": 5076, "name": "ModuleDefinition", "package": "@medusajs/types" } }, { - "id": 4923, + "id": 4978, "name": "dependencies", "variant": "declaration", "kind": 1024, @@ -88895,7 +94177,7 @@ } }, { - "id": 4928, + "id": 4983, "name": "main", "variant": "declaration", "kind": 1024, @@ -88916,7 +94198,7 @@ } }, { - "id": 4926, + "id": 4981, "name": "options", "variant": "declaration", "kind": 1024, @@ -88944,7 +94226,7 @@ } }, { - "id": 4925, + "id": 4980, "name": "resolve", "variant": "declaration", "kind": 1024, @@ -88957,27 +94239,27 @@ } }, { - "id": 4922, + "id": 4977, "name": "resources", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4981, + "target": 5073, "name": "MODULE_RESOURCE_TYPE", "package": "@medusajs/types" } }, { - "id": 4921, + "id": 4976, "name": "scope", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4980, + "target": 5072, "name": "MODULE_SCOPE.INTERNAL", "package": "@medusajs/types" } @@ -88987,14 +94269,14 @@ { "title": "Properties", "children": [ - 4927, - 4924, - 4923, - 4928, - 4926, - 4925, - 4922, - 4921 + 4982, + 4979, + 4978, + 4983, + 4981, + 4980, + 4977, + 4976 ] } ] @@ -89002,7 +94284,7 @@ } }, { - "id": 4213, + "id": 4240, "name": "InventoryItemDTO", "variant": "declaration", "kind": 2097152, @@ -89016,14 +94298,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4214, + "id": 4241, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4230, + "id": 4257, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -89056,7 +94338,7 @@ } }, { - "id": 4232, + "id": 4259, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -89093,7 +94375,7 @@ } }, { - "id": 4227, + "id": 4254, "name": "description", "variant": "declaration", "kind": 1024, @@ -89123,7 +94405,7 @@ } }, { - "id": 4224, + "id": 4251, "name": "height", "variant": "declaration", "kind": 1024, @@ -89153,7 +94435,7 @@ } }, { - "id": 4218, + "id": 4245, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -89183,7 +94465,7 @@ } }, { - "id": 4215, + "id": 4242, "name": "id", "variant": "declaration", "kind": 1024, @@ -89202,7 +94484,7 @@ } }, { - "id": 4223, + "id": 4250, "name": "length", "variant": "declaration", "kind": 1024, @@ -89232,7 +94514,7 @@ } }, { - "id": 4221, + "id": 4248, "name": "material", "variant": "declaration", "kind": 1024, @@ -89262,7 +94544,7 @@ } }, { - "id": 4229, + "id": 4256, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -89307,7 +94589,7 @@ } }, { - "id": 4220, + "id": 4247, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -89337,7 +94619,7 @@ } }, { - "id": 4217, + "id": 4244, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -89367,7 +94649,7 @@ } }, { - "id": 4219, + "id": 4246, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -89386,7 +94668,7 @@ } }, { - "id": 4216, + "id": 4243, "name": "sku", "variant": "declaration", "kind": 1024, @@ -89416,7 +94698,7 @@ } }, { - "id": 4228, + "id": 4255, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -89446,7 +94728,7 @@ } }, { - "id": 4226, + "id": 4253, "name": "title", "variant": "declaration", "kind": 1024, @@ -89476,7 +94758,7 @@ } }, { - "id": 4231, + "id": 4258, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -89509,7 +94791,7 @@ } }, { - "id": 4222, + "id": 4249, "name": "weight", "variant": "declaration", "kind": 1024, @@ -89539,7 +94821,7 @@ } }, { - "id": 4225, + "id": 4252, "name": "width", "variant": "declaration", "kind": 1024, @@ -89573,24 +94855,24 @@ { "title": "Properties", "children": [ - 4230, - 4232, - 4227, - 4224, - 4218, - 4215, - 4223, - 4221, - 4229, - 4220, - 4217, - 4219, - 4216, - 4228, - 4226, - 4231, - 4222, - 4225 + 4257, + 4259, + 4254, + 4251, + 4245, + 4242, + 4250, + 4248, + 4256, + 4247, + 4244, + 4246, + 4243, + 4255, + 4253, + 4258, + 4249, + 4252 ] } ] @@ -89598,7 +94880,7 @@ } }, { - "id": 4233, + "id": 4260, "name": "InventoryLevelDTO", "variant": "declaration", "kind": 2097152, @@ -89612,14 +94894,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4234, + "id": 4261, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4242, + "id": 4269, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -89652,7 +94934,7 @@ } }, { - "id": 4244, + "id": 4271, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -89689,7 +94971,7 @@ } }, { - "id": 4235, + "id": 4262, "name": "id", "variant": "declaration", "kind": 1024, @@ -89700,7 +94982,7 @@ } }, { - "id": 4240, + "id": 4267, "name": "incoming_quantity", "variant": "declaration", "kind": 1024, @@ -89719,7 +95001,7 @@ } }, { - "id": 4236, + "id": 4263, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -89730,7 +95012,7 @@ } }, { - "id": 4237, + "id": 4264, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -89749,7 +95031,7 @@ } }, { - "id": 4241, + "id": 4268, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -89792,7 +95074,7 @@ } }, { - "id": 4239, + "id": 4266, "name": "reserved_quantity", "variant": "declaration", "kind": 1024, @@ -89811,7 +95093,7 @@ } }, { - "id": 4238, + "id": 4265, "name": "stocked_quantity", "variant": "declaration", "kind": 1024, @@ -89830,7 +95112,7 @@ } }, { - "id": 4243, + "id": 4270, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -89867,16 +95149,16 @@ { "title": "Properties", "children": [ - 4242, - 4244, - 4235, - 4240, - 4236, - 4237, - 4241, - 4239, - 4238, - 4243 + 4269, + 4271, + 4262, + 4267, + 4263, + 4264, + 4268, + 4266, + 4265, + 4270 ] } ] @@ -89884,7 +95166,7 @@ } }, { - "id": 3573, + "id": 3582, "name": "ItemTaxCalculationLine", "variant": "declaration", "kind": 2097152, @@ -89900,14 +95182,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3574, + "id": 3583, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3575, + "id": 3584, "name": "item", "variant": "declaration", "kind": 1024, @@ -89931,7 +95213,7 @@ } }, { - "id": 3576, + "id": 3585, "name": "rates", "variant": "declaration", "kind": 1024, @@ -89940,7 +95222,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4737, + "target": 4764, "name": "TaxServiceRate", "package": "@medusajs/medusa" } @@ -89951,8 +95233,8 @@ { "title": "Properties", "children": [ - 3575, - 3576 + 3584, + 3585 ] } ] @@ -89960,7 +95242,7 @@ } }, { - "id": 4956, + "id": 5048, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -89968,14 +95250,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4957, + "id": 5049, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4958, + "id": 5050, "name": "alias", "variant": "declaration", "kind": 1024, @@ -89986,7 +95268,7 @@ } }, { - "id": 4965, + "id": 5057, "name": "args", "variant": "declaration", "kind": 1024, @@ -90022,7 +95304,7 @@ } }, { - "id": 4959, + "id": 5051, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -90033,7 +95315,7 @@ } }, { - "id": 4963, + "id": 5055, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -90054,7 +95336,7 @@ } }, { - "id": 4962, + "id": 5054, "name": "isInternalService", "variant": "declaration", "kind": 1024, @@ -90075,7 +95357,7 @@ } }, { - "id": 4964, + "id": 5056, "name": "isList", "variant": "declaration", "kind": 1024, @@ -90096,7 +95378,7 @@ } }, { - "id": 4960, + "id": 5052, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -90107,7 +95389,7 @@ } }, { - "id": 4961, + "id": 5053, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -90122,14 +95404,14 @@ { "title": "Properties", "children": [ - 4958, - 4965, - 4959, - 4963, - 4962, - 4964, - 4960, - 4961 + 5050, + 5057, + 5051, + 5055, + 5054, + 5056, + 5052, + 5053 ] } ] @@ -90137,7 +95419,7 @@ } }, { - "id": 2101, + "id": 2099, "name": "LevelWithAvailability", "variant": "declaration", "kind": 2097152, @@ -90147,21 +95429,21 @@ "types": [ { "type": "reference", - "target": 4233, + "target": 4260, "name": "InventoryLevelDTO", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 2102, + "id": 2100, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2103, + "id": 2101, "name": "available_quantity", "variant": "declaration", "kind": 1024, @@ -90176,7 +95458,7 @@ { "title": "Properties", "children": [ - 2103 + 2101 ] } ] @@ -90186,7 +95468,7 @@ } }, { - "id": 4744, + "id": 4771, "name": "LineAllocationsMap", "variant": "declaration", "kind": 2097152, @@ -90202,20 +95484,20 @@ "type": { "type": "reflection", "declaration": { - "id": 4745, + "id": 4772, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignature": { - "id": 4746, + "id": 4773, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 4747, + "id": 4774, "name": "K", "variant": "param", "kind": 32768, @@ -90229,14 +95511,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4748, + "id": 4775, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4750, + "id": 4777, "name": "discount", "variant": "declaration", "kind": 1024, @@ -90245,13 +95527,13 @@ }, "type": { "type": "reference", - "target": 4862, + "target": 4917, "name": "DiscountAllocation", "package": "@medusajs/medusa" } }, { - "id": 4749, + "id": 4776, "name": "gift_card", "variant": "declaration", "kind": 1024, @@ -90260,7 +95542,7 @@ }, "type": { "type": "reference", - "target": 4858, + "target": 4913, "name": "GiftCardAllocation", "package": "@medusajs/medusa" } @@ -90270,8 +95552,8 @@ { "title": "Properties", "children": [ - 4750, - 4749 + 4777, + 4776 ] } ] @@ -90282,7 +95564,7 @@ } }, { - "id": 3825, + "id": 3834, "name": "Logger", "variant": "declaration", "kind": 2097152, @@ -90290,14 +95572,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3826, + "id": 3835, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3842, + "id": 3851, "name": "activity", "variant": "declaration", "kind": 1024, @@ -90305,21 +95587,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3843, + "id": 3852, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3844, + "id": 3853, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3845, + "id": 3854, "name": "message", "variant": "param", "kind": 32768, @@ -90330,7 +95612,7 @@ } }, { - "id": 3846, + "id": 3855, "name": "config", "variant": "param", "kind": 32768, @@ -90353,7 +95635,7 @@ } }, { - "id": 3867, + "id": 3876, "name": "debug", "variant": "declaration", "kind": 1024, @@ -90361,21 +95643,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3868, + "id": 3877, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3869, + "id": 3878, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3870, + "id": 3879, "name": "message", "variant": "param", "kind": 32768, @@ -90396,7 +95678,7 @@ } }, { - "id": 3852, + "id": 3861, "name": "error", "variant": "declaration", "kind": 1024, @@ -90404,21 +95686,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3853, + "id": 3862, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3854, + "id": 3863, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3855, + "id": 3864, "name": "messageOrError", "variant": "param", "kind": 32768, @@ -90429,7 +95711,7 @@ } }, { - "id": 3856, + "id": 3865, "name": "error", "variant": "param", "kind": 32768, @@ -90452,7 +95734,7 @@ } }, { - "id": 3857, + "id": 3866, "name": "failure", "variant": "declaration", "kind": 1024, @@ -90460,21 +95742,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3858, + "id": 3867, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3859, + "id": 3868, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3860, + "id": 3869, "name": "activityId", "variant": "param", "kind": 32768, @@ -90485,7 +95767,7 @@ } }, { - "id": 3861, + "id": 3870, "name": "message", "variant": "param", "kind": 32768, @@ -90506,7 +95788,7 @@ } }, { - "id": 3871, + "id": 3880, "name": "info", "variant": "declaration", "kind": 1024, @@ -90514,21 +95796,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3872, + "id": 3881, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3873, + "id": 3882, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3874, + "id": 3883, "name": "message", "variant": "param", "kind": 32768, @@ -90549,7 +95831,7 @@ } }, { - "id": 3879, + "id": 3888, "name": "log", "variant": "declaration", "kind": 1024, @@ -90557,21 +95839,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3880, + "id": 3889, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3881, + "id": 3890, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3882, + "id": 3891, "name": "args", "variant": "param", "kind": 32768, @@ -90594,7 +95876,7 @@ } }, { - "id": 3827, + "id": 3836, "name": "panic", "variant": "declaration", "kind": 1024, @@ -90602,21 +95884,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3828, + "id": 3837, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3829, + "id": 3838, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3830, + "id": 3839, "name": "data", "variant": "param", "kind": 32768, @@ -90637,7 +95919,7 @@ } }, { - "id": 3847, + "id": 3856, "name": "progress", "variant": "declaration", "kind": 1024, @@ -90645,21 +95927,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3848, + "id": 3857, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3849, + "id": 3858, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3850, + "id": 3859, "name": "activityId", "variant": "param", "kind": 32768, @@ -90670,7 +95952,7 @@ } }, { - "id": 3851, + "id": 3860, "name": "message", "variant": "param", "kind": 32768, @@ -90691,7 +95973,7 @@ } }, { - "id": 3835, + "id": 3844, "name": "setLogLevel", "variant": "declaration", "kind": 1024, @@ -90699,21 +95981,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3836, + "id": 3845, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3837, + "id": 3846, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3838, + "id": 3847, "name": "level", "variant": "param", "kind": 32768, @@ -90734,7 +96016,7 @@ } }, { - "id": 3831, + "id": 3840, "name": "shouldLog", "variant": "declaration", "kind": 1024, @@ -90742,21 +96024,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3832, + "id": 3841, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3833, + "id": 3842, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3834, + "id": 3843, "name": "level", "variant": "param", "kind": 32768, @@ -90777,7 +96059,7 @@ } }, { - "id": 3862, + "id": 3871, "name": "success", "variant": "declaration", "kind": 1024, @@ -90785,21 +96067,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3863, + "id": 3872, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3864, + "id": 3873, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3865, + "id": 3874, "name": "activityId", "variant": "param", "kind": 32768, @@ -90810,7 +96092,7 @@ } }, { - "id": 3866, + "id": 3875, "name": "message", "variant": "param", "kind": 32768, @@ -90831,7 +96113,7 @@ } }, { - "id": 3839, + "id": 3848, "name": "unsetLogLevel", "variant": "declaration", "kind": 1024, @@ -90839,14 +96121,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3840, + "id": 3849, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3841, + "id": 3850, "name": "__type", "variant": "signature", "kind": 4096, @@ -90861,7 +96143,7 @@ } }, { - "id": 3875, + "id": 3884, "name": "warn", "variant": "declaration", "kind": 1024, @@ -90869,21 +96151,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3876, + "id": 3885, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3877, + "id": 3886, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3878, + "id": 3887, "name": "message", "variant": "param", "kind": 32768, @@ -90908,19 +96190,19 @@ { "title": "Properties", "children": [ - 3842, - 3867, - 3852, - 3857, + 3851, + 3876, + 3861, + 3866, + 3880, + 3888, + 3836, + 3856, + 3844, + 3840, 3871, - 3879, - 3827, - 3847, - 3835, - 3831, - 3862, - 3839, - 3875 + 3848, + 3884 ] } ] @@ -90928,21 +96210,21 @@ } }, { - "id": 3824, + "id": 3833, "name": "MedusaContainer", "variant": "declaration", "kind": 2097152, "flags": {}, "type": { "type": "reference", - "target": 4721, + "target": 4748, "name": "coreMedusaContainer", "package": "medusa-core-utils", "qualifiedName": "MedusaContainer" } }, { - "id": 4705, + "id": 4732, "name": "MedusaContainer", "variant": "declaration", "kind": 2097152, @@ -90962,14 +96244,14 @@ { "type": "reflection", "declaration": { - "id": 4706, + "id": 4733, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4713, + "id": 4740, "name": "createScope", "variant": "declaration", "kind": 1024, @@ -90977,21 +96259,21 @@ "type": { "type": "reflection", "declaration": { - "id": 4714, + "id": 4741, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 4715, + "id": 4742, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "type": { "type": "reference", - "target": 4705, + "target": 4732, "name": "MedusaContainer", "package": "@medusajs/types" } @@ -91001,7 +96283,7 @@ } }, { - "id": 4707, + "id": 4734, "name": "registerAdd", "variant": "declaration", "kind": 1024, @@ -91009,21 +96291,21 @@ "type": { "type": "reflection", "declaration": { - "id": 4708, + "id": 4735, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 4709, + "id": 4736, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "typeParameter": [ { - "id": 4712, + "id": 4739, "name": "T", "variant": "typeParam", "kind": 131072, @@ -91032,7 +96314,7 @@ ], "parameters": [ { - "id": 4710, + "id": 4737, "name": "name", "variant": "param", "kind": 32768, @@ -91043,7 +96325,7 @@ } }, { - "id": 4711, + "id": 4738, "name": "registration", "variant": "param", "kind": 32768, @@ -91058,7 +96340,7 @@ ], "type": { "type": "reference", - "target": 4705, + "target": 4732, "name": "MedusaContainer", "package": "@medusajs/types" } @@ -91072,8 +96354,8 @@ { "title": "Properties", "children": [ - 4713, - 4707 + 4740, + 4734 ] } ] @@ -91083,7 +96365,7 @@ } }, { - "id": 4721, + "id": 4748, "name": "MedusaContainer", "variant": "declaration", "kind": 2097152, @@ -91103,14 +96385,14 @@ { "type": "reflection", "declaration": { - "id": 4722, + "id": 4749, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4729, + "id": 4756, "name": "createScope", "variant": "declaration", "kind": 1024, @@ -91118,21 +96400,21 @@ "type": { "type": "reflection", "declaration": { - "id": 4730, + "id": 4757, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 4731, + "id": 4758, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "type": { "type": "reference", - "target": 4721, + "target": 4748, "name": "MedusaContainer", "package": "medusa-core-utils" } @@ -91142,7 +96424,7 @@ } }, { - "id": 4723, + "id": 4750, "name": "registerAdd", "variant": "declaration", "kind": 1024, @@ -91150,21 +96432,21 @@ "type": { "type": "reflection", "declaration": { - "id": 4724, + "id": 4751, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 4725, + "id": 4752, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "typeParameter": [ { - "id": 4728, + "id": 4755, "name": "T", "variant": "typeParam", "kind": 131072, @@ -91173,7 +96455,7 @@ ], "parameters": [ { - "id": 4726, + "id": 4753, "name": "name", "variant": "param", "kind": 32768, @@ -91184,7 +96466,7 @@ } }, { - "id": 4727, + "id": 4754, "name": "registration", "variant": "param", "kind": 32768, @@ -91199,7 +96481,7 @@ ], "type": { "type": "reference", - "target": 4721, + "target": 4748, "name": "MedusaContainer", "package": "medusa-core-utils" } @@ -91213,8 +96495,8 @@ { "title": "Properties", "children": [ - 4729, - 4723 + 4756, + 4750 ] } ] @@ -91224,7 +96506,7 @@ } }, { - "id": 4792, + "id": 4821, "name": "MedusaErrorHandlerFunction", "variant": "declaration", "kind": 2097152, @@ -91232,21 +96514,21 @@ "type": { "type": "reflection", "declaration": { - "id": 4793, + "id": 4822, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 4794, + "id": 4823, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4795, + "id": 4824, "name": "error", "variant": "param", "kind": 32768, @@ -91257,40 +96539,40 @@ } }, { - "id": 4796, + "id": 4825, "name": "req", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3984, + "target": 3993, "name": "MedusaRequest", "package": "@medusajs/medusa" } }, { - "id": 4797, + "id": 4826, "name": "res", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3995, + "target": 4007, "name": "MedusaResponse", "package": "@medusajs/medusa" } }, { - "id": 4798, + "id": 4827, "name": "next", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3996, + "target": 4008, "name": "MedusaNextFunction", "package": "@medusajs/medusa" } @@ -91326,7 +96608,7 @@ } }, { - "id": 3996, + "id": 4008, "name": "MedusaNextFunction", "variant": "declaration", "kind": 2097152, @@ -91343,7 +96625,7 @@ } }, { - "id": 3997, + "id": 4009, "name": "MedusaRequestHandler", "variant": "declaration", "kind": 2097152, @@ -91351,54 +96633,54 @@ "type": { "type": "reflection", "declaration": { - "id": 3998, + "id": 4010, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3999, + "id": 4011, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4000, + "id": 4012, "name": "req", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3984, + "target": 3993, "name": "MedusaRequest", "package": "@medusajs/medusa" } }, { - "id": 4001, + "id": 4013, "name": "res", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3995, + "target": 4007, "name": "MedusaResponse", "package": "@medusajs/medusa" } }, { - "id": 4002, + "id": 4014, "name": "next", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3996, + "target": 4008, "name": "MedusaNextFunction", "package": "@medusajs/medusa" } @@ -91434,7 +96716,7 @@ } }, { - "id": 3995, + "id": 4007, "name": "MedusaResponse", "variant": "declaration", "kind": 2097152, @@ -91451,7 +96733,7 @@ } }, { - "id": 3889, + "id": 3898, "name": "MiddlewareFunction", "variant": "declaration", "kind": 2097152, @@ -91461,28 +96743,28 @@ "types": [ { "type": "reference", - "target": 3997, + "target": 4009, "name": "MedusaRequestHandler", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 3890, + "id": 3899, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 3891, + "id": 3900, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3892, + "id": 3901, "name": "args", "variant": "param", "kind": 32768, @@ -91510,7 +96792,7 @@ } }, { - "id": 3893, + "id": 3902, "name": "MiddlewareRoute", "variant": "declaration", "kind": 2097152, @@ -91518,14 +96800,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3894, + "id": 3903, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3897, + "id": 3906, "name": "bodyParser", "variant": "declaration", "kind": 1024, @@ -91534,13 +96816,13 @@ }, "type": { "type": "reference", - "target": 4789, + "target": 4818, "name": "ParserConfig", "package": "@medusajs/medusa" } }, { - "id": 3896, + "id": 3905, "name": "matcher", "variant": "declaration", "kind": 1024, @@ -91565,7 +96847,7 @@ } }, { - "id": 3895, + "id": 3904, "name": "method", "variant": "declaration", "kind": 1024, @@ -91577,7 +96859,7 @@ "types": [ { "type": "reference", - "target": 4788, + "target": 4817, "name": "MiddlewareVerb", "package": "@medusajs/medusa" }, @@ -91585,7 +96867,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4788, + "target": 4817, "name": "MiddlewareVerb", "package": "@medusajs/medusa" } @@ -91594,7 +96876,7 @@ } }, { - "id": 3898, + "id": 3907, "name": "middlewares", "variant": "declaration", "kind": 1024, @@ -91605,7 +96887,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3889, + "target": 3898, "name": "MiddlewareFunction", "package": "@medusajs/medusa" } @@ -91616,10 +96898,10 @@ { "title": "Properties", "children": [ - 3897, - 3896, - 3895, - 3898 + 3906, + 3905, + 3904, + 3907 ] } ] @@ -91627,7 +96909,7 @@ } }, { - "id": 4788, + "id": 4817, "name": "MiddlewareVerb", "variant": "declaration", "kind": 2097152, @@ -91645,7 +96927,7 @@ }, { "type": "reference", - "target": 4941, + "target": 4996, "name": "RouteVerb", "package": "@medusajs/medusa" } @@ -91653,7 +96935,7 @@ } }, { - "id": 3899, + "id": 3908, "name": "MiddlewaresConfig", "variant": "declaration", "kind": 2097152, @@ -91661,14 +96943,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3900, + "id": 3909, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3901, + "id": 3910, "name": "errorHandler", "variant": "declaration", "kind": 1024, @@ -91684,7 +96966,7 @@ }, { "type": "reference", - "target": 4792, + "target": 4821, "name": "MedusaErrorHandlerFunction", "package": "@medusajs/medusa" } @@ -91692,7 +96974,7 @@ } }, { - "id": 3902, + "id": 3911, "name": "routes", "variant": "declaration", "kind": 1024, @@ -91703,7 +96985,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3893, + "target": 3902, "name": "MiddlewareRoute", "package": "@medusajs/medusa" } @@ -91714,8 +96996,8 @@ { "title": "Properties", "children": [ - 3901, - 3902 + 3910, + 3911 ] } ] @@ -91723,7 +97005,7 @@ } }, { - "id": 4984, + "id": 5076, "name": "ModuleDefinition", "variant": "declaration", "kind": 2097152, @@ -91731,14 +97013,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4985, + "id": 5077, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4990, + "id": 5082, "name": "canOverride", "variant": "declaration", "kind": 1024, @@ -91765,7 +97047,7 @@ } }, { - "id": 4995, + "id": 5087, "name": "defaultModuleDeclaration", "variant": "declaration", "kind": 1024, @@ -91775,13 +97057,13 @@ "types": [ { "type": "reference", - "target": 4919, + "target": 4974, "name": "InternalModuleDeclaration", "package": "@medusajs/types" }, { "type": "reference", - "target": 4929, + "target": 4984, "name": "ExternalModuleDeclaration", "package": "@medusajs/types" } @@ -91789,7 +97071,7 @@ } }, { - "id": 4988, + "id": 5080, "name": "defaultPackage", "variant": "declaration", "kind": 1024, @@ -91809,7 +97091,7 @@ } }, { - "id": 4994, + "id": 5086, "name": "dependencies", "variant": "declaration", "kind": 1024, @@ -91825,7 +97107,7 @@ } }, { - "id": 4993, + "id": 5085, "name": "isLegacy", "variant": "declaration", "kind": 1024, @@ -91838,7 +97120,7 @@ } }, { - "id": 4992, + "id": 5084, "name": "isQueryable", "variant": "declaration", "kind": 1024, @@ -91851,7 +97133,7 @@ } }, { - "id": 4991, + "id": 5083, "name": "isRequired", "variant": "declaration", "kind": 1024, @@ -91878,7 +97160,7 @@ } }, { - "id": 4986, + "id": 5078, "name": "key", "variant": "declaration", "kind": 1024, @@ -91889,7 +97171,7 @@ } }, { - "id": 4989, + "id": 5081, "name": "label", "variant": "declaration", "kind": 1024, @@ -91900,7 +97182,7 @@ } }, { - "id": 4987, + "id": 5079, "name": "registrationName", "variant": "declaration", "kind": 1024, @@ -91915,16 +97197,16 @@ { "title": "Properties", "children": [ - 4990, - 4995, - 4988, - 4994, - 4993, - 4992, - 4991, - 4986, - 4989, - 4987 + 5082, + 5087, + 5080, + 5086, + 5085, + 5084, + 5083, + 5078, + 5081, + 5079 ] } ] @@ -91932,7 +97214,7 @@ } }, { - "id": 4752, + "id": 4779, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -91949,7 +97231,7 @@ "typeArguments": [ { "type": "reference", - "target": 4880, + "target": 4935, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -91981,14 +97263,14 @@ { "type": "reflection", "declaration": { - "id": 4753, + "id": 4780, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4769, + "id": 4796, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -91998,14 +97280,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4770, + "id": 4797, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4773, + "id": 4800, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -92026,14 +97308,14 @@ { "type": "reflection", "declaration": { - "id": 4774, + "id": 4801, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4776, + "id": 4803, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -92046,7 +97328,7 @@ } }, { - "id": 4777, + "id": 4804, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -92059,7 +97341,7 @@ } }, { - "id": 4778, + "id": 4805, "name": "options", "variant": "declaration", "kind": 1024, @@ -92095,7 +97377,7 @@ } }, { - "id": 4775, + "id": 4802, "name": "type", "variant": "declaration", "kind": 1024, @@ -92195,10 +97477,10 @@ { "title": "Properties", "children": [ - 4776, - 4777, - 4778, - 4775 + 4803, + 4804, + 4805, + 4802 ] } ] @@ -92210,7 +97492,7 @@ } }, { - "id": 4772, + "id": 4799, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -92231,7 +97513,7 @@ } }, { - "id": 4771, + "id": 4798, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -92256,9 +97538,9 @@ { "title": "Properties", "children": [ - 4773, - 4772, - 4771 + 4800, + 4799, + 4798 ] } ] @@ -92266,7 +97548,7 @@ } }, { - "id": 4756, + "id": 4783, "name": "extends", "variant": "declaration", "kind": 1024, @@ -92278,14 +97560,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 4757, + "id": 4784, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4759, + "id": 4786, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -92313,14 +97595,14 @@ { "type": "reflection", "declaration": { - "id": 4760, + "id": 4787, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4762, + "id": 4789, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -92334,7 +97616,7 @@ } }, { - "id": 4761, + "id": 4788, "name": "path", "variant": "declaration", "kind": 1024, @@ -92349,8 +97631,8 @@ { "title": "Properties", "children": [ - 4762, - 4761 + 4789, + 4788 ] } ] @@ -92364,20 +97646,20 @@ } }, { - "id": 4763, + "id": 4790, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4894, + "target": 4949, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } }, { - "id": 4758, + "id": 4785, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -92392,9 +97674,9 @@ { "title": "Properties", "children": [ - 4759, - 4763, - 4758 + 4786, + 4790, + 4785 ] } ] @@ -92403,7 +97685,7 @@ } }, { - "id": 4766, + "id": 4793, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -92424,7 +97706,7 @@ } }, { - "id": 4768, + "id": 4795, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -92445,7 +97727,7 @@ } }, { - "id": 4767, + "id": 4794, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -92481,7 +97763,7 @@ } }, { - "id": 4765, + "id": 4792, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -92497,7 +97779,7 @@ } }, { - "id": 4755, + "id": 4782, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -92508,14 +97790,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4894, + "target": 4949, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 4754, + "id": 4781, "name": "schema", "variant": "declaration", "kind": 1024, @@ -92536,7 +97818,7 @@ } }, { - "id": 4764, + "id": 4791, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -92553,15 +97835,15 @@ { "title": "Properties", "children": [ - 4769, - 4756, - 4766, - 4768, - 4767, - 4765, - 4755, - 4754, - 4764 + 4796, + 4783, + 4793, + 4795, + 4794, + 4792, + 4782, + 4781, + 4791 ] } ] @@ -92571,7 +97853,7 @@ } }, { - "id": 4894, + "id": 4949, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -92581,21 +97863,21 @@ "types": [ { "type": "reference", - "target": 4956, + "target": 5048, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 4895, + "id": 4950, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4897, + "id": 4952, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -92616,7 +97898,7 @@ } }, { - "id": 4896, + "id": 4951, "name": "isInternalService", "variant": "declaration", "kind": 1024, @@ -92641,8 +97923,8 @@ { "title": "Properties", "children": [ - 4897, - 4896 + 4952, + 4951 ] } ] @@ -92652,7 +97934,7 @@ } }, { - "id": 4844, + "id": 4899, "name": "ModulesResponse", "variant": "declaration", "kind": 2097152, @@ -92665,14 +97947,14 @@ }, "type": { "type": "reference", - "target": 4942, + "target": 5034, "name": "sdkModulesResponse", "package": "@medusajs/types", "qualifiedName": "ModulesResponse" } }, { - "id": 4942, + "id": 5034, "name": "ModulesResponse", "variant": "declaration", "kind": 2097152, @@ -92682,14 +97964,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 4943, + "id": 5035, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4944, + "id": 5036, "name": "module", "variant": "declaration", "kind": 1024, @@ -92700,7 +97982,7 @@ } }, { - "id": 4945, + "id": 5037, "name": "resolution", "variant": "declaration", "kind": 1024, @@ -92724,8 +98006,8 @@ { "title": "Properties", "children": [ - 4944, - 4945 + 5036, + 5037 ] } ] @@ -92734,7 +98016,7 @@ } }, { - "id": 4245, + "id": 4272, "name": "PaginatedResponse", "variant": "declaration", "kind": 2097152, @@ -92742,40 +98024,64 @@ "type": { "type": "reflection", "declaration": { - "id": 4246, + "id": 4273, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4249, + "id": 4276, "name": "count", "variant": "declaration", "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of notifications" + } + ] + }, "type": { "type": "intrinsic", "name": "number" } }, { - "id": 4247, + "id": 4274, "name": "limit", "variant": "declaration", "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of notifications per page" + } + ] + }, "type": { "type": "intrinsic", "name": "number" } }, { - "id": 4248, + "id": 4275, "name": "offset", "variant": "declaration", "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of notifications skipped when retrieving the notifications." + } + ] + }, "type": { "type": "intrinsic", "name": "number" @@ -92786,9 +98092,9 @@ { "title": "Properties", "children": [ - 4249, - 4247, - 4248 + 4276, + 4274, + 4275 ] } ] @@ -92796,7 +98102,7 @@ } }, { - "id": 4789, + "id": 4818, "name": "ParserConfig", "variant": "declaration", "kind": 2097152, @@ -92811,14 +98117,14 @@ { "type": "reflection", "declaration": { - "id": 4790, + "id": 4819, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4791, + "id": 4820, "name": "sizeLimit", "variant": "declaration", "kind": 1024, @@ -92844,7 +98150,7 @@ { "title": "Properties", "children": [ - 4791 + 4820 ] } ] @@ -92854,21 +98160,21 @@ } }, { - "id": 3684, + "id": 3693, "name": "PartialPick", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3685, + "id": 3694, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 3686, + "id": 3695, "name": "K", "variant": "typeParam", "kind": 131072, @@ -92913,7 +98219,7 @@ } }, { - "id": 3281, + "id": 3290, "name": "PaymentContext", "variant": "declaration", "kind": 2097152, @@ -92921,14 +98227,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3282, + "id": 3291, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3292, + "id": 3301, "name": "amount", "variant": "declaration", "kind": 1024, @@ -92939,7 +98245,7 @@ } }, { - "id": 3283, + "id": 3292, "name": "cart", "variant": "declaration", "kind": 1024, @@ -92947,14 +98253,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3284, + "id": 3293, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3290, + "id": 3299, "name": "billing_address", "variant": "declaration", "kind": 1024, @@ -92981,7 +98287,7 @@ } }, { - "id": 3285, + "id": 3294, "name": "context", "variant": "declaration", "kind": 1024, @@ -93007,7 +98313,7 @@ } }, { - "id": 3287, + "id": 3296, "name": "email", "variant": "declaration", "kind": 1024, @@ -93018,7 +98324,7 @@ } }, { - "id": 3286, + "id": 3295, "name": "id", "variant": "declaration", "kind": 1024, @@ -93029,7 +98335,7 @@ } }, { - "id": 3288, + "id": 3297, "name": "shipping_address", "variant": "declaration", "kind": 1024, @@ -93054,7 +98360,7 @@ } }, { - "id": 3289, + "id": 3298, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -93077,12 +98383,12 @@ { "title": "Properties", "children": [ - 3290, - 3285, - 3287, - 3286, - 3288, - 3289 + 3299, + 3294, + 3296, + 3295, + 3297, + 3298 ] } ] @@ -93090,7 +98396,7 @@ } }, { - "id": 3291, + "id": 3300, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -93101,7 +98407,7 @@ } }, { - "id": 3294, + "id": 3303, "name": "customer", "variant": "declaration", "kind": 1024, @@ -93127,7 +98433,7 @@ } }, { - "id": 3295, + "id": 3304, "name": "paymentSessionData", "variant": "declaration", "kind": 1024, @@ -93153,7 +98459,7 @@ } }, { - "id": 3293, + "id": 3302, "name": "resource_id", "variant": "declaration", "kind": 1024, @@ -93168,12 +98474,12 @@ { "title": "Properties", "children": [ + 3301, 3292, - 3283, - 3291, - 3294, - 3295, - 3293 + 3300, + 3303, + 3304, + 3302 ] } ] @@ -93181,327 +98487,33 @@ } }, { - "id": 3279, + "id": 3288, "name": "PaymentData", "variant": "declaration", "kind": 2097152, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } }, { - "id": 3170, - "name": "PaymentProcessorContext", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 3171, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3175, - "name": "amount", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 3172, - "name": "billing_address", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../packages/medusa/src/models/address.ts", - "qualifiedName": "Address" - }, - "name": "Address", - "package": "@medusajs/medusa" - }, - { - "type": "literal", - "value": null - } - ] - } - }, - { - "id": 3178, - "name": "context", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - } - }, - { - "id": 3174, - "name": "currency_code", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3177, - "name": "customer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A customer can make purchases in your store and manage their profile." - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../packages/medusa/src/models/customer.ts", - "qualifiedName": "Customer" - }, - "name": "Customer", - "package": "@medusajs/medusa" - } - }, - { - "id": 3173, - "name": "email", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3179, - "name": "paymentSessionData", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - } - }, - { - "id": 3176, - "name": "resource_id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3175, - 3172, - 3178, - 3174, - 3177, - 3173, - 3179, - 3176 - ] - } - ] - } - } - }, - { - "id": 3180, - "name": "PaymentProcessorSessionResponse", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 3181, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3185, - "name": "session_data", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - } - }, - { - "id": 3182, - "name": "update_requests", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 3183, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3184, - "name": "customer_metadata", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3184 - ] - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3185, - 3182 - ] - } - ] - } - } - }, - { - "id": 3280, + "id": 3289, "name": "PaymentSessionData", "variant": "declaration", "kind": 2097152, "flags": {}, "type": { "type": "reference", - "target": 3278, + "target": 3287, "name": "Data", "package": "@medusajs/medusa" } }, { - "id": 3296, + "id": 3305, "name": "PaymentSessionResponse", "variant": "declaration", "kind": 2097152, @@ -93509,14 +98521,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3297, + "id": 3306, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3301, + "id": 3310, "name": "session_data", "variant": "declaration", "kind": 1024, @@ -93542,7 +98554,7 @@ } }, { - "id": 3298, + "id": 3307, "name": "update_requests", "variant": "declaration", "kind": 1024, @@ -93550,14 +98562,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3299, + "id": 3308, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3300, + "id": 3309, "name": "customer_metadata", "variant": "declaration", "kind": 1024, @@ -93587,7 +98599,7 @@ { "title": "Properties", "children": [ - 3300 + 3309 ] } ] @@ -93599,8 +98611,8 @@ { "title": "Properties", "children": [ - 3301, - 3298 + 3310, + 3307 ] } ] @@ -93608,7 +98620,7 @@ } }, { - "id": 3977, + "id": 3986, "name": "PriceListLoadConfig", "variant": "declaration", "kind": 2097152, @@ -93616,14 +98628,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3978, + "id": 3987, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3981, + "id": 3990, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -93636,7 +98648,7 @@ } }, { - "id": 3983, + "id": 3992, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -93649,7 +98661,7 @@ } }, { - "id": 3980, + "id": 3989, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -93662,7 +98674,7 @@ } }, { - "id": 3979, + "id": 3988, "name": "include_discount_prices", "variant": "declaration", "kind": 1024, @@ -93675,7 +98687,7 @@ } }, { - "id": 3982, + "id": 3991, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -93692,10 +98704,116 @@ { "title": "Properties", "children": [ - 3981, + 3990, + 3992, + 3989, + 3988, + 3991 + ] + } + ] + } + } + }, + { + "id": 3978, + "name": "PriceListPriceCreateInput", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 3979, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3983, + "name": "amount", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3981, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3985, + "name": "max_quantity", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3984, + "name": "min_quantity", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3980, + "name": "region_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3982, + "name": "variant_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ 3983, + 3981, + 3985, + 3984, 3980, - 3979, 3982 ] } @@ -93705,7 +98823,7 @@ }, { "id": 3969, - "name": "PriceListPriceCreateInput", + "name": "PriceListPriceUpdateInput", "variant": "declaration", "kind": 2097152, "flags": {}, @@ -93719,18 +98837,20 @@ "flags": {}, "children": [ { - "id": 3974, + "id": 3975, "name": "amount", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "intrinsic", "name": "number" } }, { - "id": 3972, + "id": 3974, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -93742,116 +98862,8 @@ "name": "string" } }, - { - "id": 3976, - "name": "max_quantity", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 3975, - "name": "min_quantity", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, { "id": 3971, - "name": "region_id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3973, - "name": "variant_id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3974, - 3972, - 3976, - 3975, - 3971, - 3973 - ] - } - ] - } - } - }, - { - "id": 3960, - "name": "PriceListPriceUpdateInput", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 3961, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3966, - "name": "amount", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 3965, - "name": "currency_code", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3962, "name": "id", "variant": "declaration", "kind": 1024, @@ -93864,7 +98876,7 @@ } }, { - "id": 3968, + "id": 3977, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -93877,7 +98889,7 @@ } }, { - "id": 3967, + "id": 3976, "name": "min_quantity", "variant": "declaration", "kind": 1024, @@ -93890,7 +98902,7 @@ } }, { - "id": 3964, + "id": 3973, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -93903,7 +98915,7 @@ } }, { - "id": 3963, + "id": 3972, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -93920,13 +98932,13 @@ { "title": "Properties", "children": [ - 3966, - 3965, - 3962, - 3968, - 3967, - 3964, - 3963 + 3975, + 3974, + 3971, + 3977, + 3976, + 3973, + 3972 ] } ] @@ -93934,7 +98946,7 @@ } }, { - "id": 3536, + "id": 3545, "name": "PriceSelectionContext", "variant": "declaration", "kind": 2097152, @@ -93942,14 +98954,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3537, + "id": 3546, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3538, + "id": 3547, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -93962,7 +98974,7 @@ } }, { - "id": 3542, + "id": 3551, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -93975,7 +98987,7 @@ } }, { - "id": 3539, + "id": 3548, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -93988,7 +99000,7 @@ } }, { - "id": 3545, + "id": 3554, "name": "ignore_cache", "variant": "declaration", "kind": 1024, @@ -94001,7 +99013,7 @@ } }, { - "id": 3543, + "id": 3552, "name": "include_discount_prices", "variant": "declaration", "kind": 1024, @@ -94014,7 +99026,7 @@ } }, { - "id": 3541, + "id": 3550, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -94027,7 +99039,7 @@ } }, { - "id": 3540, + "id": 3549, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -94040,7 +99052,7 @@ } }, { - "id": 3544, + "id": 3553, "name": "tax_rates", "variant": "declaration", "kind": 1024, @@ -94051,7 +99063,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4737, + "target": 4764, "name": "TaxServiceRate", "package": "@medusajs/medusa" } @@ -94062,14 +99074,14 @@ { "title": "Properties", "children": [ - 3538, - 3542, - 3539, - 3545, - 3543, - 3541, - 3540, - 3544 + 3547, + 3551, + 3548, + 3554, + 3552, + 3550, + 3549, + 3553 ] } ] @@ -94077,7 +99089,7 @@ } }, { - "id": 3552, + "id": 3561, "name": "PriceSelectionResult", "variant": "declaration", "kind": 2097152, @@ -94085,14 +99097,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3553, + "id": 3562, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3556, + "id": 3565, "name": "calculatedPrice", "variant": "declaration", "kind": 1024, @@ -94112,7 +99124,7 @@ } }, { - "id": 3557, + "id": 3566, "name": "calculatedPriceIncludesTax", "variant": "declaration", "kind": 1024, @@ -94134,7 +99146,7 @@ } }, { - "id": 3558, + "id": 3567, "name": "calculatedPriceType", "variant": "declaration", "kind": 1024, @@ -94143,13 +99155,13 @@ }, "type": { "type": "reference", - "target": 3546, + "target": 3555, "name": "PriceType", "package": "@medusajs/medusa" } }, { - "id": 3554, + "id": 3563, "name": "originalPrice", "variant": "declaration", "kind": 1024, @@ -94169,7 +99181,7 @@ } }, { - "id": 3555, + "id": 3564, "name": "originalPriceIncludesTax", "variant": "declaration", "kind": 1024, @@ -94191,7 +99203,7 @@ } }, { - "id": 3559, + "id": 3568, "name": "prices", "variant": "declaration", "kind": 1024, @@ -94214,12 +99226,12 @@ { "title": "Properties", "children": [ - 3556, - 3557, - 3558, - 3554, - 3555, - 3559 + 3565, + 3566, + 3567, + 3563, + 3564, + 3568 ] } ] @@ -94227,7 +99239,7 @@ } }, { - "id": 3551, + "id": 3560, "name": "PriceType", "variant": "declaration", "kind": 2097152, @@ -94237,13 +99249,13 @@ "types": [ { "type": "reference", - "target": 4743, + "target": 4770, "name": "DefaultPriceType", "package": "@medusajs/medusa" }, { "type": "reference", - "target": 3903, + "target": 3912, "name": "PriceListType", "package": "@medusajs/medusa" } @@ -94251,7 +99263,7 @@ } }, { - "id": 4389, + "id": 4416, "name": "PricedProduct", "variant": "declaration", "kind": 2097152, @@ -94303,14 +99315,14 @@ { "type": "reflection", "declaration": { - "id": 4390, + "id": 4417, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4391, + "id": 4418, "name": "variants", "variant": "declaration", "kind": 1024, @@ -94327,7 +99339,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4590, + "target": 4617, "name": "PricedVariant", "package": "@medusajs/medusa" } @@ -94338,7 +99350,7 @@ { "title": "Properties", "children": [ - 4391 + 4418 ] } ] @@ -94348,7 +99360,7 @@ } }, { - "id": 4627, + "id": 4654, "name": "PricedShippingOption", "variant": "declaration", "kind": 2097152, @@ -94384,7 +99396,7 @@ }, { "type": "reference", - "target": 4853, + "target": 4908, "name": "ShippingOptionPricing", "package": "@medusajs/medusa" } @@ -94392,7 +99404,7 @@ } }, { - "id": 4590, + "id": 4617, "name": "PricedVariant", "variant": "declaration", "kind": 2097152, @@ -94428,7 +99440,7 @@ }, { "type": "reference", - "target": 4845, + "target": 4900, "name": "ProductVariantPricing", "package": "@medusajs/medusa" } @@ -94436,7 +99448,7 @@ } }, { - "id": 4845, + "id": 4900, "name": "ProductVariantPricing", "variant": "declaration", "kind": 2097152, @@ -94455,14 +99467,14 @@ { "type": "reflection", "declaration": { - "id": 4846, + "id": 4901, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4849, + "id": 4904, "name": "calculated_price", "variant": "declaration", "kind": 1024, @@ -94490,7 +99502,7 @@ } }, { - "id": 4851, + "id": 4906, "name": "calculated_price_includes_tax", "variant": "declaration", "kind": 1024, @@ -94539,7 +99551,7 @@ } }, { - "id": 4852, + "id": 4907, "name": "calculated_price_type", "variant": "declaration", "kind": 1024, @@ -94585,7 +99597,7 @@ } }, { - "id": 4848, + "id": 4903, "name": "original_price", "variant": "declaration", "kind": 1024, @@ -94613,7 +99625,7 @@ } }, { - "id": 4850, + "id": 4905, "name": "original_price_includes_tax", "variant": "declaration", "kind": 1024, @@ -94662,7 +99674,7 @@ } }, { - "id": 4847, + "id": 4902, "name": "prices", "variant": "declaration", "kind": 1024, @@ -94693,12 +99705,12 @@ { "title": "Properties", "children": [ - 4849, - 4851, - 4852, - 4848, - 4850, - 4847 + 4904, + 4906, + 4907, + 4903, + 4905, + 4902 ] } ] @@ -94706,7 +99718,7 @@ }, { "type": "reference", - "target": 4946, + "target": 5038, "name": "TaxedPricing", "package": "@medusajs/medusa" } @@ -94714,7 +99726,7 @@ } }, { - "id": 4898, + "id": 4953, "name": "ProjectConfigOptions", "variant": "declaration", "kind": 2097152, @@ -94722,14 +99734,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4899, + "id": 4954, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4918, + "id": 4973, "name": "admin_cors", "variant": "declaration", "kind": 1024, @@ -94742,7 +99754,7 @@ } }, { - "id": 4905, + "id": 4960, "name": "cookie_secret", "variant": "declaration", "kind": 1024, @@ -94755,7 +99767,7 @@ } }, { - "id": 4907, + "id": 4962, "name": "database_database", "variant": "declaration", "kind": 1024, @@ -94768,7 +99780,7 @@ } }, { - "id": 4912, + "id": 4967, "name": "database_extra", "variant": "declaration", "kind": 1024, @@ -94800,14 +99812,14 @@ { "type": "reflection", "declaration": { - "id": 4913, + "id": 4968, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4914, + "id": 4969, "name": "ssl", "variant": "declaration", "kind": 1024, @@ -94815,14 +99827,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4915, + "id": 4970, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4916, + "id": 4971, "name": "rejectUnauthorized", "variant": "declaration", "kind": 1024, @@ -94837,7 +99849,7 @@ { "title": "Properties", "children": [ - 4916 + 4971 ] } ] @@ -94849,7 +99861,7 @@ { "title": "Properties", "children": [ - 4914 + 4969 ] } ] @@ -94859,7 +99871,7 @@ } }, { - "id": 4909, + "id": 4964, "name": "database_logging", "variant": "declaration", "kind": 1024, @@ -94875,7 +99887,7 @@ } }, { - "id": 4908, + "id": 4963, "name": "database_schema", "variant": "declaration", "kind": 1024, @@ -94888,7 +99900,7 @@ } }, { - "id": 4910, + "id": 4965, "name": "database_type", "variant": "declaration", "kind": 1024, @@ -94901,7 +99913,7 @@ } }, { - "id": 4906, + "id": 4961, "name": "database_url", "variant": "declaration", "kind": 1024, @@ -94914,7 +99926,7 @@ } }, { - "id": 4911, + "id": 4966, "name": "http_compression", "variant": "declaration", "kind": 1024, @@ -94923,13 +99935,13 @@ }, "type": { "type": "reference", - "target": 4974, + "target": 5066, "name": "HttpCompressionOptions", "package": "@medusajs/types" } }, { - "id": 4904, + "id": 4959, "name": "jwt_secret", "variant": "declaration", "kind": 1024, @@ -94942,7 +99954,7 @@ } }, { - "id": 4902, + "id": 4957, "name": "redis_options", "variant": "declaration", "kind": 1024, @@ -94960,7 +99972,7 @@ } }, { - "id": 4901, + "id": 4956, "name": "redis_prefix", "variant": "declaration", "kind": 1024, @@ -94973,7 +99985,7 @@ } }, { - "id": 4900, + "id": 4955, "name": "redis_url", "variant": "declaration", "kind": 1024, @@ -94986,7 +99998,7 @@ } }, { - "id": 4903, + "id": 4958, "name": "session_options", "variant": "declaration", "kind": 1024, @@ -94995,13 +100007,13 @@ }, "type": { "type": "reference", - "target": 4966, + "target": 5058, "name": "SessionOptions", "package": "@medusajs/types" } }, { - "id": 4917, + "id": 4972, "name": "store_cors", "variant": "declaration", "kind": 1024, @@ -95018,21 +100030,21 @@ { "title": "Properties", "children": [ - 4918, - 4905, - 4907, - 4912, - 4909, - 4908, - 4910, - 4906, - 4911, - 4904, - 4902, - 4901, - 4900, - 4903, - 4917 + 4973, + 4960, + 4962, + 4967, + 4964, + 4963, + 4965, + 4961, + 4966, + 4959, + 4957, + 4956, + 4955, + 4958, + 4972 ] } ] @@ -95040,7 +100052,7 @@ } }, { - "id": 4866, + "id": 4921, "name": "ProviderLineItemTaxLine", "variant": "declaration", "kind": 2097152, @@ -95056,14 +100068,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4867, + "id": 4922, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4870, + "id": 4925, "name": "code", "variant": "declaration", "kind": 1024, @@ -95083,7 +100095,7 @@ } }, { - "id": 4871, + "id": 4926, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -95094,7 +100106,7 @@ } }, { - "id": 4872, + "id": 4927, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -95122,7 +100134,7 @@ } }, { - "id": 4869, + "id": 4924, "name": "name", "variant": "declaration", "kind": 1024, @@ -95133,7 +100145,7 @@ } }, { - "id": 4868, + "id": 4923, "name": "rate", "variant": "declaration", "kind": 1024, @@ -95148,11 +100160,11 @@ { "title": "Properties", "children": [ - 4870, - 4871, - 4872, - 4869, - 4868 + 4925, + 4926, + 4927, + 4924, + 4923 ] } ] @@ -95160,7 +100172,7 @@ } }, { - "id": 4873, + "id": 4928, "name": "ProviderShippingMethodTaxLine", "variant": "declaration", "kind": 2097152, @@ -95176,14 +100188,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4874, + "id": 4929, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4877, + "id": 4932, "name": "code", "variant": "declaration", "kind": 1024, @@ -95203,7 +100215,7 @@ } }, { - "id": 4878, + "id": 4933, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -95231,7 +100243,7 @@ } }, { - "id": 4876, + "id": 4931, "name": "name", "variant": "declaration", "kind": 1024, @@ -95242,7 +100254,7 @@ } }, { - "id": 4875, + "id": 4930, "name": "rate", "variant": "declaration", "kind": 1024, @@ -95253,7 +100265,7 @@ } }, { - "id": 4879, + "id": 4934, "name": "shipping_method_id", "variant": "declaration", "kind": 1024, @@ -95268,11 +100280,11 @@ { "title": "Properties", "children": [ - 4877, - 4878, - 4876, - 4875, - 4879 + 4932, + 4933, + 4931, + 4930, + 4934 ] } ] @@ -95280,7 +100292,7 @@ } }, { - "id": 4751, + "id": 4778, "name": "ProviderTaxLine", "variant": "declaration", "kind": 2097152, @@ -95298,13 +100310,13 @@ "types": [ { "type": "reference", - "target": 4866, + "target": 4921, "name": "ProviderLineItemTaxLine", "package": "@medusajs/medusa" }, { "type": "reference", - "target": 4873, + "target": 4928, "name": "ProviderShippingMethodTaxLine", "package": "@medusajs/medusa" } @@ -95312,14 +100324,14 @@ } }, { - "id": 3727, + "id": 3736, "name": "QueryConfig", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3735, + "id": 3744, "name": "TEntity", "variant": "typeParam", "kind": 131072, @@ -95338,14 +100350,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3728, + "id": 3737, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3731, + "id": 3740, "name": "allowedFields", "variant": "declaration", "kind": 1024, @@ -95361,7 +100373,7 @@ } }, { - "id": 3732, + "id": 3741, "name": "allowedRelations", "variant": "declaration", "kind": 1024, @@ -95377,7 +100389,7 @@ } }, { - "id": 3729, + "id": 3738, "name": "defaultFields", "variant": "declaration", "kind": 1024, @@ -95408,7 +100420,7 @@ } }, { - "id": 3733, + "id": 3742, "name": "defaultLimit", "variant": "declaration", "kind": 1024, @@ -95421,7 +100433,7 @@ } }, { - "id": 3730, + "id": 3739, "name": "defaultRelations", "variant": "declaration", "kind": 1024, @@ -95437,7 +100449,7 @@ } }, { - "id": 3734, + "id": 3743, "name": "isList", "variant": "declaration", "kind": 1024, @@ -95454,12 +100466,12 @@ { "title": "Properties", "children": [ - 3731, - 3732, - 3729, - 3733, - 3730, - 3734 + 3740, + 3741, + 3738, + 3742, + 3739, + 3743 ] } ] @@ -95467,14 +100479,14 @@ } }, { - "id": 3708, + "id": 3717, "name": "QuerySelector", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3711, + "id": 3720, "name": "TEntity", "variant": "typeParam", "kind": 131072, @@ -95486,7 +100498,7 @@ "types": [ { "type": "reference", - "target": 3716, + "target": 3725, "typeArguments": [ { "type": "reference", @@ -95501,14 +100513,14 @@ { "type": "reflection", "declaration": { - "id": 3709, + "id": 3718, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3710, + "id": 3719, "name": "q", "variant": "declaration", "kind": 1024, @@ -95525,7 +100537,7 @@ { "title": "Properties", "children": [ - 3710 + 3719 ] } ] @@ -95535,7 +100547,7 @@ } }, { - "id": 4672, + "id": 4699, "name": "RequestContext", "variant": "declaration", "kind": 2097152, @@ -95543,14 +100555,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4673, + "id": 4700, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4674, + "id": 4701, "name": "ip", "variant": "declaration", "kind": 1024, @@ -95565,7 +100577,7 @@ { "title": "Properties", "children": [ - 4674 + 4701 ] } ] @@ -95573,7 +100585,7 @@ } }, { - "id": 4516, + "id": 4543, "name": "ReservationItemDTO", "variant": "declaration", "kind": 2097152, @@ -95592,14 +100604,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4517, + "id": 4544, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4526, + "id": 4553, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -95632,7 +100644,7 @@ } }, { - "id": 4524, + "id": 4551, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -95662,7 +100674,7 @@ } }, { - "id": 4528, + "id": 4555, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -95699,7 +100711,7 @@ } }, { - "id": 4523, + "id": 4550, "name": "description", "variant": "declaration", "kind": 1024, @@ -95729,7 +100741,7 @@ } }, { - "id": 4518, + "id": 4545, "name": "id", "variant": "declaration", "kind": 1024, @@ -95748,7 +100760,7 @@ } }, { - "id": 4520, + "id": 4547, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -95767,7 +100779,7 @@ } }, { - "id": 4522, + "id": 4549, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -95789,7 +100801,7 @@ } }, { - "id": 4519, + "id": 4546, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -95808,7 +100820,7 @@ } }, { - "id": 4525, + "id": 4552, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -95851,7 +100863,7 @@ } }, { - "id": 4521, + "id": 4548, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -95870,7 +100882,7 @@ } }, { - "id": 4527, + "id": 4554, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -95907,17 +100919,17 @@ { "title": "Properties", "children": [ - 4526, - 4524, - 4528, - 4523, - 4518, - 4520, - 4522, - 4519, - 4525, - 4521, - 4527 + 4553, + 4551, + 4555, + 4550, + 4545, + 4547, + 4549, + 4546, + 4552, + 4548, + 4554 ] } ] @@ -95925,7 +100937,7 @@ } }, { - "id": 2104, + "id": 2102, "name": "ResponseInventoryItem", "variant": "declaration", "kind": 2097152, @@ -95948,7 +100960,7 @@ "typeArguments": [ { "type": "reference", - "target": 4213, + "target": 4240, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -95959,14 +100971,14 @@ { "type": "reflection", "declaration": { - "id": 2105, + "id": 2103, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2106, + "id": 2104, "name": "location_levels", "variant": "declaration", "kind": 1024, @@ -95985,7 +100997,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2101, + "target": 2099, "name": "LevelWithAvailability", "package": "@medusajs/medusa" } @@ -95996,7 +101008,7 @@ { "title": "Properties", "children": [ - 2106 + 2104 ] } ] @@ -96006,7 +101018,7 @@ } }, { - "id": 4716, + "id": 4743, "name": "ReturnedData", "variant": "declaration", "kind": 2097152, @@ -96014,14 +101026,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4717, + "id": 4744, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4720, + "id": 4747, "name": "data", "variant": "declaration", "kind": 1024, @@ -96047,7 +101059,7 @@ } }, { - "id": 4719, + "id": 4746, "name": "status", "variant": "declaration", "kind": 1024, @@ -96058,7 +101070,7 @@ } }, { - "id": 4718, + "id": 4745, "name": "to", "variant": "declaration", "kind": 1024, @@ -96073,9 +101085,9 @@ { "title": "Properties", "children": [ - 4720, - 4719, - 4718 + 4747, + 4746, + 4745 ] } ] @@ -96083,7 +101095,7 @@ } }, { - "id": 4941, + "id": 4996, "name": "RouteVerb", "variant": "declaration", "kind": 2097152, @@ -96098,7 +101110,7 @@ "type": "query", "queryType": { "type": "reference", - "target": 4997, + "target": 5089, "name": "HTTP_METHODS", "package": "@medusajs/medusa" } @@ -96106,14 +101118,14 @@ } }, { - "id": 4009, + "id": 4021, "name": "ScheduledJobArgs", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4014, + "id": 4026, "name": "T", "variant": "typeParam", "kind": 131072, @@ -96127,27 +101139,27 @@ "type": { "type": "reflection", "declaration": { - "id": 4010, + "id": 4022, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4011, + "id": 4023, "name": "container", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4705, + "target": 4732, "name": "MedusaContainer", "package": "@medusajs/types" } }, { - "id": 4012, + "id": 4024, "name": "data", "variant": "declaration", "kind": 1024, @@ -96162,7 +101174,7 @@ } }, { - "id": 4013, + "id": 4025, "name": "pluginOptions", "variant": "declaration", "kind": 1024, @@ -96194,9 +101206,9 @@ { "title": "Properties", "children": [ - 4011, - 4012, - 4013 + 4023, + 4024, + 4025 ] } ] @@ -96204,14 +101216,14 @@ } }, { - "id": 4003, + "id": 4015, "name": "ScheduledJobConfig", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4008, + "id": 4020, "name": "T", "variant": "typeParam", "kind": 131072, @@ -96225,14 +101237,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4004, + "id": 4016, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4007, + "id": 4019, "name": "data", "variant": "declaration", "kind": 1024, @@ -96255,7 +101267,7 @@ } }, { - "id": 4005, + "id": 4017, "name": "name", "variant": "declaration", "kind": 1024, @@ -96274,7 +101286,7 @@ } }, { - "id": 4006, + "id": 4018, "name": "schedule", "variant": "declaration", "kind": 1024, @@ -96305,9 +101317,9 @@ { "title": "Properties", "children": [ - 4007, - 4005, - 4006 + 4019, + 4017, + 4018 ] } ] @@ -96315,14 +101327,14 @@ } }, { - "id": 3716, + "id": 3725, "name": "Selector", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3717, + "id": 3726, "name": "TEntity", "variant": "typeParam", "kind": 131072, @@ -96330,124 +101342,44 @@ } ], "type": { - "type": "mapped", - "parameter": "key", - "parameterType": { - "type": "typeOperator", - "operator": "keyof", - "target": { + "type": "union", + "types": [ + { "type": "reference", - "target": -1, - "name": "TEntity", - "refersToTypeParameter": true - } - }, - "templateType": { - "type": "union", - "types": [ - { - "type": "indexedAccess", - "indexType": { - "type": "reference", - "target": -1, - "name": "key", - "refersToTypeParameter": true - }, - "objectType": { + "target": 4806, + "typeArguments": [ + { "type": "reference", "target": -1, "name": "TEntity", "refersToTypeParameter": true } - }, - { - "type": "array", - "elementType": { - "type": "indexedAccess", - "indexType": { - "type": "reference", - "target": -1, - "name": "key", - "refersToTypeParameter": true - }, - "objectType": { + ], + "name": "InnerSelector", + "package": "@medusajs/medusa" + }, + { + "type": "array", + "elementType": { + "type": "reference", + "target": 4806, + "typeArguments": [ + { "type": "reference", "target": -1, "name": "TEntity", "refersToTypeParameter": true } - } - }, - { - "type": "reference", - "target": 3753, - "name": "DateComparisonOperator", - "package": "@medusajs/medusa" - }, - { - "type": "reference", - "target": 3760, - "name": "StringComparisonOperator", - "package": "@medusajs/medusa" - }, - { - "type": "reference", - "target": 3770, - "name": "NumericalComparisonOperator", - "package": "@medusajs/medusa" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typeorm/find-options/FindOperator.d.ts", - "qualifiedName": "FindOperator" - }, - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "array", - "elementType": { - "type": "indexedAccess", - "indexType": { - "type": "reference", - "target": -1, - "name": "key", - "refersToTypeParameter": true - }, - "objectType": { - "type": "reference", - "target": -1, - "name": "TEntity", - "refersToTypeParameter": true - } - } - }, - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ] - } ], - "name": "FindOperator", - "package": "typeorm" + "name": "InnerSelector", + "package": "@medusajs/medusa" } - ] - }, - "optionalModifier": "+" + } + ] } }, { - "id": 4966, + "id": 5058, "name": "SessionOptions", "variant": "declaration", "kind": 2097152, @@ -96455,14 +101387,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4967, + "id": 5059, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4968, + "id": 5060, "name": "name", "variant": "declaration", "kind": 1024, @@ -96475,7 +101407,7 @@ } }, { - "id": 4969, + "id": 5061, "name": "resave", "variant": "declaration", "kind": 1024, @@ -96488,7 +101420,7 @@ } }, { - "id": 4970, + "id": 5062, "name": "rolling", "variant": "declaration", "kind": 1024, @@ -96501,7 +101433,7 @@ } }, { - "id": 4971, + "id": 5063, "name": "saveUninitialized", "variant": "declaration", "kind": 1024, @@ -96514,7 +101446,7 @@ } }, { - "id": 4972, + "id": 5064, "name": "secret", "variant": "declaration", "kind": 1024, @@ -96527,7 +101459,7 @@ } }, { - "id": 4973, + "id": 5065, "name": "ttl", "variant": "declaration", "kind": 1024, @@ -96544,12 +101476,12 @@ { "title": "Properties", "children": [ - 4968, - 4969, - 4970, - 4971, - 4972, - 4973 + 5060, + 5061, + 5062, + 5063, + 5064, + 5065 ] } ] @@ -96557,7 +101489,7 @@ } }, { - "id": 4703, + "id": 4730, "name": "ShippingMethodData", "variant": "declaration", "kind": 2097152, @@ -96583,7 +101515,7 @@ } }, { - "id": 4701, + "id": 4728, "name": "ShippingOptionData", "variant": "declaration", "kind": 2097152, @@ -96609,7 +101541,7 @@ } }, { - "id": 4853, + "id": 4908, "name": "ShippingOptionPricing", "variant": "declaration", "kind": 2097152, @@ -96617,14 +101549,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4854, + "id": 4909, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4855, + "id": 4910, "name": "price_incl_tax", "variant": "declaration", "kind": 1024, @@ -96652,7 +101584,7 @@ } }, { - "id": 4857, + "id": 4912, "name": "tax_amount", "variant": "declaration", "kind": 1024, @@ -96671,7 +101603,7 @@ } }, { - "id": 4856, + "id": 4911, "name": "tax_rates", "variant": "declaration", "kind": 1024, @@ -96691,7 +101623,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4737, + "target": 4764, "name": "TaxServiceRate", "package": "@medusajs/medusa" } @@ -96708,9 +101640,9 @@ { "title": "Properties", "children": [ - 4855, - 4857, - 4856 + 4910, + 4912, + 4911 ] } ] @@ -96718,7 +101650,7 @@ } }, { - "id": 3569, + "id": 3578, "name": "ShippingTaxCalculationLine", "variant": "declaration", "kind": 2097152, @@ -96734,14 +101666,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3570, + "id": 3579, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3572, + "id": 3581, "name": "rates", "variant": "declaration", "kind": 1024, @@ -96750,14 +101682,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4737, + "target": 4764, "name": "TaxServiceRate", "package": "@medusajs/medusa" } } }, { - "id": 3571, + "id": 3580, "name": "shipping_method", "variant": "declaration", "kind": 1024, @@ -96785,8 +101717,8 @@ { "title": "Properties", "children": [ - 3572, - 3571 + 3581, + 3580 ] } ] @@ -96794,7 +101726,7 @@ } }, { - "id": 4825, + "id": 4880, "name": "StockLocationAddressDTO", "variant": "declaration", "kind": 2097152, @@ -96813,14 +101745,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4826, + "id": 4881, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4828, + "id": 4883, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -96839,7 +101771,7 @@ } }, { - "id": 4829, + "id": 4884, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -96869,7 +101801,7 @@ } }, { - "id": 4832, + "id": 4887, "name": "city", "variant": "declaration", "kind": 1024, @@ -96899,7 +101831,7 @@ } }, { - "id": 4830, + "id": 4885, "name": "company", "variant": "declaration", "kind": 1024, @@ -96929,7 +101861,7 @@ } }, { - "id": 4831, + "id": 4886, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -96948,7 +101880,7 @@ } }, { - "id": 4837, + "id": 4892, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -96981,7 +101913,7 @@ } }, { - "id": 4839, + "id": 4894, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -97018,7 +101950,7 @@ } }, { - "id": 4827, + "id": 4882, "name": "id", "variant": "declaration", "kind": 1024, @@ -97039,7 +101971,7 @@ } }, { - "id": 4836, + "id": 4891, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -97084,7 +102016,7 @@ } }, { - "id": 4833, + "id": 4888, "name": "phone", "variant": "declaration", "kind": 1024, @@ -97114,7 +102046,7 @@ } }, { - "id": 4834, + "id": 4889, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -97144,7 +102076,7 @@ } }, { - "id": 4835, + "id": 4890, "name": "province", "variant": "declaration", "kind": 1024, @@ -97174,7 +102106,7 @@ } }, { - "id": 4838, + "id": 4893, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -97211,19 +102143,19 @@ { "title": "Properties", "children": [ - 4828, - 4829, - 4832, - 4830, - 4831, - 4837, - 4839, - 4827, - 4836, - 4833, - 4834, - 4835, - 4838 + 4883, + 4884, + 4887, + 4885, + 4886, + 4892, + 4894, + 4882, + 4891, + 4888, + 4889, + 4890, + 4893 ] } ] @@ -97231,7 +102163,7 @@ } }, { - "id": 4540, + "id": 4567, "name": "StockLocationDTO", "variant": "declaration", "kind": 2097152, @@ -97250,14 +102182,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4541, + "id": 4568, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4546, + "id": 4573, "name": "address", "variant": "declaration", "kind": 1024, @@ -97274,13 +102206,13 @@ }, "type": { "type": "reference", - "target": 4825, + "target": 4880, "name": "StockLocationAddressDTO", "package": "@medusajs/types" } }, { - "id": 4545, + "id": 4572, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -97299,7 +102231,7 @@ } }, { - "id": 4547, + "id": 4574, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -97332,7 +102264,7 @@ } }, { - "id": 4549, + "id": 4576, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -97369,7 +102301,7 @@ } }, { - "id": 4542, + "id": 4569, "name": "id", "variant": "declaration", "kind": 1024, @@ -97388,7 +102320,7 @@ } }, { - "id": 4544, + "id": 4571, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -97431,7 +102363,7 @@ } }, { - "id": 4543, + "id": 4570, "name": "name", "variant": "declaration", "kind": 1024, @@ -97450,7 +102382,7 @@ } }, { - "id": 4548, + "id": 4575, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -97487,14 +102419,14 @@ { "title": "Properties", "children": [ - 4546, - 4545, - 4547, - 4549, - 4542, - 4544, - 4543, - 4548 + 4573, + 4572, + 4574, + 4576, + 4569, + 4571, + 4570, + 4575 ] } ] @@ -97502,7 +102434,7 @@ } }, { - "id": 4555, + "id": 4582, "name": "StockLocationExpandedDTO", "variant": "declaration", "kind": 2097152, @@ -97518,21 +102450,21 @@ "types": [ { "type": "reference", - "target": 4540, + "target": 4567, "name": "StockLocationDTO", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 4556, + "id": 4583, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4557, + "id": 4584, "name": "sales_channels", "variant": "declaration", "kind": 1024, @@ -97560,7 +102492,7 @@ { "title": "Properties", "children": [ - 4557 + 4584 ] } ] @@ -97570,7 +102502,7 @@ } }, { - "id": 2119, + "id": 2117, "name": "StoreAuthRes", "variant": "declaration", "kind": 2097152, @@ -97589,14 +102521,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2120, + "id": 2118, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2121, + "id": 2119, "name": "customer", "variant": "declaration", "kind": 1024, @@ -97624,7 +102556,7 @@ { "title": "Properties", "children": [ - 2121 + 2119 ] } ] @@ -97632,7 +102564,7 @@ } }, { - "id": 2122, + "id": 2120, "name": "StoreBearerAuthRes", "variant": "declaration", "kind": 2097152, @@ -97651,14 +102583,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2123, + "id": 2121, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2124, + "id": 2122, "name": "access_token", "variant": "declaration", "kind": 1024, @@ -97681,7 +102613,7 @@ { "title": "Properties", "children": [ - 2124 + 2122 ] } ] @@ -97689,7 +102621,7 @@ } }, { - "id": 2563, + "id": 2574, "name": "StoreCartShippingOptionsListRes", "variant": "declaration", "kind": 2097152, @@ -97703,14 +102635,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2564, + "id": 2575, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2565, + "id": 2576, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -97727,7 +102659,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4627, + "target": 4654, "name": "PricedShippingOption", "package": "@medusajs/medusa" } @@ -97738,7 +102670,7 @@ { "title": "Properties", "children": [ - 2565 + 2576 ] } ] @@ -97746,7 +102678,7 @@ } }, { - "id": 2135, + "id": 2133, "name": "StoreCartsRes", "variant": "declaration", "kind": 2097152, @@ -97765,14 +102697,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2136, + "id": 2134, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2137, + "id": 2135, "name": "cart", "variant": "declaration", "kind": 1024, @@ -97824,7 +102756,7 @@ { "title": "Properties", "children": [ - 2137 + 2135 ] } ] @@ -97832,7 +102764,7 @@ } }, { - "id": 2200, + "id": 2198, "name": "StoreCollectionsListRes", "variant": "declaration", "kind": 2097152, @@ -97853,21 +102785,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 2201, + "id": 2199, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2202, + "id": 2200, "name": "collections", "variant": "declaration", "kind": 1024, @@ -97898,7 +102830,7 @@ { "title": "Properties", "children": [ - 2202 + 2200 ] } ] @@ -97908,7 +102840,7 @@ } }, { - "id": 2203, + "id": 2201, "name": "StoreCollectionsRes", "variant": "declaration", "kind": 2097152, @@ -97927,14 +102859,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2204, + "id": 2202, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2205, + "id": 2203, "name": "collection", "variant": "declaration", "kind": 1024, @@ -97962,7 +102894,7 @@ { "title": "Properties", "children": [ - 2205 + 2203 ] } ] @@ -97970,7 +102902,7 @@ } }, { - "id": 2138, + "id": 2136, "name": "StoreCompleteCartRes", "variant": "declaration", "kind": 2097152, @@ -97992,14 +102924,14 @@ { "type": "reflection", "declaration": { - "id": 2139, + "id": 2137, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2141, + "id": 2139, "name": "data", "variant": "declaration", "kind": 1024, @@ -98023,7 +102955,7 @@ } }, { - "id": 2140, + "id": 2138, "name": "type", "variant": "declaration", "kind": 1024, @@ -98038,8 +102970,8 @@ { "title": "Properties", "children": [ - 2141, - 2140 + 2139, + 2138 ] } ] @@ -98048,14 +102980,14 @@ { "type": "reflection", "declaration": { - "id": 2142, + "id": 2140, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2144, + "id": 2142, "name": "data", "variant": "declaration", "kind": 1024, @@ -98079,7 +103011,7 @@ } }, { - "id": 2143, + "id": 2141, "name": "type", "variant": "declaration", "kind": 1024, @@ -98094,8 +103026,8 @@ { "title": "Properties", "children": [ - 2144, - 2143 + 2142, + 2141 ] } ] @@ -98104,14 +103036,14 @@ { "type": "reflection", "declaration": { - "id": 2145, + "id": 2143, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2147, + "id": 2145, "name": "data", "variant": "declaration", "kind": 1024, @@ -98135,7 +103067,7 @@ } }, { - "id": 2146, + "id": 2144, "name": "type", "variant": "declaration", "kind": 1024, @@ -98150,8 +103082,8 @@ { "title": "Properties", "children": [ - 2147, - 2146 + 2145, + 2144 ] } ] @@ -98161,7 +103093,7 @@ } }, { - "id": 2224, + "id": 2222, "name": "StoreCustomersListOrdersRes", "variant": "declaration", "kind": 2097152, @@ -98182,21 +103114,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 2225, + "id": 2223, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2226, + "id": 2224, "name": "orders", "variant": "declaration", "kind": 1024, @@ -98227,7 +103159,7 @@ { "title": "Properties", "children": [ - 2226 + 2224 ] } ] @@ -98237,7 +103169,7 @@ } }, { - "id": 2227, + "id": 2225, "name": "StoreCustomersListPaymentMethodsRes", "variant": "declaration", "kind": 2097152, @@ -98256,14 +103188,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2228, + "id": 2226, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2229, + "id": 2227, "name": "payment_methods", "variant": "declaration", "kind": 1024, @@ -98281,14 +103213,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 2230, + "id": 2228, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2232, + "id": 2230, "name": "data", "variant": "declaration", "kind": 1024, @@ -98307,7 +103239,7 @@ } }, { - "id": 2231, + "id": 2229, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -98330,8 +103262,8 @@ { "title": "Properties", "children": [ - 2232, - 2231 + 2230, + 2229 ] } ] @@ -98344,7 +103276,7 @@ { "title": "Properties", "children": [ - 2229 + 2227 ] } ] @@ -98352,7 +103284,7 @@ } }, { - "id": 2218, + "id": 2216, "name": "StoreCustomersRes", "variant": "declaration", "kind": 2097152, @@ -98371,14 +103303,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2219, + "id": 2217, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2220, + "id": 2218, "name": "customer", "variant": "declaration", "kind": 1024, @@ -98421,7 +103353,7 @@ { "title": "Properties", "children": [ - 2220 + 2218 ] } ] @@ -98429,7 +103361,7 @@ } }, { - "id": 2221, + "id": 2219, "name": "StoreCustomersResetPasswordRes", "variant": "declaration", "kind": 2097152, @@ -98443,14 +103375,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2222, + "id": 2220, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2223, + "id": 2221, "name": "customer", "variant": "declaration", "kind": 1024, @@ -98493,7 +103425,7 @@ { "title": "Properties", "children": [ - 2223 + 2221 ] } ] @@ -98501,7 +103433,7 @@ } }, { - "id": 2125, + "id": 2123, "name": "StoreGetAuthEmailRes", "variant": "declaration", "kind": 2097152, @@ -98520,14 +103452,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2126, + "id": 2124, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2127, + "id": 2125, "name": "exists", "variant": "declaration", "kind": 1024, @@ -98550,7 +103482,7 @@ { "title": "Properties", "children": [ - 2127 + 2125 ] } ] @@ -98558,7 +103490,7 @@ } }, { - "id": 2385, + "id": 2383, "name": "StoreGetProductCategoriesCategoryRes", "variant": "declaration", "kind": 2097152, @@ -98577,14 +103509,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2386, + "id": 2384, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2387, + "id": 2385, "name": "product_category", "variant": "declaration", "kind": 1024, @@ -98612,7 +103544,7 @@ { "title": "Properties", "children": [ - 2387 + 2385 ] } ] @@ -98620,7 +103552,7 @@ } }, { - "id": 2388, + "id": 2386, "name": "StoreGetProductCategoriesRes", "variant": "declaration", "kind": 2097152, @@ -98641,21 +103573,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 2389, + "id": 2387, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2390, + "id": 2388, "name": "product_categories", "variant": "declaration", "kind": 1024, @@ -98686,7 +103618,7 @@ { "title": "Properties", "children": [ - 2390 + 2388 ] } ] @@ -98696,7 +103628,7 @@ } }, { - "id": 2311, + "id": 2309, "name": "StoreGiftCardsRes", "variant": "declaration", "kind": 2097152, @@ -98715,14 +103647,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2312, + "id": 2310, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2313, + "id": 2311, "name": "gift_card", "variant": "declaration", "kind": 1024, @@ -98750,7 +103682,7 @@ { "title": "Properties", "children": [ - 2313 + 2311 ] } ] @@ -98758,7 +103690,7 @@ } }, { - "id": 2314, + "id": 2312, "name": "StoreOrderEditsRes", "variant": "declaration", "kind": 2097152, @@ -98777,14 +103709,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2315, + "id": 2313, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2316, + "id": 2314, "name": "order_edit", "variant": "declaration", "kind": 1024, @@ -98844,7 +103776,7 @@ { "title": "Properties", "children": [ - 2316 + 2314 ] } ] @@ -98852,7 +103784,7 @@ } }, { - "id": 2325, + "id": 2323, "name": "StoreOrdersRes", "variant": "declaration", "kind": 2097152, @@ -98871,14 +103803,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2326, + "id": 2324, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2327, + "id": 2325, "name": "order", "variant": "declaration", "kind": 1024, @@ -98906,7 +103838,7 @@ { "title": "Properties", "children": [ - 2327 + 2325 ] } ] @@ -98914,7 +103846,7 @@ } }, { - "id": 2349, + "id": 2347, "name": "StorePaymentCollectionsRes", "variant": "declaration", "kind": 2097152, @@ -98933,14 +103865,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2350, + "id": 2348, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2351, + "id": 2349, "name": "payment_collection", "variant": "declaration", "kind": 1024, @@ -98968,7 +103900,7 @@ { "title": "Properties", "children": [ - 2351 + 2349 ] } ] @@ -98976,7 +103908,7 @@ } }, { - "id": 2352, + "id": 2350, "name": "StorePaymentCollectionsSessionRes", "variant": "declaration", "kind": 2097152, @@ -98990,14 +103922,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2353, + "id": 2351, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2354, + "id": 2352, "name": "payment_session", "variant": "declaration", "kind": 1024, @@ -99025,7 +103957,7 @@ { "title": "Properties", "children": [ - 2354 + 2352 ] } ] @@ -99033,7 +103965,7 @@ } }, { - "id": 2481, + "id": 2482, "name": "StorePostSearchRes", "variant": "declaration", "kind": 2097152, @@ -99055,14 +103987,14 @@ { "type": "reflection", "declaration": { - "id": 2482, + "id": 2483, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2483, + "id": 2484, "name": "hits", "variant": "declaration", "kind": 1024, @@ -99088,7 +104020,7 @@ { "title": "Properties", "children": [ - 2483 + 2484 ] } ] @@ -99117,7 +104049,7 @@ } }, { - "id": 2411, + "id": 2409, "name": "StoreProductTagsListRes", "variant": "declaration", "kind": 2097152, @@ -99138,21 +104070,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 2412, + "id": 2410, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2413, + "id": 2411, "name": "product_tags", "variant": "declaration", "kind": 1024, @@ -99183,7 +104115,7 @@ { "title": "Properties", "children": [ - 2413 + 2411 ] } ] @@ -99193,7 +104125,7 @@ } }, { - "id": 2429, + "id": 2427, "name": "StoreProductTypesListRes", "variant": "declaration", "kind": 2097152, @@ -99209,21 +104141,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 2430, + "id": 2428, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2431, + "id": 2429, "name": "product_types", "variant": "declaration", "kind": 1024, @@ -99254,7 +104186,7 @@ { "title": "Properties", "children": [ - 2431 + 2429 ] } ] @@ -99264,7 +104196,7 @@ } }, { - "id": 2484, + "id": 2485, "name": "StoreProductsListRes", "variant": "declaration", "kind": 2097152, @@ -99285,21 +104217,21 @@ "types": [ { "type": "reference", - "target": 3742, + "target": 3751, "name": "PaginatedResponse", "package": "@medusajs/medusa" }, { "type": "reflection", "declaration": { - "id": 2485, + "id": 2486, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2486, + "id": 2487, "name": "products", "variant": "declaration", "kind": 1024, @@ -99316,7 +104248,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4389, + "target": 4416, "name": "PricedProduct", "package": "@medusajs/medusa" } @@ -99327,7 +104259,7 @@ { "title": "Properties", "children": [ - 2486 + 2487 ] } ] @@ -99337,7 +104269,7 @@ } }, { - "id": 2478, + "id": 2479, "name": "StoreProductsRes", "variant": "declaration", "kind": 2097152, @@ -99351,14 +104283,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2479, + "id": 2480, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2480, + "id": 2481, "name": "product", "variant": "declaration", "kind": 1024, @@ -99373,7 +104305,7 @@ }, "type": { "type": "reference", - "target": 4389, + "target": 4416, "name": "PricedProduct", "package": "@medusajs/medusa" } @@ -99383,7 +104315,7 @@ { "title": "Properties", "children": [ - 2480 + 2481 ] } ] @@ -99391,7 +104323,7 @@ } }, { - "id": 2530, + "id": 2533, "name": "StoreRegionsListRes", "variant": "declaration", "kind": 2097152, @@ -99412,21 +104344,21 @@ "types": [ { "type": "reference", - "target": 4245, + "target": 4272, "name": "PaginatedResponse", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 2531, + "id": 2534, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2532, + "id": 2535, "name": "regions", "variant": "declaration", "kind": 1024, @@ -99457,7 +104389,7 @@ { "title": "Properties", "children": [ - 2532 + 2535 ] } ] @@ -99467,7 +104399,7 @@ } }, { - "id": 2533, + "id": 2536, "name": "StoreRegionsRes", "variant": "declaration", "kind": 2097152, @@ -99486,14 +104418,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2534, + "id": 2537, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2535, + "id": 2538, "name": "region", "variant": "declaration", "kind": 1024, @@ -99521,7 +104453,7 @@ { "title": "Properties", "children": [ - 2535 + 2538 ] } ] @@ -99529,7 +104461,7 @@ } }, { - "id": 2545, + "id": 2556, "name": "StoreReturnReasonsListRes", "variant": "declaration", "kind": 2097152, @@ -99548,14 +104480,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2546, + "id": 2557, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2547, + "id": 2558, "name": "return_reasons", "variant": "declaration", "kind": 1024, @@ -99586,7 +104518,7 @@ { "title": "Properties", "children": [ - 2547 + 2558 ] } ] @@ -99594,7 +104526,7 @@ } }, { - "id": 2548, + "id": 2559, "name": "StoreReturnReasonsRes", "variant": "declaration", "kind": 2097152, @@ -99613,14 +104545,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2549, + "id": 2560, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2550, + "id": 2561, "name": "return_reason", "variant": "declaration", "kind": 1024, @@ -99648,7 +104580,7 @@ { "title": "Properties", "children": [ - 2550 + 2561 ] } ] @@ -99656,7 +104588,7 @@ } }, { - "id": 2551, + "id": 2562, "name": "StoreReturnsRes", "variant": "declaration", "kind": 2097152, @@ -99675,14 +104607,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2552, + "id": 2563, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2553, + "id": 2564, "name": "return", "variant": "declaration", "kind": 1024, @@ -99710,7 +104642,7 @@ { "title": "Properties", "children": [ - 2553 + 2564 ] } ] @@ -99718,7 +104650,7 @@ } }, { - "id": 2560, + "id": 2571, "name": "StoreShippingOptionsListRes", "variant": "declaration", "kind": 2097152, @@ -99737,14 +104669,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2561, + "id": 2572, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2562, + "id": 2573, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -99761,7 +104693,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4627, + "target": 4654, "name": "PricedShippingOption", "package": "@medusajs/medusa" } @@ -99772,7 +104704,7 @@ { "title": "Properties", "children": [ - 2562 + 2573 ] } ] @@ -99780,7 +104712,7 @@ } }, { - "id": 2574, + "id": 2585, "name": "StoreSwapsRes", "variant": "declaration", "kind": 2097152, @@ -99799,14 +104731,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2575, + "id": 2586, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2576, + "id": 2587, "name": "swap", "variant": "declaration", "kind": 1024, @@ -99834,7 +104766,7 @@ { "title": "Properties", "children": [ - 2576 + 2587 ] } ] @@ -99842,7 +104774,7 @@ } }, { - "id": 2589, + "id": 2600, "name": "StoreVariantsListRes", "variant": "declaration", "kind": 2097152, @@ -99861,14 +104793,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2590, + "id": 2601, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2591, + "id": 2602, "name": "variants", "variant": "declaration", "kind": 1024, @@ -99885,7 +104817,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4590, + "target": 4617, "name": "PricedVariant", "package": "@medusajs/medusa" } @@ -99896,7 +104828,7 @@ { "title": "Properties", "children": [ - 2591 + 2602 ] } ] @@ -99904,7 +104836,7 @@ } }, { - "id": 2586, + "id": 2597, "name": "StoreVariantsRes", "variant": "declaration", "kind": 2097152, @@ -99923,14 +104855,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2587, + "id": 2598, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2588, + "id": 2599, "name": "variant", "variant": "declaration", "kind": 1024, @@ -99945,7 +104877,7 @@ }, "type": { "type": "reference", - "target": 4590, + "target": 4617, "name": "PricedVariant", "package": "@medusajs/medusa" } @@ -99955,7 +104887,7 @@ { "title": "Properties", "children": [ - 2588 + 2599 ] } ] @@ -99963,14 +104895,14 @@ } }, { - "id": 4019, + "id": 4031, "name": "SubscriberArgs", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4025, + "id": 4037, "name": "T", "variant": "typeParam", "kind": 131072, @@ -99984,27 +104916,27 @@ "type": { "type": "reflection", "declaration": { - "id": 4020, + "id": 4032, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4023, + "id": 4035, "name": "container", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4705, + "target": 4732, "name": "MedusaContainer", "package": "@medusajs/types" } }, { - "id": 4021, + "id": 4033, "name": "data", "variant": "declaration", "kind": 1024, @@ -100017,7 +104949,7 @@ } }, { - "id": 4022, + "id": 4034, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -100028,7 +104960,7 @@ } }, { - "id": 4024, + "id": 4036, "name": "pluginOptions", "variant": "declaration", "kind": 1024, @@ -100058,10 +104990,10 @@ { "title": "Properties", "children": [ - 4023, - 4021, - 4022, - 4024 + 4035, + 4033, + 4034, + 4036 ] } ] @@ -100069,7 +105001,7 @@ } }, { - "id": 4015, + "id": 4027, "name": "SubscriberConfig", "variant": "declaration", "kind": 2097152, @@ -100077,14 +105009,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4016, + "id": 4028, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4018, + "id": 4030, "name": "context", "variant": "declaration", "kind": 1024, @@ -100093,13 +105025,13 @@ }, "type": { "type": "reference", - "target": 4799, + "target": 4828, "name": "SubscriberContext", "package": "@medusajs/medusa" } }, { - "id": 4017, + "id": 4029, "name": "event", "variant": "declaration", "kind": 1024, @@ -100126,8 +105058,8 @@ { "title": "Properties", "children": [ - 4018, - 4017 + 4030, + 4029 ] } ] @@ -100135,7 +105067,7 @@ } }, { - "id": 3577, + "id": 3586, "name": "TaxCalculationContext", "variant": "declaration", "kind": 2097152, @@ -100151,27 +105083,27 @@ "type": { "type": "reflection", "declaration": { - "id": 3578, + "id": 3587, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3584, + "id": 3593, "name": "allocation_map", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4744, + "target": 4771, "name": "LineAllocationsMap", "package": "@medusajs/medusa" } }, { - "id": 3580, + "id": 3589, "name": "customer", "variant": "declaration", "kind": 1024, @@ -100195,7 +105127,7 @@ } }, { - "id": 3582, + "id": 3591, "name": "is_return", "variant": "declaration", "kind": 1024, @@ -100206,7 +105138,7 @@ } }, { - "id": 3581, + "id": 3590, "name": "region", "variant": "declaration", "kind": 1024, @@ -100230,7 +105162,7 @@ } }, { - "id": 3579, + "id": 3588, "name": "shipping_address", "variant": "declaration", "kind": 1024, @@ -100255,7 +105187,7 @@ } }, { - "id": 3583, + "id": 3592, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -100278,12 +105210,12 @@ { "title": "Properties", "children": [ - 3584, - 3580, - 3582, - 3581, - 3579, - 3583 + 3593, + 3589, + 3591, + 3590, + 3588, + 3592 ] } ] @@ -100291,7 +105223,7 @@ } }, { - "id": 4737, + "id": 4764, "name": "TaxServiceRate", "variant": "declaration", "kind": 2097152, @@ -100307,14 +105239,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4738, + "id": 4765, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4741, + "id": 4768, "name": "code", "variant": "declaration", "kind": 1024, @@ -100342,7 +105274,7 @@ } }, { - "id": 4740, + "id": 4767, "name": "name", "variant": "declaration", "kind": 1024, @@ -100361,7 +105293,7 @@ } }, { - "id": 4739, + "id": 4766, "name": "rate", "variant": "declaration", "kind": 1024, @@ -100395,9 +105327,9 @@ { "title": "Properties", "children": [ - 4741, - 4740, - 4739 + 4768, + 4767, + 4766 ] } ] @@ -100405,7 +105337,7 @@ } }, { - "id": 4946, + "id": 5038, "name": "TaxedPricing", "variant": "declaration", "kind": 2097152, @@ -100421,14 +105353,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4947, + "id": 5039, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4949, + "id": 5041, "name": "calculated_price_incl_tax", "variant": "declaration", "kind": 1024, @@ -100456,7 +105388,7 @@ } }, { - "id": 4951, + "id": 5043, "name": "calculated_tax", "variant": "declaration", "kind": 1024, @@ -100484,7 +105416,7 @@ } }, { - "id": 4948, + "id": 5040, "name": "original_price_incl_tax", "variant": "declaration", "kind": 1024, @@ -100512,7 +105444,7 @@ } }, { - "id": 4950, + "id": 5042, "name": "original_tax", "variant": "declaration", "kind": 1024, @@ -100540,7 +105472,7 @@ } }, { - "id": 4952, + "id": 5044, "name": "tax_rates", "variant": "declaration", "kind": 1024, @@ -100560,7 +105492,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4737, + "target": 4764, "name": "TaxServiceRate", "package": "@medusajs/medusa" } @@ -100577,11 +105509,11 @@ { "title": "Properties", "children": [ - 4949, - 4951, - 4948, - 4950, - 4952 + 5041, + 5043, + 5040, + 5042, + 5044 ] } ] @@ -100589,7 +105521,7 @@ } }, { - "id": 3718, + "id": 3727, "name": "TotalField", "variant": "declaration", "kind": 2097152, @@ -100637,14 +105569,14 @@ } }, { - "id": 3712, + "id": 3721, "name": "TreeQuerySelector", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3715, + "id": 3724, "name": "TEntity", "variant": "typeParam", "kind": 131072, @@ -100656,7 +105588,7 @@ "types": [ { "type": "reference", - "target": 3708, + "target": 3717, "typeArguments": [ { "type": "reference", @@ -100671,14 +105603,14 @@ { "type": "reflection", "declaration": { - "id": 3713, + "id": 3722, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3714, + "id": 3723, "name": "include_descendants_tree", "variant": "declaration", "kind": 1024, @@ -100695,7 +105627,7 @@ { "title": "Properties", "children": [ - 3714 + 3723 ] } ] @@ -100705,7 +105637,7 @@ } }, { - "id": 3954, + "id": 3963, "name": "UpdatePriceListInput", "variant": "declaration", "kind": 2097152, @@ -100780,14 +105712,14 @@ { "type": "reflection", "declaration": { - "id": 3955, + "id": 3964, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3957, + "id": 3966, "name": "customer_groups", "variant": "declaration", "kind": 1024, @@ -100799,14 +105731,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 3958, + "id": 3967, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3959, + "id": 3968, "name": "id", "variant": "declaration", "kind": 1024, @@ -100821,7 +105753,7 @@ { "title": "Properties", "children": [ - 3959 + 3968 ] } ] @@ -100830,7 +105762,7 @@ } }, { - "id": 3956, + "id": 3965, "name": "prices", "variant": "declaration", "kind": 1024, @@ -100841,7 +105773,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3922, + "target": 3931, "name": "AdminPriceListPricesUpdateReq", "package": "@medusajs/medusa" } @@ -100852,8 +105784,8 @@ { "title": "Properties", "children": [ - 3957, - 3956 + 3966, + 3965 ] } ] @@ -100863,7 +105795,7 @@ } }, { - "id": 4680, + "id": 4707, "name": "UploadStreamDescriptorType", "variant": "declaration", "kind": 2097152, @@ -100871,14 +105803,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4681, + "id": 4708, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4683, + "id": 4710, "name": "ext", "variant": "declaration", "kind": 1024, @@ -100891,7 +105823,7 @@ } }, { - "id": 4684, + "id": 4711, "name": "isPrivate", "variant": "declaration", "kind": 1024, @@ -100904,7 +105836,7 @@ } }, { - "id": 4682, + "id": 4709, "name": "name", "variant": "declaration", "kind": 1024, @@ -100919,21 +105851,21 @@ { "title": "Properties", "children": [ - 4683, - 4684, - 4682 + 4710, + 4711, + 4709 ] } ], "indexSignature": { - "id": 4685, + "id": 4712, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 4686, + "id": 4713, "name": "x", "variant": "param", "kind": 32768, @@ -100953,7 +105885,7 @@ } }, { - "id": 2107, + "id": 2105, "name": "VariantInventory", "variant": "declaration", "kind": 2097152, @@ -100967,14 +105899,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2108, + "id": 2106, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2109, + "id": 2107, "name": "id", "variant": "declaration", "kind": 1024, @@ -100993,7 +105925,7 @@ } }, { - "id": 2110, + "id": 2108, "name": "inventory", "variant": "declaration", "kind": 1024, @@ -101010,14 +105942,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2104, + "target": 2102, "name": "ResponseInventoryItem", "package": "@medusajs/medusa" } } }, { - "id": 2111, + "id": 2109, "name": "sales_channel_availability", "variant": "declaration", "kind": 1024, @@ -101035,14 +105967,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 2112, + "id": 2110, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2115, + "id": 2113, "name": "available_quantity", "variant": "declaration", "kind": 1024, @@ -101061,7 +105993,7 @@ } }, { - "id": 2114, + "id": 2112, "name": "channel_id", "variant": "declaration", "kind": 1024, @@ -101080,7 +106012,7 @@ } }, { - "id": 2113, + "id": 2111, "name": "channel_name", "variant": "declaration", "kind": 1024, @@ -101103,9 +106035,9 @@ { "title": "Properties", "children": [ - 2115, - 2114, - 2113 + 2113, + 2112, + 2111 ] } ] @@ -101118,9 +106050,9 @@ { "title": "Properties", "children": [ - 2109, - 2110, - 2111 + 2107, + 2108, + 2109 ] } ] @@ -101128,7 +106060,7 @@ } }, { - "id": 3681, + "id": 3690, "name": "WithRequiredProperty", "variant": "declaration", "kind": 2097152, @@ -101143,14 +106075,14 @@ }, "typeParameters": [ { - "id": 3682, + "id": 3691, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 3683, + "id": 3692, "name": "K", "variant": "typeParam", "kind": 131072, @@ -101206,14 +106138,14 @@ } }, { - "id": 3687, + "id": 3696, "name": "Writable", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3688, + "id": 3697, "name": "T", "variant": "typeParam", "kind": 131072, @@ -101330,7 +106262,7 @@ } }, { - "id": 4667, + "id": 4694, "name": "handler", "variant": "declaration", "kind": 2097152, @@ -101338,21 +106270,21 @@ "type": { "type": "reflection", "declaration": { - "id": 4668, + "id": 4695, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 4669, + "id": 4696, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4670, + "id": 4697, "name": "req", "variant": "param", "kind": 32768, @@ -101369,7 +106301,7 @@ } }, { - "id": 4671, + "id": 4698, "name": "res", "variant": "param", "kind": 32768, @@ -101407,7 +106339,7 @@ } }, { - "id": 2042, + "id": 2040, "name": "payload", "variant": "declaration", "kind": 2097152, @@ -101415,14 +106347,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2043, + "id": 2041, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2044, + "id": 2042, "name": "email", "variant": "declaration", "kind": 1024, @@ -101433,7 +106365,7 @@ } }, { - "id": 2046, + "id": 2044, "name": "password", "variant": "declaration", "kind": 1024, @@ -101444,7 +106376,7 @@ } }, { - "id": 2045, + "id": 2043, "name": "user_id", "variant": "declaration", "kind": 1024, @@ -101459,9 +106391,9 @@ { "title": "Properties", "children": [ + 2042, 2044, - 2046, - 2045 + 2043 ] } ] @@ -101511,7 +106443,7 @@ "defaultValue": "..." }, { - "id": 4997, + "id": 5089, "name": "HTTP_METHODS", "variant": "declaration", "kind": 32, @@ -101566,7 +106498,7 @@ "defaultValue": "..." }, { - "id": 3546, + "id": 3555, "name": "PriceType", "variant": "declaration", "kind": 32, @@ -101574,21 +106506,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3547, + "id": 3556, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3550, + "id": 3559, "name": "DEFAULT", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4742, + "target": 4769, "name": "DEFAULT", "package": "@medusajs/medusa", "qualifiedName": "DefaultPriceType.DEFAULT" @@ -101596,14 +106528,14 @@ "defaultValue": "\"default\"" }, { - "id": 3549, + "id": 3558, "name": "OVERRIDE", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3905, + "target": 3914, "name": "OVERRIDE", "package": "@medusajs/medusa", "qualifiedName": "PriceListType.OVERRIDE" @@ -101611,14 +106543,14 @@ "defaultValue": "\"override\"" }, { - "id": 3548, + "id": 3557, "name": "SALE", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3904, + "target": 3913, "name": "SALE", "package": "@medusajs/medusa", "qualifiedName": "PriceListType.SALE" @@ -101630,9 +106562,9 @@ { "title": "Properties", "children": [ - 3550, - 3549, - 3548 + 3559, + 3558, + 3557 ] } ] @@ -101640,7 +106572,7 @@ } }, { - "id": 1153, + "id": 1159, "name": "allowedAdminProductCategoryRelations", "variant": "declaration", "kind": 32, @@ -101657,7 +106589,7 @@ "defaultValue": "..." }, { - "id": 2199, + "id": 2197, "name": "allowedFields", "variant": "declaration", "kind": 32, @@ -101691,7 +106623,7 @@ "defaultValue": "..." }, { - "id": 2217, + "id": 2215, "name": "allowedStoreCustomersFields", "variant": "declaration", "kind": 32, @@ -101708,7 +106640,7 @@ "defaultValue": "..." }, { - "id": 2216, + "id": 2214, "name": "allowedStoreCustomersRelations", "variant": "declaration", "kind": 32, @@ -101725,7 +106657,7 @@ "defaultValue": "..." }, { - "id": 2310, + "id": 2308, "name": "allowedStoreGiftCardFields", "variant": "declaration", "kind": 32, @@ -101742,7 +106674,7 @@ "defaultValue": "..." }, { - "id": 2309, + "id": 2307, "name": "allowedStoreGiftCardRelations", "variant": "declaration", "kind": 32, @@ -101759,7 +106691,7 @@ "defaultValue": "..." }, { - "id": 2324, + "id": 2322, "name": "allowedStoreOrdersFields", "variant": "declaration", "kind": 32, @@ -101776,7 +106708,7 @@ "defaultValue": "..." }, { - "id": 2322, + "id": 2320, "name": "allowedStoreOrdersRelations", "variant": "declaration", "kind": 32, @@ -101793,7 +106725,7 @@ "defaultValue": "..." }, { - "id": 2384, + "id": 2382, "name": "allowedStoreProductCategoryFields", "variant": "declaration", "kind": 32, @@ -101810,7 +106742,7 @@ "defaultValue": "..." }, { - "id": 2409, + "id": 2407, "name": "allowedStoreProductTagFields", "variant": "declaration", "kind": 32, @@ -101827,7 +106759,7 @@ "defaultValue": "..." }, { - "id": 2426, + "id": 2424, "name": "allowedStoreProductTypeFields", "variant": "declaration", "kind": 32, @@ -101844,7 +106776,7 @@ "defaultValue": "..." }, { - "id": 2446, + "id": 2444, "name": "allowedStoreProductsFields", "variant": "declaration", "kind": 32, @@ -101861,7 +106793,7 @@ "defaultValue": "..." }, { - "id": 2447, + "id": 2445, "name": "allowedStoreProductsRelations", "variant": "declaration", "kind": 32, @@ -101878,7 +106810,7 @@ "defaultValue": "..." }, { - "id": 2585, + "id": 2596, "name": "allowedStoreVariantRelations", "variant": "declaration", "kind": 32, @@ -102169,7 +107101,7 @@ "defaultValue": "..." }, { - "id": 1271, + "id": 1277, "name": "defaultAdminGetProductsVariantsFields", "variant": "declaration", "kind": 32, @@ -102243,7 +107175,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 4213, + "target": 4240, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -102283,7 +107215,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 4233, + "target": 4260, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -102326,7 +107258,7 @@ "defaultValue": "..." }, { - "id": 1057, + "id": 1063, "name": "defaultAdminPriceListFields", "variant": "declaration", "kind": 32, @@ -102343,7 +107275,7 @@ "defaultValue": "..." }, { - "id": 1058, + "id": 1064, "name": "defaultAdminPriceListRelations", "variant": "declaration", "kind": 32, @@ -102566,7 +107498,7 @@ }, { "id": 1050, - "name": "price_set", + "name": "price_rules", "variant": "declaration", "kind": 1024, "flags": {}, @@ -102581,6 +107513,93 @@ "children": [ { "id": 1052, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "defaultValue": "..." + }, + { + "id": 1053, + "name": "rule_type", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1054, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1055, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1055 + ] + } + ] + } + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1052, + 1053 + ] + } + ] + } + }, + "defaultValue": "..." + }, + { + "id": 1056, + "name": "price_set", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1057, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1058, "name": "variant_link", "variant": "declaration", "kind": 1024, @@ -102588,14 +107607,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1053, + "id": 1059, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1054, + "id": 1060, "name": "variant", "variant": "declaration", "kind": 1024, @@ -102603,14 +107622,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1055, + "id": 1061, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1056, + "id": 1062, "name": "fields", "variant": "declaration", "kind": 1024, @@ -102629,7 +107648,7 @@ { "title": "Properties", "children": [ - 1056 + 1062 ] } ] @@ -102642,7 +107661,7 @@ { "title": "Properties", "children": [ - 1054 + 1060 ] } ] @@ -102655,7 +107674,7 @@ { "title": "Properties", "children": [ - 1052 + 1058 ] } ] @@ -102669,7 +107688,8 @@ "title": "Properties", "children": [ 1047, - 1050 + 1050, + 1056 ] } ] @@ -102693,7 +107713,7 @@ "defaultValue": "..." }, { - "id": 1152, + "id": 1158, "name": "defaultAdminProductCategoryRelations", "variant": "declaration", "kind": 32, @@ -102710,7 +107730,7 @@ "defaultValue": "..." }, { - "id": 1270, + "id": 1276, "name": "defaultAdminProductFields", "variant": "declaration", "kind": 32, @@ -102736,7 +107756,7 @@ "defaultValue": "..." }, { - "id": 1269, + "id": 1275, "name": "defaultAdminProductRelations", "variant": "declaration", "kind": 32, @@ -102753,7 +107773,7 @@ "defaultValue": "..." }, { - "id": 1272, + "id": 1278, "name": "defaultAdminProductRemoteQueryObject", "variant": "declaration", "kind": 32, @@ -102771,14 +107791,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1273, + "id": 1279, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1287, + "id": 1293, "name": "categories", "variant": "declaration", "kind": 1024, @@ -102786,14 +107806,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1288, + "id": 1294, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1289, + "id": 1295, "name": "fields", "variant": "declaration", "kind": 1024, @@ -102812,117 +107832,7 @@ { "title": "Properties", "children": [ - 1289 - ] - } - ] - } - }, - "defaultValue": "..." - }, - { - "id": 1284, - "name": "collection", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1285, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1286, - "name": "fields", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1286 - ] - } - ] - } - }, - "defaultValue": "..." - }, - { - "id": 1274, - "name": "fields", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "typeOperator", - "operator": "keyof", - "target": { - "type": "reference", - "target": { - "sourceFileName": "../../../packages/medusa/src/models/product.ts", - "qualifiedName": "Product" - }, - "name": "Product", - "package": "@medusajs/medusa" - } - } - }, - "defaultValue": "defaultAdminProductFields" - }, - { - "id": 1275, - "name": "images", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1276, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1277, - "name": "fields", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1277 + 1295 ] } ] @@ -102932,7 +107842,7 @@ }, { "id": 1290, - "name": "options", + "name": "collection", "variant": "declaration", "kind": 1024, "flags": {}, @@ -102959,153 +107869,47 @@ } }, "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1292 + ] + } + ] + } + }, + "defaultValue": "..." + }, + { + "id": 1280, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "typeOperator", + "operator": "keyof", + "target": { + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa/src/models/product.ts", + "qualifiedName": "Product" }, - { - "id": 1293, - "name": "values", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1294, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1295, - "name": "fields", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1295 - ] - } - ] - } - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1292, - 1293 - ] - } - ] + "name": "Product", + "package": "@medusajs/medusa" + } } }, - "defaultValue": "..." - }, - { - "id": 1302, - "name": "profile", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1303, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1304, - "name": "fields", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1304 - ] - } - ] - } - }, - "defaultValue": "..." - }, - { - "id": 1278, - "name": "tags", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1279, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1280, - "name": "fields", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1280 - ] - } - ] - } - }, - "defaultValue": "..." + "defaultValue": "defaultAdminProductFields" }, { "id": 1281, - "name": "type", + "name": "images", "variant": "declaration", "kind": 1024, "flags": {}, @@ -103148,7 +107952,7 @@ }, { "id": 1296, - "name": "variants", + "name": "options", "variant": "declaration", "kind": 1024, "flags": {}, @@ -103178,7 +107982,7 @@ }, { "id": 1299, - "name": "options", + "name": "values", "variant": "declaration", "kind": 1024, "flags": {}, @@ -103232,21 +108036,281 @@ } }, "defaultValue": "..." + }, + { + "id": 1308, + "name": "profile", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1309, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1310, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1310 + ] + } + ] + } + }, + "defaultValue": "..." + }, + { + "id": 1311, + "name": "sales_channels", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1312, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1313, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1313 + ] + } + ] + } + }, + "defaultValue": "..." + }, + { + "id": 1284, + "name": "tags", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1285, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1286, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1286 + ] + } + ] + } + }, + "defaultValue": "..." + }, + { + "id": 1287, + "name": "type", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1288, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1289, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1289 + ] + } + ] + } + }, + "defaultValue": "..." + }, + { + "id": 1302, + "name": "variants", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1303, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1304, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "defaultValue": "..." + }, + { + "id": 1305, + "name": "options", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1306, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1307, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1307 + ] + } + ] + } + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1304, + 1305 + ] + } + ] + } + }, + "defaultValue": "..." } ], "groups": [ { "title": "Properties", "children": [ - 1287, - 1284, - 1274, - 1275, + 1293, 1290, - 1302, - 1278, + 1280, 1281, - 1296 + 1296, + 1308, + 1311, + 1284, + 1287, + 1302 ] } ] @@ -103255,7 +108319,7 @@ "defaultValue": "..." }, { - "id": 1230, + "id": 1236, "name": "defaultAdminProductTagsFields", "variant": "declaration", "kind": 32, @@ -103272,7 +108336,7 @@ "defaultValue": "..." }, { - "id": 1231, + "id": 1237, "name": "defaultAdminProductTagsRelations", "variant": "declaration", "kind": 32, @@ -103289,7 +108353,7 @@ "defaultValue": "[]" }, { - "id": 1252, + "id": 1258, "name": "defaultAdminProductTypeFields", "variant": "declaration", "kind": 32, @@ -103306,7 +108370,7 @@ "defaultValue": "..." }, { - "id": 1253, + "id": 1259, "name": "defaultAdminProductTypeRelations", "variant": "declaration", "kind": 32, @@ -103323,7 +108387,7 @@ "defaultValue": "[]" }, { - "id": 1542, + "id": 1541, "name": "defaultAdminRegionFields", "variant": "declaration", "kind": 32, @@ -103349,7 +108413,7 @@ "defaultValue": "..." }, { - "id": 1543, + "id": 1542, "name": "defaultAdminRegionRelations", "variant": "declaration", "kind": 32, @@ -103366,7 +108430,7 @@ "defaultValue": "..." }, { - "id": 1670, + "id": 1667, "name": "defaultAdminReservationRelations", "variant": "declaration", "kind": 32, @@ -103383,7 +108447,7 @@ "defaultValue": "[]" }, { - "id": 1612, + "id": 1609, "name": "defaultAdminReturnReasonsFields", "variant": "declaration", "kind": 32, @@ -103409,7 +108473,7 @@ "defaultValue": "..." }, { - "id": 1613, + "id": 1610, "name": "defaultAdminReturnReasonsRelations", "variant": "declaration", "kind": 32, @@ -103435,7 +108499,7 @@ "defaultValue": "..." }, { - "id": 1794, + "id": 1792, "name": "defaultAdminShippingProfilesFields", "variant": "declaration", "kind": 32, @@ -103461,7 +108525,7 @@ "defaultValue": "..." }, { - "id": 1795, + "id": 1793, "name": "defaultAdminShippingProfilesRelations", "variant": "declaration", "kind": 32, @@ -103478,7 +108542,7 @@ "defaultValue": "..." }, { - "id": 1817, + "id": 1815, "name": "defaultAdminStockLocationFields", "variant": "declaration", "kind": 32, @@ -103492,7 +108556,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 4540, + "target": 4567, "name": "StockLocationTypes.StockLocationDTO", "package": "@medusajs/types", "qualifiedName": "StockLocationDTO" @@ -103502,7 +108566,7 @@ "defaultValue": "..." }, { - "id": 1818, + "id": 1816, "name": "defaultAdminStockLocationRelations", "variant": "declaration", "kind": 32, @@ -103519,7 +108583,7 @@ "defaultValue": "[]" }, { - "id": 1891, + "id": 1889, "name": "defaultAdminSwapFields", "variant": "declaration", "kind": 32, @@ -103536,7 +108600,7 @@ "defaultValue": "..." }, { - "id": 1890, + "id": 1888, "name": "defaultAdminSwapRelations", "variant": "declaration", "kind": 32, @@ -103553,7 +108617,7 @@ "defaultValue": "..." }, { - "id": 1904, + "id": 1902, "name": "defaultAdminTaxRatesFields", "variant": "declaration", "kind": 32, @@ -103579,7 +108643,7 @@ "defaultValue": "..." }, { - "id": 1903, + "id": 1901, "name": "defaultAdminTaxRatesRelations", "variant": "declaration", "kind": 32, @@ -103596,7 +108660,7 @@ "defaultValue": "[]" }, { - "id": 2074, + "id": 2072, "name": "defaultAdminVariantFields", "variant": "declaration", "kind": 32, @@ -103622,7 +108686,7 @@ "defaultValue": "..." }, { - "id": 2073, + "id": 2071, "name": "defaultAdminVariantRelations", "variant": "declaration", "kind": 32, @@ -103639,7 +108703,7 @@ "defaultValue": "..." }, { - "id": 1756, + "id": 1753, "name": "defaultFields", "variant": "declaration", "kind": 32, @@ -103682,7 +108746,7 @@ "defaultValue": "..." }, { - "id": 2348, + "id": 2346, "name": "defaultPaymentCollectionRelations", "variant": "declaration", "kind": 32, @@ -103716,7 +108780,7 @@ "defaultValue": "..." }, { - "id": 1154, + "id": 1160, "name": "defaultProductCategoryFields", "variant": "declaration", "kind": 32, @@ -103733,7 +108797,7 @@ "defaultValue": "..." }, { - "id": 1636, + "id": 1633, "name": "defaultRelations", "variant": "declaration", "kind": 32, @@ -103750,7 +108814,7 @@ "defaultValue": "..." }, { - "id": 1867, + "id": 1865, "name": "defaultRelationsExtended", "variant": "declaration", "kind": 32, @@ -103767,7 +108831,7 @@ "defaultValue": "..." }, { - "id": 1637, + "id": 1634, "name": "defaultRelationsList", "variant": "declaration", "kind": 32, @@ -103784,7 +108848,7 @@ "defaultValue": "..." }, { - "id": 1671, + "id": 1668, "name": "defaultReservationFields", "variant": "declaration", "kind": 32, @@ -103801,7 +108865,7 @@ "defaultValue": "..." }, { - "id": 1639, + "id": 1636, "name": "defaultReturnCancelFields", "variant": "declaration", "kind": 32, @@ -103827,7 +108891,7 @@ "defaultValue": "..." }, { - "id": 1638, + "id": 1635, "name": "defaultReturnCancelRelations", "variant": "declaration", "kind": 32, @@ -103844,7 +108908,7 @@ "defaultValue": "..." }, { - "id": 2133, + "id": 2131, "name": "defaultStoreCartFields", "variant": "declaration", "kind": 32, @@ -103870,7 +108934,7 @@ "defaultValue": "[]" }, { - "id": 2134, + "id": 2132, "name": "defaultStoreCartRelations", "variant": "declaration", "kind": 32, @@ -103887,7 +108951,7 @@ "defaultValue": "..." }, { - "id": 2379, + "id": 2377, "name": "defaultStoreCategoryScope", "variant": "declaration", "kind": 32, @@ -103897,14 +108961,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2380, + "id": 2378, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2382, + "id": 2380, "name": "is_active", "variant": "declaration", "kind": 1024, @@ -103916,7 +108980,7 @@ "defaultValue": "true" }, { - "id": 2381, + "id": 2379, "name": "is_internal", "variant": "declaration", "kind": 1024, @@ -103932,8 +108996,8 @@ { "title": "Properties", "children": [ - 2382, - 2381 + 2380, + 2379 ] } ] @@ -103942,7 +109006,7 @@ "defaultValue": "..." }, { - "id": 2198, + "id": 2196, "name": "defaultStoreCollectionRelations", "variant": "declaration", "kind": 32, @@ -103959,7 +109023,7 @@ "defaultValue": "[]" }, { - "id": 2215, + "id": 2213, "name": "defaultStoreCustomersFields", "variant": "declaration", "kind": 32, @@ -103985,7 +109049,7 @@ "defaultValue": "..." }, { - "id": 2214, + "id": 2212, "name": "defaultStoreCustomersRelations", "variant": "declaration", "kind": 32, @@ -104002,7 +109066,7 @@ "defaultValue": "..." }, { - "id": 2308, + "id": 2306, "name": "defaultStoreGiftCardFields", "variant": "declaration", "kind": 32, @@ -104028,7 +109092,7 @@ "defaultValue": "..." }, { - "id": 2307, + "id": 2305, "name": "defaultStoreGiftCardRelations", "variant": "declaration", "kind": 32, @@ -104045,7 +109109,7 @@ "defaultValue": "..." }, { - "id": 2323, + "id": 2321, "name": "defaultStoreOrdersFields", "variant": "declaration", "kind": 32, @@ -104071,7 +109135,7 @@ "defaultValue": "..." }, { - "id": 2321, + "id": 2319, "name": "defaultStoreOrdersRelations", "variant": "declaration", "kind": 32, @@ -104088,7 +109152,7 @@ "defaultValue": "..." }, { - "id": 2383, + "id": 2381, "name": "defaultStoreProductCategoryFields", "variant": "declaration", "kind": 32, @@ -104105,7 +109169,7 @@ "defaultValue": "..." }, { - "id": 2378, + "id": 2376, "name": "defaultStoreProductCategoryRelations", "variant": "declaration", "kind": 32, @@ -104122,7 +109186,7 @@ "defaultValue": "..." }, { - "id": 2448, + "id": 2446, "name": "defaultStoreProductRemoteQueryObject", "variant": "declaration", "kind": 32, @@ -104140,14 +109204,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2449, + "id": 2447, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2460, + "id": 2458, "name": "collection", "variant": "declaration", "kind": 1024, @@ -104155,14 +109219,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2461, + "id": 2459, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2462, + "id": 2460, "name": "fields", "variant": "declaration", "kind": 1024, @@ -104181,7 +109245,7 @@ { "title": "Properties", "children": [ - 2462 + 2460 ] } ] @@ -104190,7 +109254,7 @@ "defaultValue": "..." }, { - "id": 2450, + "id": 2448, "name": "fields", "variant": "declaration", "kind": 1024, @@ -104214,7 +109278,7 @@ "defaultValue": "defaultStoreProductsFields" }, { - "id": 2451, + "id": 2449, "name": "images", "variant": "declaration", "kind": 1024, @@ -104222,14 +109286,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2452, + "id": 2450, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2453, + "id": 2451, "name": "fields", "variant": "declaration", "kind": 1024, @@ -104248,7 +109312,7 @@ { "title": "Properties", "children": [ - 2453 + 2451 ] } ] @@ -104257,7 +109321,7 @@ "defaultValue": "..." }, { - "id": 2463, + "id": 2461, "name": "options", "variant": "declaration", "kind": 1024, @@ -104265,14 +109329,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2464, + "id": 2462, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2465, + "id": 2463, "name": "fields", "variant": "declaration", "kind": 1024, @@ -104287,7 +109351,7 @@ "defaultValue": "..." }, { - "id": 2466, + "id": 2464, "name": "values", "variant": "declaration", "kind": 1024, @@ -104295,14 +109359,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2467, + "id": 2465, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2468, + "id": 2466, "name": "fields", "variant": "declaration", "kind": 1024, @@ -104321,7 +109385,7 @@ { "title": "Properties", "children": [ - 2468 + 2466 ] } ] @@ -104334,8 +109398,8 @@ { "title": "Properties", "children": [ - 2465, - 2466 + 2463, + 2464 ] } ] @@ -104344,7 +109408,7 @@ "defaultValue": "..." }, { - "id": 2475, + "id": 2473, "name": "profile", "variant": "declaration", "kind": 1024, @@ -104352,14 +109416,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2476, + "id": 2474, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2477, + "id": 2475, "name": "fields", "variant": "declaration", "kind": 1024, @@ -104378,7 +109442,7 @@ { "title": "Properties", "children": [ - 2477 + 2475 ] } ] @@ -104387,7 +109451,50 @@ "defaultValue": "..." }, { - "id": 2454, + "id": 2476, + "name": "sales_channels", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 2477, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2478, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2478 + ] + } + ] + } + }, + "defaultValue": "..." + }, + { + "id": 2452, "name": "tags", "variant": "declaration", "kind": 1024, @@ -104395,14 +109502,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2455, + "id": 2453, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2456, + "id": 2454, "name": "fields", "variant": "declaration", "kind": 1024, @@ -104421,7 +109528,7 @@ { "title": "Properties", "children": [ - 2456 + 2454 ] } ] @@ -104430,7 +109537,7 @@ "defaultValue": "..." }, { - "id": 2457, + "id": 2455, "name": "type", "variant": "declaration", "kind": 1024, @@ -104438,14 +109545,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2458, + "id": 2456, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2459, + "id": 2457, "name": "fields", "variant": "declaration", "kind": 1024, @@ -104464,7 +109571,7 @@ { "title": "Properties", "children": [ - 2459 + 2457 ] } ] @@ -104473,7 +109580,7 @@ "defaultValue": "..." }, { - "id": 2469, + "id": 2467, "name": "variants", "variant": "declaration", "kind": 1024, @@ -104481,14 +109588,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2470, + "id": 2468, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2471, + "id": 2469, "name": "fields", "variant": "declaration", "kind": 1024, @@ -104503,7 +109610,7 @@ "defaultValue": "..." }, { - "id": 2472, + "id": 2470, "name": "options", "variant": "declaration", "kind": 1024, @@ -104511,14 +109618,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2473, + "id": 2471, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2474, + "id": 2472, "name": "fields", "variant": "declaration", "kind": 1024, @@ -104537,7 +109644,7 @@ { "title": "Properties", "children": [ - 2474 + 2472 ] } ] @@ -104550,8 +109657,8 @@ { "title": "Properties", "children": [ - 2471, - 2472 + 2469, + 2470 ] } ] @@ -104564,14 +109671,15 @@ { "title": "Properties", "children": [ - 2460, - 2450, - 2451, - 2463, - 2475, - 2454, - 2457, - 2469 + 2458, + 2448, + 2449, + 2461, + 2473, + 2476, + 2452, + 2455, + 2467 ] } ] @@ -104580,7 +109688,7 @@ "defaultValue": "..." }, { - "id": 2408, + "id": 2406, "name": "defaultStoreProductTagFields", "variant": "declaration", "kind": 32, @@ -104597,7 +109705,7 @@ "defaultValue": "..." }, { - "id": 2410, + "id": 2408, "name": "defaultStoreProductTagRelations", "variant": "declaration", "kind": 32, @@ -104614,7 +109722,7 @@ "defaultValue": "[]" }, { - "id": 2427, + "id": 2425, "name": "defaultStoreProductTypeFields", "variant": "declaration", "kind": 32, @@ -104631,7 +109739,7 @@ "defaultValue": "..." }, { - "id": 2428, + "id": 2426, "name": "defaultStoreProductTypeRelations", "variant": "declaration", "kind": 32, @@ -104648,7 +109756,7 @@ "defaultValue": "[]" }, { - "id": 2445, + "id": 2443, "name": "defaultStoreProductsFields", "variant": "declaration", "kind": 32, @@ -104674,7 +109782,7 @@ "defaultValue": "..." }, { - "id": 2444, + "id": 2442, "name": "defaultStoreProductsRelations", "variant": "declaration", "kind": 32, @@ -104691,7 +109799,41 @@ "defaultValue": "..." }, { - "id": 2543, + "id": 2532, + "name": "defaultStoreRegionFields", + "variant": "declaration", + "kind": 32, + "flags": { + "isConst": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "defaultValue": "..." + }, + { + "id": 2531, + "name": "defaultStoreRegionRelations", + "variant": "declaration", + "kind": 32, + "flags": { + "isConst": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "defaultValue": "..." + }, + { + "id": 2554, "name": "defaultStoreReturnReasonFields", "variant": "declaration", "kind": 32, @@ -104717,7 +109859,7 @@ "defaultValue": "..." }, { - "id": 2544, + "id": 2555, "name": "defaultStoreReturnReasonRelations", "variant": "declaration", "kind": 32, @@ -104743,7 +109885,7 @@ "defaultValue": "..." }, { - "id": 2573, + "id": 2584, "name": "defaultStoreSwapFields", "variant": "declaration", "kind": 32, @@ -104758,7 +109900,7 @@ }, "objectType": { "type": "reference", - "target": 3689, + "target": 3698, "typeArguments": [ { "type": "reference", @@ -104777,7 +109919,7 @@ "defaultValue": "..." }, { - "id": 2572, + "id": 2583, "name": "defaultStoreSwapRelations", "variant": "declaration", "kind": 32, @@ -104794,7 +109936,7 @@ "defaultValue": "..." }, { - "id": 2584, + "id": 2595, "name": "defaultStoreVariantRelations", "variant": "declaration", "kind": 32, @@ -104828,7 +109970,7 @@ "defaultValue": "..." }, { - "id": 3639, + "id": 3648, "name": "joinerConfig", "variant": "declaration", "kind": 32, @@ -104839,7 +109981,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4752, + "target": 4779, "name": "ModuleJoinerConfig", "package": "@medusajs/types" } @@ -104847,21 +109989,21 @@ "defaultValue": "..." }, { - "id": 4078, + "id": 4090, "name": "DbAwareColumn", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4079, + "id": 4091, "name": "DbAwareColumn", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4080, + "id": 4092, "name": "columnOptions", "variant": "param", "kind": 32768, @@ -104890,21 +110032,21 @@ ] }, { - "id": 4147, + "id": 4174, "name": "IsType", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4148, + "id": 4175, "name": "IsType", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4149, + "id": 4176, "name": "types", "variant": "param", "kind": 32768, @@ -104918,7 +110060,7 @@ } }, { - "id": 4150, + "id": 4177, "name": "validationOptions", "variant": "param", "kind": 32768, @@ -104939,21 +110081,21 @@ "type": { "type": "reflection", "declaration": { - "id": 4151, + "id": 4178, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 4152, + "id": 4179, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4153, + "id": 4180, "name": "object", "variant": "param", "kind": 32768, @@ -104969,7 +110111,7 @@ } }, { - "id": 4154, + "id": 4181, "name": "propertyName", "variant": "param", "kind": 32768, @@ -104992,21 +110134,21 @@ ] }, { - "id": 4046, + "id": 4058, "name": "addOrderToSelect", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4047, + "id": 4059, "name": "addOrderToSelect", "variant": "signature", "kind": 4096, "flags": {}, "typeParameter": [ { - "id": 4048, + "id": 4060, "name": "TEntity", "variant": "typeParam", "kind": 131072, @@ -105015,7 +110157,7 @@ ], "parameters": [ { - "id": 4049, + "id": 4061, "name": "order", "variant": "param", "kind": 32768, @@ -105039,7 +110181,7 @@ } }, { - "id": 4050, + "id": 4062, "name": "select", "variant": "param", "kind": 32768, @@ -105171,14 +110313,14 @@ ] }, { - "id": 2616, + "id": 2627, "name": "authenticate", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2617, + "id": 2628, "name": "authenticate", "variant": "signature", "kind": 4096, @@ -105245,14 +110387,14 @@ ] }, { - "id": 2618, + "id": 2629, "name": "authenticateCustomer", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2619, + "id": 2630, "name": "authenticateCustomer", "variant": "signature", "kind": 4096, @@ -105319,14 +110461,14 @@ ] }, { - "id": 4042, + "id": 4054, "name": "buildLegacyFieldsListFrom", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4043, + "id": 4055, "name": "buildLegacyFieldsListFrom", "variant": "signature", "kind": 4096, @@ -105361,7 +110503,7 @@ }, "typeParameter": [ { - "id": 4044, + "id": 4056, "name": "TEntity", "variant": "typeParam", "kind": 131072, @@ -105370,7 +110512,7 @@ ], "parameters": [ { - "id": 4045, + "id": 4057, "name": "input", "variant": "param", "kind": 32768, @@ -105468,14 +110610,14 @@ ] }, { - "id": 4036, + "id": 4048, "name": "buildQuery", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4037, + "id": 4049, "name": "buildQuery", "variant": "signature", "kind": 4096, @@ -105501,7 +110643,7 @@ }, "typeParameter": [ { - "id": 4038, + "id": 4050, "name": "TWhereKeys", "variant": "typeParam", "kind": 131072, @@ -105512,7 +110654,7 @@ } }, { - "id": 4039, + "id": 4051, "name": "TEntity", "variant": "typeParam", "kind": 131072, @@ -105525,7 +110667,7 @@ ], "parameters": [ { - "id": 4040, + "id": 4052, "name": "selector", "variant": "param", "kind": 32768, @@ -105546,7 +110688,7 @@ } }, { - "id": 4041, + "id": 4053, "name": "config", "variant": "param", "kind": 32768, @@ -105561,7 +110703,7 @@ }, "type": { "type": "reference", - "target": 3689, + "target": 3698, "typeArguments": [ { "type": "reference", @@ -105578,7 +110720,7 @@ ], "type": { "type": "reference", - "target": 3699, + "target": 3708, "typeArguments": [ { "type": "reference", @@ -105594,14 +110736,14 @@ ] }, { - "id": 4054, + "id": 4066, "name": "calculatePriceTaxAmount", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4055, + "id": 4067, "name": "calculatePriceTaxAmount", "variant": "signature", "kind": 4096, @@ -105616,7 +110758,7 @@ }, "parameters": [ { - "id": 4056, + "id": 4068, "name": "__namedParameters", "variant": "param", "kind": 32768, @@ -105624,14 +110766,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4057, + "id": 4069, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4059, + "id": 4071, "name": "includesTax", "variant": "declaration", "kind": 1024, @@ -105644,7 +110786,7 @@ } }, { - "id": 4058, + "id": 4070, "name": "price", "variant": "declaration", "kind": 1024, @@ -105655,7 +110797,7 @@ } }, { - "id": 4060, + "id": 4072, "name": "taxRate", "variant": "declaration", "kind": 1024, @@ -105670,9 +110812,9 @@ { "title": "Properties", "children": [ - 4059, - 4058, - 4060 + 4071, + 4070, + 4072 ] } ] @@ -105688,21 +110830,21 @@ ] }, { - "id": 2631, + "id": 2642, "name": "canAccessBatchJob", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2632, + "id": 2643, "name": "canAccessBatchJob", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2633, + "id": 2644, "name": "req", "variant": "param", "kind": 32768, @@ -105713,7 +110855,7 @@ } }, { - "id": 2634, + "id": 2645, "name": "res", "variant": "param", "kind": 32768, @@ -105724,7 +110866,7 @@ } }, { - "id": 2635, + "id": 2646, "name": "next", "variant": "param", "kind": 32768, @@ -105754,21 +110896,21 @@ ] }, { - "id": 4113, + "id": 4125, "name": "categoryMatchesScope", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4114, + "id": 4126, "name": "categoryMatchesScope", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4115, + "id": 4127, "name": "category", "variant": "param", "kind": 32768, @@ -105792,7 +110934,7 @@ } }, { - "id": 4116, + "id": 4128, "name": "query", "variant": "param", "kind": 32768, @@ -105827,14 +110969,14 @@ ] }, { - "id": 4061, + "id": 4073, "name": "cleanResponseData", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4062, + "id": 4074, "name": "cleanResponseData", "variant": "signature", "kind": 4096, @@ -105857,7 +110999,7 @@ }, "typeParameter": [ { - "id": 4063, + "id": 4075, "name": "T", "variant": "typeParam", "kind": 131072, @@ -105870,7 +111012,7 @@ ], "parameters": [ { - "id": 4064, + "id": 4076, "name": "data", "variant": "param", "kind": 32768, @@ -105891,7 +111033,7 @@ } }, { - "id": 4065, + "id": 4077, "name": "fields", "variant": "param", "kind": 32768, @@ -105966,21 +111108,21 @@ ] }, { - "id": 4066, + "id": 4078, "name": "csvCellContentFormatter", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4067, + "id": 4079, "name": "csvCellContentFormatter", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4068, + "id": 4080, "name": "str", "variant": "param", "kind": 32768, @@ -105999,21 +111141,21 @@ ] }, { - "id": 4069, + "id": 4081, "name": "csvRevertCellContentFormatter", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4070, + "id": 4082, "name": "csvRevertCellContentFormatter", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4071, + "id": 4083, "name": "str", "variant": "param", "kind": 32768, @@ -106032,21 +111174,21 @@ ] }, { - "id": 2641, + "id": 2652, "name": "doesConditionBelongToDiscount", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2642, + "id": 2653, "name": "doesConditionBelongToDiscount", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2643, + "id": 2654, "name": "req", "variant": "param", "kind": 32768, @@ -106057,7 +111199,7 @@ } }, { - "id": 2644, + "id": 2655, "name": "res", "variant": "param", "kind": 32768, @@ -106068,7 +111210,7 @@ } }, { - "id": 2645, + "id": 2656, "name": "next", "variant": "param", "kind": 32768, @@ -106098,14 +111240,14 @@ ] }, { - "id": 2620, + "id": 2631, "name": "errorHandler", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2621, + "id": 2632, "name": "errorHandler", "variant": "signature", "kind": 4096, @@ -106113,34 +111255,34 @@ "type": { "type": "reflection", "declaration": { - "id": 2622, + "id": 2633, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2623, + "id": 2634, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2624, + "id": 2635, "name": "err", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 4640, + "target": 4667, "name": "MedusaError", "package": "medusa-core-utils" } }, { - "id": 2625, + "id": 2636, "name": "req", "variant": "param", "kind": 32768, @@ -106205,7 +111347,7 @@ } }, { - "id": 2626, + "id": 2637, "name": "res", "variant": "param", "kind": 32768, @@ -106247,7 +111389,7 @@ } }, { - "id": 2627, + "id": 2638, "name": "next", "variant": "param", "kind": 32768, @@ -106276,21 +111418,21 @@ ] }, { - "id": 3675, + "id": 3684, "name": "extendedFindParamsMixin", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 3676, + "id": 3685, "name": "extendedFindParamsMixin", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3677, + "id": 3686, "name": "__namedParameters", "variant": "param", "kind": 32768, @@ -106298,14 +111440,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3678, + "id": 3687, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3679, + "id": 3688, "name": "limit", "variant": "declaration", "kind": 1024, @@ -106318,7 +111460,7 @@ } }, { - "id": 3680, + "id": 3689, "name": "offset", "variant": "declaration", "kind": 1024, @@ -106335,8 +111477,8 @@ { "title": "Properties", "children": [ - 3679, - 3680 + 3688, + 3689 ] } ] @@ -106347,20 +111489,20 @@ ], "type": { "type": "reference", - "target": 3819, + "target": 3828, "typeArguments": [ { "type": "intersection", "types": [ { "type": "reference", - "target": 3805, + "target": 3814, "name": "FindParams", "package": "@medusajs/medusa" }, { "type": "reference", - "target": 3810, + "target": 3819, "name": "FindPaginationParams", "package": "@medusajs/medusa" } @@ -106374,21 +111516,21 @@ ] }, { - "id": 4117, + "id": 4129, "name": "fetchCategoryDescendantsIds", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4118, + "id": 4130, "name": "fetchCategoryDescendantsIds", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4119, + "id": 4131, "name": "productCategory", "variant": "param", "kind": 32768, @@ -106412,7 +111554,7 @@ } }, { - "id": 4120, + "id": 4132, "name": "query", "variant": "param", "kind": 32768, @@ -106450,21 +111592,21 @@ ] }, { - "id": 4086, + "id": 4098, "name": "formatException", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4087, + "id": 4099, "name": "formatException", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4088, + "id": 4100, "name": "err", "variant": "param", "kind": 32768, @@ -106477,7 +111619,7 @@ ], "type": { "type": "reference", - "target": 4640, + "target": 4667, "name": "MedusaError", "package": "medusa-core-utils" } @@ -106485,14 +111627,14 @@ ] }, { - "id": 4089, + "id": 4101, "name": "generateEntityId", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4090, + "id": 4102, "name": "generateEntityId", "variant": "signature", "kind": 4096, @@ -106507,18 +111649,20 @@ }, "parameters": [ { - "id": 4091, + "id": 4103, "name": "idProperty", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 4092, + "id": 4104, "name": "prefix", "variant": "param", "kind": 32768, @@ -106539,87 +111683,21 @@ ] }, { - "id": 1393, - "name": "getProductWithIsolatedProductModule", - "variant": "declaration", - "kind": 64, - "flags": {}, - "signatures": [ - { - "id": 1394, - "name": "getProductWithIsolatedProductModule", - "variant": "signature", - "kind": 4096, - "flags": {}, - "parameters": [ - { - "id": 1395, - "name": "req", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - }, - { - "id": 1396, - "name": "id", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - }, - { - "id": 1397, - "name": "retrieveConfig", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 2636, + "id": 2647, "name": "getRequestedBatchJob", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2637, + "id": 2648, "name": "getRequestedBatchJob", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2638, + "id": 2649, "name": "req", "variant": "param", "kind": 32768, @@ -106630,7 +111708,7 @@ } }, { - "id": 2639, + "id": 2650, "name": "res", "variant": "param", "kind": 32768, @@ -106641,7 +111719,7 @@ } }, { - "id": 2640, + "id": 2651, "name": "next", "variant": "param", "kind": 32768, @@ -106671,14 +111749,76 @@ ] }, { - "id": 4093, + "id": 4133, + "name": "getVariantsFromPriceList", + "variant": "declaration", + "kind": 64, + "flags": {}, + "signatures": [ + { + "id": 4134, + "name": "getVariantsFromPriceList", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 4135, + "name": "container", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 4732, + "name": "MedusaContainer", + "package": "@medusajs/types" + } + }, + { + "id": 4136, + "name": "priceListId", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 4835, + "name": "ProductVariantDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 4105, "name": "hasChanges", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4094, + "id": 4106, "name": "hasChanges", "variant": "signature", "kind": 4096, @@ -106693,7 +111833,7 @@ }, "typeParameter": [ { - "id": 4095, + "id": 4107, "name": "T1", "variant": "typeParam", "kind": 131072, @@ -106709,7 +111849,7 @@ } }, { - "id": 4096, + "id": 4108, "name": "T2", "variant": "typeParam", "kind": 131072, @@ -106727,7 +111867,7 @@ ], "parameters": [ { - "id": 4097, + "id": 4109, "name": "obj1", "variant": "param", "kind": 32768, @@ -106740,7 +111880,7 @@ } }, { - "id": 4098, + "id": 4110, "name": "obj2", "variant": "param", "kind": 32768, @@ -106761,21 +111901,21 @@ ] }, { - "id": 2698, + "id": 2709, "name": "isBatchJobStrategy", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2699, + "id": 2710, "name": "isBatchJobStrategy", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2700, + "id": 2711, "name": "object", "variant": "param", "kind": 32768, @@ -106792,7 +111932,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2701, + "target": 2712, "name": "IBatchJobStrategy", "package": "@medusajs/medusa" } @@ -106801,21 +111941,21 @@ ] }, { - "id": 2807, + "id": 2818, "name": "isCartCompletionStrategy", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2808, + "id": 2819, "name": "isCartCompletionStrategy", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2809, + "id": 2820, "name": "obj", "variant": "param", "kind": 32768, @@ -106834,21 +111974,21 @@ ] }, { - "id": 4099, + "id": 4111, "name": "isDate", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4100, + "id": 4112, "name": "isDate", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4101, + "id": 4113, "name": "value", "variant": "param", "kind": 32768, @@ -106877,21 +112017,21 @@ ] }, { - "id": 2967, + "id": 2978, "name": "isFileService", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2968, + "id": 2979, "name": "isFileService", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2969, + "id": 2980, "name": "object", "variant": "param", "kind": 32768, @@ -106910,21 +112050,21 @@ ] }, { - "id": 3161, + "id": 3172, "name": "isNotificationService", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 3162, + "id": 3173, "name": "isNotificationService", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3163, + "id": 3174, "name": "obj", "variant": "param", "kind": 32768, @@ -106943,21 +112083,21 @@ ] }, { - "id": 4102, + "id": 4114, "name": "isObject", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4103, + "id": 4115, "name": "isObject", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4104, + "id": 4116, "name": "obj", "variant": "param", "kind": 32768, @@ -106981,14 +112121,14 @@ ] }, { - "id": 3164, + "id": 3175, "name": "isPaymentProcessor", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 3165, + "id": 3176, "name": "isPaymentProcessor", "variant": "signature", "kind": 4096, @@ -107003,7 +112143,7 @@ }, "parameters": [ { - "id": 3166, + "id": 3177, "name": "obj", "variant": "param", "kind": 32768, @@ -107022,14 +112162,14 @@ ] }, { - "id": 3167, + "id": 3178, "name": "isPaymentProcessorError", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 3168, + "id": 3179, "name": "isPaymentProcessorError", "variant": "signature", "kind": 4096, @@ -107044,7 +112184,7 @@ }, "parameters": [ { - "id": 3169, + "id": 3180, "name": "obj", "variant": "param", "kind": 32768, @@ -107061,7 +112201,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 3186, + "target": 3195, "name": "PaymentProcessorError", "package": "@medusajs/medusa" } @@ -107070,14 +112210,14 @@ ] }, { - "id": 3275, + "id": 3284, "name": "isPaymentService", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 3276, + "id": 3285, "name": "isPaymentService", "variant": "signature", "kind": 4096, @@ -107092,7 +112232,7 @@ }, "parameters": [ { - "id": 3277, + "id": 3286, "name": "obj", "variant": "param", "kind": 32768, @@ -107111,21 +112251,21 @@ ] }, { - "id": 3471, + "id": 3480, "name": "isPriceSelectionStrategy", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 3472, + "id": 3481, "name": "isPriceSelectionStrategy", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3473, + "id": 3482, "name": "object", "variant": "param", "kind": 32768, @@ -107142,7 +112282,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 3474, + "target": 3483, "name": "IPriceSelectionStrategy", "package": "@medusajs/medusa" } @@ -107151,21 +112291,21 @@ ] }, { - "id": 4105, + "id": 4117, "name": "isString", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4106, + "id": 4118, "name": "isString", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4107, + "id": 4119, "name": "val", "variant": "param", "kind": 32768, @@ -107189,21 +112329,21 @@ ] }, { - "id": 3560, + "id": 3569, "name": "isTaxCalculationStrategy", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 3561, + "id": 3570, "name": "isTaxCalculationStrategy", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3562, + "id": 3571, "name": "object", "variant": "param", "kind": 32768, @@ -107220,7 +112360,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 3563, + "target": 3572, "name": "ITaxCalculationStrategy", "package": "@medusajs/medusa" } @@ -107229,32 +112369,34 @@ ] }, { - "id": 1403, - "name": "listAndCountProductWithIsolatedProductModule", + "id": 4137, + "name": "listProducts", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 1404, - "name": "listAndCountProductWithIsolatedProductModule", + "id": 4138, + "name": "listProducts", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1405, - "name": "req", + "id": 4139, + "name": "container", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "intrinsic", - "name": "any" + "type": "reference", + "target": 4732, + "name": "MedusaContainer", + "package": "@medusajs/types" } }, { - "id": 1406, + "id": 4140, "name": "filterableFields", "variant": "param", "kind": 32768, @@ -107265,7 +112407,7 @@ } }, { - "id": 1407, + "id": 4141, "name": "listConfig", "variant": "param", "kind": 32768, @@ -107298,14 +112440,14 @@ ] }, { - "id": 2646, + "id": 2657, "name": "normalizeQuery", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2647, + "id": 2658, "name": "normalizeQuery", "variant": "signature", "kind": 4096, @@ -107321,21 +112463,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2648, + "id": 2659, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2649, + "id": 2660, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2650, + "id": 2661, "name": "req", "variant": "param", "kind": 32768, @@ -107400,7 +112542,7 @@ } }, { - "id": 2651, + "id": 2662, "name": "res", "variant": "param", "kind": 32768, @@ -107442,7 +112584,7 @@ } }, { - "id": 2652, + "id": 2663, "name": "next", "variant": "param", "kind": 32768, @@ -107471,21 +112613,21 @@ ] }, { - "id": 4051, + "id": 4063, "name": "nullableValue", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4052, + "id": 4064, "name": "nullableValue", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4053, + "id": 4065, "name": "value", "variant": "param", "kind": 32768, @@ -107515,21 +112657,21 @@ ] }, { - "id": 4108, + "id": 4120, "name": "omitDeep", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4109, + "id": 4121, "name": "omitDeep", "variant": "signature", "kind": 4096, "flags": {}, "typeParameter": [ { - "id": 4110, + "id": 4122, "name": "T", "variant": "typeParam", "kind": 131072, @@ -107546,7 +112688,7 @@ ], "parameters": [ { - "id": 4111, + "id": 4123, "name": "input", "variant": "param", "kind": 32768, @@ -107557,7 +112699,7 @@ } }, { - "id": 4112, + "id": 4124, "name": "excludes", "variant": "param", "kind": 32768, @@ -107590,14 +112732,14 @@ ] }, { - "id": 4026, + "id": 4038, "name": "registerOverriddenValidators", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4027, + "id": 4039, "name": "registerOverriddenValidators", "variant": "signature", "kind": 4096, @@ -107623,14 +112765,14 @@ }, "parameters": [ { - "id": 4028, + "id": 4040, "name": "extendedValidator", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 4801, + "target": 4830, "typeArguments": [ { "type": "intrinsic", @@ -107650,28 +112792,28 @@ ] }, { - "id": 4121, + "id": 4148, "name": "remoteQueryFetchData", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4122, + "id": 4149, "name": "remoteQueryFetchData", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4123, + "id": 4150, "name": "container", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 4705, + "target": 4732, "name": "MedusaContainer", "package": "@medusajs/types" } @@ -107680,21 +112822,21 @@ "type": { "type": "reflection", "declaration": { - "id": 4124, + "id": 4151, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 4125, + "id": 4152, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4126, + "id": 4153, "name": "expand", "variant": "param", "kind": 32768, @@ -107705,7 +112847,7 @@ } }, { - "id": 4127, + "id": 4154, "name": "keyField", "variant": "param", "kind": 32768, @@ -107716,7 +112858,7 @@ } }, { - "id": 4128, + "id": 4155, "name": "ids", "variant": "param", "kind": 32768, @@ -107727,7 +112869,7 @@ } }, { - "id": 4129, + "id": 4156, "name": "relationship", "variant": "param", "kind": 32768, @@ -107761,21 +112903,21 @@ ] }, { - "id": 4130, + "id": 4157, "name": "removeUndefinedProperties", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4131, + "id": 4158, "name": "removeUndefinedProperties", "variant": "signature", "kind": 4096, "flags": {}, "typeParameter": [ { - "id": 4132, + "id": 4159, "name": "T", "variant": "typeParam", "kind": 131072, @@ -107788,7 +112930,7 @@ ], "parameters": [ { - "id": 4133, + "id": 4160, "name": "inputObj", "variant": "param", "kind": 32768, @@ -107811,14 +112953,14 @@ ] }, { - "id": 2653, + "id": 2664, "name": "requireCustomerAuthentication", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2654, + "id": 2665, "name": "requireCustomerAuthentication", "variant": "signature", "kind": 4096, @@ -107999,21 +113141,21 @@ ] }, { - "id": 4075, + "id": 4087, "name": "resolveDbGenerationStrategy", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4076, + "id": 4088, "name": "resolveDbGenerationStrategy", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4077, + "id": 4089, "name": "pgSqlType", "variant": "param", "kind": 32768, @@ -108058,21 +113200,21 @@ ] }, { - "id": 4072, + "id": 4084, "name": "resolveDbType", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4073, + "id": 4085, "name": "resolveDbType", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4074, + "id": 4086, "name": "pgSqlType", "variant": "param", "kind": 32768, @@ -108101,14 +113243,87 @@ ] }, { - "id": 4134, + "id": 4142, + "name": "retrieveProduct", + "variant": "declaration", + "kind": 64, + "flags": {}, + "signatures": [ + { + "id": 4143, + "name": "retrieveProduct", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 4144, + "name": "container", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 4145, + "name": "id", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 4146, + "name": "remoteQueryObject", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 4147, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 4161, "name": "setMetadata", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4135, + "id": 4162, "name": "setMetadata", "variant": "signature", "kind": 4096, @@ -108134,7 +113349,7 @@ }, "parameters": [ { - "id": 4136, + "id": 4163, "name": "obj", "variant": "param", "kind": 32768, @@ -108161,14 +113376,14 @@ { "type": "reflection", "declaration": { - "id": 4137, + "id": 4164, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4138, + "id": 4165, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -108207,7 +113422,7 @@ { "title": "Properties", "children": [ - 4138 + 4165 ] } ] @@ -108217,7 +113432,7 @@ } }, { - "id": 4139, + "id": 4166, "name": "metadata", "variant": "param", "kind": 32768, @@ -108274,21 +113489,21 @@ ] }, { - "id": 2655, + "id": 2666, "name": "transformBody", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2656, + "id": 2667, "name": "transformBody", "variant": "signature", "kind": 4096, "flags": {}, "typeParameter": [ { - "id": 2657, + "id": 2668, "name": "T", "variant": "typeParam", "kind": 131072, @@ -108297,14 +113512,14 @@ ], "parameters": [ { - "id": 2658, + "id": 2669, "name": "plainToClass", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3819, + "target": 3828, "typeArguments": [ { "type": "reference", @@ -108318,7 +113533,7 @@ } }, { - "id": 2659, + "id": 2670, "name": "config", "variant": "param", "kind": 32768, @@ -108338,21 +113553,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2660, + "id": 2671, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2661, + "id": 2672, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2662, + "id": 2673, "name": "req", "variant": "param", "kind": 32768, @@ -108369,7 +113584,7 @@ } }, { - "id": 2663, + "id": 2674, "name": "res", "variant": "param", "kind": 32768, @@ -108386,7 +113601,7 @@ } }, { - "id": 2664, + "id": 2675, "name": "next", "variant": "param", "kind": 32768, @@ -108426,14 +113641,14 @@ ] }, { - "id": 2665, + "id": 2676, "name": "transformIncludesOptions", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2666, + "id": 2677, "name": "transformIncludesOptions", "variant": "signature", "kind": 4096, @@ -108448,7 +113663,7 @@ }, "parameters": [ { - "id": 2667, + "id": 2678, "name": "allowedIncludes", "variant": "param", "kind": 32768, @@ -108471,7 +113686,7 @@ "defaultValue": "[]" }, { - "id": 2668, + "id": 2679, "name": "expectedIncludes", "variant": "param", "kind": 32768, @@ -108501,21 +113716,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2669, + "id": 2680, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2670, + "id": 2681, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2671, + "id": 2682, "name": "req", "variant": "param", "kind": 32768, @@ -108580,7 +113795,7 @@ } }, { - "id": 2672, + "id": 2683, "name": "res", "variant": "param", "kind": 32768, @@ -108622,7 +113837,7 @@ } }, { - "id": 2673, + "id": 2684, "name": "next", "variant": "param", "kind": 32768, @@ -108651,14 +113866,14 @@ ] }, { - "id": 2674, + "id": 2685, "name": "transformQuery", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2675, + "id": 2686, "name": "transformQuery", "variant": "signature", "kind": 4096, @@ -108673,20 +113888,20 @@ }, "typeParameter": [ { - "id": 2676, + "id": 2687, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 3736, + "target": 3745, "name": "RequestQueryFields", "package": "@medusajs/medusa" } }, { - "id": 2677, + "id": 2688, "name": "TEntity", "variant": "typeParam", "kind": 131072, @@ -108704,14 +113919,14 @@ ], "parameters": [ { - "id": 2678, + "id": 2689, "name": "plainToClass", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3819, + "target": 3828, "typeArguments": [ { "type": "reference", @@ -108725,7 +113940,7 @@ } }, { - "id": 2679, + "id": 2690, "name": "queryConfig", "variant": "param", "kind": 32768, @@ -108741,7 +113956,7 @@ "typeArguments": [ { "type": "reference", - "target": 3727, + "target": 3736, "typeArguments": [ { "type": "reference", @@ -108772,7 +113987,7 @@ } }, { - "id": 2680, + "id": 2691, "name": "config", "variant": "param", "kind": 32768, @@ -108792,21 +114007,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2681, + "id": 2692, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2682, + "id": 2693, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2683, + "id": 2694, "name": "req", "variant": "param", "kind": 32768, @@ -108823,7 +114038,7 @@ } }, { - "id": 2684, + "id": 2695, "name": "res", "variant": "param", "kind": 32768, @@ -108840,7 +114055,7 @@ } }, { - "id": 2685, + "id": 2696, "name": "next", "variant": "param", "kind": 32768, @@ -108880,14 +114095,14 @@ ] }, { - "id": 2686, + "id": 2697, "name": "transformStoreQuery", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2687, + "id": 2698, "name": "transformStoreQuery", "variant": "signature", "kind": 4096, @@ -108902,20 +114117,20 @@ }, "typeParameter": [ { - "id": 2688, + "id": 2699, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 3736, + "target": 3745, "name": "RequestQueryFields", "package": "@medusajs/medusa" } }, { - "id": 2689, + "id": 2700, "name": "TEntity", "variant": "typeParam", "kind": 131072, @@ -108933,14 +114148,14 @@ ], "parameters": [ { - "id": 2690, + "id": 2701, "name": "plainToClass", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3819, + "target": 3828, "typeArguments": [ { "type": "reference", @@ -108954,7 +114169,7 @@ } }, { - "id": 2691, + "id": 2702, "name": "queryConfig", "variant": "param", "kind": 32768, @@ -108963,7 +114178,7 @@ }, "type": { "type": "reference", - "target": 3727, + "target": 3736, "typeArguments": [ { "type": "reference", @@ -108977,7 +114192,7 @@ } }, { - "id": 2692, + "id": 2703, "name": "config", "variant": "param", "kind": 32768, @@ -108997,21 +114212,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2693, + "id": 2704, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2694, + "id": 2705, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2695, + "id": 2706, "name": "req", "variant": "param", "kind": 32768, @@ -109028,7 +114243,7 @@ } }, { - "id": 2696, + "id": 2707, "name": "res", "variant": "param", "kind": 32768, @@ -109045,7 +114260,7 @@ } }, { - "id": 2697, + "id": 2708, "name": "next", "variant": "param", "kind": 32768, @@ -109118,21 +114333,21 @@ ] }, { - "id": 2032, + "id": 2030, "name": "unauthenticatedUserRoutes", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2033, + "id": 2031, "name": "unauthenticatedUserRoutes", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2034, + "id": 2032, "name": "app", "variant": "param", "kind": 32768, @@ -109258,21 +114473,21 @@ ] }, { - "id": 4140, + "id": 4167, "name": "validateId", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4141, + "id": 4168, "name": "validateId", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4142, + "id": 4169, "name": "rawId", "variant": "param", "kind": 32768, @@ -109283,7 +114498,7 @@ } }, { - "id": 4143, + "id": 4170, "name": "config", "variant": "param", "kind": 32768, @@ -109291,14 +114506,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4144, + "id": 4171, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4146, + "id": 4173, "name": "length", "variant": "declaration", "kind": 1024, @@ -109311,7 +114526,7 @@ } }, { - "id": 4145, + "id": 4172, "name": "prefix", "variant": "declaration", "kind": 1024, @@ -109328,8 +114543,8 @@ { "title": "Properties", "children": [ - 4146, - 4145 + 4173, + 4172 ] } ] @@ -109346,28 +114561,28 @@ ] }, { - "id": 4029, + "id": 4041, "name": "validator", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 4030, + "id": 4042, "name": "validator", "variant": "signature", "kind": 4096, "flags": {}, "typeParameter": [ { - "id": 4031, + "id": 4043, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 4032, + "id": 4044, "name": "V", "variant": "typeParam", "kind": 131072, @@ -109376,7 +114591,7 @@ ], "parameters": [ { - "id": 4033, + "id": 4045, "name": "typedClass", "variant": "param", "kind": 32768, @@ -109400,7 +114615,7 @@ } }, { - "id": 4034, + "id": 4046, "name": "plain", "variant": "param", "kind": 32768, @@ -109413,7 +114628,7 @@ } }, { - "id": 4035, + "id": 4047, "name": "config", "variant": "param", "kind": 32768, @@ -109451,14 +114666,14 @@ ] }, { - "id": 2628, + "id": 2639, "name": "wrapHandler", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 2629, + "id": 2640, "name": "wrapHandler", "variant": "signature", "kind": 4096, @@ -109483,14 +114698,14 @@ }, "parameters": [ { - "id": 2630, + "id": 2641, "name": "fn", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 4667, + "target": 4694, "name": "handler", "package": "@medusajs/medusa" } @@ -109562,68 +114777,69 @@ { "title": "Namespaces", "children": [ - 4732 + 4759 ] }, { "title": "Enumerations", "children": [ - 3640, - 4743, - 4981, - 4081, - 3906, - 4363, - 3903, - 4366 + 3649, + 4770, + 5073, + 4093, + 3915, + 4390, + 3912, + 4393, + 5097 ] }, { "title": "Enumeration Members", "children": [ - 4742, - 4996, - 4980 + 4769, + 5088, + 5072 ] }, { "title": "Classes", "children": [ - 2745, - 2820, - 2912, - 3016, - 3111, - 3229, - 3384, - 3488, - 3591, - 4264, - 4293, - 4635, - 3791, - 3777, + 2756, + 2831, + 2923, + 3027, + 3122, + 3238, + 3393, + 3497, + 3600, + 4291, + 4320, + 4662, + 3800, + 3786, 264, - 2057, + 2055, 150, 375, 380, 284, - 1093, - 1097, - 1225, - 1221, + 1099, + 1103, + 1231, + 1227, 105, - 1512, - 1722, - 1752, - 1932, - 1928, - 1941, - 1937, - 1950, - 1946, - 2024, + 1511, + 1719, + 1749, + 1930, + 1926, + 1939, + 1935, + 1948, + 1944, + 2022, 39, 47, 88, @@ -109635,7 +114851,7 @@ 294, 299, 289, - 4186, + 4213, 304, 422, 470, @@ -109647,32 +114863,31 @@ 906, 911, 1006, - 1123, - 1101, - 1167, - 1162, - 1398, - 1235, - 1240, - 1257, - 1408, - 1434, - 1584, - 1589, - 1556, - 1682, - 1649, - 1726, - 1779, - 1838, - 1843, - 1898, - 1912, - 1923, - 2096, - 2081, - 4168, - 4303, + 1129, + 1107, + 1173, + 1168, + 1402, + 1241, + 1246, + 1263, + 1407, + 1433, + 1583, + 1555, + 1679, + 1646, + 1723, + 1776, + 1836, + 1841, + 1896, + 1910, + 1921, + 2094, + 2079, + 4195, + 4330, 10, 5, 21, @@ -109759,206 +114974,218 @@ 873, 784, 1028, - 1076, - 1140, - 1081, - 1207, - 1216, - 1212, - 1196, - 1191, - 1181, - 1441, - 1446, - 1339, - 1450, - 1371, - 1476, - 1343, + 1082, + 1146, + 1087, + 1213, + 1222, + 1218, + 1202, + 1197, + 1187, + 1440, + 1445, + 1348, + 1449, + 1380, + 1475, + 1352, 78, - 1508, - 1538, - 1534, - 1560, - 1564, - 1568, - 1597, - 1572, - 1673, - 1697, - 1629, - 1621, - 1654, - 1712, - 1748, - 1716, - 1742, - 1785, - 1764, - 1809, - 1803, - 1862, - 1855, - 1833, - 1826, - 1880, - 1992, - 1982, - 2007, - 1959, - 1955, - 1968, - 1964, - 1997, - 1977, - 1973, - 2028, - 3932, - 3922, - 4591, - 4377, - 2047, - 2053, + 1507, + 1537, + 1533, + 1559, + 1563, + 1567, + 1594, + 1571, + 1670, + 1694, + 1626, + 1618, + 1651, + 1709, + 1745, + 1713, + 1739, + 1782, + 1761, + 1807, + 1801, + 1860, + 1853, + 1831, + 1824, + 1878, + 1990, + 1980, + 2005, + 1957, + 1953, + 1966, + 1962, + 1995, + 1975, + 1971, + 2026, + 3941, + 3931, + 4618, + 4404, + 2045, + 2051, 341, 1011, - 2065, + 2063, 349, - 4178, - 4298, - 4369, - 4373, - 4155, - 3753, - 4199, - 4209, - 4604, - 3750, - 3665, - 4159, - 3909, - 4449, - 3810, - 3805, - 1551, + 4205, + 4325, + 4396, + 4400, + 4182, + 3762, + 4226, + 4236, + 4631, + 3759, + 3674, + 4186, + 3918, + 4476, + 3819, + 3814, + 1550, 699, 704, 1023, - 1525, - 1516, - 4600, - 4174, - 2019, - 4806, - 2153, - 4191, - 4250, - 4276, - 4334, - 4511, - 4616, - 4628, - 4640, - 3770, - 4529, + 1524, + 1515, + 4627, + 4201, + 2017, + 4861, + 2151, + 4218, + 4277, + 4303, + 4361, + 4538, + 4643, + 4655, + 4667, + 3779, + 4556, + 4561, + 4349, + 4377, + 4635, + 4412, 4534, - 4322, - 4350, - 4608, - 4385, - 4507, - 4410, - 4406, - 4402, - 4397, - 4392, - 4444, - 4502, - 4816, - 4820, - 4436, - 4493, - 4414, - 4470, - 4281, - 4259, - 4288, - 4329, - 4623, - 2332, - 4203, - 4269, - 4343, - 4355, - 4558, - 4569, - 2206, - 2245, - 2252, - 2336, - 2359, - 2391, - 2396, - 2414, - 2432, - 2487, - 2498, - 2536, - 2566, - 2601, - 2592, - 2374, - 2128, - 2158, - 2189, - 2166, - 2172, - 2194, - 2176, - 2148, - 2328, - 2283, - 2233, - 2344, - 2279, - 2297, - 2237, - 2273, - 2317, - 2355, - 2370, - 2364, - 2554, - 2523, + 4437, + 4433, + 4429, + 4424, + 4419, + 4471, + 4529, + 4871, + 4875, + 4463, + 4520, + 4441, + 4497, + 4308, + 4286, + 4315, + 4356, + 4650, + 2330, + 4230, + 4296, + 4370, + 4382, + 4585, + 4596, + 2204, + 2243, + 2250, + 2334, + 2357, + 2389, + 2394, + 2412, + 2430, + 2488, + 2499, + 2544, + 2539, 2577, - 3760, - 4811, - 3602 + 2612, + 2603, + 2372, + 2126, + 2156, + 2187, + 2164, + 2170, + 2192, + 2174, + 2146, + 2326, + 2281, + 2231, + 2342, + 2277, + 2295, + 2235, + 2271, + 2315, + 2353, + 2368, + 2362, + 2565, + 2524, + 2588, + 3769, + 4866, + 3611 ] }, { "title": "Interfaces", "children": [ - 3719, - 3746, - 3689, - 2970, - 2701, - 2814, - 2862, - 3069, - 3474, - 3563, - 3585, - 4733, - 4880, - 4953, - 3984, - 3742, + 3728, + 3755, + 3698, + 2981, + 2712, + 2825, + 2873, + 3080, + 3483, + 3572, + 3594, + 4760, + 4935, + 5045, + 3993, + 3751, + 3199, + 3181, + 3195, 3190, - 3186, - 3302, - 3736, - 4799 + 3311, + 5109, + 5102, + 5004, + 5131, + 5090, + 4997, + 5126, + 5121, + 4835, + 3745, + 4828 ] }, { @@ -109981,9 +115208,9 @@ 180, 177, 70, - 1796, - 2015, - 2041, + 1794, + 2013, + 2039, 223, 219, 222, @@ -109992,8 +115219,8 @@ 396, 397, 393, - 1868, - 2116, + 1866, + 2114, 458, 459, 455, @@ -110017,236 +115244,235 @@ 726, 1001, 998, - 1877, + 1875, 1017, 390, - 1062, - 1067, - 1069, 1068, - 1059, - 1070, 1073, - 1158, - 1155, - 1159, - 1232, - 1254, - 1305, - 1317, - 1311, - 1322, + 1075, + 1074, + 1065, + 1076, + 1079, + 1164, + 1161, + 1165, + 1238, + 1260, + 1314, + 1326, + 1320, 1331, - 1328, - 1325, - 1336, + 1340, + 1337, + 1334, + 1345, + 1503, + 1500, 1504, - 1501, - 1505, - 1498, + 1497, 1020, - 1550, - 1547, - 1544, - 1672, - 1667, - 1660, - 1620, + 1549, + 1546, + 1543, + 1669, + 1664, + 1657, 1617, 1614, + 1611, + 1637, 1640, 1643, - 1646, - 1708, - 1707, - 1709, + 1705, 1704, - 1763, - 1757, + 1706, + 1701, 1760, - 1800, - 1797, - 1819, - 1823, - 1820, - 1871, - 1892, - 1895, - 1874, - 1905, - 1906, - 1909, - 2016, - 2012, - 2035, - 2038, - 2075, - 2078, - 3674, - 3654, - 3660, - 3648, - 2810, - 3819, - 3888, - 4779, - 3883, - 4801, - 3649, - 3941, - 4704, - 3278, + 1754, + 1757, + 1798, + 1795, + 1817, + 1821, + 1818, + 1869, + 1890, + 1893, + 1872, + 1903, + 1904, + 1907, + 2014, + 2010, + 2033, + 2036, + 2073, + 2076, + 3683, + 3663, + 3669, + 3657, + 2821, + 3828, + 3897, + 4808, + 3892, + 4830, + 3658, + 3950, + 4731, + 3287, 494, - 4675, - 4550, - 4862, - 3699, - 3815, - 1663, - 4580, - 4929, - 4840, - 4687, - 4586, 4702, - 4695, - 4858, - 4974, - 4919, - 4213, - 4233, - 3573, - 4956, - 2101, - 4744, - 3825, - 3824, - 4705, - 4721, - 4792, - 3996, - 3997, - 3995, - 3889, - 3893, - 4788, - 3899, - 4984, - 4752, - 4894, - 4844, - 4942, - 4245, - 4789, - 3684, - 3281, - 3279, - 3170, - 3180, - 3280, - 3296, - 3977, - 3969, - 3960, - 3536, - 3552, - 3551, - 4389, - 4627, - 4590, - 4845, - 4898, - 4866, - 4873, - 4751, - 3727, + 4577, + 4917, 3708, - 4672, - 4516, - 2104, - 4716, - 4941, + 3824, + 1660, + 4607, + 4984, + 4895, + 4714, + 4613, + 4729, + 4722, + 4913, + 5066, + 4806, + 4974, + 4240, + 4260, + 3582, + 5048, + 2099, + 4771, + 3834, + 3833, + 4732, + 4748, + 4821, + 4008, 4009, - 4003, - 3716, - 4966, - 4703, - 4701, - 4853, - 3569, - 4825, - 4540, - 4555, - 2119, - 2122, - 2563, - 2135, - 2200, - 2203, - 2138, - 2224, - 2227, - 2218, - 2221, - 2125, - 2385, - 2388, - 2311, - 2314, - 2325, - 2349, - 2352, - 2481, - 2411, - 2429, - 2484, - 2478, - 2530, - 2533, - 2545, - 2548, - 2551, - 2560, - 2574, - 2589, - 2586, - 4019, + 4007, + 3898, + 3902, + 4817, + 3908, + 5076, + 4779, + 4949, + 4899, + 5034, + 4272, + 4818, + 3693, + 3290, + 3288, + 3289, + 3305, + 3986, + 3978, + 3969, + 3545, + 3561, + 3560, + 4416, + 4654, + 4617, + 4900, + 4953, + 4921, + 4928, + 4778, + 3736, + 3717, + 4699, + 4543, + 2102, + 4743, + 4996, + 4021, 4015, - 3577, - 4737, - 4946, - 3718, - 3712, - 3954, - 4680, - 2107, - 3681, - 3687, - 4667, - 2042 + 3725, + 5058, + 4730, + 4728, + 4908, + 3578, + 4880, + 4567, + 4582, + 2117, + 2120, + 2574, + 2133, + 2198, + 2201, + 2136, + 2222, + 2225, + 2216, + 2219, + 2123, + 2383, + 2386, + 2309, + 2312, + 2323, + 2347, + 2350, + 2482, + 2409, + 2427, + 2485, + 2479, + 2533, + 2536, + 2556, + 2559, + 2562, + 2571, + 2585, + 2600, + 2597, + 4031, + 4027, + 3586, + 4764, + 5038, + 3727, + 3721, + 3963, + 4707, + 2105, + 3690, + 3696, + 4694, + 2040 ] }, { "title": "Variables", "children": [ 733, - 4997, - 3546, - 1153, - 2199, + 5089, + 3555, + 1159, + 2197, 736, - 2217, - 2216, - 2310, - 2309, - 2324, + 2215, + 2214, + 2308, + 2307, 2322, - 2384, - 2409, - 2426, - 2446, - 2447, - 2585, + 2320, + 2382, + 2407, + 2424, + 2444, + 2445, + 2596, 997, 32, 64, @@ -110261,7 +115487,7 @@ 387, 389, 386, - 1271, + 1277, 453, 454, 484, @@ -110269,131 +115495,134 @@ 485, 652, 651, - 1057, - 1058, + 1063, + 1064, 1034, - 1152, - 1270, - 1269, - 1272, - 1230, - 1231, - 1252, - 1253, + 1158, + 1276, + 1275, + 1278, + 1236, + 1237, + 1258, + 1259, + 1541, 1542, - 1543, - 1670, - 1612, - 1613, - 1794, - 1795, - 1817, - 1818, - 1891, - 1890, - 1904, - 1903, - 2074, - 2073, - 1756, + 1667, + 1609, + 1610, + 1792, + 1793, + 1815, + 1816, + 1889, + 1888, + 1902, + 1901, + 2072, + 2071, + 1753, 996, - 2348, + 2346, 1016, - 1154, + 1160, + 1633, + 1865, + 1634, + 1668, 1636, - 1867, - 1637, - 1671, - 1639, - 1638, - 2133, - 2134, - 2379, - 2198, - 2215, - 2214, - 2308, - 2307, - 2323, + 1635, + 2131, + 2132, + 2377, + 2196, + 2213, + 2212, + 2306, + 2305, 2321, - 2383, - 2378, - 2448, + 2319, + 2381, + 2376, + 2446, + 2406, 2408, - 2410, - 2427, - 2428, - 2445, - 2444, - 2543, - 2544, - 2573, - 2572, + 2425, + 2426, + 2443, + 2442, + 2532, + 2531, + 2554, + 2555, 2584, + 2583, + 2595, 732, - 3639 + 3648 ] }, { "title": "Functions", "children": [ - 4078, - 4147, - 4046, + 4090, + 4174, + 4058, 758, - 2616, - 2618, - 4042, - 4036, + 2627, + 2629, 4054, - 2631, - 4113, - 4061, + 4048, 4066, - 4069, - 2641, - 2620, - 3675, - 4117, - 4086, - 4089, - 1393, - 2636, - 4093, - 2698, - 2807, - 4099, - 2967, - 3161, - 4102, - 3164, - 3167, - 3275, - 3471, + 2642, + 4125, + 4073, + 4078, + 4081, + 2652, + 2631, + 3684, + 4129, + 4098, + 4101, + 2647, + 4133, 4105, - 3560, - 1403, - 2646, - 4051, - 4108, - 4026, - 4121, - 4130, - 2653, + 2709, + 2818, + 4111, + 2978, + 3172, + 4114, + 3175, + 3178, + 3284, + 3480, + 4117, + 3569, + 4137, + 2657, + 4063, + 4120, + 4038, + 4148, + 4157, + 2664, 428, - 4075, - 4072, - 4134, - 2655, - 2665, - 2674, - 2686, + 4087, + 4084, + 4142, + 4161, + 2666, + 2676, + 2685, + 2697, 605, - 2032, + 2030, 827, - 4140, - 4029, - 2628 + 4167, + 4041, + 2639 ] } ], @@ -113657,7 +118886,7 @@ }, "1050": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__object.price_set" + "qualifiedName": "__object.price_rules" }, "1051": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", @@ -113665,767 +118894,767 @@ }, "1052": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__object.variant_link" + "qualifiedName": "__object.fields" }, "1053": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__object" + "qualifiedName": "__object.rule_type" }, "1054": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__object.variant" + "qualifiedName": "__object" }, "1055": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__object" + "qualifiedName": "__object.fields" }, "1056": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__object.fields" + "qualifiedName": "__object.price_set" }, "1057": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "defaultAdminPriceListFields" + "qualifiedName": "__object" }, "1058": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "defaultAdminPriceListRelations" + "qualifiedName": "__object.variant_link" }, "1059": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "AdminPriceListRes" + "qualifiedName": "__object" }, "1060": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__type" + "qualifiedName": "__object.variant" }, "1061": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__type.price_list" + "qualifiedName": "__object" }, "1062": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "AdminPriceListDeleteBatchRes" + "qualifiedName": "__object.fields" }, "1063": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__type" + "qualifiedName": "defaultAdminPriceListFields" }, "1064": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__type.ids" + "qualifiedName": "defaultAdminPriceListRelations" }, "1065": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__type.deleted" + "qualifiedName": "AdminPriceListRes" }, "1066": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__type.object" + "qualifiedName": "__type" }, "1067": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "AdminPriceListDeleteProductPricesRes" + "qualifiedName": "__type.price_list" }, "1068": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "AdminPriceListDeleteVariantPricesRes" + "qualifiedName": "AdminPriceListDeleteBatchRes" }, "1069": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "AdminPriceListDeleteRes" + "qualifiedName": "__type" }, "1070": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "AdminPriceListsListRes" + "qualifiedName": "__type.ids" }, "1071": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.deleted" }, "1072": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__type.price_lists" + "qualifiedName": "__type.object" }, "1073": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "AdminPriceListsProductsListRes" + "qualifiedName": "AdminPriceListDeleteProductPricesRes" }, "1074": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__type" + "qualifiedName": "AdminPriceListDeleteVariantPricesRes" }, "1075": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", - "qualifiedName": "__type.products" + "qualifiedName": "AdminPriceListDeleteRes" }, "1076": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", + "qualifiedName": "AdminPriceListsListRes" + }, + "1077": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", + "qualifiedName": "__type" + }, + "1078": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", + "qualifiedName": "__type.price_lists" + }, + "1079": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", + "qualifiedName": "AdminPriceListsProductsListRes" + }, + "1080": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", + "qualifiedName": "__type" + }, + "1081": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/index.ts", + "qualifiedName": "__type.products" + }, + "1082": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/add-prices-batch.ts", "qualifiedName": "AdminPostPriceListPricesPricesReq" }, - "1079": { + "1085": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/add-prices-batch.ts", "qualifiedName": "AdminPostPriceListPricesPricesReq.prices" }, - "1080": { + "1086": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/add-prices-batch.ts", "qualifiedName": "AdminPostPriceListPricesPricesReq.override" }, - "1081": { + "1087": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", "qualifiedName": "AdminPostPriceListsPriceListReq" }, - "1084": { + "1090": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", "qualifiedName": "AdminPostPriceListsPriceListReq.name" }, - "1085": { + "1091": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", "qualifiedName": "AdminPostPriceListsPriceListReq.description" }, - "1086": { + "1092": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", "qualifiedName": "AdminPostPriceListsPriceListReq.starts_at" }, - "1087": { + "1093": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", "qualifiedName": "AdminPostPriceListsPriceListReq.ends_at" }, - "1088": { + "1094": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", "qualifiedName": "AdminPostPriceListsPriceListReq.status" }, - "1089": { + "1095": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", "qualifiedName": "AdminPostPriceListsPriceListReq.type" }, - "1090": { + "1096": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", "qualifiedName": "AdminPostPriceListsPriceListReq.prices" }, - "1091": { + "1097": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", "qualifiedName": "AdminPostPriceListsPriceListReq.customer_groups" }, - "1092": { + "1098": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", "qualifiedName": "AdminPostPriceListsPriceListReq.includes_tax" }, - "1093": { + "1099": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/delete-prices-batch.ts", "qualifiedName": "AdminDeletePriceListPricesPricesReq" }, - "1096": { + "1102": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/delete-prices-batch.ts", "qualifiedName": "AdminDeletePriceListPricesPricesReq.price_ids" }, - "1097": { + "1103": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/delete-products-prices-batch.ts", "qualifiedName": "AdminDeletePriceListsPriceListProductsPricesBatchReq" }, - "1100": { + "1106": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/delete-products-prices-batch.ts", "qualifiedName": "AdminDeletePriceListsPriceListProductsPricesBatchReq.product_ids" }, - "1101": { + "1107": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", "qualifiedName": "AdminGetPriceListsPriceListProductsParams" }, - "1102": { + "1108": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type.__new" }, - "1103": { + "1109": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "AdminGetPriceListsPriceListProductsParams" }, - "1104": { + "1110": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "args" }, - "1105": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.id" - }, - "1106": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.q" - }, - "1107": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.status" - }, - "1108": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.collection_id" - }, - "1109": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.tags" - }, - "1110": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.title" - }, "1111": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.description" + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.id" }, "1112": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.handle" + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.q" }, "1113": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.is_giftcard" + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.status" }, "1114": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.type" + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.collection_id" }, "1115": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.order" + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.tags" }, "1116": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.created_at" + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.title" }, "1117": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.updated_at" + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.description" }, "1118": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", - "qualifiedName": "AdminGetPriceListsPriceListProductsParams.deleted_at" + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.handle" }, "1119": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.is_giftcard" + }, + "1120": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.type" + }, + "1121": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.order" + }, + "1122": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.created_at" + }, + "1123": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.updated_at" + }, + "1124": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-list-products.ts", + "qualifiedName": "AdminGetPriceListsPriceListProductsParams.deleted_at" + }, + "1125": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1120": { + "1126": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1121": { + "1127": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.offset" }, - "1122": { + "1128": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.limit" }, - "1123": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-lists.ts", - "qualifiedName": "AdminGetPriceListPaginationParams" - }, - "1126": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-lists.ts", - "qualifiedName": "AdminGetPriceListPaginationParams.offset" - }, - "1127": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-lists.ts", - "qualifiedName": "AdminGetPriceListPaginationParams.limit" - }, - "1128": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-lists.ts", - "qualifiedName": "AdminGetPriceListPaginationParams.expand" - }, "1129": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-lists.ts", - "qualifiedName": "AdminGetPriceListPaginationParams.order" - }, - "1130": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.id" - }, - "1131": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.q" + "qualifiedName": "AdminGetPriceListPaginationParams" }, "1132": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.status" + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-lists.ts", + "qualifiedName": "AdminGetPriceListPaginationParams.offset" }, "1133": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.name" + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-lists.ts", + "qualifiedName": "AdminGetPriceListPaginationParams.limit" }, "1134": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.customer_groups" + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-lists.ts", + "qualifiedName": "AdminGetPriceListPaginationParams.expand" }, "1135": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.description" + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/list-price-lists.ts", + "qualifiedName": "AdminGetPriceListPaginationParams.order" }, "1136": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.type" + "qualifiedName": "FilterablePriceListProps.id" }, "1137": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.created_at" + "qualifiedName": "FilterablePriceListProps.q" }, "1138": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.updated_at" + "qualifiedName": "FilterablePriceListProps.status" }, "1139": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.deleted_at" + "qualifiedName": "FilterablePriceListProps.name" }, "1140": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", - "qualifiedName": "AdminPostPriceListsPriceListPriceListReq" + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "FilterablePriceListProps.customer_groups" + }, + "1141": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "FilterablePriceListProps.description" + }, + "1142": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "FilterablePriceListProps.type" }, "1143": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", - "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.name" + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "FilterablePriceListProps.created_at" }, "1144": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", - "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.description" + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "FilterablePriceListProps.updated_at" }, "1145": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", - "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.starts_at" + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "FilterablePriceListProps.deleted_at" }, "1146": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", - "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.ends_at" - }, - "1147": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", - "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.status" - }, - "1148": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", - "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.type" + "qualifiedName": "AdminPostPriceListsPriceListPriceListReq" }, "1149": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", - "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.prices" + "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.name" }, "1150": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", - "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.customer_groups" + "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.description" }, "1151": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", - "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.includes_tax" + "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.starts_at" }, "1152": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", - "qualifiedName": "defaultAdminProductCategoryRelations" + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", + "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.ends_at" }, "1153": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", - "qualifiedName": "allowedAdminProductCategoryRelations" + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", + "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.status" }, "1154": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", - "qualifiedName": "defaultProductCategoryFields" + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", + "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.type" }, "1155": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", - "qualifiedName": "AdminProductCategoriesCategoryRes" + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", + "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.prices" }, "1156": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", + "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.customer_groups" }, "1157": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", - "qualifiedName": "__type.product_category" + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", + "qualifiedName": "AdminPostPriceListsPriceListPriceListReq.includes_tax" }, "1158": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", - "qualifiedName": "AdminProductCategoriesCategoryDeleteRes" + "qualifiedName": "defaultAdminProductCategoryRelations" }, "1159": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", - "qualifiedName": "AdminProductCategoriesListRes" + "qualifiedName": "allowedAdminProductCategoryRelations" }, "1160": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", - "qualifiedName": "__type" + "qualifiedName": "defaultProductCategoryFields" }, "1161": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", - "qualifiedName": "__type.product_categories" + "qualifiedName": "AdminProductCategoriesCategoryRes" }, "1162": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", + "qualifiedName": "__type" + }, + "1163": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", + "qualifiedName": "__type.product_category" + }, + "1164": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", + "qualifiedName": "AdminProductCategoriesCategoryDeleteRes" + }, + "1165": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", + "qualifiedName": "AdminProductCategoriesListRes" + }, + "1166": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", + "qualifiedName": "__type" + }, + "1167": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/index.ts", + "qualifiedName": "__type.product_categories" + }, + "1168": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/get-product-category.ts", "qualifiedName": "AdminGetProductCategoryParams" }, - "1165": { + "1171": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1166": { + "1172": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1167": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/list-product-categories.ts", - "qualifiedName": "AdminGetProductCategoriesParams" - }, - "1168": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.__new" - }, - "1169": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "AdminGetProductCategoriesParams" - }, - "1170": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "args" - }, - "1171": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/list-product-categories.ts", - "qualifiedName": "AdminGetProductCategoriesParams.q" - }, - "1172": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/list-product-categories.ts", - "qualifiedName": "AdminGetProductCategoriesParams.handle" - }, "1173": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/list-product-categories.ts", - "qualifiedName": "AdminGetProductCategoriesParams.include_descendants_tree" + "qualifiedName": "AdminGetProductCategoriesParams" }, "1174": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__type.__new" + }, + "1175": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "AdminGetProductCategoriesParams" + }, + "1176": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "args" + }, + "1177": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/list-product-categories.ts", + "qualifiedName": "AdminGetProductCategoriesParams.q" + }, + "1178": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/list-product-categories.ts", + "qualifiedName": "AdminGetProductCategoriesParams.handle" + }, + "1179": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/list-product-categories.ts", + "qualifiedName": "AdminGetProductCategoriesParams.include_descendants_tree" + }, + "1180": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/list-product-categories.ts", "qualifiedName": "AdminGetProductCategoriesParams.is_internal" }, - "1175": { + "1181": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/list-product-categories.ts", "qualifiedName": "AdminGetProductCategoriesParams.is_active" }, - "1176": { + "1182": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/list-product-categories.ts", "qualifiedName": "AdminGetProductCategoriesParams.parent_category_id" }, - "1177": { + "1183": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1178": { + "1184": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1179": { + "1185": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.offset" }, - "1180": { + "1186": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.limit" }, - "1181": { + "1187": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/create-product-category.ts", "qualifiedName": "AdminPostProductCategoriesReq" }, - "1184": { + "1190": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/create-product-category.ts", "qualifiedName": "AdminPostProductCategoriesReq.name" }, - "1185": { + "1191": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/create-product-category.ts", "qualifiedName": "AdminPostProductCategoriesReq.metadata" }, - "1186": { + "1192": { "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", "qualifiedName": "AdminProductCategoriesReqBase.description" }, - "1187": { + "1193": { "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", "qualifiedName": "AdminProductCategoriesReqBase.handle" }, - "1188": { + "1194": { "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", "qualifiedName": "AdminProductCategoriesReqBase.is_internal" }, - "1189": { + "1195": { "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", "qualifiedName": "AdminProductCategoriesReqBase.is_active" }, - "1190": { + "1196": { "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", "qualifiedName": "AdminProductCategoriesReqBase.parent_category_id" }, - "1191": { + "1197": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/create-product-category.ts", "qualifiedName": "AdminPostProductCategoriesParams" }, - "1194": { + "1200": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1195": { + "1201": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1196": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/update-product-category.ts", - "qualifiedName": "AdminPostProductCategoriesCategoryReq" - }, - "1199": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/update-product-category.ts", - "qualifiedName": "AdminPostProductCategoriesCategoryReq.name" - }, - "1200": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/update-product-category.ts", - "qualifiedName": "AdminPostProductCategoriesCategoryReq.handle" - }, - "1201": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/update-product-category.ts", - "qualifiedName": "AdminPostProductCategoriesCategoryReq.rank" - }, "1202": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/update-product-category.ts", - "qualifiedName": "AdminPostProductCategoriesCategoryReq.metadata" - }, - "1203": { - "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", - "qualifiedName": "AdminProductCategoriesReqBase.description" - }, - "1204": { - "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", - "qualifiedName": "AdminProductCategoriesReqBase.is_internal" + "qualifiedName": "AdminPostProductCategoriesCategoryReq" }, "1205": { - "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", - "qualifiedName": "AdminProductCategoriesReqBase.is_active" + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/update-product-category.ts", + "qualifiedName": "AdminPostProductCategoriesCategoryReq.name" }, "1206": { - "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", - "qualifiedName": "AdminProductCategoriesReqBase.parent_category_id" + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/update-product-category.ts", + "qualifiedName": "AdminPostProductCategoriesCategoryReq.handle" }, "1207": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/update-product-category.ts", - "qualifiedName": "AdminPostProductCategoriesCategoryParams" + "qualifiedName": "AdminPostProductCategoriesCategoryReq.rank" + }, + "1208": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/update-product-category.ts", + "qualifiedName": "AdminPostProductCategoriesCategoryReq.metadata" + }, + "1209": { + "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", + "qualifiedName": "AdminProductCategoriesReqBase.description" }, "1210": { + "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", + "qualifiedName": "AdminProductCategoriesReqBase.is_internal" + }, + "1211": { + "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", + "qualifiedName": "AdminProductCategoriesReqBase.is_active" + }, + "1212": { + "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", + "qualifiedName": "AdminProductCategoriesReqBase.parent_category_id" + }, + "1213": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/update-product-category.ts", + "qualifiedName": "AdminPostProductCategoriesCategoryParams" + }, + "1216": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1211": { + "1217": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1212": { + "1218": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/add-products-batch.ts", "qualifiedName": "AdminPostProductCategoriesCategoryProductsBatchReq" }, - "1215": { + "1221": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/add-products-batch.ts", "qualifiedName": "AdminPostProductCategoriesCategoryProductsBatchReq.product_ids" }, - "1216": { + "1222": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/add-products-batch.ts", "qualifiedName": "AdminPostProductCategoriesCategoryProductsBatchParams" }, - "1219": { + "1225": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1220": { + "1226": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1221": { + "1227": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/delete-products-batch.ts", "qualifiedName": "AdminDeleteProductCategoriesCategoryProductsBatchReq" }, - "1224": { + "1230": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/delete-products-batch.ts", "qualifiedName": "AdminDeleteProductCategoriesCategoryProductsBatchReq.product_ids" }, - "1225": { + "1231": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-categories/delete-products-batch.ts", "qualifiedName": "AdminDeleteProductCategoriesCategoryProductsBatchParams" }, - "1228": { + "1234": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1229": { + "1235": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1230": { + "1236": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/index.ts", "qualifiedName": "defaultAdminProductTagsFields" }, - "1231": { + "1237": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/index.ts", "qualifiedName": "defaultAdminProductTagsRelations" }, - "1232": { + "1238": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/index.ts", "qualifiedName": "AdminProductTagsListRes" }, - "1233": { + "1239": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/index.ts", "qualifiedName": "__type" }, - "1234": { + "1240": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/index.ts", "qualifiedName": "__type.product_tags" }, - "1235": { + "1241": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", "qualifiedName": "AdminGetProductTagsPaginationParams" }, - "1238": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", - "qualifiedName": "AdminGetProductTagsPaginationParams.limit" - }, - "1239": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", - "qualifiedName": "AdminGetProductTagsPaginationParams.offset" - }, - "1240": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", - "qualifiedName": "AdminGetProductTagsParams" - }, - "1243": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", - "qualifiedName": "AdminGetProductTagsParams.id" - }, "1244": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", - "qualifiedName": "AdminGetProductTagsParams.q" + "qualifiedName": "AdminGetProductTagsPaginationParams.limit" }, "1245": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", - "qualifiedName": "AdminGetProductTagsParams.value" + "qualifiedName": "AdminGetProductTagsPaginationParams.offset" }, "1246": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", - "qualifiedName": "AdminGetProductTagsParams.created_at" - }, - "1247": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", - "qualifiedName": "AdminGetProductTagsParams.updated_at" - }, - "1248": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", - "qualifiedName": "AdminGetProductTagsParams.order" + "qualifiedName": "AdminGetProductTagsParams" }, "1249": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", - "qualifiedName": "AdminGetProductTagsParams.discount_condition_id" + "qualifiedName": "AdminGetProductTagsParams.id" }, "1250": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", - "qualifiedName": "AdminGetProductTagsPaginationParams.limit" + "qualifiedName": "AdminGetProductTagsParams.q" }, "1251": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", - "qualifiedName": "AdminGetProductTagsPaginationParams.offset" + "qualifiedName": "AdminGetProductTagsParams.value" }, "1252": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", + "qualifiedName": "AdminGetProductTagsParams.created_at" + }, + "1253": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", + "qualifiedName": "AdminGetProductTagsParams.updated_at" + }, + "1254": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", + "qualifiedName": "AdminGetProductTagsParams.order" + }, + "1255": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", + "qualifiedName": "AdminGetProductTagsParams.discount_condition_id" + }, + "1256": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", + "qualifiedName": "AdminGetProductTagsPaginationParams.limit" + }, + "1257": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-tags/list-product-tags.ts", + "qualifiedName": "AdminGetProductTagsPaginationParams.offset" + }, + "1258": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-types/index.ts", "qualifiedName": "defaultAdminProductTypeFields" }, - "1253": { + "1259": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-types/index.ts", "qualifiedName": "defaultAdminProductTypeRelations" }, - "1254": { + "1260": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-types/index.ts", "qualifiedName": "AdminProductTypesListRes" }, - "1255": { + "1261": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-types/index.ts", "qualifiedName": "__type" }, - "1256": { + "1262": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-types/index.ts", "qualifiedName": "__type.product_types" }, - "1257": { + "1263": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-types/list-product-types.ts", "qualifiedName": "AdminGetProductTypesParams" }, - "1260": { + "1266": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-types/list-product-types.ts", "qualifiedName": "AdminGetProductTypesParams.id" }, - "1261": { + "1267": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-types/list-product-types.ts", "qualifiedName": "AdminGetProductTypesParams.q" }, - "1262": { + "1268": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-types/list-product-types.ts", "qualifiedName": "AdminGetProductTypesParams.value" }, - "1263": { + "1269": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-types/list-product-types.ts", "qualifiedName": "AdminGetProductTypesParams.created_at" }, - "1264": { + "1270": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-types/list-product-types.ts", "qualifiedName": "AdminGetProductTypesParams.updated_at" }, - "1265": { + "1271": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-types/list-product-types.ts", "qualifiedName": "AdminGetProductTypesParams.order" }, - "1266": { + "1272": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/product-types/list-product-types.ts", "qualifiedName": "AdminGetProductTypesParams.discount_condition_id" }, - "1267": { + "1273": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.offset" }, - "1268": { + "1274": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.limit" }, - "1269": { + "1275": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", "qualifiedName": "defaultAdminProductRelations" }, - "1270": { + "1276": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", "qualifiedName": "defaultAdminProductFields" }, - "1271": { + "1277": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", "qualifiedName": "defaultAdminGetProductsVariantsFields" }, - "1272": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "defaultAdminProductRemoteQueryObject" - }, - "1273": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object" - }, - "1274": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object.fields" - }, - "1275": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object.images" - }, - "1276": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object" - }, - "1277": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object.fields" - }, "1278": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object.tags" + "qualifiedName": "defaultAdminProductRemoteQueryObject" }, "1279": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", @@ -114437,7 +119666,7 @@ }, "1281": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object.type" + "qualifiedName": "__object.images" }, "1282": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", @@ -114449,7 +119678,7 @@ }, "1284": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object.collection" + "qualifiedName": "__object.tags" }, "1285": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", @@ -114461,7 +119690,7 @@ }, "1287": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object.categories" + "qualifiedName": "__object.type" }, "1288": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", @@ -114473,7 +119702,7 @@ }, "1290": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object.options" + "qualifiedName": "__object.collection" }, "1291": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", @@ -114485,7 +119714,7 @@ }, "1293": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object.values" + "qualifiedName": "__object.categories" }, "1294": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", @@ -114497,7 +119726,7 @@ }, "1296": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object.variants" + "qualifiedName": "__object.options" }, "1297": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", @@ -114509,7 +119738,7 @@ }, "1299": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object.options" + "qualifiedName": "__object.values" }, "1300": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", @@ -114521,7 +119750,7 @@ }, "1302": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__object.profile" + "qualifiedName": "__object.variants" }, "1303": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", @@ -114533,111 +119762,111 @@ }, "1305": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "AdminProductsDeleteOptionRes" + "qualifiedName": "__object.options" }, "1306": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type" + "qualifiedName": "__object" }, "1307": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.option_id" + "qualifiedName": "__object.fields" }, "1308": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.object" + "qualifiedName": "__object.profile" }, "1309": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.deleted" + "qualifiedName": "__object" }, "1310": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.product" + "qualifiedName": "__object.fields" }, "1311": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "AdminProductsDeleteVariantRes" + "qualifiedName": "__object.sales_channels" }, "1312": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type" + "qualifiedName": "__object" }, "1313": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.variant_id" + "qualifiedName": "__object.fields" }, "1314": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.object" + "qualifiedName": "AdminProductsDeleteOptionRes" }, "1315": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.deleted" + "qualifiedName": "__type" }, "1316": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.product" + "qualifiedName": "__type.option_id" }, "1317": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "AdminProductsDeleteRes" + "qualifiedName": "__type.object" }, "1318": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.deleted" }, "1319": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.id" + "qualifiedName": "__type.product" }, "1320": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.object" + "qualifiedName": "AdminProductsDeleteVariantRes" }, "1321": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.deleted" + "qualifiedName": "__type" }, "1322": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "AdminProductsListRes" + "qualifiedName": "__type.variant_id" }, "1323": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.object" }, "1324": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.products" + "qualifiedName": "__type.deleted" }, "1325": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "AdminProductsListVariantsRes" + "qualifiedName": "__type.product" }, "1326": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type" + "qualifiedName": "AdminProductsDeleteRes" }, "1327": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.variants" + "qualifiedName": "__type" }, "1328": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "AdminProductsListTypesRes" + "qualifiedName": "__type.id" }, "1329": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.object" }, "1330": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.types" + "qualifiedName": "__type.deleted" }, "1331": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "AdminProductsListTagsRes" + "qualifiedName": "AdminProductsListRes" }, "1332": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", @@ -114645,3943 +119874,3959 @@ }, "1333": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.tags" + "qualifiedName": "__type.products" }, "1334": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type" + "qualifiedName": "AdminProductsListVariantsRes" }, "1335": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.usage_count" + "qualifiedName": "__type" }, "1336": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "AdminProductsRes" + "qualifiedName": "__type.variants" }, "1337": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type" + "qualifiedName": "AdminProductsListTypesRes" }, "1338": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", - "qualifiedName": "__type.product" + "qualifiedName": "__type" }, "1339": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", + "qualifiedName": "__type.types" + }, + "1340": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", + "qualifiedName": "AdminProductsListTagsRes" + }, + "1341": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", + "qualifiedName": "__type" + }, + "1342": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", + "qualifiedName": "__type.tags" + }, + "1343": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", + "qualifiedName": "__type" + }, + "1344": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", + "qualifiedName": "__type.usage_count" + }, + "1345": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", + "qualifiedName": "AdminProductsRes" + }, + "1346": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", + "qualifiedName": "__type" + }, + "1347": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/index.ts", + "qualifiedName": "__type.product" + }, + "1348": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/add-option.ts", "qualifiedName": "AdminPostProductsProductOptionsReq" }, - "1342": { + "1351": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/add-option.ts", "qualifiedName": "AdminPostProductsProductOptionsReq.title" }, - "1343": { + "1352": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq" }, - "1346": { + "1355": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.title" }, - "1347": { + "1356": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.subtitle" }, - "1348": { + "1357": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.description" }, - "1349": { + "1358": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.is_giftcard" }, - "1350": { + "1359": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.discountable" }, - "1351": { + "1360": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.images" }, - "1352": { + "1361": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.thumbnail" }, - "1353": { + "1362": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.handle" }, - "1354": { + "1363": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.status" }, - "1355": { + "1364": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.type" }, - "1356": { + "1365": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.collection_id" }, - "1357": { + "1366": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.tags" }, - "1358": { + "1367": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.sales_channels" }, - "1359": { + "1368": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.categories" }, - "1360": { + "1369": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.options" }, - "1361": { + "1370": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.variants" }, - "1362": { + "1371": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.weight" }, - "1363": { + "1372": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.length" }, - "1364": { + "1373": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.height" }, - "1365": { + "1374": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.width" }, - "1366": { + "1375": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.hs_code" }, - "1367": { + "1376": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.origin_country" }, - "1368": { + "1377": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.mid_code" }, - "1369": { + "1378": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.material" }, - "1370": { + "1379": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "AdminPostProductsReq.metadata" }, - "1371": { + "1380": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq" }, - "1374": { + "1383": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.title" }, - "1375": { + "1384": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.sku" }, - "1376": { + "1385": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.ean" }, - "1377": { + "1386": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.upc" }, - "1378": { + "1387": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.barcode" }, - "1379": { + "1388": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.hs_code" }, - "1380": { + "1389": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.inventory_quantity" }, - "1381": { + "1390": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.allow_backorder" }, - "1382": { + "1391": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.manage_inventory" }, - "1383": { + "1392": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.weight" }, - "1384": { + "1393": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.length" }, - "1385": { + "1394": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.height" }, - "1386": { + "1395": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.width" }, - "1387": { + "1396": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.origin_country" }, - "1388": { + "1397": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.mid_code" }, - "1389": { + "1398": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.material" }, - "1390": { + "1399": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.metadata" }, - "1391": { + "1400": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.prices" }, - "1392": { + "1401": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsReq.options" }, - "1393": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/get-product.ts", - "qualifiedName": "getProductWithIsolatedProductModule" - }, - "1394": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/get-product.ts", - "qualifiedName": "getProductWithIsolatedProductModule" - }, - "1395": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/get-product.ts", - "qualifiedName": "req" - }, - "1396": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/get-product.ts", - "qualifiedName": "id" - }, - "1397": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/get-product.ts", - "qualifiedName": "retrieveConfig" - }, - "1398": { + "1402": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/get-product.ts", "qualifiedName": "AdminGetProductParams" }, - "1401": { + "1405": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1402": { + "1406": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1403": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-products.ts", - "qualifiedName": "listAndCountProductWithIsolatedProductModule" - }, - "1404": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-products.ts", - "qualifiedName": "listAndCountProductWithIsolatedProductModule" - }, - "1405": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-products.ts", - "qualifiedName": "req" - }, - "1406": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-products.ts", - "qualifiedName": "filterableFields" - }, "1407": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-products.ts", - "qualifiedName": "listConfig" - }, - "1408": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-products.ts", "qualifiedName": "AdminGetProductsParams" }, - "1411": { + "1410": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-products.ts", "qualifiedName": "AdminGetProductsParams.offset" }, - "1412": { + "1411": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-products.ts", "qualifiedName": "AdminGetProductsParams.limit" }, - "1413": { + "1412": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-products.ts", "qualifiedName": "AdminGetProductsParams.expand" }, - "1414": { + "1413": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-products.ts", "qualifiedName": "AdminGetProductsParams.fields" }, - "1415": { + "1414": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-products.ts", "qualifiedName": "AdminGetProductsParams.order" }, - "1416": { + "1415": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.id" }, - "1417": { + "1416": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.q" }, - "1418": { + "1417": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.status" }, - "1419": { + "1418": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.price_list_id" }, - "1420": { + "1419": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.collection_id" }, - "1421": { + "1420": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.tags" }, - "1422": { + "1421": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.title" }, - "1423": { + "1422": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.description" }, - "1424": { + "1423": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.handle" }, - "1425": { + "1424": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.is_giftcard" }, - "1426": { + "1425": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.type_id" }, - "1427": { + "1426": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.sales_channel_id" }, - "1428": { + "1427": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.discount_condition_id" }, - "1429": { + "1428": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.category_id" }, - "1430": { + "1429": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.include_category_children" }, - "1431": { + "1430": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.created_at" }, - "1432": { + "1431": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.updated_at" }, - "1433": { + "1432": { "sourceFileName": "../../../packages/medusa/src/types/product.ts", "qualifiedName": "FilterableProductProps.deleted_at" }, - "1434": { + "1433": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-variants.ts", "qualifiedName": "AdminGetProductsVariantsParams" }, - "1437": { + "1436": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-variants.ts", "qualifiedName": "AdminGetProductsVariantsParams.fields" }, - "1438": { + "1437": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-variants.ts", "qualifiedName": "AdminGetProductsVariantsParams.expand" }, - "1439": { + "1438": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-variants.ts", "qualifiedName": "AdminGetProductsVariantsParams.offset" }, - "1440": { + "1439": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/list-variants.ts", "qualifiedName": "AdminGetProductsVariantsParams.limit" }, - "1441": { + "1440": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/set-metadata.ts", "qualifiedName": "AdminPostProductsProductMetadataReq" }, - "1444": { + "1443": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/set-metadata.ts", "qualifiedName": "AdminPostProductsProductMetadataReq.key" }, - "1445": { + "1444": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/set-metadata.ts", "qualifiedName": "AdminPostProductsProductMetadataReq.value" }, - "1446": { + "1445": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-option.ts", "qualifiedName": "AdminPostProductsProductOptionsOption" }, - "1449": { + "1448": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-option.ts", "qualifiedName": "AdminPostProductsProductOptionsOption.title" }, - "1450": { + "1449": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq" }, - "1453": { + "1452": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.title" }, - "1454": { + "1453": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.subtitle" }, - "1455": { + "1454": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.description" }, - "1456": { + "1455": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.discountable" }, - "1457": { + "1456": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.images" }, - "1458": { + "1457": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.thumbnail" }, - "1459": { + "1458": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.handle" }, - "1460": { + "1459": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.status" }, - "1461": { + "1460": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.type" }, - "1462": { + "1461": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.collection_id" }, - "1463": { + "1462": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.tags" }, - "1464": { + "1463": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.sales_channels" }, - "1465": { + "1464": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.categories" }, - "1466": { + "1465": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.variants" }, - "1467": { + "1466": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.weight" }, - "1468": { + "1467": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.length" }, - "1469": { + "1468": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.height" }, - "1470": { + "1469": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.width" }, - "1471": { + "1470": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.hs_code" }, - "1472": { + "1471": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.origin_country" }, - "1473": { + "1472": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.mid_code" }, - "1474": { + "1473": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.material" }, - "1475": { + "1474": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "AdminPostProductsProductReq.metadata" }, - "1476": { + "1475": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq" }, - "1479": { + "1478": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.title" }, - "1480": { + "1479": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.sku" }, - "1481": { + "1480": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.ean" }, - "1482": { + "1481": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.upc" }, - "1483": { + "1482": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.barcode" }, - "1484": { + "1483": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.hs_code" }, - "1485": { + "1484": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.inventory_quantity" }, - "1486": { + "1485": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.allow_backorder" }, - "1487": { + "1486": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.manage_inventory" }, - "1488": { + "1487": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.weight" }, - "1489": { + "1488": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.length" }, - "1490": { + "1489": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.height" }, - "1491": { + "1490": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.width" }, - "1492": { + "1491": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.origin_country" }, - "1493": { + "1492": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.mid_code" }, - "1494": { + "1493": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.material" }, - "1495": { + "1494": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.metadata" }, - "1496": { + "1495": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.prices" }, - "1497": { + "1496": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", "qualifiedName": "AdminPostProductsProductVariantsVariantReq.options" }, - "1498": { + "1497": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/index.ts", "qualifiedName": "AdminPublishableApiKeysRes" }, - "1499": { + "1498": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/index.ts", "qualifiedName": "__type" }, - "1500": { + "1499": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/index.ts", "qualifiedName": "__type.publishable_api_key" }, - "1501": { + "1500": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/index.ts", "qualifiedName": "AdminPublishableApiKeysListRes" }, - "1502": { + "1501": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/index.ts", "qualifiedName": "__type" }, - "1503": { + "1502": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/index.ts", "qualifiedName": "__type.publishable_api_keys" }, - "1504": { + "1503": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/index.ts", "qualifiedName": "AdminPublishableApiKeyDeleteRes" }, - "1505": { + "1504": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/index.ts", "qualifiedName": "AdminPublishableApiKeysListSalesChannelsRes" }, - "1506": { + "1505": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/index.ts", "qualifiedName": "__type" }, - "1507": { + "1506": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/index.ts", "qualifiedName": "__type.sales_channels" }, - "1508": { + "1507": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/add-channels-batch.ts", "qualifiedName": "AdminPostPublishableApiKeySalesChannelsBatchReq" }, - "1511": { + "1510": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/add-channels-batch.ts", "qualifiedName": "AdminPostPublishableApiKeySalesChannelsBatchReq.sales_channel_ids" }, - "1512": { + "1511": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/delete-channels-batch.ts", "qualifiedName": "AdminDeletePublishableApiKeySalesChannelsBatchReq" }, - "1515": { + "1514": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/delete-channels-batch.ts", "qualifiedName": "AdminDeletePublishableApiKeySalesChannelsBatchReq.sales_channel_ids" }, - "1516": { + "1515": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/list-publishable-api-keys.ts", "qualifiedName": "GetPublishableApiKeysParams" }, + "1516": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__type.__new" + }, "1517": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.__new" + "qualifiedName": "GetPublishableApiKeysParams" }, "1518": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "GetPublishableApiKeysParams" - }, - "1519": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "args" }, - "1520": { + "1519": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/list-publishable-api-keys.ts", "qualifiedName": "GetPublishableApiKeysParams.q" }, - "1521": { + "1520": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, + "1521": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindParams.fields" + }, "1522": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindParams.fields" + "qualifiedName": "FindPaginationParams.offset" }, "1523": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindPaginationParams.offset" - }, - "1524": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.limit" }, - "1525": { + "1524": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/list-publishable-api-key-sales-channels.ts", "qualifiedName": "GetPublishableApiKeySalesChannelsParams" }, - "1526": { + "1525": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type.__new" }, - "1527": { + "1526": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "GetPublishableApiKeySalesChannelsParams" }, - "1528": { + "1527": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "args" }, - "1529": { + "1528": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/list-publishable-api-key-sales-channels.ts", "qualifiedName": "GetPublishableApiKeySalesChannelsParams.q" }, - "1530": { + "1529": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1531": { + "1530": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1532": { + "1531": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.offset" }, - "1533": { + "1532": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.limit" }, - "1534": { + "1533": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/create-publishable-api-key.ts", "qualifiedName": "AdminPostPublishableApiKeysReq" }, - "1537": { + "1536": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/create-publishable-api-key.ts", "qualifiedName": "AdminPostPublishableApiKeysReq.title" }, - "1538": { + "1537": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/update-publishable-api-key.ts", "qualifiedName": "AdminPostPublishableApiKeysPublishableApiKeyReq" }, - "1541": { + "1540": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/publishable-api-keys/update-publishable-api-key.ts", "qualifiedName": "AdminPostPublishableApiKeysPublishableApiKeyReq.title" }, - "1542": { + "1541": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "defaultAdminRegionFields" }, - "1543": { + "1542": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "defaultAdminRegionRelations" }, - "1544": { + "1543": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "AdminRegionsRes" }, - "1545": { + "1544": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "__type" }, - "1546": { + "1545": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "__type.region" }, - "1547": { + "1546": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "AdminRegionsListRes" }, - "1548": { + "1547": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "__type" }, - "1549": { + "1548": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "__type.regions" }, - "1550": { + "1549": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "AdminRegionsDeleteRes" }, - "1551": { + "1550": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "FulfillmentOption" }, - "1554": { + "1553": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "FulfillmentOption.provider_id" }, - "1555": { + "1554": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "FulfillmentOption.options" }, - "1556": { + "1555": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "AdminGetRegionsRegionFulfillmentOptionsRes" }, - "1559": { + "1558": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/index.ts", "qualifiedName": "AdminGetRegionsRegionFulfillmentOptionsRes.fulfillment_options" }, - "1560": { + "1559": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/add-country.ts", "qualifiedName": "AdminPostRegionsRegionCountriesReq" }, - "1563": { + "1562": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/add-country.ts", "qualifiedName": "AdminPostRegionsRegionCountriesReq.country_code" }, - "1564": { + "1563": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/add-fulfillment-provider.ts", "qualifiedName": "AdminPostRegionsRegionFulfillmentProvidersReq" }, - "1567": { + "1566": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/add-fulfillment-provider.ts", "qualifiedName": "AdminPostRegionsRegionFulfillmentProvidersReq.provider_id" }, - "1568": { + "1567": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/add-payment-provider.ts", "qualifiedName": "AdminPostRegionsRegionPaymentProvidersReq" }, - "1571": { + "1570": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/add-payment-provider.ts", "qualifiedName": "AdminPostRegionsRegionPaymentProvidersReq.provider_id" }, - "1572": { + "1571": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/create-region.ts", "qualifiedName": "AdminPostRegionsReq" }, - "1575": { + "1574": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/create-region.ts", "qualifiedName": "AdminPostRegionsReq.name" }, - "1576": { + "1575": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/create-region.ts", "qualifiedName": "AdminPostRegionsReq.currency_code" }, - "1577": { + "1576": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/create-region.ts", "qualifiedName": "AdminPostRegionsReq.tax_code" }, - "1578": { + "1577": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/create-region.ts", "qualifiedName": "AdminPostRegionsReq.tax_rate" }, - "1579": { + "1578": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/create-region.ts", "qualifiedName": "AdminPostRegionsReq.payment_providers" }, - "1580": { + "1579": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/create-region.ts", "qualifiedName": "AdminPostRegionsReq.fulfillment_providers" }, - "1581": { + "1580": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/create-region.ts", "qualifiedName": "AdminPostRegionsReq.countries" }, - "1582": { + "1581": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/create-region.ts", "qualifiedName": "AdminPostRegionsReq.includes_tax" }, - "1583": { + "1582": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/create-region.ts", "qualifiedName": "AdminPostRegionsReq.metadata" }, - "1584": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/list-regions.ts", - "qualifiedName": "AdminGetRegionsPaginationParams" - }, - "1587": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/list-regions.ts", - "qualifiedName": "AdminGetRegionsPaginationParams.limit" - }, - "1588": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/list-regions.ts", - "qualifiedName": "AdminGetRegionsPaginationParams.offset" - }, - "1589": { + "1583": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/list-regions.ts", "qualifiedName": "AdminGetRegionsParams" }, - "1592": { + "1584": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__type.__new" + }, + "1585": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "AdminGetRegionsParams" + }, + "1586": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "args" + }, + "1587": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/list-regions.ts", "qualifiedName": "AdminGetRegionsParams.created_at" }, - "1593": { + "1588": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/list-regions.ts", "qualifiedName": "AdminGetRegionsParams.updated_at" }, - "1594": { + "1589": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/list-regions.ts", "qualifiedName": "AdminGetRegionsParams.deleted_at" }, - "1595": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/list-regions.ts", - "qualifiedName": "AdminGetRegionsPaginationParams.limit" + "1590": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindParams.expand" }, - "1596": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/list-regions.ts", - "qualifiedName": "AdminGetRegionsPaginationParams.offset" + "1591": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindParams.fields" }, - "1597": { + "1592": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindPaginationParams.offset" + }, + "1593": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindPaginationParams.limit" + }, + "1594": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/update-region.ts", "qualifiedName": "AdminPostRegionsRegionReq" }, - "1600": { + "1597": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/update-region.ts", "qualifiedName": "AdminPostRegionsRegionReq.name" }, - "1601": { + "1598": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/update-region.ts", "qualifiedName": "AdminPostRegionsRegionReq.currency_code" }, - "1602": { + "1599": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/update-region.ts", "qualifiedName": "AdminPostRegionsRegionReq.tax_code" }, - "1603": { + "1600": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/update-region.ts", "qualifiedName": "AdminPostRegionsRegionReq.tax_rate" }, - "1604": { + "1601": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/update-region.ts", "qualifiedName": "AdminPostRegionsRegionReq.gift_cards_taxable" }, - "1605": { + "1602": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/update-region.ts", "qualifiedName": "AdminPostRegionsRegionReq.automatic_taxes" }, - "1606": { + "1603": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/update-region.ts", "qualifiedName": "AdminPostRegionsRegionReq.tax_provider_id" }, - "1607": { + "1604": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/update-region.ts", "qualifiedName": "AdminPostRegionsRegionReq.payment_providers" }, - "1608": { + "1605": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/update-region.ts", "qualifiedName": "AdminPostRegionsRegionReq.fulfillment_providers" }, - "1609": { + "1606": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/update-region.ts", "qualifiedName": "AdminPostRegionsRegionReq.countries" }, - "1610": { + "1607": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/update-region.ts", "qualifiedName": "AdminPostRegionsRegionReq.includes_tax" }, - "1611": { + "1608": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/regions/update-region.ts", "qualifiedName": "AdminPostRegionsRegionReq.metadata" }, - "1612": { + "1609": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/index.ts", "qualifiedName": "defaultAdminReturnReasonsFields" }, - "1613": { + "1610": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/index.ts", "qualifiedName": "defaultAdminReturnReasonsRelations" }, - "1614": { + "1611": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/index.ts", "qualifiedName": "AdminReturnReasonsRes" }, + "1612": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/index.ts", + "qualifiedName": "__type" + }, + "1613": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/index.ts", + "qualifiedName": "__type.return_reason" + }, + "1614": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/index.ts", + "qualifiedName": "AdminReturnReasonsListRes" + }, "1615": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/index.ts", "qualifiedName": "__type" }, "1616": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/index.ts", - "qualifiedName": "__type.return_reason" + "qualifiedName": "__type.return_reasons" }, "1617": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/index.ts", - "qualifiedName": "AdminReturnReasonsListRes" - }, - "1618": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/index.ts", - "qualifiedName": "__type" - }, - "1619": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/index.ts", - "qualifiedName": "__type.return_reasons" - }, - "1620": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/index.ts", "qualifiedName": "AdminReturnReasonsDeleteRes" }, - "1621": { + "1618": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/create-reason.ts", "qualifiedName": "AdminPostReturnReasonsReq" }, - "1624": { + "1621": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/create-reason.ts", "qualifiedName": "AdminPostReturnReasonsReq.value" }, - "1625": { + "1622": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/create-reason.ts", "qualifiedName": "AdminPostReturnReasonsReq.label" }, - "1626": { + "1623": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/create-reason.ts", "qualifiedName": "AdminPostReturnReasonsReq.parent_return_reason_id" }, - "1627": { + "1624": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/create-reason.ts", "qualifiedName": "AdminPostReturnReasonsReq.description" }, - "1628": { + "1625": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/create-reason.ts", "qualifiedName": "AdminPostReturnReasonsReq.metadata" }, - "1629": { + "1626": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/update-reason.ts", "qualifiedName": "AdminPostReturnReasonsReasonReq" }, - "1632": { + "1629": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/update-reason.ts", "qualifiedName": "AdminPostReturnReasonsReasonReq.label" }, - "1633": { + "1630": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/update-reason.ts", "qualifiedName": "AdminPostReturnReasonsReasonReq.value" }, - "1634": { + "1631": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/update-reason.ts", "qualifiedName": "AdminPostReturnReasonsReasonReq.description" }, - "1635": { + "1632": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/return-reasons/update-reason.ts", "qualifiedName": "AdminPostReturnReasonsReasonReq.metadata" }, - "1636": { + "1633": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", "qualifiedName": "defaultRelations" }, - "1637": { + "1634": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", "qualifiedName": "defaultRelationsList" }, - "1638": { + "1635": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", "qualifiedName": "defaultReturnCancelRelations" }, - "1639": { + "1636": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", "qualifiedName": "defaultReturnCancelFields" }, - "1640": { + "1637": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", "qualifiedName": "AdminReturnsCancelRes" }, + "1638": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", + "qualifiedName": "__type" + }, + "1639": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", + "qualifiedName": "__type.order" + }, + "1640": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", + "qualifiedName": "AdminReturnsListRes" + }, "1641": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", "qualifiedName": "__type" }, "1642": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", - "qualifiedName": "__type.order" + "qualifiedName": "__type.returns" }, "1643": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", - "qualifiedName": "AdminReturnsListRes" + "qualifiedName": "AdminReturnsRes" }, "1644": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", "qualifiedName": "__type" }, "1645": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", - "qualifiedName": "__type.returns" - }, - "1646": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", - "qualifiedName": "AdminReturnsRes" - }, - "1647": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", - "qualifiedName": "__type" - }, - "1648": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/index.ts", "qualifiedName": "__type.return" }, - "1649": { + "1646": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/list-returns.ts", "qualifiedName": "AdminGetReturnsParams" }, - "1652": { + "1649": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/list-returns.ts", "qualifiedName": "AdminGetReturnsParams.limit" }, - "1653": { + "1650": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/list-returns.ts", "qualifiedName": "AdminGetReturnsParams.offset" }, - "1654": { + "1651": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/receive-return.ts", "qualifiedName": "AdminPostReturnsReturnReceiveReq" }, - "1657": { + "1654": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/receive-return.ts", "qualifiedName": "AdminPostReturnsReturnReceiveReq.items" }, - "1658": { + "1655": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/receive-return.ts", "qualifiedName": "AdminPostReturnsReturnReceiveReq.refund" }, - "1659": { + "1656": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/receive-return.ts", "qualifiedName": "AdminPostReturnsReturnReceiveReq.location_id" }, - "1660": { + "1657": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", "qualifiedName": "AdminReservationsRes" }, + "1658": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", + "qualifiedName": "__type" + }, + "1659": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", + "qualifiedName": "__type.reservation" + }, + "1660": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", + "qualifiedName": "ExtendedReservationItem" + }, "1661": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", "qualifiedName": "__type" }, "1662": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", - "qualifiedName": "__type.reservation" + "qualifiedName": "__type.line_item" }, "1663": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", - "qualifiedName": "ExtendedReservationItem" + "qualifiedName": "__type.inventory_item" }, "1664": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", - "qualifiedName": "__type" + "qualifiedName": "AdminReservationsListRes" }, "1665": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", - "qualifiedName": "__type.line_item" + "qualifiedName": "__type" }, "1666": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", - "qualifiedName": "__type.inventory_item" + "qualifiedName": "__type.reservations" }, "1667": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", - "qualifiedName": "AdminReservationsListRes" + "qualifiedName": "defaultAdminReservationRelations" }, "1668": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", - "qualifiedName": "__type" + "qualifiedName": "defaultReservationFields" }, "1669": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", - "qualifiedName": "__type.reservations" - }, - "1670": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", - "qualifiedName": "defaultAdminReservationRelations" - }, - "1671": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", - "qualifiedName": "defaultReservationFields" - }, - "1672": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/index.ts", "qualifiedName": "AdminReservationsDeleteRes" }, - "1673": { + "1670": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/create-reservation.ts", "qualifiedName": "AdminPostReservationsReq" }, - "1676": { + "1673": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/create-reservation.ts", "qualifiedName": "AdminPostReservationsReq.line_item_id" }, - "1677": { + "1674": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/create-reservation.ts", "qualifiedName": "AdminPostReservationsReq.location_id" }, - "1678": { + "1675": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/create-reservation.ts", "qualifiedName": "AdminPostReservationsReq.inventory_item_id" }, - "1679": { + "1676": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/create-reservation.ts", "qualifiedName": "AdminPostReservationsReq.quantity" }, - "1680": { + "1677": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/create-reservation.ts", "qualifiedName": "AdminPostReservationsReq.description" }, - "1681": { + "1678": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/create-reservation.ts", "qualifiedName": "AdminPostReservationsReq.metadata" }, - "1682": { + "1679": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/list-reservations.ts", "qualifiedName": "AdminGetReservationsParams" }, - "1683": { + "1680": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type.__new" }, - "1684": { + "1681": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "AdminGetReservationsParams" }, - "1685": { + "1682": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "args" }, - "1686": { + "1683": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/list-reservations.ts", "qualifiedName": "AdminGetReservationsParams.location_id" }, - "1687": { + "1684": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/list-reservations.ts", "qualifiedName": "AdminGetReservationsParams.inventory_item_id" }, - "1688": { + "1685": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/list-reservations.ts", "qualifiedName": "AdminGetReservationsParams.line_item_id" }, - "1689": { + "1686": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/list-reservations.ts", "qualifiedName": "AdminGetReservationsParams.created_by" }, - "1690": { + "1687": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/list-reservations.ts", "qualifiedName": "AdminGetReservationsParams.quantity" }, - "1691": { + "1688": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/list-reservations.ts", "qualifiedName": "AdminGetReservationsParams.created_at" }, - "1692": { + "1689": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/list-reservations.ts", "qualifiedName": "AdminGetReservationsParams.description" }, - "1693": { + "1690": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1694": { + "1691": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1695": { + "1692": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.offset" }, - "1696": { + "1693": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.limit" }, - "1697": { + "1694": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/update-reservation.ts", "qualifiedName": "AdminPostReservationsReservationReq" }, - "1700": { + "1697": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/update-reservation.ts", "qualifiedName": "AdminPostReservationsReservationReq.quantity" }, - "1701": { + "1698": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/update-reservation.ts", "qualifiedName": "AdminPostReservationsReservationReq.location_id" }, - "1702": { + "1699": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/update-reservation.ts", "qualifiedName": "AdminPostReservationsReservationReq.description" }, - "1703": { + "1700": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/reservations/update-reservation.ts", "qualifiedName": "AdminPostReservationsReservationReq.metadata" }, - "1704": { + "1701": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/index.ts", "qualifiedName": "AdminSalesChannelsRes" }, - "1705": { + "1702": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/index.ts", "qualifiedName": "__type" }, - "1706": { + "1703": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/index.ts", "qualifiedName": "__type.sales_channel" }, - "1707": { + "1704": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/index.ts", "qualifiedName": "AdminSalesChannelsDeleteRes" }, - "1708": { + "1705": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/index.ts", "qualifiedName": "AdminSalesChannelsDeleteLocationRes" }, - "1709": { + "1706": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/index.ts", "qualifiedName": "AdminSalesChannelsListRes" }, - "1710": { + "1707": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/index.ts", "qualifiedName": "__type" }, - "1711": { + "1708": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/index.ts", "qualifiedName": "__type.sales_channels" }, - "1712": { + "1709": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/add-product-batch.ts", "qualifiedName": "AdminPostSalesChannelsChannelProductsBatchReq" }, - "1715": { + "1712": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/add-product-batch.ts", "qualifiedName": "AdminPostSalesChannelsChannelProductsBatchReq.product_ids" }, - "1716": { + "1713": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/create-sales-channel.ts", "qualifiedName": "AdminPostSalesChannelsReq" }, - "1719": { + "1716": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/create-sales-channel.ts", "qualifiedName": "AdminPostSalesChannelsReq.name" }, - "1720": { + "1717": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/create-sales-channel.ts", "qualifiedName": "AdminPostSalesChannelsReq.description" }, - "1721": { + "1718": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/create-sales-channel.ts", "qualifiedName": "AdminPostSalesChannelsReq.is_disabled" }, - "1722": { + "1719": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/delete-products-batch.ts", "qualifiedName": "AdminDeleteSalesChannelsChannelProductsBatchReq" }, - "1725": { + "1722": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/delete-products-batch.ts", "qualifiedName": "AdminDeleteSalesChannelsChannelProductsBatchReq.product_ids" }, - "1726": { + "1723": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/list-sales-channels.ts", "qualifiedName": "AdminGetSalesChannelsParams" }, - "1727": { + "1724": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type.__new" }, - "1728": { + "1725": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "AdminGetSalesChannelsParams" }, - "1729": { + "1726": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "args" }, - "1730": { + "1727": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/list-sales-channels.ts", "qualifiedName": "AdminGetSalesChannelsParams.id" }, - "1731": { + "1728": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/list-sales-channels.ts", "qualifiedName": "AdminGetSalesChannelsParams.q" }, - "1732": { + "1729": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/list-sales-channels.ts", "qualifiedName": "AdminGetSalesChannelsParams.name" }, - "1733": { + "1730": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/list-sales-channels.ts", "qualifiedName": "AdminGetSalesChannelsParams.description" }, - "1734": { + "1731": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/list-sales-channels.ts", "qualifiedName": "AdminGetSalesChannelsParams.created_at" }, - "1735": { + "1732": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/list-sales-channels.ts", "qualifiedName": "AdminGetSalesChannelsParams.updated_at" }, - "1736": { + "1733": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/list-sales-channels.ts", "qualifiedName": "AdminGetSalesChannelsParams.deleted_at" }, - "1737": { + "1734": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/list-sales-channels.ts", "qualifiedName": "AdminGetSalesChannelsParams.order" }, - "1738": { + "1735": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1739": { + "1736": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1740": { + "1737": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.offset" }, - "1741": { + "1738": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.limit" }, - "1742": { + "1739": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/update-sales-channel.ts", "qualifiedName": "AdminPostSalesChannelsSalesChannelReq" }, - "1745": { + "1742": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/update-sales-channel.ts", "qualifiedName": "AdminPostSalesChannelsSalesChannelReq.name" }, - "1746": { + "1743": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/update-sales-channel.ts", "qualifiedName": "AdminPostSalesChannelsSalesChannelReq.description" }, - "1747": { + "1744": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/update-sales-channel.ts", "qualifiedName": "AdminPostSalesChannelsSalesChannelReq.is_disabled" }, - "1748": { + "1745": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/associate-stock-location.ts", "qualifiedName": "AdminPostSalesChannelsChannelStockLocationsReq" }, - "1751": { + "1748": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/associate-stock-location.ts", "qualifiedName": "AdminPostSalesChannelsChannelStockLocationsReq.location_id" }, - "1752": { + "1749": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/remove-stock-location.ts", "qualifiedName": "AdminDeleteSalesChannelsChannelStockLocationsReq" }, - "1755": { + "1752": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/sales-channels/remove-stock-location.ts", "qualifiedName": "AdminDeleteSalesChannelsChannelStockLocationsReq.location_id" }, - "1756": { + "1753": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/index.ts", "qualifiedName": "defaultFields" }, - "1757": { + "1754": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/index.ts", "qualifiedName": "AdminShippingOptionsListRes" }, + "1755": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/index.ts", + "qualifiedName": "__type" + }, + "1756": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/index.ts", + "qualifiedName": "__type.shipping_options" + }, + "1757": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/index.ts", + "qualifiedName": "AdminShippingOptionsRes" + }, "1758": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/index.ts", "qualifiedName": "__type" }, "1759": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/index.ts", - "qualifiedName": "__type.shipping_options" + "qualifiedName": "__type.shipping_option" }, "1760": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/index.ts", - "qualifiedName": "AdminShippingOptionsRes" - }, - "1761": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/index.ts", - "qualifiedName": "__type" - }, - "1762": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/index.ts", - "qualifiedName": "__type.shipping_option" - }, - "1763": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/index.ts", "qualifiedName": "AdminShippingOptionsDeleteRes" }, - "1764": { + "1761": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsReq" }, - "1767": { + "1764": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsReq.name" }, - "1768": { + "1765": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsReq.region_id" }, - "1769": { + "1766": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsReq.provider_id" }, - "1770": { + "1767": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsReq.profile_id" }, - "1771": { + "1768": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsReq.data" }, - "1772": { + "1769": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsReq.price_type" }, - "1773": { + "1770": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsReq.amount" }, - "1774": { + "1771": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsReq.requirements" }, - "1775": { + "1772": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsReq.admin_only" }, - "1776": { + "1773": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsReq.is_return" }, - "1777": { + "1774": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsReq.metadata" }, - "1778": { + "1775": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsReq.includes_tax" }, - "1779": { + "1776": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/list-shipping-options.ts", "qualifiedName": "AdminGetShippingOptionsParams" }, - "1782": { + "1779": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/list-shipping-options.ts", "qualifiedName": "AdminGetShippingOptionsParams.region_id" }, - "1783": { + "1780": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/list-shipping-options.ts", "qualifiedName": "AdminGetShippingOptionsParams.is_return" }, - "1784": { + "1781": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/list-shipping-options.ts", "qualifiedName": "AdminGetShippingOptionsParams.admin_only" }, - "1785": { + "1782": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/update-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsOptionReq" }, - "1788": { + "1785": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/update-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsOptionReq.name" }, - "1789": { + "1786": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/update-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsOptionReq.amount" }, - "1790": { + "1787": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/update-shipping-option.ts", + "qualifiedName": "AdminPostShippingOptionsOptionReq.price_type" + }, + "1788": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/update-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsOptionReq.requirements" }, - "1791": { + "1789": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/update-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsOptionReq.admin_only" }, - "1792": { + "1790": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/update-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsOptionReq.metadata" }, - "1793": { + "1791": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/update-shipping-option.ts", "qualifiedName": "AdminPostShippingOptionsOptionReq.includes_tax" }, - "1794": { + "1792": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/index.ts", "qualifiedName": "defaultAdminShippingProfilesFields" }, - "1795": { + "1793": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/index.ts", "qualifiedName": "defaultAdminShippingProfilesRelations" }, - "1796": { + "1794": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/index.ts", "qualifiedName": "AdminDeleteShippingProfileRes" }, - "1797": { + "1795": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/index.ts", "qualifiedName": "AdminShippingProfilesRes" }, - "1798": { + "1796": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/index.ts", "qualifiedName": "__type" }, - "1799": { + "1797": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/index.ts", "qualifiedName": "__type.shipping_profile" }, - "1800": { + "1798": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/index.ts", "qualifiedName": "AdminShippingProfilesListRes" }, - "1801": { + "1799": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/index.ts", "qualifiedName": "__type" }, - "1802": { + "1800": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/index.ts", "qualifiedName": "__type.shipping_profiles" }, - "1803": { + "1801": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/create-shipping-profile.ts", "qualifiedName": "AdminPostShippingProfilesReq" }, - "1806": { + "1804": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/create-shipping-profile.ts", "qualifiedName": "AdminPostShippingProfilesReq.name" }, - "1807": { + "1805": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/create-shipping-profile.ts", "qualifiedName": "AdminPostShippingProfilesReq.type" }, - "1808": { + "1806": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/create-shipping-profile.ts", "qualifiedName": "AdminPostShippingProfilesReq.metadata" }, - "1809": { + "1807": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/update-shipping-profile.ts", "qualifiedName": "AdminPostShippingProfilesProfileReq" }, - "1812": { + "1810": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/update-shipping-profile.ts", "qualifiedName": "AdminPostShippingProfilesProfileReq.name" }, - "1813": { + "1811": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/update-shipping-profile.ts", "qualifiedName": "AdminPostShippingProfilesProfileReq.metadata" }, - "1814": { + "1812": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/update-shipping-profile.ts", "qualifiedName": "AdminPostShippingProfilesProfileReq.type" }, - "1815": { + "1813": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/update-shipping-profile.ts", "qualifiedName": "AdminPostShippingProfilesProfileReq.products" }, - "1816": { + "1814": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-profiles/update-shipping-profile.ts", "qualifiedName": "AdminPostShippingProfilesProfileReq.shipping_options" }, - "1817": { + "1815": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/index.ts", "qualifiedName": "defaultAdminStockLocationFields" }, - "1818": { + "1816": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/index.ts", "qualifiedName": "defaultAdminStockLocationRelations" }, - "1819": { + "1817": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/index.ts", "qualifiedName": "AdminStockLocationsDeleteRes" }, - "1820": { + "1818": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/index.ts", "qualifiedName": "AdminStockLocationsRes" }, - "1821": { + "1819": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/index.ts", "qualifiedName": "__type" }, - "1822": { + "1820": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/index.ts", "qualifiedName": "__type.stock_location" }, - "1823": { + "1821": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/index.ts", "qualifiedName": "AdminStockLocationsListRes" }, - "1824": { + "1822": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/index.ts", "qualifiedName": "__type" }, - "1825": { + "1823": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/index.ts", "qualifiedName": "__type.stock_locations" }, - "1826": { + "1824": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "AdminPostStockLocationsReq" }, - "1829": { + "1827": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "AdminPostStockLocationsReq.name" }, - "1830": { + "1828": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "AdminPostStockLocationsReq.address" }, - "1831": { + "1829": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "AdminPostStockLocationsReq.address_id" }, - "1832": { + "1830": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "AdminPostStockLocationsReq.metadata" }, - "1833": { + "1831": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "AdminPostStockLocationsParams" }, - "1836": { + "1834": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1837": { + "1835": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1838": { + "1836": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/get-stock-location.ts", "qualifiedName": "AdminGetStockLocationsLocationParams" }, - "1841": { + "1839": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1842": { + "1840": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1843": { + "1841": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/list-stock-locations.ts", "qualifiedName": "AdminGetStockLocationsParams" }, + "1842": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__type.__new" + }, + "1843": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "AdminGetStockLocationsParams" + }, "1844": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.__new" - }, - "1845": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "AdminGetStockLocationsParams" - }, - "1846": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "args" }, - "1847": { + "1845": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/list-stock-locations.ts", "qualifiedName": "AdminGetStockLocationsParams.id" }, - "1848": { + "1846": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/list-stock-locations.ts", "qualifiedName": "AdminGetStockLocationsParams.name" }, - "1849": { + "1847": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/list-stock-locations.ts", "qualifiedName": "AdminGetStockLocationsParams.address_id" }, - "1850": { + "1848": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/list-stock-locations.ts", "qualifiedName": "AdminGetStockLocationsParams.sales_channel_id" }, - "1851": { + "1849": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1852": { + "1850": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1853": { + "1851": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.offset" }, - "1854": { + "1852": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.limit" }, - "1855": { + "1853": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "AdminPostStockLocationsLocationReq" }, - "1858": { + "1856": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "AdminPostStockLocationsLocationReq.name" }, - "1859": { + "1857": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "AdminPostStockLocationsLocationReq.address" }, - "1860": { + "1858": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "AdminPostStockLocationsLocationReq.address_id" }, - "1861": { + "1859": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "AdminPostStockLocationsLocationReq.metadata" }, - "1862": { + "1860": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "AdminPostStockLocationsLocationParams" }, - "1865": { + "1863": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "1866": { + "1864": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "1867": { + "1865": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/index.ts", "qualifiedName": "defaultRelationsExtended" }, - "1868": { + "1866": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/index.ts", "qualifiedName": "AdminExtendedStoresRes" }, - "1869": { + "1867": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/index.ts", "qualifiedName": "__type" }, - "1870": { + "1868": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/index.ts", "qualifiedName": "__type.store" }, - "1871": { + "1869": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/index.ts", "qualifiedName": "AdminStoresRes" }, - "1872": { + "1870": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/index.ts", "qualifiedName": "__type" }, - "1873": { + "1871": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/index.ts", "qualifiedName": "__type.store" }, - "1874": { + "1872": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/index.ts", "qualifiedName": "AdminTaxProvidersList" }, - "1875": { + "1873": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/index.ts", "qualifiedName": "__type" }, - "1876": { + "1874": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/index.ts", "qualifiedName": "__type.tax_providers" }, - "1877": { + "1875": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/index.ts", "qualifiedName": "AdminPaymentProvidersList" }, - "1878": { + "1876": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/index.ts", "qualifiedName": "__type" }, - "1879": { + "1877": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/index.ts", "qualifiedName": "__type.payment_providers" }, - "1880": { + "1878": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/update-store.ts", "qualifiedName": "AdminPostStoreReq" }, - "1883": { + "1881": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/update-store.ts", "qualifiedName": "AdminPostStoreReq.name" }, - "1884": { + "1882": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/update-store.ts", "qualifiedName": "AdminPostStoreReq.swap_link_template" }, - "1885": { + "1883": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/update-store.ts", "qualifiedName": "AdminPostStoreReq.payment_link_template" }, - "1886": { + "1884": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/update-store.ts", "qualifiedName": "AdminPostStoreReq.invite_link_template" }, - "1887": { + "1885": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/update-store.ts", "qualifiedName": "AdminPostStoreReq.default_currency_code" }, - "1888": { + "1886": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/update-store.ts", "qualifiedName": "AdminPostStoreReq.currencies" }, - "1889": { + "1887": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/store/update-store.ts", "qualifiedName": "AdminPostStoreReq.metadata" }, - "1890": { + "1888": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/swaps/index.ts", "qualifiedName": "defaultAdminSwapRelations" }, - "1891": { + "1889": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/swaps/index.ts", "qualifiedName": "defaultAdminSwapFields" }, - "1892": { + "1890": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/swaps/index.ts", "qualifiedName": "AdminSwapsListRes" }, - "1893": { + "1891": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/swaps/index.ts", "qualifiedName": "__type" }, - "1894": { + "1892": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/swaps/index.ts", "qualifiedName": "__type.swaps" }, - "1895": { + "1893": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/swaps/index.ts", "qualifiedName": "AdminSwapsRes" }, - "1896": { + "1894": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/swaps/index.ts", "qualifiedName": "__type" }, - "1897": { + "1895": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/swaps/index.ts", "qualifiedName": "__type.swap" }, - "1898": { + "1896": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/swaps/list-swaps.ts", "qualifiedName": "AdminGetSwapsParams" }, - "1901": { + "1899": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/swaps/list-swaps.ts", "qualifiedName": "AdminGetSwapsParams.limit" }, - "1902": { + "1900": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/swaps/list-swaps.ts", "qualifiedName": "AdminGetSwapsParams.offset" }, - "1903": { + "1901": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/index.ts", "qualifiedName": "defaultAdminTaxRatesRelations" }, - "1904": { + "1902": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/index.ts", "qualifiedName": "defaultAdminTaxRatesFields" }, - "1905": { + "1903": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/index.ts", "qualifiedName": "AdminTaxRatesDeleteRes" }, - "1906": { + "1904": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/index.ts", "qualifiedName": "AdminTaxRatesListRes" }, - "1907": { + "1905": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/index.ts", "qualifiedName": "__type" }, - "1908": { + "1906": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/index.ts", "qualifiedName": "__type.tax_rates" }, - "1909": { + "1907": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/index.ts", "qualifiedName": "AdminTaxRatesRes" }, - "1910": { + "1908": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/index.ts", "qualifiedName": "__type" }, - "1911": { + "1909": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/index.ts", "qualifiedName": "__type.tax_rate" }, - "1912": { + "1910": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/list-tax-rates.ts", "qualifiedName": "AdminGetTaxRatesParams" }, - "1915": { + "1913": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/list-tax-rates.ts", "qualifiedName": "AdminGetTaxRatesParams.region_id" }, - "1916": { + "1914": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/list-tax-rates.ts", "qualifiedName": "AdminGetTaxRatesParams.name" }, - "1917": { + "1915": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/list-tax-rates.ts", "qualifiedName": "AdminGetTaxRatesParams.code" }, - "1918": { + "1916": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/list-tax-rates.ts", "qualifiedName": "AdminGetTaxRatesParams.rate" }, - "1919": { + "1917": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/list-tax-rates.ts", "qualifiedName": "AdminGetTaxRatesParams.offset" }, - "1920": { + "1918": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/list-tax-rates.ts", "qualifiedName": "AdminGetTaxRatesParams.limit" }, - "1921": { + "1919": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/list-tax-rates.ts", "qualifiedName": "AdminGetTaxRatesParams.expand" }, - "1922": { + "1920": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/list-tax-rates.ts", "qualifiedName": "AdminGetTaxRatesParams.fields" }, - "1923": { + "1921": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/get-tax-rate.ts", "qualifiedName": "AdminGetTaxRatesTaxRateParams" }, - "1926": { + "1924": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/get-tax-rate.ts", "qualifiedName": "AdminGetTaxRatesTaxRateParams.expand" }, - "1927": { + "1925": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/get-tax-rate.ts", "qualifiedName": "AdminGetTaxRatesTaxRateParams.fields" }, - "1928": { + "1926": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-product-types.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateProductTypesReq" }, - "1931": { + "1929": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-product-types.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateProductTypesReq.product_types" }, - "1932": { + "1930": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-product-types.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateProductTypesParams" }, - "1935": { + "1933": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-product-types.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateProductTypesParams.expand" }, - "1936": { + "1934": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-product-types.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateProductTypesParams.fields" }, - "1937": { + "1935": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-products.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateProductsReq" }, - "1940": { + "1938": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-products.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateProductsReq.products" }, - "1941": { + "1939": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-products.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateProductsParams" }, - "1944": { + "1942": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-products.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateProductsParams.expand" }, - "1945": { + "1943": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-products.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateProductsParams.fields" }, - "1946": { + "1944": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-shipping-options.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateShippingOptionsReq" }, - "1949": { + "1947": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-shipping-options.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateShippingOptionsReq.shipping_options" }, - "1950": { + "1948": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-shipping-options.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateShippingOptionsParams" }, - "1953": { + "1951": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-shipping-options.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateShippingOptionsParams.expand" }, - "1954": { + "1952": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/remove-from-shipping-options.ts", "qualifiedName": "AdminDeleteTaxRatesTaxRateShippingOptionsParams.fields" }, - "1955": { + "1953": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-product-types.ts", "qualifiedName": "AdminPostTaxRatesTaxRateProductTypesReq" }, - "1958": { + "1956": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-product-types.ts", "qualifiedName": "AdminPostTaxRatesTaxRateProductTypesReq.product_types" }, - "1959": { + "1957": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-product-types.ts", "qualifiedName": "AdminPostTaxRatesTaxRateProductTypesParams" }, - "1962": { + "1960": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-product-types.ts", "qualifiedName": "AdminPostTaxRatesTaxRateProductTypesParams.expand" }, - "1963": { + "1961": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-product-types.ts", "qualifiedName": "AdminPostTaxRatesTaxRateProductTypesParams.fields" }, - "1964": { + "1962": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-products.ts", "qualifiedName": "AdminPostTaxRatesTaxRateProductsReq" }, - "1967": { + "1965": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-products.ts", "qualifiedName": "AdminPostTaxRatesTaxRateProductsReq.products" }, - "1968": { + "1966": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-products.ts", "qualifiedName": "AdminPostTaxRatesTaxRateProductsParams" }, - "1971": { + "1969": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-products.ts", "qualifiedName": "AdminPostTaxRatesTaxRateProductsParams.expand" }, - "1972": { + "1970": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-products.ts", "qualifiedName": "AdminPostTaxRatesTaxRateProductsParams.fields" }, - "1973": { + "1971": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-shipping-options.ts", "qualifiedName": "AdminPostTaxRatesTaxRateShippingOptionsReq" }, - "1976": { + "1974": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-shipping-options.ts", "qualifiedName": "AdminPostTaxRatesTaxRateShippingOptionsReq.shipping_options" }, - "1977": { + "1975": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-shipping-options.ts", "qualifiedName": "AdminPostTaxRatesTaxRateShippingOptionsParams" }, - "1980": { + "1978": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-shipping-options.ts", "qualifiedName": "AdminPostTaxRatesTaxRateShippingOptionsParams.expand" }, - "1981": { + "1979": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/add-to-shipping-options.ts", "qualifiedName": "AdminPostTaxRatesTaxRateShippingOptionsParams.fields" }, - "1982": { + "1980": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/create-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesReq" }, - "1985": { + "1983": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/create-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesReq.code" }, - "1986": { + "1984": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/create-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesReq.name" }, - "1987": { + "1985": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/create-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesReq.region_id" }, - "1988": { + "1986": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/create-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesReq.rate" }, - "1989": { + "1987": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/create-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesReq.products" }, - "1990": { + "1988": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/create-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesReq.shipping_options" }, - "1991": { + "1989": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/create-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesReq.product_types" }, - "1992": { + "1990": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/create-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesParams" }, - "1995": { + "1993": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/create-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesParams.expand" }, - "1996": { + "1994": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/create-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesParams.fields" }, - "1997": { + "1995": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/update-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesTaxRateReq" }, - "2000": { + "1998": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/update-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesTaxRateReq.code" }, - "2001": { + "1999": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/update-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesTaxRateReq.name" }, - "2002": { + "2000": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/update-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesTaxRateReq.region_id" }, - "2003": { + "2001": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/update-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesTaxRateReq.rate" }, - "2004": { + "2002": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/update-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesTaxRateReq.products" }, - "2005": { + "2003": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/update-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesTaxRateReq.shipping_options" }, - "2006": { + "2004": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/update-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesTaxRateReq.product_types" }, - "2007": { + "2005": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/update-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesTaxRateParams" }, - "2010": { + "2008": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/update-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesTaxRateParams.expand" }, - "2011": { + "2009": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/tax-rates/update-tax-rate.ts", "qualifiedName": "AdminPostTaxRatesTaxRateParams.fields" }, - "2012": { + "2010": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/index.ts", "qualifiedName": "AdminUploadsRes" }, - "2013": { + "2011": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/index.ts", "qualifiedName": "__type" }, - "2014": { + "2012": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/index.ts", "qualifiedName": "__type.uploads" }, - "2015": { + "2013": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/index.ts", "qualifiedName": "AdminDeleteUploadsRes" }, - "2016": { + "2014": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/index.ts", "qualifiedName": "AdminUploadsDownloadUrlRes" }, - "2017": { + "2015": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/index.ts", "qualifiedName": "__type" }, - "2018": { + "2016": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/index.ts", "qualifiedName": "__type.download_url" }, - "2019": { + "2017": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/create-upload.ts", "qualifiedName": "IAdminPostUploadsFileReq" }, - "2022": { + "2020": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/create-upload.ts", "qualifiedName": "IAdminPostUploadsFileReq.originalName" }, - "2023": { + "2021": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/create-upload.ts", "qualifiedName": "IAdminPostUploadsFileReq.path" }, - "2024": { + "2022": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/delete-upload.ts", "qualifiedName": "AdminDeleteUploadsReq" }, - "2027": { + "2025": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/delete-upload.ts", "qualifiedName": "AdminDeleteUploadsReq.file_key" }, - "2028": { + "2026": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/get-download-url.ts", "qualifiedName": "AdminPostUploadsDownloadUrlReq" }, - "2031": { + "2029": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/uploads/get-download-url.ts", "qualifiedName": "AdminPostUploadsDownloadUrlReq.file_key" }, + "2030": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/index.ts", + "qualifiedName": "unauthenticatedUserRoutes" + }, + "2031": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/index.ts", + "qualifiedName": "unauthenticatedUserRoutes" + }, "2032": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/index.ts", - "qualifiedName": "unauthenticatedUserRoutes" - }, - "2033": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/index.ts", - "qualifiedName": "unauthenticatedUserRoutes" - }, - "2034": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/index.ts", "qualifiedName": "app" }, - "2035": { + "2033": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/index.ts", "qualifiedName": "AdminUserRes" }, - "2036": { + "2034": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/index.ts", "qualifiedName": "__type" }, - "2037": { + "2035": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/index.ts", "qualifiedName": "__type.user" }, - "2038": { + "2036": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/index.ts", "qualifiedName": "AdminUsersListRes" }, - "2039": { + "2037": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/index.ts", "qualifiedName": "__type" }, - "2040": { + "2038": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/index.ts", "qualifiedName": "__type.users" }, - "2041": { + "2039": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/index.ts", "qualifiedName": "AdminDeleteUserRes" }, - "2042": { + "2040": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/reset-password.ts", "qualifiedName": "payload" }, - "2043": { + "2041": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/reset-password.ts", "qualifiedName": "__type" }, - "2044": { + "2042": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/reset-password.ts", "qualifiedName": "__type.email" }, - "2045": { + "2043": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/reset-password.ts", "qualifiedName": "__type.user_id" }, - "2046": { + "2044": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/reset-password.ts", "qualifiedName": "__type.password" }, - "2047": { + "2045": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/reset-password.ts", "qualifiedName": "AdminResetPasswordRequest" }, - "2050": { + "2048": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/reset-password.ts", "qualifiedName": "AdminResetPasswordRequest.email" }, - "2051": { + "2049": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/reset-password.ts", "qualifiedName": "AdminResetPasswordRequest.token" }, - "2052": { + "2050": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/reset-password.ts", "qualifiedName": "AdminResetPasswordRequest.password" }, - "2053": { + "2051": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/reset-password-token.ts", "qualifiedName": "AdminResetPasswordTokenRequest" }, - "2056": { + "2054": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/reset-password-token.ts", "qualifiedName": "AdminResetPasswordTokenRequest.email" }, - "2057": { + "2055": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/create-user.ts", "qualifiedName": "AdminCreateUserRequest" }, - "2060": { + "2058": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/create-user.ts", "qualifiedName": "AdminCreateUserRequest.email" }, - "2061": { + "2059": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/create-user.ts", "qualifiedName": "AdminCreateUserRequest.first_name" }, - "2062": { + "2060": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/create-user.ts", "qualifiedName": "AdminCreateUserRequest.last_name" }, - "2063": { + "2061": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/create-user.ts", "qualifiedName": "AdminCreateUserRequest.role" }, - "2064": { + "2062": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/create-user.ts", "qualifiedName": "AdminCreateUserRequest.password" }, - "2065": { + "2063": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/update-user.ts", "qualifiedName": "AdminUpdateUserRequest" }, - "2068": { + "2066": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/update-user.ts", "qualifiedName": "AdminUpdateUserRequest.first_name" }, - "2069": { + "2067": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/update-user.ts", "qualifiedName": "AdminUpdateUserRequest.last_name" }, - "2070": { + "2068": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/update-user.ts", "qualifiedName": "AdminUpdateUserRequest.role" }, - "2071": { + "2069": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/update-user.ts", "qualifiedName": "AdminUpdateUserRequest.api_token" }, - "2072": { + "2070": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/users/update-user.ts", "qualifiedName": "AdminUpdateUserRequest.metadata" }, - "2073": { + "2071": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/index.ts", "qualifiedName": "defaultAdminVariantRelations" }, - "2074": { + "2072": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/index.ts", "qualifiedName": "defaultAdminVariantFields" }, - "2075": { + "2073": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/index.ts", "qualifiedName": "AdminVariantsListRes" }, - "2076": { + "2074": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/index.ts", "qualifiedName": "__type" }, - "2077": { + "2075": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/index.ts", "qualifiedName": "__type.variants" }, - "2078": { + "2076": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/index.ts", "qualifiedName": "AdminVariantsRes" }, - "2079": { + "2077": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/index.ts", "qualifiedName": "__type" }, - "2080": { + "2078": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/index.ts", "qualifiedName": "__type.variant" }, - "2081": { + "2079": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/list-variants.ts", "qualifiedName": "AdminGetVariantsParams" }, - "2084": { + "2082": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/list-variants.ts", "qualifiedName": "AdminGetVariantsParams.q" }, - "2085": { + "2083": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/list-variants.ts", "qualifiedName": "AdminGetVariantsParams.limit" }, - "2086": { + "2084": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/list-variants.ts", "qualifiedName": "AdminGetVariantsParams.offset" }, - "2087": { + "2085": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/list-variants.ts", "qualifiedName": "AdminGetVariantsParams.expand" }, - "2088": { + "2086": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/list-variants.ts", "qualifiedName": "AdminGetVariantsParams.fields" }, - "2089": { + "2087": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/list-variants.ts", "qualifiedName": "AdminGetVariantsParams.id" }, - "2090": { + "2088": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/list-variants.ts", "qualifiedName": "AdminGetVariantsParams.title" }, - "2091": { + "2089": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/list-variants.ts", "qualifiedName": "AdminGetVariantsParams.inventory_quantity" }, - "2092": { + "2090": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "AdminPriceSelectionParams.customer_id" }, - "2093": { + "2091": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.cart_id" }, - "2094": { + "2092": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.region_id" }, - "2095": { + "2093": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.currency_code" }, - "2096": { + "2094": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-variant.ts", "qualifiedName": "AdminGetVariantParams" }, - "2099": { + "2097": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "2100": { + "2098": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "2101": { + "2099": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "LevelWithAvailability" }, - "2102": { + "2100": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type" }, - "2103": { + "2101": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type.available_quantity" }, - "2104": { + "2102": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "ResponseInventoryItem" }, - "2105": { + "2103": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type" }, - "2106": { + "2104": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type.location_levels" }, - "2107": { + "2105": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "VariantInventory" }, - "2108": { + "2106": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type" }, - "2109": { + "2107": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type.id" }, - "2110": { + "2108": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type.inventory" }, - "2111": { + "2109": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type.sales_channel_availability" }, - "2112": { + "2110": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type" }, - "2113": { + "2111": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type.channel_name" }, - "2114": { + "2112": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type.channel_id" }, - "2115": { + "2113": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type.available_quantity" }, - "2116": { + "2114": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "AdminGetVariantsVariantInventoryRes" }, - "2117": { + "2115": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type" }, - "2118": { + "2116": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/variants/get-inventory.ts", "qualifiedName": "__type.variant" }, - "2119": { + "2117": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/auth/index.ts", "qualifiedName": "StoreAuthRes" }, - "2120": { + "2118": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/auth/index.ts", "qualifiedName": "__type" }, - "2121": { + "2119": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/auth/index.ts", "qualifiedName": "__type.customer" }, - "2122": { + "2120": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/auth/index.ts", "qualifiedName": "StoreBearerAuthRes" }, - "2123": { + "2121": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/auth/index.ts", "qualifiedName": "__type" }, - "2124": { + "2122": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/auth/index.ts", "qualifiedName": "__type.access_token" }, - "2125": { + "2123": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/auth/index.ts", "qualifiedName": "StoreGetAuthEmailRes" }, - "2126": { + "2124": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/auth/index.ts", "qualifiedName": "__type" }, - "2127": { + "2125": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/auth/index.ts", "qualifiedName": "__type.exists" }, - "2128": { + "2126": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/auth/create-session.ts", "qualifiedName": "StorePostAuthReq" }, - "2131": { + "2129": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/auth/create-session.ts", "qualifiedName": "StorePostAuthReq.email" }, - "2132": { + "2130": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/auth/create-session.ts", "qualifiedName": "StorePostAuthReq.password" }, - "2133": { + "2131": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", "qualifiedName": "defaultStoreCartFields" }, - "2134": { + "2132": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", "qualifiedName": "defaultStoreCartRelations" }, - "2135": { + "2133": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", "qualifiedName": "StoreCartsRes" }, - "2136": { + "2134": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", "qualifiedName": "__type" }, - "2137": { + "2135": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", "qualifiedName": "__type.cart" }, - "2138": { + "2136": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", "qualifiedName": "StoreCompleteCartRes" }, - "2139": { + "2137": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", "qualifiedName": "__type" }, + "2138": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", + "qualifiedName": "__type.type" + }, + "2139": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", + "qualifiedName": "__type.data" + }, "2140": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", - "qualifiedName": "__type.type" + "qualifiedName": "__type" }, "2141": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.type" }, "2142": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "2143": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", - "qualifiedName": "__type.type" + "qualifiedName": "__type" }, "2144": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.type" }, "2145": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", - "qualifiedName": "__type" - }, - "2146": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", - "qualifiedName": "__type.type" - }, - "2147": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/index.ts", "qualifiedName": "__type.data" }, - "2148": { + "2146": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/add-shipping-method.ts", "qualifiedName": "StorePostCartsCartShippingMethodReq" }, - "2151": { + "2149": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/add-shipping-method.ts", "qualifiedName": "StorePostCartsCartShippingMethodReq.option_id" }, - "2152": { + "2150": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/add-shipping-method.ts", "qualifiedName": "StorePostCartsCartShippingMethodReq.data" }, - "2153": { + "2151": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/create-cart.ts", "qualifiedName": "Item" }, - "2156": { + "2154": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/create-cart.ts", "qualifiedName": "Item.variant_id" }, - "2157": { + "2155": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/create-cart.ts", "qualifiedName": "Item.quantity" }, - "2158": { + "2156": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/create-cart.ts", "qualifiedName": "StorePostCartReq" }, - "2161": { + "2159": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/create-cart.ts", "qualifiedName": "StorePostCartReq.region_id" }, - "2162": { + "2160": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/create-cart.ts", "qualifiedName": "StorePostCartReq.country_code" }, - "2163": { + "2161": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/create-cart.ts", "qualifiedName": "StorePostCartReq.items" }, - "2164": { + "2162": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/create-cart.ts", "qualifiedName": "StorePostCartReq.context" }, - "2165": { + "2163": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/create-cart.ts", "qualifiedName": "StorePostCartReq.sales_channel_id" }, - "2166": { + "2164": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/create-line-item/index.ts", "qualifiedName": "StorePostCartsCartLineItemsReq" }, - "2169": { + "2167": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/create-line-item/index.ts", "qualifiedName": "StorePostCartsCartLineItemsReq.variant_id" }, - "2170": { + "2168": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/create-line-item/index.ts", "qualifiedName": "StorePostCartsCartLineItemsReq.quantity" }, - "2171": { + "2169": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/create-line-item/index.ts", "qualifiedName": "StorePostCartsCartLineItemsReq.metadata" }, - "2172": { + "2170": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/set-payment-session.ts", "qualifiedName": "StorePostCartsCartPaymentSessionReq" }, - "2175": { + "2173": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/set-payment-session.ts", "qualifiedName": "StorePostCartsCartPaymentSessionReq.provider_id" }, - "2176": { + "2174": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "StorePostCartsCartReq" }, - "2179": { + "2177": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "StorePostCartsCartReq.region_id" }, - "2180": { + "2178": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "StorePostCartsCartReq.country_code" }, - "2181": { + "2179": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "StorePostCartsCartReq.email" }, - "2182": { + "2180": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "StorePostCartsCartReq.billing_address" }, - "2183": { + "2181": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "StorePostCartsCartReq.shipping_address" }, - "2184": { + "2182": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "StorePostCartsCartReq.gift_cards" }, - "2185": { + "2183": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "StorePostCartsCartReq.discounts" }, - "2186": { + "2184": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "StorePostCartsCartReq.customer_id" }, - "2187": { + "2185": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "StorePostCartsCartReq.context" }, - "2188": { + "2186": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "StorePostCartsCartReq.sales_channel_id" }, - "2189": { + "2187": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-line-item.ts", "qualifiedName": "StorePostCartsCartLineItemsItemReq" }, - "2192": { + "2190": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-line-item.ts", "qualifiedName": "StorePostCartsCartLineItemsItemReq.quantity" }, - "2193": { + "2191": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-line-item.ts", "qualifiedName": "StorePostCartsCartLineItemsItemReq.metadata" }, - "2194": { + "2192": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-payment-session.ts", "qualifiedName": "StorePostCartsCartPaymentSessionUpdateReq" }, - "2197": { + "2195": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-payment-session.ts", "qualifiedName": "StorePostCartsCartPaymentSessionUpdateReq.data" }, - "2198": { + "2196": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/index.ts", "qualifiedName": "defaultStoreCollectionRelations" }, - "2199": { + "2197": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/index.ts", "qualifiedName": "allowedFields" }, - "2200": { + "2198": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/index.ts", "qualifiedName": "StoreCollectionsListRes" }, - "2201": { + "2199": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/index.ts", "qualifiedName": "__type" }, - "2202": { + "2200": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/index.ts", "qualifiedName": "__type.collections" }, - "2203": { + "2201": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/index.ts", "qualifiedName": "StoreCollectionsRes" }, - "2204": { + "2202": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/index.ts", "qualifiedName": "__type" }, - "2205": { + "2203": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/index.ts", "qualifiedName": "__type.collection" }, - "2206": { + "2204": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/list-collections.ts", "qualifiedName": "StoreGetCollectionsParams" }, - "2209": { + "2207": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/list-collections.ts", "qualifiedName": "StoreGetCollectionsParams.handle" }, - "2210": { + "2208": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/list-collections.ts", "qualifiedName": "StoreGetCollectionsParams.limit" }, - "2211": { + "2209": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/list-collections.ts", "qualifiedName": "StoreGetCollectionsParams.offset" }, - "2212": { + "2210": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/list-collections.ts", "qualifiedName": "StoreGetCollectionsParams.created_at" }, - "2213": { + "2211": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/collections/list-collections.ts", "qualifiedName": "StoreGetCollectionsParams.updated_at" }, - "2214": { + "2212": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "defaultStoreCustomersRelations" }, - "2215": { + "2213": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "defaultStoreCustomersFields" }, - "2216": { + "2214": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "allowedStoreCustomersRelations" }, - "2217": { + "2215": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "allowedStoreCustomersFields" }, - "2218": { + "2216": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "StoreCustomersRes" }, - "2219": { + "2217": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "__type" }, - "2220": { + "2218": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "__type.customer" }, - "2221": { + "2219": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "StoreCustomersResetPasswordRes" }, - "2222": { + "2220": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "__type" }, - "2223": { + "2221": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "__type.customer" }, - "2224": { + "2222": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "StoreCustomersListOrdersRes" }, - "2225": { + "2223": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "__type" }, - "2226": { + "2224": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "__type.orders" }, - "2227": { + "2225": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "StoreCustomersListPaymentMethodsRes" }, + "2226": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", + "qualifiedName": "__type" + }, + "2227": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", + "qualifiedName": "__type.payment_methods" + }, "2228": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "__type" }, "2229": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", - "qualifiedName": "__type.payment_methods" + "qualifiedName": "__type.provider_id" }, "2230": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", - "qualifiedName": "__type" - }, - "2231": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", - "qualifiedName": "__type.provider_id" - }, - "2232": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/index.ts", "qualifiedName": "__type.data" }, - "2233": { + "2231": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/create-address.ts", "qualifiedName": "StorePostCustomersCustomerAddressesReq" }, - "2236": { + "2234": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/create-address.ts", "qualifiedName": "StorePostCustomersCustomerAddressesReq.address" }, - "2237": { + "2235": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/create-customer.ts", "qualifiedName": "StorePostCustomersReq" }, - "2240": { + "2238": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/create-customer.ts", "qualifiedName": "StorePostCustomersReq.first_name" }, - "2241": { + "2239": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/create-customer.ts", "qualifiedName": "StorePostCustomersReq.last_name" }, - "2242": { + "2240": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/create-customer.ts", "qualifiedName": "StorePostCustomersReq.email" }, - "2243": { + "2241": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/create-customer.ts", "qualifiedName": "StorePostCustomersReq.password" }, - "2244": { + "2242": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/create-customer.ts", "qualifiedName": "StorePostCustomersReq.phone" }, - "2245": { + "2243": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersPaginationParams" }, - "2248": { + "2246": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersPaginationParams.limit" }, + "2247": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", + "qualifiedName": "StoreGetCustomersCustomerOrdersPaginationParams.offset" + }, + "2248": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", + "qualifiedName": "StoreGetCustomersCustomerOrdersPaginationParams.fields" + }, "2249": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", - "qualifiedName": "StoreGetCustomersCustomerOrdersPaginationParams.offset" + "qualifiedName": "StoreGetCustomersCustomerOrdersPaginationParams.expand" }, "2250": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", - "qualifiedName": "StoreGetCustomersCustomerOrdersPaginationParams.fields" - }, - "2251": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", - "qualifiedName": "StoreGetCustomersCustomerOrdersPaginationParams.expand" - }, - "2252": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams" }, - "2255": { + "2253": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.id" }, - "2256": { + "2254": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.q" }, - "2257": { + "2255": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.status" }, - "2258": { + "2256": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.fulfillment_status" }, - "2259": { + "2257": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.payment_status" }, - "2260": { + "2258": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.display_id" }, - "2261": { + "2259": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.cart_id" }, - "2262": { + "2260": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.email" }, - "2263": { + "2261": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.region_id" }, - "2264": { + "2262": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.currency_code" }, - "2265": { + "2263": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.tax_rate" }, - "2266": { + "2264": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.created_at" }, - "2267": { + "2265": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.updated_at" }, - "2268": { + "2266": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersParams.canceled_at" }, - "2269": { + "2267": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersPaginationParams.limit" }, - "2270": { + "2268": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersPaginationParams.offset" }, - "2271": { + "2269": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersPaginationParams.fields" }, - "2272": { + "2270": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/list-orders.ts", "qualifiedName": "StoreGetCustomersCustomerOrdersPaginationParams.expand" }, - "2273": { + "2271": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/reset-password.ts", "qualifiedName": "StorePostCustomersResetPasswordReq" }, - "2276": { + "2274": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/reset-password.ts", "qualifiedName": "StorePostCustomersResetPasswordReq.email" }, - "2277": { + "2275": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/reset-password.ts", "qualifiedName": "StorePostCustomersResetPasswordReq.token" }, - "2278": { + "2276": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/reset-password.ts", "qualifiedName": "StorePostCustomersResetPasswordReq.password" }, - "2279": { + "2277": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/reset-password-token.ts", "qualifiedName": "StorePostCustomersCustomerPasswordTokenReq" }, - "2282": { + "2280": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/reset-password-token.ts", "qualifiedName": "StorePostCustomersCustomerPasswordTokenReq.email" }, - "2283": { + "2281": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/update-address.ts", "qualifiedName": "StorePostCustomersCustomerAddressesAddressReq" }, - "2286": { + "2284": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "AddressPayload.first_name" }, - "2287": { + "2285": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "AddressPayload.last_name" }, - "2288": { + "2286": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "AddressPayload.phone" }, - "2289": { + "2287": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "AddressPayload.metadata" }, - "2290": { + "2288": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "AddressPayload.company" }, - "2291": { + "2289": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "AddressPayload.address_1" }, - "2292": { + "2290": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "AddressPayload.address_2" }, - "2293": { + "2291": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "AddressPayload.city" }, - "2294": { + "2292": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "AddressPayload.country_code" }, - "2295": { + "2293": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "AddressPayload.province" }, - "2296": { + "2294": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "AddressPayload.postal_code" }, - "2297": { + "2295": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/update-customer.ts", "qualifiedName": "StorePostCustomersCustomerReq" }, - "2300": { + "2298": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/update-customer.ts", "qualifiedName": "StorePostCustomersCustomerReq.billing_address" }, - "2301": { + "2299": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/update-customer.ts", "qualifiedName": "StorePostCustomersCustomerReq.first_name" }, - "2302": { + "2300": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/update-customer.ts", "qualifiedName": "StorePostCustomersCustomerReq.last_name" }, - "2303": { + "2301": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/update-customer.ts", "qualifiedName": "StorePostCustomersCustomerReq.password" }, - "2304": { + "2302": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/update-customer.ts", "qualifiedName": "StorePostCustomersCustomerReq.phone" }, - "2305": { + "2303": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/update-customer.ts", "qualifiedName": "StorePostCustomersCustomerReq.email" }, - "2306": { + "2304": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/customers/update-customer.ts", "qualifiedName": "StorePostCustomersCustomerReq.metadata" }, - "2307": { + "2305": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/gift-cards/index.ts", "qualifiedName": "defaultStoreGiftCardRelations" }, - "2308": { + "2306": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/gift-cards/index.ts", "qualifiedName": "defaultStoreGiftCardFields" }, - "2309": { + "2307": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/gift-cards/index.ts", "qualifiedName": "allowedStoreGiftCardRelations" }, - "2310": { + "2308": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/gift-cards/index.ts", "qualifiedName": "allowedStoreGiftCardFields" }, - "2311": { + "2309": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/gift-cards/index.ts", "qualifiedName": "StoreGiftCardsRes" }, - "2312": { + "2310": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/gift-cards/index.ts", "qualifiedName": "__type" }, - "2313": { + "2311": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/gift-cards/index.ts", "qualifiedName": "__type.gift_card" }, - "2314": { + "2312": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/order-edits/index.ts", "qualifiedName": "StoreOrderEditsRes" }, - "2315": { + "2313": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/order-edits/index.ts", "qualifiedName": "__type" }, - "2316": { + "2314": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/order-edits/index.ts", "qualifiedName": "__type.order_edit" }, - "2317": { + "2315": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/order-edits/decline-order-edit.ts", "qualifiedName": "StorePostOrderEditsOrderEditDecline" }, - "2320": { + "2318": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/order-edits/decline-order-edit.ts", "qualifiedName": "StorePostOrderEditsOrderEditDecline.declined_reason" }, - "2321": { + "2319": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/index.ts", "qualifiedName": "defaultStoreOrdersRelations" }, - "2322": { + "2320": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/index.ts", "qualifiedName": "allowedStoreOrdersRelations" }, - "2323": { + "2321": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/index.ts", "qualifiedName": "defaultStoreOrdersFields" }, - "2324": { + "2322": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/index.ts", "qualifiedName": "allowedStoreOrdersFields" }, - "2325": { + "2323": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/index.ts", "qualifiedName": "StoreOrdersRes" }, - "2326": { + "2324": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/index.ts", "qualifiedName": "__type" }, - "2327": { + "2325": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/index.ts", "qualifiedName": "__type.order" }, - "2328": { + "2326": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/confirm-order-request.ts", "qualifiedName": "StorePostCustomersCustomerAcceptClaimReq" }, - "2331": { + "2329": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/confirm-order-request.ts", "qualifiedName": "StorePostCustomersCustomerAcceptClaimReq.token" }, - "2332": { + "2330": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/lookup-order.ts", "qualifiedName": "ShippingAddressPayload" }, - "2335": { + "2333": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/lookup-order.ts", "qualifiedName": "ShippingAddressPayload.postal_code" }, - "2336": { + "2334": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/lookup-order.ts", "qualifiedName": "StoreGetOrdersParams" }, - "2339": { + "2337": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/lookup-order.ts", "qualifiedName": "StoreGetOrdersParams.display_id" }, - "2340": { + "2338": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/lookup-order.ts", "qualifiedName": "StoreGetOrdersParams.email" }, - "2341": { + "2339": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/lookup-order.ts", "qualifiedName": "StoreGetOrdersParams.shipping_address" }, - "2342": { + "2340": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "2343": { + "2341": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "2344": { + "2342": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/request-order.ts", "qualifiedName": "StorePostCustomersCustomerOrderClaimReq" }, - "2347": { + "2345": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/orders/request-order.ts", "qualifiedName": "StorePostCustomersCustomerOrderClaimReq.order_ids" }, - "2348": { + "2346": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/index.ts", "qualifiedName": "defaultPaymentCollectionRelations" }, - "2349": { + "2347": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/index.ts", "qualifiedName": "StorePaymentCollectionsRes" }, - "2350": { + "2348": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/index.ts", "qualifiedName": "__type" }, - "2351": { + "2349": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/index.ts", "qualifiedName": "__type.payment_collection" }, - "2352": { + "2350": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/index.ts", "qualifiedName": "StorePaymentCollectionsSessionRes" }, - "2353": { + "2351": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/index.ts", "qualifiedName": "__type" }, - "2354": { + "2352": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/index.ts", "qualifiedName": "__type.payment_session" }, - "2355": { + "2353": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/authorize-batch-payment-sessions.ts", "qualifiedName": "StorePostPaymentCollectionsBatchSessionsAuthorizeReq" }, - "2358": { + "2356": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/authorize-batch-payment-sessions.ts", "qualifiedName": "StorePostPaymentCollectionsBatchSessionsAuthorizeReq.session_ids" }, - "2359": { + "2357": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/get-payment-collection.ts", "qualifiedName": "StoreGetPaymentCollectionsParams" }, - "2362": { + "2360": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "2363": { + "2361": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "2364": { + "2362": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/manage-batch-payment-sessions.ts", "qualifiedName": "StorePostPaymentCollectionsSessionsReq" }, - "2367": { + "2365": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/manage-batch-payment-sessions.ts", "qualifiedName": "StorePostPaymentCollectionsSessionsReq.provider_id" }, - "2368": { + "2366": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/manage-batch-payment-sessions.ts", "qualifiedName": "StorePostPaymentCollectionsSessionsReq.amount" }, - "2369": { + "2367": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/manage-batch-payment-sessions.ts", "qualifiedName": "StorePostPaymentCollectionsSessionsReq.session_id" }, - "2370": { + "2368": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/manage-batch-payment-sessions.ts", "qualifiedName": "StorePostPaymentCollectionsBatchSessionsReq" }, - "2373": { + "2371": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/manage-batch-payment-sessions.ts", "qualifiedName": "StorePostPaymentCollectionsBatchSessionsReq.sessions" }, - "2374": { + "2372": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/manage-payment-session.ts", "qualifiedName": "StorePaymentCollectionSessionsReq" }, - "2377": { + "2375": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/payment-collections/manage-payment-session.ts", "qualifiedName": "StorePaymentCollectionSessionsReq.provider_id" }, - "2378": { + "2376": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/index.ts", "qualifiedName": "defaultStoreProductCategoryRelations" }, - "2379": { + "2377": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/index.ts", "qualifiedName": "defaultStoreCategoryScope" }, - "2380": { + "2378": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/index.ts", "qualifiedName": "__object" }, - "2381": { + "2379": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/index.ts", "qualifiedName": "__object.is_internal" }, - "2382": { + "2380": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/index.ts", "qualifiedName": "__object.is_active" }, - "2383": { + "2381": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/index.ts", "qualifiedName": "defaultStoreProductCategoryFields" }, - "2384": { + "2382": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/index.ts", "qualifiedName": "allowedStoreProductCategoryFields" }, - "2385": { + "2383": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/index.ts", "qualifiedName": "StoreGetProductCategoriesCategoryRes" }, - "2386": { + "2384": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/index.ts", "qualifiedName": "__type" }, - "2387": { + "2385": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/index.ts", "qualifiedName": "__type.product_category" }, - "2388": { + "2386": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/index.ts", "qualifiedName": "StoreGetProductCategoriesRes" }, - "2389": { + "2387": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/index.ts", "qualifiedName": "__type" }, - "2390": { + "2388": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/index.ts", "qualifiedName": "__type.product_categories" }, - "2391": { + "2389": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/get-product-category.ts", "qualifiedName": "StoreGetProductCategoriesCategoryParams" }, - "2394": { + "2392": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "2395": { + "2393": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "2396": { + "2394": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/list-product-categories.ts", "qualifiedName": "StoreGetProductCategoriesParams" }, + "2395": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__type.__new" + }, + "2396": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "StoreGetProductCategoriesParams" + }, "2397": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.__new" - }, - "2398": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "StoreGetProductCategoriesParams" - }, - "2399": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "args" }, - "2400": { + "2398": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/list-product-categories.ts", "qualifiedName": "StoreGetProductCategoriesParams.q" }, - "2401": { + "2399": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/list-product-categories.ts", "qualifiedName": "StoreGetProductCategoriesParams.handle" }, - "2402": { + "2400": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/list-product-categories.ts", "qualifiedName": "StoreGetProductCategoriesParams.parent_category_id" }, - "2403": { + "2401": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-categories/list-product-categories.ts", "qualifiedName": "StoreGetProductCategoriesParams.include_descendants_tree" }, - "2404": { + "2402": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, + "2403": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindParams.fields" + }, + "2404": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindPaginationParams.offset" + }, "2405": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindParams.fields" - }, - "2406": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindPaginationParams.offset" - }, - "2407": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.limit" }, - "2408": { + "2406": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/index.ts", "qualifiedName": "defaultStoreProductTagFields" }, - "2409": { + "2407": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/index.ts", "qualifiedName": "allowedStoreProductTagFields" }, - "2410": { + "2408": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/index.ts", "qualifiedName": "defaultStoreProductTagRelations" }, - "2411": { + "2409": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/index.ts", "qualifiedName": "StoreProductTagsListRes" }, - "2412": { + "2410": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/index.ts", "qualifiedName": "__type" }, - "2413": { + "2411": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/index.ts", "qualifiedName": "__type.product_tags" }, - "2414": { + "2412": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/list-product-tags.ts", "qualifiedName": "StoreGetProductTagsParams" }, - "2417": { + "2415": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/list-product-tags.ts", "qualifiedName": "StoreGetProductTagsParams.id" }, - "2418": { + "2416": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/list-product-tags.ts", "qualifiedName": "StoreGetProductTagsParams.q" }, - "2419": { + "2417": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/list-product-tags.ts", "qualifiedName": "StoreGetProductTagsParams.value" }, - "2420": { + "2418": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/list-product-tags.ts", "qualifiedName": "StoreGetProductTagsParams.created_at" }, - "2421": { + "2419": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/list-product-tags.ts", "qualifiedName": "StoreGetProductTagsParams.updated_at" }, - "2422": { + "2420": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/list-product-tags.ts", "qualifiedName": "StoreGetProductTagsParams.order" }, - "2423": { + "2421": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-tags/list-product-tags.ts", "qualifiedName": "StoreGetProductTagsParams.discount_condition_id" }, - "2424": { + "2422": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.offset" }, - "2425": { + "2423": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.limit" }, - "2426": { + "2424": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/index.ts", "qualifiedName": "allowedStoreProductTypeFields" }, - "2427": { + "2425": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/index.ts", "qualifiedName": "defaultStoreProductTypeFields" }, - "2428": { + "2426": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/index.ts", "qualifiedName": "defaultStoreProductTypeRelations" }, - "2429": { + "2427": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/index.ts", "qualifiedName": "StoreProductTypesListRes" }, - "2430": { + "2428": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/index.ts", "qualifiedName": "__type" }, - "2431": { + "2429": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/index.ts", "qualifiedName": "__type.product_types" }, - "2432": { + "2430": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/list-product-types.ts", "qualifiedName": "StoreGetProductTypesParams" }, - "2435": { + "2433": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/list-product-types.ts", "qualifiedName": "StoreGetProductTypesParams.id" }, - "2436": { + "2434": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/list-product-types.ts", "qualifiedName": "StoreGetProductTypesParams.q" }, - "2437": { + "2435": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/list-product-types.ts", "qualifiedName": "StoreGetProductTypesParams.value" }, - "2438": { + "2436": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/list-product-types.ts", "qualifiedName": "StoreGetProductTypesParams.created_at" }, - "2439": { + "2437": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/list-product-types.ts", "qualifiedName": "StoreGetProductTypesParams.updated_at" }, - "2440": { + "2438": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/list-product-types.ts", "qualifiedName": "StoreGetProductTypesParams.order" }, - "2441": { + "2439": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/product-types/list-product-types.ts", "qualifiedName": "StoreGetProductTypesParams.discount_condition_id" }, - "2442": { + "2440": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.offset" }, - "2443": { + "2441": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindPaginationParams.limit" }, - "2444": { + "2442": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "defaultStoreProductsRelations" }, - "2445": { + "2443": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "defaultStoreProductsFields" }, - "2446": { + "2444": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "allowedStoreProductsFields" }, - "2447": { + "2445": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "allowedStoreProductsRelations" }, - "2448": { + "2446": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "defaultStoreProductRemoteQueryObject" }, - "2449": { + "2447": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "__object" }, - "2450": { + "2448": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "__object.fields" }, - "2451": { + "2449": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "__object.images" }, - "2452": { + "2450": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "__object" }, - "2453": { + "2451": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "__object.fields" }, - "2454": { + "2452": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "__object.tags" }, - "2455": { + "2453": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "__object" }, - "2456": { + "2454": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "__object.fields" }, - "2457": { + "2455": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "__object.type" }, - "2458": { + "2456": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "__object" }, - "2459": { + "2457": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "__object.fields" }, - "2460": { + "2458": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "__object.collection" }, - "2461": { + "2459": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", "qualifiedName": "__object" }, + "2460": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", + "qualifiedName": "__object.fields" + }, + "2461": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", + "qualifiedName": "__object.options" + }, "2462": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object.fields" + "qualifiedName": "__object" }, "2463": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object.options" + "qualifiedName": "__object.fields" }, "2464": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object" + "qualifiedName": "__object.values" }, "2465": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object.fields" + "qualifiedName": "__object" }, "2466": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object.values" + "qualifiedName": "__object.fields" }, "2467": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object" + "qualifiedName": "__object.variants" }, "2468": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object.fields" + "qualifiedName": "__object" }, "2469": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object.variants" + "qualifiedName": "__object.fields" }, "2470": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object" + "qualifiedName": "__object.options" }, "2471": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object.fields" + "qualifiedName": "__object" }, "2472": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object.options" + "qualifiedName": "__object.fields" }, "2473": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object" + "qualifiedName": "__object.profile" }, "2474": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object.fields" + "qualifiedName": "__object" }, "2475": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object.profile" + "qualifiedName": "__object.fields" }, "2476": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object" + "qualifiedName": "__object.sales_channels" }, "2477": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__object.fields" + "qualifiedName": "__object" }, "2478": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "StoreProductsRes" + "qualifiedName": "__object.fields" }, "2479": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__type" + "qualifiedName": "StoreProductsRes" }, "2480": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__type.product" + "qualifiedName": "__type" }, "2481": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "StorePostSearchRes" + "qualifiedName": "__type.product" }, "2482": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__type" + "qualifiedName": "StorePostSearchRes" }, "2483": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__type.hits" + "qualifiedName": "__type" }, "2484": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "StoreProductsListRes" + "qualifiedName": "__type.hits" }, "2485": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__type" + "qualifiedName": "StoreProductsListRes" }, "2486": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", - "qualifiedName": "__type.products" + "qualifiedName": "__type" }, "2487": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/index.ts", + "qualifiedName": "__type.products" + }, + "2488": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsPaginationParams" }, - "2490": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", - "qualifiedName": "StoreGetProductsPaginationParams.offset" - }, "2491": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", - "qualifiedName": "StoreGetProductsPaginationParams.limit" + "qualifiedName": "StoreGetProductsPaginationParams.offset" }, "2492": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", - "qualifiedName": "StoreGetProductsPaginationParams.order" + "qualifiedName": "StoreGetProductsPaginationParams.limit" }, "2493": { - "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", - "qualifiedName": "PriceSelectionParams.cart_id" + "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", + "qualifiedName": "StoreGetProductsPaginationParams.order" }, "2494": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", - "qualifiedName": "PriceSelectionParams.region_id" + "qualifiedName": "PriceSelectionParams.cart_id" }, "2495": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", - "qualifiedName": "PriceSelectionParams.currency_code" + "qualifiedName": "PriceSelectionParams.region_id" }, "2496": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindParams.expand" + "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", + "qualifiedName": "PriceSelectionParams.currency_code" }, "2497": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindParams.fields" + "qualifiedName": "FindParams.expand" }, "2498": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindParams.fields" + }, + "2499": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams" }, - "2501": { + "2502": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.id" }, - "2502": { + "2503": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.q" }, - "2503": { + "2504": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.collection_id" }, - "2504": { + "2505": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.tags" }, - "2505": { + "2506": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.title" }, - "2506": { + "2507": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.description" }, - "2507": { + "2508": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.handle" }, - "2508": { + "2509": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.is_giftcard" }, - "2509": { + "2510": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.type_id" }, - "2510": { + "2511": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.sales_channel_id" }, - "2511": { + "2512": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.category_id" }, - "2512": { + "2513": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.include_category_children" }, - "2513": { + "2514": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.created_at" }, - "2514": { + "2515": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsParams.updated_at" }, - "2515": { + "2516": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsPaginationParams.offset" }, - "2516": { + "2517": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsPaginationParams.limit" }, - "2517": { + "2518": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/list-products.ts", "qualifiedName": "StoreGetProductsPaginationParams.order" }, - "2518": { + "2519": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.cart_id" }, - "2519": { + "2520": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.region_id" }, - "2520": { + "2521": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.currency_code" }, - "2521": { + "2522": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "2522": { + "2523": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "2523": { + "2524": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/search.ts", "qualifiedName": "StorePostSearchReq" }, - "2526": { + "2527": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/search.ts", "qualifiedName": "StorePostSearchReq.q" }, - "2527": { + "2528": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/search.ts", "qualifiedName": "StorePostSearchReq.offset" }, - "2528": { + "2529": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/search.ts", "qualifiedName": "StorePostSearchReq.limit" }, - "2529": { + "2530": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/products/search.ts", "qualifiedName": "StorePostSearchReq.filter" }, - "2530": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/index.ts", - "qualifiedName": "StoreRegionsListRes" - }, "2531": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/index.ts", - "qualifiedName": "__type" + "qualifiedName": "defaultStoreRegionRelations" }, "2532": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/index.ts", - "qualifiedName": "__type.regions" + "qualifiedName": "defaultStoreRegionFields" }, "2533": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/index.ts", - "qualifiedName": "StoreRegionsRes" + "qualifiedName": "StoreRegionsListRes" }, "2534": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/index.ts", @@ -118589,587 +123834,587 @@ }, "2535": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/index.ts", - "qualifiedName": "__type.region" + "qualifiedName": "__type.regions" }, "2536": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/index.ts", + "qualifiedName": "StoreRegionsRes" + }, + "2537": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/index.ts", + "qualifiedName": "__type" + }, + "2538": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/index.ts", + "qualifiedName": "__type.region" + }, + "2539": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/get-region.ts", + "qualifiedName": "StoreGetRegionsRegionParams" + }, + "2542": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindParams.expand" + }, + "2543": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindParams.fields" + }, + "2544": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/list-regions.ts", "qualifiedName": "StoreGetRegionsParams" }, - "2539": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/list-regions.ts", - "qualifiedName": "StoreGetRegionsParams.limit" + "2545": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__type.__new" }, - "2540": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/list-regions.ts", - "qualifiedName": "StoreGetRegionsParams.offset" + "2546": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "StoreGetRegionsParams" }, - "2541": { + "2547": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "args" + }, + "2548": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/list-regions.ts", "qualifiedName": "StoreGetRegionsParams.created_at" }, - "2542": { + "2549": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/regions/list-regions.ts", "qualifiedName": "StoreGetRegionsParams.updated_at" }, - "2543": { + "2550": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindParams.expand" + }, + "2551": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindParams.fields" + }, + "2552": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindPaginationParams.offset" + }, + "2553": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindPaginationParams.limit" + }, + "2554": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/return-reasons/index.ts", "qualifiedName": "defaultStoreReturnReasonFields" }, - "2544": { + "2555": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/return-reasons/index.ts", "qualifiedName": "defaultStoreReturnReasonRelations" }, - "2545": { + "2556": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/return-reasons/index.ts", "qualifiedName": "StoreReturnReasonsListRes" }, - "2546": { + "2557": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/return-reasons/index.ts", "qualifiedName": "__type" }, - "2547": { + "2558": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/return-reasons/index.ts", "qualifiedName": "__type.return_reasons" }, - "2548": { + "2559": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/return-reasons/index.ts", "qualifiedName": "StoreReturnReasonsRes" }, - "2549": { + "2560": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/return-reasons/index.ts", "qualifiedName": "__type" }, - "2550": { + "2561": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/return-reasons/index.ts", "qualifiedName": "__type.return_reason" }, - "2551": { + "2562": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/index.ts", "qualifiedName": "StoreReturnsRes" }, - "2552": { + "2563": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/index.ts", "qualifiedName": "__type" }, - "2553": { + "2564": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/index.ts", "qualifiedName": "__type.return" }, - "2554": { + "2565": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/create-return.ts", "qualifiedName": "StorePostReturnsReq" }, - "2557": { + "2568": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/create-return.ts", "qualifiedName": "StorePostReturnsReq.order_id" }, - "2558": { + "2569": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/create-return.ts", "qualifiedName": "StorePostReturnsReq.items" }, - "2559": { + "2570": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/create-return.ts", "qualifiedName": "StorePostReturnsReq.return_shipping" }, - "2560": { + "2571": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/index.ts", "qualifiedName": "StoreShippingOptionsListRes" }, - "2561": { + "2572": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/index.ts", "qualifiedName": "__type" }, - "2562": { + "2573": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/index.ts", "qualifiedName": "__type.shipping_options" }, - "2563": { + "2574": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/index.ts", "qualifiedName": "StoreCartShippingOptionsListRes" }, - "2564": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/index.ts", - "qualifiedName": "__type" - }, - "2565": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/index.ts", - "qualifiedName": "__type.shipping_options" - }, - "2566": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/list-options.ts", - "qualifiedName": "StoreGetShippingOptionsParams" - }, - "2569": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/list-options.ts", - "qualifiedName": "StoreGetShippingOptionsParams.product_ids" - }, - "2570": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/list-options.ts", - "qualifiedName": "StoreGetShippingOptionsParams.region_id" - }, - "2571": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/list-options.ts", - "qualifiedName": "StoreGetShippingOptionsParams.is_return" - }, - "2572": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/index.ts", - "qualifiedName": "defaultStoreSwapRelations" - }, - "2573": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/index.ts", - "qualifiedName": "defaultStoreSwapFields" - }, - "2574": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/index.ts", - "qualifiedName": "StoreSwapsRes" - }, "2575": { - "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/index.ts", + "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/index.ts", "qualifiedName": "__type" }, "2576": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/index.ts", + "qualifiedName": "__type.shipping_options" + }, + "2577": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/list-options.ts", + "qualifiedName": "StoreGetShippingOptionsParams" + }, + "2580": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/list-options.ts", + "qualifiedName": "StoreGetShippingOptionsParams.product_ids" + }, + "2581": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/list-options.ts", + "qualifiedName": "StoreGetShippingOptionsParams.region_id" + }, + "2582": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/shipping-options/list-options.ts", + "qualifiedName": "StoreGetShippingOptionsParams.is_return" + }, + "2583": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/index.ts", + "qualifiedName": "defaultStoreSwapRelations" + }, + "2584": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/index.ts", + "qualifiedName": "defaultStoreSwapFields" + }, + "2585": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/index.ts", + "qualifiedName": "StoreSwapsRes" + }, + "2586": { + "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/index.ts", + "qualifiedName": "__type" + }, + "2587": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/index.ts", "qualifiedName": "__type.swap" }, - "2577": { + "2588": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/create-swap.ts", "qualifiedName": "StorePostSwapsReq" }, - "2580": { + "2591": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/create-swap.ts", "qualifiedName": "StorePostSwapsReq.order_id" }, - "2581": { + "2592": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/create-swap.ts", "qualifiedName": "StorePostSwapsReq.return_items" }, - "2582": { + "2593": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/create-swap.ts", "qualifiedName": "StorePostSwapsReq.additional_items" }, - "2583": { + "2594": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/create-swap.ts", "qualifiedName": "StorePostSwapsReq.return_shipping_option" }, - "2584": { + "2595": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/index.ts", "qualifiedName": "defaultStoreVariantRelations" }, - "2585": { + "2596": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/index.ts", "qualifiedName": "allowedStoreVariantRelations" }, - "2586": { + "2597": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/index.ts", "qualifiedName": "StoreVariantsRes" }, - "2587": { + "2598": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/index.ts", "qualifiedName": "__type" }, - "2588": { + "2599": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/index.ts", "qualifiedName": "__type.variant" }, - "2589": { + "2600": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/index.ts", "qualifiedName": "StoreVariantsListRes" }, - "2590": { + "2601": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/index.ts", "qualifiedName": "__type" }, - "2591": { + "2602": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/index.ts", "qualifiedName": "__type.variants" }, - "2592": { + "2603": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/get-variant.ts", "qualifiedName": "StoreGetVariantsVariantParams" }, - "2595": { + "2606": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/get-variant.ts", "qualifiedName": "StoreGetVariantsVariantParams.sales_channel_id" }, - "2596": { + "2607": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.cart_id" }, - "2597": { + "2608": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.region_id" }, - "2598": { + "2609": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.currency_code" }, - "2599": { + "2610": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "2600": { + "2611": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "2601": { + "2612": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/list-variants.ts", "qualifiedName": "StoreGetVariantsParams" }, - "2604": { + "2615": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/list-variants.ts", "qualifiedName": "StoreGetVariantsParams.limit" }, - "2605": { + "2616": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/list-variants.ts", "qualifiedName": "StoreGetVariantsParams.offset" }, - "2606": { + "2617": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/list-variants.ts", "qualifiedName": "StoreGetVariantsParams.ids" }, - "2607": { + "2618": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/list-variants.ts", "qualifiedName": "StoreGetVariantsParams.sales_channel_id" }, - "2608": { + "2619": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/list-variants.ts", "qualifiedName": "StoreGetVariantsParams.id" }, - "2609": { + "2620": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/list-variants.ts", "qualifiedName": "StoreGetVariantsParams.title" }, - "2610": { + "2621": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/variants/list-variants.ts", "qualifiedName": "StoreGetVariantsParams.inventory_quantity" }, - "2611": { + "2622": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.cart_id" }, - "2612": { + "2623": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.region_id" }, - "2613": { + "2624": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.currency_code" }, - "2614": { + "2625": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "2615": { + "2626": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "2616": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/authenticate.ts", - "qualifiedName": "default" - }, - "2617": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/authenticate.ts", - "qualifiedName": "default" - }, - "2618": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/authenticate-customer.ts", - "qualifiedName": "default" - }, - "2619": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/authenticate-customer.ts", - "qualifiedName": "default" - }, - "2620": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", - "qualifiedName": "default" - }, - "2621": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", - "qualifiedName": "default" - }, - "2622": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", - "qualifiedName": "__function" - }, - "2623": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", - "qualifiedName": "__function" - }, - "2624": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", - "qualifiedName": "err" - }, - "2625": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", - "qualifiedName": "req" - }, - "2626": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", - "qualifiedName": "res" - }, "2627": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", - "qualifiedName": "next" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/authenticate.ts", + "qualifiedName": "default" }, "2628": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", + "sourceFileName": "../../../packages/medusa/src/api/middlewares/authenticate.ts", "qualifiedName": "default" }, "2629": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", + "sourceFileName": "../../../packages/medusa/src/api/middlewares/authenticate-customer.ts", "qualifiedName": "default" }, "2630": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/authenticate-customer.ts", + "qualifiedName": "default" + }, + "2631": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", + "qualifiedName": "default" + }, + "2632": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", + "qualifiedName": "default" + }, + "2633": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", + "qualifiedName": "__function" + }, + "2634": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", + "qualifiedName": "__function" + }, + "2635": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", + "qualifiedName": "err" + }, + "2636": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", + "qualifiedName": "req" + }, + "2637": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", + "qualifiedName": "res" + }, + "2638": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/error-handler.ts", + "qualifiedName": "next" + }, + "2639": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", + "qualifiedName": "default" + }, + "2640": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", + "qualifiedName": "default" + }, + "2641": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", "qualifiedName": "fn" }, - "2631": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/can-access-batch-job.ts", - "qualifiedName": "canAccessBatchJob" - }, - "2632": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/can-access-batch-job.ts", - "qualifiedName": "canAccessBatchJob" - }, - "2633": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/can-access-batch-job.ts", - "qualifiedName": "req" - }, - "2634": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/can-access-batch-job.ts", - "qualifiedName": "res" - }, - "2635": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/can-access-batch-job.ts", - "qualifiedName": "next" - }, - "2636": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/get-requested-batch-job.ts", - "qualifiedName": "getRequestedBatchJob" - }, - "2637": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/get-requested-batch-job.ts", - "qualifiedName": "getRequestedBatchJob" - }, - "2638": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/get-requested-batch-job.ts", - "qualifiedName": "req" - }, - "2639": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/get-requested-batch-job.ts", - "qualifiedName": "res" - }, - "2640": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/get-requested-batch-job.ts", - "qualifiedName": "next" - }, - "2641": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/discount/does-condition-belong-to-discount.ts", - "qualifiedName": "doesConditionBelongToDiscount" - }, "2642": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/discount/does-condition-belong-to-discount.ts", - "qualifiedName": "doesConditionBelongToDiscount" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/can-access-batch-job.ts", + "qualifiedName": "canAccessBatchJob" }, "2643": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/discount/does-condition-belong-to-discount.ts", - "qualifiedName": "req" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/can-access-batch-job.ts", + "qualifiedName": "canAccessBatchJob" }, "2644": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/discount/does-condition-belong-to-discount.ts", - "qualifiedName": "res" - }, - "2645": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/discount/does-condition-belong-to-discount.ts", - "qualifiedName": "next" - }, - "2646": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", - "qualifiedName": "default" - }, - "2647": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", - "qualifiedName": "default" - }, - "2648": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", - "qualifiedName": "__type" - }, - "2649": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", - "qualifiedName": "__type" - }, - "2650": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", + "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/can-access-batch-job.ts", "qualifiedName": "req" }, - "2651": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", + "2645": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/can-access-batch-job.ts", "qualifiedName": "res" }, - "2652": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", + "2646": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/can-access-batch-job.ts", "qualifiedName": "next" }, + "2647": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/get-requested-batch-job.ts", + "qualifiedName": "getRequestedBatchJob" + }, + "2648": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/get-requested-batch-job.ts", + "qualifiedName": "getRequestedBatchJob" + }, + "2649": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/get-requested-batch-job.ts", + "qualifiedName": "req" + }, + "2650": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/get-requested-batch-job.ts", + "qualifiedName": "res" + }, + "2651": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/batch-job/get-requested-batch-job.ts", + "qualifiedName": "next" + }, + "2652": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/discount/does-condition-belong-to-discount.ts", + "qualifiedName": "doesConditionBelongToDiscount" + }, "2653": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/require-customer-authentication.ts", - "qualifiedName": "default" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/discount/does-condition-belong-to-discount.ts", + "qualifiedName": "doesConditionBelongToDiscount" }, "2654": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/require-customer-authentication.ts", - "qualifiedName": "default" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/discount/does-condition-belong-to-discount.ts", + "qualifiedName": "req" }, "2655": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", - "qualifiedName": "transformBody" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/discount/does-condition-belong-to-discount.ts", + "qualifiedName": "res" }, "2656": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", - "qualifiedName": "transformBody" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/discount/does-condition-belong-to-discount.ts", + "qualifiedName": "next" }, "2657": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", - "qualifiedName": "T" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", + "qualifiedName": "default" }, "2658": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", - "qualifiedName": "plainToClass" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", + "qualifiedName": "default" }, "2659": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", - "qualifiedName": "config" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", + "qualifiedName": "__type" }, "2660": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", + "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", "qualifiedName": "__type" }, "2661": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", + "qualifiedName": "req" + }, + "2662": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", + "qualifiedName": "res" + }, + "2663": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/normalized-query.ts", + "qualifiedName": "next" + }, + "2664": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/require-customer-authentication.ts", + "qualifiedName": "default" + }, + "2665": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/require-customer-authentication.ts", + "qualifiedName": "default" + }, + "2666": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", + "qualifiedName": "transformBody" + }, + "2667": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", + "qualifiedName": "transformBody" + }, + "2668": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", + "qualifiedName": "T" + }, + "2669": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", + "qualifiedName": "plainToClass" + }, + "2670": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", + "qualifiedName": "config" + }, + "2671": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", "qualifiedName": "__type" }, - "2662": { + "2672": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", + "qualifiedName": "__type" + }, + "2673": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", "qualifiedName": "req" }, - "2663": { + "2674": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", "qualifiedName": "res" }, - "2664": { + "2675": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-body.ts", "qualifiedName": "next" }, - "2665": { + "2676": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", "qualifiedName": "transformIncludesOptions" }, - "2666": { + "2677": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", "qualifiedName": "transformIncludesOptions" }, - "2667": { + "2678": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", "qualifiedName": "allowedIncludes" }, - "2668": { + "2679": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", "qualifiedName": "expectedIncludes" }, - "2669": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", - "qualifiedName": "__function" - }, - "2670": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", - "qualifiedName": "__function" - }, - "2671": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", - "qualifiedName": "req" - }, - "2672": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", - "qualifiedName": "res" - }, - "2673": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", - "qualifiedName": "next" - }, - "2674": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "transformQuery" - }, - "2675": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "transformQuery" - }, - "2676": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "T" - }, - "2677": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "TEntity" - }, - "2678": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "plainToClass" - }, - "2679": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "queryConfig" - }, "2680": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "config" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", + "qualifiedName": "__function" }, "2681": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", + "qualifiedName": "__function" }, "2682": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "__type" - }, - "2683": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", "qualifiedName": "req" }, - "2684": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", + "2683": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", "qualifiedName": "res" }, + "2684": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-includes-options.ts", + "qualifiedName": "next" + }, "2685": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "next" + "qualifiedName": "transformQuery" }, "2686": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "transformStoreQuery" + "qualifiedName": "transformQuery" }, "2687": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "transformStoreQuery" + "qualifiedName": "T" }, "2688": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "T" + "qualifiedName": "TEntity" }, "2689": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "TEntity" + "qualifiedName": "plainToClass" }, "2690": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "plainToClass" + "qualifiedName": "queryConfig" }, "2691": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "queryConfig" + "qualifiedName": "config" }, "2692": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "config" + "qualifiedName": "__type" }, "2693": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", @@ -119177,179 +124422,179 @@ }, "2694": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "__type" + "qualifiedName": "req" }, "2695": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "req" + "qualifiedName": "res" }, "2696": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "res" + "qualifiedName": "next" }, "2697": { "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", - "qualifiedName": "next" + "qualifiedName": "transformStoreQuery" }, "2698": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "isBatchJobStrategy" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", + "qualifiedName": "transformStoreQuery" }, "2699": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "isBatchJobStrategy" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", + "qualifiedName": "T" }, "2700": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "object" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", + "qualifiedName": "TEntity" }, "2701": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "IBatchJobStrategy" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", + "qualifiedName": "plainToClass" }, "2702": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "IBatchJobStrategy.prepareBatchJobForProcessing" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", + "qualifiedName": "queryConfig" }, "2703": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "IBatchJobStrategy.prepareBatchJobForProcessing" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", + "qualifiedName": "config" }, "2704": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "batchJobEntity" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", + "qualifiedName": "__type" }, "2705": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "req" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", + "qualifiedName": "__type" }, "2706": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "IBatchJobStrategy.preProcessBatchJob" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", + "qualifiedName": "req" }, "2707": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "IBatchJobStrategy.preProcessBatchJob" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", + "qualifiedName": "res" }, "2708": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "batchJobId" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/transform-query.ts", + "qualifiedName": "next" }, "2709": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "IBatchJobStrategy.processJob" + "qualifiedName": "isBatchJobStrategy" }, "2710": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "IBatchJobStrategy.processJob" + "qualifiedName": "isBatchJobStrategy" }, "2711": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "batchJobId" + "qualifiedName": "object" }, "2712": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "IBatchJobStrategy.buildTemplate" + "qualifiedName": "IBatchJobStrategy" }, "2713": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "IBatchJobStrategy.buildTemplate" + "qualifiedName": "IBatchJobStrategy.prepareBatchJobForProcessing" }, "2714": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.manager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "IBatchJobStrategy.prepareBatchJobForProcessing" }, "2715": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.transactionManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "batchJobEntity" }, "2716": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "req" }, "2717": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "IBatchJobStrategy.preProcessBatchJob" }, "2718": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__container__" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "IBatchJobStrategy.preProcessBatchJob" }, "2719": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__configModule__" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "batchJobId" }, "2720": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__moduleDeclaration__" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "IBatchJobStrategy.processJob" }, "2721": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "IBatchJobStrategy.processJob" }, "2722": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "batchJobId" }, "2723": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "IBatchJobStrategy.buildTemplate" }, "2724": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "IBatchJobStrategy.buildTemplate" }, "2725": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "qualifiedName": "TransactionBaseService.manager_" }, "2726": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "err" + "qualifiedName": "TransactionBaseService.transactionManager_" }, "2727": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.activeManager_" }, "2728": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type.code" + "qualifiedName": "TransactionBaseService.activeManager_" }, "2729": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__container__" }, "2730": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__configModule__" }, "2731": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TResult" + "qualifiedName": "TransactionBaseService.__moduleDeclaration__" }, "2732": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TError" + "qualifiedName": "TransactionBaseService.withTransaction" }, "2733": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "work" + "qualifiedName": "TransactionBaseService.withTransaction" }, "2734": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "transactionManager" }, "2735": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "2736": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "2737": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "isolationOrErrorHandler" + "qualifiedName": "err" }, "2738": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", @@ -119357,247 +124602,247 @@ }, "2739": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.code" }, "2740": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "2741": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "maybeErrorHandlerOrDontFail" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "2742": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TResult" }, "2743": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TError" }, "2744": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "work" }, "2745": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2746": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.identifier" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2747": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.batchType" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "transactionManager" }, "2748": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__constructor" + "qualifiedName": "isolationOrErrorHandler" }, "2749": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "AbstractBatchJobStrategy" + "qualifiedName": "__type" }, "2750": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__container__" + "qualifiedName": "__type" }, "2751": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__configModule__" + "qualifiedName": "error" }, "2752": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__moduleDeclaration__" + "qualifiedName": "maybeErrorHandlerOrDontFail" }, "2753": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.batchJobService_" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2754": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.prepareBatchJobForProcessing" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2755": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.prepareBatchJobForProcessing" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" }, "2756": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "batchJob" + "qualifiedName": "AbstractBatchJobStrategy" }, "2757": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "req" + "qualifiedName": "AbstractBatchJobStrategy.identifier" }, "2758": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.preProcessBatchJob" + "qualifiedName": "AbstractBatchJobStrategy.batchType" }, "2759": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.preProcessBatchJob" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.__constructor" }, "2760": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "batchJobId" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "AbstractBatchJobStrategy" }, "2761": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.processJob" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__container__" }, "2762": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.processJob" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__configModule__" }, "2763": { - "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "batchJobId" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__moduleDeclaration__" }, "2764": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.buildTemplate" + "qualifiedName": "AbstractBatchJobStrategy.batchJobService_" }, "2765": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.buildTemplate" + "qualifiedName": "AbstractBatchJobStrategy.prepareBatchJobForProcessing" }, "2766": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.shouldRetryOnProcessingError" + "qualifiedName": "AbstractBatchJobStrategy.prepareBatchJobForProcessing" }, "2767": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.shouldRetryOnProcessingError" + "qualifiedName": "batchJob" }, "2768": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "batchJob" + "qualifiedName": "req" }, "2769": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "err" + "qualifiedName": "AbstractBatchJobStrategy.preProcessBatchJob" }, "2770": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.handleProcessingError" + "qualifiedName": "AbstractBatchJobStrategy.preProcessBatchJob" }, "2771": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "AbstractBatchJobStrategy.handleProcessingError" + "qualifiedName": "batchJobId" }, "2772": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "T" + "qualifiedName": "AbstractBatchJobStrategy.processJob" }, "2773": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "batchJobId" + "qualifiedName": "AbstractBatchJobStrategy.processJob" }, "2774": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "err" + "qualifiedName": "batchJobId" }, "2775": { "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", - "qualifiedName": "result" + "qualifiedName": "AbstractBatchJobStrategy.buildTemplate" }, "2776": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.manager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "AbstractBatchJobStrategy.buildTemplate" }, "2777": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.transactionManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "AbstractBatchJobStrategy.shouldRetryOnProcessingError" }, "2778": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "AbstractBatchJobStrategy.shouldRetryOnProcessingError" }, "2779": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "batchJob" }, "2780": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__container__" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "err" }, "2781": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__configModule__" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "AbstractBatchJobStrategy.handleProcessingError" }, "2782": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__moduleDeclaration__" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "AbstractBatchJobStrategy.handleProcessingError" }, "2783": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "T" }, "2784": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "batchJobId" }, "2785": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "err" }, "2786": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "sourceFileName": "../../../packages/medusa/src/interfaces/batch-job-strategy.ts", + "qualifiedName": "result" }, "2787": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "qualifiedName": "TransactionBaseService.manager_" }, "2788": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "err" + "qualifiedName": "TransactionBaseService.transactionManager_" }, "2789": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.activeManager_" }, "2790": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type.code" + "qualifiedName": "TransactionBaseService.activeManager_" }, "2791": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__container__" }, "2792": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__configModule__" }, "2793": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TResult" + "qualifiedName": "TransactionBaseService.__moduleDeclaration__" }, "2794": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TError" + "qualifiedName": "TransactionBaseService.withTransaction" }, "2795": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "work" + "qualifiedName": "TransactionBaseService.withTransaction" }, "2796": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "transactionManager" }, "2797": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "2798": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "2799": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "isolationOrErrorHandler" + "qualifiedName": "err" }, "2800": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", @@ -119605,111 +124850,111 @@ }, "2801": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.code" }, "2802": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "2803": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "maybeErrorHandlerOrDontFail" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "2804": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TResult" }, "2805": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TError" }, "2806": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "work" }, "2807": { - "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "isCartCompletionStrategy" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2808": { - "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "isCartCompletionStrategy" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2809": { - "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "obj" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "transactionManager" }, "2810": { - "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "CartCompletionResponse" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "isolationOrErrorHandler" }, "2811": { - "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "__type" }, "2812": { - "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "__type.response_code" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2813": { - "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "__type.response_body" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" }, "2814": { - "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "ICartCompletionStrategy" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "maybeErrorHandlerOrDontFail" }, "2815": { - "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "ICartCompletionStrategy.complete" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2816": { - "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "ICartCompletionStrategy.complete" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2817": { - "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "cartId" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" }, "2818": { "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "idempotencyKey" + "qualifiedName": "isCartCompletionStrategy" }, "2819": { "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "context" + "qualifiedName": "isCartCompletionStrategy" }, "2820": { "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "AbstractCartCompletionStrategy" + "qualifiedName": "obj" }, "2821": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__constructor" + "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", + "qualifiedName": "CartCompletionResponse" }, "2822": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "AbstractCartCompletionStrategy" + "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", + "qualifiedName": "__type" }, "2823": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__container__" + "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", + "qualifiedName": "__type.response_code" }, "2824": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__configModule__" + "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", + "qualifiedName": "__type.response_body" }, "2825": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__moduleDeclaration__" + "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", + "qualifiedName": "ICartCompletionStrategy" }, "2826": { "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "AbstractCartCompletionStrategy.complete" + "qualifiedName": "ICartCompletionStrategy.complete" }, "2827": { "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", - "qualifiedName": "AbstractCartCompletionStrategy.complete" + "qualifiedName": "ICartCompletionStrategy.complete" }, "2828": { "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", @@ -119724,100 +124969,100 @@ "qualifiedName": "context" }, "2831": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.manager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", + "qualifiedName": "AbstractCartCompletionStrategy" }, "2832": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.transactionManager_" + "qualifiedName": "TransactionBaseService.__constructor" }, "2833": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "qualifiedName": "AbstractCartCompletionStrategy" }, "2834": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "qualifiedName": "__container__" }, "2835": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__container__" + "qualifiedName": "__configModule__" }, "2836": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__configModule__" + "qualifiedName": "__moduleDeclaration__" }, "2837": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__moduleDeclaration__" + "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", + "qualifiedName": "AbstractCartCompletionStrategy.complete" }, "2838": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", + "qualifiedName": "AbstractCartCompletionStrategy.complete" }, "2839": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", + "qualifiedName": "cartId" }, "2840": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", + "qualifiedName": "idempotencyKey" }, "2841": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "sourceFileName": "../../../packages/medusa/src/interfaces/cart-completion-strategy.ts", + "qualifiedName": "context" }, "2842": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "qualifiedName": "TransactionBaseService.manager_" }, "2843": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "err" + "qualifiedName": "TransactionBaseService.transactionManager_" }, "2844": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.activeManager_" }, "2845": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type.code" + "qualifiedName": "TransactionBaseService.activeManager_" }, "2846": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__container__" }, "2847": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__configModule__" }, "2848": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TResult" + "qualifiedName": "TransactionBaseService.__moduleDeclaration__" }, "2849": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TError" + "qualifiedName": "TransactionBaseService.withTransaction" }, "2850": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "work" + "qualifiedName": "TransactionBaseService.withTransaction" }, "2851": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "transactionManager" }, "2852": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "2853": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "2854": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "isolationOrErrorHandler" + "qualifiedName": "err" }, "2855": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", @@ -119825,199 +125070,199 @@ }, "2856": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.code" }, "2857": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "2858": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "maybeErrorHandlerOrDontFail" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "2859": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TResult" }, "2860": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TError" }, "2861": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "work" }, "2862": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "IFileService" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2863": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "IFileService.upload" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2864": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "IFileService.upload" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "transactionManager" }, "2865": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "file" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "isolationOrErrorHandler" }, "2866": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "IFileService.uploadProtected" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2867": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "IFileService.uploadProtected" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2868": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "file" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" }, "2869": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "IFileService.delete" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "maybeErrorHandlerOrDontFail" }, "2870": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "IFileService.delete" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2871": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "fileData" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2872": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "IFileService.getUploadStreamDescriptor" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" }, "2873": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "IFileService.getUploadStreamDescriptor" + "qualifiedName": "IFileService" }, "2874": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "fileData" + "qualifiedName": "IFileService.upload" }, "2875": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "IFileService.getDownloadStream" + "qualifiedName": "IFileService.upload" }, "2876": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "IFileService.getDownloadStream" + "qualifiedName": "file" }, "2877": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "fileData" + "qualifiedName": "IFileService.uploadProtected" }, "2878": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "IFileService.getPresignedDownloadUrl" + "qualifiedName": "IFileService.uploadProtected" }, "2879": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "IFileService.getPresignedDownloadUrl" + "qualifiedName": "file" }, "2880": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "fileData" + "qualifiedName": "IFileService.delete" }, "2881": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.manager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "IFileService.delete" }, "2882": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.transactionManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "fileData" }, "2883": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "IFileService.getUploadStreamDescriptor" }, "2884": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "IFileService.getUploadStreamDescriptor" }, "2885": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__container__" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "fileData" }, "2886": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__configModule__" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "IFileService.getDownloadStream" }, "2887": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__moduleDeclaration__" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "IFileService.getDownloadStream" }, "2888": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "fileData" }, "2889": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "IFileService.getPresignedDownloadUrl" }, "2890": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "IFileService.getPresignedDownloadUrl" }, "2891": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "fileData" }, "2892": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "qualifiedName": "TransactionBaseService.manager_" }, "2893": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "err" + "qualifiedName": "TransactionBaseService.transactionManager_" }, "2894": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.activeManager_" }, "2895": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type.code" + "qualifiedName": "TransactionBaseService.activeManager_" }, "2896": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__container__" }, "2897": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__configModule__" }, "2898": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TResult" + "qualifiedName": "TransactionBaseService.__moduleDeclaration__" }, "2899": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TError" + "qualifiedName": "TransactionBaseService.withTransaction" }, "2900": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "work" + "qualifiedName": "TransactionBaseService.withTransaction" }, "2901": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "transactionManager" }, "2902": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "2903": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "2904": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "isolationOrErrorHandler" + "qualifiedName": "err" }, "2905": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", @@ -120025,219 +125270,219 @@ }, "2906": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.code" }, "2907": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "2908": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "maybeErrorHandlerOrDontFail" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "2909": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TResult" }, "2910": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TError" }, "2911": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "work" }, "2912": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "AbstractFileService" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2913": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__constructor" + "qualifiedName": "__type" }, "2914": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "AbstractFileService" + "qualifiedName": "transactionManager" }, "2915": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__container__" + "qualifiedName": "isolationOrErrorHandler" }, "2916": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__configModule__" + "qualifiedName": "__type" }, "2917": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__moduleDeclaration__" + "qualifiedName": "__type" }, "2918": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "AbstractFileService.upload" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" }, "2919": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "AbstractFileService.upload" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "maybeErrorHandlerOrDontFail" }, "2920": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "fileData" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2921": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "AbstractFileService.uploadProtected" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2922": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "AbstractFileService.uploadProtected" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" }, "2923": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "fileData" + "qualifiedName": "AbstractFileService" }, "2924": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "AbstractFileService.delete" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.__constructor" }, "2925": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "AbstractFileService.delete" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "AbstractFileService" }, "2926": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "fileData" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__container__" }, "2927": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "AbstractFileService.getUploadStreamDescriptor" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__configModule__" }, "2928": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "AbstractFileService.getUploadStreamDescriptor" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__moduleDeclaration__" }, "2929": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "fileData" + "qualifiedName": "AbstractFileService.upload" }, "2930": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "AbstractFileService.getDownloadStream" + "qualifiedName": "AbstractFileService.upload" }, "2931": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "AbstractFileService.getDownloadStream" + "qualifiedName": "fileData" }, "2932": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "fileData" + "qualifiedName": "AbstractFileService.uploadProtected" }, "2933": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "AbstractFileService.getPresignedDownloadUrl" + "qualifiedName": "AbstractFileService.uploadProtected" }, "2934": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "AbstractFileService.getPresignedDownloadUrl" + "qualifiedName": "fileData" }, "2935": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "fileData" + "qualifiedName": "AbstractFileService.delete" }, "2936": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.manager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "AbstractFileService.delete" }, "2937": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.transactionManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "fileData" }, "2938": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "AbstractFileService.getUploadStreamDescriptor" }, "2939": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "AbstractFileService.getUploadStreamDescriptor" }, "2940": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__container__" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "fileData" }, "2941": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__configModule__" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "AbstractFileService.getDownloadStream" }, "2942": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__moduleDeclaration__" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "AbstractFileService.getDownloadStream" }, "2943": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "fileData" }, "2944": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "AbstractFileService.getPresignedDownloadUrl" }, "2945": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "AbstractFileService.getPresignedDownloadUrl" }, "2946": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "fileData" }, "2947": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "qualifiedName": "TransactionBaseService.manager_" }, "2948": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "err" + "qualifiedName": "TransactionBaseService.transactionManager_" }, "2949": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.activeManager_" }, "2950": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type.code" + "qualifiedName": "TransactionBaseService.activeManager_" }, "2951": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__container__" }, "2952": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__configModule__" }, "2953": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TResult" + "qualifiedName": "TransactionBaseService.__moduleDeclaration__" }, "2954": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TError" + "qualifiedName": "TransactionBaseService.withTransaction" }, "2955": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "work" + "qualifiedName": "TransactionBaseService.withTransaction" }, "2956": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "transactionManager" }, "2957": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "2958": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "2959": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "isolationOrErrorHandler" + "qualifiedName": "err" }, "2960": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", @@ -120245,103 +125490,103 @@ }, "2961": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.code" }, "2962": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "2963": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "maybeErrorHandlerOrDontFail" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "2964": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TResult" }, "2965": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TError" }, "2966": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "work" }, "2967": { - "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", - "qualifiedName": "isFileService" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "2968": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "2969": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "transactionManager" + }, + "2970": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "isolationOrErrorHandler" + }, + "2971": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "2972": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "2973": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" + }, + "2974": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "maybeErrorHandlerOrDontFail" + }, + "2975": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "2976": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "2977": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" + }, + "2978": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", "qualifiedName": "isFileService" }, - "2969": { + "2979": { + "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", + "qualifiedName": "isFileService" + }, + "2980": { "sourceFileName": "../../../packages/medusa/src/interfaces/file-service.ts", "qualifiedName": "object" }, - "2970": { + "2981": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", "qualifiedName": "FulfillmentService" }, - "2973": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.getFulfillmentOptions" - }, - "2974": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.getFulfillmentOptions" - }, - "2975": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.validateFulfillmentData" - }, - "2976": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.validateFulfillmentData" - }, - "2977": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "optionData" - }, - "2978": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "data" - }, - "2979": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "cart" - }, - "2980": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.validateOption" - }, - "2981": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.validateOption" - }, - "2982": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "data" - }, - "2983": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.canCalculate" - }, "2984": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.canCalculate" + "qualifiedName": "FulfillmentService.getFulfillmentOptions" }, "2985": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "data" + "qualifiedName": "FulfillmentService.getFulfillmentOptions" }, "2986": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.calculatePrice" + "qualifiedName": "FulfillmentService.validateFulfillmentData" }, "2987": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.calculatePrice" + "qualifiedName": "FulfillmentService.validateFulfillmentData" }, "2988": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", @@ -120357,11 +125602,11 @@ }, "2991": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.createFulfillment" + "qualifiedName": "FulfillmentService.validateOption" }, "2992": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.createFulfillment" + "qualifiedName": "FulfillmentService.validateOption" }, "2993": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", @@ -120369,183 +125614,183 @@ }, "2994": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "items" + "qualifiedName": "FulfillmentService.canCalculate" }, "2995": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "order" + "qualifiedName": "FulfillmentService.canCalculate" }, "2996": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "fulfillment" + "qualifiedName": "data" }, "2997": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.cancelFulfillment" + "qualifiedName": "FulfillmentService.calculatePrice" }, "2998": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.cancelFulfillment" + "qualifiedName": "FulfillmentService.calculatePrice" }, "2999": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "fulfillmentData" + "qualifiedName": "optionData" }, "3000": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.createReturn" + "qualifiedName": "data" }, "3001": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.createReturn" + "qualifiedName": "cart" }, "3002": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "returnOrder" + "qualifiedName": "FulfillmentService.createFulfillment" }, "3003": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.getFulfillmentDocuments" + "qualifiedName": "FulfillmentService.createFulfillment" }, "3004": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.getFulfillmentDocuments" + "qualifiedName": "data" }, "3005": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "data" + "qualifiedName": "items" }, "3006": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.getReturnDocuments" + "qualifiedName": "order" }, "3007": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.getReturnDocuments" + "qualifiedName": "fulfillment" }, "3008": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "data" + "qualifiedName": "FulfillmentService.cancelFulfillment" }, "3009": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.getShipmentDocuments" + "qualifiedName": "FulfillmentService.cancelFulfillment" }, "3010": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.getShipmentDocuments" + "qualifiedName": "fulfillmentData" }, "3011": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "data" + "qualifiedName": "FulfillmentService.createReturn" }, "3012": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.retrieveDocuments" + "qualifiedName": "FulfillmentService.createReturn" }, "3013": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentService.retrieveDocuments" + "qualifiedName": "returnOrder" }, "3014": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "fulfillmentData" + "qualifiedName": "FulfillmentService.getFulfillmentDocuments" }, "3015": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "documentType" + "qualifiedName": "FulfillmentService.getFulfillmentDocuments" }, "3016": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService" + "qualifiedName": "data" }, "3017": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.identifier" + "qualifiedName": "FulfillmentService.getReturnDocuments" }, "3018": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.__constructor" + "qualifiedName": "FulfillmentService.getReturnDocuments" }, "3019": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService" + "qualifiedName": "data" }, "3020": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "container" + "qualifiedName": "FulfillmentService.getShipmentDocuments" }, "3021": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "config" + "qualifiedName": "FulfillmentService.getShipmentDocuments" }, "3022": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.container" + "qualifiedName": "data" }, "3023": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.config" + "qualifiedName": "FulfillmentService.retrieveDocuments" + }, + "3024": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "FulfillmentService.retrieveDocuments" + }, + "3025": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "fulfillmentData" }, "3026": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.getFulfillmentOptions" + "qualifiedName": "documentType" }, "3027": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.getFulfillmentOptions" + "qualifiedName": "AbstractFulfillmentService" }, "3028": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.validateFulfillmentData" + "qualifiedName": "AbstractFulfillmentService.identifier" }, "3029": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.validateFulfillmentData" + "qualifiedName": "AbstractFulfillmentService.__constructor" }, "3030": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "optionData" + "qualifiedName": "AbstractFulfillmentService" }, "3031": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "data" + "qualifiedName": "container" }, "3032": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "cart" + "qualifiedName": "config" }, "3033": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.validateOption" + "qualifiedName": "AbstractFulfillmentService.container" }, "3034": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.validateOption" - }, - "3035": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "data" - }, - "3036": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.canCalculate" + "qualifiedName": "AbstractFulfillmentService.config" }, "3037": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.canCalculate" + "qualifiedName": "AbstractFulfillmentService.getFulfillmentOptions" }, "3038": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "data" + "qualifiedName": "AbstractFulfillmentService.getFulfillmentOptions" }, "3039": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.calculatePrice" + "qualifiedName": "AbstractFulfillmentService.validateFulfillmentData" }, "3040": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.calculatePrice" + "qualifiedName": "AbstractFulfillmentService.validateFulfillmentData" }, "3041": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", @@ -120561,11 +125806,11 @@ }, "3044": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.createFulfillment" + "qualifiedName": "AbstractFulfillmentService.validateOption" }, "3045": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.createFulfillment" + "qualifiedName": "AbstractFulfillmentService.validateOption" }, "3046": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", @@ -120573,231 +125818,231 @@ }, "3047": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "items" + "qualifiedName": "AbstractFulfillmentService.canCalculate" }, "3048": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "order" + "qualifiedName": "AbstractFulfillmentService.canCalculate" }, "3049": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "fulfillment" + "qualifiedName": "data" }, "3050": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.cancelFulfillment" + "qualifiedName": "AbstractFulfillmentService.calculatePrice" }, "3051": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.cancelFulfillment" + "qualifiedName": "AbstractFulfillmentService.calculatePrice" }, "3052": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "fulfillment" + "qualifiedName": "optionData" }, "3053": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.createReturn" + "qualifiedName": "data" }, "3054": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.createReturn" + "qualifiedName": "cart" }, "3055": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "returnOrder" + "qualifiedName": "AbstractFulfillmentService.createFulfillment" }, "3056": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.getFulfillmentDocuments" + "qualifiedName": "AbstractFulfillmentService.createFulfillment" }, "3057": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.getFulfillmentDocuments" + "qualifiedName": "data" }, "3058": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "data" + "qualifiedName": "items" }, "3059": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.getReturnDocuments" + "qualifiedName": "order" }, "3060": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.getReturnDocuments" + "qualifiedName": "fulfillment" }, "3061": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "data" + "qualifiedName": "AbstractFulfillmentService.cancelFulfillment" }, "3062": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.getShipmentDocuments" + "qualifiedName": "AbstractFulfillmentService.cancelFulfillment" }, "3063": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.getShipmentDocuments" + "qualifiedName": "fulfillment" }, "3064": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "data" + "qualifiedName": "AbstractFulfillmentService.createReturn" }, "3065": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.retrieveDocuments" + "qualifiedName": "AbstractFulfillmentService.createReturn" }, "3066": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "AbstractFulfillmentService.retrieveDocuments" + "qualifiedName": "returnOrder" }, "3067": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "fulfillmentData" + "qualifiedName": "AbstractFulfillmentService.getFulfillmentDocuments" }, "3068": { "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "documentType" + "qualifiedName": "AbstractFulfillmentService.getFulfillmentDocuments" }, "3069": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "data" + }, + "3070": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "AbstractFulfillmentService.getReturnDocuments" + }, + "3071": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "AbstractFulfillmentService.getReturnDocuments" + }, + "3072": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "data" + }, + "3073": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "AbstractFulfillmentService.getShipmentDocuments" + }, + "3074": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "AbstractFulfillmentService.getShipmentDocuments" + }, + "3075": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "data" + }, + "3076": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "AbstractFulfillmentService.retrieveDocuments" + }, + "3077": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "AbstractFulfillmentService.retrieveDocuments" + }, + "3078": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "fulfillmentData" + }, + "3079": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "documentType" + }, + "3080": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "INotificationService" }, - "3070": { + "3081": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "INotificationService.sendNotification" }, - "3071": { + "3082": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "INotificationService.sendNotification" }, - "3072": { + "3083": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "event" }, - "3073": { + "3084": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "data" }, - "3074": { + "3085": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "attachmentGenerator" }, - "3075": { + "3086": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "INotificationService.resendNotification" }, - "3076": { + "3087": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "INotificationService.resendNotification" }, - "3077": { + "3088": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "notification" }, - "3078": { + "3089": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "config" }, - "3079": { + "3090": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "attachmentGenerator" }, - "3080": { + "3091": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "TransactionBaseService.manager_" }, - "3081": { + "3092": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "TransactionBaseService.transactionManager_" }, - "3082": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" - }, - "3083": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" - }, - "3084": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__container__" - }, - "3085": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__configModule__" - }, - "3086": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__moduleDeclaration__" - }, - "3087": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" - }, - "3088": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" - }, - "3089": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" - }, - "3090": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" - }, - "3091": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" - }, - "3092": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "err" - }, "3093": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.activeManager_" }, "3094": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type.code" + "qualifiedName": "TransactionBaseService.activeManager_" }, "3095": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__container__" }, "3096": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__configModule__" }, "3097": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TResult" + "qualifiedName": "TransactionBaseService.__moduleDeclaration__" }, "3098": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TError" + "qualifiedName": "TransactionBaseService.withTransaction" }, "3099": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "work" + "qualifiedName": "TransactionBaseService.withTransaction" }, "3100": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "transactionManager" }, "3101": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "3102": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "3103": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "isolationOrErrorHandler" + "qualifiedName": "err" }, "3104": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", @@ -120805,199 +126050,199 @@ }, "3105": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.code" }, "3106": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "3107": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "maybeErrorHandlerOrDontFail" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "3108": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TResult" }, "3109": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TError" }, "3110": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "work" }, "3111": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "AbstractNotificationService" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "3112": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "AbstractNotificationService.identifier" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "3113": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__constructor" + "qualifiedName": "transactionManager" }, "3114": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "AbstractNotificationService" + "qualifiedName": "isolationOrErrorHandler" }, "3115": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__container__" + "qualifiedName": "__type" }, "3116": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__configModule__" + "qualifiedName": "__type" }, "3117": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__moduleDeclaration__" + "qualifiedName": "error" }, "3118": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "AbstractNotificationService.getIdentifier" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "maybeErrorHandlerOrDontFail" }, "3119": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "AbstractNotificationService.getIdentifier" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "3120": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "AbstractNotificationService.sendNotification" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "3121": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "AbstractNotificationService.sendNotification" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" }, "3122": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "event" + "qualifiedName": "AbstractNotificationService" }, "3123": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "data" + "qualifiedName": "AbstractNotificationService.identifier" }, "3124": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "attachmentGenerator" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.__constructor" }, "3125": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "AbstractNotificationService.resendNotification" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "AbstractNotificationService" }, "3126": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "AbstractNotificationService.resendNotification" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__container__" }, "3127": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "notification" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__configModule__" }, "3128": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__moduleDeclaration__" }, "3129": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "attachmentGenerator" + "qualifiedName": "AbstractNotificationService.getIdentifier" }, "3130": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.manager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "AbstractNotificationService.getIdentifier" }, "3131": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.transactionManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "AbstractNotificationService.sendNotification" }, "3132": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "AbstractNotificationService.sendNotification" }, "3133": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "event" }, "3134": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__container__" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "data" }, "3135": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__configModule__" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "attachmentGenerator" }, "3136": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__moduleDeclaration__" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "AbstractNotificationService.resendNotification" }, "3137": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "AbstractNotificationService.resendNotification" }, "3138": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "notification" }, "3139": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "config" }, "3140": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "attachmentGenerator" }, "3141": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "qualifiedName": "TransactionBaseService.manager_" }, "3142": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "err" + "qualifiedName": "TransactionBaseService.transactionManager_" }, "3143": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.activeManager_" }, "3144": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type.code" + "qualifiedName": "TransactionBaseService.activeManager_" }, "3145": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__container__" }, "3146": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__configModule__" }, "3147": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TResult" + "qualifiedName": "TransactionBaseService.__moduleDeclaration__" }, "3148": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TError" + "qualifiedName": "TransactionBaseService.withTransaction" }, "3149": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "work" + "qualifiedName": "TransactionBaseService.withTransaction" }, "3150": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "transactionManager" }, "3151": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "3152": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "3153": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "isolationOrErrorHandler" + "qualifiedName": "err" }, "3154": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", @@ -121005,267 +126250,259 @@ }, "3155": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.code" }, "3156": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "3157": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "maybeErrorHandlerOrDontFail" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "3158": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TResult" }, "3159": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TError" }, "3160": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "work" }, "3161": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "isNotificationService" - }, - "3162": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "isNotificationService" - }, - "3163": { - "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", - "qualifiedName": "obj" - }, - "3164": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "isPaymentProcessor" - }, - "3165": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "isPaymentProcessor" - }, - "3166": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "obj" - }, - "3167": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "isPaymentProcessorError" - }, - "3168": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "isPaymentProcessorError" - }, - "3169": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "obj" - }, - "3170": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessorContext" - }, - "3171": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "__type" }, + "3162": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "3163": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "transactionManager" + }, + "3164": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "isolationOrErrorHandler" + }, + "3165": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "3166": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "3167": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" + }, + "3168": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "maybeErrorHandlerOrDontFail" + }, + "3169": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "3170": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "3171": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" + }, "3172": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.billing_address" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "isNotificationService" }, "3173": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.email" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "isNotificationService" }, "3174": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.currency_code" + "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", + "qualifiedName": "obj" }, "3175": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.amount" + "qualifiedName": "isPaymentProcessor" }, "3176": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.resource_id" + "qualifiedName": "isPaymentProcessor" }, "3177": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.customer" + "qualifiedName": "obj" }, "3178": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.context" + "qualifiedName": "isPaymentProcessorError" }, "3179": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.paymentSessionData" + "qualifiedName": "isPaymentProcessorError" }, "3180": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessorSessionResponse" + "qualifiedName": "obj" }, "3181": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type" + "qualifiedName": "PaymentProcessorContext" }, "3182": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.update_requests" + "qualifiedName": "__type.billing_address" }, "3183": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.email" }, "3184": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.customer_metadata" + "qualifiedName": "__type.currency_code" }, "3185": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.session_data" + "qualifiedName": "__type.amount" }, "3186": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessorError" + "qualifiedName": "__type.resource_id" }, "3187": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessorError.error" + "qualifiedName": "__type.customer" }, "3188": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessorError.code" + "qualifiedName": "__type.context" }, "3189": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessorError.detail" + "qualifiedName": "__type.paymentSessionData" }, "3190": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor" + "qualifiedName": "PaymentProcessorSessionResponse" }, "3191": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.getIdentifier" + "qualifiedName": "__type.update_requests" }, "3192": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.getIdentifier" + "qualifiedName": "__type" }, "3193": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.initiatePayment" + "qualifiedName": "__type.customer_metadata" }, "3194": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.initiatePayment" + "qualifiedName": "__type.session_data" }, "3195": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "context" + "qualifiedName": "PaymentProcessorError" }, "3196": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.updatePayment" + "qualifiedName": "PaymentProcessorError.error" }, "3197": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.updatePayment" + "qualifiedName": "PaymentProcessorError.code" }, "3198": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "context" + "qualifiedName": "PaymentProcessorError.detail" }, "3199": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.refundPayment" - }, - "3200": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.refundPayment" - }, - "3201": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "PaymentProcessor" }, "3202": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "refundAmount" + "qualifiedName": "PaymentProcessor.initiatePayment" }, "3203": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.authorizePayment" + "qualifiedName": "PaymentProcessor.initiatePayment" }, "3204": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.authorizePayment" + "qualifiedName": "context" }, "3205": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "PaymentProcessor.updatePayment" }, "3206": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "context" + "qualifiedName": "PaymentProcessor.updatePayment" }, "3207": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type" + "qualifiedName": "context" }, "3208": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.status" + "qualifiedName": "PaymentProcessor.refundPayment" }, "3209": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.data" + "qualifiedName": "PaymentProcessor.refundPayment" }, "3210": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.capturePayment" + "qualifiedName": "paymentSessionData" }, "3211": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.capturePayment" + "qualifiedName": "refundAmount" }, "3212": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "PaymentProcessor.authorizePayment" }, "3213": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.deletePayment" + "qualifiedName": "PaymentProcessor.authorizePayment" }, "3214": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.deletePayment" + "qualifiedName": "paymentSessionData" }, "3215": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "context" }, "3216": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.retrievePayment" + "qualifiedName": "__type" }, "3217": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.retrievePayment" + "qualifiedName": "__type.status" }, "3218": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "__type.data" }, "3219": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.cancelPayment" + "qualifiedName": "PaymentProcessor.capturePayment" }, "3220": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.cancelPayment" + "qualifiedName": "PaymentProcessor.capturePayment" }, "3221": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", @@ -121273,11 +126510,11 @@ }, "3222": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.getPaymentStatus" + "qualifiedName": "PaymentProcessor.deletePayment" }, "3223": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.getPaymentStatus" + "qualifiedName": "PaymentProcessor.deletePayment" }, "3224": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", @@ -121285,119 +126522,111 @@ }, "3225": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.updatePaymentData" + "qualifiedName": "PaymentProcessor.retrievePayment" }, "3226": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "PaymentProcessor.updatePaymentData" + "qualifiedName": "PaymentProcessor.retrievePayment" }, "3227": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "sessionId" + "qualifiedName": "paymentSessionData" }, "3228": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "data" + "qualifiedName": "PaymentProcessor.cancelPayment" }, "3229": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor" + "qualifiedName": "PaymentProcessor.cancelPayment" }, "3230": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.identifier" + "qualifiedName": "paymentSessionData" }, "3231": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.__constructor" + "qualifiedName": "PaymentProcessor.getPaymentStatus" }, "3232": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor" + "qualifiedName": "PaymentProcessor.getPaymentStatus" }, "3233": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "container" + "qualifiedName": "paymentSessionData" }, "3234": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "config" + "qualifiedName": "PaymentProcessor.updatePaymentData" }, "3235": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.container" + "qualifiedName": "PaymentProcessor.updatePaymentData" }, "3236": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.config" + "qualifiedName": "sessionId" }, "3237": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.getIdentifier" + "qualifiedName": "data" }, "3238": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.getIdentifier" + "qualifiedName": "AbstractPaymentProcessor" }, "3239": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.capturePayment" + "qualifiedName": "AbstractPaymentProcessor.identifier" }, "3240": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.capturePayment" + "qualifiedName": "AbstractPaymentProcessor.__constructor" }, "3241": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "AbstractPaymentProcessor" }, "3242": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.authorizePayment" + "qualifiedName": "container" }, "3243": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.authorizePayment" + "qualifiedName": "config" }, "3244": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "AbstractPaymentProcessor.container" }, "3245": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "context" - }, - "3246": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type" - }, - "3247": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.status" + "qualifiedName": "AbstractPaymentProcessor.config" }, "3248": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "__type.data" + "qualifiedName": "AbstractPaymentProcessor.capturePayment" }, "3249": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.cancelPayment" + "qualifiedName": "AbstractPaymentProcessor.capturePayment" }, "3250": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.cancelPayment" + "qualifiedName": "paymentSessionData" }, "3251": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "AbstractPaymentProcessor.authorizePayment" }, "3252": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.initiatePayment" + "qualifiedName": "AbstractPaymentProcessor.authorizePayment" }, "3253": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.initiatePayment" + "qualifiedName": "paymentSessionData" }, "3254": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", @@ -121405,23 +126634,23 @@ }, "3255": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.deletePayment" + "qualifiedName": "__type" }, "3256": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.deletePayment" + "qualifiedName": "__type.status" }, "3257": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "__type.data" }, "3258": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.getPaymentStatus" + "qualifiedName": "AbstractPaymentProcessor.cancelPayment" }, "3259": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.getPaymentStatus" + "qualifiedName": "AbstractPaymentProcessor.cancelPayment" }, "3260": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", @@ -121429,251 +126658,251 @@ }, "3261": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.refundPayment" + "qualifiedName": "AbstractPaymentProcessor.initiatePayment" }, "3262": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.refundPayment" + "qualifiedName": "AbstractPaymentProcessor.initiatePayment" }, "3263": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "context" }, "3264": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "refundAmount" + "qualifiedName": "AbstractPaymentProcessor.deletePayment" }, "3265": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.retrievePayment" + "qualifiedName": "AbstractPaymentProcessor.deletePayment" }, "3266": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.retrievePayment" + "qualifiedName": "paymentSessionData" }, "3267": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "AbstractPaymentProcessor.getPaymentStatus" }, "3268": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.updatePayment" + "qualifiedName": "AbstractPaymentProcessor.getPaymentStatus" }, "3269": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.updatePayment" + "qualifiedName": "paymentSessionData" }, "3270": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "context" + "qualifiedName": "AbstractPaymentProcessor.refundPayment" }, "3271": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.updatePaymentData" + "qualifiedName": "AbstractPaymentProcessor.refundPayment" }, "3272": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "AbstractPaymentProcessor.updatePaymentData" + "qualifiedName": "paymentSessionData" }, "3273": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "sessionId" + "qualifiedName": "refundAmount" }, "3274": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", - "qualifiedName": "data" + "qualifiedName": "AbstractPaymentProcessor.retrievePayment" }, "3275": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "isPaymentService" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.retrievePayment" }, "3276": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "isPaymentService" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" }, "3277": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "obj" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.updatePayment" }, "3278": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "Data" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.updatePayment" }, "3279": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentData" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "context" }, "3280": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentSessionData" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.updatePaymentData" }, "3281": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentContext" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.updatePaymentData" }, "3282": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "sessionId" }, "3283": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.cart" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "data" }, "3284": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type" + "qualifiedName": "isPaymentService" }, "3285": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.context" + "qualifiedName": "isPaymentService" }, "3286": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.id" + "qualifiedName": "obj" }, "3287": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.email" + "qualifiedName": "Data" }, "3288": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.shipping_address" + "qualifiedName": "PaymentData" }, "3289": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.shipping_methods" + "qualifiedName": "PaymentSessionData" }, "3290": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.billing_address" + "qualifiedName": "PaymentContext" }, "3291": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.currency_code" + "qualifiedName": "__type" }, "3292": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.amount" + "qualifiedName": "__type.cart" }, "3293": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.resource_id" + "qualifiedName": "__type" }, "3294": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.customer" + "qualifiedName": "__type.context" }, "3295": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.paymentSessionData" + "qualifiedName": "__type.id" }, "3296": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentSessionResponse" + "qualifiedName": "__type.email" }, "3297": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.shipping_address" }, "3298": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.update_requests" + "qualifiedName": "__type.shipping_methods" }, "3299": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.billing_address" }, "3300": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.customer_metadata" + "qualifiedName": "__type.currency_code" }, "3301": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.session_data" + "qualifiedName": "__type.amount" }, "3302": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService" + "qualifiedName": "__type.resource_id" }, "3303": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.getIdentifier" + "qualifiedName": "__type.customer" }, "3304": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.getIdentifier" + "qualifiedName": "__type.paymentSessionData" }, "3305": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.getPaymentData" + "qualifiedName": "PaymentSessionResponse" }, "3306": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.getPaymentData" + "qualifiedName": "__type" }, "3307": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentSession" + "qualifiedName": "__type.update_requests" }, "3308": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.updatePaymentData" + "qualifiedName": "__type" }, "3309": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.updatePaymentData" + "qualifiedName": "__type.customer_metadata" }, "3310": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "__type.session_data" }, "3311": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "data" + "qualifiedName": "PaymentService" }, "3312": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.createPayment" + "qualifiedName": "PaymentService.getIdentifier" }, "3313": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.createPayment" + "qualifiedName": "PaymentService.getIdentifier" }, "3314": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "context" + "qualifiedName": "PaymentService.getPaymentData" }, "3315": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.createPayment" + "qualifiedName": "PaymentService.getPaymentData" }, "3316": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "cart" + "qualifiedName": "paymentSession" }, "3317": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.retrievePayment" + "qualifiedName": "PaymentService.updatePaymentData" }, "3318": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.retrievePayment" + "qualifiedName": "PaymentService.updatePaymentData" }, "3319": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentData" + "qualifiedName": "paymentSessionData" }, "3320": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.updatePayment" + "qualifiedName": "data" }, "3321": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.updatePayment" + "qualifiedName": "PaymentService.createPayment" }, "3322": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "PaymentService.createPayment" }, "3323": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", @@ -121681,235 +126910,235 @@ }, "3324": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.updatePayment" + "qualifiedName": "PaymentService.createPayment" }, "3325": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "cart" }, "3326": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "cart" + "qualifiedName": "PaymentService.retrievePayment" }, "3327": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.authorizePayment" + "qualifiedName": "PaymentService.retrievePayment" }, "3328": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.authorizePayment" + "qualifiedName": "paymentData" }, "3329": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentSession" + "qualifiedName": "PaymentService.updatePayment" }, "3330": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "context" + "qualifiedName": "PaymentService.updatePayment" }, "3331": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type" + "qualifiedName": "paymentSessionData" }, "3332": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.data" + "qualifiedName": "context" }, "3333": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.status" + "qualifiedName": "PaymentService.updatePayment" }, "3334": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.capturePayment" + "qualifiedName": "paymentSessionData" }, "3335": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.capturePayment" + "qualifiedName": "cart" }, "3336": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "payment" + "qualifiedName": "PaymentService.authorizePayment" }, "3337": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.refundPayment" + "qualifiedName": "PaymentService.authorizePayment" }, "3338": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.refundPayment" + "qualifiedName": "paymentSession" }, "3339": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "payment" + "qualifiedName": "context" }, "3340": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "refundAmount" + "qualifiedName": "__type" }, "3341": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.cancelPayment" + "qualifiedName": "__type.data" }, "3342": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.cancelPayment" + "qualifiedName": "__type.status" }, "3343": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "payment" + "qualifiedName": "PaymentService.capturePayment" }, "3344": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.deletePayment" + "qualifiedName": "PaymentService.capturePayment" }, "3345": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.deletePayment" + "qualifiedName": "payment" }, "3346": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentSession" + "qualifiedName": "PaymentService.refundPayment" }, "3347": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.retrieveSavedMethods" + "qualifiedName": "PaymentService.refundPayment" }, "3348": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.retrieveSavedMethods" + "qualifiedName": "payment" }, "3349": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "customer" + "qualifiedName": "refundAmount" }, "3350": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.getStatus" + "qualifiedName": "PaymentService.cancelPayment" }, "3351": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "PaymentService.getStatus" + "qualifiedName": "PaymentService.cancelPayment" }, "3352": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "data" + "qualifiedName": "payment" }, "3353": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.manager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "PaymentService.deletePayment" }, "3354": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.transactionManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "PaymentService.deletePayment" }, "3355": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "paymentSession" }, "3356": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "PaymentService.retrieveSavedMethods" }, "3357": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__container__" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "PaymentService.retrieveSavedMethods" }, "3358": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__configModule__" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "customer" }, "3359": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__moduleDeclaration__" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "PaymentService.getStatus" }, "3360": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "PaymentService.getStatus" }, "3361": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "data" }, "3362": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "qualifiedName": "TransactionBaseService.manager_" }, "3363": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "qualifiedName": "TransactionBaseService.transactionManager_" }, "3364": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "qualifiedName": "TransactionBaseService.activeManager_" }, "3365": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "err" + "qualifiedName": "TransactionBaseService.activeManager_" }, "3366": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.__container__" }, "3367": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type.code" + "qualifiedName": "TransactionBaseService.__configModule__" }, "3368": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__moduleDeclaration__" }, "3369": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.withTransaction" }, "3370": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TResult" + "qualifiedName": "TransactionBaseService.withTransaction" }, "3371": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TError" + "qualifiedName": "transactionManager" }, "3372": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "work" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "3373": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "3374": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "err" }, "3375": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "qualifiedName": "__type" }, "3376": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "isolationOrErrorHandler" + "qualifiedName": "__type.code" }, "3377": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "3378": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "3379": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "TResult" }, "3380": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "maybeErrorHandlerOrDontFail" + "qualifiedName": "TError" }, "3381": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "work" }, "3382": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", @@ -121917,111 +127146,111 @@ }, "3383": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "3384": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "transactionManager" }, "3385": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.identifier" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "isolationOrErrorHandler" }, "3386": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.__constructor" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "3387": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "3388": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "container" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" }, "3389": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "maybeErrorHandlerOrDontFail" }, "3390": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.getIdentifier" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "3391": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.getIdentifier" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" }, "3392": { - "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.getPaymentData" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" }, "3393": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.getPaymentData" + "qualifiedName": "AbstractPaymentService" }, "3394": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentSession" + "qualifiedName": "AbstractPaymentService.identifier" }, "3395": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.updatePaymentData" + "qualifiedName": "AbstractPaymentService.__constructor" }, "3396": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.updatePaymentData" + "qualifiedName": "AbstractPaymentService" }, "3397": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "container" }, "3398": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "data" + "qualifiedName": "config" }, "3399": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.createPayment" + "qualifiedName": "AbstractPaymentService.getIdentifier" }, "3400": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.createPayment" + "qualifiedName": "AbstractPaymentService.getIdentifier" }, "3401": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "context" + "qualifiedName": "AbstractPaymentService.getPaymentData" }, "3402": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.createPayment" + "qualifiedName": "AbstractPaymentService.getPaymentData" }, "3403": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "cart" + "qualifiedName": "paymentSession" }, "3404": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.retrievePayment" + "qualifiedName": "AbstractPaymentService.updatePaymentData" }, "3405": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.retrievePayment" + "qualifiedName": "AbstractPaymentService.updatePaymentData" }, "3406": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentData" + "qualifiedName": "paymentSessionData" }, "3407": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.updatePayment" + "qualifiedName": "data" }, "3408": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.updatePayment" + "qualifiedName": "AbstractPaymentService.createPayment" }, "3409": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "AbstractPaymentService.createPayment" }, "3410": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", @@ -122029,235 +127258,235 @@ }, "3411": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.updatePayment" + "qualifiedName": "AbstractPaymentService.createPayment" }, "3412": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentSessionData" + "qualifiedName": "cart" }, "3413": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "cart" + "qualifiedName": "AbstractPaymentService.retrievePayment" }, "3414": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.authorizePayment" + "qualifiedName": "AbstractPaymentService.retrievePayment" }, "3415": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.authorizePayment" + "qualifiedName": "paymentData" }, "3416": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentSession" + "qualifiedName": "AbstractPaymentService.updatePayment" }, "3417": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "context" + "qualifiedName": "AbstractPaymentService.updatePayment" }, "3418": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type" + "qualifiedName": "paymentSessionData" }, "3419": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.data" + "qualifiedName": "context" }, "3420": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "__type.status" + "qualifiedName": "AbstractPaymentService.updatePayment" }, "3421": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.capturePayment" + "qualifiedName": "paymentSessionData" }, "3422": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.capturePayment" + "qualifiedName": "cart" }, "3423": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "payment" + "qualifiedName": "AbstractPaymentService.authorizePayment" }, "3424": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.refundPayment" + "qualifiedName": "AbstractPaymentService.authorizePayment" }, "3425": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.refundPayment" + "qualifiedName": "paymentSession" }, "3426": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "payment" + "qualifiedName": "context" }, "3427": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "refundAmount" + "qualifiedName": "__type" }, "3428": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.cancelPayment" + "qualifiedName": "__type.data" }, "3429": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.cancelPayment" + "qualifiedName": "__type.status" }, "3430": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "payment" + "qualifiedName": "AbstractPaymentService.capturePayment" }, "3431": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.deletePayment" + "qualifiedName": "AbstractPaymentService.capturePayment" }, "3432": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.deletePayment" + "qualifiedName": "payment" }, "3433": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "paymentSession" + "qualifiedName": "AbstractPaymentService.refundPayment" }, "3434": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.retrieveSavedMethods" + "qualifiedName": "AbstractPaymentService.refundPayment" }, "3435": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.retrieveSavedMethods" + "qualifiedName": "payment" }, "3436": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "customer" + "qualifiedName": "refundAmount" }, "3437": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.getStatus" + "qualifiedName": "AbstractPaymentService.cancelPayment" }, "3438": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "AbstractPaymentService.getStatus" + "qualifiedName": "AbstractPaymentService.cancelPayment" }, "3439": { "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", - "qualifiedName": "data" + "qualifiedName": "payment" }, "3440": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.manager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "AbstractPaymentService.deletePayment" }, "3441": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.transactionManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "AbstractPaymentService.deletePayment" }, "3442": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "paymentSession" }, "3443": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "AbstractPaymentService.retrieveSavedMethods" }, "3444": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__container__" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "AbstractPaymentService.retrieveSavedMethods" }, "3445": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__configModule__" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "customer" }, "3446": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__moduleDeclaration__" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "AbstractPaymentService.getStatus" }, "3447": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "AbstractPaymentService.getStatus" }, "3448": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-service.ts", + "qualifiedName": "data" }, "3449": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "qualifiedName": "TransactionBaseService.manager_" }, "3450": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "qualifiedName": "TransactionBaseService.transactionManager_" }, "3451": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + "qualifiedName": "TransactionBaseService.activeManager_" }, "3452": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "err" + "qualifiedName": "TransactionBaseService.activeManager_" }, "3453": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.__container__" }, "3454": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type.code" + "qualifiedName": "TransactionBaseService.__configModule__" }, "3455": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.__moduleDeclaration__" }, "3456": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" + "qualifiedName": "TransactionBaseService.withTransaction" }, "3457": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TResult" + "qualifiedName": "TransactionBaseService.withTransaction" }, "3458": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TError" + "qualifiedName": "transactionManager" }, "3459": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "work" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "3460": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" }, "3461": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "err" }, "3462": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" + "qualifiedName": "__type" }, "3463": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "isolationOrErrorHandler" + "qualifiedName": "__type.code" }, "3464": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "3465": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "TransactionBaseService.atomicPhase_" }, "3466": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "TResult" }, "3467": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "maybeErrorHandlerOrDontFail" + "qualifiedName": "TError" }, "3468": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" + "qualifiedName": "work" }, "3469": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", @@ -122265,935 +127494,935 @@ }, "3470": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "3471": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "isPriceSelectionStrategy" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "transactionManager" }, "3472": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "isPriceSelectionStrategy" - }, - "3473": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "object" - }, - "3474": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "IPriceSelectionStrategy" - }, - "3475": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "IPriceSelectionStrategy.calculateVariantPrice" - }, - "3476": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "IPriceSelectionStrategy.calculateVariantPrice" - }, - "3477": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "data" - }, - "3478": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type" - }, - "3479": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.variantId" - }, - "3480": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.quantity" - }, - "3481": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "context" - }, - "3482": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "IPriceSelectionStrategy.onVariantsPricesUpdate" - }, - "3483": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "IPriceSelectionStrategy.onVariantsPricesUpdate" - }, - "3484": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "variantIds" - }, - "3485": { - "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", - "qualifiedName": "ITransactionBaseService.withTransaction" - }, - "3486": { - "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", - "qualifiedName": "ITransactionBaseService.withTransaction" - }, - "3487": { - "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", - "qualifiedName": "transactionManager" - }, - "3488": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "AbstractPriceSelectionStrategy" - }, - "3489": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__constructor" - }, - "3490": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "AbstractPriceSelectionStrategy" - }, - "3491": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__container__" - }, - "3492": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__configModule__" - }, - "3493": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__moduleDeclaration__" - }, - "3494": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "AbstractPriceSelectionStrategy.calculateVariantPrice" - }, - "3495": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "AbstractPriceSelectionStrategy.calculateVariantPrice" - }, - "3496": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "data" - }, - "3497": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type" - }, - "3498": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.variantId" - }, - "3499": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.taxRates" - }, - "3500": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.quantity" - }, - "3501": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "context" - }, - "3502": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "AbstractPriceSelectionStrategy.onVariantsPricesUpdate" - }, - "3503": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "AbstractPriceSelectionStrategy.onVariantsPricesUpdate" - }, - "3504": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "variantIds" - }, - "3505": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.manager_" - }, - "3506": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.transactionManager_" - }, - "3507": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" - }, - "3508": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" - }, - "3509": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__container__" - }, - "3510": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__configModule__" - }, - "3511": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__moduleDeclaration__" - }, - "3512": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" - }, - "3513": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" - }, - "3514": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" - }, - "3515": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" - }, - "3516": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" - }, - "3517": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "err" - }, - "3518": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" - }, - "3519": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type.code" - }, - "3520": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" - }, - "3521": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" - }, - "3522": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TResult" - }, - "3523": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TError" - }, - "3524": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "work" - }, - "3525": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" - }, - "3526": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" - }, - "3527": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" - }, - "3528": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "isolationOrErrorHandler" }, - "3529": { + "3473": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "__type" }, - "3530": { + "3474": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "__type" }, - "3531": { + "3475": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "error" }, - "3532": { + "3476": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "maybeErrorHandlerOrDontFail" }, - "3533": { + "3477": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "__type" }, + "3478": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "3479": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" + }, + "3480": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "isPriceSelectionStrategy" + }, + "3481": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "isPriceSelectionStrategy" + }, + "3482": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "object" + }, + "3483": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "IPriceSelectionStrategy" + }, + "3484": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "IPriceSelectionStrategy.calculateVariantPrice" + }, + "3485": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "IPriceSelectionStrategy.calculateVariantPrice" + }, + "3486": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "data" + }, + "3487": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type" + }, + "3488": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.variantId" + }, + "3489": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.quantity" + }, + "3490": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "context" + }, + "3491": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "IPriceSelectionStrategy.onVariantsPricesUpdate" + }, + "3492": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "IPriceSelectionStrategy.onVariantsPricesUpdate" + }, + "3493": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "variantIds" + }, + "3494": { + "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", + "qualifiedName": "ITransactionBaseService.withTransaction" + }, + "3495": { + "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", + "qualifiedName": "ITransactionBaseService.withTransaction" + }, + "3496": { + "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", + "qualifiedName": "transactionManager" + }, + "3497": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "AbstractPriceSelectionStrategy" + }, + "3498": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.__constructor" + }, + "3499": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "AbstractPriceSelectionStrategy" + }, + "3500": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__container__" + }, + "3501": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__configModule__" + }, + "3502": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__moduleDeclaration__" + }, + "3503": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "AbstractPriceSelectionStrategy.calculateVariantPrice" + }, + "3504": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "AbstractPriceSelectionStrategy.calculateVariantPrice" + }, + "3505": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "data" + }, + "3506": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type" + }, + "3507": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.variantId" + }, + "3508": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.taxRates" + }, + "3509": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.quantity" + }, + "3510": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "context" + }, + "3511": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "AbstractPriceSelectionStrategy.onVariantsPricesUpdate" + }, + "3512": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "AbstractPriceSelectionStrategy.onVariantsPricesUpdate" + }, + "3513": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "variantIds" + }, + "3514": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.manager_" + }, + "3515": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.transactionManager_" + }, + "3516": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.activeManager_" + }, + "3517": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.activeManager_" + }, + "3518": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.__container__" + }, + "3519": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.__configModule__" + }, + "3520": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.__moduleDeclaration__" + }, + "3521": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.withTransaction" + }, + "3522": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.withTransaction" + }, + "3523": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "transactionManager" + }, + "3524": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + }, + "3525": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + }, + "3526": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "err" + }, + "3527": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "3528": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type.code" + }, + "3529": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.atomicPhase_" + }, + "3530": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.atomicPhase_" + }, + "3531": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TResult" + }, + "3532": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TError" + }, + "3533": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "work" + }, "3534": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "__type" }, "3535": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "3536": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "PriceSelectionContext" + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "transactionManager" }, "3537": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type" - }, - "3538": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.cart_id" - }, - "3539": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.customer_id" - }, - "3540": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.region_id" - }, - "3541": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.quantity" - }, - "3542": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.currency_code" - }, - "3543": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.include_discount_prices" - }, - "3544": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.tax_rates" - }, - "3545": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.ignore_cache" - }, - "3546": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "PriceType" - }, - "3547": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__object" - }, - "3548": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "SALE" - }, - "3549": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "OVERRIDE" - }, - "3550": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "DEFAULT" - }, - "3551": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "PriceType" - }, - "3552": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "PriceSelectionResult" - }, - "3553": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type" - }, - "3554": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.originalPrice" - }, - "3555": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.originalPriceIncludesTax" - }, - "3556": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.calculatedPrice" - }, - "3557": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.calculatedPriceIncludesTax" - }, - "3558": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.calculatedPriceType" - }, - "3559": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "__type.prices" - }, - "3560": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", - "qualifiedName": "isTaxCalculationStrategy" - }, - "3561": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", - "qualifiedName": "isTaxCalculationStrategy" - }, - "3562": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", - "qualifiedName": "object" - }, - "3563": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", - "qualifiedName": "ITaxCalculationStrategy" - }, - "3564": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", - "qualifiedName": "ITaxCalculationStrategy.calculate" - }, - "3565": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", - "qualifiedName": "ITaxCalculationStrategy.calculate" - }, - "3566": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", - "qualifiedName": "items" - }, - "3567": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", - "qualifiedName": "taxLines" - }, - "3568": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", - "qualifiedName": "calculationContext" - }, - "3569": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "ShippingTaxCalculationLine" - }, - "3570": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "__type" - }, - "3571": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "__type.shipping_method" - }, - "3572": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "__type.rates" - }, - "3573": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "ItemTaxCalculationLine" - }, - "3574": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "__type" - }, - "3575": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "__type.item" - }, - "3576": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "__type.rates" - }, - "3577": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "TaxCalculationContext" - }, - "3578": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "__type" - }, - "3579": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "__type.shipping_address" - }, - "3580": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "__type.customer" - }, - "3581": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "__type.region" - }, - "3582": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "__type.is_return" - }, - "3583": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "__type.shipping_methods" - }, - "3584": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "__type.allocation_map" - }, - "3585": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "ITaxService" - }, - "3586": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "ITaxService.getTaxLines" - }, - "3587": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "ITaxService.getTaxLines" - }, - "3588": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "itemLines" - }, - "3589": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "shippingLines" - }, - "3590": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "context" - }, - "3591": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "AbstractTaxService" - }, - "3592": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "AbstractTaxService.identifier" - }, - "3595": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "AbstractTaxService.getIdentifier" - }, - "3596": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "AbstractTaxService.getIdentifier" - }, - "3597": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "AbstractTaxService.getTaxLines" - }, - "3598": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "AbstractTaxService.getTaxLines" - }, - "3599": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "itemLines" - }, - "3600": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "shippingLines" - }, - "3601": { - "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", - "qualifiedName": "context" - }, - "3602": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService" - }, - "3603": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__constructor" - }, - "3604": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService" - }, - "3605": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__container__" - }, - "3606": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__configModule__" - }, - "3607": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__moduleDeclaration__" - }, - "3608": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.manager_" - }, - "3609": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.transactionManager_" - }, - "3610": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" - }, - "3611": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.activeManager_" - }, - "3612": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__container__" - }, - "3613": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__configModule__" - }, - "3614": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.__moduleDeclaration__" - }, - "3615": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" - }, - "3616": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.withTransaction" - }, - "3617": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" - }, - "3618": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" - }, - "3619": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" - }, - "3620": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "err" - }, - "3621": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" - }, - "3622": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type.code" - }, - "3623": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" - }, - "3624": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TransactionBaseService.atomicPhase_" - }, - "3625": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TResult" - }, - "3626": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "TError" - }, - "3627": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "work" - }, - "3628": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" - }, - "3629": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "__type" - }, - "3630": { - "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "transactionManager" - }, - "3631": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "isolationOrErrorHandler" }, - "3632": { + "3538": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "__type" }, - "3633": { + "3539": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "__type" }, - "3634": { + "3540": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "error" }, - "3635": { + "3541": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "maybeErrorHandlerOrDontFail" }, - "3636": { + "3542": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "__type" }, + "3543": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "3544": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" + }, + "3545": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "PriceSelectionContext" + }, + "3546": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type" + }, + "3547": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.cart_id" + }, + "3548": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.customer_id" + }, + "3549": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.region_id" + }, + "3550": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.quantity" + }, + "3551": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.currency_code" + }, + "3552": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.include_discount_prices" + }, + "3553": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.tax_rates" + }, + "3554": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.ignore_cache" + }, + "3555": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "PriceType" + }, + "3556": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__object" + }, + "3557": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "SALE" + }, + "3558": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "OVERRIDE" + }, + "3559": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "DEFAULT" + }, + "3560": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "PriceType" + }, + "3561": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "PriceSelectionResult" + }, + "3562": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type" + }, + "3563": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.originalPrice" + }, + "3564": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.originalPriceIncludesTax" + }, + "3565": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.calculatedPrice" + }, + "3566": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.calculatedPriceIncludesTax" + }, + "3567": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.calculatedPriceType" + }, + "3568": { + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "__type.prices" + }, + "3569": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", + "qualifiedName": "isTaxCalculationStrategy" + }, + "3570": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", + "qualifiedName": "isTaxCalculationStrategy" + }, + "3571": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", + "qualifiedName": "object" + }, + "3572": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", + "qualifiedName": "ITaxCalculationStrategy" + }, + "3573": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", + "qualifiedName": "ITaxCalculationStrategy.calculate" + }, + "3574": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", + "qualifiedName": "ITaxCalculationStrategy.calculate" + }, + "3575": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", + "qualifiedName": "items" + }, + "3576": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", + "qualifiedName": "taxLines" + }, + "3577": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-calculation-strategy.ts", + "qualifiedName": "calculationContext" + }, + "3578": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "ShippingTaxCalculationLine" + }, + "3579": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "__type" + }, + "3580": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "__type.shipping_method" + }, + "3581": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "__type.rates" + }, + "3582": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "ItemTaxCalculationLine" + }, + "3583": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "__type" + }, + "3584": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "__type.item" + }, + "3585": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "__type.rates" + }, + "3586": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "TaxCalculationContext" + }, + "3587": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "__type" + }, + "3588": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "__type.shipping_address" + }, + "3589": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "__type.customer" + }, + "3590": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "__type.region" + }, + "3591": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "__type.is_return" + }, + "3592": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "__type.shipping_methods" + }, + "3593": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "__type.allocation_map" + }, + "3594": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "ITaxService" + }, + "3595": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "ITaxService.getTaxLines" + }, + "3596": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "ITaxService.getTaxLines" + }, + "3597": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "itemLines" + }, + "3598": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "shippingLines" + }, + "3599": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "context" + }, + "3600": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "AbstractTaxService" + }, + "3601": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "AbstractTaxService.identifier" + }, + "3604": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "AbstractTaxService.getIdentifier" + }, + "3605": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "AbstractTaxService.getIdentifier" + }, + "3606": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "AbstractTaxService.getTaxLines" + }, + "3607": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "AbstractTaxService.getTaxLines" + }, + "3608": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "itemLines" + }, + "3609": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "shippingLines" + }, + "3610": { + "sourceFileName": "../../../packages/medusa/src/interfaces/tax-service.ts", + "qualifiedName": "context" + }, + "3611": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService" + }, + "3612": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.__constructor" + }, + "3613": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService" + }, + "3614": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__container__" + }, + "3615": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__configModule__" + }, + "3616": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__moduleDeclaration__" + }, + "3617": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.manager_" + }, + "3618": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.transactionManager_" + }, + "3619": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.activeManager_" + }, + "3620": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.activeManager_" + }, + "3621": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.__container__" + }, + "3622": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.__configModule__" + }, + "3623": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.__moduleDeclaration__" + }, + "3624": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.withTransaction" + }, + "3625": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.withTransaction" + }, + "3626": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "transactionManager" + }, + "3627": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + }, + "3628": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.shouldRetryTransaction_" + }, + "3629": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "err" + }, + "3630": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "3631": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type.code" + }, + "3632": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.atomicPhase_" + }, + "3633": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TransactionBaseService.atomicPhase_" + }, + "3634": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TResult" + }, + "3635": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "TError" + }, + "3636": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "work" + }, "3637": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", "qualifiedName": "__type" }, "3638": { "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "3639": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "transactionManager" + }, + "3640": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "isolationOrErrorHandler" + }, + "3641": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "3642": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "3643": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" + }, + "3644": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "maybeErrorHandlerOrDontFail" + }, + "3645": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "3646": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "__type" + }, + "3647": { + "sourceFileName": "../../../packages/medusa/src/interfaces/transaction-base-service.ts", + "qualifiedName": "error" + }, + "3648": { "sourceFileName": "../../../packages/medusa/src/joiner-config.ts", "qualifiedName": "joinerConfig" }, - "3640": { + "3649": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", "qualifiedName": "BatchJobStatus" }, - "3641": { + "3650": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", "qualifiedName": "BatchJobStatus.CREATED" }, - "3642": { + "3651": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", "qualifiedName": "BatchJobStatus.PRE_PROCESSED" }, - "3643": { + "3652": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", "qualifiedName": "BatchJobStatus.CONFIRMED" }, - "3644": { + "3653": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", "qualifiedName": "BatchJobStatus.PROCESSING" }, - "3645": { + "3654": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", "qualifiedName": "BatchJobStatus.COMPLETED" }, - "3646": { + "3655": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", "qualifiedName": "BatchJobStatus.CANCELED" }, - "3647": { + "3656": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", "qualifiedName": "BatchJobStatus.FAILED" }, - "3648": { + "3657": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", "qualifiedName": "BatchJobUpdateProps" }, - "3649": { + "3658": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", "qualifiedName": "CreateBatchJobInput" }, - "3650": { + "3659": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", "qualifiedName": "__type" }, - "3651": { - "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "__type.type" - }, - "3652": { - "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "__type.context" - }, - "3653": { - "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "__type.dry_run" - }, - "3654": { - "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "BatchJobResultError" - }, - "3655": { - "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "__type" - }, - "3656": { - "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "__type.message" - }, - "3657": { - "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "__type.code" - }, - "3658": { - "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "__type.__index" - }, "3660": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "BatchJobResultStatDescriptor" + "qualifiedName": "__type.type" }, "3661": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.context" }, "3662": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "__type.key" + "qualifiedName": "__type.dry_run" }, "3663": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "__type.name" + "qualifiedName": "BatchJobResultError" }, "3664": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "__type.message" + "qualifiedName": "__type" }, "3665": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "FilterableBatchJobProps" + "qualifiedName": "__type.message" }, - "3668": { + "3666": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "FilterableBatchJobProps.id" + "qualifiedName": "__type.code" + }, + "3667": { + "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", + "qualifiedName": "__type.__index" }, "3669": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "FilterableBatchJobProps.status" + "qualifiedName": "BatchJobResultStatDescriptor" }, "3670": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "FilterableBatchJobProps.type" + "qualifiedName": "__type" }, "3671": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "FilterableBatchJobProps.created_by" + "qualifiedName": "__type.key" }, "3672": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "FilterableBatchJobProps.created_at" + "qualifiedName": "__type.name" }, "3673": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "FilterableBatchJobProps.updated_at" + "qualifiedName": "__type.message" }, "3674": { "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", - "qualifiedName": "BatchJobCreateProps" - }, - "3675": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "extendedFindParamsMixin" - }, - "3676": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "extendedFindParamsMixin" + "qualifiedName": "FilterableBatchJobProps" }, "3677": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__0" + "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", + "qualifiedName": "FilterableBatchJobProps.id" }, "3678": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", + "qualifiedName": "FilterableBatchJobProps.status" }, "3679": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.limit" + "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", + "qualifiedName": "FilterableBatchJobProps.type" }, "3680": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.offset" + "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", + "qualifiedName": "FilterableBatchJobProps.created_by" }, "3681": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "WithRequiredProperty" + "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", + "qualifiedName": "FilterableBatchJobProps.created_at" }, "3682": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "T" + "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", + "qualifiedName": "FilterableBatchJobProps.updated_at" }, "3683": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "K" + "sourceFileName": "../../../packages/medusa/src/types/batch-job.ts", + "qualifiedName": "BatchJobCreateProps" }, "3684": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "PartialPick" + "qualifiedName": "extendedFindParamsMixin" }, "3685": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "T" + "qualifiedName": "extendedFindParamsMixin" }, "3686": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "K" + "qualifiedName": "__0" }, "3687": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "Writable" + "qualifiedName": "__type" }, "3688": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "T" + "qualifiedName": "__type.limit" }, "3689": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindConfig" + "qualifiedName": "__type.offset" }, "3690": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindConfig.select" + "qualifiedName": "WithRequiredProperty" }, "3691": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindConfig.skip" + "qualifiedName": "T" }, "3692": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindConfig.take" + "qualifiedName": "K" }, "3693": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindConfig.relations" + "qualifiedName": "PartialPick" }, "3694": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindConfig.order" + "qualifiedName": "T" }, "3695": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type" + "qualifiedName": "K" }, "3696": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "Writable" + }, + "3697": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "T" }, "3698": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindConfig.Entity" + "qualifiedName": "FindConfig" }, "3699": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "ExtendedFindConfig" + "qualifiedName": "FindConfig.select" }, "3700": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type" + "qualifiedName": "FindConfig.skip" }, "3701": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.select" + "qualifiedName": "FindConfig.take" }, "3702": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.relations" + "qualifiedName": "FindConfig.relations" }, "3703": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.where" + "qualifiedName": "FindConfig.order" }, "3704": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.order" + "qualifiedName": "__type" }, "3705": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.skip" - }, - "3706": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.take" + "qualifiedName": "__type.__index" }, "3707": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "TEntity" + "qualifiedName": "FindConfig.Entity" }, "3708": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "QuerySelector" + "qualifiedName": "ExtendedFindConfig" }, "3709": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", @@ -123201,415 +128430,415 @@ }, "3710": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.q" + "qualifiedName": "__type.select" }, "3711": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "TEntity" + "qualifiedName": "__type.relations" }, "3712": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "TreeQuerySelector" + "qualifiedName": "__type.where" }, "3713": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.order" }, "3714": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.include_descendants_tree" + "qualifiedName": "__type.skip" }, "3715": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "TEntity" + "qualifiedName": "__type.take" }, "3716": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "Selector" + "qualifiedName": "TEntity" }, "3717": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "TEntity" + "qualifiedName": "QuerySelector" }, "3718": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "TotalField" + "qualifiedName": "__type" }, "3719": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "CustomFindOptions" + "qualifiedName": "__type.q" }, "3720": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "CustomFindOptions.select" + "qualifiedName": "TEntity" }, "3721": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "CustomFindOptions.where" + "qualifiedName": "TreeQuerySelector" }, "3722": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "CustomFindOptions.order" + "qualifiedName": "__type" }, "3723": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "CustomFindOptions.skip" + "qualifiedName": "__type.include_descendants_tree" }, "3724": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "CustomFindOptions.take" + "qualifiedName": "TEntity" }, "3725": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "CustomFindOptions.TModel" + "qualifiedName": "Selector" }, "3726": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "CustomFindOptions.InKeys" + "qualifiedName": "TEntity" }, "3727": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "QueryConfig" + "qualifiedName": "TotalField" }, "3728": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type" + "qualifiedName": "CustomFindOptions" }, "3729": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.defaultFields" + "qualifiedName": "CustomFindOptions.select" }, "3730": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.defaultRelations" + "qualifiedName": "CustomFindOptions.where" }, "3731": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.allowedFields" + "qualifiedName": "CustomFindOptions.order" }, "3732": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.allowedRelations" + "qualifiedName": "CustomFindOptions.skip" }, "3733": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.defaultLimit" + "qualifiedName": "CustomFindOptions.take" }, "3734": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.isList" + "qualifiedName": "CustomFindOptions.TModel" }, "3735": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "TEntity" + "qualifiedName": "CustomFindOptions.InKeys" }, "3736": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "RequestQueryFields" + "qualifiedName": "QueryConfig" }, "3737": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.expand" + "qualifiedName": "__type" }, "3738": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.fields" + "qualifiedName": "__type.defaultFields" }, "3739": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.offset" + "qualifiedName": "__type.defaultRelations" }, "3740": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.limit" + "qualifiedName": "__type.allowedFields" }, "3741": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.order" + "qualifiedName": "__type.allowedRelations" }, "3742": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "PaginatedResponse" + "qualifiedName": "__type.defaultLimit" }, "3743": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.limit" + "qualifiedName": "__type.isList" }, "3744": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.offset" + "qualifiedName": "TEntity" }, "3745": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.count" + "qualifiedName": "RequestQueryFields" }, "3746": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "DeleteResponse" + "qualifiedName": "__type.expand" }, "3747": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.id" + "qualifiedName": "__type.fields" }, "3748": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.object" + "qualifiedName": "__type.offset" }, "3749": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "__type.deleted" + "qualifiedName": "__type.limit" }, "3750": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "EmptyQueryParams" + "qualifiedName": "__type.order" + }, + "3751": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "PaginatedResponse" + }, + "3752": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "__type.limit" }, "3753": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "DateComparisonOperator" + "qualifiedName": "__type.offset" + }, + "3754": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "__type.count" + }, + "3755": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "DeleteResponse" }, "3756": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "DateComparisonOperator.lt" + "qualifiedName": "__type.id" }, "3757": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "DateComparisonOperator.gt" + "qualifiedName": "__type.object" }, "3758": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "DateComparisonOperator.gte" + "qualifiedName": "__type.deleted" }, "3759": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "DateComparisonOperator.lte" + "qualifiedName": "EmptyQueryParams" }, - "3760": { + "3762": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "StringComparisonOperator" - }, - "3763": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "StringComparisonOperator.lt" - }, - "3764": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "StringComparisonOperator.gt" + "qualifiedName": "DateComparisonOperator" }, "3765": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "StringComparisonOperator.gte" + "qualifiedName": "DateComparisonOperator.lt" }, "3766": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "StringComparisonOperator.lte" + "qualifiedName": "DateComparisonOperator.gt" }, "3767": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "StringComparisonOperator.contains" + "qualifiedName": "DateComparisonOperator.gte" }, "3768": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "StringComparisonOperator.starts_with" + "qualifiedName": "DateComparisonOperator.lte" }, "3769": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "StringComparisonOperator.ends_with" + "qualifiedName": "StringComparisonOperator" }, - "3770": { + "3772": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "NumericalComparisonOperator" + "qualifiedName": "StringComparisonOperator.lt" }, "3773": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "NumericalComparisonOperator.lt" + "qualifiedName": "StringComparisonOperator.gt" }, "3774": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "NumericalComparisonOperator.gt" + "qualifiedName": "StringComparisonOperator.gte" }, "3775": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "NumericalComparisonOperator.gte" + "qualifiedName": "StringComparisonOperator.lte" }, "3776": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "NumericalComparisonOperator.lte" + "qualifiedName": "StringComparisonOperator.contains" }, "3777": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressPayload" + "qualifiedName": "StringComparisonOperator.starts_with" }, - "3780": { + "3778": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressPayload.first_name" + "qualifiedName": "StringComparisonOperator.ends_with" }, - "3781": { + "3779": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressPayload.last_name" + "qualifiedName": "NumericalComparisonOperator" }, "3782": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressPayload.phone" + "qualifiedName": "NumericalComparisonOperator.lt" }, "3783": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressPayload.metadata" + "qualifiedName": "NumericalComparisonOperator.gt" }, "3784": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressPayload.company" + "qualifiedName": "NumericalComparisonOperator.gte" }, "3785": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressPayload.address_1" + "qualifiedName": "NumericalComparisonOperator.lte" }, "3786": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressPayload.address_2" - }, - "3787": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressPayload.city" - }, - "3788": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressPayload.country_code" + "qualifiedName": "AddressPayload" }, "3789": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressPayload.province" + "qualifiedName": "AddressPayload.first_name" }, "3790": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressPayload.postal_code" + "qualifiedName": "AddressPayload.last_name" }, "3791": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressCreatePayload" + "qualifiedName": "AddressPayload.phone" + }, + "3792": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "AddressPayload.metadata" + }, + "3793": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "AddressPayload.company" }, "3794": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressCreatePayload.first_name" + "qualifiedName": "AddressPayload.address_1" }, "3795": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressCreatePayload.last_name" + "qualifiedName": "AddressPayload.address_2" }, "3796": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressCreatePayload.phone" + "qualifiedName": "AddressPayload.city" }, "3797": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressCreatePayload.metadata" + "qualifiedName": "AddressPayload.country_code" }, "3798": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressCreatePayload.company" + "qualifiedName": "AddressPayload.province" }, "3799": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressCreatePayload.address_1" + "qualifiedName": "AddressPayload.postal_code" }, "3800": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressCreatePayload.address_2" - }, - "3801": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressCreatePayload.city" - }, - "3802": { - "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressCreatePayload.country_code" + "qualifiedName": "AddressCreatePayload" }, "3803": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressCreatePayload.province" + "qualifiedName": "AddressCreatePayload.first_name" }, "3804": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "AddressCreatePayload.postal_code" + "qualifiedName": "AddressCreatePayload.last_name" }, "3805": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindParams" + "qualifiedName": "AddressCreatePayload.phone" + }, + "3806": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "AddressCreatePayload.metadata" + }, + "3807": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "AddressCreatePayload.company" }, "3808": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindParams.expand" + "qualifiedName": "AddressCreatePayload.address_1" }, "3809": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindParams.fields" + "qualifiedName": "AddressCreatePayload.address_2" }, "3810": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindPaginationParams" + "qualifiedName": "AddressCreatePayload.city" + }, + "3811": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "AddressCreatePayload.country_code" + }, + "3812": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "AddressCreatePayload.province" }, "3813": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindPaginationParams.offset" + "qualifiedName": "AddressCreatePayload.postal_code" }, "3814": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", - "qualifiedName": "FindPaginationParams.limit" - }, - "3815": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "ExtendedRequest" - }, - "3816": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "FindParams" }, "3817": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.resource" + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindParams.expand" }, "3818": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "TEntity" + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindParams.fields" }, "3819": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "ClassConstructor" - }, - "3820": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" - }, - "3821": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindPaginationParams" }, "3822": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "args" + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindPaginationParams.offset" }, "3823": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "T" + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "FindPaginationParams.limit" }, "3824": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "MedusaContainer" + "qualifiedName": "ExtendedRequest" }, "3825": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "Logger" + "qualifiedName": "__type" }, "3826": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.resource" }, "3827": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.panic" + "qualifiedName": "TEntity" }, "3828": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "ClassConstructor" }, "3829": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", @@ -123617,31 +128846,31 @@ }, "3830": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "data" + "qualifiedName": "__type" }, "3831": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.shouldLog" + "qualifiedName": "args" }, "3832": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "T" }, "3833": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "MedusaContainer" }, "3834": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "level" + "qualifiedName": "Logger" }, "3835": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.setLogLevel" + "qualifiedName": "__type" }, "3836": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.panic" }, "3837": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", @@ -123649,15 +128878,15 @@ }, "3838": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "level" + "qualifiedName": "__type" }, "3839": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.unsetLogLevel" + "qualifiedName": "data" }, "3840": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.shouldLog" }, "3841": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", @@ -123665,31 +128894,31 @@ }, "3842": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.activity" + "qualifiedName": "__type" }, "3843": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "level" }, "3844": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.setLogLevel" }, "3845": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "message" + "qualifiedName": "__type" }, "3846": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "config" + "qualifiedName": "__type" }, "3847": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.progress" + "qualifiedName": "level" }, "3848": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.unsetLogLevel" }, "3849": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", @@ -123697,15 +128926,15 @@ }, "3850": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "activityId" + "qualifiedName": "__type" }, "3851": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "message" + "qualifiedName": "__type.activity" }, "3852": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "3853": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", @@ -123713,19 +128942,19 @@ }, "3854": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "message" }, "3855": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "messageOrError" + "qualifiedName": "config" }, "3856": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "error" + "qualifiedName": "__type.progress" }, "3857": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.failure" + "qualifiedName": "__type" }, "3858": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", @@ -123733,19 +128962,19 @@ }, "3859": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "activityId" }, "3860": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "activityId" + "qualifiedName": "message" }, "3861": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "message" + "qualifiedName": "__type.error" }, "3862": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.success" + "qualifiedName": "__type" }, "3863": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", @@ -123753,19 +128982,19 @@ }, "3864": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "messageOrError" }, "3865": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "activityId" + "qualifiedName": "error" }, "3866": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "message" + "qualifiedName": "__type.failure" }, "3867": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.debug" + "qualifiedName": "__type" }, "3868": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", @@ -123773,7 +129002,7 @@ }, "3869": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "activityId" }, "3870": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", @@ -123781,7 +129010,7 @@ }, "3871": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.info" + "qualifiedName": "__type.success" }, "3872": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", @@ -123793,15 +129022,15 @@ }, "3874": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "message" + "qualifiedName": "activityId" }, "3875": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.warn" + "qualifiedName": "message" }, "3876": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.debug" }, "3877": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", @@ -123809,15 +129038,15 @@ }, "3878": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "message" + "qualifiedName": "__type" }, "3879": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.log" + "qualifiedName": "message" }, "3880": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.info" }, "3881": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", @@ -123825,15 +129054,15 @@ }, "3882": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "args" + "qualifiedName": "__type" }, "3883": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "Constructor" + "qualifiedName": "message" }, "3884": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.warn" }, "3885": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", @@ -123841,59 +129070,59 @@ }, "3886": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "args" + "qualifiedName": "__type" }, "3887": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "T" + "qualifiedName": "message" }, "3888": { "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "ConfigModule" + "qualifiedName": "__type.log" }, "3889": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "MiddlewareFunction" + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__type" }, "3890": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type" }, "3891": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "__type" - }, - "3892": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "args" }, + "3892": { + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "Constructor" + }, "3893": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "MiddlewareRoute" + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__type" }, "3894": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "sourceFileName": "../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type" }, "3895": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "__type.method" + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "args" }, "3896": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "__type.matcher" + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "T" }, "3897": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "__type.bodyParser" + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "ConfigModule" }, "3898": { "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "__type.middlewares" + "qualifiedName": "MiddlewareFunction" }, "3899": { "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "MiddlewaresConfig" + "qualifiedName": "__type" }, "3900": { "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", @@ -123901,199 +129130,199 @@ }, "3901": { "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "__type.errorHandler" + "qualifiedName": "args" }, "3902": { "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "__type.routes" + "qualifiedName": "MiddlewareRoute" }, "3903": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "PriceListType" + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "__type" }, "3904": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "PriceListType.SALE" + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "__type.method" }, "3905": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "PriceListType.OVERRIDE" + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "__type.matcher" }, "3906": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "PriceListStatus" + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "__type.bodyParser" }, "3907": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "PriceListStatus.ACTIVE" + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "__type.middlewares" }, "3908": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "PriceListStatus.DRAFT" + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "MiddlewaresConfig" }, "3909": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps" + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "__type" + }, + "3910": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "__type.errorHandler" + }, + "3911": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "__type.routes" }, "3912": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.id" + "qualifiedName": "PriceListType" }, "3913": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.q" + "qualifiedName": "PriceListType.SALE" }, "3914": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.status" + "qualifiedName": "PriceListType.OVERRIDE" }, "3915": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.name" + "qualifiedName": "PriceListStatus" }, "3916": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.customer_groups" + "qualifiedName": "PriceListStatus.ACTIVE" }, "3917": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.description" + "qualifiedName": "PriceListStatus.DRAFT" }, "3918": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.type" - }, - "3919": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.created_at" - }, - "3920": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.updated_at" + "qualifiedName": "FilterablePriceListProps" }, "3921": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "FilterablePriceListProps.deleted_at" + "qualifiedName": "FilterablePriceListProps.id" }, "3922": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesUpdateReq" + "qualifiedName": "FilterablePriceListProps.q" + }, + "3923": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "FilterablePriceListProps.status" + }, + "3924": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "FilterablePriceListProps.name" }, "3925": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesUpdateReq.id" + "qualifiedName": "FilterablePriceListProps.customer_groups" }, "3926": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesUpdateReq.region_id" + "qualifiedName": "FilterablePriceListProps.description" }, "3927": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesUpdateReq.currency_code" + "qualifiedName": "FilterablePriceListProps.type" }, "3928": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesUpdateReq.variant_id" + "qualifiedName": "FilterablePriceListProps.created_at" }, "3929": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesUpdateReq.amount" + "qualifiedName": "FilterablePriceListProps.updated_at" }, "3930": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesUpdateReq.min_quantity" + "qualifiedName": "FilterablePriceListProps.deleted_at" }, "3931": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesUpdateReq.max_quantity" + "qualifiedName": "AdminPriceListPricesUpdateReq" }, - "3932": { + "3934": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesCreateReq" + "qualifiedName": "AdminPriceListPricesUpdateReq.id" }, "3935": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesCreateReq.region_id" + "qualifiedName": "AdminPriceListPricesUpdateReq.region_id" }, "3936": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesCreateReq.currency_code" + "qualifiedName": "AdminPriceListPricesUpdateReq.currency_code" }, "3937": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesCreateReq.amount" + "qualifiedName": "AdminPriceListPricesUpdateReq.variant_id" }, "3938": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesCreateReq.variant_id" + "qualifiedName": "AdminPriceListPricesUpdateReq.amount" }, "3939": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesCreateReq.min_quantity" + "qualifiedName": "AdminPriceListPricesUpdateReq.min_quantity" }, "3940": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "AdminPriceListPricesCreateReq.max_quantity" + "qualifiedName": "AdminPriceListPricesUpdateReq.max_quantity" }, "3941": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "CreatePriceListInput" - }, - "3942": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type" - }, - "3943": { - "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.name" + "qualifiedName": "AdminPriceListPricesCreateReq" }, "3944": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.description" + "qualifiedName": "AdminPriceListPricesCreateReq.region_id" }, "3945": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.type" + "qualifiedName": "AdminPriceListPricesCreateReq.currency_code" }, "3946": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.status" + "qualifiedName": "AdminPriceListPricesCreateReq.amount" }, "3947": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.prices" + "qualifiedName": "AdminPriceListPricesCreateReq.variant_id" }, "3948": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.customer_groups" + "qualifiedName": "AdminPriceListPricesCreateReq.min_quantity" }, "3949": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type" + "qualifiedName": "AdminPriceListPricesCreateReq.max_quantity" }, "3950": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.id" + "qualifiedName": "CreatePriceListInput" }, "3951": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.starts_at" + "qualifiedName": "__type" }, "3952": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.ends_at" + "qualifiedName": "__type.name" }, "3953": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.includes_tax" + "qualifiedName": "__type.description" }, "3954": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "UpdatePriceListInput" + "qualifiedName": "__type.type" }, "3955": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.status" }, "3956": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", @@ -124113,43 +129342,43 @@ }, "3960": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "PriceListPriceUpdateInput" + "qualifiedName": "__type.starts_at" }, "3961": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.ends_at" }, "3962": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.id" + "qualifiedName": "__type.includes_tax" }, "3963": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.variant_id" + "qualifiedName": "UpdatePriceListInput" }, "3964": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.region_id" + "qualifiedName": "__type" }, "3965": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.currency_code" + "qualifiedName": "__type.prices" }, "3966": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.amount" + "qualifiedName": "__type.customer_groups" }, "3967": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.min_quantity" + "qualifiedName": "__type" }, "3968": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.max_quantity" + "qualifiedName": "__type.id" }, "3969": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "PriceListPriceCreateInput" + "qualifiedName": "PriceListPriceUpdateInput" }, "3970": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", @@ -124157,3559 +129386,3555 @@ }, "3971": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.region_id" + "qualifiedName": "__type.id" }, "3972": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.currency_code" + "qualifiedName": "__type.variant_id" }, "3973": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.variant_id" + "qualifiedName": "__type.region_id" }, "3974": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.amount" + "qualifiedName": "__type.currency_code" }, "3975": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.min_quantity" + "qualifiedName": "__type.amount" }, "3976": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.max_quantity" + "qualifiedName": "__type.min_quantity" }, "3977": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "PriceListLoadConfig" + "qualifiedName": "__type.max_quantity" }, "3978": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type" + "qualifiedName": "PriceListPriceCreateInput" }, "3979": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.include_discount_prices" + "qualifiedName": "__type" }, "3980": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.customer_id" + "qualifiedName": "__type.region_id" }, "3981": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.cart_id" + "qualifiedName": "__type.currency_code" }, "3982": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.region_id" + "qualifiedName": "__type.variant_id" }, "3983": { "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", - "qualifiedName": "__type.currency_code" + "qualifiedName": "__type.amount" }, "3984": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "__type.min_quantity" + }, + "3985": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "__type.max_quantity" + }, + "3986": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "PriceListLoadConfig" + }, + "3987": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "__type" + }, + "3988": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "__type.include_discount_prices" + }, + "3989": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "__type.customer_id" + }, + "3990": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "__type.cart_id" + }, + "3991": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "__type.region_id" + }, + "3992": { + "sourceFileName": "../../../packages/medusa/src/types/price-list.ts", + "qualifiedName": "__type.currency_code" + }, + "3993": { "sourceFileName": "../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest" }, - "3985": { + "3994": { "sourceFileName": "../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.user" }, - "3986": { - "sourceFileName": "../../../packages/medusa/src/types/routing.ts", - "qualifiedName": "MedusaRequest.scope" - }, - "3987": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__global.Express.Request.validatedQuery" - }, - "3988": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__global.Express.Request.validatedBody" - }, - "3989": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__global.Express.Request.listConfig" - }, - "3990": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__global.Express.Request.retrieveConfig" - }, - "3991": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__global.Express.Request.filterableFields" - }, - "3992": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__global.Express.Request.allowedProperties" - }, - "3993": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__global.Express.Request.includes" - }, - "3994": { - "sourceFileName": "../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__global.Express.Request.errors" - }, - "3995": { - "sourceFileName": "../../../packages/medusa/src/types/routing.ts", - "qualifiedName": "MedusaResponse" - }, "3996": { "sourceFileName": "../../../packages/medusa/src/types/routing.ts", - "qualifiedName": "MedusaNextFunction" + "qualifiedName": "__type.customer_id" }, "3997": { "sourceFileName": "../../../packages/medusa/src/types/routing.ts", - "qualifiedName": "MedusaRequestHandler" + "qualifiedName": "__type.userId" }, "3998": { "sourceFileName": "../../../packages/medusa/src/types/routing.ts", - "qualifiedName": "__type" + "qualifiedName": "MedusaRequest.scope" }, "3999": { - "sourceFileName": "../../../packages/medusa/src/types/routing.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__global.Express.Request.validatedQuery" }, "4000": { - "sourceFileName": "../../../packages/medusa/src/types/routing.ts", - "qualifiedName": "req" + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__global.Express.Request.validatedBody" }, "4001": { - "sourceFileName": "../../../packages/medusa/src/types/routing.ts", - "qualifiedName": "res" + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__global.Express.Request.listConfig" }, "4002": { - "sourceFileName": "../../../packages/medusa/src/types/routing.ts", - "qualifiedName": "next" + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__global.Express.Request.retrieveConfig" }, "4003": { - "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", - "qualifiedName": "ScheduledJobConfig" + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__global.Express.Request.filterableFields" }, "4004": { - "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__global.Express.Request.allowedProperties" }, "4005": { - "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", - "qualifiedName": "__type.name" + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__global.Express.Request.includes" }, "4006": { - "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", - "qualifiedName": "__type.schedule" + "sourceFileName": "../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__global.Express.Request.errors" }, "4007": { - "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", - "qualifiedName": "__type.data" + "sourceFileName": "../../../packages/medusa/src/types/routing.ts", + "qualifiedName": "MedusaResponse" }, "4008": { - "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", - "qualifiedName": "T" + "sourceFileName": "../../../packages/medusa/src/types/routing.ts", + "qualifiedName": "MedusaNextFunction" }, "4009": { - "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", - "qualifiedName": "ScheduledJobArgs" + "sourceFileName": "../../../packages/medusa/src/types/routing.ts", + "qualifiedName": "MedusaRequestHandler" }, "4010": { - "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", + "sourceFileName": "../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type" }, "4011": { - "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", - "qualifiedName": "__type.container" + "sourceFileName": "../../../packages/medusa/src/types/routing.ts", + "qualifiedName": "__type" }, "4012": { - "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", - "qualifiedName": "__type.data" + "sourceFileName": "../../../packages/medusa/src/types/routing.ts", + "qualifiedName": "req" }, "4013": { - "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", - "qualifiedName": "__type.pluginOptions" + "sourceFileName": "../../../packages/medusa/src/types/routing.ts", + "qualifiedName": "res" }, "4014": { - "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", - "qualifiedName": "T" + "sourceFileName": "../../../packages/medusa/src/types/routing.ts", + "qualifiedName": "next" }, "4015": { - "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", - "qualifiedName": "SubscriberConfig" + "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", + "qualifiedName": "ScheduledJobConfig" }, "4016": { - "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", "qualifiedName": "__type" }, "4017": { - "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", - "qualifiedName": "__type.event" + "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", + "qualifiedName": "__type.name" }, "4018": { - "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", - "qualifiedName": "__type.context" + "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", + "qualifiedName": "__type.schedule" }, "4019": { - "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", - "qualifiedName": "SubscriberArgs" - }, - "4020": { - "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", - "qualifiedName": "__type" - }, - "4021": { - "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", "qualifiedName": "__type.data" }, + "4020": { + "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", + "qualifiedName": "T" + }, + "4021": { + "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", + "qualifiedName": "ScheduledJobArgs" + }, "4022": { - "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", - "qualifiedName": "__type.eventName" + "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", + "qualifiedName": "__type" }, "4023": { - "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", "qualifiedName": "__type.container" }, "4024": { + "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", + "qualifiedName": "__type.data" + }, + "4025": { + "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", + "qualifiedName": "__type.pluginOptions" + }, + "4026": { + "sourceFileName": "../../../packages/medusa/src/types/scheduled-jobs.ts", + "qualifiedName": "T" + }, + "4027": { + "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "qualifiedName": "SubscriberConfig" + }, + "4028": { + "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "qualifiedName": "__type" + }, + "4029": { + "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "qualifiedName": "__type.event" + }, + "4030": { + "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "qualifiedName": "__type.context" + }, + "4031": { + "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "qualifiedName": "SubscriberArgs" + }, + "4032": { + "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "qualifiedName": "__type" + }, + "4033": { + "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "qualifiedName": "__type.data" + }, + "4034": { + "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "qualifiedName": "__type.eventName" + }, + "4035": { + "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "qualifiedName": "__type.container" + }, + "4036": { "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "__type.pluginOptions" }, - "4025": { + "4037": { "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "T" }, - "4026": { + "4038": { "sourceFileName": "../../../packages/medusa/src/utils/validator.ts", "qualifiedName": "registerOverriddenValidators" }, - "4027": { + "4039": { "sourceFileName": "../../../packages/medusa/src/utils/validator.ts", "qualifiedName": "registerOverriddenValidators" }, - "4028": { + "4040": { "sourceFileName": "../../../packages/medusa/src/utils/validator.ts", "qualifiedName": "extendedValidator" }, - "4029": { + "4041": { "sourceFileName": "../../../packages/medusa/src/utils/validator.ts", "qualifiedName": "validator" }, - "4030": { + "4042": { "sourceFileName": "../../../packages/medusa/src/utils/validator.ts", "qualifiedName": "validator" }, - "4031": { + "4043": { "sourceFileName": "../../../packages/medusa/src/utils/validator.ts", "qualifiedName": "T" }, - "4032": { + "4044": { "sourceFileName": "../../../packages/medusa/src/utils/validator.ts", "qualifiedName": "V" }, - "4033": { + "4045": { "sourceFileName": "../../../packages/medusa/src/utils/validator.ts", "qualifiedName": "typedClass" }, - "4034": { + "4046": { "sourceFileName": "../../../packages/medusa/src/utils/validator.ts", "qualifiedName": "plain" }, - "4035": { + "4047": { "sourceFileName": "../../../packages/medusa/src/utils/validator.ts", "qualifiedName": "config" }, - "4036": { - "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "buildQuery" - }, - "4037": { - "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "buildQuery" - }, - "4038": { - "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "TWhereKeys" - }, - "4039": { - "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "TEntity" - }, - "4040": { - "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "selector" - }, - "4041": { - "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "config" - }, - "4042": { - "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "buildLegacyFieldsListFrom" - }, - "4043": { - "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "buildLegacyFieldsListFrom" - }, - "4044": { - "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "TEntity" - }, - "4045": { - "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "input" - }, - "4046": { - "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "addOrderToSelect" - }, - "4047": { - "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "addOrderToSelect" - }, "4048": { "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "TEntity" + "qualifiedName": "buildQuery" }, "4049": { "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "order" + "qualifiedName": "buildQuery" }, "4050": { "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "select" + "qualifiedName": "TWhereKeys" }, "4051": { "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "nullableValue" + "qualifiedName": "TEntity" }, "4052": { "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "nullableValue" + "qualifiedName": "selector" }, "4053": { "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", - "qualifiedName": "value" + "qualifiedName": "config" }, "4054": { - "sourceFileName": "../../../packages/medusa/src/utils/calculate-price-tax-amount.ts", - "qualifiedName": "calculatePriceTaxAmount" + "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", + "qualifiedName": "buildLegacyFieldsListFrom" }, "4055": { + "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", + "qualifiedName": "buildLegacyFieldsListFrom" + }, + "4056": { + "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", + "qualifiedName": "TEntity" + }, + "4057": { + "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", + "qualifiedName": "input" + }, + "4058": { + "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", + "qualifiedName": "addOrderToSelect" + }, + "4059": { + "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", + "qualifiedName": "addOrderToSelect" + }, + "4060": { + "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", + "qualifiedName": "TEntity" + }, + "4061": { + "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", + "qualifiedName": "order" + }, + "4062": { + "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", + "qualifiedName": "select" + }, + "4063": { + "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", + "qualifiedName": "nullableValue" + }, + "4064": { + "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", + "qualifiedName": "nullableValue" + }, + "4065": { + "sourceFileName": "../../../packages/medusa/src/utils/build-query.ts", + "qualifiedName": "value" + }, + "4066": { "sourceFileName": "../../../packages/medusa/src/utils/calculate-price-tax-amount.ts", "qualifiedName": "calculatePriceTaxAmount" }, - "4056": { + "4067": { + "sourceFileName": "../../../packages/medusa/src/utils/calculate-price-tax-amount.ts", + "qualifiedName": "calculatePriceTaxAmount" + }, + "4068": { "sourceFileName": "../../../packages/medusa/src/utils/calculate-price-tax-amount.ts", "qualifiedName": "__0" }, - "4057": { + "4069": { "sourceFileName": "../../../packages/medusa/src/utils/calculate-price-tax-amount.ts", "qualifiedName": "__type" }, - "4058": { + "4070": { "sourceFileName": "../../../packages/medusa/src/utils/calculate-price-tax-amount.ts", "qualifiedName": "__type.price" }, - "4059": { + "4071": { "sourceFileName": "../../../packages/medusa/src/utils/calculate-price-tax-amount.ts", "qualifiedName": "__type.includesTax" }, - "4060": { + "4072": { "sourceFileName": "../../../packages/medusa/src/utils/calculate-price-tax-amount.ts", "qualifiedName": "__type.taxRate" }, - "4061": { + "4073": { "sourceFileName": "../../../packages/medusa/src/utils/clean-response-data.ts", "qualifiedName": "cleanResponseData" }, - "4062": { + "4074": { "sourceFileName": "../../../packages/medusa/src/utils/clean-response-data.ts", "qualifiedName": "cleanResponseData" }, - "4063": { + "4075": { "sourceFileName": "../../../packages/medusa/src/utils/clean-response-data.ts", "qualifiedName": "T" }, - "4064": { + "4076": { "sourceFileName": "../../../packages/medusa/src/utils/clean-response-data.ts", "qualifiedName": "data" }, - "4065": { + "4077": { "sourceFileName": "../../../packages/medusa/src/utils/clean-response-data.ts", "qualifiedName": "fields" }, - "4066": { - "sourceFileName": "../../../packages/medusa/src/utils/csv-cell-content-formatter.ts", - "qualifiedName": "csvCellContentFormatter" - }, - "4067": { - "sourceFileName": "../../../packages/medusa/src/utils/csv-cell-content-formatter.ts", - "qualifiedName": "csvCellContentFormatter" - }, - "4068": { - "sourceFileName": "../../../packages/medusa/src/utils/csv-cell-content-formatter.ts", - "qualifiedName": "str" - }, - "4069": { - "sourceFileName": "../../../packages/medusa/src/utils/csv-cell-content-formatter.ts", - "qualifiedName": "csvRevertCellContentFormatter" - }, - "4070": { - "sourceFileName": "../../../packages/medusa/src/utils/csv-cell-content-formatter.ts", - "qualifiedName": "csvRevertCellContentFormatter" - }, - "4071": { - "sourceFileName": "../../../packages/medusa/src/utils/csv-cell-content-formatter.ts", - "qualifiedName": "str" - }, - "4072": { - "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", - "qualifiedName": "resolveDbType" - }, - "4073": { - "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", - "qualifiedName": "resolveDbType" - }, - "4074": { - "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", - "qualifiedName": "pgSqlType" - }, - "4075": { - "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", - "qualifiedName": "resolveDbGenerationStrategy" - }, - "4076": { - "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", - "qualifiedName": "resolveDbGenerationStrategy" - }, - "4077": { - "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", - "qualifiedName": "pgSqlType" - }, "4078": { - "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", - "qualifiedName": "DbAwareColumn" + "sourceFileName": "../../../packages/medusa/src/utils/csv-cell-content-formatter.ts", + "qualifiedName": "csvCellContentFormatter" }, "4079": { + "sourceFileName": "../../../packages/medusa/src/utils/csv-cell-content-formatter.ts", + "qualifiedName": "csvCellContentFormatter" + }, + "4080": { + "sourceFileName": "../../../packages/medusa/src/utils/csv-cell-content-formatter.ts", + "qualifiedName": "str" + }, + "4081": { + "sourceFileName": "../../../packages/medusa/src/utils/csv-cell-content-formatter.ts", + "qualifiedName": "csvRevertCellContentFormatter" + }, + "4082": { + "sourceFileName": "../../../packages/medusa/src/utils/csv-cell-content-formatter.ts", + "qualifiedName": "csvRevertCellContentFormatter" + }, + "4083": { + "sourceFileName": "../../../packages/medusa/src/utils/csv-cell-content-formatter.ts", + "qualifiedName": "str" + }, + "4084": { + "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", + "qualifiedName": "resolveDbType" + }, + "4085": { + "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", + "qualifiedName": "resolveDbType" + }, + "4086": { + "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", + "qualifiedName": "pgSqlType" + }, + "4087": { + "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", + "qualifiedName": "resolveDbGenerationStrategy" + }, + "4088": { + "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", + "qualifiedName": "resolveDbGenerationStrategy" + }, + "4089": { + "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", + "qualifiedName": "pgSqlType" + }, + "4090": { "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", "qualifiedName": "DbAwareColumn" }, - "4080": { + "4091": { + "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", + "qualifiedName": "DbAwareColumn" + }, + "4092": { "sourceFileName": "../../../packages/medusa/src/utils/db-aware-column.ts", "qualifiedName": "columnOptions" }, - "4081": { + "4093": { "sourceFileName": "../../../packages/medusa/src/utils/exception-formatter.ts", "qualifiedName": "PostgresError" }, - "4082": { + "4094": { "sourceFileName": "../../../packages/medusa/src/utils/exception-formatter.ts", "qualifiedName": "PostgresError.DUPLICATE_ERROR" }, - "4083": { + "4095": { "sourceFileName": "../../../packages/medusa/src/utils/exception-formatter.ts", "qualifiedName": "PostgresError.FOREIGN_KEY_ERROR" }, - "4084": { + "4096": { "sourceFileName": "../../../packages/medusa/src/utils/exception-formatter.ts", "qualifiedName": "PostgresError.SERIALIZATION_FAILURE" }, - "4085": { + "4097": { "sourceFileName": "../../../packages/medusa/src/utils/exception-formatter.ts", "qualifiedName": "PostgresError.NULL_VIOLATION" }, - "4086": { + "4098": { "sourceFileName": "../../../packages/medusa/src/utils/exception-formatter.ts", "qualifiedName": "formatException" }, - "4087": { + "4099": { "sourceFileName": "../../../packages/medusa/src/utils/exception-formatter.ts", "qualifiedName": "formatException" }, - "4088": { + "4100": { "sourceFileName": "../../../packages/medusa/src/utils/exception-formatter.ts", "qualifiedName": "err" }, - "4089": { + "4101": { "sourceFileName": "../../../packages/medusa/src/utils/generate-entity-id.ts", "qualifiedName": "generateEntityId" }, - "4090": { + "4102": { "sourceFileName": "../../../packages/medusa/src/utils/generate-entity-id.ts", "qualifiedName": "generateEntityId" }, - "4091": { + "4103": { "sourceFileName": "../../../packages/medusa/src/utils/generate-entity-id.ts", "qualifiedName": "idProperty" }, - "4092": { + "4104": { "sourceFileName": "../../../packages/medusa/src/utils/generate-entity-id.ts", "qualifiedName": "prefix" }, - "4093": { + "4105": { "sourceFileName": "../../../packages/medusa/src/utils/has-changes.ts", "qualifiedName": "hasChanges" }, - "4094": { + "4106": { "sourceFileName": "../../../packages/medusa/src/utils/has-changes.ts", "qualifiedName": "hasChanges" }, - "4095": { + "4107": { "sourceFileName": "../../../packages/medusa/src/utils/has-changes.ts", "qualifiedName": "T1" }, - "4096": { + "4108": { "sourceFileName": "../../../packages/medusa/src/utils/has-changes.ts", "qualifiedName": "T2" }, - "4097": { + "4109": { "sourceFileName": "../../../packages/medusa/src/utils/has-changes.ts", "qualifiedName": "obj1" }, - "4098": { + "4110": { "sourceFileName": "../../../packages/medusa/src/utils/has-changes.ts", "qualifiedName": "obj2" }, - "4099": { + "4111": { "sourceFileName": "../../../packages/medusa/src/utils/is-date.ts", "qualifiedName": "isDate" }, - "4100": { + "4112": { "sourceFileName": "../../../packages/medusa/src/utils/is-date.ts", "qualifiedName": "isDate" }, - "4101": { + "4113": { "sourceFileName": "../../../packages/medusa/src/utils/is-date.ts", "qualifiedName": "value" }, - "4102": { + "4114": { "sourceFileName": "../../../packages/medusa/src/utils/is-object.ts", "qualifiedName": "isObject" }, - "4103": { + "4115": { "sourceFileName": "../../../packages/medusa/src/utils/is-object.ts", "qualifiedName": "isObject" }, - "4104": { + "4116": { "sourceFileName": "../../../packages/medusa/src/utils/is-object.ts", "qualifiedName": "obj" }, - "4105": { + "4117": { "sourceFileName": "../../../packages/medusa/src/utils/is-string.ts", "qualifiedName": "isString" }, - "4106": { + "4118": { "sourceFileName": "../../../packages/medusa/src/utils/is-string.ts", "qualifiedName": "isString" }, - "4107": { + "4119": { "sourceFileName": "../../../packages/medusa/src/utils/is-string.ts", "qualifiedName": "val" }, - "4108": { + "4120": { "sourceFileName": "../../../packages/medusa/src/utils/omit-deep.ts", "qualifiedName": "omitDeep" }, - "4109": { + "4121": { "sourceFileName": "../../../packages/medusa/src/utils/omit-deep.ts", "qualifiedName": "omitDeep" }, - "4110": { + "4122": { "sourceFileName": "../../../packages/medusa/src/utils/omit-deep.ts", "qualifiedName": "T" }, - "4111": { + "4123": { "sourceFileName": "../../../packages/medusa/src/utils/omit-deep.ts", "qualifiedName": "input" }, - "4112": { + "4124": { "sourceFileName": "../../../packages/medusa/src/utils/omit-deep.ts", "qualifiedName": "excludes" }, - "4113": { + "4125": { "sourceFileName": "../../../packages/medusa/src/utils/product-category/index.ts", "qualifiedName": "categoryMatchesScope" }, - "4114": { + "4126": { "sourceFileName": "../../../packages/medusa/src/utils/product-category/index.ts", "qualifiedName": "categoryMatchesScope" }, - "4115": { + "4127": { "sourceFileName": "../../../packages/medusa/src/utils/product-category/index.ts", "qualifiedName": "category" }, - "4116": { + "4128": { "sourceFileName": "../../../packages/medusa/src/utils/product-category/index.ts", "qualifiedName": "query" }, - "4117": { + "4129": { "sourceFileName": "../../../packages/medusa/src/utils/product-category/index.ts", "qualifiedName": "fetchCategoryDescendantsIds" }, - "4118": { + "4130": { "sourceFileName": "../../../packages/medusa/src/utils/product-category/index.ts", "qualifiedName": "fetchCategoryDescendantsIds" }, - "4119": { + "4131": { "sourceFileName": "../../../packages/medusa/src/utils/product-category/index.ts", "qualifiedName": "productCategory" }, - "4120": { + "4132": { "sourceFileName": "../../../packages/medusa/src/utils/product-category/index.ts", "qualifiedName": "query" }, - "4121": { + "4133": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/get-variants-from-price-list.ts", + "qualifiedName": "getVariantsFromPriceList" + }, + "4134": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/get-variants-from-price-list.ts", + "qualifiedName": "getVariantsFromPriceList" + }, + "4135": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/get-variants-from-price-list.ts", + "qualifiedName": "container" + }, + "4136": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/get-variants-from-price-list.ts", + "qualifiedName": "priceListId" + }, + "4137": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/list-products.ts", + "qualifiedName": "listProducts" + }, + "4138": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/list-products.ts", + "qualifiedName": "listProducts" + }, + "4139": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/list-products.ts", + "qualifiedName": "container" + }, + "4140": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/list-products.ts", + "qualifiedName": "filterableFields" + }, + "4141": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/list-products.ts", + "qualifiedName": "listConfig" + }, + "4142": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/retrieve-product.ts", + "qualifiedName": "retrieveProduct" + }, + "4143": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/retrieve-product.ts", + "qualifiedName": "retrieveProduct" + }, + "4144": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/retrieve-product.ts", + "qualifiedName": "container" + }, + "4145": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/retrieve-product.ts", + "qualifiedName": "id" + }, + "4146": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/retrieve-product.ts", + "qualifiedName": "remoteQueryObject" + }, + "4147": { + "sourceFileName": "../../../packages/medusa/src/utils/queries/products/retrieve-product.ts", + "qualifiedName": "__object" + }, + "4148": { "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", "qualifiedName": "remoteQueryFetchData" }, - "4122": { + "4149": { "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", "qualifiedName": "remoteQueryFetchData" }, - "4123": { + "4150": { "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", "qualifiedName": "container" }, - "4124": { - "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", - "qualifiedName": "__function" - }, - "4125": { - "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", - "qualifiedName": "__function" - }, - "4126": { - "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", - "qualifiedName": "expand" - }, - "4127": { - "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", - "qualifiedName": "keyField" - }, - "4128": { - "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", - "qualifiedName": "ids" - }, - "4129": { - "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", - "qualifiedName": "relationship" - }, - "4130": { - "sourceFileName": "../../../packages/medusa/src/utils/remove-undefined-properties.ts", - "qualifiedName": "removeUndefinedProperties" - }, - "4131": { - "sourceFileName": "../../../packages/medusa/src/utils/remove-undefined-properties.ts", - "qualifiedName": "removeUndefinedProperties" - }, - "4132": { - "sourceFileName": "../../../packages/medusa/src/utils/remove-undefined-properties.ts", - "qualifiedName": "T" - }, - "4133": { - "sourceFileName": "../../../packages/medusa/src/utils/remove-undefined-properties.ts", - "qualifiedName": "inputObj" - }, - "4134": { - "sourceFileName": "../../../packages/medusa/src/utils/set-metadata.ts", - "qualifiedName": "setMetadata" - }, - "4135": { - "sourceFileName": "../../../packages/medusa/src/utils/set-metadata.ts", - "qualifiedName": "setMetadata" - }, - "4136": { - "sourceFileName": "../../../packages/medusa/src/utils/set-metadata.ts", - "qualifiedName": "obj" - }, - "4137": { - "sourceFileName": "../../../packages/medusa/src/utils/set-metadata.ts", - "qualifiedName": "__type" - }, - "4138": { - "sourceFileName": "../../../packages/medusa/src/utils/set-metadata.ts", - "qualifiedName": "__type.metadata" - }, - "4139": { - "sourceFileName": "../../../packages/medusa/src/utils/set-metadata.ts", - "qualifiedName": "metadata" - }, - "4140": { - "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", - "qualifiedName": "validateId" - }, - "4141": { - "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", - "qualifiedName": "validateId" - }, - "4142": { - "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", - "qualifiedName": "rawId" - }, - "4143": { - "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", - "qualifiedName": "config" - }, - "4144": { - "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", - "qualifiedName": "__type" - }, - "4145": { - "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", - "qualifiedName": "__type.prefix" - }, - "4146": { - "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", - "qualifiedName": "__type.length" - }, - "4147": { - "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", - "qualifiedName": "IsType" - }, - "4148": { - "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", - "qualifiedName": "IsType" - }, - "4149": { - "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", - "qualifiedName": "types" - }, - "4150": { - "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", - "qualifiedName": "validationOptions" - }, "4151": { - "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", + "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", "qualifiedName": "__function" }, "4152": { - "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", + "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", "qualifiedName": "__function" }, "4153": { + "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", + "qualifiedName": "expand" + }, + "4154": { + "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", + "qualifiedName": "keyField" + }, + "4155": { + "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", + "qualifiedName": "ids" + }, + "4156": { + "sourceFileName": "../../../packages/medusa/src/utils/remote-query-fetch-data.ts", + "qualifiedName": "relationship" + }, + "4157": { + "sourceFileName": "../../../packages/medusa/src/utils/remove-undefined-properties.ts", + "qualifiedName": "removeUndefinedProperties" + }, + "4158": { + "sourceFileName": "../../../packages/medusa/src/utils/remove-undefined-properties.ts", + "qualifiedName": "removeUndefinedProperties" + }, + "4159": { + "sourceFileName": "../../../packages/medusa/src/utils/remove-undefined-properties.ts", + "qualifiedName": "T" + }, + "4160": { + "sourceFileName": "../../../packages/medusa/src/utils/remove-undefined-properties.ts", + "qualifiedName": "inputObj" + }, + "4161": { + "sourceFileName": "../../../packages/medusa/src/utils/set-metadata.ts", + "qualifiedName": "setMetadata" + }, + "4162": { + "sourceFileName": "../../../packages/medusa/src/utils/set-metadata.ts", + "qualifiedName": "setMetadata" + }, + "4163": { + "sourceFileName": "../../../packages/medusa/src/utils/set-metadata.ts", + "qualifiedName": "obj" + }, + "4164": { + "sourceFileName": "../../../packages/medusa/src/utils/set-metadata.ts", + "qualifiedName": "__type" + }, + "4165": { + "sourceFileName": "../../../packages/medusa/src/utils/set-metadata.ts", + "qualifiedName": "__type.metadata" + }, + "4166": { + "sourceFileName": "../../../packages/medusa/src/utils/set-metadata.ts", + "qualifiedName": "metadata" + }, + "4167": { + "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", + "qualifiedName": "validateId" + }, + "4168": { + "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", + "qualifiedName": "validateId" + }, + "4169": { + "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", + "qualifiedName": "rawId" + }, + "4170": { + "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", + "qualifiedName": "config" + }, + "4171": { + "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", + "qualifiedName": "__type" + }, + "4172": { + "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", + "qualifiedName": "__type.prefix" + }, + "4173": { + "sourceFileName": "../../../packages/medusa/src/utils/validate-id.ts", + "qualifiedName": "__type.length" + }, + "4174": { + "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", + "qualifiedName": "IsType" + }, + "4175": { + "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", + "qualifiedName": "IsType" + }, + "4176": { + "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", + "qualifiedName": "types" + }, + "4177": { + "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", + "qualifiedName": "validationOptions" + }, + "4178": { + "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", + "qualifiedName": "__function" + }, + "4179": { + "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", + "qualifiedName": "__function" + }, + "4180": { "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", "qualifiedName": "object" }, - "4154": { + "4181": { "sourceFileName": "../../../packages/medusa/src/utils/validators/is-type.ts", "qualifiedName": "propertyName" }, - "4155": { + "4182": { "sourceFileName": "../../../packages/medusa/src/types/customer-groups.ts", "qualifiedName": "CustomerGroupsBatchCustomer" }, - "4158": { + "4185": { "sourceFileName": "../../../packages/medusa/src/types/customer-groups.ts", "qualifiedName": "CustomerGroupsBatchCustomer.id" }, - "4159": { + "4186": { "sourceFileName": "../../../packages/medusa/src/types/customer-groups.ts", "qualifiedName": "FilterableCustomerGroupProps" }, - "4162": { + "4189": { "sourceFileName": "../../../packages/medusa/src/types/customer-groups.ts", "qualifiedName": "FilterableCustomerGroupProps.id" }, - "4163": { + "4190": { "sourceFileName": "../../../packages/medusa/src/types/customer-groups.ts", "qualifiedName": "FilterableCustomerGroupProps.q" }, - "4164": { + "4191": { "sourceFileName": "../../../packages/medusa/src/types/customer-groups.ts", "qualifiedName": "FilterableCustomerGroupProps.name" }, - "4165": { + "4192": { "sourceFileName": "../../../packages/medusa/src/types/customer-groups.ts", "qualifiedName": "FilterableCustomerGroupProps.updated_at" }, - "4166": { + "4193": { "sourceFileName": "../../../packages/medusa/src/types/customer-groups.ts", "qualifiedName": "FilterableCustomerGroupProps.created_at" }, - "4167": { + "4194": { "sourceFileName": "../../../packages/medusa/src/types/customer-groups.ts", "qualifiedName": "FilterableCustomerGroupProps.discount_condition_id" }, - "4168": { + "4195": { "sourceFileName": "../../../packages/medusa/src/types/customers.ts", "qualifiedName": "AdminListCustomerSelector" }, - "4171": { + "4198": { "sourceFileName": "../../../packages/medusa/src/types/customers.ts", "qualifiedName": "AdminListCustomerSelector.q" }, - "4172": { + "4199": { "sourceFileName": "../../../packages/medusa/src/types/customers.ts", "qualifiedName": "AdminListCustomerSelector.has_account" }, - "4173": { + "4200": { "sourceFileName": "../../../packages/medusa/src/types/customers.ts", "qualifiedName": "AdminListCustomerSelector.groups" }, - "4174": { + "4201": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/customers/update-customer.ts", "qualifiedName": "Group" }, - "4177": { + "4204": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/customers/update-customer.ts", "qualifiedName": "Group.id" }, - "4178": { + "4205": { "sourceFileName": "../../../packages/medusa/src/types/discount.ts", "qualifiedName": "AdminUpsertConditionsReq" }, - "4181": { + "4208": { "sourceFileName": "../../../packages/medusa/src/types/discount.ts", "qualifiedName": "AdminUpsertConditionsReq.products" }, - "4182": { + "4209": { "sourceFileName": "../../../packages/medusa/src/types/discount.ts", "qualifiedName": "AdminUpsertConditionsReq.product_collections" }, - "4183": { + "4210": { "sourceFileName": "../../../packages/medusa/src/types/discount.ts", "qualifiedName": "AdminUpsertConditionsReq.product_types" }, - "4184": { + "4211": { "sourceFileName": "../../../packages/medusa/src/types/discount.ts", "qualifiedName": "AdminUpsertConditionsReq.product_tags" }, - "4185": { + "4212": { "sourceFileName": "../../../packages/medusa/src/types/discount.ts", "qualifiedName": "AdminUpsertConditionsReq.customer_groups" }, - "4186": { + "4213": { "sourceFileName": "../../../packages/medusa/src/types/discount.ts", "qualifiedName": "AdminGetDiscountsDiscountRuleParams" }, - "4189": { + "4216": { "sourceFileName": "../../../packages/medusa/src/types/discount.ts", "qualifiedName": "AdminGetDiscountsDiscountRuleParams.type" }, - "4190": { + "4217": { "sourceFileName": "../../../packages/medusa/src/types/discount.ts", "qualifiedName": "AdminGetDiscountsDiscountRuleParams.allocation" }, - "4191": { + "4218": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/create-draft-order.ts", "qualifiedName": "Item" }, - "4194": { + "4221": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/create-draft-order.ts", "qualifiedName": "Item.title" }, - "4195": { + "4222": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/create-draft-order.ts", "qualifiedName": "Item.unit_price" }, - "4196": { + "4223": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/create-draft-order.ts", "qualifiedName": "Item.variant_id" }, - "4197": { + "4224": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/create-draft-order.ts", "qualifiedName": "Item.quantity" }, - "4198": { + "4225": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/create-draft-order.ts", "qualifiedName": "Item.metadata" }, - "4199": { + "4226": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/create-draft-order.ts", "qualifiedName": "Discount" }, - "4202": { + "4229": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/create-draft-order.ts", "qualifiedName": "Discount.code" }, - "4203": { + "4230": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/create-draft-order.ts", "qualifiedName": "ShippingMethod" }, - "4206": { + "4233": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/create-draft-order.ts", "qualifiedName": "ShippingMethod.option_id" }, - "4207": { + "4234": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/create-draft-order.ts", "qualifiedName": "ShippingMethod.data" }, - "4208": { + "4235": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/create-draft-order.ts", "qualifiedName": "ShippingMethod.price" }, - "4209": { + "4236": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/update-draft-order.ts", "qualifiedName": "Discount" }, - "4212": { + "4239": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/draft-orders/update-draft-order.ts", "qualifiedName": "Discount.code" }, - "4213": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "InventoryItemDTO" - }, - "4214": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type" - }, - "4215": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.id" - }, - "4216": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.sku" - }, - "4217": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.origin_country" - }, - "4218": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.hs_code" - }, - "4219": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.requires_shipping" - }, - "4220": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.mid_code" - }, - "4221": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.material" - }, - "4222": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.weight" - }, - "4223": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.length" - }, - "4224": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.height" - }, - "4225": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.width" - }, - "4226": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.title" - }, - "4227": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.description" - }, - "4228": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.thumbnail" - }, - "4229": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.metadata" - }, - "4230": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.created_at" - }, - "4231": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.updated_at" - }, - "4232": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.deleted_at" - }, - "4233": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "InventoryLevelDTO" - }, - "4234": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type" - }, - "4235": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.id" - }, - "4236": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.inventory_item_id" - }, - "4237": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.location_id" - }, - "4238": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.stocked_quantity" - }, - "4239": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.reserved_quantity" - }, "4240": { "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.incoming_quantity" + "qualifiedName": "InventoryItemDTO" }, "4241": { "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.metadata" + "qualifiedName": "__type" }, "4242": { "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.created_at" + "qualifiedName": "__type.id" }, "4243": { "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.updated_at" + "qualifiedName": "__type.sku" }, "4244": { "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.deleted_at" + "qualifiedName": "__type.origin_country" }, "4245": { - "sourceFileName": "../../../packages/types/dist/common/common.d.ts", - "qualifiedName": "PaginatedResponse" + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.hs_code" }, "4246": { - "sourceFileName": "../../../packages/types/dist/common/common.d.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.requires_shipping" }, "4247": { - "sourceFileName": "../../../packages/types/dist/common/common.d.ts", - "qualifiedName": "__type.limit" + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.mid_code" }, "4248": { - "sourceFileName": "../../../packages/types/dist/common/common.d.ts", - "qualifiedName": "__type.offset" + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.material" }, "4249": { - "sourceFileName": "../../../packages/types/dist/common/common.d.ts", - "qualifiedName": "__type.count" + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.weight" }, "4250": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "Item" + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.length" + }, + "4251": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.height" + }, + "4252": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.width" }, "4253": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "Item.item_id" + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.title" }, "4254": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "Item.quantity" - }, - "4255": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "Item.note" - }, - "4256": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "Item.reason" - }, - "4257": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "Item.tags" - }, - "4258": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "Item.images" - }, - "4259": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "ReturnShipping" - }, - "4262": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "ReturnShipping.option_id" - }, - "4263": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "ReturnShipping.price" - }, - "4264": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "AdditionalItem" - }, - "4267": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "AdditionalItem.variant_id" - }, - "4268": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "AdditionalItem.quantity" - }, - "4269": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "ShippingMethod" - }, - "4272": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "ShippingMethod.id" - }, - "4273": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "ShippingMethod.option_id" - }, - "4274": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "ShippingMethod.price" - }, - "4275": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", - "qualifiedName": "ShippingMethod.data" - }, - "4276": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-fulfillment.ts", - "qualifiedName": "Item" - }, - "4279": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-fulfillment.ts", - "qualifiedName": "Item.item_id" - }, - "4280": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-fulfillment.ts", - "qualifiedName": "Item.quantity" - }, - "4281": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "ReturnItem" - }, - "4284": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "ReturnItem.item_id" - }, - "4285": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "ReturnItem.quantity" - }, - "4286": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "ReturnItem.reason_id" - }, - "4287": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "ReturnItem.note" - }, - "4288": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "ReturnShipping" - }, - "4291": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "ReturnShipping.option_id" - }, - "4292": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "ReturnShipping.price" - }, - "4293": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "AdditionalItem" - }, - "4296": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "AdditionalItem.variant_id" - }, - "4297": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "AdditionalItem.quantity" - }, - "4298": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "CustomShippingOption" - }, - "4301": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "CustomShippingOption.option_id" - }, - "4302": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", - "qualifiedName": "CustomShippingOption.price" - }, - "4303": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector" - }, - "4306": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.q" - }, - "4307": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.id" - }, - "4308": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.status" - }, - "4309": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.fulfillment_status" - }, - "4310": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.payment_status" - }, - "4311": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.display_id" - }, - "4312": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.cart_id" - }, - "4313": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.customer_id" - }, - "4314": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.email" - }, - "4315": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.region_id" - }, - "4316": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.currency_code" - }, - "4317": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.tax_rate" - }, - "4318": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.sales_channel_id" - }, - "4319": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.canceled_at" - }, - "4320": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.created_at" - }, - "4321": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "AdminListOrdersSelector.updated_at" - }, - "4322": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "OrdersReturnItem" - }, - "4325": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "OrdersReturnItem.item_id" - }, - "4326": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "OrdersReturnItem.quantity" - }, - "4327": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "OrdersReturnItem.reason_id" - }, - "4328": { - "sourceFileName": "../../../packages/medusa/src/types/orders.ts", - "qualifiedName": "OrdersReturnItem.note" - }, - "4329": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/request-return.ts", - "qualifiedName": "ReturnShipping" - }, - "4332": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/request-return.ts", - "qualifiedName": "ReturnShipping.option_id" - }, - "4333": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/request-return.ts", - "qualifiedName": "ReturnShipping.price" - }, - "4334": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", - "qualifiedName": "Item" - }, - "4337": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", - "qualifiedName": "Item.id" - }, - "4338": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", - "qualifiedName": "Item.note" - }, - "4339": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", - "qualifiedName": "Item.reason" - }, - "4340": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", - "qualifiedName": "Item.images" - }, - "4341": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", - "qualifiedName": "Item.tags" - }, - "4342": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", - "qualifiedName": "Item.metadata" - }, - "4343": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", - "qualifiedName": "ShippingMethod" - }, - "4346": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", - "qualifiedName": "ShippingMethod.id" - }, - "4347": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", - "qualifiedName": "ShippingMethod.option_id" - }, - "4348": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", - "qualifiedName": "ShippingMethod.price" - }, - "4349": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", - "qualifiedName": "ShippingMethod.data" - }, - "4350": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", - "qualifiedName": "PaymentMethod" - }, - "4353": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", - "qualifiedName": "PaymentMethod.provider_id" - }, - "4354": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", - "qualifiedName": "PaymentMethod.data" - }, - "4355": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", - "qualifiedName": "ShippingMethod" - }, - "4358": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", - "qualifiedName": "ShippingMethod.provider_id" - }, - "4359": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", - "qualifiedName": "ShippingMethod.profile_id" - }, - "4360": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", - "qualifiedName": "ShippingMethod.price" - }, - "4361": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", - "qualifiedName": "ShippingMethod.data" - }, - "4362": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", - "qualifiedName": "ShippingMethod.items" - }, - "4363": { - "sourceFileName": "../../../packages/utils/dist/pricing/price-list.d.ts", - "qualifiedName": "PriceListStatus" - }, - "4364": { - "sourceFileName": "../../../packages/utils/dist/pricing/price-list.d.ts", - "qualifiedName": "PriceListStatus.ACTIVE" - }, - "4365": { - "sourceFileName": "../../../packages/utils/dist/pricing/price-list.d.ts", - "qualifiedName": "PriceListStatus.DRAFT" - }, - "4366": { - "sourceFileName": "../../../packages/utils/dist/pricing/price-list.d.ts", - "qualifiedName": "PriceListType" - }, - "4367": { - "sourceFileName": "../../../packages/utils/dist/pricing/price-list.d.ts", - "qualifiedName": "PriceListType.SALE" - }, - "4368": { - "sourceFileName": "../../../packages/utils/dist/pricing/price-list.d.ts", - "qualifiedName": "PriceListType.OVERRIDE" - }, - "4369": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", - "qualifiedName": "CustomerGroup" - }, - "4372": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", - "qualifiedName": "CustomerGroup.id" - }, - "4373": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", - "qualifiedName": "CustomerGroup" - }, - "4376": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", - "qualifiedName": "CustomerGroup.id" - }, - "4377": { - "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", - "qualifiedName": "AdminProductCategoriesReqBase" - }, - "4380": { - "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", - "qualifiedName": "AdminProductCategoriesReqBase.description" - }, - "4381": { - "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", - "qualifiedName": "AdminProductCategoriesReqBase.handle" - }, - "4382": { - "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", - "qualifiedName": "AdminProductCategoriesReqBase.is_internal" - }, - "4383": { - "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", - "qualifiedName": "AdminProductCategoriesReqBase.is_active" - }, - "4384": { - "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", - "qualifiedName": "AdminProductCategoriesReqBase.parent_category_id" - }, - "4385": { - "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", - "qualifiedName": "ProductBatchProductCategory" - }, - "4388": { - "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", - "qualifiedName": "ProductBatchProductCategory.id" - }, - "4389": { - "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", - "qualifiedName": "PricedProduct" - }, - "4390": { - "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", - "qualifiedName": "__type" - }, - "4391": { - "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", - "qualifiedName": "__type.variants" - }, - "4392": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "ProductTypeReq" - }, - "4395": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "ProductTypeReq.id" - }, - "4396": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "ProductTypeReq.value" - }, - "4397": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "ProductTagReq" - }, - "4400": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "ProductTagReq.id" - }, - "4401": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "ProductTagReq.value" - }, - "4402": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "ProductSalesChannelReq" - }, - "4405": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "ProductSalesChannelReq.id" - }, - "4406": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "ProductProductCategoryReq" - }, - "4409": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "ProductProductCategoryReq.id" - }, - "4410": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductOptionReq" - }, - "4413": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductOptionReq.title" - }, - "4414": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq" - }, - "4417": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.title" - }, - "4418": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.sku" - }, - "4419": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.ean" - }, - "4420": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.upc" - }, - "4421": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.barcode" - }, - "4422": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.hs_code" - }, - "4423": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.inventory_quantity" - }, - "4424": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.allow_backorder" - }, - "4425": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.manage_inventory" - }, - "4426": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.weight" - }, - "4427": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.length" - }, - "4428": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.height" - }, - "4429": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.width" - }, - "4430": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.origin_country" - }, - "4431": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.mid_code" - }, - "4432": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.material" - }, - "4433": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.metadata" - }, - "4434": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.prices" - }, - "4435": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", - "qualifiedName": "ProductVariantReq.options" - }, - "4436": { - "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", - "qualifiedName": "ProductVariantPricesCreateReq" - }, - "4439": { - "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", - "qualifiedName": "ProductVariantPricesCreateReq.region_id" - }, - "4440": { - "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", - "qualifiedName": "ProductVariantPricesCreateReq.currency_code" - }, - "4441": { - "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", - "qualifiedName": "ProductVariantPricesCreateReq.amount" - }, - "4442": { - "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", - "qualifiedName": "ProductVariantPricesCreateReq.min_quantity" - }, - "4443": { - "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", - "qualifiedName": "ProductVariantPricesCreateReq.max_quantity" - }, - "4444": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", - "qualifiedName": "ProductVariantOptionReq" - }, - "4447": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", - "qualifiedName": "ProductVariantOptionReq.value" - }, - "4448": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", - "qualifiedName": "ProductVariantOptionReq.option_id" - }, - "4449": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps" - }, - "4452": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.id" - }, - "4453": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.q" - }, - "4454": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.status" - }, - "4455": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.price_list_id" - }, - "4456": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.collection_id" - }, - "4457": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.tags" - }, - "4458": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.title" - }, - "4459": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.description" - }, - "4460": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.handle" - }, - "4461": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.is_giftcard" - }, - "4462": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.type_id" - }, - "4463": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.sales_channel_id" - }, - "4464": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.discount_condition_id" - }, - "4465": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.category_id" - }, - "4466": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.include_category_children" - }, - "4467": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.created_at" - }, - "4468": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.updated_at" - }, - "4469": { - "sourceFileName": "../../../packages/medusa/src/types/product.ts", - "qualifiedName": "FilterableProductProps.deleted_at" - }, - "4470": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq" - }, - "4473": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.id" - }, - "4474": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.title" - }, - "4475": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.sku" - }, - "4476": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.ean" - }, - "4477": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.upc" - }, - "4478": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.barcode" - }, - "4479": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.hs_code" - }, - "4480": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.inventory_quantity" - }, - "4481": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.allow_backorder" - }, - "4482": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.manage_inventory" - }, - "4483": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.weight" - }, - "4484": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.length" - }, - "4485": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.height" - }, - "4486": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.width" - }, - "4487": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.origin_country" - }, - "4488": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.mid_code" - }, - "4489": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.material" - }, - "4490": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.metadata" - }, - "4491": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.prices" - }, - "4492": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", - "qualifiedName": "ProductVariantReq.options" - }, - "4493": { - "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", - "qualifiedName": "ProductVariantPricesUpdateReq" - }, - "4496": { - "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", - "qualifiedName": "ProductVariantPricesUpdateReq.id" - }, - "4497": { - "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", - "qualifiedName": "ProductVariantPricesUpdateReq.region_id" - }, - "4498": { - "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", - "qualifiedName": "ProductVariantPricesUpdateReq.currency_code" - }, - "4499": { - "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", - "qualifiedName": "ProductVariantPricesUpdateReq.amount" - }, - "4500": { - "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", - "qualifiedName": "ProductVariantPricesUpdateReq.min_quantity" - }, - "4501": { - "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", - "qualifiedName": "ProductVariantPricesUpdateReq.max_quantity" - }, - "4502": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", - "qualifiedName": "ProductVariantOptionReq" - }, - "4505": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", - "qualifiedName": "ProductVariantOptionReq.value" - }, - "4506": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", - "qualifiedName": "ProductVariantOptionReq.option_id" - }, - "4507": { - "sourceFileName": "../../../packages/medusa/src/types/sales-channels.ts", - "qualifiedName": "ProductBatchSalesChannel" - }, - "4510": { - "sourceFileName": "../../../packages/medusa/src/types/sales-channels.ts", - "qualifiedName": "ProductBatchSalesChannel.id" - }, - "4511": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/receive-return.ts", - "qualifiedName": "Item" - }, - "4514": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/receive-return.ts", - "qualifiedName": "Item.item_id" - }, - "4515": { - "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/receive-return.ts", - "qualifiedName": "Item.quantity" - }, - "4516": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "ReservationItemDTO" - }, - "4517": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type" - }, - "4518": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.id" - }, - "4519": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.location_id" - }, - "4520": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.inventory_item_id" - }, - "4521": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.quantity" - }, - "4522": { - "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", - "qualifiedName": "__type.line_item_id" - }, - "4523": { "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", "qualifiedName": "__type.description" }, + "4255": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.thumbnail" + }, + "4256": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.metadata" + }, + "4257": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.created_at" + }, + "4258": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.updated_at" + }, + "4259": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.deleted_at" + }, + "4260": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "InventoryLevelDTO" + }, + "4261": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type" + }, + "4262": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.id" + }, + "4263": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.inventory_item_id" + }, + "4264": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.location_id" + }, + "4265": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.stocked_quantity" + }, + "4266": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.reserved_quantity" + }, + "4267": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.incoming_quantity" + }, + "4268": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.metadata" + }, + "4269": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.created_at" + }, + "4270": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.updated_at" + }, + "4271": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.deleted_at" + }, + "4272": { + "sourceFileName": "../../../packages/types/dist/common/common.d.ts", + "qualifiedName": "PaginatedResponse" + }, + "4273": { + "sourceFileName": "../../../packages/types/dist/common/common.d.ts", + "qualifiedName": "__type" + }, + "4274": { + "sourceFileName": "../../../packages/types/dist/common/common.d.ts", + "qualifiedName": "__type.limit" + }, + "4275": { + "sourceFileName": "../../../packages/types/dist/common/common.d.ts", + "qualifiedName": "__type.offset" + }, + "4276": { + "sourceFileName": "../../../packages/types/dist/common/common.d.ts", + "qualifiedName": "__type.count" + }, + "4277": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "Item" + }, + "4280": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "Item.item_id" + }, + "4281": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "Item.quantity" + }, + "4282": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "Item.note" + }, + "4283": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "Item.reason" + }, + "4284": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "Item.tags" + }, + "4285": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "Item.images" + }, + "4286": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "ReturnShipping" + }, + "4289": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "ReturnShipping.option_id" + }, + "4290": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "ReturnShipping.price" + }, + "4291": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "AdditionalItem" + }, + "4294": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "AdditionalItem.variant_id" + }, + "4295": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "AdditionalItem.quantity" + }, + "4296": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "ShippingMethod" + }, + "4299": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "ShippingMethod.id" + }, + "4300": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "ShippingMethod.option_id" + }, + "4301": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "ShippingMethod.price" + }, + "4302": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-claim.ts", + "qualifiedName": "ShippingMethod.data" + }, + "4303": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-fulfillment.ts", + "qualifiedName": "Item" + }, + "4306": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-fulfillment.ts", + "qualifiedName": "Item.item_id" + }, + "4307": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-fulfillment.ts", + "qualifiedName": "Item.quantity" + }, + "4308": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "ReturnItem" + }, + "4311": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "ReturnItem.item_id" + }, + "4312": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "ReturnItem.quantity" + }, + "4313": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "ReturnItem.reason_id" + }, + "4314": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "ReturnItem.note" + }, + "4315": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "ReturnShipping" + }, + "4318": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "ReturnShipping.option_id" + }, + "4319": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "ReturnShipping.price" + }, + "4320": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "AdditionalItem" + }, + "4323": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "AdditionalItem.variant_id" + }, + "4324": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "AdditionalItem.quantity" + }, + "4325": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "CustomShippingOption" + }, + "4328": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "CustomShippingOption.option_id" + }, + "4329": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/create-swap.ts", + "qualifiedName": "CustomShippingOption.price" + }, + "4330": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector" + }, + "4333": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.q" + }, + "4334": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.id" + }, + "4335": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.status" + }, + "4336": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.fulfillment_status" + }, + "4337": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.payment_status" + }, + "4338": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.display_id" + }, + "4339": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.cart_id" + }, + "4340": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.customer_id" + }, + "4341": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.email" + }, + "4342": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.region_id" + }, + "4343": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.currency_code" + }, + "4344": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.tax_rate" + }, + "4345": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.sales_channel_id" + }, + "4346": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.canceled_at" + }, + "4347": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.created_at" + }, + "4348": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "AdminListOrdersSelector.updated_at" + }, + "4349": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "OrdersReturnItem" + }, + "4352": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "OrdersReturnItem.item_id" + }, + "4353": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "OrdersReturnItem.quantity" + }, + "4354": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "OrdersReturnItem.reason_id" + }, + "4355": { + "sourceFileName": "../../../packages/medusa/src/types/orders.ts", + "qualifiedName": "OrdersReturnItem.note" + }, + "4356": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/request-return.ts", + "qualifiedName": "ReturnShipping" + }, + "4359": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/request-return.ts", + "qualifiedName": "ReturnShipping.option_id" + }, + "4360": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/request-return.ts", + "qualifiedName": "ReturnShipping.price" + }, + "4361": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", + "qualifiedName": "Item" + }, + "4364": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", + "qualifiedName": "Item.id" + }, + "4365": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", + "qualifiedName": "Item.note" + }, + "4366": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", + "qualifiedName": "Item.reason" + }, + "4367": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", + "qualifiedName": "Item.images" + }, + "4368": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", + "qualifiedName": "Item.tags" + }, + "4369": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", + "qualifiedName": "Item.metadata" + }, + "4370": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", + "qualifiedName": "ShippingMethod" + }, + "4373": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", + "qualifiedName": "ShippingMethod.id" + }, + "4374": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", + "qualifiedName": "ShippingMethod.option_id" + }, + "4375": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", + "qualifiedName": "ShippingMethod.price" + }, + "4376": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", + "qualifiedName": "ShippingMethod.data" + }, + "4377": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", + "qualifiedName": "PaymentMethod" + }, + "4380": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", + "qualifiedName": "PaymentMethod.provider_id" + }, + "4381": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", + "qualifiedName": "PaymentMethod.data" + }, + "4382": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", + "qualifiedName": "ShippingMethod" + }, + "4385": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", + "qualifiedName": "ShippingMethod.provider_id" + }, + "4386": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", + "qualifiedName": "ShippingMethod.profile_id" + }, + "4387": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", + "qualifiedName": "ShippingMethod.price" + }, + "4388": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", + "qualifiedName": "ShippingMethod.data" + }, + "4389": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-order.ts", + "qualifiedName": "ShippingMethod.items" + }, + "4390": { + "sourceFileName": "../../../packages/utils/dist/pricing/price-list.d.ts", + "qualifiedName": "PriceListStatus" + }, + "4391": { + "sourceFileName": "../../../packages/utils/dist/pricing/price-list.d.ts", + "qualifiedName": "PriceListStatus.ACTIVE" + }, + "4392": { + "sourceFileName": "../../../packages/utils/dist/pricing/price-list.d.ts", + "qualifiedName": "PriceListStatus.DRAFT" + }, + "4393": { + "sourceFileName": "../../../packages/utils/dist/pricing/price-list.d.ts", + "qualifiedName": "PriceListType" + }, + "4394": { + "sourceFileName": "../../../packages/utils/dist/pricing/price-list.d.ts", + "qualifiedName": "PriceListType.SALE" + }, + "4395": { + "sourceFileName": "../../../packages/utils/dist/pricing/price-list.d.ts", + "qualifiedName": "PriceListType.OVERRIDE" + }, + "4396": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", + "qualifiedName": "CustomerGroup" + }, + "4399": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/create-price-list.ts", + "qualifiedName": "CustomerGroup.id" + }, + "4400": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", + "qualifiedName": "CustomerGroup" + }, + "4403": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/price-lists/update-price-list.ts", + "qualifiedName": "CustomerGroup.id" + }, + "4404": { + "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", + "qualifiedName": "AdminProductCategoriesReqBase" + }, + "4407": { + "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", + "qualifiedName": "AdminProductCategoriesReqBase.description" + }, + "4408": { + "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", + "qualifiedName": "AdminProductCategoriesReqBase.handle" + }, + "4409": { + "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", + "qualifiedName": "AdminProductCategoriesReqBase.is_internal" + }, + "4410": { + "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", + "qualifiedName": "AdminProductCategoriesReqBase.is_active" + }, + "4411": { + "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", + "qualifiedName": "AdminProductCategoriesReqBase.parent_category_id" + }, + "4412": { + "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", + "qualifiedName": "ProductBatchProductCategory" + }, + "4415": { + "sourceFileName": "../../../packages/medusa/src/types/product-category.ts", + "qualifiedName": "ProductBatchProductCategory.id" + }, + "4416": { + "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", + "qualifiedName": "PricedProduct" + }, + "4417": { + "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", + "qualifiedName": "__type" + }, + "4418": { + "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", + "qualifiedName": "__type.variants" + }, + "4419": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "ProductTypeReq" + }, + "4422": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "ProductTypeReq.id" + }, + "4423": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "ProductTypeReq.value" + }, + "4424": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "ProductTagReq" + }, + "4427": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "ProductTagReq.id" + }, + "4428": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "ProductTagReq.value" + }, + "4429": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "ProductSalesChannelReq" + }, + "4432": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "ProductSalesChannelReq.id" + }, + "4433": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "ProductProductCategoryReq" + }, + "4436": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "ProductProductCategoryReq.id" + }, + "4437": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductOptionReq" + }, + "4440": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductOptionReq.title" + }, + "4441": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq" + }, + "4444": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.title" + }, + "4445": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.sku" + }, + "4446": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.ean" + }, + "4447": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.upc" + }, + "4448": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.barcode" + }, + "4449": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.hs_code" + }, + "4450": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.inventory_quantity" + }, + "4451": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.allow_backorder" + }, + "4452": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.manage_inventory" + }, + "4453": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.weight" + }, + "4454": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.length" + }, + "4455": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.height" + }, + "4456": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.width" + }, + "4457": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.origin_country" + }, + "4458": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.mid_code" + }, + "4459": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.material" + }, + "4460": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.metadata" + }, + "4461": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.prices" + }, + "4462": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", + "qualifiedName": "ProductVariantReq.options" + }, + "4463": { + "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", + "qualifiedName": "ProductVariantPricesCreateReq" + }, + "4466": { + "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", + "qualifiedName": "ProductVariantPricesCreateReq.region_id" + }, + "4467": { + "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", + "qualifiedName": "ProductVariantPricesCreateReq.currency_code" + }, + "4468": { + "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", + "qualifiedName": "ProductVariantPricesCreateReq.amount" + }, + "4469": { + "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", + "qualifiedName": "ProductVariantPricesCreateReq.min_quantity" + }, + "4470": { + "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", + "qualifiedName": "ProductVariantPricesCreateReq.max_quantity" + }, + "4471": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", + "qualifiedName": "ProductVariantOptionReq" + }, + "4474": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", + "qualifiedName": "ProductVariantOptionReq.value" + }, + "4475": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-variant.ts", + "qualifiedName": "ProductVariantOptionReq.option_id" + }, + "4476": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps" + }, + "4479": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.id" + }, + "4480": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.q" + }, + "4481": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.status" + }, + "4482": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.price_list_id" + }, + "4483": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.collection_id" + }, + "4484": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.tags" + }, + "4485": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.title" + }, + "4486": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.description" + }, + "4487": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.handle" + }, + "4488": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.is_giftcard" + }, + "4489": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.type_id" + }, + "4490": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.sales_channel_id" + }, + "4491": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.discount_condition_id" + }, + "4492": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.category_id" + }, + "4493": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.include_category_children" + }, + "4494": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.created_at" + }, + "4495": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.updated_at" + }, + "4496": { + "sourceFileName": "../../../packages/medusa/src/types/product.ts", + "qualifiedName": "FilterableProductProps.deleted_at" + }, + "4497": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq" + }, + "4500": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.id" + }, + "4501": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.title" + }, + "4502": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.sku" + }, + "4503": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.ean" + }, + "4504": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.upc" + }, + "4505": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.barcode" + }, + "4506": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.hs_code" + }, + "4507": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.inventory_quantity" + }, + "4508": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.allow_backorder" + }, + "4509": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.manage_inventory" + }, + "4510": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.weight" + }, + "4511": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.length" + }, + "4512": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.height" + }, + "4513": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.width" + }, + "4514": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.origin_country" + }, + "4515": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.mid_code" + }, + "4516": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.material" + }, + "4517": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.metadata" + }, + "4518": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.prices" + }, + "4519": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", + "qualifiedName": "ProductVariantReq.options" + }, + "4520": { + "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", + "qualifiedName": "ProductVariantPricesUpdateReq" + }, + "4523": { + "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", + "qualifiedName": "ProductVariantPricesUpdateReq.id" + }, "4524": { + "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", + "qualifiedName": "ProductVariantPricesUpdateReq.region_id" + }, + "4525": { + "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", + "qualifiedName": "ProductVariantPricesUpdateReq.currency_code" + }, + "4526": { + "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", + "qualifiedName": "ProductVariantPricesUpdateReq.amount" + }, + "4527": { + "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", + "qualifiedName": "ProductVariantPricesUpdateReq.min_quantity" + }, + "4528": { + "sourceFileName": "../../../packages/medusa/src/types/product-variant.ts", + "qualifiedName": "ProductVariantPricesUpdateReq.max_quantity" + }, + "4529": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", + "qualifiedName": "ProductVariantOptionReq" + }, + "4532": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", + "qualifiedName": "ProductVariantOptionReq.value" + }, + "4533": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-variant.ts", + "qualifiedName": "ProductVariantOptionReq.option_id" + }, + "4534": { + "sourceFileName": "../../../packages/medusa/src/types/sales-channels.ts", + "qualifiedName": "ProductBatchSalesChannel" + }, + "4537": { + "sourceFileName": "../../../packages/medusa/src/types/sales-channels.ts", + "qualifiedName": "ProductBatchSalesChannel.id" + }, + "4538": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/receive-return.ts", + "qualifiedName": "Item" + }, + "4541": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/receive-return.ts", + "qualifiedName": "Item.item_id" + }, + "4542": { + "sourceFileName": "../../../packages/medusa/src/api/routes/admin/returns/receive-return.ts", + "qualifiedName": "Item.quantity" + }, + "4543": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "ReservationItemDTO" + }, + "4544": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type" + }, + "4545": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.id" + }, + "4546": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.location_id" + }, + "4547": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.inventory_item_id" + }, + "4548": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.quantity" + }, + "4549": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.line_item_id" + }, + "4550": { + "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", + "qualifiedName": "__type.description" + }, + "4551": { "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", "qualifiedName": "__type.created_by" }, - "4525": { + "4552": { "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", "qualifiedName": "__type.metadata" }, - "4526": { + "4553": { "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", "qualifiedName": "__type.created_at" }, - "4527": { + "4554": { "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", "qualifiedName": "__type.updated_at" }, - "4528": { + "4555": { "sourceFileName": "../../../packages/types/dist/inventory/common.d.ts", "qualifiedName": "__type.deleted_at" }, - "4529": { + "4556": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "OptionRequirement" }, - "4532": { + "4559": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "OptionRequirement.type" }, - "4533": { + "4560": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/create-shipping-option.ts", "qualifiedName": "OptionRequirement.amount" }, - "4534": { + "4561": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/update-shipping-option.ts", "qualifiedName": "OptionRequirement" }, - "4537": { + "4564": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/update-shipping-option.ts", "qualifiedName": "OptionRequirement.id" }, - "4538": { + "4565": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/update-shipping-option.ts", "qualifiedName": "OptionRequirement.type" }, - "4539": { + "4566": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/shipping-options/update-shipping-option.ts", "qualifiedName": "OptionRequirement.amount" }, - "4540": { + "4567": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "StockLocationDTO" }, - "4541": { + "4568": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type" }, - "4542": { + "4569": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.id" }, - "4543": { + "4570": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.name" }, - "4544": { + "4571": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.metadata" }, - "4545": { + "4572": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.address_id" }, - "4546": { + "4573": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.address" }, - "4547": { + "4574": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.created_at" }, - "4548": { + "4575": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.updated_at" }, - "4549": { + "4576": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.deleted_at" }, - "4550": { + "4577": { "sourceFileName": "../../../packages/types/dist/common/common.d.ts", "qualifiedName": "DeleteResponse" }, - "4551": { + "4578": { "sourceFileName": "../../../packages/types/dist/common/common.d.ts", "qualifiedName": "__type" }, - "4552": { + "4579": { "sourceFileName": "../../../packages/types/dist/common/common.d.ts", "qualifiedName": "__type.id" }, - "4553": { + "4580": { "sourceFileName": "../../../packages/types/dist/common/common.d.ts", "qualifiedName": "__type.object" }, - "4554": { + "4581": { "sourceFileName": "../../../packages/types/dist/common/common.d.ts", "qualifiedName": "__type.deleted" }, - "4555": { + "4582": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "StockLocationExpandedDTO" }, - "4556": { + "4583": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type" }, - "4557": { + "4584": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.sales_channels" }, - "4558": { + "4585": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "StockLocationAddress" }, - "4561": { + "4588": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "StockLocationAddress.address_1" }, - "4562": { + "4589": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "StockLocationAddress.address_2" }, - "4563": { + "4590": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "StockLocationAddress.company" }, - "4564": { + "4591": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "StockLocationAddress.city" }, - "4565": { + "4592": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "StockLocationAddress.country_code" }, - "4566": { + "4593": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "StockLocationAddress.phone" }, - "4567": { + "4594": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "StockLocationAddress.postal_code" }, - "4568": { + "4595": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/create-stock-location.ts", "qualifiedName": "StockLocationAddress.province" }, - "4569": { + "4596": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "StockLocationAddress" }, - "4572": { + "4599": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "StockLocationAddress.address_1" }, - "4573": { + "4600": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "StockLocationAddress.address_2" }, - "4574": { + "4601": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "StockLocationAddress.company" }, - "4575": { + "4602": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "StockLocationAddress.city" }, - "4576": { + "4603": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "StockLocationAddress.country_code" }, - "4577": { + "4604": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "StockLocationAddress.phone" }, - "4578": { + "4605": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "StockLocationAddress.postal_code" }, - "4579": { + "4606": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/stock-locations/update-stock-location.ts", "qualifiedName": "StockLocationAddress.province" }, - "4580": { + "4607": { "sourceFileName": "../../../packages/medusa/src/types/store.ts", "qualifiedName": "ExtendedStoreDTO" }, - "4581": { + "4608": { "sourceFileName": "../../../packages/medusa/src/types/store.ts", "qualifiedName": "__type" }, - "4582": { + "4609": { "sourceFileName": "../../../packages/medusa/src/types/store.ts", "qualifiedName": "__type.payment_providers" }, - "4583": { + "4610": { "sourceFileName": "../../../packages/medusa/src/types/store.ts", "qualifiedName": "__type.fulfillment_providers" }, - "4584": { + "4611": { "sourceFileName": "../../../packages/medusa/src/types/store.ts", "qualifiedName": "__type.feature_flags" }, - "4585": { + "4612": { "sourceFileName": "../../../packages/medusa/src/types/store.ts", "qualifiedName": "__type.modules" }, - "4586": { + "4613": { "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", "qualifiedName": "FileServiceUploadResult" }, - "4587": { + "4614": { "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", "qualifiedName": "__type" }, - "4588": { + "4615": { "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", "qualifiedName": "__type.url" }, - "4589": { + "4616": { "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", "qualifiedName": "__type.key" }, - "4590": { + "4617": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "PricedVariant" }, - "4591": { + "4618": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "AdminPriceSelectionParams" }, - "4594": { + "4621": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "AdminPriceSelectionParams.customer_id" }, - "4595": { + "4622": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.cart_id" }, - "4596": { + "4623": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.region_id" }, - "4597": { + "4624": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.currency_code" }, - "4598": { + "4625": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "4599": { + "4626": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "4600": { + "4627": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "GiftCard" }, - "4603": { + "4630": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "GiftCard.code" }, - "4604": { + "4631": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "Discount" }, - "4607": { + "4634": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/carts/update-cart.ts", "qualifiedName": "Discount.code" }, - "4608": { + "4635": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams" }, - "4611": { + "4638": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.cart_id" }, - "4612": { + "4639": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.region_id" }, - "4613": { + "4640": { "sourceFileName": "../../../packages/medusa/src/types/price-selection.ts", "qualifiedName": "PriceSelectionParams.currency_code" }, - "4614": { + "4641": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.expand" }, - "4615": { + "4642": { "sourceFileName": "../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindParams.fields" }, - "4616": { + "4643": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/create-return.ts", "qualifiedName": "Item" }, - "4619": { + "4646": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/create-return.ts", "qualifiedName": "Item.item_id" }, - "4620": { + "4647": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/create-return.ts", "qualifiedName": "Item.quantity" }, - "4621": { + "4648": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/create-return.ts", "qualifiedName": "Item.reason_id" }, - "4622": { + "4649": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/create-return.ts", "qualifiedName": "Item.note" }, - "4623": { + "4650": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/create-return.ts", "qualifiedName": "ReturnShipping" }, - "4626": { + "4653": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/returns/create-return.ts", "qualifiedName": "ReturnShipping.option_id" }, - "4627": { + "4654": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "PricedShippingOption" }, - "4628": { + "4655": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/create-swap.ts", "qualifiedName": "Item" }, - "4631": { + "4658": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/create-swap.ts", "qualifiedName": "Item.item_id" }, - "4632": { + "4659": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/create-swap.ts", "qualifiedName": "Item.quantity" }, - "4633": { + "4660": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/create-swap.ts", "qualifiedName": "Item.reason_id" }, - "4634": { + "4661": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/create-swap.ts", "qualifiedName": "Item.note" }, - "4635": { + "4662": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/create-swap.ts", "qualifiedName": "AdditionalItem" }, - "4638": { + "4665": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/create-swap.ts", "qualifiedName": "AdditionalItem.variant_id" }, - "4639": { + "4666": { "sourceFileName": "../../../packages/medusa/src/api/routes/store/swaps/create-swap.ts", "qualifiedName": "AdditionalItem.quantity" }, - "4640": { + "4667": { "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", "qualifiedName": "MedusaError" }, - "4641": { + "4668": { "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", "qualifiedName": "MedusaError.Types" }, - "4642": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type" - }, - "4643": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type.DB_ERROR" - }, - "4644": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type.DUPLICATE_ERROR" - }, - "4645": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type.INVALID_ARGUMENT" - }, - "4646": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type.INVALID_DATA" - }, - "4647": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type.UNAUTHORIZED" - }, - "4648": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type.NOT_FOUND" - }, - "4649": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type.NOT_ALLOWED" - }, - "4650": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type.UNEXPECTED_STATE" - }, - "4651": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type.CONFLICT" - }, - "4652": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type.PAYMENT_AUTHORIZATION_ERROR" - }, - "4653": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "MedusaError.Codes" - }, - "4654": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type" - }, - "4655": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type.INSUFFICIENT_INVENTORY" - }, - "4656": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "__type.CART_INCOMPATIBLE_STATE" - }, - "4657": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "MedusaError.__constructor" - }, - "4658": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "MedusaError" - }, - "4659": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "type" - }, - "4660": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "message" - }, - "4661": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "code" - }, - "4662": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "params" - }, - "4663": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "MedusaError.type" - }, - "4664": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "MedusaError.message" - }, - "4665": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "MedusaError.code" - }, - "4666": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", - "qualifiedName": "MedusaError.date" - }, - "4667": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", - "qualifiedName": "handler" - }, - "4668": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", - "qualifiedName": "__type" - }, "4669": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", "qualifiedName": "__type" }, "4670": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", - "qualifiedName": "req" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "__type.DB_ERROR" }, "4671": { - "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", - "qualifiedName": "res" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "__type.DUPLICATE_ERROR" }, "4672": { - "sourceFileName": "../../../packages/medusa/src/types/request.ts", - "qualifiedName": "RequestContext" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "__type.INVALID_ARGUMENT" }, "4673": { - "sourceFileName": "../../../packages/medusa/src/types/request.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "__type.INVALID_DATA" }, "4674": { - "sourceFileName": "../../../packages/medusa/src/types/request.ts", - "qualifiedName": "__type.ip" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "__type.UNAUTHORIZED" }, "4675": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "DeleteFileType" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "__type.NOT_FOUND" }, "4676": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "__type.NOT_ALLOWED" }, "4677": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type.fileKey" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "__type.UNEXPECTED_STATE" }, "4678": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type.__index" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "__type.CONFLICT" + }, + "4679": { + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "__type.PAYMENT_AUTHORIZATION_ERROR" }, "4680": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "UploadStreamDescriptorType" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "MedusaError.Codes" }, "4681": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", "qualifiedName": "__type" }, "4682": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type.name" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "__type.INSUFFICIENT_INVENTORY" }, "4683": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type.ext" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "__type.CART_INCOMPATIBLE_STATE" }, "4684": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type.isPrivate" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "MedusaError.__constructor" }, "4685": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type.__index" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "MedusaError" + }, + "4686": { + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "type" }, "4687": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "FileServiceGetUploadStreamResult" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "message" }, "4688": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "code" }, "4689": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type.writeStream" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "params" }, "4690": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type.promise" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "MedusaError.type" }, "4691": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type.url" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "MedusaError.message" }, "4692": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type.fileKey" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "MedusaError.code" }, "4693": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type.__index" + "sourceFileName": "../../../packages/medusa-core-utils/dist/errors.d.ts", + "qualifiedName": "MedusaError.date" + }, + "4694": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", + "qualifiedName": "handler" }, "4695": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "GetUploadedFileType" + "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", + "qualifiedName": "__type" }, "4696": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", "qualifiedName": "__type" }, "4697": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", + "qualifiedName": "req" + }, + "4698": { + "sourceFileName": "../../../packages/medusa/src/api/middlewares/await-middleware.ts", + "qualifiedName": "res" + }, + "4699": { + "sourceFileName": "../../../packages/medusa/src/types/request.ts", + "qualifiedName": "RequestContext" + }, + "4700": { + "sourceFileName": "../../../packages/medusa/src/types/request.ts", + "qualifiedName": "__type" + }, + "4701": { + "sourceFileName": "../../../packages/medusa/src/types/request.ts", + "qualifiedName": "__type.ip" + }, + "4702": { + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "DeleteFileType" + }, + "4703": { + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type" + }, + "4704": { "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", "qualifiedName": "__type.fileKey" }, - "4698": { - "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", - "qualifiedName": "__type.isPrivate" - }, - "4699": { + "4705": { "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", "qualifiedName": "__type.__index" }, - "4701": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "ShippingOptionData" - }, - "4702": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "FulfillmentProviderData" - }, - "4703": { - "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", - "qualifiedName": "ShippingMethodData" - }, - "4704": { - "sourceFileName": "../../../packages/medusa/src/types/fulfillment-provider.ts", - "qualifiedName": "CreateReturnType" - }, - "4705": { - "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", - "qualifiedName": "MedusaContainer" - }, - "4706": { - "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", - "qualifiedName": "__type" - }, "4707": { - "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", - "qualifiedName": "__type.registerAdd" + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "UploadStreamDescriptorType" }, "4708": { - "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", "qualifiedName": "__type" }, "4709": { - "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type.name" }, "4710": { - "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", - "qualifiedName": "name" + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type.ext" }, "4711": { - "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", - "qualifiedName": "registration" + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type.isPrivate" }, "4712": { - "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", - "qualifiedName": "T" - }, - "4713": { - "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", - "qualifiedName": "__type.createScope" + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type.__index" }, "4714": { - "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "FileServiceGetUploadStreamResult" }, "4715": { - "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", "qualifiedName": "__type" }, "4716": { + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type.writeStream" + }, + "4717": { + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type.promise" + }, + "4718": { + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type.url" + }, + "4719": { + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type.fileKey" + }, + "4720": { + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type.__index" + }, + "4722": { + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "GetUploadedFileType" + }, + "4723": { + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type" + }, + "4724": { + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type.fileKey" + }, + "4725": { + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type.isPrivate" + }, + "4726": { + "sourceFileName": "../../../packages/types/dist/file-service/index.d.ts", + "qualifiedName": "__type.__index" + }, + "4728": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "ShippingOptionData" + }, + "4729": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "FulfillmentProviderData" + }, + "4730": { + "sourceFileName": "../../../packages/medusa/src/interfaces/fulfillment-service.ts", + "qualifiedName": "ShippingMethodData" + }, + "4731": { + "sourceFileName": "../../../packages/medusa/src/types/fulfillment-provider.ts", + "qualifiedName": "CreateReturnType" + }, + "4732": { + "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", + "qualifiedName": "MedusaContainer" + }, + "4733": { + "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", + "qualifiedName": "__type" + }, + "4734": { + "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", + "qualifiedName": "__type.registerAdd" + }, + "4735": { + "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", + "qualifiedName": "__type" + }, + "4736": { + "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", + "qualifiedName": "__type" + }, + "4737": { + "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", + "qualifiedName": "name" + }, + "4738": { + "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", + "qualifiedName": "registration" + }, + "4739": { + "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", + "qualifiedName": "T" + }, + "4740": { + "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", + "qualifiedName": "__type.createScope" + }, + "4741": { + "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", + "qualifiedName": "__type" + }, + "4742": { + "sourceFileName": "../../../packages/types/dist/common/medusa-container.d.ts", + "qualifiedName": "__type" + }, + "4743": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "ReturnedData" }, - "4717": { + "4744": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "__type" }, - "4718": { + "4745": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "__type.to" }, - "4719": { + "4746": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "__type.status" }, - "4720": { + "4747": { "sourceFileName": "../../../packages/medusa/src/interfaces/notification-service.ts", "qualifiedName": "__type.data" }, - "4721": { + "4748": { "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", "qualifiedName": "MedusaContainer" }, - "4722": { + "4749": { "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", "qualifiedName": "__type" }, - "4723": { + "4750": { "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", "qualifiedName": "__type.registerAdd" }, - "4724": { + "4751": { "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", "qualifiedName": "__type" }, - "4725": { + "4752": { "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", "qualifiedName": "__type" }, - "4726": { + "4753": { "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", "qualifiedName": "name" }, - "4727": { + "4754": { "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", "qualifiedName": "registration" }, - "4728": { + "4755": { "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", "qualifiedName": "T" }, - "4729": { + "4756": { "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", "qualifiedName": "__type.createScope" }, - "4730": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", - "qualifiedName": "__type" - }, - "4731": { - "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", - "qualifiedName": "__type" - }, - "4732": { - "sourceFileName": "../../../packages/medusa/index.d.ts", - "qualifiedName": "\"medusa-interfaces\"" - }, - "4733": { - "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", - "qualifiedName": "ITransactionBaseService" - }, - "4734": { - "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", - "qualifiedName": "ITransactionBaseService.withTransaction" - }, - "4735": { - "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", - "qualifiedName": "ITransactionBaseService.withTransaction" - }, - "4736": { - "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", - "qualifiedName": "transactionManager" - }, - "4737": { - "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", - "qualifiedName": "TaxServiceRate" - }, - "4738": { - "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", - "qualifiedName": "__type" - }, - "4739": { - "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", - "qualifiedName": "__type.rate" - }, - "4740": { - "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", - "qualifiedName": "__type.name" - }, - "4741": { - "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", - "qualifiedName": "__type.code" - }, - "4742": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "DefaultPriceType.DEFAULT" - }, - "4743": { - "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", - "qualifiedName": "DefaultPriceType" - }, - "4744": { - "sourceFileName": "../../../packages/medusa/src/types/totals.ts", - "qualifiedName": "LineAllocationsMap" - }, - "4745": { - "sourceFileName": "../../../packages/medusa/src/types/totals.ts", - "qualifiedName": "__type" - }, - "4746": { - "sourceFileName": "../../../packages/medusa/src/types/totals.ts", - "qualifiedName": "__type.__index" - }, - "4748": { - "sourceFileName": "../../../packages/medusa/src/types/totals.ts", - "qualifiedName": "__type" - }, - "4749": { - "sourceFileName": "../../../packages/medusa/src/types/totals.ts", - "qualifiedName": "__type.gift_card" - }, - "4750": { - "sourceFileName": "../../../packages/medusa/src/types/totals.ts", - "qualifiedName": "__type.discount" - }, - "4751": { - "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", - "qualifiedName": "ProviderTaxLine" - }, - "4752": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "ModuleJoinerConfig" - }, - "4753": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type" - }, - "4754": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.schema" - }, - "4755": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.relationships" - }, - "4756": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.extends" - }, "4757": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", "qualifiedName": "__type" }, "4758": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.serviceName" + "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", + "qualifiedName": "__type" }, "4759": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.fieldAlias" + "sourceFileName": "../../../packages/medusa/index.d.ts", + "qualifiedName": "\"medusa-interfaces\"" }, "4760": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", + "qualifiedName": "ITransactionBaseService" }, "4761": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.path" + "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", + "qualifiedName": "ITransactionBaseService.withTransaction" }, "4762": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.forwardArgumentsOnPath" + "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", + "qualifiedName": "ITransactionBaseService.withTransaction" }, "4763": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.relationship" + "sourceFileName": "../../../packages/types/dist/transaction-base/transaction-base.d.ts", + "qualifiedName": "transactionManager" }, "4764": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.serviceName" + "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", + "qualifiedName": "TaxServiceRate" }, "4765": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.primaryKeys" + "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", + "qualifiedName": "__type" }, "4766": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.isLink" + "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", + "qualifiedName": "__type.rate" }, "4767": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.linkableKeys" + "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", + "qualifiedName": "__type.name" }, "4768": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.isReadOnlyLink" + "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", + "qualifiedName": "__type.code" }, "4769": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.databaseConfig" + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "DefaultPriceType.DEFAULT" }, "4770": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/medusa/src/interfaces/price-selection-strategy.ts", + "qualifiedName": "DefaultPriceType" }, "4771": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.tableName" + "sourceFileName": "../../../packages/medusa/src/types/totals.ts", + "qualifiedName": "LineAllocationsMap" }, "4772": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.idPrefix" - }, - "4773": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.extraFields" - }, - "4774": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "sourceFileName": "../../../packages/medusa/src/types/totals.ts", "qualifiedName": "__type" }, + "4773": { + "sourceFileName": "../../../packages/medusa/src/types/totals.ts", + "qualifiedName": "__type.__index" + }, "4775": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.type" + "sourceFileName": "../../../packages/medusa/src/types/totals.ts", + "qualifiedName": "__type" }, "4776": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.defaultValue" + "sourceFileName": "../../../packages/medusa/src/types/totals.ts", + "qualifiedName": "__type.gift_card" }, "4777": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.nullable" + "sourceFileName": "../../../packages/medusa/src/types/totals.ts", + "qualifiedName": "__type.discount" }, "4778": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.options" + "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", + "qualifiedName": "ProviderTaxLine" }, "4779": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "ConfigModule" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "ModuleJoinerConfig" }, "4780": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", "qualifiedName": "__type" }, "4781": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.projectConfig" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.schema" }, "4782": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.featureFlags" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.relationships" }, "4783": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.modules" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.extends" }, "4784": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.plugins" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type" }, "4785": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.serviceName" }, "4786": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.resolve" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.fieldAlias" }, "4787": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.options" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type" }, "4788": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "MiddlewareVerb" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.path" }, "4789": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "ParserConfig" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.forwardArgumentsOnPath" }, "4790": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.relationship" }, "4791": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "__type.sizeLimit" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.serviceName" }, "4792": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "MedusaErrorHandlerFunction" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.primaryKeys" }, "4793": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.isLink" }, "4794": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.linkableKeys" }, "4795": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "error" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.isReadOnlyLink" }, "4796": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "req" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.databaseConfig" }, "4797": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "res" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type" }, "4798": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "next" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.tableName" }, "4799": { - "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", - "qualifiedName": "SubscriberContext" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.idPrefix" }, "4800": { - "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", - "qualifiedName": "SubscriberContext.subscriberId" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.extraFields" }, "4801": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "Constructor" + "qualifiedName": "__type" }, "4802": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.type" }, "4803": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.defaultValue" }, "4804": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "args" + "qualifiedName": "__type.nullable" }, "4805": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "T" + "qualifiedName": "__type.options" }, "4806": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "InnerSelector" + }, + "4807": { + "sourceFileName": "../../../packages/medusa/src/types/common.ts", + "qualifiedName": "TEntity" + }, + "4808": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "ConfigModule" + }, + "4809": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type" + }, + "4810": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.projectConfig" + }, + "4811": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.featureFlags" + }, + "4812": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.modules" + }, + "4813": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.plugins" + }, + "4814": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type" + }, + "4815": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.resolve" + }, + "4816": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.options" + }, + "4817": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "MiddlewareVerb" + }, + "4818": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "ParserConfig" + }, + "4819": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "__type" + }, + "4820": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "__type.sizeLimit" + }, + "4821": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "MedusaErrorHandlerFunction" + }, + "4822": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "__type" + }, + "4823": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "__type" + }, + "4824": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "error" + }, + "4825": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "req" + }, + "4826": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "res" + }, + "4827": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "next" + }, + "4828": { + "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "qualifiedName": "SubscriberContext" + }, + "4829": { + "sourceFileName": "../../../packages/medusa/src/types/subscribers.ts", + "qualifiedName": "SubscriberContext.subscriberId" + }, + "4830": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "Constructor" + }, + "4831": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type" + }, + "4832": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type" + }, + "4833": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "args" + }, + "4834": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "T" + }, + "4835": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO" + }, + "4836": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.id" + }, + "4837": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.title" + }, + "4838": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.sku" + }, + "4839": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.barcode" + }, + "4840": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.ean" + }, + "4841": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.upc" + }, + "4842": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.inventory_quantity" + }, + "4843": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.allow_backorder" + }, + "4844": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.manage_inventory" + }, + "4845": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.hs_code" + }, + "4846": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.origin_country" + }, + "4847": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.mid_code" + }, + "4848": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.material" + }, + "4849": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.weight" + }, + "4850": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.length" + }, + "4851": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.height" + }, + "4852": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.width" + }, + "4853": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.options" + }, + "4854": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.metadata" + }, + "4855": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.product" + }, + "4856": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.product_id" + }, + "4857": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.variant_rank" + }, + "4858": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.created_at" + }, + "4859": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.updated_at" + }, + "4860": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductVariantDTO.deleted_at" + }, + "4861": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", "qualifiedName": "Image" }, - "4809": { + "4864": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", "qualifiedName": "Image.id" }, - "4810": { + "4865": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", "qualifiedName": "Image.url" }, - "4811": { + "4866": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", "qualifiedName": "Tag" }, - "4814": { + "4869": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", "qualifiedName": "Tag.id" }, - "4815": { + "4870": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/orders/update-claim.ts", "qualifiedName": "Tag.value" }, - "4816": { + "4871": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "ProductVariantOptionReq" }, - "4819": { + "4874": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/create-product.ts", "qualifiedName": "ProductVariantOptionReq.value" }, - "4820": { + "4875": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "ProductVariantOptionReq" }, - "4823": { + "4878": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "ProductVariantOptionReq.value" }, - "4824": { + "4879": { "sourceFileName": "../../../packages/medusa/src/api/routes/admin/products/update-product.ts", "qualifiedName": "ProductVariantOptionReq.option_id" }, - "4825": { + "4880": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "StockLocationAddressDTO" }, - "4826": { + "4881": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type" }, - "4827": { + "4882": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.id" }, - "4828": { + "4883": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.address_1" }, - "4829": { + "4884": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.address_2" }, - "4830": { + "4885": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.company" }, - "4831": { + "4886": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.country_code" }, - "4832": { + "4887": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.city" }, - "4833": { + "4888": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.phone" }, - "4834": { + "4889": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.postal_code" }, - "4835": { + "4890": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.province" }, - "4836": { + "4891": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.metadata" }, - "4837": { + "4892": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.created_at" }, - "4838": { + "4893": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.updated_at" }, - "4839": { + "4894": { "sourceFileName": "../../../packages/types/dist/stock-location/common.d.ts", "qualifiedName": "__type.deleted_at" }, - "4840": { + "4895": { "sourceFileName": "../../../packages/medusa/src/types/feature-flags.ts", "qualifiedName": "FeatureFlagsResponse" }, - "4841": { + "4896": { "sourceFileName": "../../../packages/medusa/src/types/feature-flags.ts", "qualifiedName": "__type" }, - "4842": { + "4897": { "sourceFileName": "../../../packages/medusa/src/types/feature-flags.ts", "qualifiedName": "__type.key" }, - "4843": { + "4898": { "sourceFileName": "../../../packages/medusa/src/types/feature-flags.ts", "qualifiedName": "__type.value" }, - "4844": { + "4899": { "sourceFileName": "../../../packages/medusa/src/types/store.ts", "qualifiedName": "ModulesResponse" }, - "4845": { + "4900": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "ProductVariantPricing" }, - "4846": { + "4901": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "__type" }, - "4847": { + "4902": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "__type.prices" }, - "4848": { + "4903": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "__type.original_price" }, - "4849": { + "4904": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "__type.calculated_price" }, - "4850": { + "4905": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "__type.original_price_includes_tax" }, - "4851": { + "4906": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "__type.calculated_price_includes_tax" }, - "4852": { + "4907": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "__type.calculated_price_type" }, - "4853": { + "4908": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "ShippingOptionPricing" }, - "4854": { + "4909": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "__type" }, - "4855": { + "4910": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "__type.price_incl_tax" }, - "4856": { + "4911": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "__type.tax_rates" }, - "4857": { + "4912": { "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", "qualifiedName": "__type.tax_amount" }, - "4858": { + "4913": { "sourceFileName": "../../../packages/medusa/src/types/totals.ts", "qualifiedName": "GiftCardAllocation" }, - "4859": { + "4914": { "sourceFileName": "../../../packages/medusa/src/types/totals.ts", "qualifiedName": "__type" }, - "4860": { + "4915": { "sourceFileName": "../../../packages/medusa/src/types/totals.ts", "qualifiedName": "__type.amount" }, - "4861": { + "4916": { "sourceFileName": "../../../packages/medusa/src/types/totals.ts", "qualifiedName": "__type.unit_amount" }, - "4862": { + "4917": { "sourceFileName": "../../../packages/medusa/src/types/totals.ts", "qualifiedName": "DiscountAllocation" }, - "4863": { + "4918": { "sourceFileName": "../../../packages/medusa/src/types/totals.ts", "qualifiedName": "__type" }, - "4864": { + "4919": { "sourceFileName": "../../../packages/medusa/src/types/totals.ts", "qualifiedName": "__type.amount" }, - "4865": { + "4920": { "sourceFileName": "../../../packages/medusa/src/types/totals.ts", "qualifiedName": "__type.unit_amount" }, - "4866": { + "4921": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "ProviderLineItemTaxLine" }, - "4867": { + "4922": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "__type" }, - "4868": { + "4923": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "__type.rate" }, - "4869": { + "4924": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "__type.name" }, - "4870": { + "4925": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "__type.code" }, - "4871": { + "4926": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "__type.item_id" }, - "4872": { + "4927": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "__type.metadata" }, - "4873": { + "4928": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "ProviderShippingMethodTaxLine" }, - "4874": { + "4929": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "__type" }, - "4875": { + "4930": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "__type.rate" }, - "4876": { + "4931": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "__type.name" }, - "4877": { + "4932": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "__type.code" }, - "4878": { + "4933": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "__type.metadata" }, - "4879": { + "4934": { "sourceFileName": "../../../packages/medusa/src/types/tax-service.ts", "qualifiedName": "__type.shipping_method_id" }, - "4880": { + "4935": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "JoinerServiceConfig" }, - "4881": { + "4936": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "4882": { + "4937": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "4883": { + "4938": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "4884": { + "4939": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "__type" }, - "4885": { + "4940": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "__type.path" }, - "4886": { + "4941": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "4887": { + "4942": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "4888": { + "4943": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "4889": { + "4944": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "4890": { + "4945": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "__type" }, - "4891": { + "4946": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "__type.serviceName" }, - "4892": { + "4947": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "__type.relationship" }, - "4893": { + "4948": { "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "4894": { + "4949": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "4895": { + "4950": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", "qualifiedName": "__type" }, - "4896": { + "4951": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", "qualifiedName": "__type.isInternalService" }, - "4897": { + "4952": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", "qualifiedName": "__type.deleteCascade" }, - "4898": { + "4953": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "ProjectConfigOptions" }, - "4899": { + "4954": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type" }, - "4900": { + "4955": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type.redis_url" }, - "4901": { + "4956": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type.redis_prefix" }, - "4902": { + "4957": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type.redis_options" }, - "4903": { + "4958": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type.session_options" }, - "4904": { + "4959": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type.jwt_secret" }, - "4905": { + "4960": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type.cookie_secret" }, - "4906": { + "4961": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type.database_url" }, - "4907": { + "4962": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type.database_database" }, - "4908": { + "4963": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type.database_schema" }, - "4909": { + "4964": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type.database_logging" }, - "4910": { + "4965": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type.database_type" }, - "4911": { + "4966": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type.http_compression" }, - "4912": { + "4967": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", "qualifiedName": "__type.database_extra" }, - "4913": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type" - }, - "4914": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.ssl" - }, - "4915": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type" - }, - "4916": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.rejectUnauthorized" - }, - "4917": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.store_cors" - }, - "4918": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.admin_cors" - }, - "4919": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "InternalModuleDeclaration" - }, - "4920": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type" - }, - "4921": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.scope" - }, - "4922": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.resources" - }, - "4923": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.dependencies" - }, - "4924": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.definition" - }, - "4925": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.resolve" - }, - "4926": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.options" - }, - "4927": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.alias" - }, - "4928": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.main" - }, - "4929": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "ExternalModuleDeclaration" - }, - "4930": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type" - }, - "4931": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.scope" - }, - "4932": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.definition" - }, - "4933": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.server" - }, - "4934": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type" - }, - "4935": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.type" - }, - "4936": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.url" - }, - "4937": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.keepAlive" - }, - "4938": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.options" - }, - "4939": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.alias" - }, - "4940": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.main" - }, - "4941": { - "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", - "qualifiedName": "RouteVerb" - }, - "4942": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "ModulesResponse" - }, - "4943": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type" - }, - "4944": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.module" - }, - "4945": { - "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.resolution" - }, - "4946": { - "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", - "qualifiedName": "TaxedPricing" - }, - "4947": { - "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", - "qualifiedName": "__type" - }, - "4948": { - "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", - "qualifiedName": "__type.original_price_incl_tax" - }, - "4949": { - "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", - "qualifiedName": "__type.calculated_price_incl_tax" - }, - "4950": { - "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", - "qualifiedName": "__type.original_tax" - }, - "4951": { - "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", - "qualifiedName": "__type.calculated_tax" - }, - "4952": { - "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", - "qualifiedName": "__type.tax_rates" - }, - "4953": { - "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", - "qualifiedName": "JoinerServiceConfigAlias" - }, - "4954": { - "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", - "qualifiedName": "JoinerServiceConfigAlias.name" - }, - "4955": { - "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", - "qualifiedName": "JoinerServiceConfigAlias.args" - }, - "4956": { - "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", - "qualifiedName": "JoinerRelationship" - }, - "4957": { - "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", - "qualifiedName": "__type" - }, - "4958": { - "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", - "qualifiedName": "__type.alias" - }, - "4959": { - "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", - "qualifiedName": "__type.foreignKey" - }, - "4960": { - "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", - "qualifiedName": "__type.primaryKey" - }, - "4961": { - "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", - "qualifiedName": "__type.serviceName" - }, - "4962": { - "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", - "qualifiedName": "__type.isInternalService" - }, - "4963": { - "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", - "qualifiedName": "__type.inverse" - }, - "4964": { - "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", - "qualifiedName": "__type.isList" - }, - "4965": { - "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", - "qualifiedName": "__type.args" - }, - "4966": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "SessionOptions" - }, - "4967": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type" - }, "4968": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.name" + "qualifiedName": "__type" }, "4969": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.resave" + "qualifiedName": "__type.ssl" }, "4970": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.rolling" + "qualifiedName": "__type" }, "4971": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.saveUninitialized" + "qualifiedName": "__type.rejectUnauthorized" }, "4972": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.secret" + "qualifiedName": "__type.store_cors" }, "4973": { "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.ttl" + "qualifiedName": "__type.admin_cors" }, "4974": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "HttpCompressionOptions" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "InternalModuleDeclaration" }, "4975": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", "qualifiedName": "__type" }, "4976": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.enabled" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.scope" }, "4977": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.level" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.resources" }, "4978": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.memLevel" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.dependencies" }, "4979": { - "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", - "qualifiedName": "__type.threshold" + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.definition" }, "4980": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "MODULE_SCOPE.INTERNAL" + "qualifiedName": "__type.resolve" }, "4981": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "MODULE_RESOURCE_TYPE" + "qualifiedName": "__type.options" }, "4982": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "MODULE_RESOURCE_TYPE.SHARED" + "qualifiedName": "__type.alias" }, "4983": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "MODULE_RESOURCE_TYPE.ISOLATED" + "qualifiedName": "__type.main" }, "4984": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "ModuleDefinition" + "qualifiedName": "ExternalModuleDeclaration" }, "4985": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", @@ -127717,51 +132942,603 @@ }, "4986": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.key" + "qualifiedName": "__type.scope" }, "4987": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.registrationName" + "qualifiedName": "__type.definition" }, "4988": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.defaultPackage" + "qualifiedName": "__type.server" }, "4989": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.label" + "qualifiedName": "__type" }, "4990": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.canOverride" + "qualifiedName": "__type.type" }, "4991": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.isRequired" + "qualifiedName": "__type.url" }, "4992": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.isQueryable" + "qualifiedName": "__type.keepAlive" }, "4993": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.isLegacy" + "qualifiedName": "__type.options" }, "4994": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.dependencies" + "qualifiedName": "__type.alias" }, "4995": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", - "qualifiedName": "__type.defaultModuleDeclaration" + "qualifiedName": "__type.main" }, "4996": { + "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", + "qualifiedName": "RouteVerb" + }, + "4997": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionValueDTO" + }, + "4998": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionValueDTO.id" + }, + "4999": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionValueDTO.value" + }, + "5000": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionValueDTO.option" + }, + "5001": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionValueDTO.variant" + }, + "5002": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionValueDTO.metadata" + }, + "5003": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionValueDTO.deleted_at" + }, + "5004": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO" + }, + "5005": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.id" + }, + "5006": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.title" + }, + "5007": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.handle" + }, + "5008": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.subtitle" + }, + "5009": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.description" + }, + "5010": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.is_giftcard" + }, + "5011": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.status" + }, + "5012": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.thumbnail" + }, + "5013": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.width" + }, + "5014": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.weight" + }, + "5015": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.length" + }, + "5016": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.height" + }, + "5017": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.origin_country" + }, + "5018": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.hs_code" + }, + "5019": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.mid_code" + }, + "5020": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.material" + }, + "5021": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.collection" + }, + "5022": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.categories" + }, + "5023": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.type" + }, + "5024": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.tags" + }, + "5025": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.variants" + }, + "5026": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.options" + }, + "5027": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.images" + }, + "5028": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.discountable" + }, + "5029": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.external_id" + }, + "5030": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.created_at" + }, + "5031": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.updated_at" + }, + "5032": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.deleted_at" + }, + "5033": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductDTO.metadata" + }, + "5034": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "ModulesResponse" + }, + "5035": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type" + }, + "5036": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.module" + }, + "5037": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.resolution" + }, + "5038": { + "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", + "qualifiedName": "TaxedPricing" + }, + "5039": { + "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", + "qualifiedName": "__type" + }, + "5040": { + "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", + "qualifiedName": "__type.original_price_incl_tax" + }, + "5041": { + "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", + "qualifiedName": "__type.calculated_price_incl_tax" + }, + "5042": { + "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", + "qualifiedName": "__type.original_tax" + }, + "5043": { + "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", + "qualifiedName": "__type.calculated_tax" + }, + "5044": { + "sourceFileName": "../../../packages/medusa/src/types/pricing.ts", + "qualifiedName": "__type.tax_rates" + }, + "5045": { + "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", + "qualifiedName": "JoinerServiceConfigAlias" + }, + "5046": { + "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", + "qualifiedName": "JoinerServiceConfigAlias.name" + }, + "5047": { + "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", + "qualifiedName": "JoinerServiceConfigAlias.args" + }, + "5048": { + "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", + "qualifiedName": "JoinerRelationship" + }, + "5049": { + "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", + "qualifiedName": "__type" + }, + "5050": { + "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", + "qualifiedName": "__type.alias" + }, + "5051": { + "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", + "qualifiedName": "__type.foreignKey" + }, + "5052": { + "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", + "qualifiedName": "__type.primaryKey" + }, + "5053": { + "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", + "qualifiedName": "__type.serviceName" + }, + "5054": { + "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", + "qualifiedName": "__type.isInternalService" + }, + "5055": { + "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", + "qualifiedName": "__type.inverse" + }, + "5056": { + "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", + "qualifiedName": "__type.isList" + }, + "5057": { + "sourceFileName": "../../../packages/types/dist/joiner/index.d.ts", + "qualifiedName": "__type.args" + }, + "5058": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "SessionOptions" + }, + "5059": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type" + }, + "5060": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.name" + }, + "5061": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.resave" + }, + "5062": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.rolling" + }, + "5063": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.saveUninitialized" + }, + "5064": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.secret" + }, + "5065": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.ttl" + }, + "5066": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "HttpCompressionOptions" + }, + "5067": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type" + }, + "5068": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.enabled" + }, + "5069": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.level" + }, + "5070": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.memLevel" + }, + "5071": { + "sourceFileName": "../../../packages/types/dist/common/config-module.d.ts", + "qualifiedName": "__type.threshold" + }, + "5072": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "MODULE_SCOPE.INTERNAL" + }, + "5073": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "MODULE_RESOURCE_TYPE" + }, + "5074": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "MODULE_RESOURCE_TYPE.SHARED" + }, + "5075": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "MODULE_RESOURCE_TYPE.ISOLATED" + }, + "5076": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "ModuleDefinition" + }, + "5077": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type" + }, + "5078": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.key" + }, + "5079": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.registrationName" + }, + "5080": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.defaultPackage" + }, + "5081": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.label" + }, + "5082": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.canOverride" + }, + "5083": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.isRequired" + }, + "5084": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.isQueryable" + }, + "5085": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.isLegacy" + }, + "5086": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.dependencies" + }, + "5087": { + "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", + "qualifiedName": "__type.defaultModuleDeclaration" + }, + "5088": { "sourceFileName": "../../../packages/types/dist/modules-sdk/index.d.ts", "qualifiedName": "MODULE_SCOPE.EXTERNAL" }, - "4997": { + "5089": { "sourceFileName": "../../../packages/medusa/src/loaders/helpers/routing/types.ts", "qualifiedName": "HTTP_METHODS" + }, + "5090": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionDTO" + }, + "5091": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionDTO.id" + }, + "5092": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionDTO.title" + }, + "5093": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionDTO.product" + }, + "5094": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionDTO.values" + }, + "5095": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionDTO.metadata" + }, + "5096": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductOptionDTO.deleted_at" + }, + "5097": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductStatus" + }, + "5098": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductStatus.DRAFT" + }, + "5099": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductStatus.PROPOSED" + }, + "5100": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductStatus.PUBLISHED" + }, + "5101": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductStatus.REJECTED" + }, + "5102": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCollectionDTO" + }, + "5103": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCollectionDTO.id" + }, + "5104": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCollectionDTO.title" + }, + "5105": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCollectionDTO.handle" + }, + "5106": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCollectionDTO.metadata" + }, + "5107": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCollectionDTO.deleted_at" + }, + "5108": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCollectionDTO.products" + }, + "5109": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCategoryDTO" + }, + "5110": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCategoryDTO.id" + }, + "5111": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCategoryDTO.name" + }, + "5112": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCategoryDTO.description" + }, + "5113": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCategoryDTO.handle" + }, + "5114": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCategoryDTO.is_active" + }, + "5115": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCategoryDTO.is_internal" + }, + "5116": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCategoryDTO.rank" + }, + "5117": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCategoryDTO.parent_category" + }, + "5118": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCategoryDTO.category_children" + }, + "5119": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCategoryDTO.created_at" + }, + "5120": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductCategoryDTO.updated_at" + }, + "5121": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductTypeDTO" + }, + "5122": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductTypeDTO.id" + }, + "5123": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductTypeDTO.value" + }, + "5124": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductTypeDTO.metadata" + }, + "5125": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductTypeDTO.deleted_at" + }, + "5126": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductTagDTO" + }, + "5127": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductTagDTO.id" + }, + "5128": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductTagDTO.value" + }, + "5129": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductTagDTO.metadata" + }, + "5130": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductTagDTO.products" + }, + "5131": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductImageDTO" + }, + "5132": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductImageDTO.id" + }, + "5133": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductImageDTO.url" + }, + "5134": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductImageDTO.metadata" + }, + "5135": { + "sourceFileName": "../../../packages/types/dist/product/common.d.ts", + "qualifiedName": "ProductImageDTO.deleted_at" } } } \ No newline at end of file diff --git a/docs-util/typedoc-json-output/fulfillment.json b/docs-util/typedoc-json-output/fulfillment.json index c9ff94fdd3..d23f0a6b0b 100644 --- a/docs-util/typedoc-json-output/fulfillment.json +++ b/docs-util/typedoc-json-output/fulfillment.json @@ -69,7 +69,7 @@ }, { "kind": "code", - "text": "```ts title=src/services/my-fulfillment.ts\nimport { AbstractFulfillmentService } from \"@medusajs/medusa\"\n\nclass MyFulfillmentService extends AbstractFulfillmentService {\n // methods here...\n}\n```" + "text": "```ts title=src/services/my-fulfillment.ts\nimport { AbstractFulfillmentService } from \"@medusajs/medusa\"\n\nclass MyFulfillmentService extends AbstractFulfillmentService {\n // methods here...\n}\n\nexport default MyFulfillmentService\n```" }, { "kind": "text", @@ -105,7 +105,7 @@ }, { "kind": "text", - "text": " property in the class is used when the fulfillment provider is created in the database.\n\nThe value of this property is also used to reference the fulfillment provider throughout Medusa. For example, it is used to [add a fulfillment provider](https://docs.medusajs.com/api/admin#regions_postregionsregionfulfillmentproviders) to a region.\n\n" + "text": " property in the fulfillment provider service is used when the fulfillment provider is added to the database.\n\nThe value of this property is also used to reference the fulfillment provider throughout Medusa. For example, it is used to [add a fulfillment provider](https://docs.medusajs.com/api/admin#regions_postregionsregionfulfillmentproviders) to a region.\n\n" }, { "kind": "code", @@ -154,7 +154,7 @@ "content": [ { "kind": "code", - "text": "```ts\nclass MyFulfillmentService extends AbstractFulfillmentService {\n static identifier = \"my-fulfillment\"\n\n // ...\n}\n```" + "text": "```ts\nclass MyFulfillmentService extends AbstractFulfillmentService {\n // ...\n constructor(container, options) {\n super(container)\n // you can access options here\n\n // you can also initialize a client that\n // communicates with a third-party service.\n this.client = new Client(options)\n }\n // ...\n}\n```" } ] } @@ -2204,7 +2204,7 @@ }, { "kind": "code", - "text": "```ts title=src/services/my-fulfillment.ts\nimport { AbstractFulfillmentService } from \"@medusajs/medusa\"\n\nclass MyFulfillmentService extends AbstractFulfillmentService {\n // methods here...\n}\n```" + "text": "```ts title=src/services/my-fulfillment.ts\nimport { AbstractFulfillmentService } from \"@medusajs/medusa\"\n\nclass MyFulfillmentService extends AbstractFulfillmentService {\n // methods here...\n}\n\nexport default MyFulfillmentService\n```" }, { "kind": "text", @@ -2240,7 +2240,7 @@ }, { "kind": "text", - "text": " property in the class is used when the fulfillment provider is created in the database.\n\nThe value of this property is also used to reference the fulfillment provider throughout Medusa. For example, it is used to [add a fulfillment provider](https://docs.medusajs.com/api/admin#regions_postregionsregionfulfillmentproviders) to a region.\n\n" + "text": " property in the fulfillment provider service is used when the fulfillment provider is added to the database.\n\nThe value of this property is also used to reference the fulfillment provider throughout Medusa. For example, it is used to [add a fulfillment provider](https://docs.medusajs.com/api/admin#regions_postregionsregionfulfillmentproviders) to a region.\n\n" }, { "kind": "code", diff --git a/docs-util/typedoc-json-output/payment.json b/docs-util/typedoc-json-output/payment.json new file mode 100644 index 0000000000..b73582234d --- /dev/null +++ b/docs-util/typedoc-json-output/payment.json @@ -0,0 +1,4710 @@ +{ + "id": 0, + "name": "payment", + "variant": "project", + "kind": 1, + "flags": {}, + "children": [ + { + "id": 64, + "name": "AbstractPaymentProcessor", + "variant": "declaration", + "kind": 128, + "flags": { + "isAbstract": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "## Overview\n\nA Payment Processor is the payment method used to authorize, capture, and refund payment, among other actions. An example of a Payment Processor is Stripe.\n\nBy default, Medusa has a " + }, + { + "kind": "code", + "text": "`manual`" + }, + { + "kind": "text", + "text": " payment provider that has minimal implementation. It can be synonymous with a Cash on Delivery payment method. It allows\nstore operators to manage the payment themselves but still keep track of its different stages on Medusa.\n\nA payment processor is a service that extends the " + }, + { + "kind": "code", + "text": "`AbstractPaymentProcessor`" + }, + { + "kind": "text", + "text": " and implements its methods. So, adding a Payment Processor is as simple as\ncreating a service file in " + }, + { + "kind": "code", + "text": "`src/services`" + }, + { + "kind": "text", + "text": ". The file's name is the payment processor's class name as a slug and without the word " + }, + { + "kind": "code", + "text": "`Service`" + }, + { + "kind": "text", + "text": ".\nFor example, if you're creating a " + }, + { + "kind": "code", + "text": "`MyPaymentService`" + }, + { + "kind": "text", + "text": " class, the file name is " + }, + { + "kind": "code", + "text": "`src/services/my-payment.ts`" + }, + { + "kind": "text", + "text": ".\n\n" + }, + { + "kind": "code", + "text": "```ts\nimport { AbstractPaymentProcessor } from \"@medusajs/medusa\";\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // methods here...\n}\n\nexport default MyPaymentService\n```" + }, + { + "kind": "text", + "text": "\n\nThe methods of the payment processor are used at different points in the Checkout flow as well as when processing an order after it’s placed.\n\n![Checkout Flow - Payment](https://res.cloudinary.com/dza7lstvk/image/upload/v1680177820/Medusa%20Docs/Diagrams/checkout-payment_cy9efp.jpg)\n\n---\n\n## Identifier Property\n\nThe " + }, + { + "kind": "code", + "text": "`PaymentProvider`" + }, + { + "kind": "text", + "text": " entity has 2 properties: " + }, + { + "kind": "code", + "text": "`id`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`is_installed`" + }, + { + "kind": "text", + "text": ". The " + }, + { + "kind": "code", + "text": "`identifier`" + }, + { + "kind": "text", + "text": " property in the payment processor service is used when the payment processor is added to the database.\n\nThe value of this property is also used to reference the payment processor throughout Medusa.\nFor example, it is used to [add a payment processor](https://docs.medusajs.com/api/admin#regions_postregionsregionpaymentproviders) to a region.\n\n" + }, + { + "kind": "code", + "text": "```ts\nclass MyPaymentService extends AbstractPaymentProcessor {\n static identifier = \"my-payment\"\n // ...\n}\n```" + }, + { + "kind": "text", + "text": "\n\n---\n\n## PaymentProcessorError\n\nBefore diving into the methods of the Payment Processor, you'll notice that part of the expected return signature of these method includes " + }, + { + "kind": "code", + "text": "`PaymentProcessorError`" + }, + { + "kind": "text", + "text": ".\n\n" + }, + { + "kind": "code", + "text": "```ts\ninterface PaymentProcessorError {\n error: string\n code?: string\n detail?: any\n}\n```" + }, + { + "kind": "text", + "text": "\n\nWhile implementing the Payment Processor's methods, if you need to inform the Medusa core that an error occurred at a certain stage,\nreturn an object having the attributes defined in the " + }, + { + "kind": "code", + "text": "`PaymentProcessorError`" + }, + { + "kind": "text", + "text": " interface.\n\nFor example, the Stripe payment processor has the following method to create the error object, which is used within other methods:\n\n" + }, + { + "kind": "code", + "text": "```ts\nabstract class StripeBase extends AbstractPaymentProcessor {\n // ...\n protected buildError(\n message: string,\n e: Stripe.StripeRawError | PaymentProcessorError | Error\n ): PaymentProcessorError {\n return {\n error: message,\n code: \"code\" in e ? e.code : \"\",\n detail: isPaymentProcessorError(e)\n ? `${e.error}${EOL}${e.detail ?? \"\"}`\n : \"detail\" in e\n ? e.detail\n : e.message ?? \"\",\n }\n }\n\n // used in other methods\n async retrievePayment(\n paymentSessionData: Record\n ): Promise<\n PaymentProcessorError |\n PaymentProcessorSessionResponse[\"session_data\"]\n > {\n try {\n // ...\n } catch (e) {\n return this.buildError(\n \"An error occurred in retrievePayment\",\n e\n )\n }\n }\n}\n```" + }, + { + "kind": "text", + "text": "\n\n---" + } + ] + }, + "children": [ + { + "id": 66, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": { + "isProtected": true + }, + "signatures": [ + { + "id": 67, + "name": "new AbstractPaymentProcessor", + "variant": "signature", + "kind": 16384, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "You can use the " + }, + { + "kind": "code", + "text": "`constructor`" + }, + { + "kind": "text", + "text": " of your Payment Processor to have access to different services in Medusa through [dependency injection](https://docs.medusajs.com/development/fundamentals/dependency-injection).\n\nYou can also use the constructor to initialize your integration with the third-party provider. For example, if you use a client to connect to the third-party provider’s APIs,\nyou can initialize it in the constructor and use it in other methods in the service.\n\nAdditionally, if you’re creating your Payment Processor as an external plugin to be installed on any Medusa backend and you want to access the options added for the plugin,\nyou can access it in the constructor. The options are passed as a second parameter." + } + ], + "blockTags": [ + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n constructor(container, options) {\n super(container)\n // you can access options here\n\n // you can also initialize a client that\n // communicates with a third-party service.\n this.client = new Client(options)\n }\n // ...\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 68, + "name": "container", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An instance of " + }, + { + "kind": "code", + "text": "`MedusaContainer`" + }, + { + "kind": "text", + "text": " that allows you to access other resources, such as services, in your Medusa backend through [dependency injection](https://docs.medusajs.com/development/fundamentals/dependency-injection)" + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", + "qualifiedName": "MedusaContainer" + }, + "name": "MedusaContainer", + "package": "medusa-core-utils" + } + }, + { + "id": 69, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "If this fulfillment provider is created in a plugin, the plugin's options are passed in this parameter." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": 64, + "name": "AbstractPaymentProcessor", + "package": "@medusajs/medusa" + } + } + ] + }, + { + "id": 71, + "name": "config", + "variant": "declaration", + "kind": 1024, + "flags": { + "isProtected": true, + "isOptional": true, + "isReadonly": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "If this fulfillment provider is created in a plugin, the plugin's options are passed in this parameter." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 70, + "name": "container", + "variant": "declaration", + "kind": 1024, + "flags": { + "isProtected": true, + "isReadonly": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An instance of " + }, + { + "kind": "code", + "text": "`MedusaContainer`" + }, + { + "kind": "text", + "text": " that allows you to access other resources, such as services, in your Medusa backend through [dependency injection](https://docs.medusajs.com/development/fundamentals/dependency-injection)" + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa-core-utils/dist/medusa-container.d.ts", + "qualifiedName": "MedusaContainer" + }, + "name": "MedusaContainer", + "package": "medusa-core-utils" + } + }, + { + "id": 65, + "name": "identifier", + "variant": "declaration", + "kind": 1024, + "flags": { + "isPublic": true, + "isStatic": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`PaymentProvider`" + }, + { + "kind": "text", + "text": " entity has 2 properties: " + }, + { + "kind": "code", + "text": "`id`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`is_installed`" + }, + { + "kind": "text", + "text": ". The " + }, + { + "kind": "code", + "text": "`identifier`" + }, + { + "kind": "text", + "text": " property in the payment processor service is used when the payment processor is added to the database.\n\nThe value of this property is also used to reference the payment processor throughout Medusa.\nFor example, it is used to [add a payment processor](https://docs.medusajs.com/api/admin#regions_postregionsregionpaymentproviders) to a region.\n\n" + }, + { + "kind": "code", + "text": "```ts\nclass MyPaymentService extends AbstractPaymentProcessor {\n static identifier = \"my-payment\"\n // ...\n}\n```" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 77, + "name": "authorizePayment", + "variant": "declaration", + "kind": 2048, + "flags": { + "isAbstract": true + }, + "signatures": [ + { + "id": 78, + "name": "authorizePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to authorize payment using the Payment Session of an order. This is called when the\n[cart is completed](https://docs.medusajs.com/api/store#carts_postcartscartcomplete) and before the order is created.\n\nThis method is also used for authorizing payments of a swap of an order and when authorizing sessions in a payment collection.\nYou can interact with a third-party provider and perform any actions necessary to authorize the payment.\n\nThe payment authorization might require additional action from the customer before it is declared authorized. Once that additional action is performed,\nthe " + }, + { + "kind": "code", + "text": "`authorizePayment`" + }, + { + "kind": "text", + "text": " method will be called again to validate that the payment is now fully authorized. So, make sure to implement it for this case as well, if necessary.\n\nOnce the payment is authorized successfully and the Payment Session status is set to " + }, + { + "kind": "code", + "text": "`authorized`" + }, + { + "kind": "text", + "text": ", the associated order or swap can then be placed or created.\nIf the payment authorization fails, then an error will be thrown and the order will not be created.\n\n:::note\n\nThe payment authorization status is determined using the " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "getPaymentStatus", + "target": 57, + "tsLinkText": "" + }, + { + "kind": "text", + "text": " method. If the status is " + }, + { + "kind": "code", + "text": "`requires_more`" + }, + { + "kind": "text", + "text": ", then it means additional actions are required\nfrom the customer. If you try to create the order with a status that isn't " + }, + { + "kind": "code", + "text": "`authorized`" + }, + { + "kind": "text", + "text": ", the process will fail.\n\n:::" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The authorization details or an error object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n PaymentSessionStatus,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async authorizePayment(\n paymentSessionData: Record,\n context: Record\n ): Promise<\n PaymentProcessorError |\n {\n status: PaymentSessionStatus;\n data: Record;\n }\n > {\n try {\n await this.client.authorize(paymentSessionData.id)\n\n return {\n status: PaymentSessionStatus.AUTHORIZED,\n data: {\n id: paymentSessionData.id\n }\n }\n } catch (e) {\n return {\n error: e.message\n }\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 79, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the payment session." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 80, + "name": "context", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The context of the authorization. It may include some of the following fields:\n\n- " + }, + { + "kind": "code", + "text": "`ip`" + }, + { + "kind": "text", + "text": ": The customer’s IP.\n- " + }, + { + "kind": "code", + "text": "`idempotency_key`" + }, + { + "kind": "text", + "text": ": The [Idempotency Key](https://docs.medusajs.com/modules/carts-and-checkout/payment#idempotency-key) that is associated with the current cart. It is useful when retrying payments, retrying checkout at a failed point, or for payments that require additional actions from the customer.\n- " + }, + { + "kind": "code", + "text": "`cart_id`" + }, + { + "kind": "text", + "text": ": The ID of a cart. This is only during operations like placing an order or creating a swap." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + }, + { + "type": "reflection", + "declaration": { + "id": 81, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 83, + "name": "data", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 82, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa/src/models/payment-session.ts", + "qualifiedName": "PaymentSessionStatus" + }, + "name": "PaymentSessionStatus", + "package": "@medusajs/medusa" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 83, + 82 + ] + } + ] + } + } + ] + } + ], + "name": "Promise", + "package": "typescript" + }, + "implementationOf": { + "type": "reference", + "target": 39, + "name": "PaymentProcessor.authorizePayment" + } + } + ], + "implementationOf": { + "type": "reference", + "target": 38, + "name": "PaymentProcessor.authorizePayment" + } + }, + { + "id": 84, + "name": "cancelPayment", + "variant": "declaration", + "kind": 2048, + "flags": { + "isAbstract": true + }, + "signatures": [ + { + "id": 85, + "name": "cancelPayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to cancel an order’s payment. This method is typically triggered by one of the following situations:\n\n1. Before an order is placed and after the payment is authorized, an inventory check is done on products to ensure that products are still available for purchase. If the inventory check fails for any of the products, the payment is canceled.\n2. If the store operator cancels the order from the admin.\n3. When the payment of an order's swap is canceled.\n\nYou can utilize this method to interact with the third-party provider and perform any actions necessary to cancel the payment." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or a value that's stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async cancelPayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n const cancelData = this.client.cancel(paymentId)\n\n return {\n id: paymentId,\n ...cancelData\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 86, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + }, + "implementationOf": { + "type": "reference", + "target": 55, + "name": "PaymentProcessor.cancelPayment" + } + } + ], + "implementationOf": { + "type": "reference", + "target": 54, + "name": "PaymentProcessor.cancelPayment" + } + }, + { + "id": 74, + "name": "capturePayment", + "variant": "declaration", + "kind": 2048, + "flags": { + "isAbstract": true + }, + "signatures": [ + { + "id": 75, + "name": "capturePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to capture the payment amount of an order. This is typically triggered manually by the store operator from the admin.\n\nThis method is also used for capturing payments of a swap of an order, or when a request is sent to the [Capture Payment API Route](https://docs.medusajs.com/api/admin#payments_postpaymentspaymentcapture).\n\nYou can utilize this method to interact with the third-party provider and perform any actions necessary to capture the payment." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or a value that's stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async capturePayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n const captureData = this.client.catch(paymentId)\n\n return {\n id: paymentId,\n ...captureData\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 76, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment for its first parameter." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + }, + "implementationOf": { + "type": "reference", + "target": 46, + "name": "PaymentProcessor.capturePayment" + } + } + ], + "implementationOf": { + "type": "reference", + "target": 45, + "name": "PaymentProcessor.capturePayment" + } + }, + { + "id": 90, + "name": "deletePayment", + "variant": "declaration", + "kind": 2048, + "flags": { + "isAbstract": true + }, + "signatures": [ + { + "id": 91, + "name": "deletePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to perform any actions necessary before a Payment Session is deleted. The Payment Session is deleted in one of the following cases:\n\n1. When a request is sent to [delete the Payment Session](https://docs.medusajs.com/api/store#carts_deletecartscartpaymentsessionssession).\n2. When the [Payment Session is refreshed](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsessionssession). The Payment Session is deleted so that a newer one is initialized instead.\n3. When the Payment Processor is no longer available. This generally happens when the store operator removes it from the available Payment Processor in the admin.\n4. When the region of the store is changed based on the cart information and the Payment Processor is not available in the new region." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or an empty object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async deletePayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n // assuming client is an initialized client\n // communicating with a third-party service.\n this.client.delete(paymentId)\n\n return {}\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 92, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment Session." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + }, + "implementationOf": { + "type": "reference", + "target": 49, + "name": "PaymentProcessor.deletePayment" + } + } + ], + "implementationOf": { + "type": "reference", + "target": 48, + "name": "PaymentProcessor.deletePayment" + } + }, + { + "id": 93, + "name": "getPaymentStatus", + "variant": "declaration", + "kind": 2048, + "flags": { + "isAbstract": true + }, + "signatures": [ + { + "id": 94, + "name": "getPaymentStatus", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to get the status of a Payment or a Payment Session. Its main usage is within the place order and create swap flows.\nIf the status returned is not " + }, + { + "kind": "code", + "text": "`authorized`" + }, + { + "kind": "text", + "text": " within these flows, then the payment is considered failed and an error will be thrown, stopping the flow from completion." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The status of the Payment or Payment Session." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentSessionStatus\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async getPaymentStatus(\n paymentSessionData: Record\n ): Promise {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n return await this.client.getStatus(paymentId) as PaymentSessionStatus\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 95, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a Payment as a parameter. You can use this data to interact with the third-party provider to check the status of the payment if necessary." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa/src/models/payment-session.ts", + "qualifiedName": "PaymentSessionStatus" + }, + "name": "PaymentSessionStatus", + "package": "@medusajs/medusa" + } + ], + "name": "Promise", + "package": "typescript" + }, + "implementationOf": { + "type": "reference", + "target": 58, + "name": "PaymentProcessor.getPaymentStatus" + } + } + ], + "implementationOf": { + "type": "reference", + "target": 57, + "name": "PaymentProcessor.getPaymentStatus" + } + }, + { + "id": 87, + "name": "initiatePayment", + "variant": "declaration", + "kind": 2048, + "flags": { + "isAbstract": true + }, + "signatures": [ + { + "id": 88, + "name": "initiatePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is called either if a region has only one payment provider enabled or when [a Payment Session is selected](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsession),\nwhich occurs when the customer selects their preferred payment method during checkout.\n\nIt is used to allow you to make any necessary calls to the third-party provider to initialize the payment. For example, in Stripe this method is used to create a Payment Intent for the customer." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either the payment's data or an error object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentContext,\n PaymentSessionResponse,\n // ...\n} from \"@medusajs/medusa\"\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async initiatePayment(\n context: PaymentProcessorContext\n ): Promise<\n PaymentProcessorError | PaymentProcessorSessionResponse\n > {\n // assuming client is an initialized client\n // communicating with a third-party service.\n const clientPayment = await this.client.initiate(context)\n\n return {\n session_data: {\n id: clientPayment.id\n },\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 89, + "name": "context", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The context of the payment." + } + ] + }, + "type": { + "type": "reference", + "target": 7, + "name": "PaymentProcessorContext", + "package": "@medusajs/medusa" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + }, + { + "type": "reference", + "target": 16, + "name": "PaymentProcessorSessionResponse", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + }, + "implementationOf": { + "type": "reference", + "target": 29, + "name": "PaymentProcessor.initiatePayment" + } + } + ], + "implementationOf": { + "type": "reference", + "target": 28, + "name": "PaymentProcessor.initiatePayment" + } + }, + { + "id": 96, + "name": "refundPayment", + "variant": "declaration", + "kind": 2048, + "flags": { + "isAbstract": true + }, + "signatures": [ + { + "id": 97, + "name": "refundPayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to refund an order’s payment. This is typically triggered manually by the store operator from the admin. The refund amount might be the total order amount or part of it.\n\nThis method is also used for refunding payments of a swap or a claim of an order, or when a request is sent to the [Refund Payment API Route](https://docs.medusajs.com/api/admin#payments_postpaymentspaymentrefunds).\n\nYou can utilize this method to interact with the third-party provider and perform any actions necessary to refund the payment." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or a value that's stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async refundPayment(\n paymentSessionData: Record,\n refundAmount: number\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n const refundData = this.client.refund(paymentId, refundAmount)\n\n return {\n id: paymentId,\n ...refundData\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 98, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a Payment." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 99, + "name": "refundAmount", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "the amount to refund." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + }, + "implementationOf": { + "type": "reference", + "target": 35, + "name": "PaymentProcessor.refundPayment" + } + } + ], + "implementationOf": { + "type": "reference", + "target": 34, + "name": "PaymentProcessor.refundPayment" + } + }, + { + "id": 100, + "name": "retrievePayment", + "variant": "declaration", + "kind": 2048, + "flags": { + "isAbstract": true + }, + "signatures": [ + { + "id": 101, + "name": "retrievePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to provide a uniform way of retrieving the payment information from the third-party provider.\nFor example, in Stripe’s Payment Processor this method is used to retrieve the payment intent details from Stripe." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The payment's data, typically retrieved from a third-party provider." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async retrievePayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n return await this.client.retrieve(paymentId)\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 102, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a Payment Session. Make sure to store in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field any necessary data that would allow you to retrieve the payment data from the third-party provider." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + }, + "implementationOf": { + "type": "reference", + "target": 52, + "name": "PaymentProcessor.retrievePayment" + } + } + ], + "implementationOf": { + "type": "reference", + "target": 51, + "name": "PaymentProcessor.retrievePayment" + } + }, + { + "id": 103, + "name": "updatePayment", + "variant": "declaration", + "kind": 2048, + "flags": { + "isAbstract": true + }, + "signatures": [ + { + "id": 104, + "name": "updatePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to update the payment session when the payment amount changes. It's called whenever the cart or any of its related data is updated.\nFor example, when a [line item is added to the cart](https://docs.medusajs.com/api/store#carts_postcartscartlineitems) or when a\n[shipping method is selected](https://docs.medusajs.com/api/store#carts_postcartscartshippingmethod)." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either the payment's data or an error object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorContext,\n PaymentProcessorError,\n PaymentProcessorSessionResponse,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async updatePayment(\n context: PaymentProcessorContext\n ): Promise<\n void |\n PaymentProcessorError |\n PaymentProcessorSessionResponse\n > {\n // assuming client is an initialized client\n // communicating with a third-party service.\n const paymentId = context.paymentSessionData.id\n\n await this.client.update(paymentId, context)\n\n return {\n session_data: context.paymentSessionData\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 105, + "name": "context", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The context of the payment." + } + ] + }, + "type": { + "type": "reference", + "target": 7, + "name": "PaymentProcessorContext", + "package": "@medusajs/medusa" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + }, + { + "type": "reference", + "target": 16, + "name": "PaymentProcessorSessionResponse", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + }, + "implementationOf": { + "type": "reference", + "target": 32, + "name": "PaymentProcessor.updatePayment" + } + } + ], + "implementationOf": { + "type": "reference", + "target": 31, + "name": "PaymentProcessor.updatePayment" + } + }, + { + "id": 106, + "name": "updatePaymentData", + "variant": "declaration", + "kind": 2048, + "flags": { + "isAbstract": true + }, + "signatures": [ + { + "id": 107, + "name": "updatePaymentData", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to update the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a payment session. It's called when a request is sent to the\n[Update Payment Session API Route](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsessionupdate), or when the " + }, + { + "kind": "code", + "text": "`CartService`" + }, + { + "kind": "text", + "text": "'s " + }, + { + "kind": "code", + "text": "`updatePaymentSession`" + }, + { + "kind": "text", + "text": " is used.\n\nThis method can also be used to update the data in the third-party payment provider, if necessary." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "the data to store in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the payment session.\nYou can keep the data as-is, or make changes to it by communicating with the third-party provider." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n PaymentProviderService,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n protected paymentProviderService: PaymentProviderService\n // ...\n constructor(container, options) {\n super(container)\n this.paymentProviderService = container.paymentProviderService\n // ...\n }\n // ...\n async updatePaymentData(\n sessionId: string,\n data: Record\n ): Promise<\n Record |\n PaymentProcessorError\n > {\n const paymentSession = await this.paymentProviderService.retrieveSession(sessionId)\n // assuming client is an initialized client\n // communicating with a third-party service.\n const clientPayment = await this.client.update(paymentSession.data.id, data)\n\n return {\n id: clientPayment.id\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 108, + "name": "sessionId", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the payment session." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 109, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The data to be updated in the payment session." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + }, + "implementationOf": { + "type": "reference", + "target": 61, + "name": "PaymentProcessor.updatePaymentData" + } + } + ], + "implementationOf": { + "type": "reference", + "target": 60, + "name": "PaymentProcessor.updatePaymentData" + } + } + ], + "groups": [ + { + "title": "Constructors", + "children": [ + 66 + ] + }, + { + "title": "Properties", + "children": [ + 71, + 70, + 65 + ] + }, + { + "title": "Methods", + "children": [ + 77, + 84, + 74, + 90, + 93, + 87, + 96, + 100, + 103, + 106 + ] + } + ], + "implementedTypes": [ + { + "type": "reference", + "target": 25, + "name": "PaymentProcessor", + "package": "@medusajs/medusa" + } + ] + }, + { + "id": 25, + "name": "PaymentProcessor", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "## Overview\n\nA Payment Processor is the payment method used to authorize, capture, and refund payment, among other actions. An example of a Payment Processor is Stripe.\n\nBy default, Medusa has a " + }, + { + "kind": "code", + "text": "`manual`" + }, + { + "kind": "text", + "text": " payment provider that has minimal implementation. It can be synonymous with a Cash on Delivery payment method. It allows\nstore operators to manage the payment themselves but still keep track of its different stages on Medusa.\n\nA payment processor is a service that extends the " + }, + { + "kind": "code", + "text": "`AbstractPaymentProcessor`" + }, + { + "kind": "text", + "text": " and implements its methods. So, adding a Payment Processor is as simple as\ncreating a service file in " + }, + { + "kind": "code", + "text": "`src/services`" + }, + { + "kind": "text", + "text": ". The file's name is the payment processor's class name as a slug and without the word " + }, + { + "kind": "code", + "text": "`Service`" + }, + { + "kind": "text", + "text": ".\nFor example, if you're creating a " + }, + { + "kind": "code", + "text": "`MyPaymentService`" + }, + { + "kind": "text", + "text": " class, the file name is " + }, + { + "kind": "code", + "text": "`src/services/my-payment.ts`" + }, + { + "kind": "text", + "text": ".\n\n" + }, + { + "kind": "code", + "text": "```ts\nimport { AbstractPaymentProcessor } from \"@medusajs/medusa\";\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // methods here...\n}\n\nexport default MyPaymentService\n```" + }, + { + "kind": "text", + "text": "\n\nThe methods of the payment processor are used at different points in the Checkout flow as well as when processing an order after it’s placed.\n\n![Checkout Flow - Payment](https://res.cloudinary.com/dza7lstvk/image/upload/v1680177820/Medusa%20Docs/Diagrams/checkout-payment_cy9efp.jpg)\n\n---\n\n## Identifier Property\n\nThe " + }, + { + "kind": "code", + "text": "`PaymentProvider`" + }, + { + "kind": "text", + "text": " entity has 2 properties: " + }, + { + "kind": "code", + "text": "`id`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`is_installed`" + }, + { + "kind": "text", + "text": ". The " + }, + { + "kind": "code", + "text": "`identifier`" + }, + { + "kind": "text", + "text": " property in the payment processor service is used when the payment processor is added to the database.\n\nThe value of this property is also used to reference the payment processor throughout Medusa.\nFor example, it is used to [add a payment processor](https://docs.medusajs.com/api/admin#regions_postregionsregionpaymentproviders) to a region.\n\n" + }, + { + "kind": "code", + "text": "```ts\nclass MyPaymentService extends AbstractPaymentProcessor {\n static identifier = \"my-payment\"\n // ...\n}\n```" + }, + { + "kind": "text", + "text": "\n\n---\n\n## PaymentProcessorError\n\nBefore diving into the methods of the Payment Processor, you'll notice that part of the expected return signature of these method includes " + }, + { + "kind": "code", + "text": "`PaymentProcessorError`" + }, + { + "kind": "text", + "text": ".\n\n" + }, + { + "kind": "code", + "text": "```ts\ninterface PaymentProcessorError {\n error: string\n code?: string\n detail?: any\n}\n```" + }, + { + "kind": "text", + "text": "\n\nWhile implementing the Payment Processor's methods, if you need to inform the Medusa core that an error occurred at a certain stage,\nreturn an object having the attributes defined in the " + }, + { + "kind": "code", + "text": "`PaymentProcessorError`" + }, + { + "kind": "text", + "text": " interface.\n\nFor example, the Stripe payment processor has the following method to create the error object, which is used within other methods:\n\n" + }, + { + "kind": "code", + "text": "```ts\nabstract class StripeBase extends AbstractPaymentProcessor {\n // ...\n protected buildError(\n message: string,\n e: Stripe.StripeRawError | PaymentProcessorError | Error\n ): PaymentProcessorError {\n return {\n error: message,\n code: \"code\" in e ? e.code : \"\",\n detail: isPaymentProcessorError(e)\n ? `${e.error}${EOL}${e.detail ?? \"\"}`\n : \"detail\" in e\n ? e.detail\n : e.message ?? \"\",\n }\n }\n\n // used in other methods\n async retrievePayment(\n paymentSessionData: Record\n ): Promise<\n PaymentProcessorError |\n PaymentProcessorSessionResponse[\"session_data\"]\n > {\n try {\n // ...\n } catch (e) {\n return this.buildError(\n \"An error occurred in retrievePayment\",\n e\n )\n }\n }\n}\n```" + }, + { + "kind": "text", + "text": "\n\n---" + } + ] + }, + "children": [ + { + "id": 38, + "name": "authorizePayment", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 39, + "name": "authorizePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to authorize payment using the Payment Session of an order. This is called when the\n[cart is completed](https://docs.medusajs.com/api/store#carts_postcartscartcomplete) and before the order is created.\n\nThis method is also used for authorizing payments of a swap of an order and when authorizing sessions in a payment collection.\nYou can interact with a third-party provider and perform any actions necessary to authorize the payment.\n\nThe payment authorization might require additional action from the customer before it is declared authorized. Once that additional action is performed,\nthe " + }, + { + "kind": "code", + "text": "`authorizePayment`" + }, + { + "kind": "text", + "text": " method will be called again to validate that the payment is now fully authorized. So, make sure to implement it for this case as well, if necessary.\n\nOnce the payment is authorized successfully and the Payment Session status is set to " + }, + { + "kind": "code", + "text": "`authorized`" + }, + { + "kind": "text", + "text": ", the associated order or swap can then be placed or created.\nIf the payment authorization fails, then an error will be thrown and the order will not be created.\n\n:::note\n\nThe payment authorization status is determined using the " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "getPaymentStatus", + "target": 57, + "tsLinkText": "" + }, + { + "kind": "text", + "text": " method. If the status is " + }, + { + "kind": "code", + "text": "`requires_more`" + }, + { + "kind": "text", + "text": ", then it means additional actions are required\nfrom the customer. If you try to create the order with a status that isn't " + }, + { + "kind": "code", + "text": "`authorized`" + }, + { + "kind": "text", + "text": ", the process will fail.\n\n:::" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The authorization details or an error object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n PaymentSessionStatus,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async authorizePayment(\n paymentSessionData: Record,\n context: Record\n ): Promise<\n PaymentProcessorError |\n {\n status: PaymentSessionStatus;\n data: Record;\n }\n > {\n try {\n await this.client.authorize(paymentSessionData.id)\n\n return {\n status: PaymentSessionStatus.AUTHORIZED,\n data: {\n id: paymentSessionData.id\n }\n }\n } catch (e) {\n return {\n error: e.message\n }\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 40, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the payment session." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 41, + "name": "context", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The context of the authorization. It may include some of the following fields:\n\n- " + }, + { + "kind": "code", + "text": "`ip`" + }, + { + "kind": "text", + "text": ": The customer’s IP.\n- " + }, + { + "kind": "code", + "text": "`idempotency_key`" + }, + { + "kind": "text", + "text": ": The [Idempotency Key](https://docs.medusajs.com/modules/carts-and-checkout/payment#idempotency-key) that is associated with the current cart. It is useful when retrying payments, retrying checkout at a failed point, or for payments that require additional actions from the customer.\n- " + }, + { + "kind": "code", + "text": "`cart_id`" + }, + { + "kind": "text", + "text": ": The ID of a cart. This is only during operations like placing an order or creating a swap." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + }, + { + "type": "reflection", + "declaration": { + "id": 42, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 44, + "name": "data", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " to be stored in the payment session's " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 43, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The status of the payment, which will be stored in the payment session's " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": " field." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa/src/models/payment-session.ts", + "qualifiedName": "PaymentSessionStatus" + }, + "name": "PaymentSessionStatus", + "package": "@medusajs/medusa" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 44, + 43 + ] + } + ] + } + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 54, + "name": "cancelPayment", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 55, + "name": "cancelPayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to cancel an order’s payment. This method is typically triggered by one of the following situations:\n\n1. Before an order is placed and after the payment is authorized, an inventory check is done on products to ensure that products are still available for purchase. If the inventory check fails for any of the products, the payment is canceled.\n2. If the store operator cancels the order from the admin.\n3. When the payment of an order's swap is canceled.\n\nYou can utilize this method to interact with the third-party provider and perform any actions necessary to cancel the payment." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or a value that's stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async cancelPayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n const cancelData = this.client.cancel(paymentId)\n\n return {\n id: paymentId,\n ...cancelData\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 56, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 45, + "name": "capturePayment", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 46, + "name": "capturePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to capture the payment amount of an order. This is typically triggered manually by the store operator from the admin.\n\nThis method is also used for capturing payments of a swap of an order, or when a request is sent to the [Capture Payment API Route](https://docs.medusajs.com/api/admin#payments_postpaymentspaymentcapture).\n\nYou can utilize this method to interact with the third-party provider and perform any actions necessary to capture the payment." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or a value that's stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async capturePayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n const captureData = this.client.catch(paymentId)\n\n return {\n id: paymentId,\n ...captureData\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 47, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment for its first parameter." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 48, + "name": "deletePayment", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 49, + "name": "deletePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to perform any actions necessary before a Payment Session is deleted. The Payment Session is deleted in one of the following cases:\n\n1. When a request is sent to [delete the Payment Session](https://docs.medusajs.com/api/store#carts_deletecartscartpaymentsessionssession).\n2. When the [Payment Session is refreshed](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsessionssession). The Payment Session is deleted so that a newer one is initialized instead.\n3. When the Payment Processor is no longer available. This generally happens when the store operator removes it from the available Payment Processor in the admin.\n4. When the region of the store is changed based on the cart information and the Payment Processor is not available in the new region." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or an empty object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async deletePayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n // assuming client is an initialized client\n // communicating with a third-party service.\n this.client.delete(paymentId)\n\n return {}\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 50, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment Session." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 57, + "name": "getPaymentStatus", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 58, + "name": "getPaymentStatus", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to get the status of a Payment or a Payment Session. Its main usage is within the place order and create swap flows.\nIf the status returned is not " + }, + { + "kind": "code", + "text": "`authorized`" + }, + { + "kind": "text", + "text": " within these flows, then the payment is considered failed and an error will be thrown, stopping the flow from completion." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The status of the Payment or Payment Session." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentSessionStatus\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async getPaymentStatus(\n paymentSessionData: Record\n ): Promise {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n return await this.client.getStatus(paymentId) as PaymentSessionStatus\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 59, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a Payment as a parameter. You can use this data to interact with the third-party provider to check the status of the payment if necessary." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa/src/models/payment-session.ts", + "qualifiedName": "PaymentSessionStatus" + }, + "name": "PaymentSessionStatus", + "package": "@medusajs/medusa" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 28, + "name": "initiatePayment", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 29, + "name": "initiatePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is called either if a region has only one payment provider enabled or when [a Payment Session is selected](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsession),\nwhich occurs when the customer selects their preferred payment method during checkout.\n\nIt is used to allow you to make any necessary calls to the third-party provider to initialize the payment. For example, in Stripe this method is used to create a Payment Intent for the customer." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either the payment's data or an error object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentContext,\n PaymentSessionResponse,\n // ...\n} from \"@medusajs/medusa\"\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async initiatePayment(\n context: PaymentProcessorContext\n ): Promise<\n PaymentProcessorError | PaymentProcessorSessionResponse\n > {\n // assuming client is an initialized client\n // communicating with a third-party service.\n const clientPayment = await this.client.initiate(context)\n\n return {\n session_data: {\n id: clientPayment.id\n },\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 30, + "name": "context", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The context of the payment." + } + ] + }, + "type": { + "type": "reference", + "target": 7, + "name": "PaymentProcessorContext", + "package": "@medusajs/medusa" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + }, + { + "type": "reference", + "target": 16, + "name": "PaymentProcessorSessionResponse", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 34, + "name": "refundPayment", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 35, + "name": "refundPayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to refund an order’s payment. This is typically triggered manually by the store operator from the admin. The refund amount might be the total order amount or part of it.\n\nThis method is also used for refunding payments of a swap or a claim of an order, or when a request is sent to the [Refund Payment API Route](https://docs.medusajs.com/api/admin#payments_postpaymentspaymentrefunds).\n\nYou can utilize this method to interact with the third-party provider and perform any actions necessary to refund the payment." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either an error object or a value that's stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async refundPayment(\n paymentSessionData: Record,\n refundAmount: number\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n const refundData = this.client.refund(paymentId, refundAmount)\n\n return {\n id: paymentId,\n ...refundData\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 36, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a Payment." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 37, + "name": "refundAmount", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "the amount to refund." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 51, + "name": "retrievePayment", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 52, + "name": "retrievePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to provide a uniform way of retrieving the payment information from the third-party provider.\nFor example, in Stripe’s Payment Processor this method is used to retrieve the payment intent details from Stripe." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The payment's data, typically retrieved from a third-party provider." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async retrievePayment(\n paymentSessionData: Record\n ): Promise | PaymentProcessorError> {\n const paymentId = paymentSessionData.id\n\n // assuming client is an initialized client\n // communicating with a third-party service.\n return await this.client.retrieve(paymentId)\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 53, + "name": "paymentSessionData", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a Payment Session. Make sure to store in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field any necessary data that would allow you to retrieve the payment data from the third-party provider." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 31, + "name": "updatePayment", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 32, + "name": "updatePayment", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to update the payment session when the payment amount changes. It's called whenever the cart or any of its related data is updated.\nFor example, when a [line item is added to the cart](https://docs.medusajs.com/api/store#carts_postcartscartlineitems) or when a\n[shipping method is selected](https://docs.medusajs.com/api/store#carts_postcartscartshippingmethod)." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Either the payment's data or an error object." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorContext,\n PaymentProcessorError,\n PaymentProcessorSessionResponse,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n // ...\n async updatePayment(\n context: PaymentProcessorContext\n ): Promise<\n void |\n PaymentProcessorError |\n PaymentProcessorSessionResponse\n > {\n // assuming client is an initialized client\n // communicating with a third-party service.\n const paymentId = context.paymentSessionData.id\n\n await this.client.update(paymentId, context)\n\n return {\n session_data: context.paymentSessionData\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 33, + "name": "context", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The context of the payment." + } + ] + }, + "type": { + "type": "reference", + "target": 7, + "name": "PaymentProcessorContext", + "package": "@medusajs/medusa" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + }, + { + "type": "reference", + "target": 16, + "name": "PaymentProcessorSessionResponse", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 60, + "name": "updatePaymentData", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 61, + "name": "updatePaymentData", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to update the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of a payment session. It's called when a request is sent to the\n[Update Payment Session API Route](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsessionupdate), or when the " + }, + { + "kind": "code", + "text": "`CartService`" + }, + { + "kind": "text", + "text": "'s " + }, + { + "kind": "code", + "text": "`updatePaymentSession`" + }, + { + "kind": "text", + "text": " is used.\n\nThis method can also be used to update the data in the third-party payment provider, if necessary." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "the data to store in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the payment session.\nYou can keep the data as-is, or make changes to it by communicating with the third-party provider." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport {\n PaymentProcessorError,\n PaymentProviderService,\n // ...\n} from \"@medusajs/medusa\"\n// ...\n\nclass MyPaymentService extends AbstractPaymentProcessor {\n protected paymentProviderService: PaymentProviderService\n // ...\n constructor(container, options) {\n super(container)\n this.paymentProviderService = container.paymentProviderService\n // ...\n }\n // ...\n async updatePaymentData(\n sessionId: string,\n data: Record\n ): Promise<\n Record |\n PaymentProcessorError\n > {\n const paymentSession = await this.paymentProviderService.retrieveSession(sessionId)\n // assuming client is an initialized client\n // communicating with a third-party service.\n const clientPayment = await this.client.update(paymentSession.data.id, data)\n\n return {\n id: clientPayment.id\n }\n }\n}\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 62, + "name": "sessionId", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the payment session." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 63, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The data to be updated in the payment session." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + } + ], + "groups": [ + { + "title": "Methods", + "children": [ + 38, + 54, + 45, + 48, + 57, + 28, + 34, + 51, + 31, + 60 + ] + } + ], + "implementedBy": [ + { + "type": "reference", + "target": 64, + "name": "AbstractPaymentProcessor" + } + ] + }, + { + "id": 7, + "name": "PaymentProcessorContext", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A payment's context." + } + ] + }, + "children": [ + { + "id": 11, + "name": "amount", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The payment's amount." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 8, + "name": "billing_address", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The payment's billing address." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa/src/models/address.ts", + "qualifiedName": "Address" + }, + "name": "Address", + "package": "@medusajs/medusa" + } + ] + } + }, + { + "id": 14, + "name": "context", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The cart's context." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 10, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The selected currency code, typically associated with the customer's cart." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 13, + "name": "customer", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The customer associated with this payment." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../packages/medusa/src/models/customer.ts", + "qualifiedName": "Customer" + }, + "name": "Customer", + "package": "@medusajs/medusa" + } + }, + { + "id": 9, + "name": "email", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The customer's email." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 15, + "name": "paymentSessionData", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "If the payment session hasn't been created or initiated yet, it'll be an empty object.\nIf the payment session exists, it'll be the value of the payment session's " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 12, + "name": "resource_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the resource the payment is associated with. For example, the cart's ID." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 11, + 8, + 14, + 10, + 13, + 9, + 15, + 12 + ] + } + ] + }, + { + "id": 21, + "name": "PaymentProcessorError", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An object that is returned in case of an error." + } + ] + }, + "children": [ + { + "id": 23, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The error code." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 24, + "name": "detail", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Any additional helpful details." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 22, + "name": "error", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The error message" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 23, + 24, + 22 + ] + } + ] + }, + { + "id": 16, + "name": "PaymentProcessorSessionResponse", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The response of operations on a payment." + } + ] + }, + "children": [ + { + "id": 20, + "name": "session_data", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The data to be stored in the " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field of the Payment Session to be created.\nThe " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": " field is useful to hold any data required by the third-party provider to process the payment or retrieve its details at a later point." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 17, + "name": "update_requests", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to specify data that should be updated in the Medusa backend." + } + ] + }, + "type": { + "type": "reflection", + "declaration": { + "id": 18, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 19, + "name": "customer_metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies a new value of the " + }, + { + "kind": "code", + "text": "`metadata`" + }, + { + "kind": "text", + "text": " field of the customer associated with the payment." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 19 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 20, + 17 + ] + } + ] + }, + { + "id": 1, + "name": "isPaymentProcessor", + "variant": "declaration", + "kind": 64, + "flags": {}, + "signatures": [ + { + "id": 2, + "name": "isPaymentProcessor", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return if the input object is AbstractPaymentProcessor" + } + ] + }, + "parameters": [ + { + "id": 3, + "name": "obj", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "unknown" + } + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ] + }, + { + "id": 4, + "name": "isPaymentProcessorError", + "variant": "declaration", + "kind": 64, + "flags": {}, + "signatures": [ + { + "id": 5, + "name": "isPaymentProcessorError", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Utility function to determine if an object is a processor error" + } + ] + }, + "parameters": [ + { + "id": 6, + "name": "obj", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "type": { + "type": "predicate", + "name": "obj", + "asserts": false, + "targetType": { + "type": "reference", + "target": 21, + "name": "PaymentProcessorError", + "package": "@medusajs/medusa" + } + } + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "children": [ + 64 + ] + }, + { + "title": "Interfaces", + "children": [ + 25, + 7, + 21, + 16 + ] + }, + { + "title": "Functions", + "children": [ + 1, + 4 + ] + } + ], + "packageName": "@medusajs/medusa", + "symbolIdMap": { + "0": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "" + }, + "1": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "isPaymentProcessor" + }, + "2": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "isPaymentProcessor" + }, + "3": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "obj" + }, + "4": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "isPaymentProcessorError" + }, + "5": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "isPaymentProcessorError" + }, + "6": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "obj" + }, + "7": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessorContext" + }, + "8": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.billing_address" + }, + "9": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.email" + }, + "10": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.currency_code" + }, + "11": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.amount" + }, + "12": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.resource_id" + }, + "13": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.customer" + }, + "14": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.context" + }, + "15": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.paymentSessionData" + }, + "16": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessorSessionResponse" + }, + "17": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.update_requests" + }, + "18": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type" + }, + "19": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.customer_metadata" + }, + "20": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.session_data" + }, + "21": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessorError" + }, + "22": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessorError.error" + }, + "23": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessorError.code" + }, + "24": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessorError.detail" + }, + "25": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor" + }, + "28": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.initiatePayment" + }, + "29": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.initiatePayment" + }, + "30": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "context" + }, + "31": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.updatePayment" + }, + "32": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.updatePayment" + }, + "33": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "context" + }, + "34": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.refundPayment" + }, + "35": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.refundPayment" + }, + "36": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "37": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "refundAmount" + }, + "38": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.authorizePayment" + }, + "39": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.authorizePayment" + }, + "40": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "41": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "context" + }, + "42": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type" + }, + "43": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.status" + }, + "44": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.data" + }, + "45": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.capturePayment" + }, + "46": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.capturePayment" + }, + "47": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "48": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.deletePayment" + }, + "49": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.deletePayment" + }, + "50": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "51": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.retrievePayment" + }, + "52": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.retrievePayment" + }, + "53": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "54": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.cancelPayment" + }, + "55": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.cancelPayment" + }, + "56": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "57": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.getPaymentStatus" + }, + "58": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.getPaymentStatus" + }, + "59": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "60": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.updatePaymentData" + }, + "61": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "PaymentProcessor.updatePaymentData" + }, + "62": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "sessionId" + }, + "63": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "data" + }, + "64": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor" + }, + "65": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.identifier" + }, + "66": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.__constructor" + }, + "67": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor" + }, + "68": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "container" + }, + "69": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "config" + }, + "70": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.container" + }, + "71": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.config" + }, + "74": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.capturePayment" + }, + "75": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.capturePayment" + }, + "76": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "77": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.authorizePayment" + }, + "78": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.authorizePayment" + }, + "79": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "80": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "context" + }, + "81": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type" + }, + "82": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.status" + }, + "83": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "__type.data" + }, + "84": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.cancelPayment" + }, + "85": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.cancelPayment" + }, + "86": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "87": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.initiatePayment" + }, + "88": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.initiatePayment" + }, + "89": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "context" + }, + "90": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.deletePayment" + }, + "91": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.deletePayment" + }, + "92": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "93": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.getPaymentStatus" + }, + "94": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.getPaymentStatus" + }, + "95": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "96": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.refundPayment" + }, + "97": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.refundPayment" + }, + "98": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "99": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "refundAmount" + }, + "100": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.retrievePayment" + }, + "101": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.retrievePayment" + }, + "102": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "paymentSessionData" + }, + "103": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.updatePayment" + }, + "104": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.updatePayment" + }, + "105": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "context" + }, + "106": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.updatePaymentData" + }, + "107": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "AbstractPaymentProcessor.updatePaymentData" + }, + "108": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "sessionId" + }, + "109": { + "sourceFileName": "../../../packages/medusa/src/interfaces/payment-processor.ts", + "qualifiedName": "data" + } + } +} \ No newline at end of file diff --git a/packages/medusa/src/interfaces/fulfillment-service.ts b/packages/medusa/src/interfaces/fulfillment-service.ts index 910f9565ec..0b33049e09 100644 --- a/packages/medusa/src/interfaces/fulfillment-service.ts +++ b/packages/medusa/src/interfaces/fulfillment-service.ts @@ -22,13 +22,15 @@ type ShippingMethodData = Record * class MyFulfillmentService extends AbstractFulfillmentService { * // methods here... * } + * + * export default MyFulfillmentService * ``` * * --- * * ## Identifier Property * - * The `FulfillmentProvider` entity has 2 properties: `identifier` and `is_installed`. The `identifier` property in the class is used when the fulfillment provider is created in the database. + * The `FulfillmentProvider` entity has 2 properties: `identifier` and `is_installed`. The `identifier` property in the fulfillment provider service is used when the fulfillment provider is added to the database. * * The value of this property is also used to reference the fulfillment provider throughout Medusa. For example, it is used to [add a fulfillment provider](https://docs.medusajs.com/api/admin#regions_postregionsregionfulfillmentproviders) to a region. * @@ -398,8 +400,15 @@ export abstract class AbstractFulfillmentService implements FulfillmentService { * * @example * class MyFulfillmentService extends AbstractFulfillmentService { - * static identifier = "my-fulfillment" + * // ... + * constructor(container, options) { + * super(container) + * // you can access options here * + * // you can also initialize a client that + * // communicates with a third-party service. + * this.client = new Client(options) + * } * // ... * } */ diff --git a/packages/medusa/src/interfaces/payment-processor.ts b/packages/medusa/src/interfaces/payment-processor.ts index a2d6adf7ff..818dabaaad 100644 --- a/packages/medusa/src/interfaces/payment-processor.ts +++ b/packages/medusa/src/interfaces/payment-processor.ts @@ -1,57 +1,313 @@ import { Address, Customer, PaymentSessionStatus } from "../models" import { MedusaContainer } from "../types/global" +/** + * @interface + * + * A payment's context. + */ export type PaymentProcessorContext = { + /** + * The payment's billing address. + */ billing_address?: Address | null + /** + * The customer's email. + */ email: string + /** + * The selected currency code, typically associated with the customer's cart. + */ currency_code: string + /** + * The payment's amount. + */ amount: number + /** + * The ID of the resource the payment is associated with. For example, the cart's ID. + */ resource_id: string + /** + * The customer associated with this payment. + */ customer?: Customer + /** + * The cart's context. + */ context: Record + /** + * If the payment session hasn't been created or initiated yet, it'll be an empty object. + * If the payment session exists, it'll be the value of the payment session's `data` field. + */ paymentSessionData: Record } +/** + * @interface + * + * The response of operations on a payment. + */ export type PaymentProcessorSessionResponse = { - update_requests?: { customer_metadata?: Record } + /** + * Used to specify data that should be updated in the Medusa backend. + */ + update_requests?: { + /** + * Specifies a new value of the `metadata` field of the customer associated with the payment. + */ + customer_metadata?: Record + } + /** + * The data to be stored in the `data` field of the Payment Session to be created. + * The `data` field is useful to hold any data required by the third-party provider to process the payment or retrieve its details at a later point. + */ session_data: Record } +/** + * An object that is returned in case of an error. + */ export interface PaymentProcessorError { + /** + * The error message + */ error: string + /** + * The error code. + */ code?: string + /** + * Any additional helpful details. + */ detail?: any } /** - * The new payment service plugin interface - * This work is still experimental and can be changed until it becomes stable + * ## Overview + * + * A Payment Processor is the payment method used to authorize, capture, and refund payment, among other actions. An example of a Payment Processor is Stripe. + * + * By default, Medusa has a `manual` payment provider that has minimal implementation. It can be synonymous with a Cash on Delivery payment method. It allows + * store operators to manage the payment themselves but still keep track of its different stages on Medusa. + * + * A payment processor is a service that extends the `AbstractPaymentProcessor` and implements its methods. So, adding a Payment Processor is as simple as + * creating a service file in `src/services`. The file's name is the payment processor's class name as a slug and without the word `Service`. + * For example, if you're creating a `MyPaymentService` class, the file name is `src/services/my-payment.ts`. + * + * ```ts + * import { AbstractPaymentProcessor } from "@medusajs/medusa"; + * + * class MyPaymentService extends AbstractPaymentProcessor { + * // methods here... + * } + * + * export default MyPaymentService + * ``` + * + * The methods of the payment processor are used at different points in the Checkout flow as well as when processing an order after it’s placed. + * + * ![Checkout Flow - Payment](https://res.cloudinary.com/dza7lstvk/image/upload/v1680177820/Medusa%20Docs/Diagrams/checkout-payment_cy9efp.jpg) + * + * --- + * + * ## Identifier Property + * + * The `PaymentProvider` entity has 2 properties: `id` and `is_installed`. The `identifier` property in the payment processor service is used when the payment processor is added to the database. + * + * The value of this property is also used to reference the payment processor throughout Medusa. + * For example, it is used to [add a payment processor](https://docs.medusajs.com/api/admin#regions_postregionsregionpaymentproviders) to a region. + * + * ```ts + * class MyPaymentService extends AbstractPaymentProcessor { + * static identifier = "my-payment" + * // ... + * } + * ``` + * + * --- + * + * ## PaymentProcessorError + * + * Before diving into the methods of the Payment Processor, you'll notice that part of the expected return signature of these method includes `PaymentProcessorError`. + * + * ```ts + * interface PaymentProcessorError { + * error: string + * code?: string + * detail?: any + * } + * ``` + * + * While implementing the Payment Processor's methods, if you need to inform the Medusa core that an error occurred at a certain stage, + * return an object having the attributes defined in the `PaymentProcessorError` interface. + * + * For example, the Stripe payment processor has the following method to create the error object, which is used within other methods: + * + * ```ts + * abstract class StripeBase extends AbstractPaymentProcessor { + * // ... + * protected buildError( + * message: string, + * e: Stripe.StripeRawError | PaymentProcessorError | Error + * ): PaymentProcessorError { + * return { + * error: message, + * code: "code" in e ? e.code : "", + * detail: isPaymentProcessorError(e) + * ? `${e.error}${EOL}${e.detail ?? ""}` + * : "detail" in e + * ? e.detail + * : e.message ?? "", + * } + * } + * + * // used in other methods + * async retrievePayment( + * paymentSessionData: Record + * ): Promise< + * PaymentProcessorError | + * PaymentProcessorSessionResponse["session_data"] + * > { + * try { + * // ... + * } catch (e) { + * return this.buildError( + * "An error occurred in retrievePayment", + * e + * ) + * } + * } + * } + * ``` + * + * --- + * */ export interface PaymentProcessor { /** + * @ignore + * * Return a unique identifier to retrieve the payment plugin provider */ getIdentifier(): string /** - * Initiate a payment session with the external provider + * This method is called either if a region has only one payment provider enabled or when [a Payment Session is selected](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsession), + * which occurs when the customer selects their preferred payment method during checkout. + * + * It is used to allow you to make any necessary calls to the third-party provider to initialize the payment. For example, in Stripe this method is used to create a Payment Intent for the customer. + * + * @param {PaymentProcessorContext} context - The context of the payment. + * @returns {Promise} Either the payment's data or an error object. + * + * @example + * import { + * PaymentContext, + * PaymentSessionResponse, + * // ... + * } from "@medusajs/medusa" + * + * class MyPaymentService extends AbstractPaymentProcessor { + * // ... + * async initiatePayment( + * context: PaymentProcessorContext + * ): Promise< + * PaymentProcessorError | PaymentProcessorSessionResponse + * > { + * // assuming client is an initialized client + * // communicating with a third-party service. + * const clientPayment = await this.client.initiate(context) + * + * return { + * session_data: { + * id: clientPayment.id + * }, + * } + * } + * } */ initiatePayment( context: PaymentProcessorContext ): Promise /** - * Update an existing payment session - * @param context + * This method is used to update the payment session when the payment amount changes. It's called whenever the cart or any of its related data is updated. + * For example, when a [line item is added to the cart](https://docs.medusajs.com/api/store#carts_postcartscartlineitems) or when a + * [shipping method is selected](https://docs.medusajs.com/api/store#carts_postcartscartshippingmethod). + * + * @param {PaymentProcessorContext} context - The context of the payment. + * @returns {Promise} Either the payment's data or an error object. + * + * @example + * import { + * PaymentProcessorContext, + * PaymentProcessorError, + * PaymentProcessorSessionResponse, + * // ... + * } from "@medusajs/medusa" + * // ... + * + * class MyPaymentService extends AbstractPaymentProcessor { + * // ... + * async updatePayment( + * context: PaymentProcessorContext + * ): Promise< + * void | + * PaymentProcessorError | + * PaymentProcessorSessionResponse + * > { + * // assuming client is an initialized client + * // communicating with a third-party service. + * const paymentId = context.paymentSessionData.id + * + * await this.client.update(paymentId, context) + * + * return { + * session_data: context.paymentSessionData + * } + * } + * } */ updatePayment( context: PaymentProcessorContext ): Promise /** - * Refund an existing session - * @param paymentSessionData - * @param refundAmount + * This method is used to refund an order’s payment. This is typically triggered manually by the store operator from the admin. The refund amount might be the total order amount or part of it. + * + * This method is also used for refunding payments of a swap or a claim of an order, or when a request is sent to the [Refund Payment API Route](https://docs.medusajs.com/api/admin#payments_postpaymentspaymentrefunds). + * + * You can utilize this method to interact with the third-party provider and perform any actions necessary to refund the payment. + * + * @param {Record} paymentSessionData - The `data` field of a Payment. + * @param {number} refundAmount - the amount to refund. + * @returns Either an error object or a value that's stored in the `data` field of the Payment. + * + * @example + * import { + * PaymentProcessorError, + * // ... + * } from "@medusajs/medusa" + * // ... + * + * class MyPaymentService extends AbstractPaymentProcessor { + * // ... + * async refundPayment( + * paymentSessionData: Record, + * refundAmount: number + * ): Promise | PaymentProcessorError> { + * const paymentId = paymentSessionData.id + * + * // assuming client is an initialized client + * // communicating with a third-party service. + * const refundData = this.client.refund(paymentId, refundAmount) + * + * return { + * id: paymentId, + * ...refundData + * } + * } + * } */ refundPayment( paymentSessionData: Record, @@ -61,9 +317,71 @@ export interface PaymentProcessor { > /** - * Authorize an existing session if it is not already authorized - * @param paymentSessionData - * @param context + * This method is used to authorize payment using the Payment Session of an order. This is called when the + * [cart is completed](https://docs.medusajs.com/api/store#carts_postcartscartcomplete) and before the order is created. + * + * This method is also used for authorizing payments of a swap of an order and when authorizing sessions in a payment collection. + * You can interact with a third-party provider and perform any actions necessary to authorize the payment. + * + * The payment authorization might require additional action from the customer before it is declared authorized. Once that additional action is performed, + * the `authorizePayment` method will be called again to validate that the payment is now fully authorized. So, make sure to implement it for this case as well, if necessary. + * + * Once the payment is authorized successfully and the Payment Session status is set to `authorized`, the associated order or swap can then be placed or created. + * If the payment authorization fails, then an error will be thrown and the order will not be created. + * + * :::note + * + * The payment authorization status is determined using the {@link getPaymentStatus} method. If the status is `requires_more`, then it means additional actions are required + * from the customer. If you try to create the order with a status that isn't `authorized`, the process will fail. + * + * ::: + * + * @param {Record} paymentSessionData - The `data` field of the payment session. + * @param {Record} context - + * The context of the authorization. It may include some of the following fields: + * + * - `ip`: The customer’s IP. + * - `idempotency_key`: The [Idempotency Key](https://docs.medusajs.com/modules/carts-and-checkout/payment#idempotency-key) that is associated with the current cart. It is useful when retrying payments, retrying checkout at a failed point, or for payments that require additional actions from the customer. + * - `cart_id`: The ID of a cart. This is only during operations like placing an order or creating a swap. + * + * @returns The authorization details or an error object. + * + * @example + * import { + * PaymentProcessorError, + * PaymentSessionStatus, + * // ... + * } from "@medusajs/medusa" + * // ... + * + * class MyPaymentService extends AbstractPaymentProcessor { + * // ... + * async authorizePayment( + * paymentSessionData: Record, + * context: Record + * ): Promise< + * PaymentProcessorError | + * { + * status: PaymentSessionStatus; + * data: Record; + * } + * > { + * try { + * await this.client.authorize(paymentSessionData.id) + * + * return { + * status: PaymentSessionStatus.AUTHORIZED, + * data: { + * id: paymentSessionData.id + * } + * } + * } catch (e) { + * return { + * error: e.message + * } + * } + * } + * } */ authorizePayment( paymentSessionData: Record, @@ -71,14 +389,51 @@ export interface PaymentProcessor { ): Promise< | PaymentProcessorError | { + /** + * The status of the payment, which will be stored in the payment session's `status` field. + */ status: PaymentSessionStatus + /** + * The `data` to be stored in the payment session's `data` field. + */ data: PaymentProcessorSessionResponse["session_data"] } > /** - * Capture an existing session - * @param paymentSessionData + * This method is used to capture the payment amount of an order. This is typically triggered manually by the store operator from the admin. + * + * This method is also used for capturing payments of a swap of an order, or when a request is sent to the [Capture Payment API Route](https://docs.medusajs.com/api/admin#payments_postpaymentspaymentcapture). + * + * You can utilize this method to interact with the third-party provider and perform any actions necessary to capture the payment. + * + * @param {Record} paymentSessionData - The `data` field of the Payment for its first parameter. + * @returns Either an error object or a value that's stored in the `data` field of the Payment. + * + * @example + * import { + * PaymentProcessorError, + * // ... + * } from "@medusajs/medusa" + * // ... + * + * class MyPaymentService extends AbstractPaymentProcessor { + * // ... + * async capturePayment( + * paymentSessionData: Record + * ): Promise | PaymentProcessorError> { + * const paymentId = paymentSessionData.id + * + * // assuming client is an initialized client + * // communicating with a third-party service. + * const captureData = this.client.catch(paymentId) + * + * return { + * id: paymentId, + * ...captureData + * } + * } + * } */ capturePayment( paymentSessionData: Record @@ -87,7 +442,36 @@ export interface PaymentProcessor { > /** - * Delete an existing session + * This method is used to perform any actions necessary before a Payment Session is deleted. The Payment Session is deleted in one of the following cases: + * + * 1. When a request is sent to [delete the Payment Session](https://docs.medusajs.com/api/store#carts_deletecartscartpaymentsessionssession). + * 2. When the [Payment Session is refreshed](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsessionssession). The Payment Session is deleted so that a newer one is initialized instead. + * 3. When the Payment Processor is no longer available. This generally happens when the store operator removes it from the available Payment Processor in the admin. + * 4. When the region of the store is changed based on the cart information and the Payment Processor is not available in the new region. + * + * @param {Record} paymentSessionData - The `data` field of the Payment Session. + * @returns Either an error object or an empty object. + * + * @example + * import { + * PaymentProcessorError, + * // ... + * } from "@medusajs/medusa" + * // ... + * + * class MyPaymentService extends AbstractPaymentProcessor { + * // ... + * async deletePayment( + * paymentSessionData: Record + * ): Promise | PaymentProcessorError> { + * const paymentId = paymentSessionData.id + * // assuming client is an initialized client + * // communicating with a third-party service. + * this.client.delete(paymentId) + * + * return {} + * } + * } */ deletePayment( paymentSessionData: Record @@ -96,7 +480,32 @@ export interface PaymentProcessor { > /** - * Retrieve an existing session + * This method is used to provide a uniform way of retrieving the payment information from the third-party provider. + * For example, in Stripe’s Payment Processor this method is used to retrieve the payment intent details from Stripe. + * + * @param {Record} paymentSessionData - + * The `data` field of a Payment Session. Make sure to store in the `data` field any necessary data that would allow you to retrieve the payment data from the third-party provider. + * @returns {Promise} The payment's data, typically retrieved from a third-party provider. + * + * @example + * import { + * PaymentProcessorError + * // ... + * } from "@medusajs/medusa" + * // ... + * + * class MyPaymentService extends AbstractPaymentProcessor { + * // ... + * async retrievePayment( + * paymentSessionData: Record + * ): Promise | PaymentProcessorError> { + * const paymentId = paymentSessionData.id + * + * // assuming client is an initialized client + * // communicating with a third-party service. + * return await this.client.retrieve(paymentId) + * } + * } */ retrievePayment( paymentSessionData: Record @@ -105,7 +514,41 @@ export interface PaymentProcessor { > /** - * Cancel an existing session + * This method is used to cancel an order’s payment. This method is typically triggered by one of the following situations: + * + * 1. Before an order is placed and after the payment is authorized, an inventory check is done on products to ensure that products are still available for purchase. If the inventory check fails for any of the products, the payment is canceled. + * 2. If the store operator cancels the order from the admin. + * 3. When the payment of an order's swap is canceled. + * + * You can utilize this method to interact with the third-party provider and perform any actions necessary to cancel the payment. + * + * @param {Record} paymentSessionData - The `data` field of the Payment. + * @returns Either an error object or a value that's stored in the `data` field of the Payment. + * + * @example + * import { + * PaymentProcessorError, + * // ... + * } from "@medusajs/medusa" + * // ... + * + * class MyPaymentService extends AbstractPaymentProcessor { + * // ... + * async cancelPayment( + * paymentSessionData: Record + * ): Promise | PaymentProcessorError> { + * const paymentId = paymentSessionData.id + * + * // assuming client is an initialized client + * // communicating with a third-party service. + * const cancelData = this.client.cancel(paymentId) + * + * return { + * id: paymentId, + * ...cancelData + * } + * } + * } */ cancelPayment( paymentSessionData: Record @@ -114,14 +557,82 @@ export interface PaymentProcessor { > /** - * Return the status of the session + * This method is used to get the status of a Payment or a Payment Session. Its main usage is within the place order and create swap flows. + * If the status returned is not `authorized` within these flows, then the payment is considered failed and an error will be thrown, stopping the flow from completion. + * + * @param {Record} paymentSessionData - + * The `data` field of a Payment as a parameter. You can use this data to interact with the third-party provider to check the status of the payment if necessary. + * @returns {Promise} The status of the Payment or Payment Session. + * + * @example + * import { + * PaymentSessionStatus + * // ... + * } from "@medusajs/medusa" + * // ... + * + * class MyPaymentService extends AbstractPaymentProcessor { + * // ... + * async getPaymentStatus( + * paymentSessionData: Record + * ): Promise { + * const paymentId = paymentSessionData.id + * + * // assuming client is an initialized client + * // communicating with a third-party service. + * return await this.client.getStatus(paymentId) as PaymentSessionStatus + * } + * } */ getPaymentStatus( paymentSessionData: Record ): Promise /** - * Update the session data for a payment session + * This method is used to update the `data` field of a payment session. It's called when a request is sent to the + * [Update Payment Session API Route](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsessionupdate), or when the `CartService`'s `updatePaymentSession` is used. + * + * This method can also be used to update the data in the third-party payment provider, if necessary. + * + * @param {string} sessionId - The ID of the payment session. + * @param {Record} data - The data to be updated in the payment session. + * @returns {Promise} the data to store in the `data` field of the payment session. + * You can keep the data as-is, or make changes to it by communicating with the third-party provider. + * + * @example + * import { + * PaymentProcessorError, + * PaymentProviderService, + * // ... + * } from "@medusajs/medusa" + * // ... + * + * class MyPaymentService extends AbstractPaymentProcessor { + * protected paymentProviderService: PaymentProviderService + * // ... + * constructor(container, options) { + * super(container) + * this.paymentProviderService = container.paymentProviderService + * // ... + * } + * // ... + * async updatePaymentData( + * sessionId: string, + * data: Record + * ): Promise< + * Record | + * PaymentProcessorError + * > { + * const paymentSession = await this.paymentProviderService.retrieveSession(sessionId) + * // assuming client is an initialized client + * // communicating with a third-party service. + * const clientPayment = await this.client.update(paymentSession.data.id, data) + * + * return { + * id: clientPayment.id + * } + * } + * } */ updatePaymentData( sessionId: string, @@ -131,17 +642,60 @@ export interface PaymentProcessor { > } -/** - * Payment processor in charge of creating , managing and processing a payment - */ export abstract class AbstractPaymentProcessor implements PaymentProcessor { + /** + * You can use the `constructor` of your Payment Processor to have access to different services in Medusa through [dependency injection](https://docs.medusajs.com/development/fundamentals/dependency-injection). + * + * You can also use the constructor to initialize your integration with the third-party provider. For example, if you use a client to connect to the third-party provider’s APIs, + * you can initialize it in the constructor and use it in other methods in the service. + * + * Additionally, if you’re creating your Payment Processor as an external plugin to be installed on any Medusa backend and you want to access the options added for the plugin, + * you can access it in the constructor. The options are passed as a second parameter. + * + * @param {MedusaContainer} container - An instance of `MedusaContainer` that allows you to access other resources, such as services, in your Medusa backend through [dependency injection](https://docs.medusajs.com/development/fundamentals/dependency-injection) + * @param {Record} config - If this fulfillment provider is created in a plugin, the plugin's options are passed in this parameter. + * + * @example + * ```ts + * class MyPaymentService extends AbstractPaymentProcessor { + * // ... + * constructor(container, options) { + * super(container) + * // you can access options here + * + * // you can also initialize a client that + * // communicates with a third-party service. + * this.client = new Client(options) + * } + * // ... + * } + * ``` + */ protected constructor( protected readonly container: MedusaContainer, protected readonly config?: Record // eslint-disable-next-line @typescript-eslint/no-empty-function ) {} + /** + * The `PaymentProvider` entity has 2 properties: `id` and `is_installed`. The `identifier` property in the payment processor service is used when the payment processor is added to the database. + * + * The value of this property is also used to reference the payment processor throughout Medusa. + * For example, it is used to [add a payment processor](https://docs.medusajs.com/api/admin#regions_postregionsregionpaymentproviders) to a region. + * + * ```ts + * class MyPaymentService extends AbstractPaymentProcessor { + * static identifier = "my-payment" + * // ... + * } + * ``` + */ public static identifier: string + /** + * @ignore + * + * Return a unique identifier to retrieve the payment plugin provider + */ public getIdentifier(): string { const ctr = this.constructor as typeof AbstractPaymentProcessor diff --git a/packages/medusa/src/models/payment-session.ts b/packages/medusa/src/models/payment-session.ts index f2719b1a47..ac17eec8a1 100644 --- a/packages/medusa/src/models/payment-session.ts +++ b/packages/medusa/src/models/payment-session.ts @@ -13,11 +13,31 @@ import { generateEntityId } from "../utils" import { DbAwareColumn, resolveDbType } from "../utils/db-aware-column" import { Cart } from "./cart" +/** + * @enum + * + * The status of a payment session. + */ export enum PaymentSessionStatus { + /** + * The payment is authorized. + */ AUTHORIZED = "authorized", + /** + * The payment is pending. + */ PENDING = "pending", + /** + * The payment requires an action. + */ REQUIRES_MORE = "requires_more", + /** + * An error occurred while processing the payment. + */ ERROR = "error", + /** + * The payment is canceled. + */ CANCELED = "canceled", } diff --git a/www/apps/docs/content/modules/carts-and-checkout/backend/add-payment-provider.md b/www/apps/docs/content/modules/carts-and-checkout/backend/add-payment-provider.md deleted file mode 100644 index b9a9dfceb9..0000000000 --- a/www/apps/docs/content/modules/carts-and-checkout/backend/add-payment-provider.md +++ /dev/null @@ -1,648 +0,0 @@ ---- -description: 'Learn how to create a payment processor in the Medusa. This guide explains the different methods available in a payment processor.' -addHowToData: true ---- - -# How to Create a Payment Processor - -In this document, you’ll learn how to create a Payment Processor in your Medusa backend. If you’re unfamiliar with the Payment architecture in Medusa, make sure to check out the [overview](../payment.md) first. - -:::note - -Before v1.8 of Medusa, this guide explained how to create a payment provider. Payment Providers are now considered legacy and are deprecated. Moving forward, it's recommended to create a Payment Processor that implements the Payment Processor API. - -::: - -## Overview - -A Payment Processor is the payment method used to authorize, capture, and refund payment, among other actions. An example of a Payment Processor is Stripe. - -By default, Medusa has a [manual payment provider](https://github.com/medusajs/medusa/tree/master/packages/medusa-payment-manual) that has minimal implementation. It can be synonymous with a Cash on Delivery payment method. It allows store operators to manage the payment themselves but still keep track of its different stages on Medusa. - -Adding a Payment Processor is as simple as creating a [service](../../../development/services/create-service.mdx) file in `src/services`. A Payment Processor is essentially a service that extends `AbstractPaymentProcessor` from the core Medusa package `@medusajs/medusa`. - -Payment Processor Services must have a static property `identifier`. It's the name that will be used to install and refer to the Payment Processor in the Medusa backend. - -:::tip - -Payment Processors are loaded and installed at the server startup. If not already saved, they're saved in the database and are represented by the `PaymentProvider` entity. - -::: - -The Payment Processor is also required to implement the following methods: - -1. `initiatePayment`: Called when a Payment Session for the Payment Provider is to be created. -2. `retrievePayment`: Used to retrieve payment session data, which can be retrieved from a third-party provider. -3. `getPaymentStatus`: Used to get the status of a Payment or Payment Session. -4. `updatePayment`: Used to update the Payment Session whenever the cart and its related data are updated. -5. `updatePaymentData`: Used to update the `data` of a payment session. -6. `deletePayment`: Used to perform any action necessary before a Payment Session is deleted. For example, you can cancel the payment with the third-party provider. -7. `authorizePayment`: Used to authorize the payment amount of the cart before the order or swap is created. -8. `capturePayment`: Used to capture the payment amount of an order or swap. -9. `refundPayment`: Used to refund a payment amount of an order or swap. -10. `cancelPayment`: Used to perform any necessary action with the third-party payment provider when an order or swap is canceled. - -:::note - -All these methods must be declared async in the Payment Processor. - -::: - -These methods are used at different points in the Checkout flow as well as when processing the order after it’s placed. - -![Checkout Flow - Payment](https://res.cloudinary.com/dza7lstvk/image/upload/v1680177820/Medusa%20Docs/Diagrams/checkout-payment_cy9efp.jpg) - ---- - -## Create a Payment Processor - -The first step to create a payment processor is to create a JavaScript or TypeScript file in `src/services`. The file's name should be the name of the payment processor, and it should be in snake case. - -For example, create the file `src/services/my-payment-processor.ts` with the following content: - -```ts title="src/services/my-payment-processor.ts" -import { - AbstractPaymentProcessor, - PaymentProcessorContext, - PaymentProcessorError, - PaymentProcessorSessionResponse, - PaymentSessionStatus, -} from "@medusajs/medusa" - -class MyPaymentProcessor extends AbstractPaymentProcessor { - static identifier = "my-payment" - - async capturePayment( - paymentSessionData: Record - ): Promise | PaymentProcessorError> { - throw new Error("Method not implemented.") - } - async authorizePayment( - paymentSessionData: Record, - context: Record - ): Promise< - PaymentProcessorError | - { - status: PaymentSessionStatus; - data: Record; - } - > { - throw new Error("Method not implemented.") - } - async cancelPayment( - paymentSessionData: Record - ): Promise | PaymentProcessorError> { - throw new Error("Method not implemented.") - } - async initiatePayment( - context: PaymentProcessorContext - ): Promise< - PaymentProcessorError | PaymentProcessorSessionResponse - > { - throw new Error("Method not implemented.") - } - async deletePayment( - paymentSessionData: Record - ): Promise | PaymentProcessorError> { - throw new Error("Method not implemented.") - } - async getPaymentStatus( - paymentSessionData: Record - ): Promise { - throw new Error("Method not implemented.") - } - async refundPayment( - paymentSessionData: Record, - refundAmount: number - ): Promise | PaymentProcessorError> { - throw new Error("Method not implemented.") - } - async retrievePayment( - paymentSessionData: Record - ): Promise | PaymentProcessorError> { - throw new Error("Method not implemented.") - } - async updatePayment( - context: PaymentProcessorContext - ): Promise< - void | - PaymentProcessorError | - PaymentProcessorSessionResponse - > { - throw new Error("Method not implemented.") - } - async updatePaymentData( - sessionId: string, - data: Record - ): Promise< - Record | - PaymentProcessorError - > { - throw new Error("Method not implemented.") - } -} - -export default MyPaymentProcessor -``` - -Where `MyPaymentProcessor` is the name of your Payment Processor service. - -Payment Processors must extend `AbstractPaymentProcessor` from the core Medusa package `@medusajs/medusa`. - -:::tip - -Following the naming convention of Services, the name of the file should be the slug name of the Payment Processor, and the name of the class should be the camel case name of the Payment Processors suffixed with “Service”. In the example above, the name of the file should be `my-payment.ts`. You can learn more in the [service documentation](../../../development/services/create-service.mdx). - -::: - -### identifier - -As mentioned in the overview, Payment Processors should have a static `identifier` property. - -The `PaymentProvider` entity has 2 properties: `identifier` and `is_installed`. The value of the `identifier` property in the class will be used when the Payment Processor is created in the database. - -The value of this property will also be used to reference the Payment Processor throughout the Medusa backend. For example, the identifier is used when a [Payment Session in a cart is selected on checkout](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsession). - -The identifier can be retrieved using the `getIdentifier` method, which is defined in `AbstractPaymentProcessor`. - -### constructor - -You can use the `constructor` of your Payment Processor to have access to different services in Medusa through [dependency injection](../../../development/fundamentals/dependency-injection.md). - -You can also use the constructor to initialize your integration with the third-party provider. For example, if you use a client to connect to the third-party provider’s APIs, you can initialize it in the constructor and use it in other methods in the service. - -Additionally, if you’re creating your Payment Processor as an external plugin to be installed on any Medusa backend and you want to access the options added for the plugin, you can access it in the constructor. The options are passed as a second parameter: - -```ts -class MyPaymentService extends AbstractPaymentProcessor { - // ... - constructor(container, options) { - super(container) - // you can access options here - } - // ... -} -``` - -### PaymentProcessorError - -Before diving into the methods you'll need to implement, you'll notice that part of the expected return signature of these method includes `PaymentProcessorError`. This is an interface of the following definition: - -```ts -interface PaymentProcessorError { - error: string - code?: string - detail?: any -} -``` - -While implementing the following methods, if you need to inform the Medusa core that an error occurred at a certain stage, return an object having the attributes defined in the `PaymentProcessorError` interface. - -For example, the Stripe payment processor has the following method to create the error object, which is used within other methods: - -```ts -abstract class StripeBase extends AbstractPaymentProcessor { - // ... - protected buildError( - message: string, - e: Stripe.StripeRawError | PaymentProcessorError | Error - ): PaymentProcessorError { - return { - error: message, - code: "code" in e ? e.code : "", - detail: isPaymentProcessorError(e) - ? `${e.error}${EOL}${e.detail ?? ""}` - : "detail" in e - ? e.detail - : e.message ?? "", - } - } - - // used in other methods - async retrievePayment( - paymentSessionData: Record - ): Promise< - PaymentProcessorError | - PaymentProcessorSessionResponse["session_data"] - > { - try { - // ... - } catch (e) { - return this.buildError( - "An error occurred in retrievePayment", - e - ) - } - } -} -``` - -### initiatePayment - -This method is called either if a region has only one payment provider enabled or when [a Payment Session is selected](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsession), which occurs when the customer selects their preferred payment method during checkout. It is used to allow you to make any necessary calls to the third-party provider to initialize the payment. - -For example, in Stripe this method is used to create a Payment Intent for the customer. - -The method receives a context object as a first parameter. This object is of type `PaymentProcessorContext` and has the following properties: - -```ts -type PaymentProcessorContext = { - billing_address?: Address | null - email: string - currency_code: string - amount: number - resource_id: string - customer?: Customer - context: Record - paymentSessionData: Record -} -``` - -This method must return an object of type `PaymentProcessorSessionResponse`. It should have the following properties: - -```ts -type PaymentProcessorSessionResponse = { - update_requests?: { - customer_metadata?: Record - } - session_data: Record -} -``` - -Where: - -- `session_data` is the data that is going to be stored in the `data` field of the Payment Session to be created. As mentioned in the [Architecture Overview](../payment.md), the `data` field is useful to hold any data required by the third-party provider to process the payment or retrieve its details at a later point. -- `update_requests` is an object that can be used to pass data from the Payment Processor plugin to the core to update internal resources. Currently, it only has one attribute `customer_metadata` which allows updating the `metadata` field of the customer. - -An example of a minimal implementation of `initiatePayment`: - -```ts -import { - PaymentContext, - PaymentSessionResponse, -} from "@medusajs/medusa" - -class MyPaymentService extends AbstractPaymentProcessor { - // ... - async initiatePayment( - context: PaymentProcessorContext - ): Promise< - PaymentProcessorError | PaymentProcessorSessionResponse - > { - // prepare data - return { - session_data, - update_requests, - } - } -} -``` - -### retrievePayment - -This method is used to provide a uniform way of retrieving the payment information from the third-party provider. For example, in Stripe’s Payment Processor this method is used to retrieve the payment intent details from Stripe. - -This method accepts the `data` field of a Payment Session. So, you should make sure to store in the `data` field any necessary data that would allow you to retrieve the payment data from the third-party provider. - -This method must return an object containing the data from the third-party provider. - -An example of a minimal implementation of `retrievePayment` where you don’t need to interact with the third-party provider: - -```ts -import { Data } from "@medusajs/medusa" -// ... - -class MyPaymentService extends AbstractPaymentProcessor { - // ... - async retrievePayment( - paymentSessionData: Record - ): Promise | PaymentProcessorError> { - return {} - } -} -``` - -### getPaymentStatus - -This method is used to get the status of a Payment or a Payment Session. - -Its main usage is in the place order and create swap workflows. If the status returned is not `authorized`, then the payment is considered failed and an error will be thrown, stopping the task from completion. - -This method accepts the `data` field of a Payment as a parameter. You can use this data to interact with the third-party provider to check the status of the payment if necessary. - -This method returns a string that represents the status. This string can be from the enum `PaymentSessionStatus` which can be imported from `@medusajs/medusa`. The status must be one of the following values: - -1. `authorized`: The payment was successfully authorized. -2. `pending`: The payment is still pending. This is the default status of a Payment Session. -3. `requires_more`: The payment requires more actions from the customer. For example, if the customer must complete a 3DS check before the payment is authorized. -4. `error`: If an error occurred with the payment. -5. `canceled`: If the payment was canceled. - -An example of a minimal implementation of `getPaymentStatus` where you don’t need to interact with the third-party provider: - -```ts -import { Data, PaymentSessionStatus } from "@medusajs/medusa" -// ... - -class MyPaymentService extends AbstractPaymentProcessor { - // ... - async getPaymentStatus( - paymentSessionData: Record - ): Promise { - return PaymentSessionStatus.AUTHORIZED - } -} -``` - -### updatePayment - -This method is used to update the payment session when the payment amount changes. It's called whenever the cart or any of its related data is updated. For example, when a [line item is added to the cart](https://docs.medusajs.com/api/store#carts_postcartscartlineitems) or when a [shipping method is selected](https://docs.medusajs.com/api/store#carts_postcartscartshippingmethod). - -:::tip - -A line item refers to a product in the cart. - -::: - -It accepts the `data` field of the Payment Session as the first parameter and a context object as a second parameter. This object is of type `PaymentProcessorContext` and has the following properties: - -```ts -type PaymentProcessorContext = { - billing_address?: Address | null - email: string - currency_code: string - amount: number - resource_id: string - customer?: Customer - context: Record - paymentSessionData: Record -} -``` - -You can utilize this method to interact with the third-party provider and update any details regarding the payment if necessary. - -This method must return an object of type `PaymentSessionResponse`. It should have the following properties: - -```ts -type PaymentProcessorSessionResponse = { - update_requests?: { - customer_metadata?: Record - } - session_data: Record -} -``` - -These are the same fields explained in the [initiatePayment](#initiatepayment) section. - -An example of a minimal implementation of `updatePayment`: - -```ts -import { - PaymentSessionData, - Cart, - PaymentContext, - PaymentSessionResponse, -} from "@medusajs/medusa" -// ... - -class MyPaymentService extends AbstractPaymentProcessor { - // ... - async updatePayment( - context: PaymentProcessorContext - ): Promise< - void | - PaymentProcessorError | - PaymentProcessorSessionResponse - > { - // prepare data - return { - session_data, - update_requests, - } - } -} -``` - -### updatePaymentData - -This method is used to update the `data` field of a payment session. It's called when a request is sent to the [Update Payment Session API Route](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsessionupdate), or when the `CartService`'s `updatePaymentSession` is used. - -This method can also be used to update the data in the third-party payment provider, if necessary. - -The method accepts the following parameters: - -1. `sessionId`: A string that indicates the ID of the payment session. -2. `data`: An object containing the data to be updated. - -The method returns the data to store in the `data` field of the payment session. You can keep the data as-is, or make changes to it by communicating with the third-party provider. - -An example of a minimal implementation of `updatePaymentData` that returns the `data` field as-is: - -```ts -import { - PaymentProcessorError, -} from "@medusajs/medusa" -// ... - -class MyPaymentService extends AbstractPaymentProcessor { - // ... - async updatePaymentData( - sessionId: string, - data: Record - ): Promise< - Record | - PaymentProcessorError - > { - return data - } -} -``` - -### deletePayment - -This method is used to perform any actions necessary before a Payment Session is deleted. The Payment Session is deleted in one of the following cases: - -1. When a request is sent to [delete the Payment Session](https://docs.medusajs.com/api/store#carts_deletecartscartpaymentsessionssession). -2. When the [Payment Session is refreshed](https://docs.medusajs.com/api/store#carts_postcartscartpaymentsessionssession). The Payment Session is deleted so that a newer one is initialized instead. -3. When the Payment Processor is no longer available. This generally happens when the store operator removes it from the available Payment Processor in the admin. -4. When the region of the store is changed based on the cart information and the Payment Processor is not available in the new region. - -It accepts the `data` field of the payment session for its first parameter. - -You can use this method to interact with the third-party provider to delete data related to the Payment Session if necessary. - -An example of a minimal implementation of `deletePayment` where no interaction with a third-party provider is required: - -```ts -import { PaymentSession } from "@medusajs/medusa" -// ... - -class MyPaymentService extends AbstractPaymentProcessor { - // ... - async deletePayment( - paymentSessionData: Record - ): Promise | PaymentProcessorError> { - return paymentSessionData - } -} -``` - -### authorizePayment - -This method is used to authorize payment using the Payment Session of an order. This is called when the [cart is completed](https://docs.medusajs.com/api/store#carts_postcartscartcomplete) and before the order is created. - -This method is also used for authorizing payments of a swap of an order and when authorizing sessions in a payment collection. - -The payment authorization might require additional action from the customer before it is declared authorized. Once that additional action is performed, the `authorizePayment` method will be called again to validate that the payment is now fully authorized. So, you should make sure to implement it for this case as well, if necessary. - -Once the payment is authorized successfully and the Payment Session status is set to `authorized`, the order can then be placed. - -If the payment authorization fails, then an error will be thrown and the order will not be created. - -:::note - -The payment authorization status is determined using the `getPaymentStatus` method as mentioned earlier. If the status is `requires_more` then it means additional actions are required from the customer. If the workflow process reaches the “Start Create Order” step and the status is not `authorized`, then the payment is considered failed. - -::: - -This method accepts the `data` field of a payment session for its first parameter, and a `context` object as a second parameter. The `context` object may contain the following properties: - -1. `ip`: The customer’s IP. -2. `idempotency_key`: The [Idempotency Key](../payment.md#idempotency-key) that is associated with the current cart. It is useful when retrying payments, retrying checkout at a failed point, or for payments that require additional actions from the customer. -3. `cart_id`: The ID of a cart. This is only during operations like placing an order or creating a swap. - -This method must return an object containing the following properties: - -- `status` which is a string that indicates the current status of the payment. -- `data` which is an object containing any additional information required to perform additional payment processing such as capturing the payment. The values of both of these properties are stored in the Payment Session’s `status` and `data` fields respectively. - -You can utilize this method to interact with the third-party provider and perform any actions necessary to authorize the payment. - -An example of a minimal implementation of `authorizePayment` that doesn’t need to interact with any third-party provider: - -```ts -import { - Data, - PaymentSession, - PaymentSessionStatus, - PaymentSessionData, -} from "@medusajs/medusa" -// ... - -class MyPaymentService extends AbstractPaymentProcessor { - // ... - async authorizePayment( - paymentSessionData: Record, - context: Record - ): Promise< - PaymentProcessorError | - { - status: PaymentSessionStatus; - data: Record; - } - > { - return { - status: PaymentSessionStatus.AUTHORIZED, - data: { - id: "test", - }, - } - } -} -``` - -### capturePayment - -This method is used to capture the payment amount of an order. This is typically triggered manually by the store operator from the admin. - -This method is also used for capturing payments of a swap of an order, or when a request is sent to the [Capture Payment API Route](https://docs.medusajs.com/api/admin#payments_postpaymentspaymentcapture). - -You can utilize this method to interact with the third-party provider and perform any actions necessary to capture the payment. - -This method accepts the `data` field of the Payment for its first parameter. - -This method must return an object that will be stored in the `data` field of the Payment. - -An example of a minimal implementation of `capturePayment` that doesn’t need to interact with a third-party provider: - -```ts -import { Data, Payment } from "@medusajs/medusa" -// ... - -class MyPaymentService extends AbstractPaymentProcessor { - // ... - async capturePayment(payment: Payment): Promise { - return { - status: "captured", - } - } -} -``` - -### refundPayment - -This method is used to refund an order’s payment. This is typically triggered manually by the store operator from the admin. The refund amount might be the total order amount or part of it. - -This method is also used for refunding payments of a swap or a claim of an order, or when a request is sent to the [Refund Payment API Route](https://docs.medusajs.com/api/admin#payments_postpaymentspaymentrefunds). - -You can utilize this method to interact with the third-party provider and perform any actions necessary to refund the payment. - -This method accepts the `data` field of a Payment for its first parameter, and the amount to refund as a second parameter. - -This method must return an object that is stored in the `data` field of the Payment. - -An example of a minimal implementation of `refundPayment` that doesn’t need to interact with a third-party provider: - -```ts -import { Data, Payment } from "@medusajs/medusa" -// ... - -class MyPaymentService extends AbstractPaymentProcessor { - // ... - async refundPayment( - paymentSessionData: Record, - refundAmount: number - ): Promise | PaymentProcessorError> { - return { - id: "test", - } - } -} -``` - -### cancelPayment - -This method is used to cancel an order’s payment. This method is typically triggered by one of the following situations: - -1. Before an order is placed and after the payment is authorized, an inventory check is done on products to ensure that products are still available for purchase. If the inventory check fails for any of the products, the payment is canceled. -2. If the store operator cancels the order from the admin. -3. When the payment of an order's swap is canceled. - -You can utilize this method to interact with the third-party provider and perform any actions necessary to cancel the payment. - -This method accepts the `data` field of the Payment for its first parameter. - -An example of a minimal implementation of `cancelPayment` that doesn’t need to interact with a third-party provider: - -```ts -import { Data, Payment } from "@medusajs/medusa" -// ... - -class MyPaymentService extends AbstractPaymentProcessor { - // ... - async cancelPayment( - paymentSessionData: Record - ): Promise | PaymentProcessorError> { - return { - id: "test", - } - } -} -``` - ---- - -## See Also - -- Implementation Examples: [Stripe](https://github.com/medusajs/medusa/tree/master/packages/medusa-payment-stripe) and [PayPal](https://github.com/medusajs/medusa/tree/master/packages/medusa-payment-paypal) Payment Processors. -- [Implement checkout flow on the storefront](../storefront/implement-checkout-flow.mdx). diff --git a/www/apps/docs/content/modules/carts-and-checkout/payment.md b/www/apps/docs/content/modules/carts-and-checkout/payment.md index 4cd8455c40..1772164d5d 100644 --- a/www/apps/docs/content/modules/carts-and-checkout/payment.md +++ b/www/apps/docs/content/modules/carts-and-checkout/payment.md @@ -141,4 +141,4 @@ You can learn more about idempotency keys [here](../../development/idempotency-k ## See Also - [Available Payment Plugins](../../plugins/payment/index.mdx) -- [Create a Payment Processor](./backend/add-payment-provider.md) +- [Create a Payment Processor](../../references/payment/classes/payment.AbstractPaymentProcessor.mdx) diff --git a/www/apps/docs/content/plugins/payment/index.mdx b/www/apps/docs/content/plugins/payment/index.mdx index b4f3bc5e97..8d97f7a6ab 100644 --- a/www/apps/docs/content/plugins/payment/index.mdx +++ b/www/apps/docs/content/plugins/payment/index.mdx @@ -2,6 +2,6 @@ import DocCardList from '@theme/DocCardList'; # Payment Plugins -If you can't find your payment provider, try checking the [Community Plugins Library](https://medusajs.com/plugins/?filters=Payment&categories=Payment). You can also [create your own fulfillment provider](../../modules/carts-and-checkout/backend/add-payment-provider.md). +If you can't find your payment provider, try checking the [Community Plugins Library](https://medusajs.com/plugins/?filters=Payment&categories=Payment). You can also [create your own fulfillment provider](../../references/payment/classes/payment.AbstractPaymentProcessor.mdx). \ No newline at end of file diff --git a/www/apps/docs/content/references/ModulesSdkTypes/types/types.ModulesSdkTypes.ExternalModuleDeclaration.mdx b/www/apps/docs/content/references/ModulesSdkTypes/types/types.ModulesSdkTypes.ExternalModuleDeclaration.mdx index 64db2c123a..7e74f7865e 100644 --- a/www/apps/docs/content/references/ModulesSdkTypes/types/types.ModulesSdkTypes.ExternalModuleDeclaration.mdx +++ b/www/apps/docs/content/references/ModulesSdkTypes/types/types.ModulesSdkTypes.ExternalModuleDeclaration.mdx @@ -179,32 +179,5 @@ import ParameterTypes from "@site/src/components/ParameterTypes" "children": [] } ] - }, - { - "name": "server.keepAlive", - "type": "`boolean`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "server.type", - "type": "`\"http\"`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "server.url", - "type": "`string`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] } ]} /> diff --git a/www/apps/docs/content/references/fulfillment/classes/fulfillment.AbstractFulfillmentService.mdx b/www/apps/docs/content/references/fulfillment/classes/fulfillment.AbstractFulfillmentService.mdx index 884edb93b2..935f980d54 100644 --- a/www/apps/docs/content/references/fulfillment/classes/fulfillment.AbstractFulfillmentService.mdx +++ b/www/apps/docs/content/references/fulfillment/classes/fulfillment.AbstractFulfillmentService.mdx @@ -24,13 +24,15 @@ import { AbstractFulfillmentService } from "@medusajs/medusa" class MyFulfillmentService extends AbstractFulfillmentService { // methods here... } + +export default MyFulfillmentService ``` --- ## Identifier Property -The `FulfillmentProvider` entity has 2 properties: `identifier` and `is_installed`. The `identifier` property in the class is used when the fulfillment provider is created in the database. +The `FulfillmentProvider` entity has 2 properties: `identifier` and `is_installed`. The `identifier` property in the fulfillment provider service is used when the fulfillment provider is added to the database. The value of this property is also used to reference the fulfillment provider throughout Medusa. For example, it is used to [add a fulfillment provider](https://docs.medusajs.com/api/admin#regions\_postregionsregionfulfillmentproviders) to a region. @@ -54,8 +56,15 @@ Additionally, if you’re creating your fulfillment provider as an external plug ```ts class MyFulfillmentService extends AbstractFulfillmentService { - static identifier = "my-fulfillment" + // ... + constructor(container, options) { + super(container) + // you can access options here + // you can also initialize a client that + // communicates with a third-party service. + this.client = new Client(options) + } // ... } ``` diff --git a/www/apps/docs/content/references/fulfillment/interfaces/fulfillment.FulfillmentService.mdx b/www/apps/docs/content/references/fulfillment/interfaces/fulfillment.FulfillmentService.mdx index aaf0e9bd4f..b2cc06af1f 100644 --- a/www/apps/docs/content/references/fulfillment/interfaces/fulfillment.FulfillmentService.mdx +++ b/www/apps/docs/content/references/fulfillment/interfaces/fulfillment.FulfillmentService.mdx @@ -21,13 +21,15 @@ import { AbstractFulfillmentService } from "@medusajs/medusa" class MyFulfillmentService extends AbstractFulfillmentService { // methods here... } + +export default MyFulfillmentService ``` --- ## Identifier Property -The `FulfillmentProvider` entity has 2 properties: `identifier` and `is_installed`. The `identifier` property in the class is used when the fulfillment provider is created in the database. +The `FulfillmentProvider` entity has 2 properties: `identifier` and `is_installed`. The `identifier` property in the fulfillment provider service is used when the fulfillment provider is added to the database. The value of this property is also used to reference the fulfillment provider throughout Medusa. For example, it is used to [add a fulfillment provider](https://docs.medusajs.com/api/admin#regions\_postregionsregionfulfillmentproviders) to a region. diff --git a/www/apps/docs/content/references/js_client/classes/js_client.AdminNotificationsResource.mdx b/www/apps/docs/content/references/js_client/classes/js_client.AdminNotificationsResource.mdx index 16f7f8faf2..bc3fe623f5 100644 --- a/www/apps/docs/content/references/js_client/classes/js_client.AdminNotificationsResource.mdx +++ b/www/apps/docs/content/references/js_client/classes/js_client.AdminNotificationsResource.mdx @@ -193,7 +193,7 @@ medusa.admin.notifications.list({ { "name": "count", "type": "`number`", - "description": "", + "description": "The total number of notifications", "optional": false, "defaultValue": "", "expandable": false, @@ -202,7 +202,7 @@ medusa.admin.notifications.list({ { "name": "limit", "type": "`number`", - "description": "", + "description": "The number of notifications per page", "optional": false, "defaultValue": "", "expandable": false, @@ -211,7 +211,7 @@ medusa.admin.notifications.list({ { "name": "offset", "type": "`number`", - "description": "", + "description": "The number of notifications skipped when retrieving the notifications.", "optional": false, "defaultValue": "", "expandable": false, diff --git a/www/apps/docs/content/references/js_client/classes/js_client.AdminRegionsResource.mdx b/www/apps/docs/content/references/js_client/classes/js_client.AdminRegionsResource.mdx index 6cb7caf1cc..9f6ec61c48 100644 --- a/www/apps/docs/content/references/js_client/classes/js_client.AdminRegionsResource.mdx +++ b/www/apps/docs/content/references/js_client/classes/js_client.AdminRegionsResource.mdx @@ -3329,12 +3329,30 @@ medusa.admin.regions.list({ } ] }, + { + "name": "expand", + "type": "`string`", + "description": "Comma-separated relations that should be expanded in the returned data.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "fields", + "type": "`string`", + "description": "Comma-separated fields that should be included in the returned data.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, { "name": "limit", "type": "`number`", "description": "Limit the number of items returned in the list.", "optional": true, - "defaultValue": "50", + "defaultValue": "20", "expandable": false, "children": [] }, diff --git a/www/apps/docs/content/references/js_client/classes/js_client.AdminShippingOptionsResource.mdx b/www/apps/docs/content/references/js_client/classes/js_client.AdminShippingOptionsResource.mdx index b42a870ea6..fb6c5ca26e 100644 --- a/www/apps/docs/content/references/js_client/classes/js_client.AdminShippingOptionsResource.mdx +++ b/www/apps/docs/content/references/js_client/classes/js_client.AdminShippingOptionsResource.mdx @@ -73,7 +73,7 @@ medusa.admin.shippingOptions.create({ }, { "name": "data", - "type": "`object`", + "type": "`Record`", "description": "The data needed for the Fulfillment Provider to handle shipping with this Shipping Option.", "optional": false, "defaultValue": "", @@ -119,12 +119,31 @@ medusa.admin.shippingOptions.create({ }, { "name": "price_type", - "type": "`string`", + "type": "[ShippingOptionPriceType](../../entities/enums/entities.ShippingOptionPriceType.mdx)", "description": "The type of the Shipping Option price. `flat\\_rate` indicates fixed pricing, whereas `calculated` indicates that the price will be calculated each time by the fulfillment provider.", "optional": false, "defaultValue": "", "expandable": false, - "children": [] + "children": [ + { + "name": "CALCULATED", + "type": "`\"calculated\"`", + "description": "The shipping option's price is calculated. In this case, the `amount` field is typically `null`.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "FLAT_RATE", + "type": "`\"flat_rate\"`", + "description": "The shipping option's price is a flat rate.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] }, { "name": "profile_id", @@ -172,12 +191,31 @@ medusa.admin.shippingOptions.create({ }, { "name": "type", - "type": "`string`", + "type": "[RequirementType](../../entities/enums/entities.RequirementType.mdx)", "description": "The type of the requirement", "optional": false, "defaultValue": "", "expandable": false, - "children": [] + "children": [ + { + "name": "MAX_SUBTOTAL", + "type": "`\"max_subtotal\"`", + "description": "The shipping option can only be applied if the subtotal is less than the requirement's amont.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "MIN_SUBTOTAL", + "type": "`\"min_subtotal\"`", + "description": "The shipping option can only be applied if the subtotal is greater than the requirement's amount.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] } ] } @@ -1804,6 +1842,34 @@ medusa.admin.shippingOptions.update(optionId, { "expandable": false, "children": [] }, + { + "name": "price_type", + "type": "[ShippingOptionPriceType](../../entities/enums/entities.ShippingOptionPriceType.mdx)", + "description": "", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [ + { + "name": "CALCULATED", + "type": "`\"calculated\"`", + "description": "The shipping option's price is calculated. In this case, the `amount` field is typically `null`.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "FLAT_RATE", + "type": "`\"flat_rate\"`", + "description": "The shipping option's price is a flat rate.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, { "name": "requirements", "type": "[OptionRequirement](../../medusa/classes/medusa.OptionRequirement-1.mdx)[]", diff --git a/www/apps/docs/content/references/js_client/classes/js_client.AdminStockLocationsResource.mdx b/www/apps/docs/content/references/js_client/classes/js_client.AdminStockLocationsResource.mdx index 051b5be092..47deb0c98f 100644 --- a/www/apps/docs/content/references/js_client/classes/js_client.AdminStockLocationsResource.mdx +++ b/www/apps/docs/content/references/js_client/classes/js_client.AdminStockLocationsResource.mdx @@ -262,7 +262,7 @@ medusa.admin.stockLocations.delete(stockLocationId) "type": "`boolean`", "description": "Whether the item was deleted successfully.", "optional": false, - "defaultValue": "", + "defaultValue": "true", "expandable": false, "children": [] }, @@ -280,7 +280,7 @@ medusa.admin.stockLocations.delete(stockLocationId) "type": "`string`", "description": "The type of the item that was deleted.", "optional": false, - "defaultValue": "", + "defaultValue": "stock_location", "expandable": false, "children": [] } @@ -457,7 +457,7 @@ medusa.admin.stockLocations.list({ { "name": "count", "type": "`number`", - "description": "", + "description": "The total number of notifications", "optional": false, "defaultValue": "", "expandable": false, @@ -466,7 +466,7 @@ medusa.admin.stockLocations.list({ { "name": "limit", "type": "`number`", - "description": "", + "description": "The number of notifications per page", "optional": false, "defaultValue": "", "expandable": false, @@ -475,7 +475,7 @@ medusa.admin.stockLocations.list({ { "name": "offset", "type": "`number`", - "description": "", + "description": "The number of notifications skipped when retrieving the notifications.", "optional": false, "defaultValue": "", "expandable": false, diff --git a/www/apps/docs/content/references/js_client/classes/js_client.RegionsResource.mdx b/www/apps/docs/content/references/js_client/classes/js_client.RegionsResource.mdx index 1ee2cc2c5a..773f28cdb7 100644 --- a/www/apps/docs/content/references/js_client/classes/js_client.RegionsResource.mdx +++ b/www/apps/docs/content/references/js_client/classes/js_client.RegionsResource.mdx @@ -68,7 +68,7 @@ medusa.regions.list() { "name": "count", "type": "`number`", - "description": "", + "description": "The total number of notifications", "optional": false, "defaultValue": "", "expandable": false, @@ -77,7 +77,7 @@ medusa.regions.list() { "name": "limit", "type": "`number`", - "description": "", + "description": "The number of notifications per page", "optional": false, "defaultValue": "", "expandable": false, @@ -86,7 +86,7 @@ medusa.regions.list() { "name": "offset", "type": "`number`", - "description": "", + "description": "The number of notifications skipped when retrieving the notifications.", "optional": false, "defaultValue": "", "expandable": false, diff --git a/www/apps/docs/content/references/medusa/classes/medusa.AbstractFulfillmentService.mdx b/www/apps/docs/content/references/medusa/classes/medusa.AbstractFulfillmentService.mdx index 5f8e158b89..67b24729f2 100644 --- a/www/apps/docs/content/references/medusa/classes/medusa.AbstractFulfillmentService.mdx +++ b/www/apps/docs/content/references/medusa/classes/medusa.AbstractFulfillmentService.mdx @@ -21,13 +21,15 @@ import { AbstractFulfillmentService } from "@medusajs/medusa" class MyFulfillmentService extends AbstractFulfillmentService { // methods here... } + +export default MyFulfillmentService ``` --- ## Identifier Property -The `FulfillmentProvider` entity has 2 properties: `identifier` and `is_installed`. The `identifier` property in the class is used when the fulfillment provider is created in the database. +The `FulfillmentProvider` entity has 2 properties: `identifier` and `is_installed`. The `identifier` property in the fulfillment provider service is used when the fulfillment provider is added to the database. The value of this property is also used to reference the fulfillment provider throughout Medusa. For example, it is used to [add a fulfillment provider](https://docs.medusajs.com/api/admin#regions\_postregionsregionfulfillmentproviders) to a region. @@ -51,8 +53,15 @@ Additionally, if you’re creating your fulfillment provider as an external plug ```ts class MyFulfillmentService extends AbstractFulfillmentService { - static identifier = "my-fulfillment" + // ... + constructor(container, options) { + super(container) + // you can access options here + // you can also initialize a client that + // communicates with a third-party service. + this.client = new Client(options) + } // ... } ``` diff --git a/www/apps/docs/content/references/medusa/classes/medusa.AbstractPaymentProcessor.mdx b/www/apps/docs/content/references/medusa/classes/medusa.AbstractPaymentProcessor.mdx index dbd3bee84d..6907b9af67 100644 --- a/www/apps/docs/content/references/medusa/classes/medusa.AbstractPaymentProcessor.mdx +++ b/www/apps/docs/content/references/medusa/classes/medusa.AbstractPaymentProcessor.mdx @@ -6,17 +6,139 @@ import ParameterTypes from "@site/src/components/ParameterTypes" # AbstractPaymentProcessor -Payment processor in charge of creating , managing and processing a payment +## Overview + +A Payment Processor is the payment method used to authorize, capture, and refund payment, among other actions. An example of a Payment Processor is Stripe. + +By default, Medusa has a `manual` payment provider that has minimal implementation. It can be synonymous with a Cash on Delivery payment method. It allows +store operators to manage the payment themselves but still keep track of its different stages on Medusa. + +A payment processor is a service that extends the `AbstractPaymentProcessor` and implements its methods. So, adding a Payment Processor is as simple as +creating a service file in `src/services`. The file's name is the payment processor's class name as a slug and without the word `Service`. +For example, if you're creating a `MyPaymentService` class, the file name is `src/services/my-payment.ts`. + +```ts +import { AbstractPaymentProcessor } from "@medusajs/medusa"; + +class MyPaymentService extends AbstractPaymentProcessor { + // methods here... +} + +export default MyPaymentService +``` + +The methods of the payment processor are used at different points in the Checkout flow as well as when processing an order after it’s placed. + +![Checkout Flow - Payment](https://res.cloudinary.com/dza7lstvk/image/upload/v1680177820/Medusa%20Docs/Diagrams/checkout-payment\_cy9efp.jpg) + +--- + +## Identifier Property + +The `PaymentProvider` entity has 2 properties: `id` and `is_installed`. The `identifier` property in the payment processor service is used when the payment processor is added to the database. + +The value of this property is also used to reference the payment processor throughout Medusa. +For example, it is used to [add a payment processor](https://docs.medusajs.com/api/admin#regions\_postregionsregionpaymentproviders) to a region. + +```ts +class MyPaymentService extends AbstractPaymentProcessor { + static identifier = "my-payment" + // ... +} +``` + +--- + +## PaymentProcessorError + +Before diving into the methods of the Payment Processor, you'll notice that part of the expected return signature of these method includes `PaymentProcessorError`. + +```ts +interface PaymentProcessorError { + error: string + code?: string + detail?: any +} +``` + +While implementing the Payment Processor's methods, if you need to inform the Medusa core that an error occurred at a certain stage, +return an object having the attributes defined in the `PaymentProcessorError` interface. + +For example, the Stripe payment processor has the following method to create the error object, which is used within other methods: + +```ts +abstract class StripeBase extends AbstractPaymentProcessor { + // ... + protected buildError( + message: string, + e: Stripe.StripeRawError | PaymentProcessorError | Error + ): PaymentProcessorError { + return { + error: message, + code: "code" in e ? e.code : "", + detail: isPaymentProcessorError(e) + ? `${e.error}${EOL}${e.detail ?? ""}` + : "detail" in e + ? e.detail + : e.message ?? "", + } + } + + // used in other methods + async retrievePayment( + paymentSessionData: Record + ): Promise< + PaymentProcessorError | + PaymentProcessorSessionResponse["session_data"] + > { + try { + // ... + } catch (e) { + return this.buildError( + "An error occurred in retrievePayment", + e + ) + } + } +} +``` + +--- ## constructor +You can use the `constructor` of your Payment Processor to have access to different services in Medusa through [dependency injection](https://docs.medusajs.com/development/fundamentals/dependency-injection). + +You can also use the constructor to initialize your integration with the third-party provider. For example, if you use a client to connect to the third-party provider’s APIs, +you can initialize it in the constructor and use it in other methods in the service. + +Additionally, if you’re creating your Payment Processor as an external plugin to be installed on any Medusa backend and you want to access the options added for the plugin, +you can access it in the constructor. The options are passed as a second parameter. + +### Example + +```ts +class MyPaymentService extends AbstractPaymentProcessor { + // ... + constructor(container, options) { + super(container) + // you can access options here + + // you can also initialize a client that + // communicates with a third-party service. + this.client = new Client(options) + } + // ... +} +``` + ### Parameters `", - "description": "", + "description": "If this fulfillment provider is created in a plugin, the plugin's options are passed in this parameter.", "optional": true, "defaultValue": "", "expandable": false, @@ -60,7 +182,7 @@ ___ { "name": "config", "type": "`Record`", - "description": "", + "description": "If this fulfillment provider is created in a plugin, the plugin's options are passed in this parameter.", "optional": true, "defaultValue": "", "expandable": false, @@ -69,7 +191,7 @@ ___ { "name": "container", "type": "[MedusaContainer](../types/medusa.MedusaContainer-2.mdx)", - "description": "", + "description": "An instance of `MedusaContainer` that allows you to access other resources, such as services, in your Medusa backend through [dependency injection](https://docs.medusajs.com/development/fundamentals/dependency-injection)", "optional": false, "defaultValue": "", "expandable": false, @@ -97,7 +219,7 @@ ___ { "name": "identifier", "type": "`string`", - "description": "", + "description": "The `PaymentProvider` entity has 2 properties: `id` and `is_installed`. The `identifier` property in the payment processor service is used when the payment processor is added to the database.\n\nThe value of this property is also used to reference the payment processor throughout Medusa.\nFor example, it is used to [add a payment processor](https://docs.medusajs.com/api/admin#regions\\_postregionsregionpaymentproviders) to a region.\n\n```ts\nclass MyPaymentService extends AbstractPaymentProcessor {\n static identifier = \"my-payment\"\n // ...\n}\n```", "optional": false, "defaultValue": "", "expandable": false, @@ -111,7 +233,64 @@ ___ ### authorizePayment -Authorize an existing session if it is not already authorized +This method is used to authorize payment using the Payment Session of an order. This is called when the +[cart is completed](https://docs.medusajs.com/api/store#carts\_postcartscartcomplete) and before the order is created. + +This method is also used for authorizing payments of a swap of an order and when authorizing sessions in a payment collection. +You can interact with a third-party provider and perform any actions necessary to authorize the payment. + +The payment authorization might require additional action from the customer before it is declared authorized. Once that additional action is performed, +the `authorizePayment` method will be called again to validate that the payment is now fully authorized. So, make sure to implement it for this case as well, if necessary. + +Once the payment is authorized successfully and the Payment Session status is set to `authorized`, the associated order or swap can then be placed or created. +If the payment authorization fails, then an error will be thrown and the order will not be created. + +:::note + +The payment authorization status is determined using the [getPaymentStatus](medusa.AbstractPaymentProcessor.mdx#getpaymentstatus) method. If the status is `requires_more`, then it means additional actions are required +from the customer. If you try to create the order with a status that isn't `authorized`, the process will fail. + +::: + +#### Example + +```ts +import { + PaymentProcessorError, + PaymentSessionStatus, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async authorizePayment( + paymentSessionData: Record, + context: Record + ): Promise< + PaymentProcessorError | + { + status: PaymentSessionStatus; + data: Record; + } + > { + try { + await this.client.authorize(paymentSessionData.id) + + return { + status: PaymentSessionStatus.AUTHORIZED, + data: { + id: paymentSessionData.id + } + } + } catch (e) { + return { + error: e.message + } + } + } +} +``` #### Parameters @@ -119,7 +298,7 @@ Authorize an existing session if it is not already authorized { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of the payment session.", "optional": false, "defaultValue": "", "expandable": false, @@ -128,7 +307,7 @@ Authorize an existing session if it is not already authorized { "name": "context", "type": "`Record`", - "description": "", + "description": "The context of the authorization. It may include some of the following fields:\n\n- `ip`: The customer’s IP.\n- `idempotency_key`: The [Idempotency Key](https://docs.medusajs.com/modules/carts-and-checkout/payment#idempotency-key) that is associated with the current cart. It is useful when retrying payments, retrying checkout at a failed point, or for payments that require additional actions from the customer.\n- `cart_id`: The ID of a cart. This is only during operations like placing an order or creating a swap.", "optional": false, "defaultValue": "", "expandable": false, @@ -144,7 +323,7 @@ Authorize an existing session if it is not already authorized "type": "Promise<[PaymentProcessorError](../interfaces/medusa.PaymentProcessorError.mdx) \\| object>", "optional": false, "defaultValue": "", - "description": "", + "description": "The authorization details or an error object.", "expandable": false, "children": [ { @@ -164,7 +343,41 @@ ___ ### cancelPayment -Cancel an existing session +This method is used to cancel an order’s payment. This method is typically triggered by one of the following situations: + +1. Before an order is placed and after the payment is authorized, an inventory check is done on products to ensure that products are still available for purchase. If the inventory check fails for any of the products, the payment is canceled. +2. If the store operator cancels the order from the admin. +3. When the payment of an order's swap is canceled. + +You can utilize this method to interact with the third-party provider and perform any actions necessary to cancel the payment. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async cancelPayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + const cancelData = this.client.cancel(paymentId) + + return { + id: paymentId, + ...cancelData + } + } +} +``` #### Parameters @@ -172,7 +385,7 @@ Cancel an existing session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of the Payment.", "optional": false, "defaultValue": "", "expandable": false, @@ -188,7 +401,7 @@ Cancel an existing session "type": "Promise<Record<string, unknown> \\| [PaymentProcessorError](../interfaces/medusa.PaymentProcessorError.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "Either an error object or a value that's stored in the `data` field of the Payment.", "expandable": false, "children": [ { @@ -208,7 +421,39 @@ ___ ### capturePayment -Capture an existing session +This method is used to capture the payment amount of an order. This is typically triggered manually by the store operator from the admin. + +This method is also used for capturing payments of a swap of an order, or when a request is sent to the [Capture Payment API Route](https://docs.medusajs.com/api/admin#payments\_postpaymentspaymentcapture). + +You can utilize this method to interact with the third-party provider and perform any actions necessary to capture the payment. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async capturePayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + const captureData = this.client.catch(paymentId) + + return { + id: paymentId, + ...captureData + } + } +} +``` #### Parameters @@ -216,7 +461,7 @@ Capture an existing session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of the Payment for its first parameter.", "optional": false, "defaultValue": "", "expandable": false, @@ -232,7 +477,7 @@ Capture an existing session "type": "Promise<Record<string, unknown> \\| [PaymentProcessorError](../interfaces/medusa.PaymentProcessorError.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "Either an error object or a value that's stored in the `data` field of the Payment.", "expandable": false, "children": [ { @@ -252,7 +497,36 @@ ___ ### deletePayment -Delete an existing session +This method is used to perform any actions necessary before a Payment Session is deleted. The Payment Session is deleted in one of the following cases: + +1. When a request is sent to [delete the Payment Session](https://docs.medusajs.com/api/store#carts\_deletecartscartpaymentsessionssession). +2. When the [Payment Session is refreshed](https://docs.medusajs.com/api/store#carts\_postcartscartpaymentsessionssession). The Payment Session is deleted so that a newer one is initialized instead. +3. When the Payment Processor is no longer available. This generally happens when the store operator removes it from the available Payment Processor in the admin. +4. When the region of the store is changed based on the cart information and the Payment Processor is not available in the new region. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async deletePayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + // assuming client is an initialized client + // communicating with a third-party service. + this.client.delete(paymentId) + + return {} + } +} +``` #### Parameters @@ -260,7 +534,7 @@ Delete an existing session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of the Payment Session.", "optional": false, "defaultValue": "", "expandable": false, @@ -276,7 +550,7 @@ Delete an existing session "type": "Promise<Record<string, unknown> \\| [PaymentProcessorError](../interfaces/medusa.PaymentProcessorError.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "Either an error object or an empty object.", "expandable": false, "children": [ { @@ -294,29 +568,33 @@ Delete an existing session ___ -### getIdentifier - -Return a unique identifier to retrieve the payment plugin provider - -#### Returns - - - -___ - ### getPaymentStatus -Return the status of the session +This method is used to get the status of a Payment or a Payment Session. Its main usage is within the place order and create swap flows. +If the status returned is not `authorized` within these flows, then the payment is considered failed and an error will be thrown, stopping the flow from completion. + +#### Example + +```ts +import { + PaymentSessionStatus + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async getPaymentStatus( + paymentSessionData: Record + ): Promise { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + return await this.client.getStatus(paymentId) as PaymentSessionStatus + } +} +``` #### Parameters @@ -324,7 +602,7 @@ Return the status of the session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of a Payment as a parameter. You can use this data to interact with the third-party provider to check the status of the payment if necessary.", "optional": false, "defaultValue": "", "expandable": false, @@ -340,7 +618,7 @@ Return the status of the session "type": "Promise<[PaymentSessionStatus](../../entities/enums/entities.PaymentSessionStatus.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "The status of the Payment or Payment Session.", "expandable": false, "children": [ { @@ -360,15 +638,47 @@ ___ ### initiatePayment -Initiate a payment session with the external provider +This method is called either if a region has only one payment provider enabled or when [a Payment Session is selected](https://docs.medusajs.com/api/store#carts\_postcartscartpaymentsession), +which occurs when the customer selects their preferred payment method during checkout. + +It is used to allow you to make any necessary calls to the third-party provider to initialize the payment. For example, in Stripe this method is used to create a Payment Intent for the customer. + +#### Example + +```ts +import { + PaymentContext, + PaymentSessionResponse, + // ... +} from "@medusajs/medusa" + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async initiatePayment( + context: PaymentProcessorContext + ): Promise< + PaymentProcessorError | PaymentProcessorSessionResponse + > { + // assuming client is an initialized client + // communicating with a third-party service. + const clientPayment = await this.client.initiate(context) + + return { + session_data: { + id: clientPayment.id + }, + } + } +} +``` #### Parameters `", - "description": "", + "description": "The cart's context.", "optional": false, "defaultValue": "", "expandable": false, @@ -403,7 +713,7 @@ Initiate a payment session with the external provider { "name": "currency_code", "type": "`string`", - "description": "", + "description": "The selected currency code, typically associated with the customer's cart.", "optional": false, "defaultValue": "", "expandable": false, @@ -412,7 +722,7 @@ Initiate a payment session with the external provider { "name": "customer", "type": "[Customer](../../entities/classes/entities.Customer.mdx)", - "description": "A customer can make purchases in your store and manage their profile.", + "description": "The customer associated with this payment.", "optional": true, "defaultValue": "", "expandable": false, @@ -421,7 +731,7 @@ Initiate a payment session with the external provider { "name": "email", "type": "`string`", - "description": "", + "description": "The customer's email.", "optional": false, "defaultValue": "", "expandable": false, @@ -430,7 +740,7 @@ Initiate a payment session with the external provider { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "If the payment session hasn't been created or initiated yet, it'll be an empty object.\nIf the payment session exists, it'll be the value of the payment session's `data` field.", "optional": false, "defaultValue": "", "expandable": false, @@ -439,7 +749,7 @@ Initiate a payment session with the external provider { "name": "resource_id", "type": "`string`", - "description": "", + "description": "The ID of the resource the payment is associated with. For example, the cart's ID.", "optional": false, "defaultValue": "", "expandable": false, @@ -454,15 +764,15 @@ Initiate a payment session with the external provider , + refundAmount: number + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + const refundData = this.client.refund(paymentId, refundAmount) + + return { + id: paymentId, + ...refundData + } + } +} +``` #### Parameters @@ -485,7 +828,7 @@ Refund an existing session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of a Payment.", "optional": false, "defaultValue": "", "expandable": false, @@ -494,7 +837,7 @@ Refund an existing session { "name": "refundAmount", "type": "`number`", - "description": "", + "description": "the amount to refund.", "optional": false, "defaultValue": "", "expandable": false, @@ -510,7 +853,7 @@ Refund an existing session "type": "Promise<Record<string, unknown> \\| [PaymentProcessorError](../interfaces/medusa.PaymentProcessorError.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "Either an error object or a value that's stored in the `data` field of the Payment.", "expandable": false, "children": [ { @@ -530,7 +873,31 @@ ___ ### retrievePayment -Retrieve an existing session +This method is used to provide a uniform way of retrieving the payment information from the third-party provider. +For example, in Stripe’s Payment Processor this method is used to retrieve the payment intent details from Stripe. + +#### Example + +```ts +import { + PaymentProcessorError + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async retrievePayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + return await this.client.retrieve(paymentId) + } +} +``` #### Parameters @@ -538,7 +905,7 @@ Retrieve an existing session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of a Payment Session. Make sure to store in the `data` field any necessary data that would allow you to retrieve the payment data from the third-party provider.", "optional": false, "defaultValue": "", "expandable": false, @@ -554,7 +921,7 @@ Retrieve an existing session "type": "Promise<Record<string, unknown> \\| [PaymentProcessorError](../interfaces/medusa.PaymentProcessorError.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "The payment's data, typically retrieved from a third-party provider.", "expandable": false, "children": [ { @@ -574,15 +941,50 @@ ___ ### updatePayment -Update an existing payment session +This method is used to update the payment session when the payment amount changes. It's called whenever the cart or any of its related data is updated. +For example, when a [line item is added to the cart](https://docs.medusajs.com/api/store#carts\_postcartscartlineitems) or when a +[shipping method is selected](https://docs.medusajs.com/api/store#carts\_postcartscartshippingmethod). + +#### Example + +```ts +import { + PaymentProcessorContext, + PaymentProcessorError, + PaymentProcessorSessionResponse, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async updatePayment( + context: PaymentProcessorContext + ): Promise< + void | + PaymentProcessorError | + PaymentProcessorSessionResponse + > { + // assuming client is an initialized client + // communicating with a third-party service. + const paymentId = context.paymentSessionData.id + + await this.client.update(paymentId, context) + + return { + session_data: context.paymentSessionData + } + } +} +``` #### Parameters `", - "description": "", + "description": "The cart's context.", "optional": false, "defaultValue": "", "expandable": false, @@ -617,7 +1019,7 @@ Update an existing payment session { "name": "currency_code", "type": "`string`", - "description": "", + "description": "The selected currency code, typically associated with the customer's cart.", "optional": false, "defaultValue": "", "expandable": false, @@ -626,7 +1028,7 @@ Update an existing payment session { "name": "customer", "type": "[Customer](../../entities/classes/entities.Customer.mdx)", - "description": "A customer can make purchases in your store and manage their profile.", + "description": "The customer associated with this payment.", "optional": true, "defaultValue": "", "expandable": false, @@ -635,7 +1037,7 @@ Update an existing payment session { "name": "email", "type": "`string`", - "description": "", + "description": "The customer's email.", "optional": false, "defaultValue": "", "expandable": false, @@ -644,7 +1046,7 @@ Update an existing payment session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "If the payment session hasn't been created or initiated yet, it'll be an empty object.\nIf the payment session exists, it'll be the value of the payment session's `data` field.", "optional": false, "defaultValue": "", "expandable": false, @@ -653,7 +1055,7 @@ Update an existing payment session { "name": "resource_id", "type": "`string`", - "description": "", + "description": "The ID of the resource the payment is associated with. For example, the cart's ID.", "optional": false, "defaultValue": "", "expandable": false, @@ -668,15 +1070,15 @@ Update an existing payment session + ): Promise< + Record | + PaymentProcessorError + > { + const paymentSession = await this.paymentProviderService.retrieveSession(sessionId) + // assuming client is an initialized client + // communicating with a third-party service. + const clientPayment = await this.client.update(paymentSession.data.id, data) + + return { + id: clientPayment.id + } + } +} +``` #### Parameters @@ -699,7 +1142,7 @@ Update the session data for a payment session { "name": "sessionId", "type": "`string`", - "description": "", + "description": "The ID of the payment session.", "optional": false, "defaultValue": "", "expandable": false, @@ -708,7 +1151,7 @@ Update the session data for a payment session { "name": "data", "type": "`Record`", - "description": "", + "description": "The data to be updated in the payment session.", "optional": false, "defaultValue": "", "expandable": false, @@ -724,7 +1167,7 @@ Update the session data for a payment session "type": "Promise<Record<string, unknown> \\| [PaymentProcessorError](../interfaces/medusa.PaymentProcessorError.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "the data to store in the `data` field of the payment session.\nYou can keep the data as-is, or make changes to it by communicating with the third-party provider.", "expandable": false, "children": [ { diff --git a/www/apps/docs/content/references/medusa/classes/medusa.AdminGetRegionsPaginationParams.mdx b/www/apps/docs/content/references/medusa/classes/medusa.AdminGetRegionsPaginationParams.mdx deleted file mode 100644 index 4b026cefeb..0000000000 --- a/www/apps/docs/content/references/medusa/classes/medusa.AdminGetRegionsPaginationParams.mdx +++ /dev/null @@ -1,32 +0,0 @@ ---- -displayed_sidebar: homepage ---- - -import ParameterTypes from "@site/src/components/ParameterTypes" - -# AdminGetRegionsPaginationParams - -Parameters that can be used to configure how a list of data is paginated. - -## Properties - - diff --git a/www/apps/docs/content/references/medusa/classes/medusa.AdminGetRegionsParams.mdx b/www/apps/docs/content/references/medusa/classes/medusa.AdminGetRegionsParams.mdx index 2e840874b7..803c68f0f6 100644 --- a/www/apps/docs/content/references/medusa/classes/medusa.AdminGetRegionsParams.mdx +++ b/www/apps/docs/content/references/medusa/classes/medusa.AdminGetRegionsParams.mdx @@ -103,12 +103,30 @@ Parameters used to filter and configure the pagination of the retrieved regions. } ] }, + { + "name": "expand", + "type": "`string`", + "description": "Comma-separated relations that should be expanded in the returned data.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "fields", + "type": "`string`", + "description": "Comma-separated fields that should be included in the returned data.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, { "name": "limit", "type": "`number`", "description": "Limit the number of items returned in the list.", "optional": true, - "defaultValue": "50", + "defaultValue": "20", "expandable": false, "children": [] }, diff --git a/www/apps/docs/content/references/medusa/classes/medusa.AdminPostShippingOptionsOptionReq.mdx b/www/apps/docs/content/references/medusa/classes/medusa.AdminPostShippingOptionsOptionReq.mdx index 85dc6ef82a..e9505e6c37 100644 --- a/www/apps/docs/content/references/medusa/classes/medusa.AdminPostShippingOptionsOptionReq.mdx +++ b/www/apps/docs/content/references/medusa/classes/medusa.AdminPostShippingOptionsOptionReq.mdx @@ -55,6 +55,34 @@ import ParameterTypes from "@site/src/components/ParameterTypes" "expandable": false, "children": [] }, + { + "name": "price_type", + "type": "[ShippingOptionPriceType](../../entities/enums/entities.ShippingOptionPriceType.mdx)", + "description": "", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [ + { + "name": "CALCULATED", + "type": "`\"calculated\"`", + "description": "The shipping option's price is calculated. In this case, the `amount` field is typically `null`.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "FLAT_RATE", + "type": "`\"flat_rate\"`", + "description": "The shipping option's price is a flat rate.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, { "name": "requirements", "type": "[OptionRequirement](medusa.OptionRequirement-1.mdx)[]", diff --git a/www/apps/docs/content/references/medusa/classes/medusa.AdminPostShippingOptionsReq.mdx b/www/apps/docs/content/references/medusa/classes/medusa.AdminPostShippingOptionsReq.mdx index 70ab90f6cc..06631951b2 100644 --- a/www/apps/docs/content/references/medusa/classes/medusa.AdminPostShippingOptionsReq.mdx +++ b/www/apps/docs/content/references/medusa/classes/medusa.AdminPostShippingOptionsReq.mdx @@ -29,7 +29,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" }, { "name": "data", - "type": "`object`", + "type": "`Record`", "description": "The data needed for the Fulfillment Provider to handle shipping with this Shipping Option.", "optional": false, "defaultValue": "", @@ -75,12 +75,31 @@ import ParameterTypes from "@site/src/components/ParameterTypes" }, { "name": "price_type", - "type": "`string`", + "type": "[ShippingOptionPriceType](../../entities/enums/entities.ShippingOptionPriceType.mdx)", "description": "The type of the Shipping Option price. `flat\\_rate` indicates fixed pricing, whereas `calculated` indicates that the price will be calculated each time by the fulfillment provider.", "optional": false, "defaultValue": "", "expandable": false, - "children": [] + "children": [ + { + "name": "CALCULATED", + "type": "`\"calculated\"`", + "description": "The shipping option's price is calculated. In this case, the `amount` field is typically `null`.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "FLAT_RATE", + "type": "`\"flat_rate\"`", + "description": "The shipping option's price is a flat rate.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] }, { "name": "profile_id", @@ -128,7 +147,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" }, { "name": "type", - "type": "`string`", + "type": "[RequirementType](../../entities/enums/entities.RequirementType.mdx)", "description": "The type of the requirement", "optional": false, "defaultValue": "", diff --git a/www/apps/docs/content/references/medusa/classes/medusa.OptionRequirement.mdx b/www/apps/docs/content/references/medusa/classes/medusa.OptionRequirement.mdx index 40f5d095c3..3d3c97eb2c 100644 --- a/www/apps/docs/content/references/medusa/classes/medusa.OptionRequirement.mdx +++ b/www/apps/docs/content/references/medusa/classes/medusa.OptionRequirement.mdx @@ -24,11 +24,30 @@ ___ }, { "name": "type", - "type": "`string`", + "type": "[RequirementType](../../entities/enums/entities.RequirementType.mdx)", "description": "The type of the requirement", "optional": false, "defaultValue": "", "expandable": false, - "children": [] + "children": [ + { + "name": "MAX_SUBTOTAL", + "type": "`\"max_subtotal\"`", + "description": "The shipping option can only be applied if the subtotal is less than the requirement's amont.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "MIN_SUBTOTAL", + "type": "`\"min_subtotal\"`", + "description": "The shipping option can only be applied if the subtotal is greater than the requirement's amount.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] } ]} expandUrl="https://docs.medusajs.com/development/entities/repositories#retrieving-a-list-of-records"/> diff --git a/www/apps/docs/content/references/medusa/classes/medusa.StoreGetRegionsParams.mdx b/www/apps/docs/content/references/medusa/classes/medusa.StoreGetRegionsParams.mdx index ffd91aba8f..afdb492603 100644 --- a/www/apps/docs/content/references/medusa/classes/medusa.StoreGetRegionsParams.mdx +++ b/www/apps/docs/content/references/medusa/classes/medusa.StoreGetRegionsParams.mdx @@ -55,19 +55,37 @@ import ParameterTypes from "@site/src/components/ParameterTypes" } ] }, + { + "name": "expand", + "type": "`string`", + "description": "Comma-separated relations that should be expanded in the returned data.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "fields", + "type": "`string`", + "description": "Comma-separated fields that should be included in the returned data.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, { "name": "limit", "type": "`number`", - "description": "", + "description": "Limit the number of items returned in the list.", "optional": true, - "defaultValue": "100", + "defaultValue": "20", "expandable": false, "children": [] }, { "name": "offset", "type": "`number`", - "description": "", + "description": "The number of items to skip when retrieving a list.", "optional": true, "defaultValue": "0", "expandable": false, diff --git a/www/apps/docs/content/references/medusa/classes/medusa.StoreGetRegionsRegionParams.mdx b/www/apps/docs/content/references/medusa/classes/medusa.StoreGetRegionsRegionParams.mdx new file mode 100644 index 0000000000..725f529afb --- /dev/null +++ b/www/apps/docs/content/references/medusa/classes/medusa.StoreGetRegionsRegionParams.mdx @@ -0,0 +1,32 @@ +--- +displayed_sidebar: homepage +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# StoreGetRegionsRegionParams + +Parameters that can be used to configure how data is retrieved. + +## Properties + + diff --git a/www/apps/docs/content/references/medusa/enums/medusa.ProductStatus.mdx b/www/apps/docs/content/references/medusa/enums/medusa.ProductStatus.mdx new file mode 100644 index 0000000000..09a0c9bef7 --- /dev/null +++ b/www/apps/docs/content/references/medusa/enums/medusa.ProductStatus.mdx @@ -0,0 +1,31 @@ +--- +displayed_sidebar: homepage +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# ProductStatus + +## Enumeration Members + +### DRAFT + + **DRAFT** = `"draft"` + +___ + +### PROPOSED + + **PROPOSED** = `"proposed"` + +___ + +### PUBLISHED + + **PUBLISHED** = `"published"` + +___ + +### REJECTED + + **REJECTED** = `"rejected"` diff --git a/www/apps/docs/content/references/medusa/interfaces/medusa.FulfillmentService.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.FulfillmentService.mdx index 5589ee3a03..30ae37d843 100644 --- a/www/apps/docs/content/references/medusa/interfaces/medusa.FulfillmentService.mdx +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.FulfillmentService.mdx @@ -21,13 +21,15 @@ import { AbstractFulfillmentService } from "@medusajs/medusa" class MyFulfillmentService extends AbstractFulfillmentService { // methods here... } + +export default MyFulfillmentService ``` --- ## Identifier Property -The `FulfillmentProvider` entity has 2 properties: `identifier` and `is_installed`. The `identifier` property in the class is used when the fulfillment provider is created in the database. +The `FulfillmentProvider` entity has 2 properties: `identifier` and `is_installed`. The `identifier` property in the fulfillment provider service is used when the fulfillment provider is added to the database. The value of this property is also used to reference the fulfillment provider throughout Medusa. For example, it is used to [add a fulfillment provider](https://docs.medusajs.com/api/admin#regions\_postregionsregionfulfillmentproviders) to a region. diff --git a/www/apps/docs/content/references/medusa/interfaces/medusa.MedusaRequest.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.MedusaRequest.mdx index 5d2e66b960..4f818f20d7 100644 --- a/www/apps/docs/content/references/medusa/interfaces/medusa.MedusaRequest.mdx +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.MedusaRequest.mdx @@ -185,7 +185,44 @@ import ParameterTypes from "@site/src/components/ParameterTypes" }, { "name": "user", - "type": "`Object`", + "type": "`object`", + "description": "", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [ + { + "name": "customer_id", + "type": "`string`", + "description": "", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "userId", + "type": "`string`", + "description": "", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "user.customer_id", + "type": "`string`", + "description": "", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "user.userId", + "type": "`string`", "description": "", "optional": true, "defaultValue": "", diff --git a/www/apps/docs/content/references/medusa/interfaces/medusa.PaymentProcessor.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.PaymentProcessor.mdx index 665c0a7156..09c2eaa48b 100644 --- a/www/apps/docs/content/references/medusa/interfaces/medusa.PaymentProcessor.mdx +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.PaymentProcessor.mdx @@ -6,14 +6,167 @@ import ParameterTypes from "@site/src/components/ParameterTypes" # PaymentProcessor -The new payment service plugin interface -This work is still experimental and can be changed until it becomes stable +## Overview + +A Payment Processor is the payment method used to authorize, capture, and refund payment, among other actions. An example of a Payment Processor is Stripe. + +By default, Medusa has a `manual` payment provider that has minimal implementation. It can be synonymous with a Cash on Delivery payment method. It allows +store operators to manage the payment themselves but still keep track of its different stages on Medusa. + +A payment processor is a service that extends the `AbstractPaymentProcessor` and implements its methods. So, adding a Payment Processor is as simple as +creating a service file in `src/services`. The file's name is the payment processor's class name as a slug and without the word `Service`. +For example, if you're creating a `MyPaymentService` class, the file name is `src/services/my-payment.ts`. + +```ts +import { AbstractPaymentProcessor } from "@medusajs/medusa"; + +class MyPaymentService extends AbstractPaymentProcessor { + // methods here... +} + +export default MyPaymentService +``` + +The methods of the payment processor are used at different points in the Checkout flow as well as when processing an order after it’s placed. + +![Checkout Flow - Payment](https://res.cloudinary.com/dza7lstvk/image/upload/v1680177820/Medusa%20Docs/Diagrams/checkout-payment\_cy9efp.jpg) + +--- + +## Identifier Property + +The `PaymentProvider` entity has 2 properties: `id` and `is_installed`. The `identifier` property in the payment processor service is used when the payment processor is added to the database. + +The value of this property is also used to reference the payment processor throughout Medusa. +For example, it is used to [add a payment processor](https://docs.medusajs.com/api/admin#regions\_postregionsregionpaymentproviders) to a region. + +```ts +class MyPaymentService extends AbstractPaymentProcessor { + static identifier = "my-payment" + // ... +} +``` + +--- + +## PaymentProcessorError + +Before diving into the methods of the Payment Processor, you'll notice that part of the expected return signature of these method includes `PaymentProcessorError`. + +```ts +interface PaymentProcessorError { + error: string + code?: string + detail?: any +} +``` + +While implementing the Payment Processor's methods, if you need to inform the Medusa core that an error occurred at a certain stage, +return an object having the attributes defined in the `PaymentProcessorError` interface. + +For example, the Stripe payment processor has the following method to create the error object, which is used within other methods: + +```ts +abstract class StripeBase extends AbstractPaymentProcessor { + // ... + protected buildError( + message: string, + e: Stripe.StripeRawError | PaymentProcessorError | Error + ): PaymentProcessorError { + return { + error: message, + code: "code" in e ? e.code : "", + detail: isPaymentProcessorError(e) + ? `${e.error}${EOL}${e.detail ?? ""}` + : "detail" in e + ? e.detail + : e.message ?? "", + } + } + + // used in other methods + async retrievePayment( + paymentSessionData: Record + ): Promise< + PaymentProcessorError | + PaymentProcessorSessionResponse["session_data"] + > { + try { + // ... + } catch (e) { + return this.buildError( + "An error occurred in retrievePayment", + e + ) + } + } +} +``` + +--- ## Methods ### authorizePayment -Authorize an existing session if it is not already authorized +This method is used to authorize payment using the Payment Session of an order. This is called when the +[cart is completed](https://docs.medusajs.com/api/store#carts\_postcartscartcomplete) and before the order is created. + +This method is also used for authorizing payments of a swap of an order and when authorizing sessions in a payment collection. +You can interact with a third-party provider and perform any actions necessary to authorize the payment. + +The payment authorization might require additional action from the customer before it is declared authorized. Once that additional action is performed, +the `authorizePayment` method will be called again to validate that the payment is now fully authorized. So, make sure to implement it for this case as well, if necessary. + +Once the payment is authorized successfully and the Payment Session status is set to `authorized`, the associated order or swap can then be placed or created. +If the payment authorization fails, then an error will be thrown and the order will not be created. + +:::note + +The payment authorization status is determined using the [getPaymentStatus](medusa.PaymentProcessor.mdx#getpaymentstatus) method. If the status is `requires_more`, then it means additional actions are required +from the customer. If you try to create the order with a status that isn't `authorized`, the process will fail. + +::: + +#### Example + +```ts +import { + PaymentProcessorError, + PaymentSessionStatus, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async authorizePayment( + paymentSessionData: Record, + context: Record + ): Promise< + PaymentProcessorError | + { + status: PaymentSessionStatus; + data: Record; + } + > { + try { + await this.client.authorize(paymentSessionData.id) + + return { + status: PaymentSessionStatus.AUTHORIZED, + data: { + id: paymentSessionData.id + } + } + } catch (e) { + return { + error: e.message + } + } + } +} +``` #### Parameters @@ -21,7 +174,7 @@ Authorize an existing session if it is not already authorized { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of the payment session.", "optional": false, "defaultValue": "", "expandable": false, @@ -30,7 +183,7 @@ Authorize an existing session if it is not already authorized { "name": "context", "type": "`Record`", - "description": "", + "description": "The context of the authorization. It may include some of the following fields:\n\n- `ip`: The customer’s IP.\n- `idempotency_key`: The [Idempotency Key](https://docs.medusajs.com/modules/carts-and-checkout/payment#idempotency-key) that is associated with the current cart. It is useful when retrying payments, retrying checkout at a failed point, or for payments that require additional actions from the customer.\n- `cart_id`: The ID of a cart. This is only during operations like placing an order or creating a swap.", "optional": false, "defaultValue": "", "expandable": false, @@ -46,7 +199,7 @@ Authorize an existing session if it is not already authorized "type": "Promise<[PaymentProcessorError](medusa.PaymentProcessorError.mdx) \\| object>", "optional": false, "defaultValue": "", - "description": "", + "description": "The authorization details or an error object.", "expandable": false, "children": [ { @@ -66,7 +219,41 @@ ___ ### cancelPayment -Cancel an existing session +This method is used to cancel an order’s payment. This method is typically triggered by one of the following situations: + +1. Before an order is placed and after the payment is authorized, an inventory check is done on products to ensure that products are still available for purchase. If the inventory check fails for any of the products, the payment is canceled. +2. If the store operator cancels the order from the admin. +3. When the payment of an order's swap is canceled. + +You can utilize this method to interact with the third-party provider and perform any actions necessary to cancel the payment. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async cancelPayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + const cancelData = this.client.cancel(paymentId) + + return { + id: paymentId, + ...cancelData + } + } +} +``` #### Parameters @@ -74,7 +261,7 @@ Cancel an existing session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of the Payment.", "optional": false, "defaultValue": "", "expandable": false, @@ -90,7 +277,7 @@ Cancel an existing session "type": "Promise<Record<string, unknown> \\| [PaymentProcessorError](medusa.PaymentProcessorError.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "Either an error object or a value that's stored in the `data` field of the Payment.", "expandable": false, "children": [ { @@ -110,7 +297,39 @@ ___ ### capturePayment -Capture an existing session +This method is used to capture the payment amount of an order. This is typically triggered manually by the store operator from the admin. + +This method is also used for capturing payments of a swap of an order, or when a request is sent to the [Capture Payment API Route](https://docs.medusajs.com/api/admin#payments\_postpaymentspaymentcapture). + +You can utilize this method to interact with the third-party provider and perform any actions necessary to capture the payment. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async capturePayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + const captureData = this.client.catch(paymentId) + + return { + id: paymentId, + ...captureData + } + } +} +``` #### Parameters @@ -118,7 +337,7 @@ Capture an existing session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of the Payment for its first parameter.", "optional": false, "defaultValue": "", "expandable": false, @@ -134,7 +353,7 @@ Capture an existing session "type": "Promise<Record<string, unknown> \\| [PaymentProcessorError](medusa.PaymentProcessorError.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "Either an error object or a value that's stored in the `data` field of the Payment.", "expandable": false, "children": [ { @@ -154,7 +373,36 @@ ___ ### deletePayment -Delete an existing session +This method is used to perform any actions necessary before a Payment Session is deleted. The Payment Session is deleted in one of the following cases: + +1. When a request is sent to [delete the Payment Session](https://docs.medusajs.com/api/store#carts\_deletecartscartpaymentsessionssession). +2. When the [Payment Session is refreshed](https://docs.medusajs.com/api/store#carts\_postcartscartpaymentsessionssession). The Payment Session is deleted so that a newer one is initialized instead. +3. When the Payment Processor is no longer available. This generally happens when the store operator removes it from the available Payment Processor in the admin. +4. When the region of the store is changed based on the cart information and the Payment Processor is not available in the new region. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async deletePayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + // assuming client is an initialized client + // communicating with a third-party service. + this.client.delete(paymentId) + + return {} + } +} +``` #### Parameters @@ -162,7 +410,7 @@ Delete an existing session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of the Payment Session.", "optional": false, "defaultValue": "", "expandable": false, @@ -178,7 +426,7 @@ Delete an existing session "type": "Promise<Record<string, unknown> \\| [PaymentProcessorError](medusa.PaymentProcessorError.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "Either an error object or an empty object.", "expandable": false, "children": [ { @@ -196,29 +444,33 @@ Delete an existing session ___ -### getIdentifier - -Return a unique identifier to retrieve the payment plugin provider - -#### Returns - - - -___ - ### getPaymentStatus -Return the status of the session +This method is used to get the status of a Payment or a Payment Session. Its main usage is within the place order and create swap flows. +If the status returned is not `authorized` within these flows, then the payment is considered failed and an error will be thrown, stopping the flow from completion. + +#### Example + +```ts +import { + PaymentSessionStatus + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async getPaymentStatus( + paymentSessionData: Record + ): Promise { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + return await this.client.getStatus(paymentId) as PaymentSessionStatus + } +} +``` #### Parameters @@ -226,7 +478,7 @@ Return the status of the session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of a Payment as a parameter. You can use this data to interact with the third-party provider to check the status of the payment if necessary.", "optional": false, "defaultValue": "", "expandable": false, @@ -242,7 +494,7 @@ Return the status of the session "type": "Promise<[PaymentSessionStatus](../../entities/enums/entities.PaymentSessionStatus.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "The status of the Payment or Payment Session.", "expandable": false, "children": [ { @@ -262,15 +514,47 @@ ___ ### initiatePayment -Initiate a payment session with the external provider +This method is called either if a region has only one payment provider enabled or when [a Payment Session is selected](https://docs.medusajs.com/api/store#carts\_postcartscartpaymentsession), +which occurs when the customer selects their preferred payment method during checkout. + +It is used to allow you to make any necessary calls to the third-party provider to initialize the payment. For example, in Stripe this method is used to create a Payment Intent for the customer. + +#### Example + +```ts +import { + PaymentContext, + PaymentSessionResponse, + // ... +} from "@medusajs/medusa" + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async initiatePayment( + context: PaymentProcessorContext + ): Promise< + PaymentProcessorError | PaymentProcessorSessionResponse + > { + // assuming client is an initialized client + // communicating with a third-party service. + const clientPayment = await this.client.initiate(context) + + return { + session_data: { + id: clientPayment.id + }, + } + } +} +``` #### Parameters `", - "description": "", + "description": "The cart's context.", "optional": false, "defaultValue": "", "expandable": false, @@ -305,7 +589,7 @@ Initiate a payment session with the external provider { "name": "currency_code", "type": "`string`", - "description": "", + "description": "The selected currency code, typically associated with the customer's cart.", "optional": false, "defaultValue": "", "expandable": false, @@ -314,7 +598,7 @@ Initiate a payment session with the external provider { "name": "customer", "type": "[Customer](../../entities/classes/entities.Customer.mdx)", - "description": "A customer can make purchases in your store and manage their profile.", + "description": "The customer associated with this payment.", "optional": true, "defaultValue": "", "expandable": false, @@ -323,7 +607,7 @@ Initiate a payment session with the external provider { "name": "email", "type": "`string`", - "description": "", + "description": "The customer's email.", "optional": false, "defaultValue": "", "expandable": false, @@ -332,7 +616,7 @@ Initiate a payment session with the external provider { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "If the payment session hasn't been created or initiated yet, it'll be an empty object.\nIf the payment session exists, it'll be the value of the payment session's `data` field.", "optional": false, "defaultValue": "", "expandable": false, @@ -341,7 +625,7 @@ Initiate a payment session with the external provider { "name": "resource_id", "type": "`string`", - "description": "", + "description": "The ID of the resource the payment is associated with. For example, the cart's ID.", "optional": false, "defaultValue": "", "expandable": false, @@ -356,15 +640,15 @@ Initiate a payment session with the external provider , + refundAmount: number + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + const refundData = this.client.refund(paymentId, refundAmount) + + return { + id: paymentId, + ...refundData + } + } +} +``` #### Parameters @@ -387,7 +704,7 @@ Refund an existing session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of a Payment.", "optional": false, "defaultValue": "", "expandable": false, @@ -396,7 +713,7 @@ Refund an existing session { "name": "refundAmount", "type": "`number`", - "description": "", + "description": "the amount to refund.", "optional": false, "defaultValue": "", "expandable": false, @@ -412,7 +729,7 @@ Refund an existing session "type": "Promise<Record<string, unknown> \\| [PaymentProcessorError](medusa.PaymentProcessorError.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "Either an error object or a value that's stored in the `data` field of the Payment.", "expandable": false, "children": [ { @@ -432,7 +749,31 @@ ___ ### retrievePayment -Retrieve an existing session +This method is used to provide a uniform way of retrieving the payment information from the third-party provider. +For example, in Stripe’s Payment Processor this method is used to retrieve the payment intent details from Stripe. + +#### Example + +```ts +import { + PaymentProcessorError + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async retrievePayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + return await this.client.retrieve(paymentId) + } +} +``` #### Parameters @@ -440,7 +781,7 @@ Retrieve an existing session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "The `data` field of a Payment Session. Make sure to store in the `data` field any necessary data that would allow you to retrieve the payment data from the third-party provider.", "optional": false, "defaultValue": "", "expandable": false, @@ -456,7 +797,7 @@ Retrieve an existing session "type": "Promise<Record<string, unknown> \\| [PaymentProcessorError](medusa.PaymentProcessorError.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "The payment's data, typically retrieved from a third-party provider.", "expandable": false, "children": [ { @@ -476,15 +817,50 @@ ___ ### updatePayment -Update an existing payment session +This method is used to update the payment session when the payment amount changes. It's called whenever the cart or any of its related data is updated. +For example, when a [line item is added to the cart](https://docs.medusajs.com/api/store#carts\_postcartscartlineitems) or when a +[shipping method is selected](https://docs.medusajs.com/api/store#carts\_postcartscartshippingmethod). + +#### Example + +```ts +import { + PaymentProcessorContext, + PaymentProcessorError, + PaymentProcessorSessionResponse, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async updatePayment( + context: PaymentProcessorContext + ): Promise< + void | + PaymentProcessorError | + PaymentProcessorSessionResponse + > { + // assuming client is an initialized client + // communicating with a third-party service. + const paymentId = context.paymentSessionData.id + + await this.client.update(paymentId, context) + + return { + session_data: context.paymentSessionData + } + } +} +``` #### Parameters `", - "description": "", + "description": "The cart's context.", "optional": false, "defaultValue": "", "expandable": false, @@ -519,7 +895,7 @@ Update an existing payment session { "name": "currency_code", "type": "`string`", - "description": "", + "description": "The selected currency code, typically associated with the customer's cart.", "optional": false, "defaultValue": "", "expandable": false, @@ -528,7 +904,7 @@ Update an existing payment session { "name": "customer", "type": "[Customer](../../entities/classes/entities.Customer.mdx)", - "description": "A customer can make purchases in your store and manage their profile.", + "description": "The customer associated with this payment.", "optional": true, "defaultValue": "", "expandable": false, @@ -537,7 +913,7 @@ Update an existing payment session { "name": "email", "type": "`string`", - "description": "", + "description": "The customer's email.", "optional": false, "defaultValue": "", "expandable": false, @@ -546,7 +922,7 @@ Update an existing payment session { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "If the payment session hasn't been created or initiated yet, it'll be an empty object.\nIf the payment session exists, it'll be the value of the payment session's `data` field.", "optional": false, "defaultValue": "", "expandable": false, @@ -555,7 +931,7 @@ Update an existing payment session { "name": "resource_id", "type": "`string`", - "description": "", + "description": "The ID of the resource the payment is associated with. For example, the cart's ID.", "optional": false, "defaultValue": "", "expandable": false, @@ -570,15 +946,15 @@ Update an existing payment session + ): Promise< + Record | + PaymentProcessorError + > { + const paymentSession = await this.paymentProviderService.retrieveSession(sessionId) + // assuming client is an initialized client + // communicating with a third-party service. + const clientPayment = await this.client.update(paymentSession.data.id, data) + + return { + id: clientPayment.id + } + } +} +``` #### Parameters @@ -601,7 +1018,7 @@ Update the session data for a payment session { "name": "sessionId", "type": "`string`", - "description": "", + "description": "The ID of the payment session.", "optional": false, "defaultValue": "", "expandable": false, @@ -610,7 +1027,7 @@ Update the session data for a payment session { "name": "data", "type": "`Record`", - "description": "", + "description": "The data to be updated in the payment session.", "optional": false, "defaultValue": "", "expandable": false, @@ -626,7 +1043,7 @@ Update the session data for a payment session "type": "Promise<Record<string, unknown> \\| [PaymentProcessorError](medusa.PaymentProcessorError.mdx)>", "optional": false, "defaultValue": "", - "description": "", + "description": "the data to store in the `data` field of the payment session.\nYou can keep the data as-is, or make changes to it by communicating with the third-party provider.", "expandable": false, "children": [ { diff --git a/www/apps/docs/content/references/medusa/types/medusa.PaymentProcessorContext.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.PaymentProcessorContext.mdx similarity index 86% rename from www/apps/docs/content/references/medusa/types/medusa.PaymentProcessorContext.mdx rename to www/apps/docs/content/references/medusa/interfaces/medusa.PaymentProcessorContext.mdx index 7f18e4c4d8..a8a9e4829c 100644 --- a/www/apps/docs/content/references/medusa/types/medusa.PaymentProcessorContext.mdx +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.PaymentProcessorContext.mdx @@ -6,15 +6,15 @@ import ParameterTypes from "@site/src/components/ParameterTypes" # PaymentProcessorContext - **PaymentProcessorContext**: `Object` +A payment's context. -## Type declaration +## Properties `", - "description": "", + "description": "The cart's context.", "optional": false, "defaultValue": "", "expandable": false, @@ -41,7 +41,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" { "name": "currency_code", "type": "`string`", - "description": "", + "description": "The selected currency code, typically associated with the customer's cart.", "optional": false, "defaultValue": "", "expandable": false, @@ -50,7 +50,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" { "name": "customer", "type": "[Customer](../../entities/classes/entities.Customer.mdx)", - "description": "A customer can make purchases in your store and manage their profile.", + "description": "The customer associated with this payment.", "optional": true, "defaultValue": "", "expandable": false, @@ -204,7 +204,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" { "name": "email", "type": "`string`", - "description": "", + "description": "The customer's email.", "optional": false, "defaultValue": "", "expandable": false, @@ -213,7 +213,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" { "name": "paymentSessionData", "type": "`Record`", - "description": "", + "description": "If the payment session hasn't been created or initiated yet, it'll be an empty object.\nIf the payment session exists, it'll be the value of the payment session's `data` field.", "optional": false, "defaultValue": "", "expandable": false, @@ -222,10 +222,10 @@ import ParameterTypes from "@site/src/components/ParameterTypes" { "name": "resource_id", "type": "`string`", - "description": "", + "description": "The ID of the resource the payment is associated with. For example, the cart's ID.", "optional": false, "defaultValue": "", "expandable": false, "children": [] } -]} /> +]} expandUrl="https://docs.medusajs.com/development/entities/repositories#retrieving-a-list-of-records"/> diff --git a/www/apps/docs/content/references/medusa/interfaces/medusa.PaymentProcessorError.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.PaymentProcessorError.mdx index c2f139cbd5..8a280013eb 100644 --- a/www/apps/docs/content/references/medusa/interfaces/medusa.PaymentProcessorError.mdx +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.PaymentProcessorError.mdx @@ -6,13 +6,15 @@ import ParameterTypes from "@site/src/components/ParameterTypes" # PaymentProcessorError +An object that is returned in case of an error. + ## Properties `", + "description": "The data to be stored in the `data` field of the Payment Session to be created.\nThe `data` field is useful to hold any data required by the third-party provider to process the payment or retrieve its details at a later point.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "update_requests", + "type": "`object`", + "description": "Used to specify data that should be updated in the Medusa backend.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [ + { + "name": "customer_metadata", + "type": "`Record`", + "description": "Specifies a new value of the `metadata` field of the customer associated with the payment.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "update_requests.customer_metadata", + "type": "`Record`", + "description": "Specifies a new value of the `metadata` field of the customer associated with the payment.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} expandUrl="https://docs.medusajs.com/development/entities/repositories#retrieving-a-list-of-records"/> diff --git a/www/apps/docs/content/references/medusa/interfaces/medusa.ProductCategoryDTO.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductCategoryDTO.mdx new file mode 100644 index 0000000000..a728375d97 --- /dev/null +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductCategoryDTO.mdx @@ -0,0 +1,313 @@ +--- +displayed_sidebar: homepage +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# ProductCategoryDTO + +A product category's data. + +## Properties + + diff --git a/www/apps/docs/content/references/medusa/interfaces/medusa.ProductCollectionDTO.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductCollectionDTO.mdx new file mode 100644 index 0000000000..5c08243331 --- /dev/null +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductCollectionDTO.mdx @@ -0,0 +1,330 @@ +--- +displayed_sidebar: homepage +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# ProductCollectionDTO + +A product collection's data. + +## Properties + +`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "products", + "type": "[ProductDTO](medusa.ProductDTO.mdx)[]", + "description": "The associated products.", + "optional": true, + "defaultValue": "", + "expandable": true, + "children": [ + { + "name": "categories", + "type": "`null` \\| [ProductCategoryDTO](medusa.ProductCategoryDTO.mdx)[]", + "description": "The associated product categories.", + "optional": true, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "collection", + "type": "[ProductCollectionDTO](medusa.ProductCollectionDTO.mdx)", + "description": "The associated product collection.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "created_at", + "type": "`string` \\| `Date`", + "description": "When the product was created.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "deleted_at", + "type": "`string` \\| `Date`", + "description": "When the product was deleted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "description", + "type": "`null` \\| `string`", + "description": "The description of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "discountable", + "type": "`boolean`", + "description": "Whether the product can be discounted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "external_id", + "type": "`null` \\| `string`", + "description": "The ID of the product in an external system. This is useful if you're integrating the product with a third-party service and want to maintain\na reference to the ID in the integrated service.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "handle", + "type": "`null` \\| `string`", + "description": "The handle of the product. The handle can be used to create slug URL paths.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "height", + "type": "`null` \\| `number`", + "description": "The height of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "hs_code", + "type": "`null` \\| `string`", + "description": "The HS Code of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The ID of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "images", + "type": "[ProductImageDTO](medusa.ProductImageDTO.mdx)[]", + "description": "The associated product images.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "is_giftcard", + "type": "`boolean`", + "description": "Whether the product is a gift card.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "length", + "type": "`null` \\| `number`", + "description": "The length of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "material", + "type": "`null` \\| `string`", + "description": "The material of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "mid_code", + "type": "`null` \\| `string`", + "description": "The MID Code of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "options", + "type": "[ProductOptionDTO](medusa.ProductOptionDTO.mdx)[]", + "description": "The associated product options.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "origin_country", + "type": "`null` \\| `string`", + "description": "The origin country of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "status", + "type": "[ProductStatus](../enums/medusa.ProductStatus.mdx)", + "description": "The status of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "subtitle", + "type": "`null` \\| `string`", + "description": "The subttle of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "tags", + "type": "[ProductTagDTO](medusa.ProductTagDTO.mdx)[]", + "description": "The associated product tags.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "thumbnail", + "type": "`null` \\| `string`", + "description": "The URL of the product's thumbnail.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "title", + "type": "`string`", + "description": "The title of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "type", + "type": "[ProductTypeDTO](medusa.ProductTypeDTO.mdx)[]", + "description": "The associated product type.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "updated_at", + "type": "`string` \\| `Date`", + "description": "When the product was updated.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "variants", + "type": "[ProductVariantDTO](medusa.ProductVariantDTO.mdx)[]", + "description": "The associated product variants.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "weight", + "type": "`null` \\| `number`", + "description": "The weight of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "width", + "type": "`null` \\| `number`", + "description": "The width of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "title", + "type": "`string`", + "description": "The title of the product collection.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} expandUrl="https://docs.medusajs.com/development/entities/repositories#retrieving-a-list-of-records"/> diff --git a/www/apps/docs/content/references/medusa/interfaces/medusa.ProductDTO.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductDTO.mdx new file mode 100644 index 0000000000..5e18b5ecbb --- /dev/null +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductDTO.mdx @@ -0,0 +1,759 @@ +--- +displayed_sidebar: homepage +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# ProductDTO + +A product's data. + +## Properties + +`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "products", + "type": "[ProductDTO](medusa.ProductDTO.mdx)[]", + "description": "The associated products.", + "optional": true, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "title", + "type": "`string`", + "description": "The title of the product collection.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "created_at", + "type": "`string` \\| `Date`", + "description": "When the product was created.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "deleted_at", + "type": "`string` \\| `Date`", + "description": "When the product was deleted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "description", + "type": "`null` \\| `string`", + "description": "The description of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "discountable", + "type": "`boolean`", + "description": "Whether the product can be discounted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "external_id", + "type": "`null` \\| `string`", + "description": "The ID of the product in an external system. This is useful if you're integrating the product with a third-party service and want to maintain\na reference to the ID in the integrated service.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "handle", + "type": "`null` \\| `string`", + "description": "The handle of the product. The handle can be used to create slug URL paths.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "height", + "type": "`null` \\| `number`", + "description": "The height of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "hs_code", + "type": "`null` \\| `string`", + "description": "The HS Code of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The ID of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "images", + "type": "[ProductImageDTO](medusa.ProductImageDTO.mdx)[]", + "description": "The associated product images.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [ + { + "name": "deleted_at", + "type": "`string` \\| `Date`", + "description": "When the product image was deleted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The ID of the product image.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`null` \\| `Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "url", + "type": "`string`", + "description": "The URL of the product image.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "is_giftcard", + "type": "`boolean`", + "description": "Whether the product is a gift card.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "length", + "type": "`null` \\| `number`", + "description": "The length of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "material", + "type": "`null` \\| `string`", + "description": "The material of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "mid_code", + "type": "`null` \\| `string`", + "description": "The MID Code of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "options", + "type": "[ProductOptionDTO](medusa.ProductOptionDTO.mdx)[]", + "description": "The associated product options.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [ + { + "name": "deleted_at", + "type": "`string` \\| `Date`", + "description": "When the product option was deleted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The ID of the product option.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`null` \\| `Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "product", + "type": "[ProductDTO](medusa.ProductDTO.mdx)", + "description": "The associated product.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "title", + "type": "`string`", + "description": "The title of the product option.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "values", + "type": "[ProductOptionValueDTO](medusa.ProductOptionValueDTO.mdx)[]", + "description": "The associated product option values.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + } + ] + }, + { + "name": "origin_country", + "type": "`null` \\| `string`", + "description": "The origin country of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "status", + "type": "[ProductStatus](../enums/medusa.ProductStatus.mdx)", + "description": "The status of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [ + { + "name": "DRAFT", + "type": "`\"draft\"`", + "description": "", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "PROPOSED", + "type": "`\"proposed\"`", + "description": "", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "PUBLISHED", + "type": "`\"published\"`", + "description": "", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "REJECTED", + "type": "`\"rejected\"`", + "description": "", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "subtitle", + "type": "`null` \\| `string`", + "description": "The subttle of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "tags", + "type": "[ProductTagDTO](medusa.ProductTagDTO.mdx)[]", + "description": "The associated product tags.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [ + { + "name": "id", + "type": "`string`", + "description": "The ID of the product tag.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`null` \\| `Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "products", + "type": "[ProductDTO](medusa.ProductDTO.mdx)[]", + "description": "The associated products.", + "optional": true, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "value", + "type": "`string`", + "description": "The value of the product tag.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "thumbnail", + "type": "`null` \\| `string`", + "description": "The URL of the product's thumbnail.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "title", + "type": "`string`", + "description": "The title of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "type", + "type": "[ProductTypeDTO](medusa.ProductTypeDTO.mdx)[]", + "description": "The associated product type.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [ + { + "name": "deleted_at", + "type": "`string` \\| `Date`", + "description": "When the product type was deleted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The ID of the product type.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`null` \\| `Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "value", + "type": "`string`", + "description": "The value of the product type.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "updated_at", + "type": "`string` \\| `Date`", + "description": "When the product was updated.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "variants", + "type": "[ProductVariantDTO](medusa.ProductVariantDTO.mdx)[]", + "description": "The associated product variants.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [ + { + "name": "allow_backorder", + "type": "`boolean`", + "description": "Whether the product variant can be ordered when it's out of stock.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "barcode", + "type": "`null` \\| `string`", + "description": "The barcode of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "created_at", + "type": "`string` \\| `Date`", + "description": "When the product variant was created.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "deleted_at", + "type": "`string` \\| `Date`", + "description": "When the product variant was deleted.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "ean", + "type": "`null` \\| `string`", + "description": "The EAN of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "height", + "type": "`null` \\| `number`", + "description": "The height of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "hs_code", + "type": "`null` \\| `string`", + "description": "The HS Code of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The ID of the product variant.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "inventory_quantity", + "type": "`number`", + "description": "The inventory quantiy of the product variant.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "length", + "type": "`null` \\| `number`", + "description": "The length of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "manage_inventory", + "type": "`boolean`", + "description": "Whether the product variant's inventory should be managed by the core system.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "material", + "type": "`null` \\| `string`", + "description": "The material of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`null` \\| `Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "mid_code", + "type": "`null` \\| `string`", + "description": "The MID Code of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "options", + "type": "[ProductOptionValueDTO](medusa.ProductOptionValueDTO.mdx)[]", + "description": "The associated product options.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "origin_country", + "type": "`null` \\| `string`", + "description": "The origin country of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "product", + "type": "[ProductDTO](medusa.ProductDTO.mdx)", + "description": "The associated product.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "product_id", + "type": "`string`", + "description": "The ID of the associated product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "sku", + "type": "`null` \\| `string`", + "description": "The SKU of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "title", + "type": "`string`", + "description": "The tile of the product variant.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "upc", + "type": "`null` \\| `string`", + "description": "The UPC of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "updated_at", + "type": "`string` \\| `Date`", + "description": "When the product variant was updated.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "variant_rank", + "type": "`null` \\| `number`", + "description": "he ranking of the variant among other variants associated with the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "weight", + "type": "`null` \\| `number`", + "description": "The weight of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "width", + "type": "`null` \\| `number`", + "description": "The width of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "weight", + "type": "`null` \\| `number`", + "description": "The weight of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "width", + "type": "`null` \\| `number`", + "description": "The width of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} expandUrl="https://docs.medusajs.com/development/entities/repositories#retrieving-a-list-of-records"/> diff --git a/www/apps/docs/content/references/medusa/interfaces/medusa.ProductImageDTO.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductImageDTO.mdx new file mode 100644 index 0000000000..f06eabd891 --- /dev/null +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductImageDTO.mdx @@ -0,0 +1,50 @@ +--- +displayed_sidebar: homepage +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# ProductImageDTO + +The product image's data. + +## Properties + +`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "url", + "type": "`string`", + "description": "The URL of the product image.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} expandUrl="https://docs.medusajs.com/development/entities/repositories#retrieving-a-list-of-records"/> diff --git a/www/apps/docs/content/references/medusa/interfaces/medusa.ProductOptionDTO.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductOptionDTO.mdx new file mode 100644 index 0000000000..00f10225d7 --- /dev/null +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductOptionDTO.mdx @@ -0,0 +1,385 @@ +--- +displayed_sidebar: homepage +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# ProductOptionDTO + +A product option's data. + +## Properties + +`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "product", + "type": "[ProductDTO](medusa.ProductDTO.mdx)", + "description": "The associated product.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [ + { + "name": "categories", + "type": "`null` \\| [ProductCategoryDTO](medusa.ProductCategoryDTO.mdx)[]", + "description": "The associated product categories.", + "optional": true, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "collection", + "type": "[ProductCollectionDTO](medusa.ProductCollectionDTO.mdx)", + "description": "The associated product collection.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "created_at", + "type": "`string` \\| `Date`", + "description": "When the product was created.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "deleted_at", + "type": "`string` \\| `Date`", + "description": "When the product was deleted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "description", + "type": "`null` \\| `string`", + "description": "The description of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "discountable", + "type": "`boolean`", + "description": "Whether the product can be discounted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "external_id", + "type": "`null` \\| `string`", + "description": "The ID of the product in an external system. This is useful if you're integrating the product with a third-party service and want to maintain\na reference to the ID in the integrated service.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "handle", + "type": "`null` \\| `string`", + "description": "The handle of the product. The handle can be used to create slug URL paths.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "height", + "type": "`null` \\| `number`", + "description": "The height of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "hs_code", + "type": "`null` \\| `string`", + "description": "The HS Code of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The ID of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "images", + "type": "[ProductImageDTO](medusa.ProductImageDTO.mdx)[]", + "description": "The associated product images.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "is_giftcard", + "type": "`boolean`", + "description": "Whether the product is a gift card.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "length", + "type": "`null` \\| `number`", + "description": "The length of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "material", + "type": "`null` \\| `string`", + "description": "The material of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "mid_code", + "type": "`null` \\| `string`", + "description": "The MID Code of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "options", + "type": "[ProductOptionDTO](medusa.ProductOptionDTO.mdx)[]", + "description": "The associated product options.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "origin_country", + "type": "`null` \\| `string`", + "description": "The origin country of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "status", + "type": "[ProductStatus](../enums/medusa.ProductStatus.mdx)", + "description": "The status of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "subtitle", + "type": "`null` \\| `string`", + "description": "The subttle of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "tags", + "type": "[ProductTagDTO](medusa.ProductTagDTO.mdx)[]", + "description": "The associated product tags.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "thumbnail", + "type": "`null` \\| `string`", + "description": "The URL of the product's thumbnail.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "title", + "type": "`string`", + "description": "The title of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "type", + "type": "[ProductTypeDTO](medusa.ProductTypeDTO.mdx)[]", + "description": "The associated product type.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "updated_at", + "type": "`string` \\| `Date`", + "description": "When the product was updated.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "variants", + "type": "[ProductVariantDTO](medusa.ProductVariantDTO.mdx)[]", + "description": "The associated product variants.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "weight", + "type": "`null` \\| `number`", + "description": "The weight of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "width", + "type": "`null` \\| `number`", + "description": "The width of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "title", + "type": "`string`", + "description": "The title of the product option.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "values", + "type": "[ProductOptionValueDTO](medusa.ProductOptionValueDTO.mdx)[]", + "description": "The associated product option values.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [ + { + "name": "deleted_at", + "type": "`string` \\| `Date`", + "description": "When the product option value was deleted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The ID of the product option value.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`null` \\| `Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "option", + "type": "[ProductOptionDTO](medusa.ProductOptionDTO.mdx)", + "description": "The associated product option. It may only be available if the `option` relation is expanded.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "value", + "type": "`string`", + "description": "The value of the product option value.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "variant", + "type": "[ProductVariantDTO](medusa.ProductVariantDTO.mdx)", + "description": "The associated product variant. It may only be available if the `variant` relation is expanded.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + } +]} expandUrl="https://docs.medusajs.com/development/entities/repositories#retrieving-a-list-of-records"/> diff --git a/www/apps/docs/content/references/medusa/interfaces/medusa.ProductOptionValueDTO.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductOptionValueDTO.mdx new file mode 100644 index 0000000000..12a3edacf9 --- /dev/null +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductOptionValueDTO.mdx @@ -0,0 +1,349 @@ +--- +displayed_sidebar: homepage +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# ProductOptionValueDTO + +The product option value's data. + +## Properties + +`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "option", + "type": "[ProductOptionDTO](medusa.ProductOptionDTO.mdx)", + "description": "The associated product option. It may only be available if the `option` relation is expanded.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [ + { + "name": "deleted_at", + "type": "`string` \\| `Date`", + "description": "When the product option was deleted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The ID of the product option.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`null` \\| `Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "product", + "type": "[ProductDTO](medusa.ProductDTO.mdx)", + "description": "The associated product.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "title", + "type": "`string`", + "description": "The title of the product option.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "values", + "type": "[ProductOptionValueDTO](medusa.ProductOptionValueDTO.mdx)[]", + "description": "The associated product option values.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + } + ] + }, + { + "name": "value", + "type": "`string`", + "description": "The value of the product option value.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "variant", + "type": "[ProductVariantDTO](medusa.ProductVariantDTO.mdx)", + "description": "The associated product variant. It may only be available if the `variant` relation is expanded.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [ + { + "name": "allow_backorder", + "type": "`boolean`", + "description": "Whether the product variant can be ordered when it's out of stock.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "barcode", + "type": "`null` \\| `string`", + "description": "The barcode of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "created_at", + "type": "`string` \\| `Date`", + "description": "When the product variant was created.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "deleted_at", + "type": "`string` \\| `Date`", + "description": "When the product variant was deleted.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "ean", + "type": "`null` \\| `string`", + "description": "The EAN of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "height", + "type": "`null` \\| `number`", + "description": "The height of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "hs_code", + "type": "`null` \\| `string`", + "description": "The HS Code of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The ID of the product variant.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "inventory_quantity", + "type": "`number`", + "description": "The inventory quantiy of the product variant.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "length", + "type": "`null` \\| `number`", + "description": "The length of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "manage_inventory", + "type": "`boolean`", + "description": "Whether the product variant's inventory should be managed by the core system.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "material", + "type": "`null` \\| `string`", + "description": "The material of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`null` \\| `Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "mid_code", + "type": "`null` \\| `string`", + "description": "The MID Code of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "options", + "type": "[ProductOptionValueDTO](medusa.ProductOptionValueDTO.mdx)[]", + "description": "The associated product options.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "origin_country", + "type": "`null` \\| `string`", + "description": "The origin country of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "product", + "type": "[ProductDTO](medusa.ProductDTO.mdx)", + "description": "The associated product.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "product_id", + "type": "`string`", + "description": "The ID of the associated product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "sku", + "type": "`null` \\| `string`", + "description": "The SKU of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "title", + "type": "`string`", + "description": "The tile of the product variant.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "upc", + "type": "`null` \\| `string`", + "description": "The UPC of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "updated_at", + "type": "`string` \\| `Date`", + "description": "When the product variant was updated.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "variant_rank", + "type": "`null` \\| `number`", + "description": "he ranking of the variant among other variants associated with the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "weight", + "type": "`null` \\| `number`", + "description": "The weight of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "width", + "type": "`null` \\| `number`", + "description": "The width of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + } +]} expandUrl="https://docs.medusajs.com/development/entities/repositories#retrieving-a-list-of-records"/> diff --git a/www/apps/docs/content/references/medusa/interfaces/medusa.ProductTagDTO.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductTagDTO.mdx new file mode 100644 index 0000000000..5fd2e15656 --- /dev/null +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductTagDTO.mdx @@ -0,0 +1,312 @@ +--- +displayed_sidebar: homepage +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# ProductTagDTO + +A product tag's data. + +## Properties + +`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "products", + "type": "[ProductDTO](medusa.ProductDTO.mdx)[]", + "description": "The associated products.", + "optional": true, + "defaultValue": "", + "expandable": true, + "children": [ + { + "name": "categories", + "type": "`null` \\| [ProductCategoryDTO](medusa.ProductCategoryDTO.mdx)[]", + "description": "The associated product categories.", + "optional": true, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "collection", + "type": "[ProductCollectionDTO](medusa.ProductCollectionDTO.mdx)", + "description": "The associated product collection.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "created_at", + "type": "`string` \\| `Date`", + "description": "When the product was created.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "deleted_at", + "type": "`string` \\| `Date`", + "description": "When the product was deleted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "description", + "type": "`null` \\| `string`", + "description": "The description of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "discountable", + "type": "`boolean`", + "description": "Whether the product can be discounted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "external_id", + "type": "`null` \\| `string`", + "description": "The ID of the product in an external system. This is useful if you're integrating the product with a third-party service and want to maintain\na reference to the ID in the integrated service.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "handle", + "type": "`null` \\| `string`", + "description": "The handle of the product. The handle can be used to create slug URL paths.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "height", + "type": "`null` \\| `number`", + "description": "The height of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "hs_code", + "type": "`null` \\| `string`", + "description": "The HS Code of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The ID of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "images", + "type": "[ProductImageDTO](medusa.ProductImageDTO.mdx)[]", + "description": "The associated product images.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "is_giftcard", + "type": "`boolean`", + "description": "Whether the product is a gift card.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "length", + "type": "`null` \\| `number`", + "description": "The length of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "material", + "type": "`null` \\| `string`", + "description": "The material of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "mid_code", + "type": "`null` \\| `string`", + "description": "The MID Code of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "options", + "type": "[ProductOptionDTO](medusa.ProductOptionDTO.mdx)[]", + "description": "The associated product options.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "origin_country", + "type": "`null` \\| `string`", + "description": "The origin country of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "status", + "type": "[ProductStatus](../enums/medusa.ProductStatus.mdx)", + "description": "The status of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "subtitle", + "type": "`null` \\| `string`", + "description": "The subttle of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "tags", + "type": "[ProductTagDTO](medusa.ProductTagDTO.mdx)[]", + "description": "The associated product tags.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "thumbnail", + "type": "`null` \\| `string`", + "description": "The URL of the product's thumbnail.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "title", + "type": "`string`", + "description": "The title of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "type", + "type": "[ProductTypeDTO](medusa.ProductTypeDTO.mdx)[]", + "description": "The associated product type.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "updated_at", + "type": "`string` \\| `Date`", + "description": "When the product was updated.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "variants", + "type": "[ProductVariantDTO](medusa.ProductVariantDTO.mdx)[]", + "description": "The associated product variants.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "weight", + "type": "`null` \\| `number`", + "description": "The weight of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "width", + "type": "`null` \\| `number`", + "description": "The width of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "value", + "type": "`string`", + "description": "The value of the product tag.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} expandUrl="https://docs.medusajs.com/development/entities/repositories#retrieving-a-list-of-records"/> diff --git a/www/apps/docs/content/references/medusa/interfaces/medusa.ProductTypeDTO.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductTypeDTO.mdx new file mode 100644 index 0000000000..7bac24ebd4 --- /dev/null +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductTypeDTO.mdx @@ -0,0 +1,50 @@ +--- +displayed_sidebar: homepage +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# ProductTypeDTO + +A product type's data. + +## Properties + +`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "value", + "type": "`string`", + "description": "The value of the product type.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} expandUrl="https://docs.medusajs.com/development/entities/repositories#retrieving-a-list-of-records"/> diff --git a/www/apps/docs/content/references/medusa/interfaces/medusa.ProductVariantDTO.mdx b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductVariantDTO.mdx new file mode 100644 index 0000000000..0fb293b2e9 --- /dev/null +++ b/www/apps/docs/content/references/medusa/interfaces/medusa.ProductVariantDTO.mdx @@ -0,0 +1,556 @@ +--- +displayed_sidebar: homepage +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# ProductVariantDTO + +A product variant's data. + +## Properties + +`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "mid_code", + "type": "`null` \\| `string`", + "description": "The MID Code of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "options", + "type": "[ProductOptionValueDTO](medusa.ProductOptionValueDTO.mdx)[]", + "description": "The associated product options.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [ + { + "name": "deleted_at", + "type": "`string` \\| `Date`", + "description": "When the product option value was deleted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The ID of the product option value.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`null` \\| `Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "option", + "type": "[ProductOptionDTO](medusa.ProductOptionDTO.mdx)", + "description": "The associated product option. It may only be available if the `option` relation is expanded.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "value", + "type": "`string`", + "description": "The value of the product option value.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "variant", + "type": "[ProductVariantDTO](medusa.ProductVariantDTO.mdx)", + "description": "The associated product variant. It may only be available if the `variant` relation is expanded.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "origin_country", + "type": "`null` \\| `string`", + "description": "The origin country of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "product", + "type": "[ProductDTO](medusa.ProductDTO.mdx)", + "description": "The associated product.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [ + { + "name": "categories", + "type": "`null` \\| [ProductCategoryDTO](medusa.ProductCategoryDTO.mdx)[]", + "description": "The associated product categories.", + "optional": true, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "collection", + "type": "[ProductCollectionDTO](medusa.ProductCollectionDTO.mdx)", + "description": "The associated product collection.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "created_at", + "type": "`string` \\| `Date`", + "description": "When the product was created.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "deleted_at", + "type": "`string` \\| `Date`", + "description": "When the product was deleted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "description", + "type": "`null` \\| `string`", + "description": "The description of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "discountable", + "type": "`boolean`", + "description": "Whether the product can be discounted.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "external_id", + "type": "`null` \\| `string`", + "description": "The ID of the product in an external system. This is useful if you're integrating the product with a third-party service and want to maintain\na reference to the ID in the integrated service.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "handle", + "type": "`null` \\| `string`", + "description": "The handle of the product. The handle can be used to create slug URL paths.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "height", + "type": "`null` \\| `number`", + "description": "The height of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "hs_code", + "type": "`null` \\| `string`", + "description": "The HS Code of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The ID of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "images", + "type": "[ProductImageDTO](medusa.ProductImageDTO.mdx)[]", + "description": "The associated product images.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "is_giftcard", + "type": "`boolean`", + "description": "Whether the product is a gift card.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "length", + "type": "`null` \\| `number`", + "description": "The length of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "material", + "type": "`null` \\| `string`", + "description": "The material of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`Record`", + "description": "Holds custom data in key-value pairs.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "mid_code", + "type": "`null` \\| `string`", + "description": "The MID Code of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "options", + "type": "[ProductOptionDTO](medusa.ProductOptionDTO.mdx)[]", + "description": "The associated product options.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "origin_country", + "type": "`null` \\| `string`", + "description": "The origin country of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "status", + "type": "[ProductStatus](../enums/medusa.ProductStatus.mdx)", + "description": "The status of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "subtitle", + "type": "`null` \\| `string`", + "description": "The subttle of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "tags", + "type": "[ProductTagDTO](medusa.ProductTagDTO.mdx)[]", + "description": "The associated product tags.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "thumbnail", + "type": "`null` \\| `string`", + "description": "The URL of the product's thumbnail.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "title", + "type": "`string`", + "description": "The title of the product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "type", + "type": "[ProductTypeDTO](medusa.ProductTypeDTO.mdx)[]", + "description": "The associated product type.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "updated_at", + "type": "`string` \\| `Date`", + "description": "When the product was updated.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "variants", + "type": "[ProductVariantDTO](medusa.ProductVariantDTO.mdx)[]", + "description": "The associated product variants.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "weight", + "type": "`null` \\| `number`", + "description": "The weight of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "width", + "type": "`null` \\| `number`", + "description": "The width of the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "product_id", + "type": "`string`", + "description": "The ID of the associated product.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "sku", + "type": "`null` \\| `string`", + "description": "The SKU of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "title", + "type": "`string`", + "description": "The tile of the product variant.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "upc", + "type": "`null` \\| `string`", + "description": "The UPC of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "updated_at", + "type": "`string` \\| `Date`", + "description": "When the product variant was updated.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "variant_rank", + "type": "`null` \\| `number`", + "description": "he ranking of the variant among other variants associated with the product.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "weight", + "type": "`null` \\| `number`", + "description": "The weight of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "width", + "type": "`null` \\| `number`", + "description": "The width of the product variant.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} expandUrl="https://docs.medusajs.com/development/entities/repositories#retrieving-a-list-of-records"/> diff --git a/www/apps/docs/content/references/medusa/types/medusa.AdminInventoryItemsLocationLevelsRes.mdx b/www/apps/docs/content/references/medusa/types/medusa.AdminInventoryItemsLocationLevelsRes.mdx index d8ad4521fc..39c2f72e48 100644 --- a/www/apps/docs/content/references/medusa/types/medusa.AdminInventoryItemsLocationLevelsRes.mdx +++ b/www/apps/docs/content/references/medusa/types/medusa.AdminInventoryItemsLocationLevelsRes.mdx @@ -40,114 +40,5 @@ Details of inventory items and their associated location levels. "children": [] } ] - }, - { - "name": "inventory_item.id", - "type": "`any`", - "description": "The id of the location", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "inventory_item.location_levels", - "type": "[InventoryLevelDTO](medusa.InventoryLevelDTO.mdx)[]", - "description": "List of stock levels at a given location", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "created_at", - "type": "`string` \\| `Date`", - "description": "The date with timezone at which the resource was created.", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "deleted_at", - "type": "`string` \\| `Date` \\| `null`", - "description": "The date with timezone at which the resource was deleted.", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "id", - "type": "`string`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "incoming_quantity", - "type": "`number`", - "description": "the incoming stock quantity of an inventory item at the given location ID", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "inventory_item_id", - "type": "`string`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "location_id", - "type": "`string`", - "description": "the item location ID", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "metadata", - "type": "`Record` \\| `null`", - "description": "An optional key-value map with additional details", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "reserved_quantity", - "type": "`number`", - "description": "the reserved stock quantity of an inventory item at the given location ID", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "stocked_quantity", - "type": "`number`", - "description": "the total stock quantity of an inventory item at the given location ID", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "updated_at", - "type": "`string` \\| `Date`", - "description": "The date with timezone at which the resource was updated.", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - } - ] } ]} /> diff --git a/www/apps/docs/content/references/medusa/types/medusa.DeleteResponse-1.mdx b/www/apps/docs/content/references/medusa/types/medusa.DeleteResponse-1.mdx index 8ff4f131f7..91a103e12c 100644 --- a/www/apps/docs/content/references/medusa/types/medusa.DeleteResponse-1.mdx +++ b/www/apps/docs/content/references/medusa/types/medusa.DeleteResponse-1.mdx @@ -18,7 +18,7 @@ The fields returned in the response of a DELETE request. "type": "`boolean`", "description": "Whether the item was deleted successfully.", "optional": false, - "defaultValue": "", + "defaultValue": "true", "expandable": false, "children": [] }, @@ -36,7 +36,7 @@ The fields returned in the response of a DELETE request. "type": "`string`", "description": "The type of the item that was deleted.", "optional": false, - "defaultValue": "", + "defaultValue": "stock_location", "expandable": false, "children": [] } diff --git a/www/apps/docs/content/references/medusa/types/medusa.ExternalModuleDeclaration.mdx b/www/apps/docs/content/references/medusa/types/medusa.ExternalModuleDeclaration.mdx index 6488386e7a..ea02180b76 100644 --- a/www/apps/docs/content/references/medusa/types/medusa.ExternalModuleDeclaration.mdx +++ b/www/apps/docs/content/references/medusa/types/medusa.ExternalModuleDeclaration.mdx @@ -183,32 +183,5 @@ import ParameterTypes from "@site/src/components/ParameterTypes" "children": [] } ] - }, - { - "name": "server.keepAlive", - "type": "`boolean`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "server.type", - "type": "`\"http\"`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "server.url", - "type": "`string`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] } ]} /> diff --git a/www/apps/docs/content/references/medusa/types/medusa.InnerSelector.mdx b/www/apps/docs/content/references/medusa/types/medusa.InnerSelector.mdx new file mode 100644 index 0000000000..32bec8d37f --- /dev/null +++ b/www/apps/docs/content/references/medusa/types/medusa.InnerSelector.mdx @@ -0,0 +1,23 @@ +--- +displayed_sidebar: homepage +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# InnerSelector + + **InnerSelector**: { [key in keyof TEntity]?: TEntity[key] \| TEntity[key][] \| DateComparisonOperator \| StringComparisonOperator \| NumericalComparisonOperator \| FindOperator<TEntity[key][] \| string \| string[]> } + +## Type Parameters + + diff --git a/www/apps/docs/content/references/medusa/types/medusa.MedusaErrorHandlerFunction.mdx b/www/apps/docs/content/references/medusa/types/medusa.MedusaErrorHandlerFunction.mdx index 3fc0a97e82..8911125f63 100644 --- a/www/apps/docs/content/references/medusa/types/medusa.MedusaErrorHandlerFunction.mdx +++ b/www/apps/docs/content/references/medusa/types/medusa.MedusaErrorHandlerFunction.mdx @@ -95,7 +95,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" }, { "name": "user", - "type": "`Object`", + "type": "`object`", "description": "", "optional": true, "defaultValue": "", diff --git a/www/apps/docs/content/references/medusa/types/medusa.MedusaRequestHandler.mdx b/www/apps/docs/content/references/medusa/types/medusa.MedusaRequestHandler.mdx index 8395502e36..7d2c096a5d 100644 --- a/www/apps/docs/content/references/medusa/types/medusa.MedusaRequestHandler.mdx +++ b/www/apps/docs/content/references/medusa/types/medusa.MedusaRequestHandler.mdx @@ -86,7 +86,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" }, { "name": "user", - "type": "`Object`", + "type": "`object`", "description": "", "optional": true, "defaultValue": "", diff --git a/www/apps/docs/content/references/medusa/types/medusa.PaginatedResponse-1.mdx b/www/apps/docs/content/references/medusa/types/medusa.PaginatedResponse-1.mdx index f67457d3da..2ee74f9233 100644 --- a/www/apps/docs/content/references/medusa/types/medusa.PaginatedResponse-1.mdx +++ b/www/apps/docs/content/references/medusa/types/medusa.PaginatedResponse-1.mdx @@ -14,7 +14,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" { "name": "count", "type": "`number`", - "description": "", + "description": "The total number of notifications", "optional": false, "defaultValue": "", "expandable": false, @@ -23,7 +23,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" { "name": "limit", "type": "`number`", - "description": "", + "description": "The number of notifications per page", "optional": false, "defaultValue": "", "expandable": false, @@ -32,7 +32,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" { "name": "offset", "type": "`number`", - "description": "", + "description": "The number of notifications skipped when retrieving the notifications.", "optional": false, "defaultValue": "", "expandable": false, diff --git a/www/apps/docs/content/references/medusa/types/medusa.PaymentContext.mdx b/www/apps/docs/content/references/medusa/types/medusa.PaymentContext.mdx index 3f2194e9fd..91d194ea23 100644 --- a/www/apps/docs/content/references/medusa/types/medusa.PaymentContext.mdx +++ b/www/apps/docs/content/references/medusa/types/medusa.PaymentContext.mdx @@ -84,242 +84,6 @@ import ParameterTypes from "@site/src/components/ParameterTypes" } ] }, - { - "name": "cart.billing_address", - "type": "[Address](../../entities/classes/entities.Address.mdx) \\| `null`", - "description": "", - "optional": true, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "cart.context", - "type": "`Record`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "cart.email", - "type": "`string`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "cart.id", - "type": "`string`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "cart.shipping_address", - "type": "[Address](../../entities/classes/entities.Address.mdx) \\| `null`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "cart.shipping_methods", - "type": "[ShippingMethod](../../entities/classes/entities.ShippingMethod.mdx)[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "cart", - "type": "[Cart](../../entities/classes/entities.Cart.mdx)", - "description": "The details of the cart that the shipping method is used in.", - "optional": false, - "defaultValue": "", - "expandable": true, - "children": [] - }, - { - "name": "cart_id", - "type": "`string`", - "description": "The ID of the cart that the shipping method is used in.", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "claim_order", - "type": "[ClaimOrder](../../entities/classes/entities.ClaimOrder.mdx)", - "description": "The details of the claim that the shipping method is used in.", - "optional": false, - "defaultValue": "", - "expandable": true, - "children": [] - }, - { - "name": "claim_order_id", - "type": "`null` \\| `string`", - "description": "The ID of the claim that the shipping method is used in.", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "data", - "type": "`Record`", - "description": "Additional data that the Fulfillment Provider needs to fulfill the shipment. This is used in combination with the Shipping Options data, and may contain information such as a drop point id.", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "id", - "type": "`string`", - "description": "The shipping method's ID", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "includes_tax", - "type": "`boolean`", - "description": "Whether the shipping method price include tax", - "optional": false, - "defaultValue": "false", - "expandable": false, - "featureFlag": "tax_inclusive_pricing", - "children": [] - }, - { - "name": "order", - "type": "[Order](../../entities/classes/entities.Order.mdx)", - "description": "The details of the order that the shipping method is used in.", - "optional": false, - "defaultValue": "", - "expandable": true, - "children": [] - }, - { - "name": "order_id", - "type": "`string`", - "description": "The ID of the order that the shipping method is used in.", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "price", - "type": "`number`", - "description": "The amount to charge for the Shipping Method. The currency of the price is defined by the Region that the Order that the Shipping Method belongs to is a part of.", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "return_id", - "type": "`string`", - "description": "The ID of the return that the shipping method is used in.", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "return_order", - "type": "[Return](../../entities/classes/entities.Return.mdx)", - "description": "The details of the return that the shipping method is used in.", - "optional": false, - "defaultValue": "", - "expandable": true, - "children": [] - }, - { - "name": "shipping_option", - "type": "[ShippingOption](../../entities/classes/entities.ShippingOption.mdx)", - "description": "The details of the shipping option the method was created from.", - "optional": false, - "defaultValue": "", - "expandable": true, - "children": [] - }, - { - "name": "shipping_option_id", - "type": "`string`", - "description": "The ID of the Shipping Option that the Shipping Method is built from.", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "subtotal", - "type": "`number`", - "description": "The subtotal of the shipping", - "optional": true, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "swap", - "type": "[Swap](../../entities/classes/entities.Swap.mdx)", - "description": "The details of the swap that the shipping method is used in.", - "optional": false, - "defaultValue": "", - "expandable": true, - "children": [] - }, - { - "name": "swap_id", - "type": "`string`", - "description": "The ID of the swap that the shipping method is used in.", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "tax_lines", - "type": "[ShippingMethodTaxLine](../../entities/classes/entities.ShippingMethodTaxLine.mdx)[]", - "description": "The details of the tax lines applied on the shipping method.", - "optional": false, - "defaultValue": "", - "expandable": true, - "children": [] - }, - { - "name": "tax_total", - "type": "`number`", - "description": "The total of tax", - "optional": true, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "total", - "type": "`number`", - "description": "The total amount of the shipping", - "optional": true, - "defaultValue": "", - "expandable": false, - "children": [] - } - ] - }, { "name": "currency_code", "type": "`string`", diff --git a/www/apps/docs/content/references/medusa/types/medusa.PaymentSessionResponse.mdx b/www/apps/docs/content/references/medusa/types/medusa.PaymentSessionResponse.mdx index cd94c5e448..1b4f655a2d 100644 --- a/www/apps/docs/content/references/medusa/types/medusa.PaymentSessionResponse.mdx +++ b/www/apps/docs/content/references/medusa/types/medusa.PaymentSessionResponse.mdx @@ -38,14 +38,5 @@ import ParameterTypes from "@site/src/components/ParameterTypes" "children": [] } ] - }, - { - "name": "update_requests.customer_metadata", - "type": "`Record`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] } ]} /> diff --git a/www/apps/docs/content/references/medusa/types/medusa.Selector.mdx b/www/apps/docs/content/references/medusa/types/medusa.Selector.mdx index 5525cd69d3..8b921d8758 100644 --- a/www/apps/docs/content/references/medusa/types/medusa.Selector.mdx +++ b/www/apps/docs/content/references/medusa/types/medusa.Selector.mdx @@ -6,7 +6,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" # Selector - **Selector**: { [key in keyof TEntity]?: TEntity[key] \| TEntity[key][] \| DateComparisonOperator \| StringComparisonOperator \| NumericalComparisonOperator \| FindOperator<TEntity[key][] \| string \| string[]> } + **Selector**: [InnerSelector](medusa.InnerSelector.mdx)<TEntity> \| [InnerSelector](medusa.InnerSelector.mdx)<TEntity>[] ## Type Parameters diff --git a/www/apps/docs/content/references/modules/medusa.mdx b/www/apps/docs/content/references/modules/medusa.mdx index 791fe7a8a0..eaa9147dab 100644 --- a/www/apps/docs/content/references/modules/medusa.mdx +++ b/www/apps/docs/content/references/modules/medusa.mdx @@ -16,6 +16,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" - [PriceListStatus](../medusa/enums/medusa.PriceListStatus-1.mdx) - [PriceListType](../medusa/enums/medusa.PriceListType.mdx) - [PriceListType](../medusa/enums/medusa.PriceListType-1.mdx) +- [ProductStatus](../medusa/enums/medusa.ProductStatus.mdx) ## Classes @@ -87,7 +88,6 @@ import ParameterTypes from "@site/src/components/ParameterTypes" - [AdminGetProductTypesParams](../medusa/classes/medusa.AdminGetProductTypesParams.mdx) - [AdminGetProductsParams](../medusa/classes/medusa.AdminGetProductsParams.mdx) - [AdminGetProductsVariantsParams](../medusa/classes/medusa.AdminGetProductsVariantsParams.mdx) -- [AdminGetRegionsPaginationParams](../medusa/classes/medusa.AdminGetRegionsPaginationParams.mdx) - [AdminGetRegionsParams](../medusa/classes/medusa.AdminGetRegionsParams.mdx) - [AdminGetRegionsRegionFulfillmentOptionsRes](../medusa/classes/medusa.AdminGetRegionsRegionFulfillmentOptionsRes.mdx) - [AdminGetReservationsParams](../medusa/classes/medusa.AdminGetReservationsParams.mdx) @@ -333,6 +333,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" - [StoreGetProductsPaginationParams](../medusa/classes/medusa.StoreGetProductsPaginationParams.mdx) - [StoreGetProductsParams](../medusa/classes/medusa.StoreGetProductsParams.mdx) - [StoreGetRegionsParams](../medusa/classes/medusa.StoreGetRegionsParams.mdx) +- [StoreGetRegionsRegionParams](../medusa/classes/medusa.StoreGetRegionsRegionParams.mdx) - [StoreGetShippingOptionsParams](../medusa/classes/medusa.StoreGetShippingOptionsParams.mdx) - [StoreGetVariantsParams](../medusa/classes/medusa.StoreGetVariantsParams.mdx) - [StoreGetVariantsVariantParams](../medusa/classes/medusa.StoreGetVariantsVariantParams.mdx) @@ -383,8 +384,19 @@ import ParameterTypes from "@site/src/components/ParameterTypes" - [MedusaRequest](../medusa/interfaces/medusa.MedusaRequest.mdx) - [PaginatedResponse](../medusa/interfaces/medusa.PaginatedResponse.mdx) - [PaymentProcessor](../medusa/interfaces/medusa.PaymentProcessor.mdx) +- [PaymentProcessorContext](../medusa/interfaces/medusa.PaymentProcessorContext.mdx) - [PaymentProcessorError](../medusa/interfaces/medusa.PaymentProcessorError.mdx) +- [PaymentProcessorSessionResponse](../medusa/interfaces/medusa.PaymentProcessorSessionResponse.mdx) - [PaymentService](../medusa/interfaces/medusa.PaymentService.mdx) +- [ProductCategoryDTO](../medusa/interfaces/medusa.ProductCategoryDTO.mdx) +- [ProductCollectionDTO](../medusa/interfaces/medusa.ProductCollectionDTO.mdx) +- [ProductDTO](../medusa/interfaces/medusa.ProductDTO.mdx) +- [ProductImageDTO](../medusa/interfaces/medusa.ProductImageDTO.mdx) +- [ProductOptionDTO](../medusa/interfaces/medusa.ProductOptionDTO.mdx) +- [ProductOptionValueDTO](../medusa/interfaces/medusa.ProductOptionValueDTO.mdx) +- [ProductTagDTO](../medusa/interfaces/medusa.ProductTagDTO.mdx) +- [ProductTypeDTO](../medusa/interfaces/medusa.ProductTypeDTO.mdx) +- [ProductVariantDTO](../medusa/interfaces/medusa.ProductVariantDTO.mdx) - [RequestQueryFields](../medusa/interfaces/medusa.RequestQueryFields.mdx) - [SubscriberContext](../medusa/interfaces/medusa.SubscriberContext.mdx) @@ -538,6 +550,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" - [GetUploadedFileType](../medusa/types/medusa.GetUploadedFileType.mdx) - [GiftCardAllocation](../medusa/types/medusa.GiftCardAllocation.mdx) - [HttpCompressionOptions](../medusa/types/medusa.HttpCompressionOptions.mdx) +- [InnerSelector](../medusa/types/medusa.InnerSelector.mdx) - [InternalModuleDeclaration](../medusa/types/medusa.InternalModuleDeclaration.mdx) - [InventoryItemDTO](../medusa/types/medusa.InventoryItemDTO.mdx) - [InventoryLevelDTO](../medusa/types/medusa.InventoryLevelDTO.mdx) @@ -567,8 +580,6 @@ import ParameterTypes from "@site/src/components/ParameterTypes" - [PartialPick](../medusa/types/medusa.PartialPick.mdx) - [PaymentContext](../medusa/types/medusa.PaymentContext.mdx) - [PaymentData](../medusa/types/medusa.PaymentData.mdx) -- [PaymentProcessorContext](../medusa/types/medusa.PaymentProcessorContext.mdx) -- [PaymentProcessorSessionResponse](../medusa/types/medusa.PaymentProcessorSessionResponse.mdx) - [PaymentSessionData](../medusa/types/medusa.PaymentSessionData.mdx) - [PaymentSessionResponse](../medusa/types/medusa.PaymentSessionResponse.mdx) - [PriceListLoadConfig](../medusa/types/medusa.PriceListLoadConfig.mdx) @@ -1039,62 +1050,6 @@ ___ } ] }, - { - "name": "price_list_rules.price_list_rule_values", - "type": "`object`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - } - ] - }, - { - "name": "price_list_rules.price_list_rule_values.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "price_list_rules.rule_type", - "type": "`object`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - } - ] - }, - { - "name": "price_list_rules.rule_type.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, { "name": "price_set_money_amounts", "type": "`object`", @@ -1122,6 +1077,34 @@ ___ } ] }, + { + "name": "price_rules", + "type": "`object`", + "description": "", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [ + { + "name": "fields", + "type": "`string`[]", + "description": "", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "rule_type", + "type": "`object`", + "description": "", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, { "name": "price_set", "type": "`object`", @@ -1142,120 +1125,6 @@ ___ ] } ] - }, - { - "name": "price_set_money_amounts.money_amount", - "type": "`object`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - } - ] - }, - { - "name": "price_set_money_amounts.money_amount.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "price_set_money_amounts.price_set", - "type": "`object`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "variant_link", - "type": "`object`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "variant", - "type": "`object`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - } - ] - } - ] - }, - { - "name": "price_set_money_amounts.price_set.variant_link", - "type": "`object`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "variant", - "type": "`object`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "defaultAdminProductRemoteQueryObject.variants.fields", - "expandable": false, - "children": [] - } - ] - } - ] - }, - { - "name": "price_set_money_amounts.price_set.variant_link.variant", - "type": "`object`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "defaultAdminProductRemoteQueryObject.variants.fields", - "expandable": false, - "children": [] - } - ] - }, - { - "name": "price_set_money_amounts.price_set.variant_link.variant.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "defaultAdminProductRemoteQueryObject.variants.fields", - "expandable": false, - "children": [] } ]} /> @@ -1307,15 +1176,6 @@ This is temporary. } ] }, - { - "name": "categories.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, { "name": "collection", "type": "`object`", @@ -1335,15 +1195,6 @@ This is temporary. } ] }, - { - "name": "collection.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, { "name": "fields", "type": "keyof [Product](../entities/classes/entities.Product.mdx)[]", @@ -1372,15 +1223,6 @@ This is temporary. } ] }, - { - "name": "images.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, { "name": "options", "type": "`object`", @@ -1419,43 +1261,6 @@ This is temporary. } ] }, - { - "name": "options.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "options.values", - "type": "`object`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - } - ] - }, - { - "name": "options.values.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, { "name": "profile", "type": "`object`", @@ -1476,13 +1281,23 @@ This is temporary. ] }, { - "name": "profile.fields", - "type": "`string`[]", + "name": "sales_channels", + "type": "`object`", "description": "", "optional": false, "defaultValue": "", "expandable": false, - "children": [] + "children": [ + { + "name": "fields", + "type": "`string`[]", + "description": "", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] }, { "name": "tags", @@ -1503,15 +1318,6 @@ This is temporary. } ] }, - { - "name": "tags.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, { "name": "type", "type": "`object`", @@ -1531,15 +1337,6 @@ This is temporary. } ] }, - { - "name": "type.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, { "name": "variants", "type": "`object`", @@ -1577,43 +1374,6 @@ This is temporary. ] } ] - }, - { - "name": "variants.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "variants.options", - "type": "`object`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - } - ] - }, - { - "name": "variants.options.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] } ]} /> @@ -1922,15 +1682,6 @@ This is temporary. } ] }, - { - "name": "collection.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, { "name": "fields", "type": "keyof [Product](../entities/classes/entities.Product.mdx)[]", @@ -1959,15 +1710,6 @@ This is temporary. } ] }, - { - "name": "images.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, { "name": "options", "type": "`object`", @@ -2006,43 +1748,6 @@ This is temporary. } ] }, - { - "name": "options.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "options.values", - "type": "`object`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - } - ] - }, - { - "name": "options.values.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, { "name": "profile", "type": "`object`", @@ -2063,13 +1768,23 @@ This is temporary. ] }, { - "name": "profile.fields", - "type": "`string`[]", + "name": "sales_channels", + "type": "`object`", "description": "", "optional": false, "defaultValue": "", "expandable": false, - "children": [] + "children": [ + { + "name": "fields", + "type": "`string`[]", + "description": "", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] }, { "name": "tags", @@ -2090,15 +1805,6 @@ This is temporary. } ] }, - { - "name": "tags.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, { "name": "type", "type": "`object`", @@ -2118,15 +1824,6 @@ This is temporary. } ] }, - { - "name": "type.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, { "name": "variants", "type": "`object`", @@ -2164,43 +1861,6 @@ This is temporary. ] } ] - }, - { - "name": "variants.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - }, - { - "name": "variants.options", - "type": "`object`", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [ - { - "name": "fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] - } - ] - }, - { - "name": "variants.options.fields", - "type": "`string`[]", - "description": "", - "optional": false, - "defaultValue": "", - "expandable": false, - "children": [] } ]} /> @@ -2242,6 +1902,18 @@ ___ ___ +### defaultStoreRegionFields + + `Const` **defaultStoreRegionFields**: `string`[] + +___ + +### defaultStoreRegionRelations + + `Const` **defaultStoreRegionRelations**: `string`[] + +___ + ### defaultStoreReturnReasonFields `Const` **defaultStoreReturnReasonFields**: keyof [ReturnReason](../entities/classes/entities.ReturnReason.mdx)[] @@ -7940,7 +7612,7 @@ Generate a composed id based on the input parameters and return either the is if "name": "idProperty", "type": "`string`", "description": "", - "optional": false, + "optional": true, "defaultValue": "", "expandable": false, "children": [] @@ -7972,66 +7644,6 @@ Generate a composed id based on the input parameters and return either the is if ___ -### getProductWithIsolatedProductModule - -#### Parameters - - - -#### Returns - - - -___ - ### getRequestedBatchJob #### Parameters @@ -8092,6 +7704,86 @@ ___ ___ +### getVariantsFromPriceList + +#### Parameters + + [MedusaContainer](../medusa/types/medusa.MedusaContainer-1.mdx)", + "description": "", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "registerAdd", + "type": "``(`name`: `string`, `registration`: `T`) => [MedusaContainer](../medusa/types/medusa.MedusaContainer-1.mdx)", + "description": "", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "priceListId", + "type": "`string`", + "description": "", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + + + +___ + ### hasChanges Compare two objects and return true if there is changes detected from obj2 compared to obj1 @@ -8548,19 +8240,38 @@ ___ ___ -### listAndCountProductWithIsolatedProductModule +### listProducts #### Parameters [MedusaContainer](../medusa/types/medusa.MedusaContainer-1.mdx)", + "description": "", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "registerAdd", + "type": "``(`name`: `string`, `registration`: `T`) => [MedusaContainer](../medusa/types/medusa.MedusaContainer-1.mdx)", + "description": "", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] }, { "name": "filterableFields", @@ -14277,6 +13988,66 @@ ___ ___ +### retrieveProduct + +#### Parameters + + + +#### Returns + + + +___ + ### setMetadata Dedicated method to set metadata. diff --git a/www/apps/docs/content/references/modules/payment.mdx b/www/apps/docs/content/references/modules/payment.mdx new file mode 100644 index 0000000000..ed1bcf4ee7 --- /dev/null +++ b/www/apps/docs/content/references/modules/payment.mdx @@ -0,0 +1,84 @@ +import ParameterTypes from "@site/src/components/ParameterTypes" + +# payment + +## Classes + +- [AbstractPaymentProcessor](../payment/classes/payment.AbstractPaymentProcessor.mdx) + +## Interfaces + +- [PaymentProcessor](../payment/interfaces/payment.PaymentProcessor.mdx) +- [PaymentProcessorContext](../payment/interfaces/payment.PaymentProcessorContext.mdx) +- [PaymentProcessorError](../payment/interfaces/payment.PaymentProcessorError.mdx) +- [PaymentProcessorSessionResponse](../payment/interfaces/payment.PaymentProcessorSessionResponse.mdx) + +___ + +## Functions + +### isPaymentProcessor + +Return if the input object is AbstractPaymentProcessor + +#### Parameters + + + +#### Returns + + + +___ + +### isPaymentProcessorError + +Utility function to determine if an object is a processor error + +#### Parameters + + + +#### Returns + + diff --git a/www/apps/docs/content/references/payment/classes/payment.AbstractPaymentProcessor.mdx b/www/apps/docs/content/references/payment/classes/payment.AbstractPaymentProcessor.mdx new file mode 100644 index 0000000000..e193a94bf0 --- /dev/null +++ b/www/apps/docs/content/references/payment/classes/payment.AbstractPaymentProcessor.mdx @@ -0,0 +1,1134 @@ +--- +displayed_sidebar: modules +slug: /modules/carts-and-checkout/backend/add-payment-provider +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# How to Create a Payment Processor + +In this document, you’ll learn how to create a Payment Processor in your Medusa backend. If you’re unfamiliar with the Payment architecture in Medusa, make sure to check out the [overview](https://docs.medusajs.com/modules/carts-and-checkout/payment) first. + +## Overview + +A Payment Processor is the payment method used to authorize, capture, and refund payment, among other actions. An example of a Payment Processor is Stripe. + +By default, Medusa has a `manual` payment provider that has minimal implementation. It can be synonymous with a Cash on Delivery payment method. It allows +store operators to manage the payment themselves but still keep track of its different stages on Medusa. + +A payment processor is a service that extends the `AbstractPaymentProcessor` and implements its methods. So, adding a Payment Processor is as simple as +creating a service file in `src/services`. The file's name is the payment processor's class name as a slug and without the word `Service`. +For example, if you're creating a `MyPaymentService` class, the file name is `src/services/my-payment.ts`. + +```ts +import { AbstractPaymentProcessor } from "@medusajs/medusa"; + +class MyPaymentService extends AbstractPaymentProcessor { + // methods here... +} + +export default MyPaymentService +``` + +The methods of the payment processor are used at different points in the Checkout flow as well as when processing an order after it’s placed. + +![Checkout Flow - Payment](https://res.cloudinary.com/dza7lstvk/image/upload/v1680177820/Medusa%20Docs/Diagrams/checkout-payment\_cy9efp.jpg) + +--- + +## Identifier Property + +The `PaymentProvider` entity has 2 properties: `id` and `is_installed`. The `identifier` property in the payment processor service is used when the payment processor is added to the database. + +The value of this property is also used to reference the payment processor throughout Medusa. +For example, it is used to [add a payment processor](https://docs.medusajs.com/api/admin#regions\_postregionsregionpaymentproviders) to a region. + +```ts +class MyPaymentService extends AbstractPaymentProcessor { + static identifier = "my-payment" + // ... +} +``` + +--- + +## PaymentProcessorError + +Before diving into the methods of the Payment Processor, you'll notice that part of the expected return signature of these method includes `PaymentProcessorError`. + +```ts +interface PaymentProcessorError { + error: string + code?: string + detail?: any +} +``` + +While implementing the Payment Processor's methods, if you need to inform the Medusa core that an error occurred at a certain stage, +return an object having the attributes defined in the `PaymentProcessorError` interface. + +For example, the Stripe payment processor has the following method to create the error object, which is used within other methods: + +```ts +abstract class StripeBase extends AbstractPaymentProcessor { + // ... + protected buildError( + message: string, + e: Stripe.StripeRawError | PaymentProcessorError | Error + ): PaymentProcessorError { + return { + error: message, + code: "code" in e ? e.code : "", + detail: isPaymentProcessorError(e) + ? `${e.error}${EOL}${e.detail ?? ""}` + : "detail" in e + ? e.detail + : e.message ?? "", + } + } + + // used in other methods + async retrievePayment( + paymentSessionData: Record + ): Promise< + PaymentProcessorError | + PaymentProcessorSessionResponse["session_data"] + > { + try { + // ... + } catch (e) { + return this.buildError( + "An error occurred in retrievePayment", + e + ) + } + } +} +``` + +--- + +## constructor + +You can use the `constructor` of your Payment Processor to have access to different services in Medusa through [dependency injection](https://docs.medusajs.com/development/fundamentals/dependency-injection). + +You can also use the constructor to initialize your integration with the third-party provider. For example, if you use a client to connect to the third-party provider’s APIs, +you can initialize it in the constructor and use it in other methods in the service. + +Additionally, if you’re creating your Payment Processor as an external plugin to be installed on any Medusa backend and you want to access the options added for the plugin, +you can access it in the constructor. The options are passed as a second parameter. + +### Example + +```ts +class MyPaymentService extends AbstractPaymentProcessor { + // ... + constructor(container, options) { + super(container) + // you can access options here + + // you can also initialize a client that + // communicates with a third-party service. + this.client = new Client(options) + } + // ... +} +``` + +### Parameters + + [MedusaContainer](../../medusa/types/medusa.MedusaContainer-2.mdx)", + "description": "", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "registerAdd", + "type": "``(`name`: `string`, `registration`: `T`) => [MedusaContainer](../../medusa/types/medusa.MedusaContainer-2.mdx)", + "description": "", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "config", + "type": "`Record`", + "description": "If this fulfillment provider is created in a plugin, the plugin's options are passed in this parameter.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +___ + +## Methods + +### authorizePayment + +This method is used to authorize payment using the Payment Session of an order. This is called when the +[cart is completed](https://docs.medusajs.com/api/store#carts\_postcartscartcomplete) and before the order is created. + +This method is also used for authorizing payments of a swap of an order and when authorizing sessions in a payment collection. +You can interact with a third-party provider and perform any actions necessary to authorize the payment. + +The payment authorization might require additional action from the customer before it is declared authorized. Once that additional action is performed, +the `authorizePayment` method will be called again to validate that the payment is now fully authorized. So, make sure to implement it for this case as well, if necessary. + +Once the payment is authorized successfully and the Payment Session status is set to `authorized`, the associated order or swap can then be placed or created. +If the payment authorization fails, then an error will be thrown and the order will not be created. + +:::note + +The payment authorization status is determined using the [getPaymentStatus](payment.AbstractPaymentProcessor.mdx#getpaymentstatus) method. If the status is `requires_more`, then it means additional actions are required +from the customer. If you try to create the order with a status that isn't `authorized`, the process will fail. + +::: + +#### Example + +```ts +import { + PaymentProcessorError, + PaymentSessionStatus, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async authorizePayment( + paymentSessionData: Record, + context: Record + ): Promise< + PaymentProcessorError | + { + status: PaymentSessionStatus; + data: Record; + } + > { + try { + await this.client.authorize(paymentSessionData.id) + + return { + status: PaymentSessionStatus.AUTHORIZED, + data: { + id: paymentSessionData.id + } + } + } catch (e) { + return { + error: e.message + } + } + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of the payment session.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "context", + "type": "`Record`", + "description": "The context of the authorization. It may include some of the following fields:\n\n- `ip`: The customer’s IP.\n- `idempotency_key`: The [Idempotency Key](https://docs.medusajs.com/modules/carts-and-checkout/payment#idempotency-key) that is associated with the current cart. It is useful when retrying payments, retrying checkout at a failed point, or for payments that require additional actions from the customer.\n- `cart_id`: The ID of a cart. This is only during operations like placing an order or creating a swap.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + + + +___ + +### cancelPayment + +This method is used to cancel an order’s payment. This method is typically triggered by one of the following situations: + +1. Before an order is placed and after the payment is authorized, an inventory check is done on products to ensure that products are still available for purchase. If the inventory check fails for any of the products, the payment is canceled. +2. If the store operator cancels the order from the admin. +3. When the payment of an order's swap is canceled. + +You can utilize this method to interact with the third-party provider and perform any actions necessary to cancel the payment. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async cancelPayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + const cancelData = this.client.cancel(paymentId) + + return { + id: paymentId, + ...cancelData + } + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of the Payment.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + +` \\| [PaymentProcessorError](../interfaces/payment.PaymentProcessorError.mdx)", + "optional": true, + "defaultValue": "", + "description": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +___ + +### capturePayment + +This method is used to capture the payment amount of an order. This is typically triggered manually by the store operator from the admin. + +This method is also used for capturing payments of a swap of an order, or when a request is sent to the [Capture Payment API Route](https://docs.medusajs.com/api/admin#payments\_postpaymentspaymentcapture). + +You can utilize this method to interact with the third-party provider and perform any actions necessary to capture the payment. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async capturePayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + const captureData = this.client.catch(paymentId) + + return { + id: paymentId, + ...captureData + } + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of the Payment for its first parameter.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + +` \\| [PaymentProcessorError](../interfaces/payment.PaymentProcessorError.mdx)", + "optional": true, + "defaultValue": "", + "description": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +___ + +### deletePayment + +This method is used to perform any actions necessary before a Payment Session is deleted. The Payment Session is deleted in one of the following cases: + +1. When a request is sent to [delete the Payment Session](https://docs.medusajs.com/api/store#carts\_deletecartscartpaymentsessionssession). +2. When the [Payment Session is refreshed](https://docs.medusajs.com/api/store#carts\_postcartscartpaymentsessionssession). The Payment Session is deleted so that a newer one is initialized instead. +3. When the Payment Processor is no longer available. This generally happens when the store operator removes it from the available Payment Processor in the admin. +4. When the region of the store is changed based on the cart information and the Payment Processor is not available in the new region. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async deletePayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + // assuming client is an initialized client + // communicating with a third-party service. + this.client.delete(paymentId) + + return {} + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of the Payment Session.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + +` \\| [PaymentProcessorError](../interfaces/payment.PaymentProcessorError.mdx)", + "optional": true, + "defaultValue": "", + "description": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +___ + +### getPaymentStatus + +This method is used to get the status of a Payment or a Payment Session. Its main usage is within the place order and create swap flows. +If the status returned is not `authorized` within these flows, then the payment is considered failed and an error will be thrown, stopping the flow from completion. + +#### Example + +```ts +import { + PaymentSessionStatus + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async getPaymentStatus( + paymentSessionData: Record + ): Promise { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + return await this.client.getStatus(paymentId) as PaymentSessionStatus + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of a Payment as a parameter. You can use this data to interact with the third-party provider to check the status of the payment if necessary.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + + + +___ + +### initiatePayment + +This method is called either if a region has only one payment provider enabled or when [a Payment Session is selected](https://docs.medusajs.com/api/store#carts\_postcartscartpaymentsession), +which occurs when the customer selects their preferred payment method during checkout. + +It is used to allow you to make any necessary calls to the third-party provider to initialize the payment. For example, in Stripe this method is used to create a Payment Intent for the customer. + +#### Example + +```ts +import { + PaymentContext, + PaymentSessionResponse, + // ... +} from "@medusajs/medusa" + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async initiatePayment( + context: PaymentProcessorContext + ): Promise< + PaymentProcessorError | PaymentProcessorSessionResponse + > { + // assuming client is an initialized client + // communicating with a third-party service. + const clientPayment = await this.client.initiate(context) + + return { + session_data: { + id: clientPayment.id + }, + } + } +} +``` + +#### Parameters + +`", + "description": "The cart's context.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "currency_code", + "type": "`string`", + "description": "The selected currency code, typically associated with the customer's cart.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "customer", + "type": "[Customer](../../entities/classes/entities.Customer.mdx)", + "description": "The customer associated with this payment.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "email", + "type": "`string`", + "description": "The customer's email.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "paymentSessionData", + "type": "`Record`", + "description": "If the payment session hasn't been created or initiated yet, it'll be an empty object.\nIf the payment session exists, it'll be the value of the payment session's `data` field.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "resource_id", + "type": "`string`", + "description": "The ID of the resource the payment is associated with. For example, the cart's ID.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +#### Returns + + + +___ + +### refundPayment + +This method is used to refund an order’s payment. This is typically triggered manually by the store operator from the admin. The refund amount might be the total order amount or part of it. + +This method is also used for refunding payments of a swap or a claim of an order, or when a request is sent to the [Refund Payment API Route](https://docs.medusajs.com/api/admin#payments\_postpaymentspaymentrefunds). + +You can utilize this method to interact with the third-party provider and perform any actions necessary to refund the payment. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async refundPayment( + paymentSessionData: Record, + refundAmount: number + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + const refundData = this.client.refund(paymentId, refundAmount) + + return { + id: paymentId, + ...refundData + } + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of a Payment.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "refundAmount", + "type": "`number`", + "description": "the amount to refund.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + +` \\| [PaymentProcessorError](../interfaces/payment.PaymentProcessorError.mdx)", + "optional": true, + "defaultValue": "", + "description": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +___ + +### retrievePayment + +This method is used to provide a uniform way of retrieving the payment information from the third-party provider. +For example, in Stripe’s Payment Processor this method is used to retrieve the payment intent details from Stripe. + +#### Example + +```ts +import { + PaymentProcessorError + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async retrievePayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + return await this.client.retrieve(paymentId) + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of a Payment Session. Make sure to store in the `data` field any necessary data that would allow you to retrieve the payment data from the third-party provider.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + +` \\| [PaymentProcessorError](../interfaces/payment.PaymentProcessorError.mdx)", + "optional": true, + "defaultValue": "", + "description": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +___ + +### updatePayment + +This method is used to update the payment session when the payment amount changes. It's called whenever the cart or any of its related data is updated. +For example, when a [line item is added to the cart](https://docs.medusajs.com/api/store#carts\_postcartscartlineitems) or when a +[shipping method is selected](https://docs.medusajs.com/api/store#carts\_postcartscartshippingmethod). + +#### Example + +```ts +import { + PaymentProcessorContext, + PaymentProcessorError, + PaymentProcessorSessionResponse, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async updatePayment( + context: PaymentProcessorContext + ): Promise< + void | + PaymentProcessorError | + PaymentProcessorSessionResponse + > { + // assuming client is an initialized client + // communicating with a third-party service. + const paymentId = context.paymentSessionData.id + + await this.client.update(paymentId, context) + + return { + session_data: context.paymentSessionData + } + } +} +``` + +#### Parameters + +`", + "description": "The cart's context.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "currency_code", + "type": "`string`", + "description": "The selected currency code, typically associated with the customer's cart.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "customer", + "type": "[Customer](../../entities/classes/entities.Customer.mdx)", + "description": "The customer associated with this payment.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "email", + "type": "`string`", + "description": "The customer's email.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "paymentSessionData", + "type": "`Record`", + "description": "If the payment session hasn't been created or initiated yet, it'll be an empty object.\nIf the payment session exists, it'll be the value of the payment session's `data` field.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "resource_id", + "type": "`string`", + "description": "The ID of the resource the payment is associated with. For example, the cart's ID.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +#### Returns + + + +___ + +### updatePaymentData + +This method is used to update the `data` field of a payment session. It's called when a request is sent to the +[Update Payment Session API Route](https://docs.medusajs.com/api/store#carts\_postcartscartpaymentsessionupdate), or when the `CartService`'s `updatePaymentSession` is used. + +This method can also be used to update the data in the third-party payment provider, if necessary. + +#### Example + +```ts +import { + PaymentProcessorError, + PaymentProviderService, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + protected paymentProviderService: PaymentProviderService + // ... + constructor(container, options) { + super(container) + this.paymentProviderService = container.paymentProviderService + // ... + } + // ... + async updatePaymentData( + sessionId: string, + data: Record + ): Promise< + Record | + PaymentProcessorError + > { + const paymentSession = await this.paymentProviderService.retrieveSession(sessionId) + // assuming client is an initialized client + // communicating with a third-party service. + const clientPayment = await this.client.update(paymentSession.data.id, data) + + return { + id: clientPayment.id + } + } +} +``` + +#### Parameters + +`", + "description": "The data to be updated in the payment session.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + +` \\| [PaymentProcessorError](../interfaces/payment.PaymentProcessorError.mdx)", + "optional": true, + "defaultValue": "", + "description": "", + "expandable": false, + "children": [] + } + ] + } +]} /> diff --git a/www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessor.mdx b/www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessor.mdx new file mode 100644 index 0000000000..d0d0e6ebc4 --- /dev/null +++ b/www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessor.mdx @@ -0,0 +1,1060 @@ +--- +displayed_sidebar: modules +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# PaymentProcessor + +## Overview + +A Payment Processor is the payment method used to authorize, capture, and refund payment, among other actions. An example of a Payment Processor is Stripe. + +By default, Medusa has a `manual` payment provider that has minimal implementation. It can be synonymous with a Cash on Delivery payment method. It allows +store operators to manage the payment themselves but still keep track of its different stages on Medusa. + +A payment processor is a service that extends the `AbstractPaymentProcessor` and implements its methods. So, adding a Payment Processor is as simple as +creating a service file in `src/services`. The file's name is the payment processor's class name as a slug and without the word `Service`. +For example, if you're creating a `MyPaymentService` class, the file name is `src/services/my-payment.ts`. + +```ts +import { AbstractPaymentProcessor } from "@medusajs/medusa"; + +class MyPaymentService extends AbstractPaymentProcessor { + // methods here... +} + +export default MyPaymentService +``` + +The methods of the payment processor are used at different points in the Checkout flow as well as when processing an order after it’s placed. + +![Checkout Flow - Payment](https://res.cloudinary.com/dza7lstvk/image/upload/v1680177820/Medusa%20Docs/Diagrams/checkout-payment\_cy9efp.jpg) + +--- + +## Identifier Property + +The `PaymentProvider` entity has 2 properties: `id` and `is_installed`. The `identifier` property in the payment processor service is used when the payment processor is added to the database. + +The value of this property is also used to reference the payment processor throughout Medusa. +For example, it is used to [add a payment processor](https://docs.medusajs.com/api/admin#regions\_postregionsregionpaymentproviders) to a region. + +```ts +class MyPaymentService extends AbstractPaymentProcessor { + static identifier = "my-payment" + // ... +} +``` + +--- + +## PaymentProcessorError + +Before diving into the methods of the Payment Processor, you'll notice that part of the expected return signature of these method includes `PaymentProcessorError`. + +```ts +interface PaymentProcessorError { + error: string + code?: string + detail?: any +} +``` + +While implementing the Payment Processor's methods, if you need to inform the Medusa core that an error occurred at a certain stage, +return an object having the attributes defined in the `PaymentProcessorError` interface. + +For example, the Stripe payment processor has the following method to create the error object, which is used within other methods: + +```ts +abstract class StripeBase extends AbstractPaymentProcessor { + // ... + protected buildError( + message: string, + e: Stripe.StripeRawError | PaymentProcessorError | Error + ): PaymentProcessorError { + return { + error: message, + code: "code" in e ? e.code : "", + detail: isPaymentProcessorError(e) + ? `${e.error}${EOL}${e.detail ?? ""}` + : "detail" in e + ? e.detail + : e.message ?? "", + } + } + + // used in other methods + async retrievePayment( + paymentSessionData: Record + ): Promise< + PaymentProcessorError | + PaymentProcessorSessionResponse["session_data"] + > { + try { + // ... + } catch (e) { + return this.buildError( + "An error occurred in retrievePayment", + e + ) + } + } +} +``` + +--- + +## Methods + +### authorizePayment + +This method is used to authorize payment using the Payment Session of an order. This is called when the +[cart is completed](https://docs.medusajs.com/api/store#carts\_postcartscartcomplete) and before the order is created. + +This method is also used for authorizing payments of a swap of an order and when authorizing sessions in a payment collection. +You can interact with a third-party provider and perform any actions necessary to authorize the payment. + +The payment authorization might require additional action from the customer before it is declared authorized. Once that additional action is performed, +the `authorizePayment` method will be called again to validate that the payment is now fully authorized. So, make sure to implement it for this case as well, if necessary. + +Once the payment is authorized successfully and the Payment Session status is set to `authorized`, the associated order or swap can then be placed or created. +If the payment authorization fails, then an error will be thrown and the order will not be created. + +:::note + +The payment authorization status is determined using the [getPaymentStatus](payment.PaymentProcessor.mdx#getpaymentstatus) method. If the status is `requires_more`, then it means additional actions are required +from the customer. If you try to create the order with a status that isn't `authorized`, the process will fail. + +::: + +#### Example + +```ts +import { + PaymentProcessorError, + PaymentSessionStatus, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async authorizePayment( + paymentSessionData: Record, + context: Record + ): Promise< + PaymentProcessorError | + { + status: PaymentSessionStatus; + data: Record; + } + > { + try { + await this.client.authorize(paymentSessionData.id) + + return { + status: PaymentSessionStatus.AUTHORIZED, + data: { + id: paymentSessionData.id + } + } + } catch (e) { + return { + error: e.message + } + } + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of the payment session.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "context", + "type": "`Record`", + "description": "The context of the authorization. It may include some of the following fields:\n\n- `ip`: The customer’s IP.\n- `idempotency_key`: The [Idempotency Key](https://docs.medusajs.com/modules/carts-and-checkout/payment#idempotency-key) that is associated with the current cart. It is useful when retrying payments, retrying checkout at a failed point, or for payments that require additional actions from the customer.\n- `cart_id`: The ID of a cart. This is only during operations like placing an order or creating a swap.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + + + +___ + +### cancelPayment + +This method is used to cancel an order’s payment. This method is typically triggered by one of the following situations: + +1. Before an order is placed and after the payment is authorized, an inventory check is done on products to ensure that products are still available for purchase. If the inventory check fails for any of the products, the payment is canceled. +2. If the store operator cancels the order from the admin. +3. When the payment of an order's swap is canceled. + +You can utilize this method to interact with the third-party provider and perform any actions necessary to cancel the payment. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async cancelPayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + const cancelData = this.client.cancel(paymentId) + + return { + id: paymentId, + ...cancelData + } + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of the Payment.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + +` \\| [PaymentProcessorError](payment.PaymentProcessorError.mdx)", + "optional": true, + "defaultValue": "", + "description": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +___ + +### capturePayment + +This method is used to capture the payment amount of an order. This is typically triggered manually by the store operator from the admin. + +This method is also used for capturing payments of a swap of an order, or when a request is sent to the [Capture Payment API Route](https://docs.medusajs.com/api/admin#payments\_postpaymentspaymentcapture). + +You can utilize this method to interact with the third-party provider and perform any actions necessary to capture the payment. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async capturePayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + const captureData = this.client.catch(paymentId) + + return { + id: paymentId, + ...captureData + } + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of the Payment for its first parameter.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + +` \\| [PaymentProcessorError](payment.PaymentProcessorError.mdx)", + "optional": true, + "defaultValue": "", + "description": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +___ + +### deletePayment + +This method is used to perform any actions necessary before a Payment Session is deleted. The Payment Session is deleted in one of the following cases: + +1. When a request is sent to [delete the Payment Session](https://docs.medusajs.com/api/store#carts\_deletecartscartpaymentsessionssession). +2. When the [Payment Session is refreshed](https://docs.medusajs.com/api/store#carts\_postcartscartpaymentsessionssession). The Payment Session is deleted so that a newer one is initialized instead. +3. When the Payment Processor is no longer available. This generally happens when the store operator removes it from the available Payment Processor in the admin. +4. When the region of the store is changed based on the cart information and the Payment Processor is not available in the new region. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async deletePayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + // assuming client is an initialized client + // communicating with a third-party service. + this.client.delete(paymentId) + + return {} + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of the Payment Session.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + +` \\| [PaymentProcessorError](payment.PaymentProcessorError.mdx)", + "optional": true, + "defaultValue": "", + "description": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +___ + +### getPaymentStatus + +This method is used to get the status of a Payment or a Payment Session. Its main usage is within the place order and create swap flows. +If the status returned is not `authorized` within these flows, then the payment is considered failed and an error will be thrown, stopping the flow from completion. + +#### Example + +```ts +import { + PaymentSessionStatus + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async getPaymentStatus( + paymentSessionData: Record + ): Promise { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + return await this.client.getStatus(paymentId) as PaymentSessionStatus + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of a Payment as a parameter. You can use this data to interact with the third-party provider to check the status of the payment if necessary.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + + + +___ + +### initiatePayment + +This method is called either if a region has only one payment provider enabled or when [a Payment Session is selected](https://docs.medusajs.com/api/store#carts\_postcartscartpaymentsession), +which occurs when the customer selects their preferred payment method during checkout. + +It is used to allow you to make any necessary calls to the third-party provider to initialize the payment. For example, in Stripe this method is used to create a Payment Intent for the customer. + +#### Example + +```ts +import { + PaymentContext, + PaymentSessionResponse, + // ... +} from "@medusajs/medusa" + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async initiatePayment( + context: PaymentProcessorContext + ): Promise< + PaymentProcessorError | PaymentProcessorSessionResponse + > { + // assuming client is an initialized client + // communicating with a third-party service. + const clientPayment = await this.client.initiate(context) + + return { + session_data: { + id: clientPayment.id + }, + } + } +} +``` + +#### Parameters + +`", + "description": "The cart's context.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "currency_code", + "type": "`string`", + "description": "The selected currency code, typically associated with the customer's cart.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "customer", + "type": "[Customer](../../entities/classes/entities.Customer.mdx)", + "description": "The customer associated with this payment.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "email", + "type": "`string`", + "description": "The customer's email.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "paymentSessionData", + "type": "`Record`", + "description": "If the payment session hasn't been created or initiated yet, it'll be an empty object.\nIf the payment session exists, it'll be the value of the payment session's `data` field.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "resource_id", + "type": "`string`", + "description": "The ID of the resource the payment is associated with. For example, the cart's ID.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +#### Returns + + + +___ + +### refundPayment + +This method is used to refund an order’s payment. This is typically triggered manually by the store operator from the admin. The refund amount might be the total order amount or part of it. + +This method is also used for refunding payments of a swap or a claim of an order, or when a request is sent to the [Refund Payment API Route](https://docs.medusajs.com/api/admin#payments\_postpaymentspaymentrefunds). + +You can utilize this method to interact with the third-party provider and perform any actions necessary to refund the payment. + +#### Example + +```ts +import { + PaymentProcessorError, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async refundPayment( + paymentSessionData: Record, + refundAmount: number + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + const refundData = this.client.refund(paymentId, refundAmount) + + return { + id: paymentId, + ...refundData + } + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of a Payment.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "refundAmount", + "type": "`number`", + "description": "the amount to refund.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + +` \\| [PaymentProcessorError](payment.PaymentProcessorError.mdx)", + "optional": true, + "defaultValue": "", + "description": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +___ + +### retrievePayment + +This method is used to provide a uniform way of retrieving the payment information from the third-party provider. +For example, in Stripe’s Payment Processor this method is used to retrieve the payment intent details from Stripe. + +#### Example + +```ts +import { + PaymentProcessorError + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async retrievePayment( + paymentSessionData: Record + ): Promise | PaymentProcessorError> { + const paymentId = paymentSessionData.id + + // assuming client is an initialized client + // communicating with a third-party service. + return await this.client.retrieve(paymentId) + } +} +``` + +#### Parameters + +`", + "description": "The `data` field of a Payment Session. Make sure to store in the `data` field any necessary data that would allow you to retrieve the payment data from the third-party provider.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + +` \\| [PaymentProcessorError](payment.PaymentProcessorError.mdx)", + "optional": true, + "defaultValue": "", + "description": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +___ + +### updatePayment + +This method is used to update the payment session when the payment amount changes. It's called whenever the cart or any of its related data is updated. +For example, when a [line item is added to the cart](https://docs.medusajs.com/api/store#carts\_postcartscartlineitems) or when a +[shipping method is selected](https://docs.medusajs.com/api/store#carts\_postcartscartshippingmethod). + +#### Example + +```ts +import { + PaymentProcessorContext, + PaymentProcessorError, + PaymentProcessorSessionResponse, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + // ... + async updatePayment( + context: PaymentProcessorContext + ): Promise< + void | + PaymentProcessorError | + PaymentProcessorSessionResponse + > { + // assuming client is an initialized client + // communicating with a third-party service. + const paymentId = context.paymentSessionData.id + + await this.client.update(paymentId, context) + + return { + session_data: context.paymentSessionData + } + } +} +``` + +#### Parameters + +`", + "description": "The cart's context.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "currency_code", + "type": "`string`", + "description": "The selected currency code, typically associated with the customer's cart.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "customer", + "type": "[Customer](../../entities/classes/entities.Customer.mdx)", + "description": "The customer associated with this payment.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "email", + "type": "`string`", + "description": "The customer's email.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "paymentSessionData", + "type": "`Record`", + "description": "If the payment session hasn't been created or initiated yet, it'll be an empty object.\nIf the payment session exists, it'll be the value of the payment session's `data` field.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "resource_id", + "type": "`string`", + "description": "The ID of the resource the payment is associated with. For example, the cart's ID.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + } +]} /> + +#### Returns + + + +___ + +### updatePaymentData + +This method is used to update the `data` field of a payment session. It's called when a request is sent to the +[Update Payment Session API Route](https://docs.medusajs.com/api/store#carts\_postcartscartpaymentsessionupdate), or when the `CartService`'s `updatePaymentSession` is used. + +This method can also be used to update the data in the third-party payment provider, if necessary. + +#### Example + +```ts +import { + PaymentProcessorError, + PaymentProviderService, + // ... +} from "@medusajs/medusa" +// ... + +class MyPaymentService extends AbstractPaymentProcessor { + protected paymentProviderService: PaymentProviderService + // ... + constructor(container, options) { + super(container) + this.paymentProviderService = container.paymentProviderService + // ... + } + // ... + async updatePaymentData( + sessionId: string, + data: Record + ): Promise< + Record | + PaymentProcessorError + > { + const paymentSession = await this.paymentProviderService.retrieveSession(sessionId) + // assuming client is an initialized client + // communicating with a third-party service. + const clientPayment = await this.client.update(paymentSession.data.id, data) + + return { + id: clientPayment.id + } + } +} +``` + +#### Parameters + +`", + "description": "The data to be updated in the payment session.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> + +#### Returns + +` \\| [PaymentProcessorError](payment.PaymentProcessorError.mdx)", + "optional": true, + "defaultValue": "", + "description": "", + "expandable": false, + "children": [] + } + ] + } +]} /> diff --git a/www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessorContext.mdx b/www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessorContext.mdx new file mode 100644 index 0000000000..a981078b36 --- /dev/null +++ b/www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessorContext.mdx @@ -0,0 +1,231 @@ +--- +displayed_sidebar: modules +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# PaymentProcessorContext + +A payment's context. + +## Properties + +`", + "description": "The cart's context.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "currency_code", + "type": "`string`", + "description": "The selected currency code, typically associated with the customer's cart.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "customer", + "type": "[Customer](../../entities/classes/entities.Customer.mdx)", + "description": "The customer associated with this payment.", + "optional": true, + "defaultValue": "", + "expandable": false, + "children": [ + { + "name": "billing_address", + "type": "[Address](../../entities/classes/entities.Address.mdx)", + "description": "The details of the billing address associated with the customer.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "billing_address_id", + "type": "`null` \\| `string`", + "description": "The customer's billing address ID", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "created_at", + "type": "`Date`", + "description": "The date with timezone at which the resource was created.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "deleted_at", + "type": "`null` \\| `Date`", + "description": "The date with timezone at which the resource was deleted.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "email", + "type": "`string`", + "description": "The customer's email", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "first_name", + "type": "`string`", + "description": "The customer's first name", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "groups", + "type": "[CustomerGroup](../../entities/classes/entities.CustomerGroup.mdx)[]", + "description": "The customer groups the customer belongs to.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "has_account", + "type": "`boolean`", + "description": "Whether the customer has an account or not", + "optional": false, + "defaultValue": "false", + "expandable": false, + "children": [] + }, + { + "name": "id", + "type": "`string`", + "description": "The customer's ID", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "last_name", + "type": "`string`", + "description": "The customer's last name", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "metadata", + "type": "`Record`", + "description": "An optional key-value map with additional details", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "orders", + "type": "[Order](../../entities/classes/entities.Order.mdx)[]", + "description": "The details of the orders this customer placed.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "password_hash", + "type": "`string`", + "description": "", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "phone", + "type": "`string`", + "description": "The customer's phone number", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "shipping_addresses", + "type": "[Address](../../entities/classes/entities.Address.mdx)[]", + "description": "The details of the shipping addresses associated with the customer.", + "optional": false, + "defaultValue": "", + "expandable": true, + "children": [] + }, + { + "name": "updated_at", + "type": "`Date`", + "description": "The date with timezone at which the resource was updated.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } + ] + }, + { + "name": "email", + "type": "`string`", + "description": "The customer's email.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "paymentSessionData", + "type": "`Record`", + "description": "If the payment session hasn't been created or initiated yet, it'll be an empty object.\nIf the payment session exists, it'll be the value of the payment session's `data` field.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + }, + { + "name": "resource_id", + "type": "`string`", + "description": "The ID of the resource the payment is associated with. For example, the cart's ID.", + "optional": false, + "defaultValue": "", + "expandable": false, + "children": [] + } +]} /> diff --git a/www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessorError.mdx b/www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessorError.mdx new file mode 100644 index 0000000000..fd701aac84 --- /dev/null +++ b/www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessorError.mdx @@ -0,0 +1,41 @@ +--- +displayed_sidebar: modules +--- + +import ParameterTypes from "@site/src/components/ParameterTypes" + +# PaymentProcessorError + +An object that is returned in case of an error. + +## Properties + + diff --git a/www/apps/docs/content/references/medusa/types/medusa.PaymentProcessorSessionResponse.mdx b/www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessorSessionResponse.mdx similarity index 57% rename from www/apps/docs/content/references/medusa/types/medusa.PaymentProcessorSessionResponse.mdx rename to www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessorSessionResponse.mdx index ae590fd9a8..cce3c2ff54 100644 --- a/www/apps/docs/content/references/medusa/types/medusa.PaymentProcessorSessionResponse.mdx +++ b/www/apps/docs/content/references/payment/interfaces/payment.PaymentProcessorSessionResponse.mdx @@ -1,20 +1,20 @@ --- -displayed_sidebar: homepage +displayed_sidebar: modules --- import ParameterTypes from "@site/src/components/ParameterTypes" # PaymentProcessorSessionResponse - **PaymentProcessorSessionResponse**: `Object` +The response of operations on a payment. -## Type declaration +## Properties `", - "description": "", + "description": "The data to be stored in the `data` field of the Payment Session to be created.\nThe `data` field is useful to hold any data required by the third-party provider to process the payment or retrieve its details at a later point.", "optional": false, "defaultValue": "", "expandable": false, @@ -23,7 +23,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" { "name": "update_requests", "type": "`object`", - "description": "", + "description": "Used to specify data that should be updated in the Medusa backend.", "optional": true, "defaultValue": "", "expandable": false, @@ -31,7 +31,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" { "name": "customer_metadata", "type": "`Record`", - "description": "", + "description": "Specifies a new value of the `metadata` field of the customer associated with the payment.", "optional": true, "defaultValue": "", "expandable": false, @@ -42,7 +42,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes" { "name": "update_requests.customer_metadata", "type": "`Record`", - "description": "", + "description": "Specifies a new value of the `metadata` field of the customer associated with the payment.", "optional": true, "defaultValue": "", "expandable": false, diff --git a/www/apps/docs/sidebars.js b/www/apps/docs/sidebars.js index 02482fef2e..fb9c18c597 100644 --- a/www/apps/docs/sidebars.js +++ b/www/apps/docs/sidebars.js @@ -730,7 +730,7 @@ module.exports = { }, { type: "doc", - id: "modules/carts-and-checkout/backend/add-payment-provider", + id: "references/payment/classes/payment.AbstractPaymentProcessor", label: "Backend: Create Payment Processor", }, { diff --git a/www/apps/docs/src/components/ParameterTypes/Items/index.tsx b/www/apps/docs/src/components/ParameterTypes/Items/index.tsx index 9e33c7ebb5..8df82996b7 100644 --- a/www/apps/docs/src/components/ParameterTypes/Items/index.tsx +++ b/www/apps/docs/src/components/ParameterTypes/Items/index.tsx @@ -15,6 +15,7 @@ import { TriangleRightMini, } from "@medusajs/icons" import IconFlagMini from "../../../theme/Icon/FlagMini" +import decodeStr from "../../../utils/decode-str" type ParameterTypesItemsProps = { parameters: Parameter[] @@ -127,7 +128,7 @@ const ParameterTypesItems = ({ /> )}
- {parameter.name} + {decodeStr(parameter.name)} {parameter.type} diff --git a/www/apps/docs/src/utils/decode-str.ts b/www/apps/docs/src/utils/decode-str.ts new file mode 100644 index 0000000000..20e9cfee53 --- /dev/null +++ b/www/apps/docs/src/utils/decode-str.ts @@ -0,0 +1,8 @@ +export default function decodeStr(str: string) { + return str + .replaceAll("<", "<") + .replaceAll("{", "{") + .replaceAll("}", "}") + .replaceAll(">", ">") + .replaceAll("\\|", "|") +}