@skravets/eapi 0.0.7 → 0.0.8
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/api-types.d.cts +11 -1
- package/dist/api-types.d.ts +11 -1
- package/package.json +1 -1
package/dist/api-types.d.cts
CHANGED
|
@@ -61,7 +61,7 @@ interface components {
|
|
|
61
61
|
channel_id: number;
|
|
62
62
|
/**
|
|
63
63
|
* Format: date-time
|
|
64
|
-
* @example 2025-08-
|
|
64
|
+
* @example 2025-08-13T12:03:37.021Z
|
|
65
65
|
*/
|
|
66
66
|
message_created_at: string;
|
|
67
67
|
/** @example 123 */
|
|
@@ -89,6 +89,11 @@ interface components {
|
|
|
89
89
|
* @example 1
|
|
90
90
|
*/
|
|
91
91
|
accountId: number;
|
|
92
|
+
/**
|
|
93
|
+
* @description Webhook url POST
|
|
94
|
+
* @example https://webhook.site/123e4567-e89b-12d3-a456-426614174000
|
|
95
|
+
*/
|
|
96
|
+
webhookUrl: string;
|
|
92
97
|
};
|
|
93
98
|
ISendMessageMessage: {
|
|
94
99
|
/**
|
|
@@ -121,6 +126,11 @@ interface components {
|
|
|
121
126
|
* @example 1
|
|
122
127
|
*/
|
|
123
128
|
accountId: number;
|
|
129
|
+
/**
|
|
130
|
+
* @description Webhook url POST
|
|
131
|
+
* @example https://webhook.site/123e4567-e89b-12d3-a456-426614174000
|
|
132
|
+
*/
|
|
133
|
+
webhookUrl: string;
|
|
124
134
|
};
|
|
125
135
|
/** @description Which fields of chat to return */
|
|
126
136
|
ChatData: {
|
package/dist/api-types.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ interface components {
|
|
|
61
61
|
channel_id: number;
|
|
62
62
|
/**
|
|
63
63
|
* Format: date-time
|
|
64
|
-
* @example 2025-08-
|
|
64
|
+
* @example 2025-08-13T12:03:37.021Z
|
|
65
65
|
*/
|
|
66
66
|
message_created_at: string;
|
|
67
67
|
/** @example 123 */
|
|
@@ -89,6 +89,11 @@ interface components {
|
|
|
89
89
|
* @example 1
|
|
90
90
|
*/
|
|
91
91
|
accountId: number;
|
|
92
|
+
/**
|
|
93
|
+
* @description Webhook url POST
|
|
94
|
+
* @example https://webhook.site/123e4567-e89b-12d3-a456-426614174000
|
|
95
|
+
*/
|
|
96
|
+
webhookUrl: string;
|
|
92
97
|
};
|
|
93
98
|
ISendMessageMessage: {
|
|
94
99
|
/**
|
|
@@ -121,6 +126,11 @@ interface components {
|
|
|
121
126
|
* @example 1
|
|
122
127
|
*/
|
|
123
128
|
accountId: number;
|
|
129
|
+
/**
|
|
130
|
+
* @description Webhook url POST
|
|
131
|
+
* @example https://webhook.site/123e4567-e89b-12d3-a456-426614174000
|
|
132
|
+
*/
|
|
133
|
+
webhookUrl: string;
|
|
124
134
|
};
|
|
125
135
|
/** @description Which fields of chat to return */
|
|
126
136
|
ChatData: {
|