@skravets/eapi 0.0.58 → 0.0.59
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 -2
- package/dist/api-types.d.ts +11 -2
- package/package.json +1 -1
package/dist/api-types.d.cts
CHANGED
|
@@ -129,7 +129,7 @@ interface components {
|
|
|
129
129
|
channel_id: number;
|
|
130
130
|
/**
|
|
131
131
|
* Format: date-time
|
|
132
|
-
* @example 2026-03-
|
|
132
|
+
* @example 2026-03-03T15:52:02.744Z
|
|
133
133
|
*/
|
|
134
134
|
message_created_at: string;
|
|
135
135
|
/** @example 123 */
|
|
@@ -949,8 +949,17 @@ interface components {
|
|
|
949
949
|
*/
|
|
950
950
|
to: string;
|
|
951
951
|
};
|
|
952
|
+
MimicProductUrlDto: {
|
|
953
|
+
/** @example https://example.com/product/123 */
|
|
954
|
+
productUrl: string;
|
|
955
|
+
};
|
|
952
956
|
EditTextDto: {
|
|
953
|
-
|
|
957
|
+
/** @description Replace text substring */
|
|
958
|
+
replace?: components["schemas"]["TextReplaceDto"];
|
|
959
|
+
/** @description Assign mimic links by product URL */
|
|
960
|
+
assignMimicLinks?: components["schemas"]["MimicProductUrlDto"];
|
|
961
|
+
/** @description Replace mimic URL by product URL */
|
|
962
|
+
replaceMimicUrl?: components["schemas"]["MimicProductUrlDto"];
|
|
954
963
|
};
|
|
955
964
|
EditOperationDto: {
|
|
956
965
|
text: components["schemas"]["EditTextDto"];
|
package/dist/api-types.d.ts
CHANGED
|
@@ -129,7 +129,7 @@ interface components {
|
|
|
129
129
|
channel_id: number;
|
|
130
130
|
/**
|
|
131
131
|
* Format: date-time
|
|
132
|
-
* @example 2026-03-
|
|
132
|
+
* @example 2026-03-03T15:52:02.744Z
|
|
133
133
|
*/
|
|
134
134
|
message_created_at: string;
|
|
135
135
|
/** @example 123 */
|
|
@@ -949,8 +949,17 @@ interface components {
|
|
|
949
949
|
*/
|
|
950
950
|
to: string;
|
|
951
951
|
};
|
|
952
|
+
MimicProductUrlDto: {
|
|
953
|
+
/** @example https://example.com/product/123 */
|
|
954
|
+
productUrl: string;
|
|
955
|
+
};
|
|
952
956
|
EditTextDto: {
|
|
953
|
-
|
|
957
|
+
/** @description Replace text substring */
|
|
958
|
+
replace?: components["schemas"]["TextReplaceDto"];
|
|
959
|
+
/** @description Assign mimic links by product URL */
|
|
960
|
+
assignMimicLinks?: components["schemas"]["MimicProductUrlDto"];
|
|
961
|
+
/** @description Replace mimic URL by product URL */
|
|
962
|
+
replaceMimicUrl?: components["schemas"]["MimicProductUrlDto"];
|
|
954
963
|
};
|
|
955
964
|
EditOperationDto: {
|
|
956
965
|
text: components["schemas"]["EditTextDto"];
|