@pushwoosh/rpc-gateway-ai-assistant 0.1.106 → 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 +8 -2
- package/package.json +1 -1
- package/pushwoosh_aibuilder_v1.d.ts +4 -2
package/data.js
CHANGED
|
@@ -688,10 +688,10 @@ export const data = {
|
|
|
688
688
|
"type": "string"
|
|
689
689
|
},
|
|
690
690
|
"width": {
|
|
691
|
-
"type": "
|
|
691
|
+
"type": "string"
|
|
692
692
|
},
|
|
693
693
|
"height": {
|
|
694
|
-
"type": "
|
|
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
|
@@ -269,11 +269,13 @@ export type Content = {
|
|
|
269
269
|
};
|
|
270
270
|
export type Image = {
|
|
271
271
|
prompt: string;
|
|
272
|
-
width:
|
|
273
|
-
height:
|
|
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;
|