1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-12 13:48:35 +02:00
unleash.unleash/frontend/src/openapi/models/addonsSchema.ts
Tymoteusz Czech 169b2bd0c5
Strategy title frontend (#3556)
Ability to add a title to a strategy
2023-04-19 17:27:23 +00:00

20 lines
670 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { AddonSchema } from './addonSchema';
import type { AddonTypeSchema } from './addonTypeSchema';
/**
* An object containing two things:
1. A list of all [addons](https://docs.getunleash.io/reference/addons) defined on this Unleash instance
2. A list of all addon providers defined on this instance
*/
export interface AddonsSchema {
/** All the addons that exist on this instance of Unleash. */
addons: AddonSchema[];
/** A list of all available addon providers, along with their parameters and descriptions. */
providers: AddonTypeSchema[];
}