feat(medusa,types): add enabled plugins route (#11876)

This commit is contained in:
Riqwan Thamir
2025-03-17 20:11:46 +01:00
committed by GitHub
parent 9dd62d93bd
commit c3440e5e38
7 changed files with 69 additions and 0 deletions
+6
View File
@@ -17,6 +17,7 @@ import { Order } from "./order"
import { OrderEdit } from "./order-edit"
import { Payment } from "./payment"
import { PaymentCollection } from "./payment-collection"
import { Plugin } from "./plugin"
import { PriceList } from "./price-list"
import { PricePreference } from "./price-preference"
import { Product } from "./product"
@@ -211,6 +212,10 @@ export class Admin {
* @tags promotion
*/
public campaign: Campaign
/**
* @tags plugin
*/
public plugin: Plugin
constructor(client: Client) {
this.invite = new Invite(client)
@@ -255,5 +260,6 @@ export class Admin {
this.customerGroup = new CustomerGroup(client)
this.promotion = new Promotion(client)
this.campaign = new Campaign(client)
this.plugin = new Plugin(client)
}
}
+21
View File
@@ -0,0 +1,21 @@
import { HttpTypes } from "@medusajs/types"
import { Client } from "../client"
import { ClientHeaders } from "../types"
export class Plugin {
private client: Client
constructor(client: Client) {
this.client = client
}
async list(headers?: ClientHeaders) {
return await this.client.fetch<HttpTypes.AdminPluginsListResponse>(
`/admin/plugins`,
{
headers,
query: {},
}
)
}
}