@fugood/bricks-project 2.21.0-beta.14.test8 → 2.21.0-beta.16

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.
@@ -252,7 +252,7 @@ export type GeneratorFileActionReadContent = ActionWithParams & {
252
252
  params?: Array<{
253
253
  input: 'encoding'
254
254
  value?: 'utf8' | 'base64' | DataLink
255
- mapping?: boolean
255
+ mapping?: string
256
256
  }>
257
257
  }
258
258
 
@@ -268,17 +268,17 @@ export type GeneratorFileActionAppendContent = ActionWithParams & {
268
268
  | {
269
269
  input: 'content'
270
270
  value?: string | DataLink
271
- mapping?: boolean
271
+ mapping?: string
272
272
  }
273
273
  | {
274
274
  input: 'encoding'
275
275
  value?: 'utf8' | 'base64' | DataLink
276
- mapping?: boolean
276
+ mapping?: string
277
277
  }
278
278
  | {
279
279
  input: 'contentList'
280
280
  value?: Array<any> | DataLink
281
- mapping?: boolean
281
+ mapping?: string
282
282
  }
283
283
  >
284
284
  }
@@ -290,22 +290,22 @@ export type GeneratorFileActionWriteContent = ActionWithParams & {
290
290
  | {
291
291
  input: 'content'
292
292
  value?: string | DataLink
293
- mapping?: boolean
293
+ mapping?: string
294
294
  }
295
295
  | {
296
296
  input: 'encoding'
297
297
  value?: 'utf8' | 'base64' | DataLink
298
- mapping?: boolean
298
+ mapping?: string
299
299
  }
300
300
  | {
301
301
  input: 'position'
302
302
  value?: number | DataLink
303
- mapping?: boolean
303
+ mapping?: string
304
304
  }
305
305
  | {
306
306
  input: 'contentList'
307
307
  value?: Array<any> | DataLink
308
- mapping?: boolean
308
+ mapping?: string
309
309
  }
310
310
  >
311
311
  }
@@ -317,17 +317,17 @@ export type GeneratorFileActionStartUpload = ActionWithParams & {
317
317
  | {
318
318
  input: 'withAll'
319
319
  value?: boolean | DataLink
320
- mapping?: boolean
320
+ mapping?: string
321
321
  }
322
322
  | {
323
323
  input: 'withId'
324
324
  value?: string | DataLink
325
- mapping?: boolean
325
+ mapping?: string
326
326
  }
327
327
  | {
328
328
  input: 'withIndex'
329
329
  value?: number | DataLink
330
- mapping?: boolean
330
+ mapping?: string
331
331
  }
332
332
  >
333
333
  }
@@ -339,17 +339,17 @@ export type GeneratorFileActionStopUpload = ActionWithParams & {
339
339
  | {
340
340
  input: 'withAll'
341
341
  value?: boolean | DataLink
342
- mapping?: boolean
342
+ mapping?: string
343
343
  }
344
344
  | {
345
345
  input: 'withId'
346
346
  value?: string | DataLink
347
- mapping?: boolean
347
+ mapping?: string
348
348
  }
349
349
  | {
350
350
  input: 'withIndex'
351
351
  value?: number | DataLink
352
- mapping?: boolean
352
+ mapping?: string
353
353
  }
354
354
  >
355
355
  }
@@ -361,17 +361,17 @@ export type GeneratorFileActionStartDownload = ActionWithParams & {
361
361
  | {
362
362
  input: 'withAll'
363
363
  value?: boolean | DataLink
364
- mapping?: boolean
364
+ mapping?: string
365
365
  }
366
366
  | {
367
367
  input: 'withId'
368
368
  value?: string | DataLink
369
- mapping?: boolean
369
+ mapping?: string
370
370
  }
371
371
  | {
372
372
  input: 'withIndex'
373
373
  value?: number | DataLink
374
- mapping?: boolean
374
+ mapping?: string
375
375
  }
376
376
  >
377
377
  }
@@ -383,17 +383,17 @@ export type GeneratorFileActionStopDownload = ActionWithParams & {
383
383
  | {
384
384
  input: 'withAll'
385
385
  value?: boolean | DataLink
386
- mapping?: boolean
386
+ mapping?: string
387
387
  }
388
388
  | {
389
389
  input: 'withId'
390
390
  value?: string | DataLink
391
- mapping?: boolean
391
+ mapping?: string
392
392
  }
393
393
  | {
394
394
  input: 'withIndex'
395
395
  value?: number | DataLink
396
- mapping?: boolean
396
+ mapping?: string
397
397
  }
398
398
  >
399
399
  }
