1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-26 13:48:33 +02:00

feat: add delta api streaming flag (#9269)

Lets add separate flag for delta streaming.
This commit is contained in:
Jaanus Sellin 2025-02-10 11:22:16 +02:00 committed by GitHub
parent ac1d8b9b70
commit fb68692247
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -61,6 +61,7 @@ export type IFlagKey =
| 'streaming'
| 'etagVariant'
| 'deltaApi'
| 'deltaApiStreaming'
| 'uniqueSdkTracking'
| 'frontendHeaderRedesign'
| 'dataUsageMultiMonthView'
@ -293,6 +294,10 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_DELTA_API,
false,
),
deltaApiStreaming: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_DELTA_API_STREAMING,
false,
),
uniqueSdkTracking: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_UNIQUE_SDK_TRACKING,
false,