@buzzposter/mcp 0.1.13 → 0.1.15
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/dist/index.js +536 -1492
- package/dist/tools.d.ts +5 -38
- package/dist/tools.js +510 -1471
- package/package.json +1 -1
package/dist/tools.d.ts
CHANGED
|
@@ -16,7 +16,6 @@ declare class BuzzPosterClient {
|
|
|
16
16
|
getPost(id: string): Promise<unknown>;
|
|
17
17
|
updatePost(id: string, data: Record<string, unknown>): Promise<unknown>;
|
|
18
18
|
deletePost(id: string): Promise<unknown>;
|
|
19
|
-
retryPost(id: string): Promise<unknown>;
|
|
20
19
|
getAnalytics(params?: Record<string, string>): Promise<unknown>;
|
|
21
20
|
listConversations(params?: Record<string, string>): Promise<unknown>;
|
|
22
21
|
getConversation(id: string): Promise<unknown>;
|
|
@@ -25,22 +24,11 @@ declare class BuzzPosterClient {
|
|
|
25
24
|
replyToComment(id: string, message: string): Promise<unknown>;
|
|
26
25
|
listReviews(params?: Record<string, string>): Promise<unknown>;
|
|
27
26
|
replyToReview(id: string, message: string): Promise<unknown>;
|
|
28
|
-
uploadMediaMultipart(filename: string, buffer: Buffer, mimeType: string): Promise<any>;
|
|
29
27
|
uploadFromUrl(data: {
|
|
30
28
|
url: string;
|
|
31
29
|
filename?: string;
|
|
32
30
|
folder?: string;
|
|
33
31
|
}): Promise<unknown>;
|
|
34
|
-
uploadBase64(data: {
|
|
35
|
-
data: string;
|
|
36
|
-
filename: string;
|
|
37
|
-
content_type: string;
|
|
38
|
-
folder?: string;
|
|
39
|
-
}): Promise<unknown>;
|
|
40
|
-
getUploadUrl(data: {
|
|
41
|
-
filename: string;
|
|
42
|
-
content_type: string;
|
|
43
|
-
}): Promise<unknown>;
|
|
44
32
|
listMedia(): Promise<unknown>;
|
|
45
33
|
deleteMedia(key: string): Promise<unknown>;
|
|
46
34
|
listSubscribers(params?: Record<string, string>): Promise<unknown>;
|
|
@@ -50,32 +38,17 @@ declare class BuzzPosterClient {
|
|
|
50
38
|
updateBroadcast(id: string, data: Record<string, unknown>): Promise<unknown>;
|
|
51
39
|
sendBroadcast(id: string): Promise<unknown>;
|
|
52
40
|
listTags(): Promise<unknown>;
|
|
53
|
-
listSequences(): Promise<unknown>;
|
|
54
41
|
listForms(): Promise<unknown>;
|
|
55
42
|
getSubscriberByEmail(email: string): Promise<unknown>;
|
|
56
43
|
listAutomations(params?: Record<string, string>): Promise<unknown>;
|
|
57
|
-
enrollInAutomation(automationId: string, data: Record<string, unknown>): Promise<unknown>;
|
|
58
44
|
listSegments(params?: Record<string, string>): Promise<unknown>;
|
|
59
45
|
getSegment(id: string, params?: Record<string, string>): Promise<unknown>;
|
|
60
|
-
getSegmentMembers(segmentId: string, params?: Record<string, string>): Promise<unknown>;
|
|
61
|
-
deleteSegment(id: string): Promise<unknown>;
|
|
62
|
-
recalculateSegment(id: string): Promise<unknown>;
|
|
63
46
|
listCustomFields(): Promise<unknown>;
|
|
64
|
-
createCustomField(data: Record<string, unknown>): Promise<unknown>;
|
|
65
|
-
updateCustomField(id: string, data: Record<string, unknown>): Promise<unknown>;
|
|
66
|
-
deleteCustomField(id: string): Promise<unknown>;
|
|
67
47
|
tagSubscriber(subscriberId: string, data: Record<string, unknown>): Promise<unknown>;
|
|
68
48
|
updateSubscriber(id: string, data: Record<string, unknown>): Promise<unknown>;
|
|
69
49
|
deleteSubscriber(id: string): Promise<unknown>;
|
|
70
|
-
bulkCreateSubscribers(data: Record<string, unknown>): Promise<unknown>;
|
|
71
|
-
getReferralProgram(): Promise<unknown>;
|
|
72
|
-
listEspTiers(): Promise<unknown>;
|
|
73
50
|
listPostTemplates(): Promise<unknown>;
|
|
74
51
|
getPostAggregateStats(): Promise<unknown>;
|
|
75
|
-
deleteBroadcast(id: string): Promise<unknown>;
|
|
76
|
-
listEspWebhooks(): Promise<unknown>;
|
|
77
|
-
createEspWebhook(data: Record<string, unknown>): Promise<unknown>;
|
|
78
|
-
deleteEspWebhook(id: string): Promise<unknown>;
|
|
79
52
|
listKnowledge(params?: Record<string, string>): Promise<unknown>;
|
|
80
53
|
createKnowledge(data: Record<string, unknown>): Promise<unknown>;
|
|
81
54
|
getBrandVoice(): Promise<unknown>;
|
|
@@ -86,6 +59,10 @@ declare class BuzzPosterClient {
|
|
|
86
59
|
updateAudience(id: string, data: Record<string, unknown>): Promise<unknown>;
|
|
87
60
|
getTemplate(id?: string): Promise<unknown>;
|
|
88
61
|
listTemplates(): Promise<unknown>;
|
|
62
|
+
createTemplate(data: Record<string, unknown>): Promise<unknown>;
|
|
63
|
+
updateTemplate(id: string, data: Record<string, unknown>): Promise<unknown>;
|
|
64
|
+
deleteTemplate(id: string): Promise<unknown>;
|
|
65
|
+
duplicateTemplate(id: string): Promise<unknown>;
|
|
89
66
|
listNewsletterArchive(params?: Record<string, string>): Promise<unknown>;
|
|
90
67
|
getArchivedNewsletter(id: string): Promise<unknown>;
|
|
91
68
|
saveNewsletterToArchive(data: Record<string, unknown>): Promise<unknown>;
|
|
@@ -106,15 +83,9 @@ declare class BuzzPosterClient {
|
|
|
106
83
|
deleteSource(id: number): Promise<unknown>;
|
|
107
84
|
checkSource(id: number): Promise<unknown>;
|
|
108
85
|
getPublishingRules(): Promise<unknown>;
|
|
109
|
-
getAuditLog(params?: Record<string, string>): Promise<unknown>;
|
|
110
86
|
validateNewsletter(data: Record<string, unknown>): Promise<unknown>;
|
|
111
87
|
scheduleBroadcast(id: string, data: Record<string, unknown>): Promise<unknown>;
|
|
112
88
|
testBroadcast(id: string, data: Record<string, unknown>): Promise<unknown>;
|
|
113
|
-
getCarouselTemplate(): Promise<unknown>;
|
|
114
|
-
updateCarouselTemplate(data: Record<string, unknown>): Promise<unknown>;
|
|
115
|
-
deleteCarouselTemplate(): Promise<unknown>;
|
|
116
|
-
generateCarousel(data: Record<string, unknown>): Promise<unknown>;
|
|
117
|
-
previewCarousel(data: Record<string, unknown>): Promise<unknown>;
|
|
118
89
|
}
|
|
119
90
|
|
|
120
91
|
declare function registerPostTools(server: McpServer, client: BuzzPosterClient): void;
|
|
@@ -152,10 +123,6 @@ declare function registerNotificationTools(server: McpServer, client: BuzzPoster
|
|
|
152
123
|
|
|
153
124
|
declare function registerPublishingRulesTools(server: McpServer, client: BuzzPosterClient): void;
|
|
154
125
|
|
|
155
|
-
declare function registerAuditLogTools(server: McpServer, client: BuzzPosterClient): void;
|
|
156
|
-
|
|
157
126
|
declare function registerSourceTools(server: McpServer, client: BuzzPosterClient): void;
|
|
158
127
|
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
export { BuzzPosterClient, registerAccountInfoTool, registerAccountTools, registerAnalyticsTools, registerAudienceTools, registerAuditLogTools, registerBrandVoiceTools, registerCalendarTools, registerCarouselTools, registerInboxTools, registerKnowledgeTools, registerMediaTools, registerNewsletterAdvancedTools, registerNewsletterTemplateTools, registerNewsletterTools, registerNotificationTools, registerPostTools, registerPublishingRulesTools, registerRssTools, registerSourceTools };
|
|
128
|
+
export { BuzzPosterClient, registerAccountInfoTool, registerAccountTools, registerAnalyticsTools, registerAudienceTools, registerBrandVoiceTools, registerCalendarTools, registerInboxTools, registerKnowledgeTools, registerMediaTools, registerNewsletterAdvancedTools, registerNewsletterTemplateTools, registerNewsletterTools, registerNotificationTools, registerPostTools, registerPublishingRulesTools, registerRssTools, registerSourceTools };
|