@@ -912,12 +912,12 @@ export type GeneratorDataBankActionUpdateProperty = ActionWithParams & {
912
912
  | {
913
913
  input: 'propertyId'
914
914
  value?: string | DataLink
915
- mapping?: boolean
915
+ mapping?: string
916
916
  }
917
917
  | {
918
918
  input: 'propertyValue'
919
919
  value?: any
920
- mapping?: boolean
920
+ mapping?: string
921
921
  }
922
922
  >
923
923
  }
@@ -928,7 +928,7 @@ export type GeneratorDataBankActionRemoveProperty = ActionWithParams & {
928
928
  params?: Array<{
929
929
  input: 'propertyId'
930
930
  value?: string | DataLink
931
- mapping?: boolean
931
+ mapping?: string
932
932
  }>
933
933
  }
934
934
 
@@ -1047,17 +1047,17 @@ export type GeneratorGraphQLActionRunQuery = ActionWithParams & {
1047
1047
  | {
1048
1048
  input: 'type'
1049
1049
  value?: 'query' | 'mutation' | 'subscription' | DataLink
1050
- mapping?: boolean
1050
+ mapping?: string
1051
1051
  }
1052
1052
  | {
1053
1053
  input: 'query'
1054
1054
  value?: string | DataLink
1055
- mapping?: boolean
1055
+ mapping?: string
1056
1056
  }
1057
1057
  | {
1058
1058
  input: 'variables'
1059
1059
  value?: {} | DataLink
1060
- mapping?: boolean
1060
+ mapping?: string
1061
1061
  }
1062
1062
  >
1063
1063
  }
@@ -1517,22 +1517,22 @@ export type GeneratorWebSocketActionEmit = ActionWithParams & {
1517
1517
  | {
1518
1518
  input: 'eventName'
1519
1519
  value?: string | DataLink
1520
- mapping?: boolean
1520
+ mapping?: string
1521
1521
  }
1522
1522
  | {
1523
1523
  input: 'arguments'
1524
1524
  value?: Array<any> | DataLink
1525
- mapping?: boolean
1525
+ mapping?: string
1526
1526
  }
1527
1527
  | {
1528
1528
  input: 'acknowledgementType'
1529
1529
  value?: 'text' | 'json' | DataLink
1530
- mapping?: boolean
1530
+ mapping?: string
1531
1531
  }
1532
1532
  | {
1533
1533
  input: 'withAcknowledgement'
1534
1534
  value?: boolean | DataLink
1535
- mapping?: boolean
1535
+ mapping?: string
1536
1536
  }
1537
1537
  >
1538
1538
  }
@@ -1543,7 +1543,7 @@ export type GeneratorWebSocketActionSend = ActionWithParams & {
1543
1543
  params?: Array<{
1544
1544
  input: 'value'
1545
1545
  value?: string | DataLink
1546
- mapping?: boolean
1546
+ mapping?: string
1547
1547
  }>
1548
1548
  }
1549
1549
 
@@ -2035,22 +2035,22 @@ export type GeneratorMQTTActionPublish = ActionWithParams & {
2035
2035
  | {
2036
2036
  input: 'topic'
2037
2037
  value?: string | DataLink
2038
- mapping?: boolean
2038
+ mapping?: string
2039
2039
  }
2040
2040
  | {
2041
2041
  input: 'payload'
2042
2042
  value?: any
2043
- mapping?: boolean
2043
+ mapping?: string
2044
2044
  }
2045
2045
  | {
2046
2046
  input: 'qos'
2047
2047
  value?: '0' | '1' | '2' | DataLink
2048
- mapping?: boolean
2048
+ mapping?: string
2049
2049
  }
2050
2050
  | {
2051
2051
  input: 'retain'
2052
2052
  value?: boolean | DataLink
2053
- mapping?: boolean
2053
+ mapping?: string
2054
2054
  }
2055
2055
  >
2056
2056
  }
