2025-11-13 13:13:34 -07:00

163 lines
5.1 KiB
TypeScript

import { APIResource } from "../../resource.js";
import * as Core from "../../core.js";
import { SinglePage } from "../../pagination.js";
export declare class Cookies extends APIResource {
/**
* Lists all cookies collected by Page Shield.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const cookieListResponse of client.pageShield.cookies.list(
* { zone_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* )) {
* // ...
* }
* ```
*/
list(params: CookieListParams, options?: Core.RequestOptions): Core.PagePromise<CookieListResponsesSinglePage, CookieListResponse>;
/**
* Fetches a cookie collected by Page Shield by cookie ID.
*
* @example
* ```ts
* const cookie = await client.pageShield.cookies.get(
* '023e105f4ecef8ad9ca31a8372d0c353',
* { zone_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
get(cookieId: string, params: CookieGetParams, options?: Core.RequestOptions): Core.APIPromise<CookieGetResponse | null>;
}
export declare class CookieListResponsesSinglePage extends SinglePage<CookieListResponse> {
}
export interface CookieListResponse {
/**
* Identifier
*/
id: string;
first_seen_at: string;
host: string;
last_seen_at: string;
name: string;
type: 'first_party' | 'unknown';
domain_attribute?: string;
expires_attribute?: string;
http_only_attribute?: boolean;
max_age_attribute?: number;
page_urls?: Array<string>;
path_attribute?: string;
same_site_attribute?: 'lax' | 'strict' | 'none';
secure_attribute?: boolean;
}
export interface CookieGetResponse {
/**
* Identifier
*/
id: string;
first_seen_at: string;
host: string;
last_seen_at: string;
name: string;
type: 'first_party' | 'unknown';
domain_attribute?: string;
expires_attribute?: string;
http_only_attribute?: boolean;
max_age_attribute?: number;
page_urls?: Array<string>;
path_attribute?: string;
same_site_attribute?: 'lax' | 'strict' | 'none';
secure_attribute?: boolean;
}
export interface CookieListParams {
/**
* Path param: Identifier
*/
zone_id: string;
/**
* Query param: The direction used to sort returned cookies.'
*/
direction?: 'asc' | 'desc';
/**
* Query param: Filters the returned cookies that match the specified domain
* attribute
*/
domain?: string;
/**
* Query param: Export the list of cookies as a file.
*/
export?: 'csv';
/**
* Query param: Includes cookies that match one or more URL-encoded hostnames
* separated by commas.
*
* Wildcards are supported at the start and end of each hostname to support starts
* with, ends with and contains. If no wildcards are used, results will be filtered
* by exact match
*/
hosts?: string;
/**
* Query param: Filters the returned cookies that are set with HttpOnly
*/
http_only?: boolean;
/**
* Query param: Filters the returned cookies that match the specified name.
* Wildcards are supported at the start and end to support starts with, ends with
* and contains. e.g. session\*
*/
name?: string;
/**
* Query param: The field used to sort returned cookies.
*/
order_by?: 'first_seen_at' | 'last_seen_at';
/**
* Query param: The current page number of the paginated results.
*
* We additionally support a special value "all". When "all" is used, the API will
* return all the cookies with the applied filters in a single page. This feature
* is best-effort and it may only work for zones with a low number of cookies
*/
page?: string;
/**
* Query param: Includes connections that match one or more page URLs (separated by
* commas) where they were last seen
*
* Wildcards are supported at the start and end of each page URL to support starts
* with, ends with and contains. If no wildcards are used, results will be filtered
* by exact match
*/
page_url?: string;
/**
* Query param: Filters the returned cookies that match the specified path
* attribute
*/
path?: string;
/**
* Query param: The number of results per page.
*/
per_page?: number;
/**
* Query param: Filters the returned cookies that match the specified same_site
* attribute
*/
same_site?: 'lax' | 'strict' | 'none';
/**
* Query param: Filters the returned cookies that are set with Secure
*/
secure?: boolean;
/**
* Query param: Filters the returned cookies that match the specified type
* attribute
*/
type?: 'first_party' | 'unknown';
}
export interface CookieGetParams {
/**
* Identifier
*/
zone_id: string;
}
export declare namespace Cookies {
export { type CookieListResponse as CookieListResponse, type CookieGetResponse as CookieGetResponse, CookieListResponsesSinglePage as CookieListResponsesSinglePage, type CookieListParams as CookieListParams, type CookieGetParams as CookieGetParams, };
}
//# sourceMappingURL=cookies.d.ts.map