1
0
mirror of https://github.com/Unleash/unleash.git synced 2026-02-04 20:10:52 +01:00

feat: export project specific context fields

This commit is contained in:
kwasniew 2025-12-17 10:56:33 +01:00
parent 09d1374db3
commit d4643d717c
No known key found for this signature in database
GPG Key ID: 43A7CBC24C119560
3 changed files with 1 additions and 3 deletions

View File

@ -8,7 +8,7 @@ export interface IContextFieldDto {
usedInProjects?: number | null;
usedInFeatures?: number | null;
legalValues?: ILegalValue[];
project?: string | null;
project?: string;
}
export interface ILegalValue {

View File

@ -170,7 +170,6 @@ beforeAll(async () => {
experimental: {
flags: {
featureLinks: true,
projectContextFields: true,
},
},
},

View File

@ -67,7 +67,6 @@ export const contextFieldSchema = {
description:
'The project this context field belongs to (if it is project-specific)',
type: 'string',
nullable: true,
example: 'my-project',
},
},