@@ -2179,17 +2179,17 @@ export type GeneratorMQTTBrokerActionPublish = ActionWithParams & {
2179
2179
  | {
2180
2180
  input: 'topic'
2181
2181
  value?: string | DataLink
2182
- mapping?: boolean
2182
+ mapping?: string
2183
2183
  }
2184
2184
  | {
2185
2185
  input: 'payload'
2186
2186
  value?: string | DataLink
2187
- mapping?: boolean
2187
+ mapping?: string
2188
2188
  }
2189
2189
  | {
2190
2190
  input: 'messageId'
2191
2191
  value?: number | DataLink
2192
- mapping?: boolean
2192
+ mapping?: string
2193
2193
  }
2194
2194
  >
2195
2195
  }
@@ -2347,7 +2347,7 @@ export type GeneratorBleCentralActionConnect = ActionWithParams & {
2347
2347
  params?: Array<{
2348
2348
  input: 'deviceId'
2349
2349
  value?: string | DataLink
2350
- mapping?: boolean
2350
+ mapping?: string
2351
2351
  }>
2352
2352
  }
2353
2353
 
@@ -2358,17 +2358,17 @@ export type GeneratorBleCentralActionReadCharacteristic = ActionWithParams & {
2358
2358
  | {
2359
2359
  input: 'deviceId'
2360
2360
  value?: string | DataLink
2361
- mapping?: boolean
2361
+ mapping?: string
2362
2362
  }
2363
2363
  | {
2364
2364
  input: 'serviceId'
2365
2365
  value?: string | DataLink
2366
- mapping?: boolean
2366
+ mapping?: string
2367
2367
  }
2368
2368
  | {
2369
2369
  input: 'characteristicId'
2370
2370
  value?: string | DataLink
2371
- mapping?: boolean
2371
+ mapping?: string
2372
2372
  }
2373
2373
  >
2374
2374
  }
@@ -2380,17 +2380,17 @@ export type GeneratorBleCentralActionMonitorCharacteristic = ActionWithParams &
2380
2380
  | {
2381
2381
  input: 'deviceId'
2382
2382
  value?: string | DataLink
2383
- mapping?: boolean
2383
+ mapping?: string
2384
2384
  }
2385
2385
  | {
2386
2386
  input: 'serviceId'
2387
2387
  value?: string | DataLink
2388
- mapping?: boolean
2388
+ mapping?: string
2389
2389
  }
2390
2390
  | {
2391
2391
  input: 'characteristicId'
2392
2392
  value?: string | DataLink
2393
- mapping?: boolean
2393
+ mapping?: string
2394
2394
  }
2395
2395
  >
2396
2396
  }
@@ -2402,17 +2402,17 @@ export type GeneratorBleCentralActionCancelMonitorCharacteristic = ActionWithPar
2402
2402
  | {
2403
2403
  input: 'deviceId'
2404
2404
  value?: string | DataLink
2405
- mapping?: boolean
2405
+ mapping?: string
2406
2406
  }
2407
2407
  | {
2408
2408
  input: 'serviceId'
2409
2409
  value?: string | DataLink
2410
- mapping?: boolean
2410
+ mapping?: string
2411
2411
  }
2412
2412
  | {
2413
2413
  input: 'characteristicId'
2414
2414
  value?: string | DataLink
2415
- mapping?: boolean
2415
+ mapping?: string
2416
2416
  }
2417
2417
  >
2418
2418
  }
@@ -2424,27 +2424,27 @@ export type GeneratorBleCentralActionWriteCharacteristic = ActionWithParams & {
2424
2424
  | {
2425
2425
  input: 'deviceId'
2426
2426
  value?: string | DataLink
2427
- mapping?: boolean
2427
+ mapping?: string
2428
2428
  }
2429
2429
  | {
2430
2430
  input: 'serviceId'
2431
2431
  value?: string | DataLink
2432
- mapping?: boolean
2432
+ mapping?: string
2433
2433
  }
2434
2434
  | {
2435
2435
  input: 'characteristicId'
2436
2436
  value?: string | DataLink
2437
- mapping?: boolean
2437
+ mapping?: string
2438
2438
  }
2439
2439
  | {
2440
2440
  input: 'dataHex'
2441
2441
  value?: string | DataLink
2442
- mapping?: boolean
2442
+ mapping?: string
2443
2443
  }
2444
2444
  | {
2445
2445
  input: 'writeWithoutResponse'
2446
2446
  value?: boolean | DataLink
2447
- mapping?: boolean
2447
+ mapping?: string
2448
2448
  }
2449
2449
  >
2450
2450
  }
