@fugood/bricks-project 2.23.0-beta.11 → 2.23.0-beta.13
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fugood/bricks-project",
|
|
3
|
-
"version": "2.23.0-beta.
|
|
3
|
+
"version": "2.23.0-beta.13",
|
|
4
4
|
"main": "index.ts",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node scripts/build.js"
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"lodash": "^4.17.4",
|
|
15
15
|
"uuid": "^8.3.1"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "fd06b4cd40166a0c5f840228cddb25b91f77605e"
|
|
18
18
|
}
|
|
@@ -44,8 +44,8 @@ Default property:
|
|
|
44
44
|
resizeMode?: 'contain' | 'cover' | 'stretch' | 'center' | 'repeat' | DataLink
|
|
45
45
|
/* The API key for the generative media service */
|
|
46
46
|
apiKey?: string | DataLink
|
|
47
|
-
/* The AI provider to use for generation (openai, freepik, or
|
|
48
|
-
provider?: 'openai' | 'freepik-classic' | 'deepai' | DataLink
|
|
47
|
+
/* The AI provider to use for generation (openai, freepik-classic, deepai, or gemini) */
|
|
48
|
+
provider?: 'openai' | 'freepik-classic' | 'deepai' | 'gemini' | DataLink
|
|
49
49
|
/* OpenAI image size (256x256, 512x512, 1024x1024, etc) */
|
|
50
50
|
openaiSize?: '1024x1024' | '1024x1792' | '1792x1024' | DataLink
|
|
51
51
|
/* OpenAI image style (vivid or natural) */
|
|
@@ -158,6 +158,8 @@ Default property:
|
|
|
158
158
|
deepaiWidth?: number | DataLink
|
|
159
159
|
/* DeepAI output image height */
|
|
160
160
|
deepaiHeight?: number | DataLink
|
|
161
|
+
/* Gemini aspect ratio (1:1, 16:9, 9:16, 3:2, 2:3) */
|
|
162
|
+
geminiAspectRatio?: '1:1' | '16:9' | '9:16' | '3:2' | '2:3' | DataLink
|
|
161
163
|
}
|
|
162
164
|
events?: BrickBasicEvents & {
|
|
163
165
|
/* Event of the brick press */
|