@scout9/app 1.0.0-alpha.0.9.5 → 1.0.0-alpha.0.9.7
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/dist/{dev-30739b07.cjs → dev-2a3c50b5.cjs} +3 -3
- package/dist/{index-af224c06.cjs → index-e9afdc22.cjs} +6 -6
- package/dist/index.cjs +3 -3
- package/dist/{macros-77983cef.cjs → macros-93b81169.cjs} +6 -0
- package/dist/{multipart-parser-e27c3e8c.cjs → multipart-parser-0a23e9d3.cjs} +3 -3
- package/dist/schemas.cjs +1 -1
- package/dist/testing-tools.cjs +2 -2
- package/package.json +1 -1
- package/src/runtime/schemas/message.js +2 -0
- package/types/index.d.ts +596 -1
- package/types/index.d.ts.map +1 -1
package/types/index.d.ts
CHANGED
|
@@ -1513,6 +1513,11 @@ declare module '@scout9/app/schemas' {
|
|
|
1513
1513
|
}>, "many">>>;
|
|
1514
1514
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
1515
1515
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1516
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>; /**
|
|
1517
|
+
* Tag to reference this application
|
|
1518
|
+
* @defaut your local package.json name + version, or scout9-app-v1.0.0
|
|
1519
|
+
*/
|
|
1520
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1516
1521
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1517
1522
|
id: z.ZodString;
|
|
1518
1523
|
type: z.ZodString;
|
|
@@ -1541,7 +1546,11 @@ declare module '@scout9/app/schemas' {
|
|
|
1541
1546
|
type: string;
|
|
1542
1547
|
id: string;
|
|
1543
1548
|
}>, "many">>>;
|
|
1544
|
-
tool_call_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1549
|
+
tool_call_id: z.ZodNullable<z.ZodOptional<z.ZodString>>; /**
|
|
1550
|
+
* Determines the max auto replies without further conversation progression (defined by new context data gathered)
|
|
1551
|
+
* before the conversation is locked and requires manual intervention
|
|
1552
|
+
* @default 3
|
|
1553
|
+
*/
|
|
1545
1554
|
}, "strip", z.ZodTypeAny, {
|
|
1546
1555
|
time: string;
|
|
1547
1556
|
id: string;
|
|
@@ -1562,6 +1571,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1562
1571
|
}[] | null | undefined;
|
|
1563
1572
|
ignoreTransform?: boolean | undefined;
|
|
1564
1573
|
mediaUrls?: string[] | null | undefined;
|
|
1574
|
+
contentGenerated?: string | null | undefined;
|
|
1575
|
+
contentTransformed?: string | null | undefined;
|
|
1565
1576
|
tool_calls?: {
|
|
1566
1577
|
function: {
|
|
1567
1578
|
name: string;
|
|
@@ -1591,6 +1602,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1591
1602
|
}[] | null | undefined;
|
|
1592
1603
|
ignoreTransform?: boolean | undefined;
|
|
1593
1604
|
mediaUrls?: string[] | null | undefined;
|
|
1605
|
+
contentGenerated?: string | null | undefined;
|
|
1606
|
+
contentTransformed?: string | null | undefined;
|
|
1594
1607
|
tool_calls?: {
|
|
1595
1608
|
function: {
|
|
1596
1609
|
name: string;
|
|
@@ -1665,6 +1678,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1665
1678
|
}[] | null | undefined;
|
|
1666
1679
|
ignoreTransform?: boolean | undefined;
|
|
1667
1680
|
mediaUrls?: string[] | null | undefined;
|
|
1681
|
+
contentGenerated?: string | null | undefined;
|
|
1682
|
+
contentTransformed?: string | null | undefined;
|
|
1668
1683
|
tool_calls?: {
|
|
1669
1684
|
function: {
|
|
1670
1685
|
name: string;
|
|
@@ -1725,6 +1740,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1725
1740
|
}[] | null | undefined;
|
|
1726
1741
|
ignoreTransform?: boolean | undefined;
|
|
1727
1742
|
mediaUrls?: string[] | null | undefined;
|
|
1743
|
+
contentGenerated?: string | null | undefined;
|
|
1744
|
+
contentTransformed?: string | null | undefined;
|
|
1728
1745
|
tool_calls?: {
|
|
1729
1746
|
function: {
|
|
1730
1747
|
name: string;
|
|
@@ -2009,6 +2026,8 @@ declare module '@scout9/app/schemas' {
|
|
|
2009
2026
|
}[] | null | undefined;
|
|
2010
2027
|
ignoreTransform?: boolean | undefined;
|
|
2011
2028
|
mediaUrls?: string[] | null | undefined;
|
|
2029
|
+
contentGenerated?: string | null | undefined;
|
|
2030
|
+
contentTransformed?: string | null | undefined;
|
|
2012
2031
|
tool_calls?: {
|
|
2013
2032
|
function: {
|
|
2014
2033
|
name: string;
|
|
@@ -2139,6 +2158,8 @@ declare module '@scout9/app/schemas' {
|
|
|
2139
2158
|
}[] | null | undefined;
|
|
2140
2159
|
ignoreTransform?: boolean | undefined;
|
|
2141
2160
|
mediaUrls?: string[] | null | undefined;
|
|
2161
|
+
contentGenerated?: string | null | undefined;
|
|
2162
|
+
contentTransformed?: string | null | undefined;
|
|
2142
2163
|
tool_calls?: {
|
|
2143
2164
|
function: {
|
|
2144
2165
|
name: string;
|
|
@@ -3289,6 +3310,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3289
3310
|
}>, "many">>>;
|
|
3290
3311
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
3291
3312
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3313
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3314
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3292
3315
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3293
3316
|
id: z.ZodString;
|
|
3294
3317
|
type: z.ZodString;
|
|
@@ -3338,6 +3361,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3338
3361
|
}[] | null | undefined;
|
|
3339
3362
|
ignoreTransform?: boolean | undefined;
|
|
3340
3363
|
mediaUrls?: string[] | null | undefined;
|
|
3364
|
+
contentGenerated?: string | null | undefined;
|
|
3365
|
+
contentTransformed?: string | null | undefined;
|
|
3341
3366
|
tool_calls?: {
|
|
3342
3367
|
function: {
|
|
3343
3368
|
name: string;
|
|
@@ -3367,6 +3392,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3367
3392
|
}[] | null | undefined;
|
|
3368
3393
|
ignoreTransform?: boolean | undefined;
|
|
3369
3394
|
mediaUrls?: string[] | null | undefined;
|
|
3395
|
+
contentGenerated?: string | null | undefined;
|
|
3396
|
+
contentTransformed?: string | null | undefined;
|
|
3370
3397
|
tool_calls?: {
|
|
3371
3398
|
function: {
|
|
3372
3399
|
name: string;
|
|
@@ -3494,6 +3521,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3494
3521
|
}>, "many">>>;
|
|
3495
3522
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
3496
3523
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3524
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3525
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3497
3526
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3498
3527
|
id: z.ZodString;
|
|
3499
3528
|
type: z.ZodString;
|
|
@@ -3543,6 +3572,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3543
3572
|
}[] | null | undefined;
|
|
3544
3573
|
ignoreTransform?: boolean | undefined;
|
|
3545
3574
|
mediaUrls?: string[] | null | undefined;
|
|
3575
|
+
contentGenerated?: string | null | undefined;
|
|
3576
|
+
contentTransformed?: string | null | undefined;
|
|
3546
3577
|
tool_calls?: {
|
|
3547
3578
|
function: {
|
|
3548
3579
|
name: string;
|
|
@@ -3572,6 +3603,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3572
3603
|
}[] | null | undefined;
|
|
3573
3604
|
ignoreTransform?: boolean | undefined;
|
|
3574
3605
|
mediaUrls?: string[] | null | undefined;
|
|
3606
|
+
contentGenerated?: string | null | undefined;
|
|
3607
|
+
contentTransformed?: string | null | undefined;
|
|
3575
3608
|
tool_calls?: {
|
|
3576
3609
|
function: {
|
|
3577
3610
|
name: string;
|
|
@@ -3646,6 +3679,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3646
3679
|
}[] | null | undefined;
|
|
3647
3680
|
ignoreTransform?: boolean | undefined;
|
|
3648
3681
|
mediaUrls?: string[] | null | undefined;
|
|
3682
|
+
contentGenerated?: string | null | undefined;
|
|
3683
|
+
contentTransformed?: string | null | undefined;
|
|
3649
3684
|
tool_calls?: {
|
|
3650
3685
|
function: {
|
|
3651
3686
|
name: string;
|
|
@@ -3706,6 +3741,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3706
3741
|
}[] | null | undefined;
|
|
3707
3742
|
ignoreTransform?: boolean | undefined;
|
|
3708
3743
|
mediaUrls?: string[] | null | undefined;
|
|
3744
|
+
contentGenerated?: string | null | undefined;
|
|
3745
|
+
contentTransformed?: string | null | undefined;
|
|
3709
3746
|
tool_calls?: {
|
|
3710
3747
|
function: {
|
|
3711
3748
|
name: string;
|
|
@@ -3787,6 +3824,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3787
3824
|
}>, "many">>>;
|
|
3788
3825
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
3789
3826
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3827
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3828
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3790
3829
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3791
3830
|
id: z.ZodString;
|
|
3792
3831
|
type: z.ZodString;
|
|
@@ -3836,6 +3875,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3836
3875
|
}[] | null | undefined;
|
|
3837
3876
|
ignoreTransform?: boolean | undefined;
|
|
3838
3877
|
mediaUrls?: string[] | null | undefined;
|
|
3878
|
+
contentGenerated?: string | null | undefined;
|
|
3879
|
+
contentTransformed?: string | null | undefined;
|
|
3839
3880
|
tool_calls?: {
|
|
3840
3881
|
function: {
|
|
3841
3882
|
name: string;
|
|
@@ -3865,6 +3906,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3865
3906
|
}[] | null | undefined;
|
|
3866
3907
|
ignoreTransform?: boolean | undefined;
|
|
3867
3908
|
mediaUrls?: string[] | null | undefined;
|
|
3909
|
+
contentGenerated?: string | null | undefined;
|
|
3910
|
+
contentTransformed?: string | null | undefined;
|
|
3868
3911
|
tool_calls?: {
|
|
3869
3912
|
function: {
|
|
3870
3913
|
name: string;
|
|
@@ -3939,6 +3982,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3939
3982
|
}[] | null | undefined;
|
|
3940
3983
|
ignoreTransform?: boolean | undefined;
|
|
3941
3984
|
mediaUrls?: string[] | null | undefined;
|
|
3985
|
+
contentGenerated?: string | null | undefined;
|
|
3986
|
+
contentTransformed?: string | null | undefined;
|
|
3942
3987
|
tool_calls?: {
|
|
3943
3988
|
function: {
|
|
3944
3989
|
name: string;
|
|
@@ -3999,6 +4044,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3999
4044
|
}[] | null | undefined;
|
|
4000
4045
|
ignoreTransform?: boolean | undefined;
|
|
4001
4046
|
mediaUrls?: string[] | null | undefined;
|
|
4047
|
+
contentGenerated?: string | null | undefined;
|
|
4048
|
+
contentTransformed?: string | null | undefined;
|
|
4002
4049
|
tool_calls?: {
|
|
4003
4050
|
function: {
|
|
4004
4051
|
name: string;
|
|
@@ -4080,6 +4127,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4080
4127
|
}>, "many">>>;
|
|
4081
4128
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
4082
4129
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
4130
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4131
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4083
4132
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4084
4133
|
id: z.ZodString;
|
|
4085
4134
|
type: z.ZodString;
|
|
@@ -4129,6 +4178,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4129
4178
|
}[] | null | undefined;
|
|
4130
4179
|
ignoreTransform?: boolean | undefined;
|
|
4131
4180
|
mediaUrls?: string[] | null | undefined;
|
|
4181
|
+
contentGenerated?: string | null | undefined;
|
|
4182
|
+
contentTransformed?: string | null | undefined;
|
|
4132
4183
|
tool_calls?: {
|
|
4133
4184
|
function: {
|
|
4134
4185
|
name: string;
|
|
@@ -4158,6 +4209,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4158
4209
|
}[] | null | undefined;
|
|
4159
4210
|
ignoreTransform?: boolean | undefined;
|
|
4160
4211
|
mediaUrls?: string[] | null | undefined;
|
|
4212
|
+
contentGenerated?: string | null | undefined;
|
|
4213
|
+
contentTransformed?: string | null | undefined;
|
|
4161
4214
|
tool_calls?: {
|
|
4162
4215
|
function: {
|
|
4163
4216
|
name: string;
|
|
@@ -4234,6 +4287,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4234
4287
|
}[] | null | undefined;
|
|
4235
4288
|
ignoreTransform?: boolean | undefined;
|
|
4236
4289
|
mediaUrls?: string[] | null | undefined;
|
|
4290
|
+
contentGenerated?: string | null | undefined;
|
|
4291
|
+
contentTransformed?: string | null | undefined;
|
|
4237
4292
|
tool_calls?: {
|
|
4238
4293
|
function: {
|
|
4239
4294
|
name: string;
|
|
@@ -4295,6 +4350,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4295
4350
|
}[] | null | undefined;
|
|
4296
4351
|
ignoreTransform?: boolean | undefined;
|
|
4297
4352
|
mediaUrls?: string[] | null | undefined;
|
|
4353
|
+
contentGenerated?: string | null | undefined;
|
|
4354
|
+
contentTransformed?: string | null | undefined;
|
|
4298
4355
|
tool_calls?: {
|
|
4299
4356
|
function: {
|
|
4300
4357
|
name: string;
|
|
@@ -4376,6 +4433,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4376
4433
|
}>, "many">>>;
|
|
4377
4434
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
4378
4435
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
4436
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4437
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4379
4438
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4380
4439
|
id: z.ZodString;
|
|
4381
4440
|
type: z.ZodString;
|
|
@@ -4425,6 +4484,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4425
4484
|
}[] | null | undefined;
|
|
4426
4485
|
ignoreTransform?: boolean | undefined;
|
|
4427
4486
|
mediaUrls?: string[] | null | undefined;
|
|
4487
|
+
contentGenerated?: string | null | undefined;
|
|
4488
|
+
contentTransformed?: string | null | undefined;
|
|
4428
4489
|
tool_calls?: {
|
|
4429
4490
|
function: {
|
|
4430
4491
|
name: string;
|
|
@@ -4454,6 +4515,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4454
4515
|
}[] | null | undefined;
|
|
4455
4516
|
ignoreTransform?: boolean | undefined;
|
|
4456
4517
|
mediaUrls?: string[] | null | undefined;
|
|
4518
|
+
contentGenerated?: string | null | undefined;
|
|
4519
|
+
contentTransformed?: string | null | undefined;
|
|
4457
4520
|
tool_calls?: {
|
|
4458
4521
|
function: {
|
|
4459
4522
|
name: string;
|
|
@@ -4530,6 +4593,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4530
4593
|
}[] | null | undefined;
|
|
4531
4594
|
ignoreTransform?: boolean | undefined;
|
|
4532
4595
|
mediaUrls?: string[] | null | undefined;
|
|
4596
|
+
contentGenerated?: string | null | undefined;
|
|
4597
|
+
contentTransformed?: string | null | undefined;
|
|
4533
4598
|
tool_calls?: {
|
|
4534
4599
|
function: {
|
|
4535
4600
|
name: string;
|
|
@@ -4591,6 +4656,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4591
4656
|
}[] | null | undefined;
|
|
4592
4657
|
ignoreTransform?: boolean | undefined;
|
|
4593
4658
|
mediaUrls?: string[] | null | undefined;
|
|
4659
|
+
contentGenerated?: string | null | undefined;
|
|
4660
|
+
contentTransformed?: string | null | undefined;
|
|
4594
4661
|
tool_calls?: {
|
|
4595
4662
|
function: {
|
|
4596
4663
|
name: string;
|
|
@@ -4672,6 +4739,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4672
4739
|
}>, "many">>>;
|
|
4673
4740
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
4674
4741
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
4742
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4743
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4675
4744
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4676
4745
|
id: z.ZodString;
|
|
4677
4746
|
type: z.ZodString;
|
|
@@ -4721,6 +4790,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4721
4790
|
}[] | null | undefined;
|
|
4722
4791
|
ignoreTransform?: boolean | undefined;
|
|
4723
4792
|
mediaUrls?: string[] | null | undefined;
|
|
4793
|
+
contentGenerated?: string | null | undefined;
|
|
4794
|
+
contentTransformed?: string | null | undefined;
|
|
4724
4795
|
tool_calls?: {
|
|
4725
4796
|
function: {
|
|
4726
4797
|
name: string;
|
|
@@ -4750,6 +4821,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4750
4821
|
}[] | null | undefined;
|
|
4751
4822
|
ignoreTransform?: boolean | undefined;
|
|
4752
4823
|
mediaUrls?: string[] | null | undefined;
|
|
4824
|
+
contentGenerated?: string | null | undefined;
|
|
4825
|
+
contentTransformed?: string | null | undefined;
|
|
4753
4826
|
tool_calls?: {
|
|
4754
4827
|
function: {
|
|
4755
4828
|
name: string;
|
|
@@ -4826,6 +4899,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4826
4899
|
}[] | null | undefined;
|
|
4827
4900
|
ignoreTransform?: boolean | undefined;
|
|
4828
4901
|
mediaUrls?: string[] | null | undefined;
|
|
4902
|
+
contentGenerated?: string | null | undefined;
|
|
4903
|
+
contentTransformed?: string | null | undefined;
|
|
4829
4904
|
tool_calls?: {
|
|
4830
4905
|
function: {
|
|
4831
4906
|
name: string;
|
|
@@ -4887,6 +4962,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4887
4962
|
}[] | null | undefined;
|
|
4888
4963
|
ignoreTransform?: boolean | undefined;
|
|
4889
4964
|
mediaUrls?: string[] | null | undefined;
|
|
4965
|
+
contentGenerated?: string | null | undefined;
|
|
4966
|
+
contentTransformed?: string | null | undefined;
|
|
4890
4967
|
tool_calls?: {
|
|
4891
4968
|
function: {
|
|
4892
4969
|
name: string;
|
|
@@ -4968,6 +5045,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4968
5045
|
}>, "many">>>;
|
|
4969
5046
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
4970
5047
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
5048
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5049
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4971
5050
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4972
5051
|
id: z.ZodString;
|
|
4973
5052
|
type: z.ZodString;
|
|
@@ -5017,6 +5096,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5017
5096
|
}[] | null | undefined;
|
|
5018
5097
|
ignoreTransform?: boolean | undefined;
|
|
5019
5098
|
mediaUrls?: string[] | null | undefined;
|
|
5099
|
+
contentGenerated?: string | null | undefined;
|
|
5100
|
+
contentTransformed?: string | null | undefined;
|
|
5020
5101
|
tool_calls?: {
|
|
5021
5102
|
function: {
|
|
5022
5103
|
name: string;
|
|
@@ -5046,6 +5127,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5046
5127
|
}[] | null | undefined;
|
|
5047
5128
|
ignoreTransform?: boolean | undefined;
|
|
5048
5129
|
mediaUrls?: string[] | null | undefined;
|
|
5130
|
+
contentGenerated?: string | null | undefined;
|
|
5131
|
+
contentTransformed?: string | null | undefined;
|
|
5049
5132
|
tool_calls?: {
|
|
5050
5133
|
function: {
|
|
5051
5134
|
name: string;
|
|
@@ -5122,6 +5205,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5122
5205
|
}[] | null | undefined;
|
|
5123
5206
|
ignoreTransform?: boolean | undefined;
|
|
5124
5207
|
mediaUrls?: string[] | null | undefined;
|
|
5208
|
+
contentGenerated?: string | null | undefined;
|
|
5209
|
+
contentTransformed?: string | null | undefined;
|
|
5125
5210
|
tool_calls?: {
|
|
5126
5211
|
function: {
|
|
5127
5212
|
name: string;
|
|
@@ -5183,6 +5268,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5183
5268
|
}[] | null | undefined;
|
|
5184
5269
|
ignoreTransform?: boolean | undefined;
|
|
5185
5270
|
mediaUrls?: string[] | null | undefined;
|
|
5271
|
+
contentGenerated?: string | null | undefined;
|
|
5272
|
+
contentTransformed?: string | null | undefined;
|
|
5186
5273
|
tool_calls?: {
|
|
5187
5274
|
function: {
|
|
5188
5275
|
name: string;
|
|
@@ -5264,6 +5351,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5264
5351
|
}>, "many">>>;
|
|
5265
5352
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
5266
5353
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
5354
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5355
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5267
5356
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5268
5357
|
id: z.ZodString;
|
|
5269
5358
|
type: z.ZodString;
|
|
@@ -5313,6 +5402,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5313
5402
|
}[] | null | undefined;
|
|
5314
5403
|
ignoreTransform?: boolean | undefined;
|
|
5315
5404
|
mediaUrls?: string[] | null | undefined;
|
|
5405
|
+
contentGenerated?: string | null | undefined;
|
|
5406
|
+
contentTransformed?: string | null | undefined;
|
|
5316
5407
|
tool_calls?: {
|
|
5317
5408
|
function: {
|
|
5318
5409
|
name: string;
|
|
@@ -5342,6 +5433,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5342
5433
|
}[] | null | undefined;
|
|
5343
5434
|
ignoreTransform?: boolean | undefined;
|
|
5344
5435
|
mediaUrls?: string[] | null | undefined;
|
|
5436
|
+
contentGenerated?: string | null | undefined;
|
|
5437
|
+
contentTransformed?: string | null | undefined;
|
|
5345
5438
|
tool_calls?: {
|
|
5346
5439
|
function: {
|
|
5347
5440
|
name: string;
|
|
@@ -5416,6 +5509,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5416
5509
|
}[] | null | undefined;
|
|
5417
5510
|
ignoreTransform?: boolean | undefined;
|
|
5418
5511
|
mediaUrls?: string[] | null | undefined;
|
|
5512
|
+
contentGenerated?: string | null | undefined;
|
|
5513
|
+
contentTransformed?: string | null | undefined;
|
|
5419
5514
|
tool_calls?: {
|
|
5420
5515
|
function: {
|
|
5421
5516
|
name: string;
|
|
@@ -5476,6 +5571,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5476
5571
|
}[] | null | undefined;
|
|
5477
5572
|
ignoreTransform?: boolean | undefined;
|
|
5478
5573
|
mediaUrls?: string[] | null | undefined;
|
|
5574
|
+
contentGenerated?: string | null | undefined;
|
|
5575
|
+
contentTransformed?: string | null | undefined;
|
|
5479
5576
|
tool_calls?: {
|
|
5480
5577
|
function: {
|
|
5481
5578
|
name: string;
|
|
@@ -5557,6 +5654,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5557
5654
|
}>, "many">>>;
|
|
5558
5655
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
5559
5656
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
5657
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5658
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5560
5659
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5561
5660
|
id: z.ZodString;
|
|
5562
5661
|
type: z.ZodString;
|
|
@@ -5606,6 +5705,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5606
5705
|
}[] | null | undefined;
|
|
5607
5706
|
ignoreTransform?: boolean | undefined;
|
|
5608
5707
|
mediaUrls?: string[] | null | undefined;
|
|
5708
|
+
contentGenerated?: string | null | undefined;
|
|
5709
|
+
contentTransformed?: string | null | undefined;
|
|
5609
5710
|
tool_calls?: {
|
|
5610
5711
|
function: {
|
|
5611
5712
|
name: string;
|
|
@@ -5635,6 +5736,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5635
5736
|
}[] | null | undefined;
|
|
5636
5737
|
ignoreTransform?: boolean | undefined;
|
|
5637
5738
|
mediaUrls?: string[] | null | undefined;
|
|
5739
|
+
contentGenerated?: string | null | undefined;
|
|
5740
|
+
contentTransformed?: string | null | undefined;
|
|
5638
5741
|
tool_calls?: {
|
|
5639
5742
|
function: {
|
|
5640
5743
|
name: string;
|
|
@@ -5709,6 +5812,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5709
5812
|
}[] | null | undefined;
|
|
5710
5813
|
ignoreTransform?: boolean | undefined;
|
|
5711
5814
|
mediaUrls?: string[] | null | undefined;
|
|
5815
|
+
contentGenerated?: string | null | undefined;
|
|
5816
|
+
contentTransformed?: string | null | undefined;
|
|
5712
5817
|
tool_calls?: {
|
|
5713
5818
|
function: {
|
|
5714
5819
|
name: string;
|
|
@@ -5769,6 +5874,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5769
5874
|
}[] | null | undefined;
|
|
5770
5875
|
ignoreTransform?: boolean | undefined;
|
|
5771
5876
|
mediaUrls?: string[] | null | undefined;
|
|
5877
|
+
contentGenerated?: string | null | undefined;
|
|
5878
|
+
contentTransformed?: string | null | undefined;
|
|
5772
5879
|
tool_calls?: {
|
|
5773
5880
|
function: {
|
|
5774
5881
|
name: string;
|
|
@@ -6099,6 +6206,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6099
6206
|
}>, "many">>>;
|
|
6100
6207
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
6101
6208
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
6209
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6210
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6102
6211
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6103
6212
|
id: z.ZodString;
|
|
6104
6213
|
type: z.ZodString;
|
|
@@ -6148,6 +6257,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6148
6257
|
}[] | null | undefined;
|
|
6149
6258
|
ignoreTransform?: boolean | undefined;
|
|
6150
6259
|
mediaUrls?: string[] | null | undefined;
|
|
6260
|
+
contentGenerated?: string | null | undefined;
|
|
6261
|
+
contentTransformed?: string | null | undefined;
|
|
6151
6262
|
tool_calls?: {
|
|
6152
6263
|
function: {
|
|
6153
6264
|
name: string;
|
|
@@ -6177,6 +6288,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6177
6288
|
}[] | null | undefined;
|
|
6178
6289
|
ignoreTransform?: boolean | undefined;
|
|
6179
6290
|
mediaUrls?: string[] | null | undefined;
|
|
6291
|
+
contentGenerated?: string | null | undefined;
|
|
6292
|
+
contentTransformed?: string | null | undefined;
|
|
6180
6293
|
tool_calls?: {
|
|
6181
6294
|
function: {
|
|
6182
6295
|
name: string;
|
|
@@ -6350,6 +6463,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6350
6463
|
}>, "many">>>;
|
|
6351
6464
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
6352
6465
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
6466
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6467
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6353
6468
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6354
6469
|
id: z.ZodString;
|
|
6355
6470
|
type: z.ZodString;
|
|
@@ -6399,6 +6514,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6399
6514
|
}[] | null | undefined;
|
|
6400
6515
|
ignoreTransform?: boolean | undefined;
|
|
6401
6516
|
mediaUrls?: string[] | null | undefined;
|
|
6517
|
+
contentGenerated?: string | null | undefined;
|
|
6518
|
+
contentTransformed?: string | null | undefined;
|
|
6402
6519
|
tool_calls?: {
|
|
6403
6520
|
function: {
|
|
6404
6521
|
name: string;
|
|
@@ -6428,6 +6545,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6428
6545
|
}[] | null | undefined;
|
|
6429
6546
|
ignoreTransform?: boolean | undefined;
|
|
6430
6547
|
mediaUrls?: string[] | null | undefined;
|
|
6548
|
+
contentGenerated?: string | null | undefined;
|
|
6549
|
+
contentTransformed?: string | null | undefined;
|
|
6431
6550
|
tool_calls?: {
|
|
6432
6551
|
function: {
|
|
6433
6552
|
name: string;
|
|
@@ -6499,6 +6618,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6499
6618
|
}>, "many">>>;
|
|
6500
6619
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
6501
6620
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
6621
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6622
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6502
6623
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6503
6624
|
id: z.ZodString;
|
|
6504
6625
|
type: z.ZodString;
|
|
@@ -6548,6 +6669,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6548
6669
|
}[] | null | undefined;
|
|
6549
6670
|
ignoreTransform?: boolean | undefined;
|
|
6550
6671
|
mediaUrls?: string[] | null | undefined;
|
|
6672
|
+
contentGenerated?: string | null | undefined;
|
|
6673
|
+
contentTransformed?: string | null | undefined;
|
|
6551
6674
|
tool_calls?: {
|
|
6552
6675
|
function: {
|
|
6553
6676
|
name: string;
|
|
@@ -6577,6 +6700,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6577
6700
|
}[] | null | undefined;
|
|
6578
6701
|
ignoreTransform?: boolean | undefined;
|
|
6579
6702
|
mediaUrls?: string[] | null | undefined;
|
|
6703
|
+
contentGenerated?: string | null | undefined;
|
|
6704
|
+
contentTransformed?: string | null | undefined;
|
|
6580
6705
|
tool_calls?: {
|
|
6581
6706
|
function: {
|
|
6582
6707
|
name: string;
|
|
@@ -6739,6 +6864,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6739
6864
|
}[] | null | undefined;
|
|
6740
6865
|
ignoreTransform?: boolean | undefined;
|
|
6741
6866
|
mediaUrls?: string[] | null | undefined;
|
|
6867
|
+
contentGenerated?: string | null | undefined;
|
|
6868
|
+
contentTransformed?: string | null | undefined;
|
|
6742
6869
|
tool_calls?: {
|
|
6743
6870
|
function: {
|
|
6744
6871
|
name: string;
|
|
@@ -6814,6 +6941,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6814
6941
|
}[] | null | undefined;
|
|
6815
6942
|
ignoreTransform?: boolean | undefined;
|
|
6816
6943
|
mediaUrls?: string[] | null | undefined;
|
|
6944
|
+
contentGenerated?: string | null | undefined;
|
|
6945
|
+
contentTransformed?: string | null | undefined;
|
|
6817
6946
|
tool_calls?: {
|
|
6818
6947
|
function: {
|
|
6819
6948
|
name: string;
|
|
@@ -6880,6 +7009,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6880
7009
|
}[] | null | undefined;
|
|
6881
7010
|
ignoreTransform?: boolean | undefined;
|
|
6882
7011
|
mediaUrls?: string[] | null | undefined;
|
|
7012
|
+
contentGenerated?: string | null | undefined;
|
|
7013
|
+
contentTransformed?: string | null | undefined;
|
|
6883
7014
|
tool_calls?: {
|
|
6884
7015
|
function: {
|
|
6885
7016
|
name: string;
|
|
@@ -6955,6 +7086,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6955
7086
|
}[] | null | undefined;
|
|
6956
7087
|
ignoreTransform?: boolean | undefined;
|
|
6957
7088
|
mediaUrls?: string[] | null | undefined;
|
|
7089
|
+
contentGenerated?: string | null | undefined;
|
|
7090
|
+
contentTransformed?: string | null | undefined;
|
|
6958
7091
|
tool_calls?: {
|
|
6959
7092
|
function: {
|
|
6960
7093
|
name: string;
|
|
@@ -7033,6 +7166,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7033
7166
|
}>, "many">>>>;
|
|
7034
7167
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
7035
7168
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
7169
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
7170
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
7036
7171
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7037
7172
|
id: z.ZodString;
|
|
7038
7173
|
type: z.ZodString;
|
|
@@ -7072,6 +7207,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7072
7207
|
delayInSeconds?: number | null | undefined;
|
|
7073
7208
|
ignoreTransform?: boolean | undefined;
|
|
7074
7209
|
mediaUrls?: string[] | null | undefined;
|
|
7210
|
+
contentGenerated?: string | null | undefined;
|
|
7211
|
+
contentTransformed?: string | null | undefined;
|
|
7075
7212
|
tool_calls?: {
|
|
7076
7213
|
function: {
|
|
7077
7214
|
name: string;
|
|
@@ -7091,6 +7228,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7091
7228
|
delayInSeconds?: number | null | undefined;
|
|
7092
7229
|
ignoreTransform?: boolean | undefined;
|
|
7093
7230
|
mediaUrls?: string[] | null | undefined;
|
|
7231
|
+
contentGenerated?: string | null | undefined;
|
|
7232
|
+
contentTransformed?: string | null | undefined;
|
|
7094
7233
|
tool_calls?: {
|
|
7095
7234
|
function: {
|
|
7096
7235
|
name: string;
|
|
@@ -7264,6 +7403,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7264
7403
|
}>, "many">>>>;
|
|
7265
7404
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
7266
7405
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
7406
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
7407
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
7267
7408
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7268
7409
|
id: z.ZodString;
|
|
7269
7410
|
type: z.ZodString;
|
|
@@ -7303,6 +7444,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7303
7444
|
delayInSeconds?: number | null | undefined;
|
|
7304
7445
|
ignoreTransform?: boolean | undefined;
|
|
7305
7446
|
mediaUrls?: string[] | null | undefined;
|
|
7447
|
+
contentGenerated?: string | null | undefined;
|
|
7448
|
+
contentTransformed?: string | null | undefined;
|
|
7306
7449
|
tool_calls?: {
|
|
7307
7450
|
function: {
|
|
7308
7451
|
name: string;
|
|
@@ -7322,6 +7465,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7322
7465
|
delayInSeconds?: number | null | undefined;
|
|
7323
7466
|
ignoreTransform?: boolean | undefined;
|
|
7324
7467
|
mediaUrls?: string[] | null | undefined;
|
|
7468
|
+
contentGenerated?: string | null | undefined;
|
|
7469
|
+
contentTransformed?: string | null | undefined;
|
|
7325
7470
|
tool_calls?: {
|
|
7326
7471
|
function: {
|
|
7327
7472
|
name: string;
|
|
@@ -7390,6 +7535,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7390
7535
|
delayInSeconds?: number | null | undefined;
|
|
7391
7536
|
ignoreTransform?: boolean | undefined;
|
|
7392
7537
|
mediaUrls?: string[] | null | undefined;
|
|
7538
|
+
contentGenerated?: string | null | undefined;
|
|
7539
|
+
contentTransformed?: string | null | undefined;
|
|
7393
7540
|
tool_calls?: {
|
|
7394
7541
|
function: {
|
|
7395
7542
|
name: string;
|
|
@@ -7458,6 +7605,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7458
7605
|
delayInSeconds?: number | null | undefined;
|
|
7459
7606
|
ignoreTransform?: boolean | undefined;
|
|
7460
7607
|
mediaUrls?: string[] | null | undefined;
|
|
7608
|
+
contentGenerated?: string | null | undefined;
|
|
7609
|
+
contentTransformed?: string | null | undefined;
|
|
7461
7610
|
tool_calls?: {
|
|
7462
7611
|
function: {
|
|
7463
7612
|
name: string;
|
|
@@ -7537,6 +7686,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7537
7686
|
}>, "many">>>>;
|
|
7538
7687
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
7539
7688
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
7689
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
7690
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
7540
7691
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7541
7692
|
id: z.ZodString;
|
|
7542
7693
|
type: z.ZodString;
|
|
@@ -7576,6 +7727,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7576
7727
|
delayInSeconds?: number | null | undefined;
|
|
7577
7728
|
ignoreTransform?: boolean | undefined;
|
|
7578
7729
|
mediaUrls?: string[] | null | undefined;
|
|
7730
|
+
contentGenerated?: string | null | undefined;
|
|
7731
|
+
contentTransformed?: string | null | undefined;
|
|
7579
7732
|
tool_calls?: {
|
|
7580
7733
|
function: {
|
|
7581
7734
|
name: string;
|
|
@@ -7595,6 +7748,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7595
7748
|
delayInSeconds?: number | null | undefined;
|
|
7596
7749
|
ignoreTransform?: boolean | undefined;
|
|
7597
7750
|
mediaUrls?: string[] | null | undefined;
|
|
7751
|
+
contentGenerated?: string | null | undefined;
|
|
7752
|
+
contentTransformed?: string | null | undefined;
|
|
7598
7753
|
tool_calls?: {
|
|
7599
7754
|
function: {
|
|
7600
7755
|
name: string;
|
|
@@ -7898,6 +8053,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7898
8053
|
}>, "many">>>>;
|
|
7899
8054
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
7900
8055
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
8056
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
8057
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
7901
8058
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7902
8059
|
id: z.ZodString;
|
|
7903
8060
|
type: z.ZodString;
|
|
@@ -7937,6 +8094,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7937
8094
|
delayInSeconds?: number | null | undefined;
|
|
7938
8095
|
ignoreTransform?: boolean | undefined;
|
|
7939
8096
|
mediaUrls?: string[] | null | undefined;
|
|
8097
|
+
contentGenerated?: string | null | undefined;
|
|
8098
|
+
contentTransformed?: string | null | undefined;
|
|
7940
8099
|
tool_calls?: {
|
|
7941
8100
|
function: {
|
|
7942
8101
|
name: string;
|
|
@@ -7956,6 +8115,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7956
8115
|
delayInSeconds?: number | null | undefined;
|
|
7957
8116
|
ignoreTransform?: boolean | undefined;
|
|
7958
8117
|
mediaUrls?: string[] | null | undefined;
|
|
8118
|
+
contentGenerated?: string | null | undefined;
|
|
8119
|
+
contentTransformed?: string | null | undefined;
|
|
7959
8120
|
tool_calls?: {
|
|
7960
8121
|
function: {
|
|
7961
8122
|
name: string;
|
|
@@ -8024,6 +8185,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8024
8185
|
delayInSeconds?: number | null | undefined;
|
|
8025
8186
|
ignoreTransform?: boolean | undefined;
|
|
8026
8187
|
mediaUrls?: string[] | null | undefined;
|
|
8188
|
+
contentGenerated?: string | null | undefined;
|
|
8189
|
+
contentTransformed?: string | null | undefined;
|
|
8027
8190
|
tool_calls?: {
|
|
8028
8191
|
function: {
|
|
8029
8192
|
name: string;
|
|
@@ -8092,6 +8255,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8092
8255
|
delayInSeconds?: number | null | undefined;
|
|
8093
8256
|
ignoreTransform?: boolean | undefined;
|
|
8094
8257
|
mediaUrls?: string[] | null | undefined;
|
|
8258
|
+
contentGenerated?: string | null | undefined;
|
|
8259
|
+
contentTransformed?: string | null | undefined;
|
|
8095
8260
|
tool_calls?: {
|
|
8096
8261
|
function: {
|
|
8097
8262
|
name: string;
|
|
@@ -8267,6 +8432,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8267
8432
|
}>, "many">>>>;
|
|
8268
8433
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8269
8434
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
8435
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
8436
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
8270
8437
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8271
8438
|
id: z.ZodString;
|
|
8272
8439
|
type: z.ZodString;
|
|
@@ -8306,6 +8473,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8306
8473
|
delayInSeconds?: number | null | undefined;
|
|
8307
8474
|
ignoreTransform?: boolean | undefined;
|
|
8308
8475
|
mediaUrls?: string[] | null | undefined;
|
|
8476
|
+
contentGenerated?: string | null | undefined;
|
|
8477
|
+
contentTransformed?: string | null | undefined;
|
|
8309
8478
|
tool_calls?: {
|
|
8310
8479
|
function: {
|
|
8311
8480
|
name: string;
|
|
@@ -8325,6 +8494,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8325
8494
|
delayInSeconds?: number | null | undefined;
|
|
8326
8495
|
ignoreTransform?: boolean | undefined;
|
|
8327
8496
|
mediaUrls?: string[] | null | undefined;
|
|
8497
|
+
contentGenerated?: string | null | undefined;
|
|
8498
|
+
contentTransformed?: string | null | undefined;
|
|
8328
8499
|
tool_calls?: {
|
|
8329
8500
|
function: {
|
|
8330
8501
|
name: string;
|
|
@@ -8393,6 +8564,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8393
8564
|
delayInSeconds?: number | null | undefined;
|
|
8394
8565
|
ignoreTransform?: boolean | undefined;
|
|
8395
8566
|
mediaUrls?: string[] | null | undefined;
|
|
8567
|
+
contentGenerated?: string | null | undefined;
|
|
8568
|
+
contentTransformed?: string | null | undefined;
|
|
8396
8569
|
tool_calls?: {
|
|
8397
8570
|
function: {
|
|
8398
8571
|
name: string;
|
|
@@ -8461,6 +8634,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8461
8634
|
delayInSeconds?: number | null | undefined;
|
|
8462
8635
|
ignoreTransform?: boolean | undefined;
|
|
8463
8636
|
mediaUrls?: string[] | null | undefined;
|
|
8637
|
+
contentGenerated?: string | null | undefined;
|
|
8638
|
+
contentTransformed?: string | null | undefined;
|
|
8464
8639
|
tool_calls?: {
|
|
8465
8640
|
function: {
|
|
8466
8641
|
name: string;
|
|
@@ -8532,6 +8707,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8532
8707
|
delayInSeconds?: number | null | undefined;
|
|
8533
8708
|
ignoreTransform?: boolean | undefined;
|
|
8534
8709
|
mediaUrls?: string[] | null | undefined;
|
|
8710
|
+
contentGenerated?: string | null | undefined;
|
|
8711
|
+
contentTransformed?: string | null | undefined;
|
|
8535
8712
|
tool_calls?: {
|
|
8536
8713
|
function: {
|
|
8537
8714
|
name: string;
|
|
@@ -8601,6 +8778,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8601
8778
|
delayInSeconds?: number | null | undefined;
|
|
8602
8779
|
ignoreTransform?: boolean | undefined;
|
|
8603
8780
|
mediaUrls?: string[] | null | undefined;
|
|
8781
|
+
contentGenerated?: string | null | undefined;
|
|
8782
|
+
contentTransformed?: string | null | undefined;
|
|
8604
8783
|
tool_calls?: {
|
|
8605
8784
|
function: {
|
|
8606
8785
|
name: string;
|
|
@@ -8672,6 +8851,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8672
8851
|
delayInSeconds?: number | null | undefined;
|
|
8673
8852
|
ignoreTransform?: boolean | undefined;
|
|
8674
8853
|
mediaUrls?: string[] | null | undefined;
|
|
8854
|
+
contentGenerated?: string | null | undefined;
|
|
8855
|
+
contentTransformed?: string | null | undefined;
|
|
8675
8856
|
tool_calls?: {
|
|
8676
8857
|
function: {
|
|
8677
8858
|
name: string;
|
|
@@ -8741,6 +8922,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8741
8922
|
delayInSeconds?: number | null | undefined;
|
|
8742
8923
|
ignoreTransform?: boolean | undefined;
|
|
8743
8924
|
mediaUrls?: string[] | null | undefined;
|
|
8925
|
+
contentGenerated?: string | null | undefined;
|
|
8926
|
+
contentTransformed?: string | null | undefined;
|
|
8744
8927
|
tool_calls?: {
|
|
8745
8928
|
function: {
|
|
8746
8929
|
name: string;
|
|
@@ -8789,6 +8972,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8789
8972
|
}>, "many">>>>;
|
|
8790
8973
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8791
8974
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
8975
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
8976
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
8792
8977
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8793
8978
|
id: z.ZodString;
|
|
8794
8979
|
type: z.ZodString;
|
|
@@ -8828,6 +9013,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8828
9013
|
delayInSeconds?: number | null | undefined;
|
|
8829
9014
|
ignoreTransform?: boolean | undefined;
|
|
8830
9015
|
mediaUrls?: string[] | null | undefined;
|
|
9016
|
+
contentGenerated?: string | null | undefined;
|
|
9017
|
+
contentTransformed?: string | null | undefined;
|
|
8831
9018
|
tool_calls?: {
|
|
8832
9019
|
function: {
|
|
8833
9020
|
name: string;
|
|
@@ -8847,6 +9034,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8847
9034
|
delayInSeconds?: number | null | undefined;
|
|
8848
9035
|
ignoreTransform?: boolean | undefined;
|
|
8849
9036
|
mediaUrls?: string[] | null | undefined;
|
|
9037
|
+
contentGenerated?: string | null | undefined;
|
|
9038
|
+
contentTransformed?: string | null | undefined;
|
|
8850
9039
|
tool_calls?: {
|
|
8851
9040
|
function: {
|
|
8852
9041
|
name: string;
|
|
@@ -9001,6 +9190,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9001
9190
|
delayInSeconds?: number | null | undefined;
|
|
9002
9191
|
ignoreTransform?: boolean | undefined;
|
|
9003
9192
|
mediaUrls?: string[] | null | undefined;
|
|
9193
|
+
contentGenerated?: string | null | undefined;
|
|
9194
|
+
contentTransformed?: string | null | undefined;
|
|
9004
9195
|
tool_calls?: {
|
|
9005
9196
|
function: {
|
|
9006
9197
|
name: string;
|
|
@@ -9070,6 +9261,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9070
9261
|
delayInSeconds?: number | null | undefined;
|
|
9071
9262
|
ignoreTransform?: boolean | undefined;
|
|
9072
9263
|
mediaUrls?: string[] | null | undefined;
|
|
9264
|
+
contentGenerated?: string | null | undefined;
|
|
9265
|
+
contentTransformed?: string | null | undefined;
|
|
9073
9266
|
tool_calls?: {
|
|
9074
9267
|
function: {
|
|
9075
9268
|
name: string;
|
|
@@ -9168,6 +9361,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9168
9361
|
delayInSeconds?: number | null | undefined;
|
|
9169
9362
|
ignoreTransform?: boolean | undefined;
|
|
9170
9363
|
mediaUrls?: string[] | null | undefined;
|
|
9364
|
+
contentGenerated?: string | null | undefined;
|
|
9365
|
+
contentTransformed?: string | null | undefined;
|
|
9171
9366
|
tool_calls?: {
|
|
9172
9367
|
function: {
|
|
9173
9368
|
name: string;
|
|
@@ -9281,6 +9476,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9281
9476
|
delayInSeconds?: number | null | undefined;
|
|
9282
9477
|
ignoreTransform?: boolean | undefined;
|
|
9283
9478
|
mediaUrls?: string[] | null | undefined;
|
|
9479
|
+
contentGenerated?: string | null | undefined;
|
|
9480
|
+
contentTransformed?: string | null | undefined;
|
|
9284
9481
|
tool_calls?: {
|
|
9285
9482
|
function: {
|
|
9286
9483
|
name: string;
|
|
@@ -9350,6 +9547,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9350
9547
|
delayInSeconds?: number | null | undefined;
|
|
9351
9548
|
ignoreTransform?: boolean | undefined;
|
|
9352
9549
|
mediaUrls?: string[] | null | undefined;
|
|
9550
|
+
contentGenerated?: string | null | undefined;
|
|
9551
|
+
contentTransformed?: string | null | undefined;
|
|
9353
9552
|
tool_calls?: {
|
|
9354
9553
|
function: {
|
|
9355
9554
|
name: string;
|
|
@@ -9377,6 +9576,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9377
9576
|
delayInSeconds?: number | null | undefined;
|
|
9378
9577
|
ignoreTransform?: boolean | undefined;
|
|
9379
9578
|
mediaUrls?: string[] | null | undefined;
|
|
9579
|
+
contentGenerated?: string | null | undefined;
|
|
9580
|
+
contentTransformed?: string | null | undefined;
|
|
9380
9581
|
tool_calls?: {
|
|
9381
9582
|
function: {
|
|
9382
9583
|
name: string;
|
|
@@ -9457,6 +9658,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9457
9658
|
delayInSeconds?: number | null | undefined;
|
|
9458
9659
|
ignoreTransform?: boolean | undefined;
|
|
9459
9660
|
mediaUrls?: string[] | null | undefined;
|
|
9661
|
+
contentGenerated?: string | null | undefined;
|
|
9662
|
+
contentTransformed?: string | null | undefined;
|
|
9460
9663
|
tool_calls?: {
|
|
9461
9664
|
function: {
|
|
9462
9665
|
name: string;
|
|
@@ -9570,6 +9773,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9570
9773
|
delayInSeconds?: number | null | undefined;
|
|
9571
9774
|
ignoreTransform?: boolean | undefined;
|
|
9572
9775
|
mediaUrls?: string[] | null | undefined;
|
|
9776
|
+
contentGenerated?: string | null | undefined;
|
|
9777
|
+
contentTransformed?: string | null | undefined;
|
|
9573
9778
|
tool_calls?: {
|
|
9574
9779
|
function: {
|
|
9575
9780
|
name: string;
|
|
@@ -9639,6 +9844,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9639
9844
|
delayInSeconds?: number | null | undefined;
|
|
9640
9845
|
ignoreTransform?: boolean | undefined;
|
|
9641
9846
|
mediaUrls?: string[] | null | undefined;
|
|
9847
|
+
contentGenerated?: string | null | undefined;
|
|
9848
|
+
contentTransformed?: string | null | undefined;
|
|
9642
9849
|
tool_calls?: {
|
|
9643
9850
|
function: {
|
|
9644
9851
|
name: string;
|
|
@@ -9666,6 +9873,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9666
9873
|
delayInSeconds?: number | null | undefined;
|
|
9667
9874
|
ignoreTransform?: boolean | undefined;
|
|
9668
9875
|
mediaUrls?: string[] | null | undefined;
|
|
9876
|
+
contentGenerated?: string | null | undefined;
|
|
9877
|
+
contentTransformed?: string | null | undefined;
|
|
9669
9878
|
tool_calls?: {
|
|
9670
9879
|
function: {
|
|
9671
9880
|
name: string;
|
|
@@ -9772,6 +9981,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9772
9981
|
}>, "many">>>>;
|
|
9773
9982
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
9774
9983
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
9984
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
9985
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
9775
9986
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9776
9987
|
id: z.ZodString;
|
|
9777
9988
|
type: z.ZodString;
|
|
@@ -9811,6 +10022,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9811
10022
|
delayInSeconds?: number | null | undefined;
|
|
9812
10023
|
ignoreTransform?: boolean | undefined;
|
|
9813
10024
|
mediaUrls?: string[] | null | undefined;
|
|
10025
|
+
contentGenerated?: string | null | undefined;
|
|
10026
|
+
contentTransformed?: string | null | undefined;
|
|
9814
10027
|
tool_calls?: {
|
|
9815
10028
|
function: {
|
|
9816
10029
|
name: string;
|
|
@@ -9830,6 +10043,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9830
10043
|
delayInSeconds?: number | null | undefined;
|
|
9831
10044
|
ignoreTransform?: boolean | undefined;
|
|
9832
10045
|
mediaUrls?: string[] | null | undefined;
|
|
10046
|
+
contentGenerated?: string | null | undefined;
|
|
10047
|
+
contentTransformed?: string | null | undefined;
|
|
9833
10048
|
tool_calls?: {
|
|
9834
10049
|
function: {
|
|
9835
10050
|
name: string;
|
|
@@ -10133,6 +10348,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10133
10348
|
}>, "many">>>>;
|
|
10134
10349
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
10135
10350
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
10351
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
10352
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
10136
10353
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10137
10354
|
id: z.ZodString;
|
|
10138
10355
|
type: z.ZodString;
|
|
@@ -10172,6 +10389,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10172
10389
|
delayInSeconds?: number | null | undefined;
|
|
10173
10390
|
ignoreTransform?: boolean | undefined;
|
|
10174
10391
|
mediaUrls?: string[] | null | undefined;
|
|
10392
|
+
contentGenerated?: string | null | undefined;
|
|
10393
|
+
contentTransformed?: string | null | undefined;
|
|
10175
10394
|
tool_calls?: {
|
|
10176
10395
|
function: {
|
|
10177
10396
|
name: string;
|
|
@@ -10191,6 +10410,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10191
10410
|
delayInSeconds?: number | null | undefined;
|
|
10192
10411
|
ignoreTransform?: boolean | undefined;
|
|
10193
10412
|
mediaUrls?: string[] | null | undefined;
|
|
10413
|
+
contentGenerated?: string | null | undefined;
|
|
10414
|
+
contentTransformed?: string | null | undefined;
|
|
10194
10415
|
tool_calls?: {
|
|
10195
10416
|
function: {
|
|
10196
10417
|
name: string;
|
|
@@ -10259,6 +10480,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10259
10480
|
delayInSeconds?: number | null | undefined;
|
|
10260
10481
|
ignoreTransform?: boolean | undefined;
|
|
10261
10482
|
mediaUrls?: string[] | null | undefined;
|
|
10483
|
+
contentGenerated?: string | null | undefined;
|
|
10484
|
+
contentTransformed?: string | null | undefined;
|
|
10262
10485
|
tool_calls?: {
|
|
10263
10486
|
function: {
|
|
10264
10487
|
name: string;
|
|
@@ -10327,6 +10550,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10327
10550
|
delayInSeconds?: number | null | undefined;
|
|
10328
10551
|
ignoreTransform?: boolean | undefined;
|
|
10329
10552
|
mediaUrls?: string[] | null | undefined;
|
|
10553
|
+
contentGenerated?: string | null | undefined;
|
|
10554
|
+
contentTransformed?: string | null | undefined;
|
|
10330
10555
|
tool_calls?: {
|
|
10331
10556
|
function: {
|
|
10332
10557
|
name: string;
|
|
@@ -10502,6 +10727,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10502
10727
|
}>, "many">>>>;
|
|
10503
10728
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
10504
10729
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
10730
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
10731
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
10505
10732
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10506
10733
|
id: z.ZodString;
|
|
10507
10734
|
type: z.ZodString;
|
|
@@ -10541,6 +10768,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10541
10768
|
delayInSeconds?: number | null | undefined;
|
|
10542
10769
|
ignoreTransform?: boolean | undefined;
|
|
10543
10770
|
mediaUrls?: string[] | null | undefined;
|
|
10771
|
+
contentGenerated?: string | null | undefined;
|
|
10772
|
+
contentTransformed?: string | null | undefined;
|
|
10544
10773
|
tool_calls?: {
|
|
10545
10774
|
function: {
|
|
10546
10775
|
name: string;
|
|
@@ -10560,6 +10789,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10560
10789
|
delayInSeconds?: number | null | undefined;
|
|
10561
10790
|
ignoreTransform?: boolean | undefined;
|
|
10562
10791
|
mediaUrls?: string[] | null | undefined;
|
|
10792
|
+
contentGenerated?: string | null | undefined;
|
|
10793
|
+
contentTransformed?: string | null | undefined;
|
|
10563
10794
|
tool_calls?: {
|
|
10564
10795
|
function: {
|
|
10565
10796
|
name: string;
|
|
@@ -10628,6 +10859,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10628
10859
|
delayInSeconds?: number | null | undefined;
|
|
10629
10860
|
ignoreTransform?: boolean | undefined;
|
|
10630
10861
|
mediaUrls?: string[] | null | undefined;
|
|
10862
|
+
contentGenerated?: string | null | undefined;
|
|
10863
|
+
contentTransformed?: string | null | undefined;
|
|
10631
10864
|
tool_calls?: {
|
|
10632
10865
|
function: {
|
|
10633
10866
|
name: string;
|
|
@@ -10696,6 +10929,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10696
10929
|
delayInSeconds?: number | null | undefined;
|
|
10697
10930
|
ignoreTransform?: boolean | undefined;
|
|
10698
10931
|
mediaUrls?: string[] | null | undefined;
|
|
10932
|
+
contentGenerated?: string | null | undefined;
|
|
10933
|
+
contentTransformed?: string | null | undefined;
|
|
10699
10934
|
tool_calls?: {
|
|
10700
10935
|
function: {
|
|
10701
10936
|
name: string;
|
|
@@ -10767,6 +11002,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10767
11002
|
delayInSeconds?: number | null | undefined;
|
|
10768
11003
|
ignoreTransform?: boolean | undefined;
|
|
10769
11004
|
mediaUrls?: string[] | null | undefined;
|
|
11005
|
+
contentGenerated?: string | null | undefined;
|
|
11006
|
+
contentTransformed?: string | null | undefined;
|
|
10770
11007
|
tool_calls?: {
|
|
10771
11008
|
function: {
|
|
10772
11009
|
name: string;
|
|
@@ -10836,6 +11073,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10836
11073
|
delayInSeconds?: number | null | undefined;
|
|
10837
11074
|
ignoreTransform?: boolean | undefined;
|
|
10838
11075
|
mediaUrls?: string[] | null | undefined;
|
|
11076
|
+
contentGenerated?: string | null | undefined;
|
|
11077
|
+
contentTransformed?: string | null | undefined;
|
|
10839
11078
|
tool_calls?: {
|
|
10840
11079
|
function: {
|
|
10841
11080
|
name: string;
|
|
@@ -10907,6 +11146,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10907
11146
|
delayInSeconds?: number | null | undefined;
|
|
10908
11147
|
ignoreTransform?: boolean | undefined;
|
|
10909
11148
|
mediaUrls?: string[] | null | undefined;
|
|
11149
|
+
contentGenerated?: string | null | undefined;
|
|
11150
|
+
contentTransformed?: string | null | undefined;
|
|
10910
11151
|
tool_calls?: {
|
|
10911
11152
|
function: {
|
|
10912
11153
|
name: string;
|
|
@@ -10976,6 +11217,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10976
11217
|
delayInSeconds?: number | null | undefined;
|
|
10977
11218
|
ignoreTransform?: boolean | undefined;
|
|
10978
11219
|
mediaUrls?: string[] | null | undefined;
|
|
11220
|
+
contentGenerated?: string | null | undefined;
|
|
11221
|
+
contentTransformed?: string | null | undefined;
|
|
10979
11222
|
tool_calls?: {
|
|
10980
11223
|
function: {
|
|
10981
11224
|
name: string;
|
|
@@ -11024,6 +11267,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11024
11267
|
}>, "many">>>>;
|
|
11025
11268
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11026
11269
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
11270
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
11271
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
11027
11272
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11028
11273
|
id: z.ZodString;
|
|
11029
11274
|
type: z.ZodString;
|
|
@@ -11063,6 +11308,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11063
11308
|
delayInSeconds?: number | null | undefined;
|
|
11064
11309
|
ignoreTransform?: boolean | undefined;
|
|
11065
11310
|
mediaUrls?: string[] | null | undefined;
|
|
11311
|
+
contentGenerated?: string | null | undefined;
|
|
11312
|
+
contentTransformed?: string | null | undefined;
|
|
11066
11313
|
tool_calls?: {
|
|
11067
11314
|
function: {
|
|
11068
11315
|
name: string;
|
|
@@ -11082,6 +11329,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11082
11329
|
delayInSeconds?: number | null | undefined;
|
|
11083
11330
|
ignoreTransform?: boolean | undefined;
|
|
11084
11331
|
mediaUrls?: string[] | null | undefined;
|
|
11332
|
+
contentGenerated?: string | null | undefined;
|
|
11333
|
+
contentTransformed?: string | null | undefined;
|
|
11085
11334
|
tool_calls?: {
|
|
11086
11335
|
function: {
|
|
11087
11336
|
name: string;
|
|
@@ -11236,6 +11485,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11236
11485
|
delayInSeconds?: number | null | undefined;
|
|
11237
11486
|
ignoreTransform?: boolean | undefined;
|
|
11238
11487
|
mediaUrls?: string[] | null | undefined;
|
|
11488
|
+
contentGenerated?: string | null | undefined;
|
|
11489
|
+
contentTransformed?: string | null | undefined;
|
|
11239
11490
|
tool_calls?: {
|
|
11240
11491
|
function: {
|
|
11241
11492
|
name: string;
|
|
@@ -11305,6 +11556,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11305
11556
|
delayInSeconds?: number | null | undefined;
|
|
11306
11557
|
ignoreTransform?: boolean | undefined;
|
|
11307
11558
|
mediaUrls?: string[] | null | undefined;
|
|
11559
|
+
contentGenerated?: string | null | undefined;
|
|
11560
|
+
contentTransformed?: string | null | undefined;
|
|
11308
11561
|
tool_calls?: {
|
|
11309
11562
|
function: {
|
|
11310
11563
|
name: string;
|
|
@@ -11403,6 +11656,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11403
11656
|
delayInSeconds?: number | null | undefined;
|
|
11404
11657
|
ignoreTransform?: boolean | undefined;
|
|
11405
11658
|
mediaUrls?: string[] | null | undefined;
|
|
11659
|
+
contentGenerated?: string | null | undefined;
|
|
11660
|
+
contentTransformed?: string | null | undefined;
|
|
11406
11661
|
tool_calls?: {
|
|
11407
11662
|
function: {
|
|
11408
11663
|
name: string;
|
|
@@ -11516,6 +11771,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11516
11771
|
delayInSeconds?: number | null | undefined;
|
|
11517
11772
|
ignoreTransform?: boolean | undefined;
|
|
11518
11773
|
mediaUrls?: string[] | null | undefined;
|
|
11774
|
+
contentGenerated?: string | null | undefined;
|
|
11775
|
+
contentTransformed?: string | null | undefined;
|
|
11519
11776
|
tool_calls?: {
|
|
11520
11777
|
function: {
|
|
11521
11778
|
name: string;
|
|
@@ -11585,6 +11842,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11585
11842
|
delayInSeconds?: number | null | undefined;
|
|
11586
11843
|
ignoreTransform?: boolean | undefined;
|
|
11587
11844
|
mediaUrls?: string[] | null | undefined;
|
|
11845
|
+
contentGenerated?: string | null | undefined;
|
|
11846
|
+
contentTransformed?: string | null | undefined;
|
|
11588
11847
|
tool_calls?: {
|
|
11589
11848
|
function: {
|
|
11590
11849
|
name: string;
|
|
@@ -11612,6 +11871,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11612
11871
|
delayInSeconds?: number | null | undefined;
|
|
11613
11872
|
ignoreTransform?: boolean | undefined;
|
|
11614
11873
|
mediaUrls?: string[] | null | undefined;
|
|
11874
|
+
contentGenerated?: string | null | undefined;
|
|
11875
|
+
contentTransformed?: string | null | undefined;
|
|
11615
11876
|
tool_calls?: {
|
|
11616
11877
|
function: {
|
|
11617
11878
|
name: string;
|
|
@@ -11692,6 +11953,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11692
11953
|
delayInSeconds?: number | null | undefined;
|
|
11693
11954
|
ignoreTransform?: boolean | undefined;
|
|
11694
11955
|
mediaUrls?: string[] | null | undefined;
|
|
11956
|
+
contentGenerated?: string | null | undefined;
|
|
11957
|
+
contentTransformed?: string | null | undefined;
|
|
11695
11958
|
tool_calls?: {
|
|
11696
11959
|
function: {
|
|
11697
11960
|
name: string;
|
|
@@ -11805,6 +12068,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11805
12068
|
delayInSeconds?: number | null | undefined;
|
|
11806
12069
|
ignoreTransform?: boolean | undefined;
|
|
11807
12070
|
mediaUrls?: string[] | null | undefined;
|
|
12071
|
+
contentGenerated?: string | null | undefined;
|
|
12072
|
+
contentTransformed?: string | null | undefined;
|
|
11808
12073
|
tool_calls?: {
|
|
11809
12074
|
function: {
|
|
11810
12075
|
name: string;
|
|
@@ -11874,6 +12139,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11874
12139
|
delayInSeconds?: number | null | undefined;
|
|
11875
12140
|
ignoreTransform?: boolean | undefined;
|
|
11876
12141
|
mediaUrls?: string[] | null | undefined;
|
|
12142
|
+
contentGenerated?: string | null | undefined;
|
|
12143
|
+
contentTransformed?: string | null | undefined;
|
|
11877
12144
|
tool_calls?: {
|
|
11878
12145
|
function: {
|
|
11879
12146
|
name: string;
|
|
@@ -11901,6 +12168,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11901
12168
|
delayInSeconds?: number | null | undefined;
|
|
11902
12169
|
ignoreTransform?: boolean | undefined;
|
|
11903
12170
|
mediaUrls?: string[] | null | undefined;
|
|
12171
|
+
contentGenerated?: string | null | undefined;
|
|
12172
|
+
contentTransformed?: string | null | undefined;
|
|
11904
12173
|
tool_calls?: {
|
|
11905
12174
|
function: {
|
|
11906
12175
|
name: string;
|
|
@@ -12003,6 +12272,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12003
12272
|
}>, "many">>>>;
|
|
12004
12273
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
12005
12274
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
12275
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
12276
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
12006
12277
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12007
12278
|
id: z.ZodString;
|
|
12008
12279
|
type: z.ZodString;
|
|
@@ -12042,6 +12313,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12042
12313
|
delayInSeconds?: number | null | undefined;
|
|
12043
12314
|
ignoreTransform?: boolean | undefined;
|
|
12044
12315
|
mediaUrls?: string[] | null | undefined;
|
|
12316
|
+
contentGenerated?: string | null | undefined;
|
|
12317
|
+
contentTransformed?: string | null | undefined;
|
|
12045
12318
|
tool_calls?: {
|
|
12046
12319
|
function: {
|
|
12047
12320
|
name: string;
|
|
@@ -12061,6 +12334,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12061
12334
|
delayInSeconds?: number | null | undefined;
|
|
12062
12335
|
ignoreTransform?: boolean | undefined;
|
|
12063
12336
|
mediaUrls?: string[] | null | undefined;
|
|
12337
|
+
contentGenerated?: string | null | undefined;
|
|
12338
|
+
contentTransformed?: string | null | undefined;
|
|
12064
12339
|
tool_calls?: {
|
|
12065
12340
|
function: {
|
|
12066
12341
|
name: string;
|
|
@@ -12364,6 +12639,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12364
12639
|
}>, "many">>>>;
|
|
12365
12640
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
12366
12641
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
12642
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
12643
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
12367
12644
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12368
12645
|
id: z.ZodString;
|
|
12369
12646
|
type: z.ZodString;
|
|
@@ -12403,6 +12680,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12403
12680
|
delayInSeconds?: number | null | undefined;
|
|
12404
12681
|
ignoreTransform?: boolean | undefined;
|
|
12405
12682
|
mediaUrls?: string[] | null | undefined;
|
|
12683
|
+
contentGenerated?: string | null | undefined;
|
|
12684
|
+
contentTransformed?: string | null | undefined;
|
|
12406
12685
|
tool_calls?: {
|
|
12407
12686
|
function: {
|
|
12408
12687
|
name: string;
|
|
@@ -12422,6 +12701,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12422
12701
|
delayInSeconds?: number | null | undefined;
|
|
12423
12702
|
ignoreTransform?: boolean | undefined;
|
|
12424
12703
|
mediaUrls?: string[] | null | undefined;
|
|
12704
|
+
contentGenerated?: string | null | undefined;
|
|
12705
|
+
contentTransformed?: string | null | undefined;
|
|
12425
12706
|
tool_calls?: {
|
|
12426
12707
|
function: {
|
|
12427
12708
|
name: string;
|
|
@@ -12490,6 +12771,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12490
12771
|
delayInSeconds?: number | null | undefined;
|
|
12491
12772
|
ignoreTransform?: boolean | undefined;
|
|
12492
12773
|
mediaUrls?: string[] | null | undefined;
|
|
12774
|
+
contentGenerated?: string | null | undefined;
|
|
12775
|
+
contentTransformed?: string | null | undefined;
|
|
12493
12776
|
tool_calls?: {
|
|
12494
12777
|
function: {
|
|
12495
12778
|
name: string;
|
|
@@ -12558,6 +12841,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12558
12841
|
delayInSeconds?: number | null | undefined;
|
|
12559
12842
|
ignoreTransform?: boolean | undefined;
|
|
12560
12843
|
mediaUrls?: string[] | null | undefined;
|
|
12844
|
+
contentGenerated?: string | null | undefined;
|
|
12845
|
+
contentTransformed?: string | null | undefined;
|
|
12561
12846
|
tool_calls?: {
|
|
12562
12847
|
function: {
|
|
12563
12848
|
name: string;
|
|
@@ -12733,6 +13018,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12733
13018
|
}>, "many">>>>;
|
|
12734
13019
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
12735
13020
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
13021
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
13022
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
12736
13023
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12737
13024
|
id: z.ZodString;
|
|
12738
13025
|
type: z.ZodString;
|
|
@@ -12772,6 +13059,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12772
13059
|
delayInSeconds?: number | null | undefined;
|
|
12773
13060
|
ignoreTransform?: boolean | undefined;
|
|
12774
13061
|
mediaUrls?: string[] | null | undefined;
|
|
13062
|
+
contentGenerated?: string | null | undefined;
|
|
13063
|
+
contentTransformed?: string | null | undefined;
|
|
12775
13064
|
tool_calls?: {
|
|
12776
13065
|
function: {
|
|
12777
13066
|
name: string;
|
|
@@ -12791,6 +13080,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12791
13080
|
delayInSeconds?: number | null | undefined;
|
|
12792
13081
|
ignoreTransform?: boolean | undefined;
|
|
12793
13082
|
mediaUrls?: string[] | null | undefined;
|
|
13083
|
+
contentGenerated?: string | null | undefined;
|
|
13084
|
+
contentTransformed?: string | null | undefined;
|
|
12794
13085
|
tool_calls?: {
|
|
12795
13086
|
function: {
|
|
12796
13087
|
name: string;
|
|
@@ -12859,6 +13150,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12859
13150
|
delayInSeconds?: number | null | undefined;
|
|
12860
13151
|
ignoreTransform?: boolean | undefined;
|
|
12861
13152
|
mediaUrls?: string[] | null | undefined;
|
|
13153
|
+
contentGenerated?: string | null | undefined;
|
|
13154
|
+
contentTransformed?: string | null | undefined;
|
|
12862
13155
|
tool_calls?: {
|
|
12863
13156
|
function: {
|
|
12864
13157
|
name: string;
|
|
@@ -12927,6 +13220,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12927
13220
|
delayInSeconds?: number | null | undefined;
|
|
12928
13221
|
ignoreTransform?: boolean | undefined;
|
|
12929
13222
|
mediaUrls?: string[] | null | undefined;
|
|
13223
|
+
contentGenerated?: string | null | undefined;
|
|
13224
|
+
contentTransformed?: string | null | undefined;
|
|
12930
13225
|
tool_calls?: {
|
|
12931
13226
|
function: {
|
|
12932
13227
|
name: string;
|
|
@@ -12998,6 +13293,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12998
13293
|
delayInSeconds?: number | null | undefined;
|
|
12999
13294
|
ignoreTransform?: boolean | undefined;
|
|
13000
13295
|
mediaUrls?: string[] | null | undefined;
|
|
13296
|
+
contentGenerated?: string | null | undefined;
|
|
13297
|
+
contentTransformed?: string | null | undefined;
|
|
13001
13298
|
tool_calls?: {
|
|
13002
13299
|
function: {
|
|
13003
13300
|
name: string;
|
|
@@ -13067,6 +13364,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13067
13364
|
delayInSeconds?: number | null | undefined;
|
|
13068
13365
|
ignoreTransform?: boolean | undefined;
|
|
13069
13366
|
mediaUrls?: string[] | null | undefined;
|
|
13367
|
+
contentGenerated?: string | null | undefined;
|
|
13368
|
+
contentTransformed?: string | null | undefined;
|
|
13070
13369
|
tool_calls?: {
|
|
13071
13370
|
function: {
|
|
13072
13371
|
name: string;
|
|
@@ -13138,6 +13437,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13138
13437
|
delayInSeconds?: number | null | undefined;
|
|
13139
13438
|
ignoreTransform?: boolean | undefined;
|
|
13140
13439
|
mediaUrls?: string[] | null | undefined;
|
|
13440
|
+
contentGenerated?: string | null | undefined;
|
|
13441
|
+
contentTransformed?: string | null | undefined;
|
|
13141
13442
|
tool_calls?: {
|
|
13142
13443
|
function: {
|
|
13143
13444
|
name: string;
|
|
@@ -13207,6 +13508,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13207
13508
|
delayInSeconds?: number | null | undefined;
|
|
13208
13509
|
ignoreTransform?: boolean | undefined;
|
|
13209
13510
|
mediaUrls?: string[] | null | undefined;
|
|
13511
|
+
contentGenerated?: string | null | undefined;
|
|
13512
|
+
contentTransformed?: string | null | undefined;
|
|
13210
13513
|
tool_calls?: {
|
|
13211
13514
|
function: {
|
|
13212
13515
|
name: string;
|
|
@@ -13255,6 +13558,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13255
13558
|
}>, "many">>>>;
|
|
13256
13559
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
13257
13560
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
13561
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
13562
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
13258
13563
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13259
13564
|
id: z.ZodString;
|
|
13260
13565
|
type: z.ZodString;
|
|
@@ -13294,6 +13599,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13294
13599
|
delayInSeconds?: number | null | undefined;
|
|
13295
13600
|
ignoreTransform?: boolean | undefined;
|
|
13296
13601
|
mediaUrls?: string[] | null | undefined;
|
|
13602
|
+
contentGenerated?: string | null | undefined;
|
|
13603
|
+
contentTransformed?: string | null | undefined;
|
|
13297
13604
|
tool_calls?: {
|
|
13298
13605
|
function: {
|
|
13299
13606
|
name: string;
|
|
@@ -13313,6 +13620,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13313
13620
|
delayInSeconds?: number | null | undefined;
|
|
13314
13621
|
ignoreTransform?: boolean | undefined;
|
|
13315
13622
|
mediaUrls?: string[] | null | undefined;
|
|
13623
|
+
contentGenerated?: string | null | undefined;
|
|
13624
|
+
contentTransformed?: string | null | undefined;
|
|
13316
13625
|
tool_calls?: {
|
|
13317
13626
|
function: {
|
|
13318
13627
|
name: string;
|
|
@@ -13467,6 +13776,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13467
13776
|
delayInSeconds?: number | null | undefined;
|
|
13468
13777
|
ignoreTransform?: boolean | undefined;
|
|
13469
13778
|
mediaUrls?: string[] | null | undefined;
|
|
13779
|
+
contentGenerated?: string | null | undefined;
|
|
13780
|
+
contentTransformed?: string | null | undefined;
|
|
13470
13781
|
tool_calls?: {
|
|
13471
13782
|
function: {
|
|
13472
13783
|
name: string;
|
|
@@ -13536,6 +13847,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13536
13847
|
delayInSeconds?: number | null | undefined;
|
|
13537
13848
|
ignoreTransform?: boolean | undefined;
|
|
13538
13849
|
mediaUrls?: string[] | null | undefined;
|
|
13850
|
+
contentGenerated?: string | null | undefined;
|
|
13851
|
+
contentTransformed?: string | null | undefined;
|
|
13539
13852
|
tool_calls?: {
|
|
13540
13853
|
function: {
|
|
13541
13854
|
name: string;
|
|
@@ -13634,6 +13947,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13634
13947
|
delayInSeconds?: number | null | undefined;
|
|
13635
13948
|
ignoreTransform?: boolean | undefined;
|
|
13636
13949
|
mediaUrls?: string[] | null | undefined;
|
|
13950
|
+
contentGenerated?: string | null | undefined;
|
|
13951
|
+
contentTransformed?: string | null | undefined;
|
|
13637
13952
|
tool_calls?: {
|
|
13638
13953
|
function: {
|
|
13639
13954
|
name: string;
|
|
@@ -13747,6 +14062,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13747
14062
|
delayInSeconds?: number | null | undefined;
|
|
13748
14063
|
ignoreTransform?: boolean | undefined;
|
|
13749
14064
|
mediaUrls?: string[] | null | undefined;
|
|
14065
|
+
contentGenerated?: string | null | undefined;
|
|
14066
|
+
contentTransformed?: string | null | undefined;
|
|
13750
14067
|
tool_calls?: {
|
|
13751
14068
|
function: {
|
|
13752
14069
|
name: string;
|
|
@@ -13816,6 +14133,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13816
14133
|
delayInSeconds?: number | null | undefined;
|
|
13817
14134
|
ignoreTransform?: boolean | undefined;
|
|
13818
14135
|
mediaUrls?: string[] | null | undefined;
|
|
14136
|
+
contentGenerated?: string | null | undefined;
|
|
14137
|
+
contentTransformed?: string | null | undefined;
|
|
13819
14138
|
tool_calls?: {
|
|
13820
14139
|
function: {
|
|
13821
14140
|
name: string;
|
|
@@ -13843,6 +14162,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13843
14162
|
delayInSeconds?: number | null | undefined;
|
|
13844
14163
|
ignoreTransform?: boolean | undefined;
|
|
13845
14164
|
mediaUrls?: string[] | null | undefined;
|
|
14165
|
+
contentGenerated?: string | null | undefined;
|
|
14166
|
+
contentTransformed?: string | null | undefined;
|
|
13846
14167
|
tool_calls?: {
|
|
13847
14168
|
function: {
|
|
13848
14169
|
name: string;
|
|
@@ -13923,6 +14244,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13923
14244
|
delayInSeconds?: number | null | undefined;
|
|
13924
14245
|
ignoreTransform?: boolean | undefined;
|
|
13925
14246
|
mediaUrls?: string[] | null | undefined;
|
|
14247
|
+
contentGenerated?: string | null | undefined;
|
|
14248
|
+
contentTransformed?: string | null | undefined;
|
|
13926
14249
|
tool_calls?: {
|
|
13927
14250
|
function: {
|
|
13928
14251
|
name: string;
|
|
@@ -14036,6 +14359,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14036
14359
|
delayInSeconds?: number | null | undefined;
|
|
14037
14360
|
ignoreTransform?: boolean | undefined;
|
|
14038
14361
|
mediaUrls?: string[] | null | undefined;
|
|
14362
|
+
contentGenerated?: string | null | undefined;
|
|
14363
|
+
contentTransformed?: string | null | undefined;
|
|
14039
14364
|
tool_calls?: {
|
|
14040
14365
|
function: {
|
|
14041
14366
|
name: string;
|
|
@@ -14105,6 +14430,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14105
14430
|
delayInSeconds?: number | null | undefined;
|
|
14106
14431
|
ignoreTransform?: boolean | undefined;
|
|
14107
14432
|
mediaUrls?: string[] | null | undefined;
|
|
14433
|
+
contentGenerated?: string | null | undefined;
|
|
14434
|
+
contentTransformed?: string | null | undefined;
|
|
14108
14435
|
tool_calls?: {
|
|
14109
14436
|
function: {
|
|
14110
14437
|
name: string;
|
|
@@ -14132,6 +14459,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14132
14459
|
delayInSeconds?: number | null | undefined;
|
|
14133
14460
|
ignoreTransform?: boolean | undefined;
|
|
14134
14461
|
mediaUrls?: string[] | null | undefined;
|
|
14462
|
+
contentGenerated?: string | null | undefined;
|
|
14463
|
+
contentTransformed?: string | null | undefined;
|
|
14135
14464
|
tool_calls?: {
|
|
14136
14465
|
function: {
|
|
14137
14466
|
name: string;
|
|
@@ -14235,6 +14564,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14235
14564
|
}>, "many">>>;
|
|
14236
14565
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
14237
14566
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
14567
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
14568
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
14238
14569
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14239
14570
|
id: z.ZodString;
|
|
14240
14571
|
type: z.ZodString;
|
|
@@ -14284,6 +14615,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14284
14615
|
}[] | null | undefined;
|
|
14285
14616
|
ignoreTransform?: boolean | undefined;
|
|
14286
14617
|
mediaUrls?: string[] | null | undefined;
|
|
14618
|
+
contentGenerated?: string | null | undefined;
|
|
14619
|
+
contentTransformed?: string | null | undefined;
|
|
14287
14620
|
tool_calls?: {
|
|
14288
14621
|
function: {
|
|
14289
14622
|
name: string;
|
|
@@ -14313,6 +14646,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14313
14646
|
}[] | null | undefined;
|
|
14314
14647
|
ignoreTransform?: boolean | undefined;
|
|
14315
14648
|
mediaUrls?: string[] | null | undefined;
|
|
14649
|
+
contentGenerated?: string | null | undefined;
|
|
14650
|
+
contentTransformed?: string | null | undefined;
|
|
14316
14651
|
tool_calls?: {
|
|
14317
14652
|
function: {
|
|
14318
14653
|
name: string;
|
|
@@ -14486,6 +14821,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14486
14821
|
}>, "many">>>;
|
|
14487
14822
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
14488
14823
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
14824
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
14825
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
14489
14826
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14490
14827
|
id: z.ZodString;
|
|
14491
14828
|
type: z.ZodString;
|
|
@@ -14535,6 +14872,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14535
14872
|
}[] | null | undefined;
|
|
14536
14873
|
ignoreTransform?: boolean | undefined;
|
|
14537
14874
|
mediaUrls?: string[] | null | undefined;
|
|
14875
|
+
contentGenerated?: string | null | undefined;
|
|
14876
|
+
contentTransformed?: string | null | undefined;
|
|
14538
14877
|
tool_calls?: {
|
|
14539
14878
|
function: {
|
|
14540
14879
|
name: string;
|
|
@@ -14564,6 +14903,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14564
14903
|
}[] | null | undefined;
|
|
14565
14904
|
ignoreTransform?: boolean | undefined;
|
|
14566
14905
|
mediaUrls?: string[] | null | undefined;
|
|
14906
|
+
contentGenerated?: string | null | undefined;
|
|
14907
|
+
contentTransformed?: string | null | undefined;
|
|
14567
14908
|
tool_calls?: {
|
|
14568
14909
|
function: {
|
|
14569
14910
|
name: string;
|
|
@@ -14635,6 +14976,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14635
14976
|
}>, "many">>>;
|
|
14636
14977
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
14637
14978
|
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
14979
|
+
contentGenerated: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
14980
|
+
contentTransformed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
14638
14981
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14639
14982
|
id: z.ZodString;
|
|
14640
14983
|
type: z.ZodString;
|
|
@@ -14684,6 +15027,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14684
15027
|
}[] | null | undefined;
|
|
14685
15028
|
ignoreTransform?: boolean | undefined;
|
|
14686
15029
|
mediaUrls?: string[] | null | undefined;
|
|
15030
|
+
contentGenerated?: string | null | undefined;
|
|
15031
|
+
contentTransformed?: string | null | undefined;
|
|
14687
15032
|
tool_calls?: {
|
|
14688
15033
|
function: {
|
|
14689
15034
|
name: string;
|
|
@@ -14713,6 +15058,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14713
15058
|
}[] | null | undefined;
|
|
14714
15059
|
ignoreTransform?: boolean | undefined;
|
|
14715
15060
|
mediaUrls?: string[] | null | undefined;
|
|
15061
|
+
contentGenerated?: string | null | undefined;
|
|
15062
|
+
contentTransformed?: string | null | undefined;
|
|
14716
15063
|
tool_calls?: {
|
|
14717
15064
|
function: {
|
|
14718
15065
|
name: string;
|
|
@@ -14875,6 +15222,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14875
15222
|
}[] | null | undefined;
|
|
14876
15223
|
ignoreTransform?: boolean | undefined;
|
|
14877
15224
|
mediaUrls?: string[] | null | undefined;
|
|
15225
|
+
contentGenerated?: string | null | undefined;
|
|
15226
|
+
contentTransformed?: string | null | undefined;
|
|
14878
15227
|
tool_calls?: {
|
|
14879
15228
|
function: {
|
|
14880
15229
|
name: string;
|
|
@@ -14950,6 +15299,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14950
15299
|
}[] | null | undefined;
|
|
14951
15300
|
ignoreTransform?: boolean | undefined;
|
|
14952
15301
|
mediaUrls?: string[] | null | undefined;
|
|
15302
|
+
contentGenerated?: string | null | undefined;
|
|
15303
|
+
contentTransformed?: string | null | undefined;
|
|
14953
15304
|
tool_calls?: {
|
|
14954
15305
|
function: {
|
|
14955
15306
|
name: string;
|
|
@@ -15016,6 +15367,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15016
15367
|
}[] | null | undefined;
|
|
15017
15368
|
ignoreTransform?: boolean | undefined;
|
|
15018
15369
|
mediaUrls?: string[] | null | undefined;
|
|
15370
|
+
contentGenerated?: string | null | undefined;
|
|
15371
|
+
contentTransformed?: string | null | undefined;
|
|
15019
15372
|
tool_calls?: {
|
|
15020
15373
|
function: {
|
|
15021
15374
|
name: string;
|
|
@@ -15091,6 +15444,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15091
15444
|
}[] | null | undefined;
|
|
15092
15445
|
ignoreTransform?: boolean | undefined;
|
|
15093
15446
|
mediaUrls?: string[] | null | undefined;
|
|
15447
|
+
contentGenerated?: string | null | undefined;
|
|
15448
|
+
contentTransformed?: string | null | undefined;
|
|
15094
15449
|
tool_calls?: {
|
|
15095
15450
|
function: {
|
|
15096
15451
|
name: string;
|
|
@@ -15169,6 +15524,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15169
15524
|
}>, "many">>>>;
|
|
15170
15525
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
15171
15526
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
15527
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
15528
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
15172
15529
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15173
15530
|
id: z.ZodString;
|
|
15174
15531
|
type: z.ZodString;
|
|
@@ -15208,6 +15565,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15208
15565
|
delayInSeconds?: number | null | undefined;
|
|
15209
15566
|
ignoreTransform?: boolean | undefined;
|
|
15210
15567
|
mediaUrls?: string[] | null | undefined;
|
|
15568
|
+
contentGenerated?: string | null | undefined;
|
|
15569
|
+
contentTransformed?: string | null | undefined;
|
|
15211
15570
|
tool_calls?: {
|
|
15212
15571
|
function: {
|
|
15213
15572
|
name: string;
|
|
@@ -15227,6 +15586,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15227
15586
|
delayInSeconds?: number | null | undefined;
|
|
15228
15587
|
ignoreTransform?: boolean | undefined;
|
|
15229
15588
|
mediaUrls?: string[] | null | undefined;
|
|
15589
|
+
contentGenerated?: string | null | undefined;
|
|
15590
|
+
contentTransformed?: string | null | undefined;
|
|
15230
15591
|
tool_calls?: {
|
|
15231
15592
|
function: {
|
|
15232
15593
|
name: string;
|
|
@@ -15530,6 +15891,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15530
15891
|
}>, "many">>>>;
|
|
15531
15892
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
15532
15893
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
15894
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
15895
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
15533
15896
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15534
15897
|
id: z.ZodString;
|
|
15535
15898
|
type: z.ZodString;
|
|
@@ -15569,6 +15932,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15569
15932
|
delayInSeconds?: number | null | undefined;
|
|
15570
15933
|
ignoreTransform?: boolean | undefined;
|
|
15571
15934
|
mediaUrls?: string[] | null | undefined;
|
|
15935
|
+
contentGenerated?: string | null | undefined;
|
|
15936
|
+
contentTransformed?: string | null | undefined;
|
|
15572
15937
|
tool_calls?: {
|
|
15573
15938
|
function: {
|
|
15574
15939
|
name: string;
|
|
@@ -15588,6 +15953,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15588
15953
|
delayInSeconds?: number | null | undefined;
|
|
15589
15954
|
ignoreTransform?: boolean | undefined;
|
|
15590
15955
|
mediaUrls?: string[] | null | undefined;
|
|
15956
|
+
contentGenerated?: string | null | undefined;
|
|
15957
|
+
contentTransformed?: string | null | undefined;
|
|
15591
15958
|
tool_calls?: {
|
|
15592
15959
|
function: {
|
|
15593
15960
|
name: string;
|
|
@@ -15656,6 +16023,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15656
16023
|
delayInSeconds?: number | null | undefined;
|
|
15657
16024
|
ignoreTransform?: boolean | undefined;
|
|
15658
16025
|
mediaUrls?: string[] | null | undefined;
|
|
16026
|
+
contentGenerated?: string | null | undefined;
|
|
16027
|
+
contentTransformed?: string | null | undefined;
|
|
15659
16028
|
tool_calls?: {
|
|
15660
16029
|
function: {
|
|
15661
16030
|
name: string;
|
|
@@ -15724,6 +16093,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15724
16093
|
delayInSeconds?: number | null | undefined;
|
|
15725
16094
|
ignoreTransform?: boolean | undefined;
|
|
15726
16095
|
mediaUrls?: string[] | null | undefined;
|
|
16096
|
+
contentGenerated?: string | null | undefined;
|
|
16097
|
+
contentTransformed?: string | null | undefined;
|
|
15727
16098
|
tool_calls?: {
|
|
15728
16099
|
function: {
|
|
15729
16100
|
name: string;
|
|
@@ -15899,6 +16270,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15899
16270
|
}>, "many">>>>;
|
|
15900
16271
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
15901
16272
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
16273
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
16274
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
15902
16275
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15903
16276
|
id: z.ZodString;
|
|
15904
16277
|
type: z.ZodString;
|
|
@@ -15938,6 +16311,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15938
16311
|
delayInSeconds?: number | null | undefined;
|
|
15939
16312
|
ignoreTransform?: boolean | undefined;
|
|
15940
16313
|
mediaUrls?: string[] | null | undefined;
|
|
16314
|
+
contentGenerated?: string | null | undefined;
|
|
16315
|
+
contentTransformed?: string | null | undefined;
|
|
15941
16316
|
tool_calls?: {
|
|
15942
16317
|
function: {
|
|
15943
16318
|
name: string;
|
|
@@ -15957,6 +16332,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15957
16332
|
delayInSeconds?: number | null | undefined;
|
|
15958
16333
|
ignoreTransform?: boolean | undefined;
|
|
15959
16334
|
mediaUrls?: string[] | null | undefined;
|
|
16335
|
+
contentGenerated?: string | null | undefined;
|
|
16336
|
+
contentTransformed?: string | null | undefined;
|
|
15960
16337
|
tool_calls?: {
|
|
15961
16338
|
function: {
|
|
15962
16339
|
name: string;
|
|
@@ -16025,6 +16402,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16025
16402
|
delayInSeconds?: number | null | undefined;
|
|
16026
16403
|
ignoreTransform?: boolean | undefined;
|
|
16027
16404
|
mediaUrls?: string[] | null | undefined;
|
|
16405
|
+
contentGenerated?: string | null | undefined;
|
|
16406
|
+
contentTransformed?: string | null | undefined;
|
|
16028
16407
|
tool_calls?: {
|
|
16029
16408
|
function: {
|
|
16030
16409
|
name: string;
|
|
@@ -16093,6 +16472,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16093
16472
|
delayInSeconds?: number | null | undefined;
|
|
16094
16473
|
ignoreTransform?: boolean | undefined;
|
|
16095
16474
|
mediaUrls?: string[] | null | undefined;
|
|
16475
|
+
contentGenerated?: string | null | undefined;
|
|
16476
|
+
contentTransformed?: string | null | undefined;
|
|
16096
16477
|
tool_calls?: {
|
|
16097
16478
|
function: {
|
|
16098
16479
|
name: string;
|
|
@@ -16164,6 +16545,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16164
16545
|
delayInSeconds?: number | null | undefined;
|
|
16165
16546
|
ignoreTransform?: boolean | undefined;
|
|
16166
16547
|
mediaUrls?: string[] | null | undefined;
|
|
16548
|
+
contentGenerated?: string | null | undefined;
|
|
16549
|
+
contentTransformed?: string | null | undefined;
|
|
16167
16550
|
tool_calls?: {
|
|
16168
16551
|
function: {
|
|
16169
16552
|
name: string;
|
|
@@ -16233,6 +16616,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16233
16616
|
delayInSeconds?: number | null | undefined;
|
|
16234
16617
|
ignoreTransform?: boolean | undefined;
|
|
16235
16618
|
mediaUrls?: string[] | null | undefined;
|
|
16619
|
+
contentGenerated?: string | null | undefined;
|
|
16620
|
+
contentTransformed?: string | null | undefined;
|
|
16236
16621
|
tool_calls?: {
|
|
16237
16622
|
function: {
|
|
16238
16623
|
name: string;
|
|
@@ -16304,6 +16689,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16304
16689
|
delayInSeconds?: number | null | undefined;
|
|
16305
16690
|
ignoreTransform?: boolean | undefined;
|
|
16306
16691
|
mediaUrls?: string[] | null | undefined;
|
|
16692
|
+
contentGenerated?: string | null | undefined;
|
|
16693
|
+
contentTransformed?: string | null | undefined;
|
|
16307
16694
|
tool_calls?: {
|
|
16308
16695
|
function: {
|
|
16309
16696
|
name: string;
|
|
@@ -16373,6 +16760,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16373
16760
|
delayInSeconds?: number | null | undefined;
|
|
16374
16761
|
ignoreTransform?: boolean | undefined;
|
|
16375
16762
|
mediaUrls?: string[] | null | undefined;
|
|
16763
|
+
contentGenerated?: string | null | undefined;
|
|
16764
|
+
contentTransformed?: string | null | undefined;
|
|
16376
16765
|
tool_calls?: {
|
|
16377
16766
|
function: {
|
|
16378
16767
|
name: string;
|
|
@@ -16421,6 +16810,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16421
16810
|
}>, "many">>>>;
|
|
16422
16811
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
16423
16812
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
16813
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
16814
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
16424
16815
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16425
16816
|
id: z.ZodString;
|
|
16426
16817
|
type: z.ZodString;
|
|
@@ -16460,6 +16851,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16460
16851
|
delayInSeconds?: number | null | undefined;
|
|
16461
16852
|
ignoreTransform?: boolean | undefined;
|
|
16462
16853
|
mediaUrls?: string[] | null | undefined;
|
|
16854
|
+
contentGenerated?: string | null | undefined;
|
|
16855
|
+
contentTransformed?: string | null | undefined;
|
|
16463
16856
|
tool_calls?: {
|
|
16464
16857
|
function: {
|
|
16465
16858
|
name: string;
|
|
@@ -16479,6 +16872,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16479
16872
|
delayInSeconds?: number | null | undefined;
|
|
16480
16873
|
ignoreTransform?: boolean | undefined;
|
|
16481
16874
|
mediaUrls?: string[] | null | undefined;
|
|
16875
|
+
contentGenerated?: string | null | undefined;
|
|
16876
|
+
contentTransformed?: string | null | undefined;
|
|
16482
16877
|
tool_calls?: {
|
|
16483
16878
|
function: {
|
|
16484
16879
|
name: string;
|
|
@@ -16633,6 +17028,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16633
17028
|
delayInSeconds?: number | null | undefined;
|
|
16634
17029
|
ignoreTransform?: boolean | undefined;
|
|
16635
17030
|
mediaUrls?: string[] | null | undefined;
|
|
17031
|
+
contentGenerated?: string | null | undefined;
|
|
17032
|
+
contentTransformed?: string | null | undefined;
|
|
16636
17033
|
tool_calls?: {
|
|
16637
17034
|
function: {
|
|
16638
17035
|
name: string;
|
|
@@ -16702,6 +17099,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16702
17099
|
delayInSeconds?: number | null | undefined;
|
|
16703
17100
|
ignoreTransform?: boolean | undefined;
|
|
16704
17101
|
mediaUrls?: string[] | null | undefined;
|
|
17102
|
+
contentGenerated?: string | null | undefined;
|
|
17103
|
+
contentTransformed?: string | null | undefined;
|
|
16705
17104
|
tool_calls?: {
|
|
16706
17105
|
function: {
|
|
16707
17106
|
name: string;
|
|
@@ -16800,6 +17199,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16800
17199
|
delayInSeconds?: number | null | undefined;
|
|
16801
17200
|
ignoreTransform?: boolean | undefined;
|
|
16802
17201
|
mediaUrls?: string[] | null | undefined;
|
|
17202
|
+
contentGenerated?: string | null | undefined;
|
|
17203
|
+
contentTransformed?: string | null | undefined;
|
|
16803
17204
|
tool_calls?: {
|
|
16804
17205
|
function: {
|
|
16805
17206
|
name: string;
|
|
@@ -16913,6 +17314,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16913
17314
|
delayInSeconds?: number | null | undefined;
|
|
16914
17315
|
ignoreTransform?: boolean | undefined;
|
|
16915
17316
|
mediaUrls?: string[] | null | undefined;
|
|
17317
|
+
contentGenerated?: string | null | undefined;
|
|
17318
|
+
contentTransformed?: string | null | undefined;
|
|
16916
17319
|
tool_calls?: {
|
|
16917
17320
|
function: {
|
|
16918
17321
|
name: string;
|
|
@@ -16982,6 +17385,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16982
17385
|
delayInSeconds?: number | null | undefined;
|
|
16983
17386
|
ignoreTransform?: boolean | undefined;
|
|
16984
17387
|
mediaUrls?: string[] | null | undefined;
|
|
17388
|
+
contentGenerated?: string | null | undefined;
|
|
17389
|
+
contentTransformed?: string | null | undefined;
|
|
16985
17390
|
tool_calls?: {
|
|
16986
17391
|
function: {
|
|
16987
17392
|
name: string;
|
|
@@ -17009,6 +17414,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17009
17414
|
delayInSeconds?: number | null | undefined;
|
|
17010
17415
|
ignoreTransform?: boolean | undefined;
|
|
17011
17416
|
mediaUrls?: string[] | null | undefined;
|
|
17417
|
+
contentGenerated?: string | null | undefined;
|
|
17418
|
+
contentTransformed?: string | null | undefined;
|
|
17012
17419
|
tool_calls?: {
|
|
17013
17420
|
function: {
|
|
17014
17421
|
name: string;
|
|
@@ -17089,6 +17496,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17089
17496
|
delayInSeconds?: number | null | undefined;
|
|
17090
17497
|
ignoreTransform?: boolean | undefined;
|
|
17091
17498
|
mediaUrls?: string[] | null | undefined;
|
|
17499
|
+
contentGenerated?: string | null | undefined;
|
|
17500
|
+
contentTransformed?: string | null | undefined;
|
|
17092
17501
|
tool_calls?: {
|
|
17093
17502
|
function: {
|
|
17094
17503
|
name: string;
|
|
@@ -17202,6 +17611,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17202
17611
|
delayInSeconds?: number | null | undefined;
|
|
17203
17612
|
ignoreTransform?: boolean | undefined;
|
|
17204
17613
|
mediaUrls?: string[] | null | undefined;
|
|
17614
|
+
contentGenerated?: string | null | undefined;
|
|
17615
|
+
contentTransformed?: string | null | undefined;
|
|
17205
17616
|
tool_calls?: {
|
|
17206
17617
|
function: {
|
|
17207
17618
|
name: string;
|
|
@@ -17271,6 +17682,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17271
17682
|
delayInSeconds?: number | null | undefined;
|
|
17272
17683
|
ignoreTransform?: boolean | undefined;
|
|
17273
17684
|
mediaUrls?: string[] | null | undefined;
|
|
17685
|
+
contentGenerated?: string | null | undefined;
|
|
17686
|
+
contentTransformed?: string | null | undefined;
|
|
17274
17687
|
tool_calls?: {
|
|
17275
17688
|
function: {
|
|
17276
17689
|
name: string;
|
|
@@ -17298,6 +17711,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17298
17711
|
delayInSeconds?: number | null | undefined;
|
|
17299
17712
|
ignoreTransform?: boolean | undefined;
|
|
17300
17713
|
mediaUrls?: string[] | null | undefined;
|
|
17714
|
+
contentGenerated?: string | null | undefined;
|
|
17715
|
+
contentTransformed?: string | null | undefined;
|
|
17301
17716
|
tool_calls?: {
|
|
17302
17717
|
function: {
|
|
17303
17718
|
name: string;
|
|
@@ -17400,6 +17815,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17400
17815
|
}>, "many">>>>;
|
|
17401
17816
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
17402
17817
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
17818
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
17819
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
17403
17820
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17404
17821
|
id: z.ZodString;
|
|
17405
17822
|
type: z.ZodString;
|
|
@@ -17439,6 +17856,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17439
17856
|
delayInSeconds?: number | null | undefined;
|
|
17440
17857
|
ignoreTransform?: boolean | undefined;
|
|
17441
17858
|
mediaUrls?: string[] | null | undefined;
|
|
17859
|
+
contentGenerated?: string | null | undefined;
|
|
17860
|
+
contentTransformed?: string | null | undefined;
|
|
17442
17861
|
tool_calls?: {
|
|
17443
17862
|
function: {
|
|
17444
17863
|
name: string;
|
|
@@ -17458,6 +17877,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17458
17877
|
delayInSeconds?: number | null | undefined;
|
|
17459
17878
|
ignoreTransform?: boolean | undefined;
|
|
17460
17879
|
mediaUrls?: string[] | null | undefined;
|
|
17880
|
+
contentGenerated?: string | null | undefined;
|
|
17881
|
+
contentTransformed?: string | null | undefined;
|
|
17461
17882
|
tool_calls?: {
|
|
17462
17883
|
function: {
|
|
17463
17884
|
name: string;
|
|
@@ -17761,6 +18182,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17761
18182
|
}>, "many">>>>;
|
|
17762
18183
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
17763
18184
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
18185
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
18186
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
17764
18187
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17765
18188
|
id: z.ZodString;
|
|
17766
18189
|
type: z.ZodString;
|
|
@@ -17800,6 +18223,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17800
18223
|
delayInSeconds?: number | null | undefined;
|
|
17801
18224
|
ignoreTransform?: boolean | undefined;
|
|
17802
18225
|
mediaUrls?: string[] | null | undefined;
|
|
18226
|
+
contentGenerated?: string | null | undefined;
|
|
18227
|
+
contentTransformed?: string | null | undefined;
|
|
17803
18228
|
tool_calls?: {
|
|
17804
18229
|
function: {
|
|
17805
18230
|
name: string;
|
|
@@ -17819,6 +18244,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17819
18244
|
delayInSeconds?: number | null | undefined;
|
|
17820
18245
|
ignoreTransform?: boolean | undefined;
|
|
17821
18246
|
mediaUrls?: string[] | null | undefined;
|
|
18247
|
+
contentGenerated?: string | null | undefined;
|
|
18248
|
+
contentTransformed?: string | null | undefined;
|
|
17822
18249
|
tool_calls?: {
|
|
17823
18250
|
function: {
|
|
17824
18251
|
name: string;
|
|
@@ -17887,6 +18314,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17887
18314
|
delayInSeconds?: number | null | undefined;
|
|
17888
18315
|
ignoreTransform?: boolean | undefined;
|
|
17889
18316
|
mediaUrls?: string[] | null | undefined;
|
|
18317
|
+
contentGenerated?: string | null | undefined;
|
|
18318
|
+
contentTransformed?: string | null | undefined;
|
|
17890
18319
|
tool_calls?: {
|
|
17891
18320
|
function: {
|
|
17892
18321
|
name: string;
|
|
@@ -17955,6 +18384,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17955
18384
|
delayInSeconds?: number | null | undefined;
|
|
17956
18385
|
ignoreTransform?: boolean | undefined;
|
|
17957
18386
|
mediaUrls?: string[] | null | undefined;
|
|
18387
|
+
contentGenerated?: string | null | undefined;
|
|
18388
|
+
contentTransformed?: string | null | undefined;
|
|
17958
18389
|
tool_calls?: {
|
|
17959
18390
|
function: {
|
|
17960
18391
|
name: string;
|
|
@@ -18130,6 +18561,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18130
18561
|
}>, "many">>>>;
|
|
18131
18562
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18132
18563
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
18564
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
18565
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
18133
18566
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18134
18567
|
id: z.ZodString;
|
|
18135
18568
|
type: z.ZodString;
|
|
@@ -18169,6 +18602,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18169
18602
|
delayInSeconds?: number | null | undefined;
|
|
18170
18603
|
ignoreTransform?: boolean | undefined;
|
|
18171
18604
|
mediaUrls?: string[] | null | undefined;
|
|
18605
|
+
contentGenerated?: string | null | undefined;
|
|
18606
|
+
contentTransformed?: string | null | undefined;
|
|
18172
18607
|
tool_calls?: {
|
|
18173
18608
|
function: {
|
|
18174
18609
|
name: string;
|
|
@@ -18188,6 +18623,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18188
18623
|
delayInSeconds?: number | null | undefined;
|
|
18189
18624
|
ignoreTransform?: boolean | undefined;
|
|
18190
18625
|
mediaUrls?: string[] | null | undefined;
|
|
18626
|
+
contentGenerated?: string | null | undefined;
|
|
18627
|
+
contentTransformed?: string | null | undefined;
|
|
18191
18628
|
tool_calls?: {
|
|
18192
18629
|
function: {
|
|
18193
18630
|
name: string;
|
|
@@ -18256,6 +18693,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18256
18693
|
delayInSeconds?: number | null | undefined;
|
|
18257
18694
|
ignoreTransform?: boolean | undefined;
|
|
18258
18695
|
mediaUrls?: string[] | null | undefined;
|
|
18696
|
+
contentGenerated?: string | null | undefined;
|
|
18697
|
+
contentTransformed?: string | null | undefined;
|
|
18259
18698
|
tool_calls?: {
|
|
18260
18699
|
function: {
|
|
18261
18700
|
name: string;
|
|
@@ -18324,6 +18763,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18324
18763
|
delayInSeconds?: number | null | undefined;
|
|
18325
18764
|
ignoreTransform?: boolean | undefined;
|
|
18326
18765
|
mediaUrls?: string[] | null | undefined;
|
|
18766
|
+
contentGenerated?: string | null | undefined;
|
|
18767
|
+
contentTransformed?: string | null | undefined;
|
|
18327
18768
|
tool_calls?: {
|
|
18328
18769
|
function: {
|
|
18329
18770
|
name: string;
|
|
@@ -18395,6 +18836,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18395
18836
|
delayInSeconds?: number | null | undefined;
|
|
18396
18837
|
ignoreTransform?: boolean | undefined;
|
|
18397
18838
|
mediaUrls?: string[] | null | undefined;
|
|
18839
|
+
contentGenerated?: string | null | undefined;
|
|
18840
|
+
contentTransformed?: string | null | undefined;
|
|
18398
18841
|
tool_calls?: {
|
|
18399
18842
|
function: {
|
|
18400
18843
|
name: string;
|
|
@@ -18464,6 +18907,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18464
18907
|
delayInSeconds?: number | null | undefined;
|
|
18465
18908
|
ignoreTransform?: boolean | undefined;
|
|
18466
18909
|
mediaUrls?: string[] | null | undefined;
|
|
18910
|
+
contentGenerated?: string | null | undefined;
|
|
18911
|
+
contentTransformed?: string | null | undefined;
|
|
18467
18912
|
tool_calls?: {
|
|
18468
18913
|
function: {
|
|
18469
18914
|
name: string;
|
|
@@ -18535,6 +18980,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18535
18980
|
delayInSeconds?: number | null | undefined;
|
|
18536
18981
|
ignoreTransform?: boolean | undefined;
|
|
18537
18982
|
mediaUrls?: string[] | null | undefined;
|
|
18983
|
+
contentGenerated?: string | null | undefined;
|
|
18984
|
+
contentTransformed?: string | null | undefined;
|
|
18538
18985
|
tool_calls?: {
|
|
18539
18986
|
function: {
|
|
18540
18987
|
name: string;
|
|
@@ -18604,6 +19051,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18604
19051
|
delayInSeconds?: number | null | undefined;
|
|
18605
19052
|
ignoreTransform?: boolean | undefined;
|
|
18606
19053
|
mediaUrls?: string[] | null | undefined;
|
|
19054
|
+
contentGenerated?: string | null | undefined;
|
|
19055
|
+
contentTransformed?: string | null | undefined;
|
|
18607
19056
|
tool_calls?: {
|
|
18608
19057
|
function: {
|
|
18609
19058
|
name: string;
|
|
@@ -18652,6 +19101,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18652
19101
|
}>, "many">>>>;
|
|
18653
19102
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18654
19103
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
19104
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
19105
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
18655
19106
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18656
19107
|
id: z.ZodString;
|
|
18657
19108
|
type: z.ZodString;
|
|
@@ -18691,6 +19142,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18691
19142
|
delayInSeconds?: number | null | undefined;
|
|
18692
19143
|
ignoreTransform?: boolean | undefined;
|
|
18693
19144
|
mediaUrls?: string[] | null | undefined;
|
|
19145
|
+
contentGenerated?: string | null | undefined;
|
|
19146
|
+
contentTransformed?: string | null | undefined;
|
|
18694
19147
|
tool_calls?: {
|
|
18695
19148
|
function: {
|
|
18696
19149
|
name: string;
|
|
@@ -18710,6 +19163,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18710
19163
|
delayInSeconds?: number | null | undefined;
|
|
18711
19164
|
ignoreTransform?: boolean | undefined;
|
|
18712
19165
|
mediaUrls?: string[] | null | undefined;
|
|
19166
|
+
contentGenerated?: string | null | undefined;
|
|
19167
|
+
contentTransformed?: string | null | undefined;
|
|
18713
19168
|
tool_calls?: {
|
|
18714
19169
|
function: {
|
|
18715
19170
|
name: string;
|
|
@@ -18864,6 +19319,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18864
19319
|
delayInSeconds?: number | null | undefined;
|
|
18865
19320
|
ignoreTransform?: boolean | undefined;
|
|
18866
19321
|
mediaUrls?: string[] | null | undefined;
|
|
19322
|
+
contentGenerated?: string | null | undefined;
|
|
19323
|
+
contentTransformed?: string | null | undefined;
|
|
18867
19324
|
tool_calls?: {
|
|
18868
19325
|
function: {
|
|
18869
19326
|
name: string;
|
|
@@ -18933,6 +19390,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18933
19390
|
delayInSeconds?: number | null | undefined;
|
|
18934
19391
|
ignoreTransform?: boolean | undefined;
|
|
18935
19392
|
mediaUrls?: string[] | null | undefined;
|
|
19393
|
+
contentGenerated?: string | null | undefined;
|
|
19394
|
+
contentTransformed?: string | null | undefined;
|
|
18936
19395
|
tool_calls?: {
|
|
18937
19396
|
function: {
|
|
18938
19397
|
name: string;
|
|
@@ -19031,6 +19490,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19031
19490
|
delayInSeconds?: number | null | undefined;
|
|
19032
19491
|
ignoreTransform?: boolean | undefined;
|
|
19033
19492
|
mediaUrls?: string[] | null | undefined;
|
|
19493
|
+
contentGenerated?: string | null | undefined;
|
|
19494
|
+
contentTransformed?: string | null | undefined;
|
|
19034
19495
|
tool_calls?: {
|
|
19035
19496
|
function: {
|
|
19036
19497
|
name: string;
|
|
@@ -19144,6 +19605,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19144
19605
|
delayInSeconds?: number | null | undefined;
|
|
19145
19606
|
ignoreTransform?: boolean | undefined;
|
|
19146
19607
|
mediaUrls?: string[] | null | undefined;
|
|
19608
|
+
contentGenerated?: string | null | undefined;
|
|
19609
|
+
contentTransformed?: string | null | undefined;
|
|
19147
19610
|
tool_calls?: {
|
|
19148
19611
|
function: {
|
|
19149
19612
|
name: string;
|
|
@@ -19213,6 +19676,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19213
19676
|
delayInSeconds?: number | null | undefined;
|
|
19214
19677
|
ignoreTransform?: boolean | undefined;
|
|
19215
19678
|
mediaUrls?: string[] | null | undefined;
|
|
19679
|
+
contentGenerated?: string | null | undefined;
|
|
19680
|
+
contentTransformed?: string | null | undefined;
|
|
19216
19681
|
tool_calls?: {
|
|
19217
19682
|
function: {
|
|
19218
19683
|
name: string;
|
|
@@ -19240,6 +19705,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19240
19705
|
delayInSeconds?: number | null | undefined;
|
|
19241
19706
|
ignoreTransform?: boolean | undefined;
|
|
19242
19707
|
mediaUrls?: string[] | null | undefined;
|
|
19708
|
+
contentGenerated?: string | null | undefined;
|
|
19709
|
+
contentTransformed?: string | null | undefined;
|
|
19243
19710
|
tool_calls?: {
|
|
19244
19711
|
function: {
|
|
19245
19712
|
name: string;
|
|
@@ -19320,6 +19787,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19320
19787
|
delayInSeconds?: number | null | undefined;
|
|
19321
19788
|
ignoreTransform?: boolean | undefined;
|
|
19322
19789
|
mediaUrls?: string[] | null | undefined;
|
|
19790
|
+
contentGenerated?: string | null | undefined;
|
|
19791
|
+
contentTransformed?: string | null | undefined;
|
|
19323
19792
|
tool_calls?: {
|
|
19324
19793
|
function: {
|
|
19325
19794
|
name: string;
|
|
@@ -19433,6 +19902,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19433
19902
|
delayInSeconds?: number | null | undefined;
|
|
19434
19903
|
ignoreTransform?: boolean | undefined;
|
|
19435
19904
|
mediaUrls?: string[] | null | undefined;
|
|
19905
|
+
contentGenerated?: string | null | undefined;
|
|
19906
|
+
contentTransformed?: string | null | undefined;
|
|
19436
19907
|
tool_calls?: {
|
|
19437
19908
|
function: {
|
|
19438
19909
|
name: string;
|
|
@@ -19502,6 +19973,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19502
19973
|
delayInSeconds?: number | null | undefined;
|
|
19503
19974
|
ignoreTransform?: boolean | undefined;
|
|
19504
19975
|
mediaUrls?: string[] | null | undefined;
|
|
19976
|
+
contentGenerated?: string | null | undefined;
|
|
19977
|
+
contentTransformed?: string | null | undefined;
|
|
19505
19978
|
tool_calls?: {
|
|
19506
19979
|
function: {
|
|
19507
19980
|
name: string;
|
|
@@ -19529,6 +20002,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19529
20002
|
delayInSeconds?: number | null | undefined;
|
|
19530
20003
|
ignoreTransform?: boolean | undefined;
|
|
19531
20004
|
mediaUrls?: string[] | null | undefined;
|
|
20005
|
+
contentGenerated?: string | null | undefined;
|
|
20006
|
+
contentTransformed?: string | null | undefined;
|
|
19532
20007
|
tool_calls?: {
|
|
19533
20008
|
function: {
|
|
19534
20009
|
name: string;
|
|
@@ -19631,6 +20106,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19631
20106
|
}>, "many">>>>;
|
|
19632
20107
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19633
20108
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
20109
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
20110
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
19634
20111
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19635
20112
|
id: z.ZodString;
|
|
19636
20113
|
type: z.ZodString;
|
|
@@ -19670,6 +20147,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19670
20147
|
delayInSeconds?: number | null | undefined;
|
|
19671
20148
|
ignoreTransform?: boolean | undefined;
|
|
19672
20149
|
mediaUrls?: string[] | null | undefined;
|
|
20150
|
+
contentGenerated?: string | null | undefined;
|
|
20151
|
+
contentTransformed?: string | null | undefined;
|
|
19673
20152
|
tool_calls?: {
|
|
19674
20153
|
function: {
|
|
19675
20154
|
name: string;
|
|
@@ -19689,6 +20168,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19689
20168
|
delayInSeconds?: number | null | undefined;
|
|
19690
20169
|
ignoreTransform?: boolean | undefined;
|
|
19691
20170
|
mediaUrls?: string[] | null | undefined;
|
|
20171
|
+
contentGenerated?: string | null | undefined;
|
|
20172
|
+
contentTransformed?: string | null | undefined;
|
|
19692
20173
|
tool_calls?: {
|
|
19693
20174
|
function: {
|
|
19694
20175
|
name: string;
|
|
@@ -19992,6 +20473,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19992
20473
|
}>, "many">>>>;
|
|
19993
20474
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19994
20475
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
20476
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
20477
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
19995
20478
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19996
20479
|
id: z.ZodString;
|
|
19997
20480
|
type: z.ZodString;
|
|
@@ -20031,6 +20514,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20031
20514
|
delayInSeconds?: number | null | undefined;
|
|
20032
20515
|
ignoreTransform?: boolean | undefined;
|
|
20033
20516
|
mediaUrls?: string[] | null | undefined;
|
|
20517
|
+
contentGenerated?: string | null | undefined;
|
|
20518
|
+
contentTransformed?: string | null | undefined;
|
|
20034
20519
|
tool_calls?: {
|
|
20035
20520
|
function: {
|
|
20036
20521
|
name: string;
|
|
@@ -20050,6 +20535,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20050
20535
|
delayInSeconds?: number | null | undefined;
|
|
20051
20536
|
ignoreTransform?: boolean | undefined;
|
|
20052
20537
|
mediaUrls?: string[] | null | undefined;
|
|
20538
|
+
contentGenerated?: string | null | undefined;
|
|
20539
|
+
contentTransformed?: string | null | undefined;
|
|
20053
20540
|
tool_calls?: {
|
|
20054
20541
|
function: {
|
|
20055
20542
|
name: string;
|
|
@@ -20118,6 +20605,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20118
20605
|
delayInSeconds?: number | null | undefined;
|
|
20119
20606
|
ignoreTransform?: boolean | undefined;
|
|
20120
20607
|
mediaUrls?: string[] | null | undefined;
|
|
20608
|
+
contentGenerated?: string | null | undefined;
|
|
20609
|
+
contentTransformed?: string | null | undefined;
|
|
20121
20610
|
tool_calls?: {
|
|
20122
20611
|
function: {
|
|
20123
20612
|
name: string;
|
|
@@ -20186,6 +20675,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20186
20675
|
delayInSeconds?: number | null | undefined;
|
|
20187
20676
|
ignoreTransform?: boolean | undefined;
|
|
20188
20677
|
mediaUrls?: string[] | null | undefined;
|
|
20678
|
+
contentGenerated?: string | null | undefined;
|
|
20679
|
+
contentTransformed?: string | null | undefined;
|
|
20189
20680
|
tool_calls?: {
|
|
20190
20681
|
function: {
|
|
20191
20682
|
name: string;
|
|
@@ -20361,6 +20852,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20361
20852
|
}>, "many">>>>;
|
|
20362
20853
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
20363
20854
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
20855
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
20856
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
20364
20857
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20365
20858
|
id: z.ZodString;
|
|
20366
20859
|
type: z.ZodString;
|
|
@@ -20400,6 +20893,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20400
20893
|
delayInSeconds?: number | null | undefined;
|
|
20401
20894
|
ignoreTransform?: boolean | undefined;
|
|
20402
20895
|
mediaUrls?: string[] | null | undefined;
|
|
20896
|
+
contentGenerated?: string | null | undefined;
|
|
20897
|
+
contentTransformed?: string | null | undefined;
|
|
20403
20898
|
tool_calls?: {
|
|
20404
20899
|
function: {
|
|
20405
20900
|
name: string;
|
|
@@ -20419,6 +20914,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20419
20914
|
delayInSeconds?: number | null | undefined;
|
|
20420
20915
|
ignoreTransform?: boolean | undefined;
|
|
20421
20916
|
mediaUrls?: string[] | null | undefined;
|
|
20917
|
+
contentGenerated?: string | null | undefined;
|
|
20918
|
+
contentTransformed?: string | null | undefined;
|
|
20422
20919
|
tool_calls?: {
|
|
20423
20920
|
function: {
|
|
20424
20921
|
name: string;
|
|
@@ -20487,6 +20984,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20487
20984
|
delayInSeconds?: number | null | undefined;
|
|
20488
20985
|
ignoreTransform?: boolean | undefined;
|
|
20489
20986
|
mediaUrls?: string[] | null | undefined;
|
|
20987
|
+
contentGenerated?: string | null | undefined;
|
|
20988
|
+
contentTransformed?: string | null | undefined;
|
|
20490
20989
|
tool_calls?: {
|
|
20491
20990
|
function: {
|
|
20492
20991
|
name: string;
|
|
@@ -20555,6 +21054,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20555
21054
|
delayInSeconds?: number | null | undefined;
|
|
20556
21055
|
ignoreTransform?: boolean | undefined;
|
|
20557
21056
|
mediaUrls?: string[] | null | undefined;
|
|
21057
|
+
contentGenerated?: string | null | undefined;
|
|
21058
|
+
contentTransformed?: string | null | undefined;
|
|
20558
21059
|
tool_calls?: {
|
|
20559
21060
|
function: {
|
|
20560
21061
|
name: string;
|
|
@@ -20626,6 +21127,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20626
21127
|
delayInSeconds?: number | null | undefined;
|
|
20627
21128
|
ignoreTransform?: boolean | undefined;
|
|
20628
21129
|
mediaUrls?: string[] | null | undefined;
|
|
21130
|
+
contentGenerated?: string | null | undefined;
|
|
21131
|
+
contentTransformed?: string | null | undefined;
|
|
20629
21132
|
tool_calls?: {
|
|
20630
21133
|
function: {
|
|
20631
21134
|
name: string;
|
|
@@ -20695,6 +21198,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20695
21198
|
delayInSeconds?: number | null | undefined;
|
|
20696
21199
|
ignoreTransform?: boolean | undefined;
|
|
20697
21200
|
mediaUrls?: string[] | null | undefined;
|
|
21201
|
+
contentGenerated?: string | null | undefined;
|
|
21202
|
+
contentTransformed?: string | null | undefined;
|
|
20698
21203
|
tool_calls?: {
|
|
20699
21204
|
function: {
|
|
20700
21205
|
name: string;
|
|
@@ -20766,6 +21271,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20766
21271
|
delayInSeconds?: number | null | undefined;
|
|
20767
21272
|
ignoreTransform?: boolean | undefined;
|
|
20768
21273
|
mediaUrls?: string[] | null | undefined;
|
|
21274
|
+
contentGenerated?: string | null | undefined;
|
|
21275
|
+
contentTransformed?: string | null | undefined;
|
|
20769
21276
|
tool_calls?: {
|
|
20770
21277
|
function: {
|
|
20771
21278
|
name: string;
|
|
@@ -20835,6 +21342,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20835
21342
|
delayInSeconds?: number | null | undefined;
|
|
20836
21343
|
ignoreTransform?: boolean | undefined;
|
|
20837
21344
|
mediaUrls?: string[] | null | undefined;
|
|
21345
|
+
contentGenerated?: string | null | undefined;
|
|
21346
|
+
contentTransformed?: string | null | undefined;
|
|
20838
21347
|
tool_calls?: {
|
|
20839
21348
|
function: {
|
|
20840
21349
|
name: string;
|
|
@@ -20883,6 +21392,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20883
21392
|
}>, "many">>>>;
|
|
20884
21393
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
20885
21394
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
21395
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
21396
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
20886
21397
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20887
21398
|
id: z.ZodString;
|
|
20888
21399
|
type: z.ZodString;
|
|
@@ -20922,6 +21433,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20922
21433
|
delayInSeconds?: number | null | undefined;
|
|
20923
21434
|
ignoreTransform?: boolean | undefined;
|
|
20924
21435
|
mediaUrls?: string[] | null | undefined;
|
|
21436
|
+
contentGenerated?: string | null | undefined;
|
|
21437
|
+
contentTransformed?: string | null | undefined;
|
|
20925
21438
|
tool_calls?: {
|
|
20926
21439
|
function: {
|
|
20927
21440
|
name: string;
|
|
@@ -20941,6 +21454,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20941
21454
|
delayInSeconds?: number | null | undefined;
|
|
20942
21455
|
ignoreTransform?: boolean | undefined;
|
|
20943
21456
|
mediaUrls?: string[] | null | undefined;
|
|
21457
|
+
contentGenerated?: string | null | undefined;
|
|
21458
|
+
contentTransformed?: string | null | undefined;
|
|
20944
21459
|
tool_calls?: {
|
|
20945
21460
|
function: {
|
|
20946
21461
|
name: string;
|
|
@@ -21095,6 +21610,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21095
21610
|
delayInSeconds?: number | null | undefined;
|
|
21096
21611
|
ignoreTransform?: boolean | undefined;
|
|
21097
21612
|
mediaUrls?: string[] | null | undefined;
|
|
21613
|
+
contentGenerated?: string | null | undefined;
|
|
21614
|
+
contentTransformed?: string | null | undefined;
|
|
21098
21615
|
tool_calls?: {
|
|
21099
21616
|
function: {
|
|
21100
21617
|
name: string;
|
|
@@ -21164,6 +21681,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21164
21681
|
delayInSeconds?: number | null | undefined;
|
|
21165
21682
|
ignoreTransform?: boolean | undefined;
|
|
21166
21683
|
mediaUrls?: string[] | null | undefined;
|
|
21684
|
+
contentGenerated?: string | null | undefined;
|
|
21685
|
+
contentTransformed?: string | null | undefined;
|
|
21167
21686
|
tool_calls?: {
|
|
21168
21687
|
function: {
|
|
21169
21688
|
name: string;
|
|
@@ -21262,6 +21781,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21262
21781
|
delayInSeconds?: number | null | undefined;
|
|
21263
21782
|
ignoreTransform?: boolean | undefined;
|
|
21264
21783
|
mediaUrls?: string[] | null | undefined;
|
|
21784
|
+
contentGenerated?: string | null | undefined;
|
|
21785
|
+
contentTransformed?: string | null | undefined;
|
|
21265
21786
|
tool_calls?: {
|
|
21266
21787
|
function: {
|
|
21267
21788
|
name: string;
|
|
@@ -21375,6 +21896,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21375
21896
|
delayInSeconds?: number | null | undefined;
|
|
21376
21897
|
ignoreTransform?: boolean | undefined;
|
|
21377
21898
|
mediaUrls?: string[] | null | undefined;
|
|
21899
|
+
contentGenerated?: string | null | undefined;
|
|
21900
|
+
contentTransformed?: string | null | undefined;
|
|
21378
21901
|
tool_calls?: {
|
|
21379
21902
|
function: {
|
|
21380
21903
|
name: string;
|
|
@@ -21444,6 +21967,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21444
21967
|
delayInSeconds?: number | null | undefined;
|
|
21445
21968
|
ignoreTransform?: boolean | undefined;
|
|
21446
21969
|
mediaUrls?: string[] | null | undefined;
|
|
21970
|
+
contentGenerated?: string | null | undefined;
|
|
21971
|
+
contentTransformed?: string | null | undefined;
|
|
21447
21972
|
tool_calls?: {
|
|
21448
21973
|
function: {
|
|
21449
21974
|
name: string;
|
|
@@ -21471,6 +21996,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21471
21996
|
delayInSeconds?: number | null | undefined;
|
|
21472
21997
|
ignoreTransform?: boolean | undefined;
|
|
21473
21998
|
mediaUrls?: string[] | null | undefined;
|
|
21999
|
+
contentGenerated?: string | null | undefined;
|
|
22000
|
+
contentTransformed?: string | null | undefined;
|
|
21474
22001
|
tool_calls?: {
|
|
21475
22002
|
function: {
|
|
21476
22003
|
name: string;
|
|
@@ -21551,6 +22078,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21551
22078
|
delayInSeconds?: number | null | undefined;
|
|
21552
22079
|
ignoreTransform?: boolean | undefined;
|
|
21553
22080
|
mediaUrls?: string[] | null | undefined;
|
|
22081
|
+
contentGenerated?: string | null | undefined;
|
|
22082
|
+
contentTransformed?: string | null | undefined;
|
|
21554
22083
|
tool_calls?: {
|
|
21555
22084
|
function: {
|
|
21556
22085
|
name: string;
|
|
@@ -21664,6 +22193,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21664
22193
|
delayInSeconds?: number | null | undefined;
|
|
21665
22194
|
ignoreTransform?: boolean | undefined;
|
|
21666
22195
|
mediaUrls?: string[] | null | undefined;
|
|
22196
|
+
contentGenerated?: string | null | undefined;
|
|
22197
|
+
contentTransformed?: string | null | undefined;
|
|
21667
22198
|
tool_calls?: {
|
|
21668
22199
|
function: {
|
|
21669
22200
|
name: string;
|
|
@@ -21733,6 +22264,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21733
22264
|
delayInSeconds?: number | null | undefined;
|
|
21734
22265
|
ignoreTransform?: boolean | undefined;
|
|
21735
22266
|
mediaUrls?: string[] | null | undefined;
|
|
22267
|
+
contentGenerated?: string | null | undefined;
|
|
22268
|
+
contentTransformed?: string | null | undefined;
|
|
21736
22269
|
tool_calls?: {
|
|
21737
22270
|
function: {
|
|
21738
22271
|
name: string;
|
|
@@ -21760,6 +22293,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21760
22293
|
delayInSeconds?: number | null | undefined;
|
|
21761
22294
|
ignoreTransform?: boolean | undefined;
|
|
21762
22295
|
mediaUrls?: string[] | null | undefined;
|
|
22296
|
+
contentGenerated?: string | null | undefined;
|
|
22297
|
+
contentTransformed?: string | null | undefined;
|
|
21763
22298
|
tool_calls?: {
|
|
21764
22299
|
function: {
|
|
21765
22300
|
name: string;
|
|
@@ -21862,6 +22397,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21862
22397
|
}>, "many">>>>;
|
|
21863
22398
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
21864
22399
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
22400
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
22401
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
21865
22402
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21866
22403
|
id: z.ZodString;
|
|
21867
22404
|
type: z.ZodString;
|
|
@@ -21901,6 +22438,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21901
22438
|
delayInSeconds?: number | null | undefined;
|
|
21902
22439
|
ignoreTransform?: boolean | undefined;
|
|
21903
22440
|
mediaUrls?: string[] | null | undefined;
|
|
22441
|
+
contentGenerated?: string | null | undefined;
|
|
22442
|
+
contentTransformed?: string | null | undefined;
|
|
21904
22443
|
tool_calls?: {
|
|
21905
22444
|
function: {
|
|
21906
22445
|
name: string;
|
|
@@ -21920,6 +22459,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21920
22459
|
delayInSeconds?: number | null | undefined;
|
|
21921
22460
|
ignoreTransform?: boolean | undefined;
|
|
21922
22461
|
mediaUrls?: string[] | null | undefined;
|
|
22462
|
+
contentGenerated?: string | null | undefined;
|
|
22463
|
+
contentTransformed?: string | null | undefined;
|
|
21923
22464
|
tool_calls?: {
|
|
21924
22465
|
function: {
|
|
21925
22466
|
name: string;
|
|
@@ -22223,6 +22764,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22223
22764
|
}>, "many">>>>;
|
|
22224
22765
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
22225
22766
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
22767
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
22768
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
22226
22769
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22227
22770
|
id: z.ZodString;
|
|
22228
22771
|
type: z.ZodString;
|
|
@@ -22262,6 +22805,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22262
22805
|
delayInSeconds?: number | null | undefined;
|
|
22263
22806
|
ignoreTransform?: boolean | undefined;
|
|
22264
22807
|
mediaUrls?: string[] | null | undefined;
|
|
22808
|
+
contentGenerated?: string | null | undefined;
|
|
22809
|
+
contentTransformed?: string | null | undefined;
|
|
22265
22810
|
tool_calls?: {
|
|
22266
22811
|
function: {
|
|
22267
22812
|
name: string;
|
|
@@ -22281,6 +22826,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22281
22826
|
delayInSeconds?: number | null | undefined;
|
|
22282
22827
|
ignoreTransform?: boolean | undefined;
|
|
22283
22828
|
mediaUrls?: string[] | null | undefined;
|
|
22829
|
+
contentGenerated?: string | null | undefined;
|
|
22830
|
+
contentTransformed?: string | null | undefined;
|
|
22284
22831
|
tool_calls?: {
|
|
22285
22832
|
function: {
|
|
22286
22833
|
name: string;
|
|
@@ -22349,6 +22896,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22349
22896
|
delayInSeconds?: number | null | undefined;
|
|
22350
22897
|
ignoreTransform?: boolean | undefined;
|
|
22351
22898
|
mediaUrls?: string[] | null | undefined;
|
|
22899
|
+
contentGenerated?: string | null | undefined;
|
|
22900
|
+
contentTransformed?: string | null | undefined;
|
|
22352
22901
|
tool_calls?: {
|
|
22353
22902
|
function: {
|
|
22354
22903
|
name: string;
|
|
@@ -22417,6 +22966,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22417
22966
|
delayInSeconds?: number | null | undefined;
|
|
22418
22967
|
ignoreTransform?: boolean | undefined;
|
|
22419
22968
|
mediaUrls?: string[] | null | undefined;
|
|
22969
|
+
contentGenerated?: string | null | undefined;
|
|
22970
|
+
contentTransformed?: string | null | undefined;
|
|
22420
22971
|
tool_calls?: {
|
|
22421
22972
|
function: {
|
|
22422
22973
|
name: string;
|
|
@@ -22592,6 +23143,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22592
23143
|
}>, "many">>>>;
|
|
22593
23144
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
22594
23145
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
23146
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
23147
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
22595
23148
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22596
23149
|
id: z.ZodString;
|
|
22597
23150
|
type: z.ZodString;
|
|
@@ -22631,6 +23184,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22631
23184
|
delayInSeconds?: number | null | undefined;
|
|
22632
23185
|
ignoreTransform?: boolean | undefined;
|
|
22633
23186
|
mediaUrls?: string[] | null | undefined;
|
|
23187
|
+
contentGenerated?: string | null | undefined;
|
|
23188
|
+
contentTransformed?: string | null | undefined;
|
|
22634
23189
|
tool_calls?: {
|
|
22635
23190
|
function: {
|
|
22636
23191
|
name: string;
|
|
@@ -22650,6 +23205,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22650
23205
|
delayInSeconds?: number | null | undefined;
|
|
22651
23206
|
ignoreTransform?: boolean | undefined;
|
|
22652
23207
|
mediaUrls?: string[] | null | undefined;
|
|
23208
|
+
contentGenerated?: string | null | undefined;
|
|
23209
|
+
contentTransformed?: string | null | undefined;
|
|
22653
23210
|
tool_calls?: {
|
|
22654
23211
|
function: {
|
|
22655
23212
|
name: string;
|
|
@@ -22718,6 +23275,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22718
23275
|
delayInSeconds?: number | null | undefined;
|
|
22719
23276
|
ignoreTransform?: boolean | undefined;
|
|
22720
23277
|
mediaUrls?: string[] | null | undefined;
|
|
23278
|
+
contentGenerated?: string | null | undefined;
|
|
23279
|
+
contentTransformed?: string | null | undefined;
|
|
22721
23280
|
tool_calls?: {
|
|
22722
23281
|
function: {
|
|
22723
23282
|
name: string;
|
|
@@ -22786,6 +23345,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22786
23345
|
delayInSeconds?: number | null | undefined;
|
|
22787
23346
|
ignoreTransform?: boolean | undefined;
|
|
22788
23347
|
mediaUrls?: string[] | null | undefined;
|
|
23348
|
+
contentGenerated?: string | null | undefined;
|
|
23349
|
+
contentTransformed?: string | null | undefined;
|
|
22789
23350
|
tool_calls?: {
|
|
22790
23351
|
function: {
|
|
22791
23352
|
name: string;
|
|
@@ -22857,6 +23418,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22857
23418
|
delayInSeconds?: number | null | undefined;
|
|
22858
23419
|
ignoreTransform?: boolean | undefined;
|
|
22859
23420
|
mediaUrls?: string[] | null | undefined;
|
|
23421
|
+
contentGenerated?: string | null | undefined;
|
|
23422
|
+
contentTransformed?: string | null | undefined;
|
|
22860
23423
|
tool_calls?: {
|
|
22861
23424
|
function: {
|
|
22862
23425
|
name: string;
|
|
@@ -22926,6 +23489,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22926
23489
|
delayInSeconds?: number | null | undefined;
|
|
22927
23490
|
ignoreTransform?: boolean | undefined;
|
|
22928
23491
|
mediaUrls?: string[] | null | undefined;
|
|
23492
|
+
contentGenerated?: string | null | undefined;
|
|
23493
|
+
contentTransformed?: string | null | undefined;
|
|
22929
23494
|
tool_calls?: {
|
|
22930
23495
|
function: {
|
|
22931
23496
|
name: string;
|
|
@@ -22997,6 +23562,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22997
23562
|
delayInSeconds?: number | null | undefined;
|
|
22998
23563
|
ignoreTransform?: boolean | undefined;
|
|
22999
23564
|
mediaUrls?: string[] | null | undefined;
|
|
23565
|
+
contentGenerated?: string | null | undefined;
|
|
23566
|
+
contentTransformed?: string | null | undefined;
|
|
23000
23567
|
tool_calls?: {
|
|
23001
23568
|
function: {
|
|
23002
23569
|
name: string;
|
|
@@ -23066,6 +23633,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23066
23633
|
delayInSeconds?: number | null | undefined;
|
|
23067
23634
|
ignoreTransform?: boolean | undefined;
|
|
23068
23635
|
mediaUrls?: string[] | null | undefined;
|
|
23636
|
+
contentGenerated?: string | null | undefined;
|
|
23637
|
+
contentTransformed?: string | null | undefined;
|
|
23069
23638
|
tool_calls?: {
|
|
23070
23639
|
function: {
|
|
23071
23640
|
name: string;
|
|
@@ -23114,6 +23683,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23114
23683
|
}>, "many">>>>;
|
|
23115
23684
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
23116
23685
|
mediaUrls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
|
|
23686
|
+
contentGenerated: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
23687
|
+
contentTransformed: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
23117
23688
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23118
23689
|
id: z.ZodString;
|
|
23119
23690
|
type: z.ZodString;
|
|
@@ -23153,6 +23724,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23153
23724
|
delayInSeconds?: number | null | undefined;
|
|
23154
23725
|
ignoreTransform?: boolean | undefined;
|
|
23155
23726
|
mediaUrls?: string[] | null | undefined;
|
|
23727
|
+
contentGenerated?: string | null | undefined;
|
|
23728
|
+
contentTransformed?: string | null | undefined;
|
|
23156
23729
|
tool_calls?: {
|
|
23157
23730
|
function: {
|
|
23158
23731
|
name: string;
|
|
@@ -23172,6 +23745,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23172
23745
|
delayInSeconds?: number | null | undefined;
|
|
23173
23746
|
ignoreTransform?: boolean | undefined;
|
|
23174
23747
|
mediaUrls?: string[] | null | undefined;
|
|
23748
|
+
contentGenerated?: string | null | undefined;
|
|
23749
|
+
contentTransformed?: string | null | undefined;
|
|
23175
23750
|
tool_calls?: {
|
|
23176
23751
|
function: {
|
|
23177
23752
|
name: string;
|
|
@@ -23326,6 +23901,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23326
23901
|
delayInSeconds?: number | null | undefined;
|
|
23327
23902
|
ignoreTransform?: boolean | undefined;
|
|
23328
23903
|
mediaUrls?: string[] | null | undefined;
|
|
23904
|
+
contentGenerated?: string | null | undefined;
|
|
23905
|
+
contentTransformed?: string | null | undefined;
|
|
23329
23906
|
tool_calls?: {
|
|
23330
23907
|
function: {
|
|
23331
23908
|
name: string;
|
|
@@ -23395,6 +23972,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23395
23972
|
delayInSeconds?: number | null | undefined;
|
|
23396
23973
|
ignoreTransform?: boolean | undefined;
|
|
23397
23974
|
mediaUrls?: string[] | null | undefined;
|
|
23975
|
+
contentGenerated?: string | null | undefined;
|
|
23976
|
+
contentTransformed?: string | null | undefined;
|
|
23398
23977
|
tool_calls?: {
|
|
23399
23978
|
function: {
|
|
23400
23979
|
name: string;
|
|
@@ -23493,6 +24072,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23493
24072
|
delayInSeconds?: number | null | undefined;
|
|
23494
24073
|
ignoreTransform?: boolean | undefined;
|
|
23495
24074
|
mediaUrls?: string[] | null | undefined;
|
|
24075
|
+
contentGenerated?: string | null | undefined;
|
|
24076
|
+
contentTransformed?: string | null | undefined;
|
|
23496
24077
|
tool_calls?: {
|
|
23497
24078
|
function: {
|
|
23498
24079
|
name: string;
|
|
@@ -23606,6 +24187,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23606
24187
|
delayInSeconds?: number | null | undefined;
|
|
23607
24188
|
ignoreTransform?: boolean | undefined;
|
|
23608
24189
|
mediaUrls?: string[] | null | undefined;
|
|
24190
|
+
contentGenerated?: string | null | undefined;
|
|
24191
|
+
contentTransformed?: string | null | undefined;
|
|
23609
24192
|
tool_calls?: {
|
|
23610
24193
|
function: {
|
|
23611
24194
|
name: string;
|
|
@@ -23675,6 +24258,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23675
24258
|
delayInSeconds?: number | null | undefined;
|
|
23676
24259
|
ignoreTransform?: boolean | undefined;
|
|
23677
24260
|
mediaUrls?: string[] | null | undefined;
|
|
24261
|
+
contentGenerated?: string | null | undefined;
|
|
24262
|
+
contentTransformed?: string | null | undefined;
|
|
23678
24263
|
tool_calls?: {
|
|
23679
24264
|
function: {
|
|
23680
24265
|
name: string;
|
|
@@ -23702,6 +24287,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23702
24287
|
delayInSeconds?: number | null | undefined;
|
|
23703
24288
|
ignoreTransform?: boolean | undefined;
|
|
23704
24289
|
mediaUrls?: string[] | null | undefined;
|
|
24290
|
+
contentGenerated?: string | null | undefined;
|
|
24291
|
+
contentTransformed?: string | null | undefined;
|
|
23705
24292
|
tool_calls?: {
|
|
23706
24293
|
function: {
|
|
23707
24294
|
name: string;
|
|
@@ -23782,6 +24369,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23782
24369
|
delayInSeconds?: number | null | undefined;
|
|
23783
24370
|
ignoreTransform?: boolean | undefined;
|
|
23784
24371
|
mediaUrls?: string[] | null | undefined;
|
|
24372
|
+
contentGenerated?: string | null | undefined;
|
|
24373
|
+
contentTransformed?: string | null | undefined;
|
|
23785
24374
|
tool_calls?: {
|
|
23786
24375
|
function: {
|
|
23787
24376
|
name: string;
|
|
@@ -23895,6 +24484,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23895
24484
|
delayInSeconds?: number | null | undefined;
|
|
23896
24485
|
ignoreTransform?: boolean | undefined;
|
|
23897
24486
|
mediaUrls?: string[] | null | undefined;
|
|
24487
|
+
contentGenerated?: string | null | undefined;
|
|
24488
|
+
contentTransformed?: string | null | undefined;
|
|
23898
24489
|
tool_calls?: {
|
|
23899
24490
|
function: {
|
|
23900
24491
|
name: string;
|
|
@@ -23964,6 +24555,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23964
24555
|
delayInSeconds?: number | null | undefined;
|
|
23965
24556
|
ignoreTransform?: boolean | undefined;
|
|
23966
24557
|
mediaUrls?: string[] | null | undefined;
|
|
24558
|
+
contentGenerated?: string | null | undefined;
|
|
24559
|
+
contentTransformed?: string | null | undefined;
|
|
23967
24560
|
tool_calls?: {
|
|
23968
24561
|
function: {
|
|
23969
24562
|
name: string;
|
|
@@ -23991,6 +24584,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23991
24584
|
delayInSeconds?: number | null | undefined;
|
|
23992
24585
|
ignoreTransform?: boolean | undefined;
|
|
23993
24586
|
mediaUrls?: string[] | null | undefined;
|
|
24587
|
+
contentGenerated?: string | null | undefined;
|
|
24588
|
+
contentTransformed?: string | null | undefined;
|
|
23994
24589
|
tool_calls?: {
|
|
23995
24590
|
function: {
|
|
23996
24591
|
name: string;
|