@otters.ai/common-backend 1.0.31 → 1.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare enum GoalCategory {
|
|
2
|
+
CUSTOMER_SUCCESS = "Customer Success",
|
|
3
|
+
MARKETING = "Marketing",
|
|
4
|
+
ONBOARDING = "Onboarding",
|
|
5
|
+
PARTNER_ECOSYSTEM = "Partner Ecosystem",
|
|
6
|
+
PRE_SALES = "Pre-Sales",
|
|
7
|
+
PRODUCT_MANAGEMENT = "Product Management",
|
|
8
|
+
PROFESSIONAL_SERVICES = "Professional Services",
|
|
9
|
+
RENEWALS = "Renewals",
|
|
10
|
+
SALES = "Sales",
|
|
11
|
+
SOLUTION_ENGINEERING = "Solution Engineering",
|
|
12
|
+
SUPPORT = "Support"
|
|
13
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GoalCategory = void 0;
|
|
4
|
+
var GoalCategory;
|
|
5
|
+
(function (GoalCategory) {
|
|
6
|
+
GoalCategory["CUSTOMER_SUCCESS"] = "Customer Success";
|
|
7
|
+
GoalCategory["MARKETING"] = "Marketing";
|
|
8
|
+
GoalCategory["ONBOARDING"] = "Onboarding";
|
|
9
|
+
GoalCategory["PARTNER_ECOSYSTEM"] = "Partner Ecosystem";
|
|
10
|
+
GoalCategory["PRE_SALES"] = "Pre-Sales";
|
|
11
|
+
GoalCategory["PRODUCT_MANAGEMENT"] = "Product Management";
|
|
12
|
+
GoalCategory["PROFESSIONAL_SERVICES"] = "Professional Services";
|
|
13
|
+
GoalCategory["RENEWALS"] = "Renewals";
|
|
14
|
+
GoalCategory["SALES"] = "Sales";
|
|
15
|
+
GoalCategory["SOLUTION_ENGINEERING"] = "Solution Engineering";
|
|
16
|
+
GoalCategory["SUPPORT"] = "Support";
|
|
17
|
+
})(GoalCategory || (exports.GoalCategory = GoalCategory = {}));
|
package/build/enum/index.d.ts
CHANGED
package/build/enum/index.js
CHANGED