import { APIResource } from "../../../../core/resource.js"; import * as ChangelogAPI from "./changelog.js"; import { BaseChangelog, Changelog, ChangelogListParams, ChangelogListResponse, ChangelogListResponsesCursorPaginationAfter } from "./changelog.js"; import { APIPromise } from "../../../../core/api-promise.js"; import { CursorPaginationAfter, type CursorPaginationAfterParams, PagePromise } from "../../../../core/pagination.js"; import { RequestOptions } from "../../../../internal/request-options.js"; export declare class BaseFlags extends APIResource { static readonly _key: readonly ['flagship', 'apps', 'flags']; /** * Creates a flag. Returns 409 if the key already exists. `type` is inferred from * variation values and may be omitted. */ create(appID: string, params: FlagCreateParams, options?: RequestOptions): APIPromise; /** * Replaces the entire flag definition. Omitted fields are dropped, not preserved — * read before writing. Each update appends a changelog entry. */ update(flagKey: string, params: FlagUpdateParams, options?: RequestOptions): APIPromise; /** * Lists an app's flags ordered by key. Pass `cursor` from `result_info` to page * forward; a null cursor indicates the last page. */ list(appID: string, params: FlagListParams, options?: RequestOptions): PagePromise; /** * Permanently deletes a flag. Subsequent evaluations fall back to the * caller-supplied default. Cannot be undone. */ delete(flagKey: string, params: FlagDeleteParams, options?: RequestOptions): APIPromise; /** * Returns the full flag definition including rules, variations, and audit fields. */ get(flagKey: string, params: FlagGetParams, options?: RequestOptions): APIPromise; } export declare class Flags extends BaseFlags { changelog: ChangelogAPI.Changelog; } export type FlagListResponsesCursorPaginationAfter = CursorPaginationAfter; export interface FlagCreateResponse { /** * Variation served when no rule matches or the flag is disabled. Must be a key in * `variations`. */ default_variation: string; /** * When false, the flag bypasses all rules and always serves `default_variation`. */ enabled: boolean; /** * Unique identifier for the flag within an app. Used in all evaluation and SDK * calls. */ key: string; /** * Targeting rules evaluated in ascending `priority`; the first matching rule wins. * An empty array means the flag always serves `default_variation`. */ rules: Array; /** * Map of variation name to value. All values must be the same type (boolean, * string, number, or JSON object/array). Each serialized value must be 10KB or * smaller. */ variations: { [key: string]: string | null | number | boolean | { [key: string]: unknown; } | Array; }; description?: string | null; /** * Value type of the flag's variations. Inferred from the variation values on * write, so it may be omitted in requests. */ type?: 'boolean' | 'string' | 'number' | 'json'; updated_at?: string; updated_by?: string; } export declare namespace FlagCreateResponse { interface Rule { /** * Conditions the context must satisfy for this rule to match. An empty array * matches all contexts. */ conditions: Array; /** * Evaluation order; lower numbers are evaluated first. Must be unique across the * flag's rules. */ priority: number; /** * Variation served when this rule matches. Must be a key in `variations`. */ serve_variation: string; rollout?: Rule.Rollout; } namespace Rule { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array>; logical_operator: 'AND' | 'OR'; } } } } } } interface Rollout { /** * Percentage of matching traffic (0–100) served this variation. For multi-way * splits, use cumulative upper bounds across rules (e.g. 30, 70, 100). */ percentage: number; /** * Context attribute used for sticky bucketing. Defaults to `targetingKey`. If * absent at evaluation time, bucketing is random per request. */ attribute?: string; } } } export interface FlagUpdateResponse { /** * Variation served when no rule matches or the flag is disabled. Must be a key in * `variations`. */ default_variation: string; /** * When false, the flag bypasses all rules and always serves `default_variation`. */ enabled: boolean; /** * Unique identifier for the flag within an app. Used in all evaluation and SDK * calls. */ key: string; /** * Targeting rules evaluated in ascending `priority`; the first matching rule wins. * An empty array means the flag always serves `default_variation`. */ rules: Array; /** * Map of variation name to value. All values must be the same type (boolean, * string, number, or JSON object/array). Each serialized value must be 10KB or * smaller. */ variations: { [key: string]: string | null | number | boolean | { [key: string]: unknown; } | Array; }; description?: string | null; /** * Value type of the flag's variations. Inferred from the variation values on * write, so it may be omitted in requests. */ type?: 'boolean' | 'string' | 'number' | 'json'; updated_at?: string; updated_by?: string; } export declare namespace FlagUpdateResponse { interface Rule { /** * Conditions the context must satisfy for this rule to match. An empty array * matches all contexts. */ conditions: Array; /** * Evaluation order; lower numbers are evaluated first. Must be unique across the * flag's rules. */ priority: number; /** * Variation served when this rule matches. Must be a key in `variations`. */ serve_variation: string; rollout?: Rule.Rollout; } namespace Rule { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array>; logical_operator: 'AND' | 'OR'; } } } } } } interface Rollout { /** * Percentage of matching traffic (0–100) served this variation. For multi-way * splits, use cumulative upper bounds across rules (e.g. 30, 70, 100). */ percentage: number; /** * Context attribute used for sticky bucketing. Defaults to `targetingKey`. If * absent at evaluation time, bucketing is random per request. */ attribute?: string; } } } export interface FlagListResponse { /** * Variation served when no rule matches or the flag is disabled. Must be a key in * `variations`. */ default_variation: string; /** * When false, the flag bypasses all rules and always serves `default_variation`. */ enabled: boolean; /** * Unique identifier for the flag within an app. Used in all evaluation and SDK * calls. */ key: string; /** * Targeting rules evaluated in ascending `priority`; the first matching rule wins. * An empty array means the flag always serves `default_variation`. */ rules: Array; /** * Map of variation name to value. All values must be the same type (boolean, * string, number, or JSON object/array). Each serialized value must be 10KB or * smaller. */ variations: { [key: string]: string | null | number | boolean | { [key: string]: unknown; } | Array; }; description?: string | null; /** * Value type of the flag's variations. Inferred from the variation values on * write, so it may be omitted in requests. */ type?: 'boolean' | 'string' | 'number' | 'json'; updated_at?: string; updated_by?: string; } export declare namespace FlagListResponse { interface Rule { /** * Conditions the context must satisfy for this rule to match. An empty array * matches all contexts. */ conditions: Array; /** * Evaluation order; lower numbers are evaluated first. Must be unique across the * flag's rules. */ priority: number; /** * Variation served when this rule matches. Must be a key in `variations`. */ serve_variation: string; rollout?: Rule.Rollout; } namespace Rule { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array>; logical_operator: 'AND' | 'OR'; } } } } } } interface Rollout { /** * Percentage of matching traffic (0–100) served this variation. For multi-way * splits, use cumulative upper bounds across rules (e.g. 30, 70, 100). */ percentage: number; /** * Context attribute used for sticky bucketing. Defaults to `targetingKey`. If * absent at evaluation time, bucketing is random per request. */ attribute?: string; } } } export interface FlagDeleteResponse { key: string; } export interface FlagGetResponse { /** * Variation served when no rule matches or the flag is disabled. Must be a key in * `variations`. */ default_variation: string; /** * When false, the flag bypasses all rules and always serves `default_variation`. */ enabled: boolean; /** * Unique identifier for the flag within an app. Used in all evaluation and SDK * calls. */ key: string; /** * Targeting rules evaluated in ascending `priority`; the first matching rule wins. * An empty array means the flag always serves `default_variation`. */ rules: Array; /** * Map of variation name to value. All values must be the same type (boolean, * string, number, or JSON object/array). Each serialized value must be 10KB or * smaller. */ variations: { [key: string]: string | null | number | boolean | { [key: string]: unknown; } | Array; }; description?: string | null; /** * Value type of the flag's variations. Inferred from the variation values on * write, so it may be omitted in requests. */ type?: 'boolean' | 'string' | 'number' | 'json'; updated_at?: string; updated_by?: string; } export declare namespace FlagGetResponse { interface Rule { /** * Conditions the context must satisfy for this rule to match. An empty array * matches all contexts. */ conditions: Array; /** * Evaluation order; lower numbers are evaluated first. Must be unique across the * flag's rules. */ priority: number; /** * Variation served when this rule matches. Must be a key in `variations`. */ serve_variation: string; rollout?: Rule.Rollout; } namespace Rule { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array>; logical_operator: 'AND' | 'OR'; } } } } } } interface Rollout { /** * Percentage of matching traffic (0–100) served this variation. For multi-way * splits, use cumulative upper bounds across rules (e.g. 30, 70, 100). */ percentage: number; /** * Context attribute used for sticky bucketing. Defaults to `targetingKey`. If * absent at evaluation time, bucketing is random per request. */ attribute?: string; } } } export interface FlagCreateParams { /** * Path param: Cloudflare account ID. */ account_id: string; /** * Body param: Variation served when no rule matches or the flag is disabled. Must * be a key in `variations`. */ default_variation: string; /** * Body param: When false, the flag bypasses all rules and always serves * `default_variation`. */ enabled: boolean; /** * Body param: Unique identifier for the flag within an app. Used in all evaluation * and SDK calls. */ key: string; /** * Body param: Targeting rules evaluated in ascending `priority`; the first * matching rule wins. An empty array means the flag always serves * `default_variation`. */ rules: Array; /** * Body param: Map of variation name to value. All values must be the same type * (boolean, string, number, or JSON object/array). Each serialized value must be * 10KB or smaller. */ variations: { [key: string]: string | null | number | boolean | { [key: string]: unknown; } | Array; }; /** * Body param */ description?: string | null; /** * Body param: Value type of the flag's variations. Inferred from the variation * values on write, so it may be omitted in requests. */ type?: 'boolean' | 'string' | 'number' | 'json'; } export declare namespace FlagCreateParams { interface Rule { /** * Conditions the context must satisfy for this rule to match. An empty array * matches all contexts. */ conditions: Array; /** * Evaluation order; lower numbers are evaluated first. Must be unique across the * flag's rules. */ priority: number; /** * Variation served when this rule matches. Must be a key in `variations`. */ serve_variation: string; rollout?: Rule.Rollout; } namespace Rule { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array>; logical_operator: 'AND' | 'OR'; } } } } } } interface Rollout { /** * Percentage of matching traffic (0–100) served this variation. For multi-way * splits, use cumulative upper bounds across rules (e.g. 30, 70, 100). */ percentage: number; /** * Context attribute used for sticky bucketing. Defaults to `targetingKey`. If * absent at evaluation time, bucketing is random per request. */ attribute?: string; } } } export interface FlagUpdateParams { /** * Path param: Cloudflare account ID. */ account_id: string; /** * Path param: App identifier. */ app_id: string; /** * Body param: Variation served when no rule matches or the flag is disabled. Must * be a key in `variations`. */ default_variation: string; /** * Body param: When false, the flag bypasses all rules and always serves * `default_variation`. */ enabled: boolean; /** * Body param: Unique identifier for the flag within an app. Used in all evaluation * and SDK calls. */ key: string; /** * Body param: Targeting rules evaluated in ascending `priority`; the first * matching rule wins. An empty array means the flag always serves * `default_variation`. */ rules: Array; /** * Body param: Map of variation name to value. All values must be the same type * (boolean, string, number, or JSON object/array). Each serialized value must be * 10KB or smaller. */ variations: { [key: string]: string | null | number | boolean | { [key: string]: unknown; } | Array; }; /** * Body param */ description?: string | null; /** * Body param: Value type of the flag's variations. Inferred from the variation * values on write, so it may be omitted in requests. */ type?: 'boolean' | 'string' | 'number' | 'json'; } export declare namespace FlagUpdateParams { interface Rule { /** * Conditions the context must satisfy for this rule to match. An empty array * matches all contexts. */ conditions: Array; /** * Evaluation order; lower numbers are evaluated first. Must be unique across the * flag's rules. */ priority: number; /** * Variation served when this rule matches. Must be a key in `variations`. */ serve_variation: string; rollout?: Rule.Rollout; } namespace Rule { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array; logical_operator: 'AND' | 'OR'; } namespace UnionMember1 { interface UnionMember0 { attribute: string; operator: 'equals' | 'not_equals' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals' | 'contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in'; /** * Value to compare against the context attribute. Must be an array for `in` and * `not_in`; numeric and ISO-8601 datetime strings are accepted by the ordering * operators. */ value: unknown; } interface UnionMember1 { clauses: Array>; logical_operator: 'AND' | 'OR'; } } } } } } interface Rollout { /** * Percentage of matching traffic (0–100) served this variation. For multi-way * splits, use cumulative upper bounds across rules (e.g. 30, 70, 100). */ percentage: number; /** * Context attribute used for sticky bucketing. Defaults to `targetingKey`. If * absent at evaluation time, bucketing is random per request. */ attribute?: string; } } } export interface FlagListParams extends CursorPaginationAfterParams { /** * Path param: Cloudflare account ID. */ account_id: string; /** * Query param: Max items to return (1–200). */ limit?: string; } export interface FlagDeleteParams { /** * Cloudflare account ID. */ account_id: string; /** * App identifier. */ app_id: string; } export interface FlagGetParams { /** * Cloudflare account ID. */ account_id: string; /** * App identifier. */ app_id: string; } export declare namespace Flags { export { type FlagCreateResponse as FlagCreateResponse, type FlagUpdateResponse as FlagUpdateResponse, type FlagListResponse as FlagListResponse, type FlagDeleteResponse as FlagDeleteResponse, type FlagGetResponse as FlagGetResponse, type FlagListResponsesCursorPaginationAfter as FlagListResponsesCursorPaginationAfter, type FlagCreateParams as FlagCreateParams, type FlagUpdateParams as FlagUpdateParams, type FlagListParams as FlagListParams, type FlagDeleteParams as FlagDeleteParams, type FlagGetParams as FlagGetParams, }; export { Changelog as Changelog, BaseChangelog as BaseChangelog, type ChangelogListResponse as ChangelogListResponse, type ChangelogListResponsesCursorPaginationAfter as ChangelogListResponsesCursorPaginationAfter, type ChangelogListParams as ChangelogListParams, }; } //# sourceMappingURL=flags.d.ts.map