Files
medusa-store/www/apps/docs/content/references/js-client/modules/internal-20.md
Shahed Nasser fa7c94b4cc docs: create docs workspace (#5174)
* docs: migrate ui docs to docs universe

* created yarn workspace

* added eslint and tsconfig configurations

* fix eslint configurations

* fixed eslint configurations

* shared tailwind configurations

* added shared ui package

* added more shared components

* migrating more components

* made details components shared

* move InlineCode component

* moved InputText

* moved Loading component

* Moved Modal component

* moved Select components

* Moved Tooltip component

* moved Search components

* moved ColorMode provider

* Moved Notification components and providers

* used icons package

* use UI colors in api-reference

* moved Navbar component

* used Navbar and Search in UI docs

* added Feedback to UI docs

* general enhancements

* fix color mode

* added copy colors file from ui-preset

* added features and enhancements to UI docs

* move Sidebar component and provider

* general fixes and preparations for deployment

* update docusaurus version

* adjusted versions

* fix output directory

* remove rootDirectory property

* fix yarn.lock

* moved code component

* added vale for all docs MD and MDX

* fix tests

* fix vale error

* fix deployment errors

* change ignore commands

* add output directory

* fix docs test

* general fixes

* content fixes

* fix announcement script

* added changeset

* fix vale checks

* added nofilter option

* fix vale error
2023-09-21 20:57:15 +03:00

5.6 KiB

Namespace: internal

Classes

Type Aliases

AdminProductsDeleteOptionRes

Ƭ AdminProductsDeleteOptionRes: Object

Type declaration

Name Type
deleted boolean
object "option"
option_id string
product Product

Defined in

medusa/dist/api/routes/admin/products/index.d.ts:13


AdminProductsDeleteRes

Ƭ AdminProductsDeleteRes: Object

Type declaration

Name Type
deleted boolean
id string
object "product"

Defined in

medusa/dist/api/routes/admin/products/index.d.ts:25


AdminProductsDeleteVariantRes

Ƭ AdminProductsDeleteVariantRes: Object

Type declaration

Name Type
deleted boolean
object "product-variant"
product Product
variant_id string

Defined in

medusa/dist/api/routes/admin/products/index.d.ts:19


AdminProductsListRes

Ƭ AdminProductsListRes: PaginatedResponse & { products: (PricedProduct | Product)[] }

Defined in

medusa/dist/api/routes/admin/products/index.d.ts:30


AdminProductsListTagsRes

Ƭ AdminProductsListTagsRes: Object

Type declaration

Name Type
tags ProductTag[]

Defined in

medusa/dist/api/routes/admin/products/index.d.ts:36


AdminProductsListTypesRes

Ƭ AdminProductsListTypesRes: Object

Type declaration

Name Type
types ProductType[]

Defined in

medusa/dist/api/routes/admin/products/index.d.ts:33


AdminProductsRes

Ƭ AdminProductsRes: Object

Type declaration

Name Type
product Product

Defined in

medusa/dist/api/routes/admin/products/index.d.ts:39


PricedProduct

Ƭ PricedProduct: Omit<Partial<Product>, "variants"> & { variants: PricedVariant[] }

Defined in

medusa/dist/types/pricing.d.ts:31


PricedVariant

Ƭ PricedVariant: Partial<ProductVariant> & ProductVariantPricing

Defined in

medusa/dist/types/pricing.d.ts:30


ProductVariantPricing

Ƭ ProductVariantPricing: { calculated_price: number | null ; calculated_price_includes_tax?: boolean | null ; calculated_price_type?: string | null ; original_price: number | null ; original_price_includes_tax?: boolean | null ; prices: MoneyAmount[] } & TaxedPricing

Defined in

medusa/dist/types/pricing.d.ts:4


TaxServiceRate

Ƭ TaxServiceRate: Object

The tax rate object as configured in Medusa. These may have an unspecified numerical rate as they may be used for lookup purposes in the tax provider plugin.

Type declaration

Name Type
code string | null
name string
rate? number | null

Defined in

medusa/dist/types/tax-service.d.ts:15


TaxedPricing

Ƭ TaxedPricing: Object

Type declaration

Name Type
calculated_price_incl_tax number | null
calculated_tax number | null
original_price_incl_tax number | null
original_tax number | null
tax_rates TaxServiceRate[] | null

Defined in

medusa/dist/types/pricing.d.ts:12