@archon-inc/sdk
Version:
Integrate easily to our government platform using this SDK. More info on https://archon.inc/sdk
31 lines (30 loc) • 890 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SessionType = exports.UserSource = void 0;
/**
* The source of a user.
*/
var UserSource;
(function (UserSource) {
/**
* The user is an Archon administrator.
*/
UserSource["ARCHON"] = "archon";
/**
* The user is a member of your organization.
*/
UserSource["YOUR_ORG"] = "your_org";
/**
* The user is a client of your organization (i.e. a government agency, business, or individual).
*/
UserSource["CLIENT"] = "client";
/**
* The user is a service account.
*/
UserSource["SERVICE"] = "service";
})(UserSource || (exports.UserSource = UserSource = {}));
var SessionType;
(function (SessionType) {
SessionType["USER"] = "USER";
SessionType["SERVICE"] = "SERVICE";
})(SessionType || (exports.SessionType = SessionType = {}));