cloudflare
Version:
The official TypeScript library for the Cloudflare API
77 lines • 3.23 kB
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from 'cloudflare/resource';
import * as EventsAPI from 'cloudflare/resources/waiting-rooms/events/events';
import * as DetailsAPI from 'cloudflare/resources/waiting-rooms/events/details';
import { SinglePage } from 'cloudflare/pagination';
export class Events extends APIResource {
constructor() {
super(...arguments);
this.details = new DetailsAPI.Details(this._client);
}
/**
* Only available for the Waiting Room Advanced subscription. Creates an event for
* a waiting room. An event takes place during a specified period of time,
* temporarily changing the behavior of a waiting room. While the event is active,
* some of the properties in the event's configuration may either override or
* inherit from the waiting room's configuration. Note that events cannot overlap
* with each other, so only one event can be active at a time.
*/
create(waitingRoomId, params, options) {
const { zone_id, ...body } = params;
return this._client.post(`/zones/${zone_id}/waiting_rooms/${waitingRoomId}/events`, {
body,
...options,
})._thenUnwrap((obj) => obj.result);
}
/**
* Updates a configured event for a waiting room.
*/
update(waitingRoomId, eventId, params, options) {
const { zone_id, ...body } = params;
return this._client.put(`/zones/${zone_id}/waiting_rooms/${waitingRoomId}/events/${eventId}`, {
body,
...options,
})._thenUnwrap((obj) => obj.result);
}
/**
* Lists events for a waiting room.
*/
list(waitingRoomId, params, options) {
const { zone_id, ...query } = params;
return this._client.getAPIList(`/zones/${zone_id}/waiting_rooms/${waitingRoomId}/events`, EventsSinglePage, { query, ...options });
}
/**
* Deletes an event for a waiting room.
*/
delete(waitingRoomId, eventId, params, options) {
const { zone_id, body } = params;
return this._client.delete(`/zones/${zone_id}/waiting_rooms/${waitingRoomId}/events/${eventId}`, {
body: body,
...options,
})._thenUnwrap((obj) => obj.result);
}
/**
* Patches a configured event for a waiting room.
*/
edit(waitingRoomId, eventId, params, options) {
const { zone_id, ...body } = params;
return this._client.patch(`/zones/${zone_id}/waiting_rooms/${waitingRoomId}/events/${eventId}`, {
body,
...options,
})._thenUnwrap((obj) => obj.result);
}
/**
* Fetches a single configured event for a waiting room.
*/
get(waitingRoomId, eventId, params, options) {
const { zone_id } = params;
return this._client.get(`/zones/${zone_id}/waiting_rooms/${waitingRoomId}/events/${eventId}`, options)._thenUnwrap((obj) => obj.result);
}
}
export class EventsSinglePage extends SinglePage {
}
(function (Events) {
Events.EventsSinglePage = EventsAPI.EventsSinglePage;
Events.Details = DetailsAPI.Details;
})(Events || (Events = {}));
//# sourceMappingURL=events.mjs.map