@coveo/platform-client
Version:
The main goal of this package is to provide an easy to configure and straightforward way of querying Coveo Cloud APIs using JavaScript.
41 lines • 1.61 kB
JavaScript
import Resource from '../Resource.js';
import Administration from './Read/Administration/Administration.js';
import DataShare from './Read/DataShare/DataShare.js';
import Dimensions from './Read/Dimensions/Dimensions.js';
import Exports from './Read/Exports/Exports.js';
import Filters from './Read/Filters/Filters.js';
import Reports from './Read/Reports/Reports.js';
import Snowflake from './Read/Snowflake/Snowflake.js';
import Statistics from './Read/Statistics/Statistics.js';
import DataHealth from './Read/DataHealth/DataHealth.js';
import UAUsers from './Read/UAUsers/UAUsers.js';
export default class UsageAnalytics extends Resource {
api;
serverlessApi;
administration;
dataHealth;
dataShare;
dimensions;
exports;
filters;
reports;
snowflake;
statistics;
users;
constructor(api, serverlessApi) {
super(api, serverlessApi);
this.api = api;
this.serverlessApi = serverlessApi;
this.administration = new Administration(api, serverlessApi);
this.dataHealth = new DataHealth(api, serverlessApi);
this.dataShare = new DataShare(api, serverlessApi);
this.dimensions = new Dimensions(api, serverlessApi);
this.exports = new Exports(api, serverlessApi);
this.filters = new Filters(api, serverlessApi);
this.reports = new Reports(api, serverlessApi);
this.snowflake = new Snowflake(api, serverlessApi);
this.statistics = new Statistics(api, serverlessApi);
this.users = new UAUsers(api, serverlessApi);
}
}
//# sourceMappingURL=UsageAnalytics.js.map