@opencx/mcp 1.15.5 → 1.15.6
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/schema.d.ts +20 -14
- package/dist/schema.d.ts.map +1 -1
- package/dist/tools/macros.js +3 -3
- package/dist/tools/macros.js.map +1 -1
- package/package.json +1 -1
package/dist/schema.d.ts
CHANGED
|
@@ -1551,7 +1551,7 @@ export interface paths {
|
|
|
1551
1551
|
put?: never;
|
|
1552
1552
|
/**
|
|
1553
1553
|
* Create a macro
|
|
1554
|
-
* @description Create a new saved-reply macro. Use {{variable}} syntax in content to reference system or custom variables.
|
|
1554
|
+
* @description Create a new saved-reply macro. Use {{variable}} syntax in content to reference system or custom variables. Attachments are dashboard-authored and cannot be set via the public API.
|
|
1555
1555
|
*/
|
|
1556
1556
|
post: operations["createMacro"];
|
|
1557
1557
|
delete?: never;
|
|
@@ -1603,7 +1603,7 @@ export interface paths {
|
|
|
1603
1603
|
head?: never;
|
|
1604
1604
|
/**
|
|
1605
1605
|
* Update a macro
|
|
1606
|
-
* @description Partially update a saved-reply macro.
|
|
1606
|
+
* @description Partially update a saved-reply macro. Attachments are dashboard-authored and cannot be changed via the public API; text-only updates leave them untouched.
|
|
1607
1607
|
*/
|
|
1608
1608
|
patch: operations["updateMacro"];
|
|
1609
1609
|
trace?: never;
|
|
@@ -4822,16 +4822,6 @@ export interface components {
|
|
|
4822
4822
|
/** @description Optional reason for redaction */
|
|
4823
4823
|
reason?: string;
|
|
4824
4824
|
};
|
|
4825
|
-
CreateSavedReplyDto: {
|
|
4826
|
-
category: string;
|
|
4827
|
-
title: string;
|
|
4828
|
-
content: string;
|
|
4829
|
-
};
|
|
4830
|
-
UpdateSavedReplyDto: {
|
|
4831
|
-
category?: string;
|
|
4832
|
-
title?: string;
|
|
4833
|
-
content?: string;
|
|
4834
|
-
};
|
|
4835
4825
|
UpdateAgentAvailabilityPublicDto: {
|
|
4836
4826
|
/** @description Whether the agent is available to take chats */
|
|
4837
4827
|
is_available?: boolean;
|
|
@@ -5887,8 +5877,16 @@ export interface components {
|
|
|
5887
5877
|
};
|
|
5888
5878
|
CreateEmailTemplatePublicInput: components["schemas"]["CreateEmailTemplateBodyDto"];
|
|
5889
5879
|
UpdateEmailTemplatePublicInput: components["schemas"]["CreateEmailTemplateBodyDto"];
|
|
5890
|
-
CreateMacroInput:
|
|
5891
|
-
|
|
5880
|
+
CreateMacroInput: {
|
|
5881
|
+
category: string;
|
|
5882
|
+
title: string;
|
|
5883
|
+
content: string;
|
|
5884
|
+
};
|
|
5885
|
+
UpdateMacroInput: {
|
|
5886
|
+
category?: string;
|
|
5887
|
+
title?: string;
|
|
5888
|
+
content?: string;
|
|
5889
|
+
};
|
|
5892
5890
|
UpsertTagInputDto: {
|
|
5893
5891
|
/** @description Tag name (e.g. "billing", "refund", "feature-request") */
|
|
5894
5892
|
tag_name: string;
|
|
@@ -7321,12 +7319,20 @@ export interface components {
|
|
|
7321
7319
|
breaches: number;
|
|
7322
7320
|
}[];
|
|
7323
7321
|
};
|
|
7322
|
+
MacroAttachmentDto: {
|
|
7323
|
+
id: string;
|
|
7324
|
+
name: string;
|
|
7325
|
+
size: number;
|
|
7326
|
+
type: string;
|
|
7327
|
+
url: string;
|
|
7328
|
+
};
|
|
7324
7329
|
SavedReplyDto: {
|
|
7325
7330
|
id: string;
|
|
7326
7331
|
org_id: string;
|
|
7327
7332
|
category: string;
|
|
7328
7333
|
title: string;
|
|
7329
7334
|
content: string;
|
|
7335
|
+
attachments: components["schemas"]["MacroAttachmentDto"][];
|
|
7330
7336
|
/** Format: date-time */
|
|
7331
7337
|
created_at: string;
|
|
7332
7338
|
/** Format: date-time */
|