@otters.ai/common-backend 1.0.115 → 1.0.117
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.
- package/build/enum/contentType.d.ts +13 -0
- package/build/enum/contentType.js +17 -0
- package/build/enum/index.d.ts +1 -0
- package/build/enum/index.js +1 -0
- package/build/enum/partner/index.d.ts +3 -0
- package/build/enum/partner/index.js +19 -0
- package/build/enum/partner/parterType.d.ts +16 -0
- package/build/enum/partner/parterType.js +20 -0
- package/build/enum/partner/partnerStatus.d.ts +8 -0
- package/build/enum/partner/partnerStatus.js +12 -0
- package/build/enum/partner/partnerTier.d.ts +5 -0
- package/build/enum/partner/partnerTier.js +9 -0
- package/build/interface/partner-lead/partnerLeadStruct.d.ts +4 -29
- package/build/interface/partner-lead/partnerLeadStruct.js +0 -33
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare enum ContentHubContentType {
|
|
2
|
+
APIDocumentation = "API Documentation",
|
|
3
|
+
BrandGuidelines = "Brand Guidelines",
|
|
4
|
+
CaseStudy = "Case Study",
|
|
5
|
+
ImplementationGuide = "Implementation Guide",
|
|
6
|
+
MarketingCampaign = "Marketing Campaign",
|
|
7
|
+
Pricing = "Pricing",
|
|
8
|
+
ProductDataset = "Product Dataset",
|
|
9
|
+
SalesPlaybook = "Sales Playbook",
|
|
10
|
+
Training = "Training",
|
|
11
|
+
Video = "Video",
|
|
12
|
+
Webinar = "Webinar"
|
|
13
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ContentHubContentType = void 0;
|
|
4
|
+
var ContentHubContentType;
|
|
5
|
+
(function (ContentHubContentType) {
|
|
6
|
+
ContentHubContentType["APIDocumentation"] = "API Documentation";
|
|
7
|
+
ContentHubContentType["BrandGuidelines"] = "Brand Guidelines";
|
|
8
|
+
ContentHubContentType["CaseStudy"] = "Case Study";
|
|
9
|
+
ContentHubContentType["ImplementationGuide"] = "Implementation Guide";
|
|
10
|
+
ContentHubContentType["MarketingCampaign"] = "Marketing Campaign";
|
|
11
|
+
ContentHubContentType["Pricing"] = "Pricing";
|
|
12
|
+
ContentHubContentType["ProductDataset"] = "Product Dataset";
|
|
13
|
+
ContentHubContentType["SalesPlaybook"] = "Sales Playbook";
|
|
14
|
+
ContentHubContentType["Training"] = "Training";
|
|
15
|
+
ContentHubContentType["Video"] = "Video";
|
|
16
|
+
ContentHubContentType["Webinar"] = "Webinar";
|
|
17
|
+
})(ContentHubContentType || (exports.ContentHubContentType = ContentHubContentType = {}));
|
package/build/enum/index.d.ts
CHANGED
package/build/enum/index.js
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./parterType"), exports);
|
|
18
|
+
__exportStar(require("./partnerStatus"), exports);
|
|
19
|
+
__exportStar(require("./partnerTier"), exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare enum PartnerType {
|
|
2
|
+
Reseller = "Reseller",
|
|
3
|
+
VAR = "Value-Added Reseller (VAR)",
|
|
4
|
+
Distributor = "Distributor",
|
|
5
|
+
MSP = "Managed Service Provider (MSP)",
|
|
6
|
+
ReferralPartner = "Referral Partner",
|
|
7
|
+
SystemIntegrator = "System Integrator (SI)",
|
|
8
|
+
TechnologyAlliancePartner = "Technology Alliance Partner",
|
|
9
|
+
ConsultingPartner = "Consulting Partner",
|
|
10
|
+
OEM = "Original Equipment Manufacturer (OEM)",
|
|
11
|
+
ISV = "Independent Software Vendor (ISV)",
|
|
12
|
+
TrainingCertificationPartner = "Training/Certification Partner",
|
|
13
|
+
StrategicAlliancePartner = "Strategic Alliance Partner",
|
|
14
|
+
AffiliatePartner = "Affiliate Partner",
|
|
15
|
+
CSP = "Cloud Service Provider (CSP)"
|
|
16
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PartnerType = void 0;
|
|
4
|
+
var PartnerType;
|
|
5
|
+
(function (PartnerType) {
|
|
6
|
+
PartnerType["Reseller"] = "Reseller";
|
|
7
|
+
PartnerType["VAR"] = "Value-Added Reseller (VAR)";
|
|
8
|
+
PartnerType["Distributor"] = "Distributor";
|
|
9
|
+
PartnerType["MSP"] = "Managed Service Provider (MSP)";
|
|
10
|
+
PartnerType["ReferralPartner"] = "Referral Partner";
|
|
11
|
+
PartnerType["SystemIntegrator"] = "System Integrator (SI)";
|
|
12
|
+
PartnerType["TechnologyAlliancePartner"] = "Technology Alliance Partner";
|
|
13
|
+
PartnerType["ConsultingPartner"] = "Consulting Partner";
|
|
14
|
+
PartnerType["OEM"] = "Original Equipment Manufacturer (OEM)";
|
|
15
|
+
PartnerType["ISV"] = "Independent Software Vendor (ISV)";
|
|
16
|
+
PartnerType["TrainingCertificationPartner"] = "Training/Certification Partner";
|
|
17
|
+
PartnerType["StrategicAlliancePartner"] = "Strategic Alliance Partner";
|
|
18
|
+
PartnerType["AffiliatePartner"] = "Affiliate Partner";
|
|
19
|
+
PartnerType["CSP"] = "Cloud Service Provider (CSP)";
|
|
20
|
+
})(PartnerType || (exports.PartnerType = PartnerType = {}));
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PartnerStatus = void 0;
|
|
4
|
+
var PartnerStatus;
|
|
5
|
+
(function (PartnerStatus) {
|
|
6
|
+
PartnerStatus["WON"] = "Won";
|
|
7
|
+
PartnerStatus["LOST"] = "Lost";
|
|
8
|
+
PartnerStatus["DEVELOP"] = "Develop";
|
|
9
|
+
PartnerStatus["INDENTIFIED"] = "Identified";
|
|
10
|
+
PartnerStatus["IN_ACTIVE"] = "Inactive";
|
|
11
|
+
PartnerStatus["ACTIVE"] = "Active";
|
|
12
|
+
})(PartnerStatus || (exports.PartnerStatus = PartnerStatus = {}));
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PartnerTier = void 0;
|
|
4
|
+
var PartnerTier;
|
|
5
|
+
(function (PartnerTier) {
|
|
6
|
+
PartnerTier["GOLD"] = "Gold";
|
|
7
|
+
PartnerTier["SILEVR"] = "Silver";
|
|
8
|
+
PartnerTier["BRONZE"] = "Bronze";
|
|
9
|
+
})(PartnerTier || (exports.PartnerTier = PartnerTier = {}));
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { CurrencyEnum } from "../../enum";
|
|
2
|
+
import { PartnerStatus } from "../../enum/partner/partnerStatus";
|
|
3
|
+
import { PartnerType } from "../../enum/partner/parterType";
|
|
4
|
+
import { PartnerTier } from "../../enum/partner/partnerTier";
|
|
2
5
|
export interface PartnerLeadStruct {
|
|
3
6
|
id?: string;
|
|
7
|
+
name: string;
|
|
4
8
|
firstName: string;
|
|
5
9
|
lastName: string;
|
|
6
10
|
stage: number;
|
|
@@ -24,32 +28,3 @@ export interface ContactModelStruct {
|
|
|
24
28
|
id: string;
|
|
25
29
|
name: string;
|
|
26
30
|
}
|
|
27
|
-
export declare enum PartnerStatus {
|
|
28
|
-
WON = "Won",
|
|
29
|
-
LOST = "Lost",
|
|
30
|
-
DEVELOP = "Develop",
|
|
31
|
-
INDENTIFIED = "Identified",
|
|
32
|
-
IN_ACTIVE = "Inactive",
|
|
33
|
-
ACTIVE = "Active"
|
|
34
|
-
}
|
|
35
|
-
export declare enum PartnerType {
|
|
36
|
-
Reseller = "Reseller",
|
|
37
|
-
VAR = "Value-Added Reseller (VAR)",
|
|
38
|
-
Distributor = "Distributor",
|
|
39
|
-
MSP = "Managed Service Provider (MSP)",
|
|
40
|
-
ReferralPartner = "Referral Partner",
|
|
41
|
-
SystemIntegrator = "System Integrator (SI)",
|
|
42
|
-
TechnologyAlliancePartner = "Technology Alliance Partner",
|
|
43
|
-
ConsultingPartner = "Consulting Partner",
|
|
44
|
-
OEM = "Original Equipment Manufacturer (OEM)",
|
|
45
|
-
ISV = "Independent Software Vendor (ISV)",
|
|
46
|
-
TrainingCertificationPartner = "Training/Certification Partner",
|
|
47
|
-
StrategicAlliancePartner = "Strategic Alliance Partner",
|
|
48
|
-
AffiliatePartner = "Affiliate Partner",
|
|
49
|
-
CSP = "Cloud Service Provider (CSP)"
|
|
50
|
-
}
|
|
51
|
-
export declare enum PartnerTier {
|
|
52
|
-
GOLD = "Gold",
|
|
53
|
-
SILEVR = "Silver",
|
|
54
|
-
BRONZE = "Bronze"
|
|
55
|
-
}
|
|
@@ -1,35 +1,2 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PartnerTier = exports.PartnerType = exports.PartnerStatus = void 0;
|
|
4
|
-
var PartnerStatus;
|
|
5
|
-
(function (PartnerStatus) {
|
|
6
|
-
PartnerStatus["WON"] = "Won";
|
|
7
|
-
PartnerStatus["LOST"] = "Lost";
|
|
8
|
-
PartnerStatus["DEVELOP"] = "Develop";
|
|
9
|
-
PartnerStatus["INDENTIFIED"] = "Identified";
|
|
10
|
-
PartnerStatus["IN_ACTIVE"] = "Inactive";
|
|
11
|
-
PartnerStatus["ACTIVE"] = "Active";
|
|
12
|
-
})(PartnerStatus || (exports.PartnerStatus = PartnerStatus = {}));
|
|
13
|
-
var PartnerType;
|
|
14
|
-
(function (PartnerType) {
|
|
15
|
-
PartnerType["Reseller"] = "Reseller";
|
|
16
|
-
PartnerType["VAR"] = "Value-Added Reseller (VAR)";
|
|
17
|
-
PartnerType["Distributor"] = "Distributor";
|
|
18
|
-
PartnerType["MSP"] = "Managed Service Provider (MSP)";
|
|
19
|
-
PartnerType["ReferralPartner"] = "Referral Partner";
|
|
20
|
-
PartnerType["SystemIntegrator"] = "System Integrator (SI)";
|
|
21
|
-
PartnerType["TechnologyAlliancePartner"] = "Technology Alliance Partner";
|
|
22
|
-
PartnerType["ConsultingPartner"] = "Consulting Partner";
|
|
23
|
-
PartnerType["OEM"] = "Original Equipment Manufacturer (OEM)";
|
|
24
|
-
PartnerType["ISV"] = "Independent Software Vendor (ISV)";
|
|
25
|
-
PartnerType["TrainingCertificationPartner"] = "Training/Certification Partner";
|
|
26
|
-
PartnerType["StrategicAlliancePartner"] = "Strategic Alliance Partner";
|
|
27
|
-
PartnerType["AffiliatePartner"] = "Affiliate Partner";
|
|
28
|
-
PartnerType["CSP"] = "Cloud Service Provider (CSP)";
|
|
29
|
-
})(PartnerType || (exports.PartnerType = PartnerType = {}));
|
|
30
|
-
var PartnerTier;
|
|
31
|
-
(function (PartnerTier) {
|
|
32
|
-
PartnerTier["GOLD"] = "Gold";
|
|
33
|
-
PartnerTier["SILEVR"] = "Silver";
|
|
34
|
-
PartnerTier["BRONZE"] = "Bronze";
|
|
35
|
-
})(PartnerTier || (exports.PartnerTier = PartnerTier = {}));
|