import { APIResource } from "../../../../core/resource.mjs"; import * as ChangelogAPI from "./changelog.mjs"; import { BaseChangelog, Changelog, ChangelogListParams, ChangelogListResponse, ChangelogListResponsesCursorPaginationAfter } from "./changelog.mjs"; import { APIPromise } from "../../../../core/api-promise.mjs"; import { CursorPaginationAfter, type CursorPaginationAfterParams, PagePromise } from "../../../../core/pagination.mjs"; import { RequestOptions } from "../../../../internal/request-options.mjs"; 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; /** * Deletes a flag permanently. 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 the API serves when the flag is off, or when it's on but no rule * matches the context. 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 share the same type (boolean, string, * number, or JSON object/array), and each serialized value stays within 10KB. */ variations: { [key: string]: string | null | number | boolean | { [key: string]: unknown; } | Array; }; description?: string | null; /** * Value type of the flag's variations. The API infers this from the variation * values on write, so you can omit it 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: the API evaluates rules with lower numbers first. Must be * unique across the flag's rules. */ priority: number; /** * Variation the API serves 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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 the API serves when the flag is off, or when it's on but no rule * matches the context. 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 share the same type (boolean, string, * number, or JSON object/array), and each serialized value stays within 10KB. */ variations: { [key: string]: string | null | number | boolean | { [key: string]: unknown; } | Array; }; description?: string | null; /** * Value type of the flag's variations. The API infers this from the variation * values on write, so you can omit it 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: the API evaluates rules with lower numbers first. Must be * unique across the flag's rules. */ priority: number; /** * Variation the API serves 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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 the API serves when the flag is off, or when it's on but no rule * matches the context. 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 share the same type (boolean, string, * number, or JSON object/array), and each serialized value stays within 10KB. */ variations: { [key: string]: string | null | number | boolean | { [key: string]: unknown; } | Array; }; description?: string | null; /** * Value type of the flag's variations. The API infers this from the variation * values on write, so you can omit it 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: the API evaluates rules with lower numbers first. Must be * unique across the flag's rules. */ priority: number; /** * Variation the API serves 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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 the API serves when the flag is off, or when it's on but no rule * matches the context. 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 share the same type (boolean, string, * number, or JSON object/array), and each serialized value stays within 10KB. */ variations: { [key: string]: string | null | number | boolean | { [key: string]: unknown; } | Array; }; description?: string | null; /** * Value type of the flag's variations. The API infers this from the variation * values on write, so you can omit it 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: the API evaluates rules with lower numbers first. Must be * unique across the flag's rules. */ priority: number; /** * Variation the API serves 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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 the API serves when the flag is off, or when it's on but * no rule matches the context. 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 share the same type * (boolean, string, number, or JSON object/array), and each serialized value stays * within 10KB. */ 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. The API infers this from the * variation values on write, so you can omit it 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: the API evaluates rules with lower numbers first. Must be * unique across the flag's rules. */ priority: number; /** * Variation the API serves 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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 the API serves when the flag is off, or when it's on but * no rule matches the context. 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 share the same type * (boolean, string, number, or JSON object/array), and each serialized value stays * within 10KB. */ 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. The API infers this from the * variation values on write, so you can omit it 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: the API evaluates rules with lower numbers first. Must be * unique across the flag's rules. */ priority: number; /** * Variation the API serves 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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: string | null | number | boolean | { [key: string]: unknown; } | Array; } 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.mts.map