@@ -2455,7 +2455,7 @@ export type GeneratorBleCentralActionDisconnect = ActionWithParams & {
2455
2455
  params?: Array<{
2456
2456
  input: 'deviceId'
2457
2457
  value?: string | DataLink
2458
- mapping?: boolean
2458
+ mapping?: string
2459
2459
  }>
2460
2460
  }
2461
2461
 
@@ -2640,12 +2640,12 @@ export type GeneratorSerialPortActionGeneratorSerialSendString = ActionWithParam
2640
2640
  | {
2641
2641
  input: 'generatorSerialStringValue'
2642
2642
  value?: string | DataLink
2643
- mapping?: boolean
2643
+ mapping?: string
2644
2644
  }
2645
2645
  | {
2646
2646
  input: 'generatorSerialStringEncoding'
2647
2647
  value?: string | DataLink
2648
- mapping?: boolean
2648
+ mapping?: string
2649
2649
  }
2650
2650
  >
2651
2651
  }
@@ -2656,7 +2656,7 @@ export type GeneratorSerialPortActionGeneratorSerialSendHex = ActionWithParams &
2656
2656
  params?: Array<{
2657
2657
  input: 'generatorSerialHexValue'
2658
2658
  value?: string | DataLink
2659
- mapping?: boolean
2659
+ mapping?: string
2660
2660
  }>
2661
2661
  }
2662
2662
 
@@ -2785,7 +2785,7 @@ export type GeneratorTCPActionSend = ActionWithParams & {
2785
2785
  params?: Array<{
2786
2786
  input: 'sendData'
2787
2787
  value?: string | DataLink
2788
- mapping?: boolean
2788
+ mapping?: string
2789
2789
  }>
2790
2790
  }
2791
2791
 
@@ -2795,7 +2795,7 @@ export type GeneratorTCPActionEnd = ActionWithParams & {
2795
2795
  params?: Array<{
2796
2796
  input: 'endWithData'
2797
2797
  value?: string | DataLink
2798
- mapping?: boolean
2798
+ mapping?: string
2799
2799
  }>
2800
2800
  }
2801
2801
 
@@ -2914,12 +2914,12 @@ export type GeneratorTCPServerActionSend = ActionWithParams & {
2914
2914
  | {
2915
2915
  input: 'remote'
2916
2916
  value?: string | DataLink
2917
- mapping?: boolean
2917
+ mapping?: string
2918
2918
  }
2919
2919
  | {
2920
2920
  input: 'sendData'
2921
2921
  value?: string | DataLink
2922
- mapping?: boolean
2922
+ mapping?: string
2923
2923
  }
2924
2924
  >
2925
2925
  }
@@ -2931,12 +2931,12 @@ export type GeneratorTCPServerActionEnd = ActionWithParams & {
2931
2931
  | {
2932
2932
  input: 'remote'
2933
2933
  value?: string | DataLink
2934
- mapping?: boolean
2934
+ mapping?: string
2935
2935
  }
2936
2936
  | {
2937
2937
  input: 'generatorTcpClientEndWithData'
2938
2938
  value?: string | DataLink
2939
- mapping?: boolean
2939
+ mapping?: string
2940
2940
  }
2941
2941
  >
2942
2942
  }
@@ -3090,17 +3090,17 @@ export type GeneratorUDPActionSend = ActionWithParams & {
3090
3090
  | {
3091
3091
  input: 'targetHost'
3092
3092
  value?: string | DataLink
3093
- mapping?: boolean
3093
+ mapping?: string
3094
3094
  }
3095
3095
  | {
3096
3096
  input: 'targetPort'
3097
3097
  value?: number | DataLink
3098
- mapping?: boolean
3098
+ mapping?: string
3099
3099
  }
3100
3100
  | {
3101
3101
  input: 'sendData'
3102
3102
  value?: string | DataLink
3103
- mapping?: boolean
3103
+ mapping?: string
3104
3104
  }
3105
3105
  >
3106
3106
  }
@@ -3397,7 +3397,7 @@ export type GeneratorWebRTCActionProcessInputSignal = ActionWithParams & {
3397
3397
  params?: Array<{
3398
3398
  input: 'inputSignal'
3399
3399
  value?: any
3400
- mapping?: boolean
3400
+ mapping?: string
3401
3401
  }>
3402
3402
  }
