Back to Medusa

Content

www/apps/resources/app/commerce-modules/api-key/admin-widget-zones/_content.mdx

2.14.21.7 KB
Original Source

import { Table } from "docs-ui"

<Table> <Table.Header> <Table.Row> <Table.HeaderCell className="w-1/3">Injection Zone Name</Table.HeaderCell> <Table.HeaderCell className="w-1/3">Description</Table.HeaderCell> <Table.HeaderCell className="w-1/3">Additional Props</Table.HeaderCell> </Table.Row> </Table.Header> <Table.Body> <Table.Row> <Table.Cell>
    `api_key.list.before`

  </Table.Cell>
  <Table.Cell>

    Added at the top of the API keys list page.

  </Table.Cell>
  <Table.Cell>

    \-

  </Table.Cell>
</Table.Row>
<Table.Row>
  <Table.Cell>

    `api_key.list.after`

  </Table.Cell>
  <Table.Cell>

    Added at the bottom of the API keys list page.

  </Table.Cell>
  <Table.Cell>

    \-

  </Table.Cell>
</Table.Row>
<Table.Row>
  <Table.Cell>

    `api_key.details.before`

  </Table.Cell>
  <Table.Cell>

    Added at the top of a API key's details page.

  </Table.Cell>
  <Table.Cell>
  
    Type `DetailWidgetProps<AdminApiKey>` imported from `@medusajs/framework/types`

    ```ts blockStyle="inline"
    {
      data, // AdminApiKey object
    }
    ```

  </Table.Cell>
</Table.Row>
<Table.Row>
  <Table.Cell>

    `api_key.details.after`

  </Table.Cell>
  <Table.Cell>

    Added at the bottom of a API key's details page.

  </Table.Cell>
  <Table.Cell>
  
    Type `DetailWidgetProps<AdminApiKey>` imported from `@medusajs/framework/types`

    ```ts blockStyle="inline"
    {
      data, // AdminApiKey object
    }
    ```

  </Table.Cell>
</Table.Row>

</Table.Body>

</Table>