@innovastudio/contentbuilder 1.5.129 → 1.5.130
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/readme.txt
CHANGED
@@ -161,7 +161,7 @@ NOTE:
|
|
161
161
|
|
162
162
|
$FAL_API_KEY = 'YOUR_API_KEY';
|
163
163
|
|
164
|
-
3. Ensure that the
|
164
|
+
3. Ensure that the following parameters are set:
|
165
165
|
|
166
166
|
Using Getimg.ai for image generation:
|
167
167
|
|
@@ -181,7 +181,6 @@ NOTE:
|
|
181
181
|
// ...
|
182
182
|
|
183
183
|
defaultImageGenerationProvider: 'fal',
|
184
|
-
imageModel: 'fal-ai/flux-1/schnell', // fal-ai/hidream-i1-fast, fal-ai/imagen4/preview/fast
|
185
184
|
generateMediaUrl_Fal: '/request-fal',
|
186
185
|
checkRequestStatusUrl_Fal: '/status-fal',
|
187
186
|
getResultUrl_Fal: '/result-fal',
|
@@ -189,7 +188,7 @@ NOTE:
|
|
189
188
|
|
190
189
|
Most examples in the package have this parameter configured, so you can run and test them.
|
191
190
|
|
192
|
-
The JavaScript project example in this package uses Node.js for the API
|
191
|
+
The JavaScript project example in this package uses Node.js for the API endpoints.
|
193
192
|
Please refer to the Node.js file:
|
194
193
|
|
195
194
|
server.js
|
@@ -219,12 +218,16 @@ NOTE:
|
|
219
218
|
// ...
|
220
219
|
|
221
220
|
defaultImageGenerationProvider: 'fal',
|
222
|
-
imageModel: 'fal-ai/flux-1/schnell', // fal-ai/hidream-i1-fast, fal-ai/imagen4/preview/fast
|
223
221
|
generateMediaUrl_Fal: 'api/request-fal.php',
|
224
222
|
checkRequestStatusUrl_Fal: 'api/status-fal.php',
|
225
223
|
getResultUrl_Fal: 'api/result-fal.php',
|
226
224
|
});
|
227
225
|
|
226
|
+
- IMPORTANT:
|
227
|
+
|
228
|
+
Please add your own security to the API endpoints!
|
229
|
+
|
230
|
+
|
228
231
|
- New Canvas Mode
|
229
232
|
|
230
233
|
Canvas mode is a new option for seamless (gridless) block positioning. Simply activate with:
|
@@ -243,9 +246,6 @@ And include additional JavaScript and CSS:
|
|
243
246
|
You can try 'example-canvas.html' in the package.
|
244
247
|
|
245
248
|
|
246
|
-
- IMPORTANT:
|
247
|
-
|
248
|
-
Please add your own security to the API endpoints (public/api/)!
|
249
249
|
|
250
250
|
|
251
251
|
|