3403
3403
 
@@ -3412,7 +3412,7 @@ export type GeneratorWebRTCActionChannelSend = ActionWithParams & {
3412
3412
  params?: Array<{
3413
3413
  input: 'textMessage'
3414
3414
  value?: string | DataLink
3415
- mapping?: boolean
3415
+ mapping?: string
3416
3416
  }>
3417
3417
  }
3418
3418
 
@@ -3874,22 +3874,22 @@ export type GeneratorBlePeripheralActionNotify = ActionWithParams & {
3874
3874
  | {
3875
3875
  input: 'serviceId'
3876
3876
  value?: string | DataLink
3877
- mapping?: boolean
3877
+ mapping?: string
3878
3878
  }
3879
3879
  | {
3880
3880
  input: 'charId'
3881
3881
  value?: string | DataLink
3882
- mapping?: boolean
3882
+ mapping?: string
3883
3883
  }
3884
3884
  | {
3885
3885
  input: 'value'
3886
3886
  value?: string | DataLink
3887
- mapping?: boolean
3887
+ mapping?: string
3888
3888
  }
3889
3889
  | {
3890
3890
  input: 'encoding'
3891
3891
  value?: 'utf8' | 'hex' | 'base64' | DataLink
3892
- mapping?: boolean
3892
+ mapping?: string
3893
3893
  }
3894
3894
  >
3895
3895
  }
@@ -4507,37 +4507,37 @@ export type GeneratorIntentActionSendIntent = ActionWithParams & {
4507
4507
  | {
4508
4508
  input: 'action'
4509
4509
  value?: string | DataLink
4510
- mapping?: boolean
4510
+ mapping?: string
4511
4511
  }
4512
4512
  | {
4513
4513
  input: 'data'
4514
4514
  value?: string | DataLink
4515
- mapping?: boolean
4515
+ mapping?: string
4516
4516
  }
4517
4517
  | {
4518
4518
  input: 'type'
4519
4519
  value?: string | DataLink
4520
- mapping?: boolean
4520
+ mapping?: string
4521
4521
  }
4522
4522
  | {
4523
4523
  input: 'extra'
4524
4524
  value?: {} | DataLink
4525
- mapping?: boolean
4525
+ mapping?: string
4526
4526
  }
4527
4527
  | {
4528
4528
  input: 'className'
4529
4529
  value?: string | DataLink
4530
- mapping?: boolean
4530
+ mapping?: string
4531
4531
  }
4532
4532
  | {
4533
4533
  input: 'packageName'
4534
4534
  value?: string | DataLink
4535
- mapping?: boolean
4535
+ mapping?: string
4536
4536
  }
4537
4537
  | {
4538
4538
  input: 'category'
4539
4539
  value?: string | DataLink
4540
- mapping?: boolean
4540
+ mapping?: string
4541
4541
  }
4542
4542
  >
4543
4543
  }
@@ -4640,12 +4640,12 @@ export type GeneratorTapPayT2PActionBind = ActionWithParams & {
4640
4640
  | {
4641
4641
  input: 'bindId'
4642
4642
  value?: number | DataLink
4643
- mapping?: boolean
4643
+ mapping?: string
4644
4644
  }
4645
4645
  | {
4646
4646
  input: 'bindDescription'
4647
4647
  value?: string | DataLink
4648
- mapping?: boolean
4648
+ mapping?: string
4649
4649
  }
4650
4650
  >
4651
4651
  }
@@ -4667,17 +4667,17 @@ export type GeneratorTapPayT2PActionReadCardAndAuthorization = ActionWithParams
4667
4667
  | {
4668
4668
  input: 'amount'
4669
4669
  value?: number | DataLink
4670
- mapping?: boolean
4670
+ mapping?: string
4671
4671
  }
4672
4672
  | {
4673
4673
  input: 'orderNumber'
4674
4674
  value?: string | DataLink
4675
- mapping?: boolean
4675
+ mapping?: string
4676
4676
  }
4677
4677
  | {
4678
4678
  input: 'bankTransactionId'
4679
4679
  value?: string | DataLink
4680
- mapping?: boolean
4680
+ mapping?: string
4681
4681
  }
4682
4682
  >
4683
4683
  }
