UNPKG

@devma/qloo

Version:

TypeScript SDK for the Qloo Insights API - Generate taste-based insights and recommendations

19 lines 629 B
/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { ClientSDK } from "../lib/sdks.js"; import { Audiences } from "./audiences.js"; import { Insights } from "./insights.js"; import { Tags } from "./tags.js"; export class Qloo extends ClientSDK { get insights() { return (this._insights ?? (this._insights = new Insights(this._options))); } get audiences() { return (this._audiences ?? (this._audiences = new Audiences(this._options))); } get tags() { return (this._tags ?? (this._tags = new Tags(this._options))); } } //# sourceMappingURL=sdk.js.map