2023-01-27 17:19:27 +01:00
|
|
|
/**
|
2023-03-15 13:30:07 +01:00
|
|
|
* Generated by Orval
|
2023-01-27 17:19:27 +01:00
|
|
|
* Do not edit manually.
|
2023-03-15 13:30:07 +01:00
|
|
|
* See `gen:api` script in package.json
|
2023-01-27 17:19:27 +01:00
|
|
|
*/
|
|
|
|
import type { VariantSchema } from './variantSchema';
|
|
|
|
|
2023-08-03 15:05:20 +02:00
|
|
|
/**
|
|
|
|
* Data used when copying variants into a new environment.
|
|
|
|
*/
|
2023-01-27 17:19:27 +01:00
|
|
|
export interface PushVariantsSchema {
|
2023-08-03 15:05:20 +02:00
|
|
|
/** The variants to write to the provided environments */
|
2023-01-27 17:19:27 +01:00
|
|
|
variants?: VariantSchema[];
|
2023-08-03 15:05:20 +02:00
|
|
|
/** The enviromnents to write the provided variants to */
|
2023-01-27 17:19:27 +01:00
|
|
|
environments?: string[];
|
|
|
|
}
|