@@ -4689,17 +4689,17 @@ export type GeneratorTapPayT2PActionGetReceipt = ActionWithParams & {
4689
4689
  | {
4690
4690
  input: 'receiptIdentifier'
4691
4691
  value?: string | DataLink
4692
- mapping?: boolean
4692
+ mapping?: string
4693
4693
  }
4694
4694
  | {
4695
4695
  input: 'type'
4696
4696
  value?: 'html' | 'pkpass' | DataLink
4697
- mapping?: boolean
4697
+ mapping?: string
4698
4698
  }
4699
4699
  | {
4700
4700
  input: 'email'
4701
4701
  value?: string | DataLink
4702
- mapping?: boolean
4702
+ mapping?: string
4703
4703
  }
4704
4704
  >
4705
4705
  }
@@ -4930,17 +4930,17 @@ export type GeneratorThermalPrinterActionPrint = ActionWithParams & {
4930
4930
  | {
4931
4931
  input: 'options'
4932
4932
  value?: {} | DataLink
4933
- mapping?: boolean
4933
+ mapping?: string
4934
4934
  }
4935
4935
  | {
4936
4936
  input: 'payload'
4937
4937
  value?: Array<any> | DataLink
4938
- mapping?: boolean
4938
+ mapping?: string
4939
4939
  }
4940
4940
  | {
4941
4941
  input: 'rawCommands'
4942
4942
  value?: string | DataLink
4943
- mapping?: boolean
4943
+ mapping?: string
4944
4944
  }
4945
4945
  >
4946
4946
  }
@@ -5095,7 +5095,7 @@ export type GeneratorTTSActionGenerate = ActionWithParams & {
5095
5095
  params?: Array<{
5096
5096
  input: 'text'
5097
5097
  value?: string | DataLink
5098
- mapping?: boolean
5098
+ mapping?: string
5099
5099
  }>
5100
5100
  }
5101
5101
 
@@ -5259,12 +5259,12 @@ export type GeneratorOnnxLLMActionInfer = ActionWithParams & {
5259
5259
  | {
5260
5260
  input: 'prompt'
5261
5261
  value?: string | DataLink
5262
- mapping?: boolean
5262
+ mapping?: string
5263
5263
  }
5264
5264
  | {
5265
5265
  input: 'chat'
5266
5266
  value?: Array<any> | DataLink
5267
- mapping?: boolean
5267
+ mapping?: string
5268
5268
  }
5269
5269
  >
5270
5270
  }
@@ -5468,7 +5468,7 @@ export type GeneratorOnnxSTTActionInfer = ActionWithParams & {
5468
5468
  params?: Array<{
5469
5469
  input: 'audioUri'
5470
5470
  value?: string | DataLink
5471
- mapping?: boolean
5471
+ mapping?: string
5472
5472
  }>
5473
5473
  }
5474
5474
 
@@ -5714,27 +5714,27 @@ export type GeneratorSpeechInferenceActionTranscribeFile = ActionWithParams & {
5714
5714
  | {
5715
5715
  input: 'prompt'
5716
5716
  value?: string | DataLink
5717
- mapping?: boolean
5717
+ mapping?: string
5718
5718
  }
5719
5719
  | {
5720
5720
  input: 'beamSize'
5721
5721
  value?: number | DataLink
5722
- mapping?: boolean
5722
+ mapping?: string
5723
5723
  }
5724
5724
  | {
5725
5725
  input: 'language'
5726
5726
  value?: string | DataLink
5727
- mapping?: boolean
5727
+ mapping?: string
5728
5728
  }
5729
5729
  | {
5730
5730
  input: 'translate'
5731
5731
  value?: boolean | DataLink
5732
- mapping?: boolean
5732
+ mapping?: string
5733
5733
  }
5734
5734
  | {
5735
5735
  input: 'fileUrl'
5736
5736
  value?: string | DataLink
5737
- mapping?: boolean
5737
+ mapping?: string
5738
5738
  }
5739
5739
  >
5740
5740
  }
@@ -5746,62 +5746,62 @@ export type GeneratorSpeechInferenceActionTranscribeRealtime = ActionWithParams
5746
5746
  | {
5747
5747
  input: 'prompt'
5748
5748
  value?: string | DataLink
5749
- mapping?: boolean
5749
+ mapping?: string
5750
5750
  }
5751
5751
  | {
5752
5752
  input: 'beamSize'
5753
5753
  value?: number | DataLink
5754
- mapping?: boolean
5754
+ mapping?: string
5755
5755
  }
