@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.
63 lines • 2.14 kB
JavaScript
/*
* Metadata about the context where the organization creation request originated
*/
export var OrganizationCreationOrigin;
(function (OrganizationCreationOrigin) {
/*
* Created from the Coveo Administration Console
*/
OrganizationCreationOrigin["ADMIN_UI"] = "ADMIN_UI";
/*
* Created from the API, default value in the backend if parameter is omitted
*/
OrganizationCreationOrigin["API"] = "API";
/*
* Created from the Coveo CLI
*/
OrganizationCreationOrigin["CLI"] = "CLI";
/*
* Created when syncing from our CRM solution
*/
OrganizationCreationOrigin["BUSINESS_CRM"] = "BUSINESS_CRM";
/*
* Created from a training portal
*/
OrganizationCreationOrigin["TRAINING"] = "TRAINING";
/*
* Created by one of our partners
*/
OrganizationCreationOrigin["PARTNER_PROGRAM"] = "PARTNER_PROGRAM";
/*
* Created as a scratch organization
*/
OrganizationCreationOrigin["TEST"] = "TEST";
/*
* Created from the Coveo website
*/
OrganizationCreationOrigin["WEBSITE"] = "WEBSITE";
/*
* Created from the Salesforce Coveo integration package
*/
OrganizationCreationOrigin["SALESFORCE_INTEGRATION_TRIAL"] = "SALESFORCE_INTEGRATION_TRIAL";
/*
* Created from the ServiceNow Coveo integration package
*/
OrganizationCreationOrigin["SERVICENOW_INTEGRATION_TRIAL"] = "SERVICENOW_INTEGRATION_TRIAL";
/*
* Created from the Sitecore Coveo integration package
*/
OrganizationCreationOrigin["SITECORE_INTEGRATION_TRIAL"] = "SITECORE_INTEGRATION_TRIAL";
/*
* Unknown origin
*/
OrganizationCreationOrigin["UNKNOWN"] = "UNKNOWN";
})(OrganizationCreationOrigin || (OrganizationCreationOrigin = {}));
export var PrivilegeFilterType;
(function (PrivilegeFilterType) {
PrivilegeFilterType["ALL"] = "ALL";
/**
* Only the privileges that are allowed for the creation of a custom API key
*/
PrivilegeFilterType["CUSTOM"] = "CUSTOM";
})(PrivilegeFilterType || (PrivilegeFilterType = {}));
//# sourceMappingURL=OrganizationInterfaces.js.map