import { APIResource } from "../../resource.js"; import * as Core from "../../core.js"; import * as AssetsAPI from "./assets.js"; import { AssetCreateParams, AssetCreateResponse, AssetDeleteParams, AssetGetParams, AssetGetResponse, AssetListParams, AssetListResponse, AssetListResponsesV4PagePaginationArray, AssetUpdateParams, AssetUpdateResponse, Assets } from "./assets.js"; import { SinglePage } from "../../pagination.js"; export declare class CustomPages extends APIResource { assets: AssetsAPI.Assets; /** * Updates the configuration of an existing custom page. * * @example * ```ts * const customPage = await client.customPages.update( * 'ratelimit_block', * { * state: 'default', * url: 'http://www.example.com', * account_id: 'account_id', * }, * ); * ``` */ update(identifier: '1000_errors' | '500_errors' | 'basic_challenge' | 'country_challenge' | 'ip_block' | 'managed_challenge' | 'ratelimit_block' | 'under_attack' | 'waf_block' | 'waf_challenge', params: CustomPageUpdateParams, options?: Core.RequestOptions): Core.APIPromise; /** * Fetches all the custom pages. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const customPageListResponse of client.customPages.list( * { account_id: 'account_id' }, * )) { * // ... * } * ``` */ list(params?: CustomPageListParams, options?: Core.RequestOptions): Core.PagePromise; list(options?: Core.RequestOptions): Core.PagePromise; /** * Fetches the details of a custom page. * * @example * ```ts * const customPage = await client.customPages.get( * 'ratelimit_block', * { account_id: 'account_id' }, * ); * ``` */ get(identifier: '1000_errors' | '500_errors' | 'basic_challenge' | 'country_challenge' | 'ip_block' | 'managed_challenge' | 'ratelimit_block' | 'under_attack' | 'waf_block' | 'waf_challenge', params?: CustomPageGetParams, options?: Core.RequestOptions): Core.APIPromise; get(identifier: '1000_errors' | '500_errors' | 'basic_challenge' | 'country_challenge' | 'ip_block' | 'managed_challenge' | 'ratelimit_block' | 'under_attack' | 'waf_block' | 'waf_challenge', options?: Core.RequestOptions): Core.APIPromise; } export declare class CustomPageListResponsesSinglePage extends SinglePage { } export interface CustomPageUpdateResponse { id?: string; created_on?: string; description?: string; modified_on?: string; preview_target?: string; required_tokens?: Array; /** * The custom page state. */ state?: 'default' | 'customized'; /** * The URL associated with the custom page. */ url?: string; } export interface CustomPageListResponse { id?: string; created_on?: string; description?: string; modified_on?: string; preview_target?: string; required_tokens?: Array; /** * The custom page state. */ state?: 'default' | 'customized'; /** * The URL associated with the custom page. */ url?: string; } export interface CustomPageGetResponse { id?: string; created_on?: string; description?: string; modified_on?: string; preview_target?: string; required_tokens?: Array; /** * The custom page state. */ state?: 'default' | 'customized'; /** * The URL associated with the custom page. */ url?: string; } export interface CustomPageUpdateParams { /** * Body param: The custom page state. */ state: 'default' | 'customized'; /** * Body param: The URL associated with the custom page. */ url: string; /** * Path param: The Account ID to use for this endpoint. Mutually exclusive with the * Zone ID. */ account_id?: string; /** * Path param: The Zone ID to use for this endpoint. Mutually exclusive with the * Account ID. */ zone_id?: string; } export interface CustomPageListParams { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ account_id?: string; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ zone_id?: string; } export interface CustomPageGetParams { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ account_id?: string; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ zone_id?: string; } export declare namespace CustomPages { export { type CustomPageUpdateResponse as CustomPageUpdateResponse, type CustomPageListResponse as CustomPageListResponse, type CustomPageGetResponse as CustomPageGetResponse, CustomPageListResponsesSinglePage as CustomPageListResponsesSinglePage, type CustomPageUpdateParams as CustomPageUpdateParams, type CustomPageListParams as CustomPageListParams, type CustomPageGetParams as CustomPageGetParams, }; export { Assets as Assets, type AssetCreateResponse as AssetCreateResponse, type AssetUpdateResponse as AssetUpdateResponse, type AssetListResponse as AssetListResponse, type AssetGetResponse as AssetGetResponse, AssetListResponsesV4PagePaginationArray as AssetListResponsesV4PagePaginationArray, type AssetCreateParams as AssetCreateParams, type AssetUpdateParams as AssetUpdateParams, type AssetListParams as AssetListParams, type AssetDeleteParams as AssetDeleteParams, type AssetGetParams as AssetGetParams, }; } //# sourceMappingURL=custom-pages.d.ts.map