5756
5756
  | {
5757
5757
  input: 'language'
5758
5758
  value?: string | DataLink
5759
- mapping?: boolean
5759
+ mapping?: string
5760
5760
  }
5761
5761
  | {
5762
5762
  input: 'translate'
5763
5763
  value?: boolean | DataLink
5764
- mapping?: boolean
5764
+ mapping?: string
5765
5765
  }
5766
5766
  | {
5767
5767
  input: 'realtimeAudioSeconds'
5768
5768
  value?: number | DataLink
5769
- mapping?: boolean
5769
+ mapping?: string
5770
5770
  }
5771
5771
  | {
5772
5772
  input: 'realtimeAudioSliceSeconds'
5773
5773
  value?: number | DataLink
5774
- mapping?: boolean
5774
+ mapping?: string
5775
5775
  }
5776
5776
  | {
5777
5777
  input: 'realtimeAudioMinSeconds'
5778
5778
  value?: number | DataLink
5779
- mapping?: boolean
5779
+ mapping?: string
5780
5780
  }
5781
5781
  | {
5782
5782
  input: 'realtimeSaveAudio'
5783
5783
  value?: boolean | DataLink
5784
- mapping?: boolean
5784
+ mapping?: string
5785
5785
  }
5786
5786
  | {
5787
5787
  input: 'realtimeVadEnabled'
5788
5788
  value?: boolean | DataLink
5789
- mapping?: boolean
5789
+ mapping?: string
5790
5790
  }
5791
5791
  | {
5792
5792
  input: 'realtimeVadMs'
5793
5793
  value?: number | DataLink
5794
- mapping?: boolean
5794
+ mapping?: string
5795
5795
  }
5796
5796
  | {
5797
5797
  input: 'realtimeVadThold'
5798
5798
  value?: number | DataLink
5799
- mapping?: boolean
5799
+ mapping?: string
5800
5800
  }
5801
5801
  | {
5802
5802
  input: 'realtimeVadFreqThold'
5803
5803
  value?: number | DataLink
5804
- mapping?: boolean
5804
+ mapping?: string
5805
5805
  }
5806
5806
  >
5807
5807
  }
@@ -6127,27 +6127,27 @@ export type GeneratorLLMActionProcessPrompt = ActionWithParams & {
6127
6127
  | {
6128
6128
  input: 'mode'
6129
6129
  value?: string | DataLink
6130
- mapping?: boolean
6130
+ mapping?: string
6131
6131
  }
6132
6132
  | {
6133
6133
  input: 'messages'
6134
6134
  value?: Array<any> | DataLink
6135
- mapping?: boolean
6135
+ mapping?: string
6136
6136
  }
6137
6137
  | {
6138
6138
  input: 'prompt'
6139
6139
  value?: string | DataLink
6140
- mapping?: boolean
6140
+ mapping?: string
6141
6141
  }
6142
6142
  | {
6143
6143
  input: 'promptTemplateData'
6144
6144
  value?: {} | DataLink
6145
- mapping?: boolean
6145
+ mapping?: string
6146
6146
  }
6147
6147
  | {
6148
6148
  input: 'promptTemplateType'
6149
6149
  value?: string | DataLink
6150
- mapping?: boolean
6150
+ mapping?: string
6151
6151
  }
6152
6152
  >
6153
6153
  }
