Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 30x 30x 30x 30x 1x 1x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 1x | import InsigniaApi from '../index.js';
import Auth from './Auth.js';
import Accounts from './Accounts.js';
import Categories from './Categories.js';
import Changelogs from './Changelogs.js';
import Configs from './Configs.js';
import ContactForms from './ContactForms.js';
import ConversationalTopics from './ConversationalTopics.js';
import Countries from './Countries.js';
import Coupons from './Coupons.js';
import Courses from './Courses.js';
import Currencies from './Currencies.js';
import Files from './Files.js';
import Forums from './Forums.js';
import Hashes from './Hashes.js';
import Insignias from './Insignias.js';
import Languages from './Languages.js';
import MailBlacklist from './MailBlacklist.js';
import Organizations from './Organizations.js';
import PaymentMethods from './PaymentMethods.js';
import Quizzes from './Quizzes.js';
import ShortLinks from './ShortLinks.js';
import Surveys from './Surveys.js';
import Taxes from './Taxes.js';
import Teacher from './Teacher.js';
import UserTypes from './UserTypes.js';
import Users from './Users.js';
import Zoom from './Zoom.js';
export default class InsigniaApiV1 extends InsigniaApi {
static _resolve(baseUrl) {
baseUrl = InsigniaApi._resolve(baseUrl);
baseUrl += !/\/v1(\/|$)/.test(baseUrl) ? '/v1' : '';
return baseUrl;
}
constructor(baseUrl = null) {
let url = InsigniaApiV1._resolve(baseUrl);
super(url);
this.auth = new Auth(this);
this.accounts = new Accounts(this);
this.categories = new Categories(this);
this.changelogs = new Changelogs(this);
this.configs = new Configs(this);
this.contactForms = new ContactForms(this);
this.conversationalTopics = new ConversationalTopics(this);
this.countries = new Countries(this);
this.coupons = new Coupons(this);
this.courses = new Courses(this);
this.currencies = new Currencies(this);
this.files = new Files(this);
this.forums = new Forums(this);
this.hashes = new Hashes(this);
this.insignias = new Insignias(this);
this.languages = new Languages(this);
this.mailBlacklist = new MailBlacklist(this);
this.organizations = new Organizations(this);
this.paymentMethods = new PaymentMethods(this);
this.quizzes = new Quizzes(this);
this.shortLinks = new ShortLinks(this);
this.surveys = new Surveys(this);
this.taxes = new Taxes(this);
this.teacher = new Teacher(this);
this.userTypes = new UserTypes(this);
this.users = new Users(this);
this.zoom = new Zoom(this);
}
}
|