1.0.2 • Published 12 months ago

directus-extension-types v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

Types Endpoint for Directus

This extension exposes your Directus schema to an endpoint. It is specifically designed to be passed as the "SCHEMA" interface in the Directus client SDK but is certainly not limited to that.

!IMPORTANT
This work was greatly inspired from maltejur's generate types extension, however our team needed something that would expose an endpoint and work with newer versions of Directus. We sincerely hope you find it useful ☺️

Requirements

This extensions only works with Directus 10 and higher.

Installation

Add directus-extension-types as a dependency to your directus app.

# Using npm
npm install directus-extension-types
# Using bun
bun install directus-extension-types
# Using yarn
yarn add directus-extension-types
# Using pnpm
pnpm add directus-extension-types

Usage

Getting types

After installation, the extension should be good to go. To get your types, you'll need to ping the /types endpoint of your application.

Ex: http://localhost:8055/types

Using types

This endpoint is typically used to auto-generate the SCHEMA interface for the Directus client sdk.

The endpoint has a type called CustomDirectusTypes, this is your SCHEMA interface. Use that in your client SDK and see your types match the model of your back-end.

1.0.2

12 months ago

1.0.0

12 months ago