// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'cloudflare/core'; import { APIResource } from 'cloudflare/resource'; import * as NELAPI from 'cloudflare/resources/zones/settings/nel'; export class NEL extends APIResource { /** * Automatically optimize image loading for website visitors on mobile devices. * Refer to our [blog post](http://blog.cloudflare.com/nel-solving-mobile-speed) * for more information. */ edit(params: NELEditParams, options?: Core.RequestOptions): Core.APIPromise { const { zone_id, ...body } = params; return ( this._client.patch(`/zones/${zone_id}/settings/nel`, { body, ...options }) as Core.APIPromise<{ result: ZoneSettingNEL; }> )._thenUnwrap((obj) => obj.result); } /** * Enable Network Error Logging reporting on your zone. (Beta) */ get(params: NELGetParams, options?: Core.RequestOptions): Core.APIPromise { const { zone_id } = params; return ( this._client.get(`/zones/${zone_id}/settings/nel`, options) as Core.APIPromise<{ result: ZoneSettingNEL; }> )._thenUnwrap((obj) => obj.result); } } /** * Enable Network Error Logging reporting on your zone. (Beta) */ export interface ZoneSettingNEL { /** * Zone setting identifier. */ id: 'nel'; /** * Current value of the zone setting. */ value: ZoneSettingNEL.Value; /** * Whether or not this setting can be modified for this zone (based on your * Cloudflare plan level). */ editable?: true | false; /** * last time this setting was modified. */ modified_on?: string | null; } export namespace ZoneSettingNEL { /** * Current value of the zone setting. */ export interface Value { enabled?: boolean; } } export interface NELEditParams { /** * Path param: Identifier */ zone_id: string; /** * Body param: Enable Network Error Logging reporting on your zone. (Beta) */ value: ZoneSettingNEL; } export interface NELGetParams { /** * Identifier */ zone_id: string; } export namespace NEL { export import ZoneSettingNEL = NELAPI.ZoneSettingNEL; export import NELEditParams = NELAPI.NELEditParams; export import NELGetParams = NELAPI.NELGetParams; }