@@ -6159,132 +6159,132 @@ export type GeneratorLLMActionCompletion = ActionWithParams & {
6159
6159
  | {
6160
6160
  input: 'mode'
6161
6161
  value?: string | DataLink
6162
- mapping?: boolean
6162
+ mapping?: string
6163
6163
  }
6164
6164
  | {
6165
6165
  input: 'messages'
6166
6166
  value?: Array<any> | DataLink
6167
- mapping?: boolean
6167
+ mapping?: string
6168
6168
  }
6169
6169
  | {
6170
6170
  input: 'prompt'
6171
6171
  value?: string | DataLink
6172
- mapping?: boolean
6172
+ mapping?: string
6173
6173
  }
6174
6174
  | {
6175
6175
  input: 'promptTemplateData'
6176
6176
  value?: {} | DataLink
6177
- mapping?: boolean
6177
+ mapping?: string
6178
6178
  }
6179
6179
  | {
6180
6180
  input: 'promptTemplateType'
6181
6181
  value?: string | DataLink
6182
- mapping?: boolean
6182
+ mapping?: string
6183
6183
  }
6184
6184
  | {
6185
6185
  input: 'grammar'
6186
6186
  value?: string | DataLink
6187
- mapping?: boolean
6187
+ mapping?: string
6188
6188
  }
6189
6189
  | {
6190
6190
  input: 'stopWords'
6191
6191
  value?: Array<any> | DataLink
6192
- mapping?: boolean
6192
+ mapping?: string
6193
6193
  }
6194
6194
  | {
6195
6195
  input: 'predict'
6196
6196
  value?: number | DataLink
6197
- mapping?: boolean
6197
+ mapping?: string
6198
6198
  }
6199
6199
  | {
6200
6200
  input: 'temperature'
6201
6201
  value?: number | DataLink
6202
- mapping?: boolean
6202
+ mapping?: string
6203
6203
  }
6204
6204
  | {
6205
6205
  input: 'probs'
6206
6206
  value?: number | DataLink
6207
- mapping?: boolean
6207
+ mapping?: string
6208
6208
  }
6209
6209
  | {
6210
6210
  input: 'topK'
6211
6211
  value?: number | DataLink
6212
- mapping?: boolean
6212
+ mapping?: string
6213
6213
  }
6214
6214
  | {
6215
6215
  input: 'topP'
6216
6216
  value?: number | DataLink
6217
- mapping?: boolean
6217
+ mapping?: string
6218
6218
  }
6219
6219
  | {
6220
6220
  input: 'tfsZ'
6221
6221
  value?: number | DataLink
6222
- mapping?: boolean
6222
+ mapping?: string
6223
6223
  }
6224
6224
  | {
6225
6225
  input: 'mirostat'
6226
6226
  value?: number | DataLink
6227
- mapping?: boolean
6227
+ mapping?: string
6228
6228
  }
6229
6229
  | {
6230
6230
  input: 'mirostatTau'
6231
6231
  value?: number | DataLink
6232
- mapping?: boolean
6232
+ mapping?: string
6233
6233
  }
6234
6234
  | {
6235
6235
  input: 'mirostatEta'
6236
6236
  value?: number | DataLink
6237
- mapping?: boolean
6237
+ mapping?: string
6238
6238
  }
6239
6239
  | {
6240
6240
  input: 'penaltyLastN'
6241
6241
  value?: number | DataLink
6242
- mapping?: boolean
6242
+ mapping?: string
6243
6243
  }
6244
6244
  | {
6245
6245
  input: 'penaltyRepeat'
6246
6246
  value?: number | DataLink
6247
- mapping?: boolean
6247
+ mapping?: string
6248
6248
  }
6249
6249
  | {
6250
6250
  input: 'penaltyFrequency'
6251
6251
  value?: number | DataLink
6252
- mapping?: boolean
6252
+ mapping?: string
6253
6253
  }
6254
6254
  | {
6255
6255
  input: 'penaltyPresent'
6256
6256
  value?: number | DataLink
6257
- mapping?: boolean
6257
+ mapping?: string
6258
6258
  }
6259
6259
  | {
6260
6260
  input: 'penalizeNewline'
6261
6261
  value?: boolean | DataLink
6262
- mapping?: boolean
6262
+ mapping?: string
6263
6263
  }
6264
6264
  | {
6265
6265
  input: 'seed'
6266
6266
  value?: number | DataLink
6267
- mapping?: boolean
6267
+ mapping?: string
6268
6268
  }
6269
6269
  | {
6270
6270
  input: 'typicalP'
6271
6271
  value?: number | DataLink
6272
- mapping?: boolean
6272
+ mapping?: string
6273
6273
  }
6274
6274
  | {
6275
6275
  input: 'ignoreEos'
6276
6276
  value?: boolean | DataLink
6277
- mapping?: boolean
6277
+ mapping?: string
6278
6278
  }
6279
6279
  | {
6280
6280
  input: 'functionCallEnabled'
6281
6281
  value?: boolean | DataLink
6282
- mapping?: boolean
6282
+ mapping?: string
6283
6283
  }
6284
6284
  | {
6285
6285
  input: 'functionCallSchema'
6286
6286
  value?: Array<any> | DataLink
6287
- mapping?: boolean
6287
+ mapping?: string
6288
6288
  }
6289
6289
  >
6290
6290
  }