48 lines
1.5 KiB
JavaScript
48 lines
1.5 KiB
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
import { APIResource } from "../../resource.mjs";
|
|
export class Config extends APIResource {
|
|
/**
|
|
* Updates Zaraz configuration for a zone.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* const configuration = await client.zaraz.config.update({
|
|
* zone_id: '023e105f4ecef8ad9ca31a8372d0c353',
|
|
* dataLayer: true,
|
|
* debugKey: 'debugKey',
|
|
* settings: { autoInjectScript: true },
|
|
* tools: {
|
|
* foo: { ... },
|
|
* },
|
|
* triggers: {
|
|
* foo: { ... },
|
|
* },
|
|
* variables: {
|
|
* foo: { ... },
|
|
* },
|
|
* zarazVersion: 0,
|
|
* });
|
|
* ```
|
|
*/
|
|
update(params, options) {
|
|
const { zone_id, ...body } = params;
|
|
return this._client.put(`/zones/${zone_id}/settings/zaraz/config`, { body, ...options })._thenUnwrap((obj) => obj.result);
|
|
}
|
|
/**
|
|
* Gets latest Zaraz configuration for a zone. It can be preview or published
|
|
* configuration, whichever was the last updated. Secret variables values will not
|
|
* be included.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* const configuration = await client.zaraz.config.get({
|
|
* zone_id: '023e105f4ecef8ad9ca31a8372d0c353',
|
|
* });
|
|
* ```
|
|
*/
|
|
get(params, options) {
|
|
const { zone_id } = params;
|
|
return this._client.get(`/zones/${zone_id}/settings/zaraz/config`, options)._thenUnwrap((obj) => obj.result);
|
|
}
|
|
}
|
|
//# sourceMappingURL=config.mjs.map
|