@pushwoosh/rpc-gateway-ai-assistant 0.1.107 → 0.1.108

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/data.js CHANGED
@@ -688,10 +688,10 @@ export const data = {
688
688
  "type": "string"
689
689
  },
690
690
  "width": {
691
- "type": "number"
691
+ "type": "string"
692
692
  },
693
693
  "height": {
694
- "type": "number"
694
+ "type": "string"
695
695
  },
696
696
  "src": {
697
697
  "type": "string"
@@ -701,6 +701,12 @@ export const data = {
701
701
  },
702
702
  "mediaUuid": {
703
703
  "type": "string"
704
+ },
705
+ "origWidth": {
706
+ "type": "number"
707
+ },
708
+ "origHeight": {
709
+ "type": "number"
704
710
  }
705
711
  }
706
712
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-ai-assistant",
3
- "version": "0.1.107",
3
+ "version": "0.1.108",
4
4
  "description": "AI Assistant api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -269,11 +269,13 @@ export type Content = {
269
269
  };
270
270
  export type Image = {
271
271
  prompt: string;
272
- width: number;
273
- height: number;
272
+ width: string;
273
+ height: string;
274
274
  src: string;
275
275
  alt: string;
276
276
  mediaUuid: string;
277
+ origWidth: number;
278
+ origHeight: number;
277
279
  };
278
280
  export type AiBuilderCard = {
279
281
  layout: DocumentBlockLayout;