@archon-inc/sdk
Version:
Integrate easily to our government platform using this SDK. More info on https://archon.inc/sdk
28 lines (27 loc) • 733 B
JavaScript
/**
* The source of a user.
*/
export 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 || (UserSource = {}));
export var SessionType;
(function (SessionType) {
SessionType["USER"] = "USER";
SessionType["SERVICE"] = "SERVICE";
})(SessionType || (SessionType = {}));