404

[ Avaa Bypassed ]




Upload:

Command:

botdev@13.59.115.106: ~ $
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthConnectionClient = exports.AuthClient = void 0;
const guards_1 = require("../../guards");
const http_1 = require("../http");
class AuthClient extends http_1.ResourceClient {
    constructor(e) {
        super();
        this.e = e;
        this.connections = new AuthConnectionClient(e);
    }
}
exports.AuthClient = AuthClient;
class AuthConnectionClient extends http_1.ResourceClient {
    constructor(e) {
        super();
        this.e = e;
    }
    async load(email) {
        const { req } = await this.e.client.make('GET', `/auth/connections/${email}`);
        const res = await this.e.client.do(req);
        if (!guards_1.isAuthConnectionResponse(res)) {
            throw http_1.createFatalAPIFormat(req, res);
        }
        return res.data;
    }
}
exports.AuthConnectionClient = AuthConnectionClient;

Filemanager

Name Type Size Permission Actions
auth.d.ts File 644 B 0644
auth.js File 909 B 0644
oauth.d.ts File 1.83 KB 0644
oauth.js File 4.66 KB 0644
openid.d.ts File 984 B 0644
openid.js File 1.61 KB 0644