diff --git a/www/utils/generated/oas-output/schemas/AdminProductImage.ts b/www/utils/generated/oas-output/schemas/AdminProductImage.ts deleted file mode 100644 index 3be440fd193d8..0000000000000 --- a/www/utils/generated/oas-output/schemas/AdminProductImage.ts +++ /dev/null @@ -1,8 +0,0 @@ -/** - * @schema AdminProductImage - * type: object - * description: The image's details. - * x-schemaName: AdminProductImage - * -*/ - diff --git a/www/utils/generated/oas-output/schemas/RefundReason.ts b/www/utils/generated/oas-output/schemas/RefundReason.ts deleted file mode 100644 index 1629d82d76665..0000000000000 --- a/www/utils/generated/oas-output/schemas/RefundReason.ts +++ /dev/null @@ -1,40 +0,0 @@ -/** - * @schema RefundReason - * type: object - * description: The refund's refund reason. - * x-schemaName: RefundReason - * required: - * - id - * - label - * - metadata - * - created_at - * - updated_at - * properties: - * id: - * type: string - * title: id - * description: The refund reason's ID. - * label: - * type: string - * title: label - * description: The refund reason's label. - * description: - * type: string - * title: description - * description: The refund reason's description. - * metadata: - * type: object - * description: The refund reason's metadata. - * created_at: - * type: string - * format: date-time - * title: created_at - * description: The refund reason's created at. - * updated_at: - * type: string - * format: date-time - * title: updated_at - * description: The refund reason's updated at. - * -*/ - diff --git a/www/utils/generated/oas-output/schemas/StoreCartShippingMethod.ts b/www/utils/generated/oas-output/schemas/StoreCartShippingMethod.ts deleted file mode 100644 index 7dcb01b665092..0000000000000 --- a/www/utils/generated/oas-output/schemas/StoreCartShippingMethod.ts +++ /dev/null @@ -1,113 +0,0 @@ -/** - * @schema StoreCartShippingMethod - * type: object - * description: A cart's shipping method. - * x-schemaName: StoreCartShippingMethod - * required: - * - id - * - cart_id - * - name - * - amount - * - is_tax_inclusive - * - created_at - * - updated_at - * - original_total - * - original_subtotal - * - original_tax_total - * - total - * - subtotal - * - tax_total - * - discount_total - * - discount_tax_total - * properties: - * id: - * type: string - * title: id - * description: The shipping method's ID. - * cart_id: - * type: string - * title: cart_id - * description: The ID of the cart this shipping method belongs to. - * name: - * type: string - * title: name - * description: The shipping method's name. - * description: - * type: string - * title: description - * description: The shipping method's description. - * amount: - * type: number - * title: amount - * description: The shipping method's amount. - * is_tax_inclusive: - * type: boolean - * title: is_tax_inclusive - * description: Whether the shipping method's amount is tax inclusive. - * shipping_option_id: - * type: string - * title: shipping_option_id - * description: The ID of the shipping option this method was created from. - * data: - * type: object - * description: The shipping method's data, useful for fulfillment handling by third-party services. - * externalDocs: - * url: https://docs.medusajs.com/v2/resources/commerce-modules/cart/concepts#data-property - * metadata: - * type: object - * description: The shipping method's metadata, can hold custom key-value pairs. - * tax_lines: - * type: array - * description: The shipping method's tax lines. - * items: - * $ref: "#/components/schemas/BaseShippingMethodTaxLine" - * adjustments: - * type: array - * description: The shipping method's adjustments, such as applied promotions. - * items: - * $ref: "#/components/schemas/BaseShippingMethodAdjustment" - * created_at: - * type: string - * format: date-time - * title: created_at - * description: The date the shipping method was created. - * updated_at: - * type: string - * format: date-time - * title: updated_at - * description: The date the shipping method was updated. - * original_total: - * type: number - * title: original_total - * description: The shipping method's total including taxes, excluding promotions. - * original_subtotal: - * type: number - * title: original_subtotal - * description: The shipping method's total excluding taxes, including promotions. - * original_tax_total: - * type: number - * title: original_tax_total - * description: The total taxes applied on the shipping method's amount including promotions. - * total: - * type: number - * title: total - * description: The shipping method's total amount including taxes and promotions. - * subtotal: - * type: number - * title: subtotal - * description: The shipping method's total amount excluding taxes, including promotions. - * tax_total: - * type: number - * title: tax_total - * description: The total taxes applied on the shipping method's amount including promotions. - * discount_total: - * type: number - * title: discount_total - * description: The total amount discounted. - * discount_tax_total: - * type: number - * title: discount_tax_total - * description: The taxes applied on the discounted amount. - * -*/ - diff --git a/www/utils/generated/oas-output/schemas/StorePaymentSession.ts b/www/utils/generated/oas-output/schemas/StorePaymentSession.ts deleted file mode 100644 index d92517147c3c4..0000000000000 --- a/www/utils/generated/oas-output/schemas/StorePaymentSession.ts +++ /dev/null @@ -1,63 +0,0 @@ -/** - * @schema StorePaymentSession - * type: object - * description: The payment session's details. - * x-schemaName: StorePaymentSession - * properties: - * id: - * type: string - * title: id - * description: The payment session's ID. - * amount: - * type: number - * title: amount - * description: The payment session's amount. - * currency_code: - * type: string - * title: currency_code - * description: The payment session's currency code. - * example: usd - * provider_id: - * type: string - * title: provider_id - * description: The ID of the payment provider processing this session. - * data: - * type: object - * description: The payment session's data, useful for the payment provider processing the payment. - * externalDocs: - * url: https://docs.medusajs.com/v2/resources/commerce-modules/payment/payment-session#data-property - * context: - * type: object - * description: The context around the payment, such as the customer's details. - * example: - * customer: - * id: cus_123 - * status: - * type: string - * description: The payment session's status. - * enum: - * - authorized - * - captured - * - canceled - * - pending - * - requires_more - * - error - * authorized_at: - * type: string - * title: authorized_at - * description: The date the payment session was authorized. - * format: date-time - * payment_collection: - * $ref: "#/components/schemas/StorePaymentCollection" - * payment: - * $ref: "#/components/schemas/BasePayment" - * required: - * - id - * - amount - * - currency_code - * - provider_id - * - data - * - status - * -*/ - diff --git a/www/utils/generated/oas-output/schemas/StoreProductImage.ts b/www/utils/generated/oas-output/schemas/StoreProductImage.ts deleted file mode 100644 index 0892479bb1baf..0000000000000 --- a/www/utils/generated/oas-output/schemas/StoreProductImage.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * @schema StoreProductImage - * type: object - * description: The image's details. - * x-schemaName: StoreProductImage - * properties: - * id: - * type: string - * title: id - * description: The image's ID. - * url: - * type: string - * title: url - * description: The image's URL. - * created_at: - * type: string - * format: date-time - * title: created_at - * description: The date the image was created. - * updated_at: - * type: string - * format: date-time - * title: updated_at - * description: The date the image was updated. - * deleted_at: - * type: string - * format: date-time - * title: deleted_at - * description: The date the image was deleted. - * metadata: - * type: object - * description: The image's metadata, can hold custom key-value pairs. - * required: - * - id - * - url - * -*/ - diff --git a/www/utils/generated/oas-output/schemas/StoreProductOption.ts b/www/utils/generated/oas-output/schemas/StoreProductOption.ts deleted file mode 100644 index 3d2a558c9a59b..0000000000000 --- a/www/utils/generated/oas-output/schemas/StoreProductOption.ts +++ /dev/null @@ -1,49 +0,0 @@ -/** - * @schema StoreProductOption - * type: object - * description: The product option's details. - * x-schemaName: StoreProductOption - * properties: - * id: - * type: string - * title: id - * description: The option's ID. - * title: - * type: string - * title: title - * description: The option's title. - * product: - * $ref: "#/components/schemas/StoreProduct" - * product_id: - * type: string - * title: product_id - * description: The option's product id. - * values: - * type: array - * description: The option's values. - * items: - * $ref: "#/components/schemas/StoreProductOptionValue" - * metadata: - * type: object - * description: The option's metadata. - * created_at: - * type: string - * format: date-time - * title: created_at - * description: The option's created at. - * updated_at: - * type: string - * format: date-time - * title: updated_at - * description: The option's updated at. - * deleted_at: - * type: string - * format: date-time - * title: deleted_at - * description: The option's deleted at. - * required: - * - id - * - title - * -*/ - diff --git a/www/utils/generated/oas-output/schemas/StoreProductOptionValue.ts b/www/utils/generated/oas-output/schemas/StoreProductOptionValue.ts deleted file mode 100644 index 7100b3282989c..0000000000000 --- a/www/utils/generated/oas-output/schemas/StoreProductOptionValue.ts +++ /dev/null @@ -1,44 +0,0 @@ -/** - * @schema StoreProductOptionValue - * type: object - * description: The product option value's details. - * x-schemaName: StoreProductOptionValue - * required: - * - id - * - value - * properties: - * id: - * type: string - * title: id - * description: The value's ID. - * value: - * type: string - * title: value - * description: The value. - * option: - * $ref: "#/components/schemas/StoreProductOption" - * option_id: - * type: string - * title: option_id - * description: The ID of the option this value belongs to. - * metadata: - * type: object - * description: The value's metadata, can hold custom key-value pairs. - * created_at: - * type: string - * format: date-time - * title: created_at - * description: The date the value was created. - * updated_at: - * type: string - * format: date-time - * title: updated_at - * description: The date the value was updated. - * deleted_at: - * type: string - * format: date-time - * title: deleted_at - * description: The date the value was deleted. - * -*/ - diff --git a/www/utils/generated/oas-output/schemas/StoreProductTag.ts b/www/utils/generated/oas-output/schemas/StoreProductTag.ts deleted file mode 100644 index f2678d1006611..0000000000000 --- a/www/utils/generated/oas-output/schemas/StoreProductTag.ts +++ /dev/null @@ -1,40 +0,0 @@ -/** - * @schema StoreProductTag - * type: object - * description: The tag's tags. - * x-schemaName: StoreProductTag - * properties: - * id: - * type: string - * title: id - * description: The tag's ID. - * value: - * type: string - * title: value - * description: The tag's value. - * created_at: - * type: string - * format: date-time - * title: created_at - * description: The tag's created at. - * updated_at: - * type: string - * format: date-time - * title: updated_at - * description: The tag's updated at. - * deleted_at: - * type: string - * format: date-time - * title: deleted_at - * description: The tag's deleted at. - * metadata: - * type: object - * description: The tag's metadata. - * required: - * - id - * - value - * - created_at - * - updated_at - * -*/ - diff --git a/www/utils/generated/oas-output/schemas/StoreProductVariant.ts b/www/utils/generated/oas-output/schemas/StoreProductVariant.ts deleted file mode 100644 index f36d2becb530e..0000000000000 --- a/www/utils/generated/oas-output/schemas/StoreProductVariant.ts +++ /dev/null @@ -1,133 +0,0 @@ -/** - * @schema StoreProductVariant - * type: object - * description: The variant's variants. - * x-schemaName: StoreProductVariant - * properties: - * options: - * type: array - * description: The variant's options. - * items: - * $ref: "#/components/schemas/StoreProductOptionValue" - * product: - * $ref: "#/components/schemas/StoreProduct" - * id: - * type: string - * title: id - * description: The variant's ID. - * metadata: - * type: object - * description: The variant's metadata. - * created_at: - * type: string - * format: date-time - * title: created_at - * description: The variant's created at. - * updated_at: - * type: string - * format: date-time - * title: updated_at - * description: The variant's updated at. - * title: - * type: string - * title: title - * description: The variant's title. - * product_id: - * type: string - * title: product_id - * description: The variant's product id. - * deleted_at: - * type: string - * format: date-time - * title: deleted_at - * description: The variant's deleted at. - * width: - * type: number - * title: width - * description: The variant's width. - * weight: - * type: number - * title: weight - * description: The variant's weight. - * length: - * type: number - * title: length - * description: The variant's length. - * height: - * type: number - * title: height - * description: The variant's height. - * origin_country: - * type: string - * title: origin_country - * description: The variant's origin country. - * hs_code: - * type: string - * title: hs_code - * description: The variant's hs code. - * mid_code: - * type: string - * title: mid_code - * description: The variant's mid code. - * material: - * type: string - * title: material - * description: The variant's material. - * sku: - * type: string - * title: sku - * description: The variant's sku. - * barcode: - * type: string - * title: barcode - * description: The variant's barcode. - * ean: - * type: string - * title: ean - * description: The variant's ean. - * upc: - * type: string - * title: upc - * description: The variant's upc. - * allow_backorder: - * oneOf: - * - {} - * - {} - * manage_inventory: - * oneOf: - * - {} - * - {} - * inventory_quantity: - * type: number - * title: inventory_quantity - * description: The variant's inventory quantity. - * variant_rank: - * type: number - * title: variant_rank - * description: The variant's variant rank. - * calculated_price: - * $ref: "#/components/schemas/BaseCalculatedPriceSet" - * required: - * - options - * - id - * - created_at - * - updated_at - * - title - * - deleted_at - * - width - * - weight - * - length - * - height - * - origin_country - * - hs_code - * - mid_code - * - material - * - sku - * - barcode - * - ean - * - upc - * - allow_backorder - * - manage_inventory - * -*/ -