@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.
@@ -129,7 +129,7 @@ interface components {
129
129
  channel_id: number;
130
130
  /**
131
131
  * Format: date-time
132
- * @example 2026-03-03T13:11:09.496Z
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
- replace: components["schemas"]["TextReplaceDto"];
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"];
@@ -129,7 +129,7 @@ interface components {
129
129
  channel_id: number;
130
130
  /**
131
131
  * Format: date-time
132
- * @example 2026-03-03T13:11:09.496Z
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
- replace: components["schemas"]["TextReplaceDto"];
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skravets/eapi",
3
- "version": "0.0.58",
3
+ "version": "0.0.59",
4
4
  "module": "./dist/index.js",
5
5
  "main": "./dist/index.cjs",
6
6
  "types": "./dist/index.d.ts",