@adminforth/bulk-ai-flow 1.22.0 → 1.22.1
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/build.log +1 -1
- package/package.json +1 -1
- package/types.ts +13 -5
package/build.log
CHANGED
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -137,11 +137,19 @@ export interface PluginOptions {
|
|
|
137
137
|
*/
|
|
138
138
|
recordSelector?: 'checkbox' | 'filtered';
|
|
139
139
|
|
|
140
|
-
/**
|
|
141
|
-
*
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
140
|
+
/**
|
|
141
|
+
* Additional confirmation settings for long-running generations.
|
|
142
|
+
*
|
|
143
|
+
* Generating a very large number of records can be expensive. This option
|
|
144
|
+
* lets you pause the process at specific checkpoints so the user can review
|
|
145
|
+
* everything generated so far and then choose to Resume or Stop the
|
|
146
|
+
* generation.
|
|
147
|
+
*
|
|
148
|
+
* Each entry in the array defines a confirmation breakpoint:
|
|
149
|
+
* - `{ afterRecords: N }` – show a confirmation once, after the first N
|
|
150
|
+
* records have been processed.
|
|
151
|
+
* - `{ everyRecords: N }` – show a confirmation after every N records.
|
|
152
|
+
*/
|
|
145
153
|
askConfirmation?: ({ afterRecords: number } | { everyRecords: number })[]
|
|
146
154
|
|
|
147
155
|
}
|