@scout9/app 1.0.0-alpha.0.9.4 → 1.0.0-alpha.0.9.6
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-b283e3dc.cjs → dev-2a3c50b5.cjs} +3 -3
- package/dist/{index-ff6c6b7f.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-38993b7e.cjs → multipart-parser-0a23e9d3.cjs} +3 -3
- package/dist/schemas.cjs +1 -1
- package/dist/spirits.cjs +2 -2
- package/dist/testing-tools.cjs +2 -2
- package/package.json +1 -1
- package/src/runtime/schemas/message.js +2 -0
- package/src/testing-tools/spirits.js +2 -2
- package/types/index.d.ts +598 -7
- package/types/index.d.ts.map +1 -1
package/types/index.d.ts
CHANGED
|
@@ -928,12 +928,8 @@ declare module '@scout9/app/spirits' {
|
|
|
928
928
|
|
|
929
929
|
/**
|
|
930
930
|
* Message key helper for doing comparisons to fund duplicates
|
|
931
|
-
*
|
|
932
|
-
|
|
933
|
-
export function messageKey(message: {
|
|
934
|
-
content: string;
|
|
935
|
-
tool_calls?: Array<any>;
|
|
936
|
-
}): string;
|
|
931
|
+
* */
|
|
932
|
+
export function messageKey(message: any): string;
|
|
937
933
|
export namespace Spirits {
|
|
938
934
|
function customer(input: ConversationData & CustomerSpiritCallbacks, onError?: (error: Error) => void): Promise<ConversationEvent>;
|
|
939
935
|
}
|
|
@@ -1517,6 +1513,11 @@ declare module '@scout9/app/schemas' {
|
|
|
1517
1513
|
}>, "many">>>;
|
|
1518
1514
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
1519
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>>;
|
|
1520
1521
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1521
1522
|
id: z.ZodString;
|
|
1522
1523
|
type: z.ZodString;
|
|
@@ -1545,7 +1546,11 @@ declare module '@scout9/app/schemas' {
|
|
|
1545
1546
|
type: string;
|
|
1546
1547
|
id: string;
|
|
1547
1548
|
}>, "many">>>;
|
|
1548
|
-
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
|
+
*/
|
|
1549
1554
|
}, "strip", z.ZodTypeAny, {
|
|
1550
1555
|
time: string;
|
|
1551
1556
|
id: string;
|
|
@@ -1566,6 +1571,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1566
1571
|
}[] | null | undefined;
|
|
1567
1572
|
ignoreTransform?: boolean | undefined;
|
|
1568
1573
|
mediaUrls?: string[] | null | undefined;
|
|
1574
|
+
contentGenerated?: string | null | undefined;
|
|
1575
|
+
contentTransformed?: string | null | undefined;
|
|
1569
1576
|
tool_calls?: {
|
|
1570
1577
|
function: {
|
|
1571
1578
|
name: string;
|
|
@@ -1595,6 +1602,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1595
1602
|
}[] | null | undefined;
|
|
1596
1603
|
ignoreTransform?: boolean | undefined;
|
|
1597
1604
|
mediaUrls?: string[] | null | undefined;
|
|
1605
|
+
contentGenerated?: string | null | undefined;
|
|
1606
|
+
contentTransformed?: string | null | undefined;
|
|
1598
1607
|
tool_calls?: {
|
|
1599
1608
|
function: {
|
|
1600
1609
|
name: string;
|
|
@@ -1669,6 +1678,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1669
1678
|
}[] | null | undefined;
|
|
1670
1679
|
ignoreTransform?: boolean | undefined;
|
|
1671
1680
|
mediaUrls?: string[] | null | undefined;
|
|
1681
|
+
contentGenerated?: string | null | undefined;
|
|
1682
|
+
contentTransformed?: string | null | undefined;
|
|
1672
1683
|
tool_calls?: {
|
|
1673
1684
|
function: {
|
|
1674
1685
|
name: string;
|
|
@@ -1729,6 +1740,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1729
1740
|
}[] | null | undefined;
|
|
1730
1741
|
ignoreTransform?: boolean | undefined;
|
|
1731
1742
|
mediaUrls?: string[] | null | undefined;
|
|
1743
|
+
contentGenerated?: string | null | undefined;
|
|
1744
|
+
contentTransformed?: string | null | undefined;
|
|
1732
1745
|
tool_calls?: {
|
|
1733
1746
|
function: {
|
|
1734
1747
|
name: string;
|
|
@@ -2013,6 +2026,8 @@ declare module '@scout9/app/schemas' {
|
|
|
2013
2026
|
}[] | null | undefined;
|
|
2014
2027
|
ignoreTransform?: boolean | undefined;
|
|
2015
2028
|
mediaUrls?: string[] | null | undefined;
|
|
2029
|
+
contentGenerated?: string | null | undefined;
|
|
2030
|
+
contentTransformed?: string | null | undefined;
|
|
2016
2031
|
tool_calls?: {
|
|
2017
2032
|
function: {
|
|
2018
2033
|
name: string;
|
|
@@ -2143,6 +2158,8 @@ declare module '@scout9/app/schemas' {
|
|
|
2143
2158
|
}[] | null | undefined;
|
|
2144
2159
|
ignoreTransform?: boolean | undefined;
|
|
2145
2160
|
mediaUrls?: string[] | null | undefined;
|
|
2161
|
+
contentGenerated?: string | null | undefined;
|
|
2162
|
+
contentTransformed?: string | null | undefined;
|
|
2146
2163
|
tool_calls?: {
|
|
2147
2164
|
function: {
|
|
2148
2165
|
name: string;
|
|
@@ -3293,6 +3310,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3293
3310
|
}>, "many">>>;
|
|
3294
3311
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
3295
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>>;
|
|
3296
3315
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3297
3316
|
id: z.ZodString;
|
|
3298
3317
|
type: z.ZodString;
|
|
@@ -3342,6 +3361,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3342
3361
|
}[] | null | undefined;
|
|
3343
3362
|
ignoreTransform?: boolean | undefined;
|
|
3344
3363
|
mediaUrls?: string[] | null | undefined;
|
|
3364
|
+
contentGenerated?: string | null | undefined;
|
|
3365
|
+
contentTransformed?: string | null | undefined;
|
|
3345
3366
|
tool_calls?: {
|
|
3346
3367
|
function: {
|
|
3347
3368
|
name: string;
|
|
@@ -3371,6 +3392,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3371
3392
|
}[] | null | undefined;
|
|
3372
3393
|
ignoreTransform?: boolean | undefined;
|
|
3373
3394
|
mediaUrls?: string[] | null | undefined;
|
|
3395
|
+
contentGenerated?: string | null | undefined;
|
|
3396
|
+
contentTransformed?: string | null | undefined;
|
|
3374
3397
|
tool_calls?: {
|
|
3375
3398
|
function: {
|
|
3376
3399
|
name: string;
|
|
@@ -3498,6 +3521,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3498
3521
|
}>, "many">>>;
|
|
3499
3522
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
3500
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>>;
|
|
3501
3526
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3502
3527
|
id: z.ZodString;
|
|
3503
3528
|
type: z.ZodString;
|
|
@@ -3547,6 +3572,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3547
3572
|
}[] | null | undefined;
|
|
3548
3573
|
ignoreTransform?: boolean | undefined;
|
|
3549
3574
|
mediaUrls?: string[] | null | undefined;
|
|
3575
|
+
contentGenerated?: string | null | undefined;
|
|
3576
|
+
contentTransformed?: string | null | undefined;
|
|
3550
3577
|
tool_calls?: {
|
|
3551
3578
|
function: {
|
|
3552
3579
|
name: string;
|
|
@@ -3576,6 +3603,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3576
3603
|
}[] | null | undefined;
|
|
3577
3604
|
ignoreTransform?: boolean | undefined;
|
|
3578
3605
|
mediaUrls?: string[] | null | undefined;
|
|
3606
|
+
contentGenerated?: string | null | undefined;
|
|
3607
|
+
contentTransformed?: string | null | undefined;
|
|
3579
3608
|
tool_calls?: {
|
|
3580
3609
|
function: {
|
|
3581
3610
|
name: string;
|
|
@@ -3650,6 +3679,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3650
3679
|
}[] | null | undefined;
|
|
3651
3680
|
ignoreTransform?: boolean | undefined;
|
|
3652
3681
|
mediaUrls?: string[] | null | undefined;
|
|
3682
|
+
contentGenerated?: string | null | undefined;
|
|
3683
|
+
contentTransformed?: string | null | undefined;
|
|
3653
3684
|
tool_calls?: {
|
|
3654
3685
|
function: {
|
|
3655
3686
|
name: string;
|
|
@@ -3710,6 +3741,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3710
3741
|
}[] | null | undefined;
|
|
3711
3742
|
ignoreTransform?: boolean | undefined;
|
|
3712
3743
|
mediaUrls?: string[] | null | undefined;
|
|
3744
|
+
contentGenerated?: string | null | undefined;
|
|
3745
|
+
contentTransformed?: string | null | undefined;
|
|
3713
3746
|
tool_calls?: {
|
|
3714
3747
|
function: {
|
|
3715
3748
|
name: string;
|
|
@@ -3791,6 +3824,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3791
3824
|
}>, "many">>>;
|
|
3792
3825
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
3793
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>>;
|
|
3794
3829
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3795
3830
|
id: z.ZodString;
|
|
3796
3831
|
type: z.ZodString;
|
|
@@ -3840,6 +3875,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3840
3875
|
}[] | null | undefined;
|
|
3841
3876
|
ignoreTransform?: boolean | undefined;
|
|
3842
3877
|
mediaUrls?: string[] | null | undefined;
|
|
3878
|
+
contentGenerated?: string | null | undefined;
|
|
3879
|
+
contentTransformed?: string | null | undefined;
|
|
3843
3880
|
tool_calls?: {
|
|
3844
3881
|
function: {
|
|
3845
3882
|
name: string;
|
|
@@ -3869,6 +3906,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3869
3906
|
}[] | null | undefined;
|
|
3870
3907
|
ignoreTransform?: boolean | undefined;
|
|
3871
3908
|
mediaUrls?: string[] | null | undefined;
|
|
3909
|
+
contentGenerated?: string | null | undefined;
|
|
3910
|
+
contentTransformed?: string | null | undefined;
|
|
3872
3911
|
tool_calls?: {
|
|
3873
3912
|
function: {
|
|
3874
3913
|
name: string;
|
|
@@ -3943,6 +3982,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3943
3982
|
}[] | null | undefined;
|
|
3944
3983
|
ignoreTransform?: boolean | undefined;
|
|
3945
3984
|
mediaUrls?: string[] | null | undefined;
|
|
3985
|
+
contentGenerated?: string | null | undefined;
|
|
3986
|
+
contentTransformed?: string | null | undefined;
|
|
3946
3987
|
tool_calls?: {
|
|
3947
3988
|
function: {
|
|
3948
3989
|
name: string;
|
|
@@ -4003,6 +4044,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4003
4044
|
}[] | null | undefined;
|
|
4004
4045
|
ignoreTransform?: boolean | undefined;
|
|
4005
4046
|
mediaUrls?: string[] | null | undefined;
|
|
4047
|
+
contentGenerated?: string | null | undefined;
|
|
4048
|
+
contentTransformed?: string | null | undefined;
|
|
4006
4049
|
tool_calls?: {
|
|
4007
4050
|
function: {
|
|
4008
4051
|
name: string;
|
|
@@ -4084,6 +4127,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4084
4127
|
}>, "many">>>;
|
|
4085
4128
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
4086
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>>;
|
|
4087
4132
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4088
4133
|
id: z.ZodString;
|
|
4089
4134
|
type: z.ZodString;
|
|
@@ -4133,6 +4178,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4133
4178
|
}[] | null | undefined;
|
|
4134
4179
|
ignoreTransform?: boolean | undefined;
|
|
4135
4180
|
mediaUrls?: string[] | null | undefined;
|
|
4181
|
+
contentGenerated?: string | null | undefined;
|
|
4182
|
+
contentTransformed?: string | null | undefined;
|
|
4136
4183
|
tool_calls?: {
|
|
4137
4184
|
function: {
|
|
4138
4185
|
name: string;
|
|
@@ -4162,6 +4209,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4162
4209
|
}[] | null | undefined;
|
|
4163
4210
|
ignoreTransform?: boolean | undefined;
|
|
4164
4211
|
mediaUrls?: string[] | null | undefined;
|
|
4212
|
+
contentGenerated?: string | null | undefined;
|
|
4213
|
+
contentTransformed?: string | null | undefined;
|
|
4165
4214
|
tool_calls?: {
|
|
4166
4215
|
function: {
|
|
4167
4216
|
name: string;
|
|
@@ -4238,6 +4287,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4238
4287
|
}[] | null | undefined;
|
|
4239
4288
|
ignoreTransform?: boolean | undefined;
|
|
4240
4289
|
mediaUrls?: string[] | null | undefined;
|
|
4290
|
+
contentGenerated?: string | null | undefined;
|
|
4291
|
+
contentTransformed?: string | null | undefined;
|
|
4241
4292
|
tool_calls?: {
|
|
4242
4293
|
function: {
|
|
4243
4294
|
name: string;
|
|
@@ -4299,6 +4350,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4299
4350
|
}[] | null | undefined;
|
|
4300
4351
|
ignoreTransform?: boolean | undefined;
|
|
4301
4352
|
mediaUrls?: string[] | null | undefined;
|
|
4353
|
+
contentGenerated?: string | null | undefined;
|
|
4354
|
+
contentTransformed?: string | null | undefined;
|
|
4302
4355
|
tool_calls?: {
|
|
4303
4356
|
function: {
|
|
4304
4357
|
name: string;
|
|
@@ -4380,6 +4433,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4380
4433
|
}>, "many">>>;
|
|
4381
4434
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
4382
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>>;
|
|
4383
4438
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4384
4439
|
id: z.ZodString;
|
|
4385
4440
|
type: z.ZodString;
|
|
@@ -4429,6 +4484,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4429
4484
|
}[] | null | undefined;
|
|
4430
4485
|
ignoreTransform?: boolean | undefined;
|
|
4431
4486
|
mediaUrls?: string[] | null | undefined;
|
|
4487
|
+
contentGenerated?: string | null | undefined;
|
|
4488
|
+
contentTransformed?: string | null | undefined;
|
|
4432
4489
|
tool_calls?: {
|
|
4433
4490
|
function: {
|
|
4434
4491
|
name: string;
|
|
@@ -4458,6 +4515,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4458
4515
|
}[] | null | undefined;
|
|
4459
4516
|
ignoreTransform?: boolean | undefined;
|
|
4460
4517
|
mediaUrls?: string[] | null | undefined;
|
|
4518
|
+
contentGenerated?: string | null | undefined;
|
|
4519
|
+
contentTransformed?: string | null | undefined;
|
|
4461
4520
|
tool_calls?: {
|
|
4462
4521
|
function: {
|
|
4463
4522
|
name: string;
|
|
@@ -4534,6 +4593,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4534
4593
|
}[] | null | undefined;
|
|
4535
4594
|
ignoreTransform?: boolean | undefined;
|
|
4536
4595
|
mediaUrls?: string[] | null | undefined;
|
|
4596
|
+
contentGenerated?: string | null | undefined;
|
|
4597
|
+
contentTransformed?: string | null | undefined;
|
|
4537
4598
|
tool_calls?: {
|
|
4538
4599
|
function: {
|
|
4539
4600
|
name: string;
|
|
@@ -4595,6 +4656,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4595
4656
|
}[] | null | undefined;
|
|
4596
4657
|
ignoreTransform?: boolean | undefined;
|
|
4597
4658
|
mediaUrls?: string[] | null | undefined;
|
|
4659
|
+
contentGenerated?: string | null | undefined;
|
|
4660
|
+
contentTransformed?: string | null | undefined;
|
|
4598
4661
|
tool_calls?: {
|
|
4599
4662
|
function: {
|
|
4600
4663
|
name: string;
|
|
@@ -4676,6 +4739,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4676
4739
|
}>, "many">>>;
|
|
4677
4740
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
4678
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>>;
|
|
4679
4744
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4680
4745
|
id: z.ZodString;
|
|
4681
4746
|
type: z.ZodString;
|
|
@@ -4725,6 +4790,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4725
4790
|
}[] | null | undefined;
|
|
4726
4791
|
ignoreTransform?: boolean | undefined;
|
|
4727
4792
|
mediaUrls?: string[] | null | undefined;
|
|
4793
|
+
contentGenerated?: string | null | undefined;
|
|
4794
|
+
contentTransformed?: string | null | undefined;
|
|
4728
4795
|
tool_calls?: {
|
|
4729
4796
|
function: {
|
|
4730
4797
|
name: string;
|
|
@@ -4754,6 +4821,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4754
4821
|
}[] | null | undefined;
|
|
4755
4822
|
ignoreTransform?: boolean | undefined;
|
|
4756
4823
|
mediaUrls?: string[] | null | undefined;
|
|
4824
|
+
contentGenerated?: string | null | undefined;
|
|
4825
|
+
contentTransformed?: string | null | undefined;
|
|
4757
4826
|
tool_calls?: {
|
|
4758
4827
|
function: {
|
|
4759
4828
|
name: string;
|
|
@@ -4830,6 +4899,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4830
4899
|
}[] | null | undefined;
|
|
4831
4900
|
ignoreTransform?: boolean | undefined;
|
|
4832
4901
|
mediaUrls?: string[] | null | undefined;
|
|
4902
|
+
contentGenerated?: string | null | undefined;
|
|
4903
|
+
contentTransformed?: string | null | undefined;
|
|
4833
4904
|
tool_calls?: {
|
|
4834
4905
|
function: {
|
|
4835
4906
|
name: string;
|
|
@@ -4891,6 +4962,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4891
4962
|
}[] | null | undefined;
|
|
4892
4963
|
ignoreTransform?: boolean | undefined;
|
|
4893
4964
|
mediaUrls?: string[] | null | undefined;
|
|
4965
|
+
contentGenerated?: string | null | undefined;
|
|
4966
|
+
contentTransformed?: string | null | undefined;
|
|
4894
4967
|
tool_calls?: {
|
|
4895
4968
|
function: {
|
|
4896
4969
|
name: string;
|
|
@@ -4972,6 +5045,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4972
5045
|
}>, "many">>>;
|
|
4973
5046
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
4974
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>>;
|
|
4975
5050
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4976
5051
|
id: z.ZodString;
|
|
4977
5052
|
type: z.ZodString;
|
|
@@ -5021,6 +5096,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5021
5096
|
}[] | null | undefined;
|
|
5022
5097
|
ignoreTransform?: boolean | undefined;
|
|
5023
5098
|
mediaUrls?: string[] | null | undefined;
|
|
5099
|
+
contentGenerated?: string | null | undefined;
|
|
5100
|
+
contentTransformed?: string | null | undefined;
|
|
5024
5101
|
tool_calls?: {
|
|
5025
5102
|
function: {
|
|
5026
5103
|
name: string;
|
|
@@ -5050,6 +5127,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5050
5127
|
}[] | null | undefined;
|
|
5051
5128
|
ignoreTransform?: boolean | undefined;
|
|
5052
5129
|
mediaUrls?: string[] | null | undefined;
|
|
5130
|
+
contentGenerated?: string | null | undefined;
|
|
5131
|
+
contentTransformed?: string | null | undefined;
|
|
5053
5132
|
tool_calls?: {
|
|
5054
5133
|
function: {
|
|
5055
5134
|
name: string;
|
|
@@ -5126,6 +5205,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5126
5205
|
}[] | null | undefined;
|
|
5127
5206
|
ignoreTransform?: boolean | undefined;
|
|
5128
5207
|
mediaUrls?: string[] | null | undefined;
|
|
5208
|
+
contentGenerated?: string | null | undefined;
|
|
5209
|
+
contentTransformed?: string | null | undefined;
|
|
5129
5210
|
tool_calls?: {
|
|
5130
5211
|
function: {
|
|
5131
5212
|
name: string;
|
|
@@ -5187,6 +5268,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5187
5268
|
}[] | null | undefined;
|
|
5188
5269
|
ignoreTransform?: boolean | undefined;
|
|
5189
5270
|
mediaUrls?: string[] | null | undefined;
|
|
5271
|
+
contentGenerated?: string | null | undefined;
|
|
5272
|
+
contentTransformed?: string | null | undefined;
|
|
5190
5273
|
tool_calls?: {
|
|
5191
5274
|
function: {
|
|
5192
5275
|
name: string;
|
|
@@ -5268,6 +5351,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5268
5351
|
}>, "many">>>;
|
|
5269
5352
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
5270
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>>;
|
|
5271
5356
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5272
5357
|
id: z.ZodString;
|
|
5273
5358
|
type: z.ZodString;
|
|
@@ -5317,6 +5402,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5317
5402
|
}[] | null | undefined;
|
|
5318
5403
|
ignoreTransform?: boolean | undefined;
|
|
5319
5404
|
mediaUrls?: string[] | null | undefined;
|
|
5405
|
+
contentGenerated?: string | null | undefined;
|
|
5406
|
+
contentTransformed?: string | null | undefined;
|
|
5320
5407
|
tool_calls?: {
|
|
5321
5408
|
function: {
|
|
5322
5409
|
name: string;
|
|
@@ -5346,6 +5433,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5346
5433
|
}[] | null | undefined;
|
|
5347
5434
|
ignoreTransform?: boolean | undefined;
|
|
5348
5435
|
mediaUrls?: string[] | null | undefined;
|
|
5436
|
+
contentGenerated?: string | null | undefined;
|
|
5437
|
+
contentTransformed?: string | null | undefined;
|
|
5349
5438
|
tool_calls?: {
|
|
5350
5439
|
function: {
|
|
5351
5440
|
name: string;
|
|
@@ -5420,6 +5509,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5420
5509
|
}[] | null | undefined;
|
|
5421
5510
|
ignoreTransform?: boolean | undefined;
|
|
5422
5511
|
mediaUrls?: string[] | null | undefined;
|
|
5512
|
+
contentGenerated?: string | null | undefined;
|
|
5513
|
+
contentTransformed?: string | null | undefined;
|
|
5423
5514
|
tool_calls?: {
|
|
5424
5515
|
function: {
|
|
5425
5516
|
name: string;
|
|
@@ -5480,6 +5571,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5480
5571
|
}[] | null | undefined;
|
|
5481
5572
|
ignoreTransform?: boolean | undefined;
|
|
5482
5573
|
mediaUrls?: string[] | null | undefined;
|
|
5574
|
+
contentGenerated?: string | null | undefined;
|
|
5575
|
+
contentTransformed?: string | null | undefined;
|
|
5483
5576
|
tool_calls?: {
|
|
5484
5577
|
function: {
|
|
5485
5578
|
name: string;
|
|
@@ -5561,6 +5654,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5561
5654
|
}>, "many">>>;
|
|
5562
5655
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
5563
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>>;
|
|
5564
5659
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5565
5660
|
id: z.ZodString;
|
|
5566
5661
|
type: z.ZodString;
|
|
@@ -5610,6 +5705,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5610
5705
|
}[] | null | undefined;
|
|
5611
5706
|
ignoreTransform?: boolean | undefined;
|
|
5612
5707
|
mediaUrls?: string[] | null | undefined;
|
|
5708
|
+
contentGenerated?: string | null | undefined;
|
|
5709
|
+
contentTransformed?: string | null | undefined;
|
|
5613
5710
|
tool_calls?: {
|
|
5614
5711
|
function: {
|
|
5615
5712
|
name: string;
|
|
@@ -5639,6 +5736,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5639
5736
|
}[] | null | undefined;
|
|
5640
5737
|
ignoreTransform?: boolean | undefined;
|
|
5641
5738
|
mediaUrls?: string[] | null | undefined;
|
|
5739
|
+
contentGenerated?: string | null | undefined;
|
|
5740
|
+
contentTransformed?: string | null | undefined;
|
|
5642
5741
|
tool_calls?: {
|
|
5643
5742
|
function: {
|
|
5644
5743
|
name: string;
|
|
@@ -5713,6 +5812,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5713
5812
|
}[] | null | undefined;
|
|
5714
5813
|
ignoreTransform?: boolean | undefined;
|
|
5715
5814
|
mediaUrls?: string[] | null | undefined;
|
|
5815
|
+
contentGenerated?: string | null | undefined;
|
|
5816
|
+
contentTransformed?: string | null | undefined;
|
|
5716
5817
|
tool_calls?: {
|
|
5717
5818
|
function: {
|
|
5718
5819
|
name: string;
|
|
@@ -5773,6 +5874,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5773
5874
|
}[] | null | undefined;
|
|
5774
5875
|
ignoreTransform?: boolean | undefined;
|
|
5775
5876
|
mediaUrls?: string[] | null | undefined;
|
|
5877
|
+
contentGenerated?: string | null | undefined;
|
|
5878
|
+
contentTransformed?: string | null | undefined;
|
|
5776
5879
|
tool_calls?: {
|
|
5777
5880
|
function: {
|
|
5778
5881
|
name: string;
|
|
@@ -6103,6 +6206,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6103
6206
|
}>, "many">>>;
|
|
6104
6207
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
6105
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>>;
|
|
6106
6211
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6107
6212
|
id: z.ZodString;
|
|
6108
6213
|
type: z.ZodString;
|
|
@@ -6152,6 +6257,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6152
6257
|
}[] | null | undefined;
|
|
6153
6258
|
ignoreTransform?: boolean | undefined;
|
|
6154
6259
|
mediaUrls?: string[] | null | undefined;
|
|
6260
|
+
contentGenerated?: string | null | undefined;
|
|
6261
|
+
contentTransformed?: string | null | undefined;
|
|
6155
6262
|
tool_calls?: {
|
|
6156
6263
|
function: {
|
|
6157
6264
|
name: string;
|
|
@@ -6181,6 +6288,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6181
6288
|
}[] | null | undefined;
|
|
6182
6289
|
ignoreTransform?: boolean | undefined;
|
|
6183
6290
|
mediaUrls?: string[] | null | undefined;
|
|
6291
|
+
contentGenerated?: string | null | undefined;
|
|
6292
|
+
contentTransformed?: string | null | undefined;
|
|
6184
6293
|
tool_calls?: {
|
|
6185
6294
|
function: {
|
|
6186
6295
|
name: string;
|
|
@@ -6354,6 +6463,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6354
6463
|
}>, "many">>>;
|
|
6355
6464
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
6356
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>>;
|
|
6357
6468
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6358
6469
|
id: z.ZodString;
|
|
6359
6470
|
type: z.ZodString;
|
|
@@ -6403,6 +6514,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6403
6514
|
}[] | null | undefined;
|
|
6404
6515
|
ignoreTransform?: boolean | undefined;
|
|
6405
6516
|
mediaUrls?: string[] | null | undefined;
|
|
6517
|
+
contentGenerated?: string | null | undefined;
|
|
6518
|
+
contentTransformed?: string | null | undefined;
|
|
6406
6519
|
tool_calls?: {
|
|
6407
6520
|
function: {
|
|
6408
6521
|
name: string;
|
|
@@ -6432,6 +6545,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6432
6545
|
}[] | null | undefined;
|
|
6433
6546
|
ignoreTransform?: boolean | undefined;
|
|
6434
6547
|
mediaUrls?: string[] | null | undefined;
|
|
6548
|
+
contentGenerated?: string | null | undefined;
|
|
6549
|
+
contentTransformed?: string | null | undefined;
|
|
6435
6550
|
tool_calls?: {
|
|
6436
6551
|
function: {
|
|
6437
6552
|
name: string;
|
|
@@ -6503,6 +6618,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6503
6618
|
}>, "many">>>;
|
|
6504
6619
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
6505
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>>;
|
|
6506
6623
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6507
6624
|
id: z.ZodString;
|
|
6508
6625
|
type: z.ZodString;
|
|
@@ -6552,6 +6669,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6552
6669
|
}[] | null | undefined;
|
|
6553
6670
|
ignoreTransform?: boolean | undefined;
|
|
6554
6671
|
mediaUrls?: string[] | null | undefined;
|
|
6672
|
+
contentGenerated?: string | null | undefined;
|
|
6673
|
+
contentTransformed?: string | null | undefined;
|
|
6555
6674
|
tool_calls?: {
|
|
6556
6675
|
function: {
|
|
6557
6676
|
name: string;
|
|
@@ -6581,6 +6700,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6581
6700
|
}[] | null | undefined;
|
|
6582
6701
|
ignoreTransform?: boolean | undefined;
|
|
6583
6702
|
mediaUrls?: string[] | null | undefined;
|
|
6703
|
+
contentGenerated?: string | null | undefined;
|
|
6704
|
+
contentTransformed?: string | null | undefined;
|
|
6584
6705
|
tool_calls?: {
|
|
6585
6706
|
function: {
|
|
6586
6707
|
name: string;
|
|
@@ -6743,6 +6864,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6743
6864
|
}[] | null | undefined;
|
|
6744
6865
|
ignoreTransform?: boolean | undefined;
|
|
6745
6866
|
mediaUrls?: string[] | null | undefined;
|
|
6867
|
+
contentGenerated?: string | null | undefined;
|
|
6868
|
+
contentTransformed?: string | null | undefined;
|
|
6746
6869
|
tool_calls?: {
|
|
6747
6870
|
function: {
|
|
6748
6871
|
name: string;
|
|
@@ -6818,6 +6941,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6818
6941
|
}[] | null | undefined;
|
|
6819
6942
|
ignoreTransform?: boolean | undefined;
|
|
6820
6943
|
mediaUrls?: string[] | null | undefined;
|
|
6944
|
+
contentGenerated?: string | null | undefined;
|
|
6945
|
+
contentTransformed?: string | null | undefined;
|
|
6821
6946
|
tool_calls?: {
|
|
6822
6947
|
function: {
|
|
6823
6948
|
name: string;
|
|
@@ -6884,6 +7009,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6884
7009
|
}[] | null | undefined;
|
|
6885
7010
|
ignoreTransform?: boolean | undefined;
|
|
6886
7011
|
mediaUrls?: string[] | null | undefined;
|
|
7012
|
+
contentGenerated?: string | null | undefined;
|
|
7013
|
+
contentTransformed?: string | null | undefined;
|
|
6887
7014
|
tool_calls?: {
|
|
6888
7015
|
function: {
|
|
6889
7016
|
name: string;
|
|
@@ -6959,6 +7086,8 @@ declare module '@scout9/app/schemas' {
|
|
|
6959
7086
|
}[] | null | undefined;
|
|
6960
7087
|
ignoreTransform?: boolean | undefined;
|
|
6961
7088
|
mediaUrls?: string[] | null | undefined;
|
|
7089
|
+
contentGenerated?: string | null | undefined;
|
|
7090
|
+
contentTransformed?: string | null | undefined;
|
|
6962
7091
|
tool_calls?: {
|
|
6963
7092
|
function: {
|
|
6964
7093
|
name: string;
|
|
@@ -7037,6 +7166,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7037
7166
|
}>, "many">>>>;
|
|
7038
7167
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
7039
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>>>;
|
|
7040
7171
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7041
7172
|
id: z.ZodString;
|
|
7042
7173
|
type: z.ZodString;
|
|
@@ -7076,6 +7207,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7076
7207
|
delayInSeconds?: number | null | undefined;
|
|
7077
7208
|
ignoreTransform?: boolean | undefined;
|
|
7078
7209
|
mediaUrls?: string[] | null | undefined;
|
|
7210
|
+
contentGenerated?: string | null | undefined;
|
|
7211
|
+
contentTransformed?: string | null | undefined;
|
|
7079
7212
|
tool_calls?: {
|
|
7080
7213
|
function: {
|
|
7081
7214
|
name: string;
|
|
@@ -7095,6 +7228,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7095
7228
|
delayInSeconds?: number | null | undefined;
|
|
7096
7229
|
ignoreTransform?: boolean | undefined;
|
|
7097
7230
|
mediaUrls?: string[] | null | undefined;
|
|
7231
|
+
contentGenerated?: string | null | undefined;
|
|
7232
|
+
contentTransformed?: string | null | undefined;
|
|
7098
7233
|
tool_calls?: {
|
|
7099
7234
|
function: {
|
|
7100
7235
|
name: string;
|
|
@@ -7268,6 +7403,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7268
7403
|
}>, "many">>>>;
|
|
7269
7404
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
7270
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>>>;
|
|
7271
7408
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7272
7409
|
id: z.ZodString;
|
|
7273
7410
|
type: z.ZodString;
|
|
@@ -7307,6 +7444,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7307
7444
|
delayInSeconds?: number | null | undefined;
|
|
7308
7445
|
ignoreTransform?: boolean | undefined;
|
|
7309
7446
|
mediaUrls?: string[] | null | undefined;
|
|
7447
|
+
contentGenerated?: string | null | undefined;
|
|
7448
|
+
contentTransformed?: string | null | undefined;
|
|
7310
7449
|
tool_calls?: {
|
|
7311
7450
|
function: {
|
|
7312
7451
|
name: string;
|
|
@@ -7326,6 +7465,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7326
7465
|
delayInSeconds?: number | null | undefined;
|
|
7327
7466
|
ignoreTransform?: boolean | undefined;
|
|
7328
7467
|
mediaUrls?: string[] | null | undefined;
|
|
7468
|
+
contentGenerated?: string | null | undefined;
|
|
7469
|
+
contentTransformed?: string | null | undefined;
|
|
7329
7470
|
tool_calls?: {
|
|
7330
7471
|
function: {
|
|
7331
7472
|
name: string;
|
|
@@ -7394,6 +7535,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7394
7535
|
delayInSeconds?: number | null | undefined;
|
|
7395
7536
|
ignoreTransform?: boolean | undefined;
|
|
7396
7537
|
mediaUrls?: string[] | null | undefined;
|
|
7538
|
+
contentGenerated?: string | null | undefined;
|
|
7539
|
+
contentTransformed?: string | null | undefined;
|
|
7397
7540
|
tool_calls?: {
|
|
7398
7541
|
function: {
|
|
7399
7542
|
name: string;
|
|
@@ -7462,6 +7605,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7462
7605
|
delayInSeconds?: number | null | undefined;
|
|
7463
7606
|
ignoreTransform?: boolean | undefined;
|
|
7464
7607
|
mediaUrls?: string[] | null | undefined;
|
|
7608
|
+
contentGenerated?: string | null | undefined;
|
|
7609
|
+
contentTransformed?: string | null | undefined;
|
|
7465
7610
|
tool_calls?: {
|
|
7466
7611
|
function: {
|
|
7467
7612
|
name: string;
|
|
@@ -7541,6 +7686,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7541
7686
|
}>, "many">>>>;
|
|
7542
7687
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
7543
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>>>;
|
|
7544
7691
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7545
7692
|
id: z.ZodString;
|
|
7546
7693
|
type: z.ZodString;
|
|
@@ -7580,6 +7727,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7580
7727
|
delayInSeconds?: number | null | undefined;
|
|
7581
7728
|
ignoreTransform?: boolean | undefined;
|
|
7582
7729
|
mediaUrls?: string[] | null | undefined;
|
|
7730
|
+
contentGenerated?: string | null | undefined;
|
|
7731
|
+
contentTransformed?: string | null | undefined;
|
|
7583
7732
|
tool_calls?: {
|
|
7584
7733
|
function: {
|
|
7585
7734
|
name: string;
|
|
@@ -7599,6 +7748,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7599
7748
|
delayInSeconds?: number | null | undefined;
|
|
7600
7749
|
ignoreTransform?: boolean | undefined;
|
|
7601
7750
|
mediaUrls?: string[] | null | undefined;
|
|
7751
|
+
contentGenerated?: string | null | undefined;
|
|
7752
|
+
contentTransformed?: string | null | undefined;
|
|
7602
7753
|
tool_calls?: {
|
|
7603
7754
|
function: {
|
|
7604
7755
|
name: string;
|
|
@@ -7902,6 +8053,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7902
8053
|
}>, "many">>>>;
|
|
7903
8054
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
7904
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>>>;
|
|
7905
8058
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7906
8059
|
id: z.ZodString;
|
|
7907
8060
|
type: z.ZodString;
|
|
@@ -7941,6 +8094,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7941
8094
|
delayInSeconds?: number | null | undefined;
|
|
7942
8095
|
ignoreTransform?: boolean | undefined;
|
|
7943
8096
|
mediaUrls?: string[] | null | undefined;
|
|
8097
|
+
contentGenerated?: string | null | undefined;
|
|
8098
|
+
contentTransformed?: string | null | undefined;
|
|
7944
8099
|
tool_calls?: {
|
|
7945
8100
|
function: {
|
|
7946
8101
|
name: string;
|
|
@@ -7960,6 +8115,8 @@ declare module '@scout9/app/schemas' {
|
|
|
7960
8115
|
delayInSeconds?: number | null | undefined;
|
|
7961
8116
|
ignoreTransform?: boolean | undefined;
|
|
7962
8117
|
mediaUrls?: string[] | null | undefined;
|
|
8118
|
+
contentGenerated?: string | null | undefined;
|
|
8119
|
+
contentTransformed?: string | null | undefined;
|
|
7963
8120
|
tool_calls?: {
|
|
7964
8121
|
function: {
|
|
7965
8122
|
name: string;
|
|
@@ -8028,6 +8185,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8028
8185
|
delayInSeconds?: number | null | undefined;
|
|
8029
8186
|
ignoreTransform?: boolean | undefined;
|
|
8030
8187
|
mediaUrls?: string[] | null | undefined;
|
|
8188
|
+
contentGenerated?: string | null | undefined;
|
|
8189
|
+
contentTransformed?: string | null | undefined;
|
|
8031
8190
|
tool_calls?: {
|
|
8032
8191
|
function: {
|
|
8033
8192
|
name: string;
|
|
@@ -8096,6 +8255,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8096
8255
|
delayInSeconds?: number | null | undefined;
|
|
8097
8256
|
ignoreTransform?: boolean | undefined;
|
|
8098
8257
|
mediaUrls?: string[] | null | undefined;
|
|
8258
|
+
contentGenerated?: string | null | undefined;
|
|
8259
|
+
contentTransformed?: string | null | undefined;
|
|
8099
8260
|
tool_calls?: {
|
|
8100
8261
|
function: {
|
|
8101
8262
|
name: string;
|
|
@@ -8271,6 +8432,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8271
8432
|
}>, "many">>>>;
|
|
8272
8433
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8273
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>>>;
|
|
8274
8437
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8275
8438
|
id: z.ZodString;
|
|
8276
8439
|
type: z.ZodString;
|
|
@@ -8310,6 +8473,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8310
8473
|
delayInSeconds?: number | null | undefined;
|
|
8311
8474
|
ignoreTransform?: boolean | undefined;
|
|
8312
8475
|
mediaUrls?: string[] | null | undefined;
|
|
8476
|
+
contentGenerated?: string | null | undefined;
|
|
8477
|
+
contentTransformed?: string | null | undefined;
|
|
8313
8478
|
tool_calls?: {
|
|
8314
8479
|
function: {
|
|
8315
8480
|
name: string;
|
|
@@ -8329,6 +8494,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8329
8494
|
delayInSeconds?: number | null | undefined;
|
|
8330
8495
|
ignoreTransform?: boolean | undefined;
|
|
8331
8496
|
mediaUrls?: string[] | null | undefined;
|
|
8497
|
+
contentGenerated?: string | null | undefined;
|
|
8498
|
+
contentTransformed?: string | null | undefined;
|
|
8332
8499
|
tool_calls?: {
|
|
8333
8500
|
function: {
|
|
8334
8501
|
name: string;
|
|
@@ -8397,6 +8564,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8397
8564
|
delayInSeconds?: number | null | undefined;
|
|
8398
8565
|
ignoreTransform?: boolean | undefined;
|
|
8399
8566
|
mediaUrls?: string[] | null | undefined;
|
|
8567
|
+
contentGenerated?: string | null | undefined;
|
|
8568
|
+
contentTransformed?: string | null | undefined;
|
|
8400
8569
|
tool_calls?: {
|
|
8401
8570
|
function: {
|
|
8402
8571
|
name: string;
|
|
@@ -8465,6 +8634,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8465
8634
|
delayInSeconds?: number | null | undefined;
|
|
8466
8635
|
ignoreTransform?: boolean | undefined;
|
|
8467
8636
|
mediaUrls?: string[] | null | undefined;
|
|
8637
|
+
contentGenerated?: string | null | undefined;
|
|
8638
|
+
contentTransformed?: string | null | undefined;
|
|
8468
8639
|
tool_calls?: {
|
|
8469
8640
|
function: {
|
|
8470
8641
|
name: string;
|
|
@@ -8536,6 +8707,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8536
8707
|
delayInSeconds?: number | null | undefined;
|
|
8537
8708
|
ignoreTransform?: boolean | undefined;
|
|
8538
8709
|
mediaUrls?: string[] | null | undefined;
|
|
8710
|
+
contentGenerated?: string | null | undefined;
|
|
8711
|
+
contentTransformed?: string | null | undefined;
|
|
8539
8712
|
tool_calls?: {
|
|
8540
8713
|
function: {
|
|
8541
8714
|
name: string;
|
|
@@ -8605,6 +8778,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8605
8778
|
delayInSeconds?: number | null | undefined;
|
|
8606
8779
|
ignoreTransform?: boolean | undefined;
|
|
8607
8780
|
mediaUrls?: string[] | null | undefined;
|
|
8781
|
+
contentGenerated?: string | null | undefined;
|
|
8782
|
+
contentTransformed?: string | null | undefined;
|
|
8608
8783
|
tool_calls?: {
|
|
8609
8784
|
function: {
|
|
8610
8785
|
name: string;
|
|
@@ -8676,6 +8851,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8676
8851
|
delayInSeconds?: number | null | undefined;
|
|
8677
8852
|
ignoreTransform?: boolean | undefined;
|
|
8678
8853
|
mediaUrls?: string[] | null | undefined;
|
|
8854
|
+
contentGenerated?: string | null | undefined;
|
|
8855
|
+
contentTransformed?: string | null | undefined;
|
|
8679
8856
|
tool_calls?: {
|
|
8680
8857
|
function: {
|
|
8681
8858
|
name: string;
|
|
@@ -8745,6 +8922,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8745
8922
|
delayInSeconds?: number | null | undefined;
|
|
8746
8923
|
ignoreTransform?: boolean | undefined;
|
|
8747
8924
|
mediaUrls?: string[] | null | undefined;
|
|
8925
|
+
contentGenerated?: string | null | undefined;
|
|
8926
|
+
contentTransformed?: string | null | undefined;
|
|
8748
8927
|
tool_calls?: {
|
|
8749
8928
|
function: {
|
|
8750
8929
|
name: string;
|
|
@@ -8793,6 +8972,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8793
8972
|
}>, "many">>>>;
|
|
8794
8973
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8795
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>>>;
|
|
8796
8977
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8797
8978
|
id: z.ZodString;
|
|
8798
8979
|
type: z.ZodString;
|
|
@@ -8832,6 +9013,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8832
9013
|
delayInSeconds?: number | null | undefined;
|
|
8833
9014
|
ignoreTransform?: boolean | undefined;
|
|
8834
9015
|
mediaUrls?: string[] | null | undefined;
|
|
9016
|
+
contentGenerated?: string | null | undefined;
|
|
9017
|
+
contentTransformed?: string | null | undefined;
|
|
8835
9018
|
tool_calls?: {
|
|
8836
9019
|
function: {
|
|
8837
9020
|
name: string;
|
|
@@ -8851,6 +9034,8 @@ declare module '@scout9/app/schemas' {
|
|
|
8851
9034
|
delayInSeconds?: number | null | undefined;
|
|
8852
9035
|
ignoreTransform?: boolean | undefined;
|
|
8853
9036
|
mediaUrls?: string[] | null | undefined;
|
|
9037
|
+
contentGenerated?: string | null | undefined;
|
|
9038
|
+
contentTransformed?: string | null | undefined;
|
|
8854
9039
|
tool_calls?: {
|
|
8855
9040
|
function: {
|
|
8856
9041
|
name: string;
|
|
@@ -9005,6 +9190,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9005
9190
|
delayInSeconds?: number | null | undefined;
|
|
9006
9191
|
ignoreTransform?: boolean | undefined;
|
|
9007
9192
|
mediaUrls?: string[] | null | undefined;
|
|
9193
|
+
contentGenerated?: string | null | undefined;
|
|
9194
|
+
contentTransformed?: string | null | undefined;
|
|
9008
9195
|
tool_calls?: {
|
|
9009
9196
|
function: {
|
|
9010
9197
|
name: string;
|
|
@@ -9074,6 +9261,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9074
9261
|
delayInSeconds?: number | null | undefined;
|
|
9075
9262
|
ignoreTransform?: boolean | undefined;
|
|
9076
9263
|
mediaUrls?: string[] | null | undefined;
|
|
9264
|
+
contentGenerated?: string | null | undefined;
|
|
9265
|
+
contentTransformed?: string | null | undefined;
|
|
9077
9266
|
tool_calls?: {
|
|
9078
9267
|
function: {
|
|
9079
9268
|
name: string;
|
|
@@ -9172,6 +9361,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9172
9361
|
delayInSeconds?: number | null | undefined;
|
|
9173
9362
|
ignoreTransform?: boolean | undefined;
|
|
9174
9363
|
mediaUrls?: string[] | null | undefined;
|
|
9364
|
+
contentGenerated?: string | null | undefined;
|
|
9365
|
+
contentTransformed?: string | null | undefined;
|
|
9175
9366
|
tool_calls?: {
|
|
9176
9367
|
function: {
|
|
9177
9368
|
name: string;
|
|
@@ -9285,6 +9476,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9285
9476
|
delayInSeconds?: number | null | undefined;
|
|
9286
9477
|
ignoreTransform?: boolean | undefined;
|
|
9287
9478
|
mediaUrls?: string[] | null | undefined;
|
|
9479
|
+
contentGenerated?: string | null | undefined;
|
|
9480
|
+
contentTransformed?: string | null | undefined;
|
|
9288
9481
|
tool_calls?: {
|
|
9289
9482
|
function: {
|
|
9290
9483
|
name: string;
|
|
@@ -9354,6 +9547,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9354
9547
|
delayInSeconds?: number | null | undefined;
|
|
9355
9548
|
ignoreTransform?: boolean | undefined;
|
|
9356
9549
|
mediaUrls?: string[] | null | undefined;
|
|
9550
|
+
contentGenerated?: string | null | undefined;
|
|
9551
|
+
contentTransformed?: string | null | undefined;
|
|
9357
9552
|
tool_calls?: {
|
|
9358
9553
|
function: {
|
|
9359
9554
|
name: string;
|
|
@@ -9381,6 +9576,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9381
9576
|
delayInSeconds?: number | null | undefined;
|
|
9382
9577
|
ignoreTransform?: boolean | undefined;
|
|
9383
9578
|
mediaUrls?: string[] | null | undefined;
|
|
9579
|
+
contentGenerated?: string | null | undefined;
|
|
9580
|
+
contentTransformed?: string | null | undefined;
|
|
9384
9581
|
tool_calls?: {
|
|
9385
9582
|
function: {
|
|
9386
9583
|
name: string;
|
|
@@ -9461,6 +9658,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9461
9658
|
delayInSeconds?: number | null | undefined;
|
|
9462
9659
|
ignoreTransform?: boolean | undefined;
|
|
9463
9660
|
mediaUrls?: string[] | null | undefined;
|
|
9661
|
+
contentGenerated?: string | null | undefined;
|
|
9662
|
+
contentTransformed?: string | null | undefined;
|
|
9464
9663
|
tool_calls?: {
|
|
9465
9664
|
function: {
|
|
9466
9665
|
name: string;
|
|
@@ -9574,6 +9773,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9574
9773
|
delayInSeconds?: number | null | undefined;
|
|
9575
9774
|
ignoreTransform?: boolean | undefined;
|
|
9576
9775
|
mediaUrls?: string[] | null | undefined;
|
|
9776
|
+
contentGenerated?: string | null | undefined;
|
|
9777
|
+
contentTransformed?: string | null | undefined;
|
|
9577
9778
|
tool_calls?: {
|
|
9578
9779
|
function: {
|
|
9579
9780
|
name: string;
|
|
@@ -9643,6 +9844,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9643
9844
|
delayInSeconds?: number | null | undefined;
|
|
9644
9845
|
ignoreTransform?: boolean | undefined;
|
|
9645
9846
|
mediaUrls?: string[] | null | undefined;
|
|
9847
|
+
contentGenerated?: string | null | undefined;
|
|
9848
|
+
contentTransformed?: string | null | undefined;
|
|
9646
9849
|
tool_calls?: {
|
|
9647
9850
|
function: {
|
|
9648
9851
|
name: string;
|
|
@@ -9670,6 +9873,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9670
9873
|
delayInSeconds?: number | null | undefined;
|
|
9671
9874
|
ignoreTransform?: boolean | undefined;
|
|
9672
9875
|
mediaUrls?: string[] | null | undefined;
|
|
9876
|
+
contentGenerated?: string | null | undefined;
|
|
9877
|
+
contentTransformed?: string | null | undefined;
|
|
9673
9878
|
tool_calls?: {
|
|
9674
9879
|
function: {
|
|
9675
9880
|
name: string;
|
|
@@ -9776,6 +9981,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9776
9981
|
}>, "many">>>>;
|
|
9777
9982
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
9778
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>>>;
|
|
9779
9986
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9780
9987
|
id: z.ZodString;
|
|
9781
9988
|
type: z.ZodString;
|
|
@@ -9815,6 +10022,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9815
10022
|
delayInSeconds?: number | null | undefined;
|
|
9816
10023
|
ignoreTransform?: boolean | undefined;
|
|
9817
10024
|
mediaUrls?: string[] | null | undefined;
|
|
10025
|
+
contentGenerated?: string | null | undefined;
|
|
10026
|
+
contentTransformed?: string | null | undefined;
|
|
9818
10027
|
tool_calls?: {
|
|
9819
10028
|
function: {
|
|
9820
10029
|
name: string;
|
|
@@ -9834,6 +10043,8 @@ declare module '@scout9/app/schemas' {
|
|
|
9834
10043
|
delayInSeconds?: number | null | undefined;
|
|
9835
10044
|
ignoreTransform?: boolean | undefined;
|
|
9836
10045
|
mediaUrls?: string[] | null | undefined;
|
|
10046
|
+
contentGenerated?: string | null | undefined;
|
|
10047
|
+
contentTransformed?: string | null | undefined;
|
|
9837
10048
|
tool_calls?: {
|
|
9838
10049
|
function: {
|
|
9839
10050
|
name: string;
|
|
@@ -10137,6 +10348,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10137
10348
|
}>, "many">>>>;
|
|
10138
10349
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
10139
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>>>;
|
|
10140
10353
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10141
10354
|
id: z.ZodString;
|
|
10142
10355
|
type: z.ZodString;
|
|
@@ -10176,6 +10389,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10176
10389
|
delayInSeconds?: number | null | undefined;
|
|
10177
10390
|
ignoreTransform?: boolean | undefined;
|
|
10178
10391
|
mediaUrls?: string[] | null | undefined;
|
|
10392
|
+
contentGenerated?: string | null | undefined;
|
|
10393
|
+
contentTransformed?: string | null | undefined;
|
|
10179
10394
|
tool_calls?: {
|
|
10180
10395
|
function: {
|
|
10181
10396
|
name: string;
|
|
@@ -10195,6 +10410,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10195
10410
|
delayInSeconds?: number | null | undefined;
|
|
10196
10411
|
ignoreTransform?: boolean | undefined;
|
|
10197
10412
|
mediaUrls?: string[] | null | undefined;
|
|
10413
|
+
contentGenerated?: string | null | undefined;
|
|
10414
|
+
contentTransformed?: string | null | undefined;
|
|
10198
10415
|
tool_calls?: {
|
|
10199
10416
|
function: {
|
|
10200
10417
|
name: string;
|
|
@@ -10263,6 +10480,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10263
10480
|
delayInSeconds?: number | null | undefined;
|
|
10264
10481
|
ignoreTransform?: boolean | undefined;
|
|
10265
10482
|
mediaUrls?: string[] | null | undefined;
|
|
10483
|
+
contentGenerated?: string | null | undefined;
|
|
10484
|
+
contentTransformed?: string | null | undefined;
|
|
10266
10485
|
tool_calls?: {
|
|
10267
10486
|
function: {
|
|
10268
10487
|
name: string;
|
|
@@ -10331,6 +10550,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10331
10550
|
delayInSeconds?: number | null | undefined;
|
|
10332
10551
|
ignoreTransform?: boolean | undefined;
|
|
10333
10552
|
mediaUrls?: string[] | null | undefined;
|
|
10553
|
+
contentGenerated?: string | null | undefined;
|
|
10554
|
+
contentTransformed?: string | null | undefined;
|
|
10334
10555
|
tool_calls?: {
|
|
10335
10556
|
function: {
|
|
10336
10557
|
name: string;
|
|
@@ -10506,6 +10727,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10506
10727
|
}>, "many">>>>;
|
|
10507
10728
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
10508
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>>>;
|
|
10509
10732
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10510
10733
|
id: z.ZodString;
|
|
10511
10734
|
type: z.ZodString;
|
|
@@ -10545,6 +10768,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10545
10768
|
delayInSeconds?: number | null | undefined;
|
|
10546
10769
|
ignoreTransform?: boolean | undefined;
|
|
10547
10770
|
mediaUrls?: string[] | null | undefined;
|
|
10771
|
+
contentGenerated?: string | null | undefined;
|
|
10772
|
+
contentTransformed?: string | null | undefined;
|
|
10548
10773
|
tool_calls?: {
|
|
10549
10774
|
function: {
|
|
10550
10775
|
name: string;
|
|
@@ -10564,6 +10789,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10564
10789
|
delayInSeconds?: number | null | undefined;
|
|
10565
10790
|
ignoreTransform?: boolean | undefined;
|
|
10566
10791
|
mediaUrls?: string[] | null | undefined;
|
|
10792
|
+
contentGenerated?: string | null | undefined;
|
|
10793
|
+
contentTransformed?: string | null | undefined;
|
|
10567
10794
|
tool_calls?: {
|
|
10568
10795
|
function: {
|
|
10569
10796
|
name: string;
|
|
@@ -10632,6 +10859,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10632
10859
|
delayInSeconds?: number | null | undefined;
|
|
10633
10860
|
ignoreTransform?: boolean | undefined;
|
|
10634
10861
|
mediaUrls?: string[] | null | undefined;
|
|
10862
|
+
contentGenerated?: string | null | undefined;
|
|
10863
|
+
contentTransformed?: string | null | undefined;
|
|
10635
10864
|
tool_calls?: {
|
|
10636
10865
|
function: {
|
|
10637
10866
|
name: string;
|
|
@@ -10700,6 +10929,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10700
10929
|
delayInSeconds?: number | null | undefined;
|
|
10701
10930
|
ignoreTransform?: boolean | undefined;
|
|
10702
10931
|
mediaUrls?: string[] | null | undefined;
|
|
10932
|
+
contentGenerated?: string | null | undefined;
|
|
10933
|
+
contentTransformed?: string | null | undefined;
|
|
10703
10934
|
tool_calls?: {
|
|
10704
10935
|
function: {
|
|
10705
10936
|
name: string;
|
|
@@ -10771,6 +11002,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10771
11002
|
delayInSeconds?: number | null | undefined;
|
|
10772
11003
|
ignoreTransform?: boolean | undefined;
|
|
10773
11004
|
mediaUrls?: string[] | null | undefined;
|
|
11005
|
+
contentGenerated?: string | null | undefined;
|
|
11006
|
+
contentTransformed?: string | null | undefined;
|
|
10774
11007
|
tool_calls?: {
|
|
10775
11008
|
function: {
|
|
10776
11009
|
name: string;
|
|
@@ -10840,6 +11073,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10840
11073
|
delayInSeconds?: number | null | undefined;
|
|
10841
11074
|
ignoreTransform?: boolean | undefined;
|
|
10842
11075
|
mediaUrls?: string[] | null | undefined;
|
|
11076
|
+
contentGenerated?: string | null | undefined;
|
|
11077
|
+
contentTransformed?: string | null | undefined;
|
|
10843
11078
|
tool_calls?: {
|
|
10844
11079
|
function: {
|
|
10845
11080
|
name: string;
|
|
@@ -10911,6 +11146,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10911
11146
|
delayInSeconds?: number | null | undefined;
|
|
10912
11147
|
ignoreTransform?: boolean | undefined;
|
|
10913
11148
|
mediaUrls?: string[] | null | undefined;
|
|
11149
|
+
contentGenerated?: string | null | undefined;
|
|
11150
|
+
contentTransformed?: string | null | undefined;
|
|
10914
11151
|
tool_calls?: {
|
|
10915
11152
|
function: {
|
|
10916
11153
|
name: string;
|
|
@@ -10980,6 +11217,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10980
11217
|
delayInSeconds?: number | null | undefined;
|
|
10981
11218
|
ignoreTransform?: boolean | undefined;
|
|
10982
11219
|
mediaUrls?: string[] | null | undefined;
|
|
11220
|
+
contentGenerated?: string | null | undefined;
|
|
11221
|
+
contentTransformed?: string | null | undefined;
|
|
10983
11222
|
tool_calls?: {
|
|
10984
11223
|
function: {
|
|
10985
11224
|
name: string;
|
|
@@ -11028,6 +11267,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11028
11267
|
}>, "many">>>>;
|
|
11029
11268
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11030
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>>>;
|
|
11031
11272
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11032
11273
|
id: z.ZodString;
|
|
11033
11274
|
type: z.ZodString;
|
|
@@ -11067,6 +11308,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11067
11308
|
delayInSeconds?: number | null | undefined;
|
|
11068
11309
|
ignoreTransform?: boolean | undefined;
|
|
11069
11310
|
mediaUrls?: string[] | null | undefined;
|
|
11311
|
+
contentGenerated?: string | null | undefined;
|
|
11312
|
+
contentTransformed?: string | null | undefined;
|
|
11070
11313
|
tool_calls?: {
|
|
11071
11314
|
function: {
|
|
11072
11315
|
name: string;
|
|
@@ -11086,6 +11329,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11086
11329
|
delayInSeconds?: number | null | undefined;
|
|
11087
11330
|
ignoreTransform?: boolean | undefined;
|
|
11088
11331
|
mediaUrls?: string[] | null | undefined;
|
|
11332
|
+
contentGenerated?: string | null | undefined;
|
|
11333
|
+
contentTransformed?: string | null | undefined;
|
|
11089
11334
|
tool_calls?: {
|
|
11090
11335
|
function: {
|
|
11091
11336
|
name: string;
|
|
@@ -11240,6 +11485,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11240
11485
|
delayInSeconds?: number | null | undefined;
|
|
11241
11486
|
ignoreTransform?: boolean | undefined;
|
|
11242
11487
|
mediaUrls?: string[] | null | undefined;
|
|
11488
|
+
contentGenerated?: string | null | undefined;
|
|
11489
|
+
contentTransformed?: string | null | undefined;
|
|
11243
11490
|
tool_calls?: {
|
|
11244
11491
|
function: {
|
|
11245
11492
|
name: string;
|
|
@@ -11309,6 +11556,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11309
11556
|
delayInSeconds?: number | null | undefined;
|
|
11310
11557
|
ignoreTransform?: boolean | undefined;
|
|
11311
11558
|
mediaUrls?: string[] | null | undefined;
|
|
11559
|
+
contentGenerated?: string | null | undefined;
|
|
11560
|
+
contentTransformed?: string | null | undefined;
|
|
11312
11561
|
tool_calls?: {
|
|
11313
11562
|
function: {
|
|
11314
11563
|
name: string;
|
|
@@ -11407,6 +11656,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11407
11656
|
delayInSeconds?: number | null | undefined;
|
|
11408
11657
|
ignoreTransform?: boolean | undefined;
|
|
11409
11658
|
mediaUrls?: string[] | null | undefined;
|
|
11659
|
+
contentGenerated?: string | null | undefined;
|
|
11660
|
+
contentTransformed?: string | null | undefined;
|
|
11410
11661
|
tool_calls?: {
|
|
11411
11662
|
function: {
|
|
11412
11663
|
name: string;
|
|
@@ -11520,6 +11771,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11520
11771
|
delayInSeconds?: number | null | undefined;
|
|
11521
11772
|
ignoreTransform?: boolean | undefined;
|
|
11522
11773
|
mediaUrls?: string[] | null | undefined;
|
|
11774
|
+
contentGenerated?: string | null | undefined;
|
|
11775
|
+
contentTransformed?: string | null | undefined;
|
|
11523
11776
|
tool_calls?: {
|
|
11524
11777
|
function: {
|
|
11525
11778
|
name: string;
|
|
@@ -11589,6 +11842,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11589
11842
|
delayInSeconds?: number | null | undefined;
|
|
11590
11843
|
ignoreTransform?: boolean | undefined;
|
|
11591
11844
|
mediaUrls?: string[] | null | undefined;
|
|
11845
|
+
contentGenerated?: string | null | undefined;
|
|
11846
|
+
contentTransformed?: string | null | undefined;
|
|
11592
11847
|
tool_calls?: {
|
|
11593
11848
|
function: {
|
|
11594
11849
|
name: string;
|
|
@@ -11616,6 +11871,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11616
11871
|
delayInSeconds?: number | null | undefined;
|
|
11617
11872
|
ignoreTransform?: boolean | undefined;
|
|
11618
11873
|
mediaUrls?: string[] | null | undefined;
|
|
11874
|
+
contentGenerated?: string | null | undefined;
|
|
11875
|
+
contentTransformed?: string | null | undefined;
|
|
11619
11876
|
tool_calls?: {
|
|
11620
11877
|
function: {
|
|
11621
11878
|
name: string;
|
|
@@ -11696,6 +11953,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11696
11953
|
delayInSeconds?: number | null | undefined;
|
|
11697
11954
|
ignoreTransform?: boolean | undefined;
|
|
11698
11955
|
mediaUrls?: string[] | null | undefined;
|
|
11956
|
+
contentGenerated?: string | null | undefined;
|
|
11957
|
+
contentTransformed?: string | null | undefined;
|
|
11699
11958
|
tool_calls?: {
|
|
11700
11959
|
function: {
|
|
11701
11960
|
name: string;
|
|
@@ -11809,6 +12068,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11809
12068
|
delayInSeconds?: number | null | undefined;
|
|
11810
12069
|
ignoreTransform?: boolean | undefined;
|
|
11811
12070
|
mediaUrls?: string[] | null | undefined;
|
|
12071
|
+
contentGenerated?: string | null | undefined;
|
|
12072
|
+
contentTransformed?: string | null | undefined;
|
|
11812
12073
|
tool_calls?: {
|
|
11813
12074
|
function: {
|
|
11814
12075
|
name: string;
|
|
@@ -11878,6 +12139,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11878
12139
|
delayInSeconds?: number | null | undefined;
|
|
11879
12140
|
ignoreTransform?: boolean | undefined;
|
|
11880
12141
|
mediaUrls?: string[] | null | undefined;
|
|
12142
|
+
contentGenerated?: string | null | undefined;
|
|
12143
|
+
contentTransformed?: string | null | undefined;
|
|
11881
12144
|
tool_calls?: {
|
|
11882
12145
|
function: {
|
|
11883
12146
|
name: string;
|
|
@@ -11905,6 +12168,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11905
12168
|
delayInSeconds?: number | null | undefined;
|
|
11906
12169
|
ignoreTransform?: boolean | undefined;
|
|
11907
12170
|
mediaUrls?: string[] | null | undefined;
|
|
12171
|
+
contentGenerated?: string | null | undefined;
|
|
12172
|
+
contentTransformed?: string | null | undefined;
|
|
11908
12173
|
tool_calls?: {
|
|
11909
12174
|
function: {
|
|
11910
12175
|
name: string;
|
|
@@ -12007,6 +12272,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12007
12272
|
}>, "many">>>>;
|
|
12008
12273
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
12009
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>>>;
|
|
12010
12277
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12011
12278
|
id: z.ZodString;
|
|
12012
12279
|
type: z.ZodString;
|
|
@@ -12046,6 +12313,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12046
12313
|
delayInSeconds?: number | null | undefined;
|
|
12047
12314
|
ignoreTransform?: boolean | undefined;
|
|
12048
12315
|
mediaUrls?: string[] | null | undefined;
|
|
12316
|
+
contentGenerated?: string | null | undefined;
|
|
12317
|
+
contentTransformed?: string | null | undefined;
|
|
12049
12318
|
tool_calls?: {
|
|
12050
12319
|
function: {
|
|
12051
12320
|
name: string;
|
|
@@ -12065,6 +12334,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12065
12334
|
delayInSeconds?: number | null | undefined;
|
|
12066
12335
|
ignoreTransform?: boolean | undefined;
|
|
12067
12336
|
mediaUrls?: string[] | null | undefined;
|
|
12337
|
+
contentGenerated?: string | null | undefined;
|
|
12338
|
+
contentTransformed?: string | null | undefined;
|
|
12068
12339
|
tool_calls?: {
|
|
12069
12340
|
function: {
|
|
12070
12341
|
name: string;
|
|
@@ -12368,6 +12639,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12368
12639
|
}>, "many">>>>;
|
|
12369
12640
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
12370
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>>>;
|
|
12371
12644
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12372
12645
|
id: z.ZodString;
|
|
12373
12646
|
type: z.ZodString;
|
|
@@ -12407,6 +12680,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12407
12680
|
delayInSeconds?: number | null | undefined;
|
|
12408
12681
|
ignoreTransform?: boolean | undefined;
|
|
12409
12682
|
mediaUrls?: string[] | null | undefined;
|
|
12683
|
+
contentGenerated?: string | null | undefined;
|
|
12684
|
+
contentTransformed?: string | null | undefined;
|
|
12410
12685
|
tool_calls?: {
|
|
12411
12686
|
function: {
|
|
12412
12687
|
name: string;
|
|
@@ -12426,6 +12701,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12426
12701
|
delayInSeconds?: number | null | undefined;
|
|
12427
12702
|
ignoreTransform?: boolean | undefined;
|
|
12428
12703
|
mediaUrls?: string[] | null | undefined;
|
|
12704
|
+
contentGenerated?: string | null | undefined;
|
|
12705
|
+
contentTransformed?: string | null | undefined;
|
|
12429
12706
|
tool_calls?: {
|
|
12430
12707
|
function: {
|
|
12431
12708
|
name: string;
|
|
@@ -12494,6 +12771,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12494
12771
|
delayInSeconds?: number | null | undefined;
|
|
12495
12772
|
ignoreTransform?: boolean | undefined;
|
|
12496
12773
|
mediaUrls?: string[] | null | undefined;
|
|
12774
|
+
contentGenerated?: string | null | undefined;
|
|
12775
|
+
contentTransformed?: string | null | undefined;
|
|
12497
12776
|
tool_calls?: {
|
|
12498
12777
|
function: {
|
|
12499
12778
|
name: string;
|
|
@@ -12562,6 +12841,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12562
12841
|
delayInSeconds?: number | null | undefined;
|
|
12563
12842
|
ignoreTransform?: boolean | undefined;
|
|
12564
12843
|
mediaUrls?: string[] | null | undefined;
|
|
12844
|
+
contentGenerated?: string | null | undefined;
|
|
12845
|
+
contentTransformed?: string | null | undefined;
|
|
12565
12846
|
tool_calls?: {
|
|
12566
12847
|
function: {
|
|
12567
12848
|
name: string;
|
|
@@ -12737,6 +13018,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12737
13018
|
}>, "many">>>>;
|
|
12738
13019
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
12739
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>>>;
|
|
12740
13023
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12741
13024
|
id: z.ZodString;
|
|
12742
13025
|
type: z.ZodString;
|
|
@@ -12776,6 +13059,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12776
13059
|
delayInSeconds?: number | null | undefined;
|
|
12777
13060
|
ignoreTransform?: boolean | undefined;
|
|
12778
13061
|
mediaUrls?: string[] | null | undefined;
|
|
13062
|
+
contentGenerated?: string | null | undefined;
|
|
13063
|
+
contentTransformed?: string | null | undefined;
|
|
12779
13064
|
tool_calls?: {
|
|
12780
13065
|
function: {
|
|
12781
13066
|
name: string;
|
|
@@ -12795,6 +13080,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12795
13080
|
delayInSeconds?: number | null | undefined;
|
|
12796
13081
|
ignoreTransform?: boolean | undefined;
|
|
12797
13082
|
mediaUrls?: string[] | null | undefined;
|
|
13083
|
+
contentGenerated?: string | null | undefined;
|
|
13084
|
+
contentTransformed?: string | null | undefined;
|
|
12798
13085
|
tool_calls?: {
|
|
12799
13086
|
function: {
|
|
12800
13087
|
name: string;
|
|
@@ -12863,6 +13150,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12863
13150
|
delayInSeconds?: number | null | undefined;
|
|
12864
13151
|
ignoreTransform?: boolean | undefined;
|
|
12865
13152
|
mediaUrls?: string[] | null | undefined;
|
|
13153
|
+
contentGenerated?: string | null | undefined;
|
|
13154
|
+
contentTransformed?: string | null | undefined;
|
|
12866
13155
|
tool_calls?: {
|
|
12867
13156
|
function: {
|
|
12868
13157
|
name: string;
|
|
@@ -12931,6 +13220,8 @@ declare module '@scout9/app/schemas' {
|
|
|
12931
13220
|
delayInSeconds?: number | null | undefined;
|
|
12932
13221
|
ignoreTransform?: boolean | undefined;
|
|
12933
13222
|
mediaUrls?: string[] | null | undefined;
|
|
13223
|
+
contentGenerated?: string | null | undefined;
|
|
13224
|
+
contentTransformed?: string | null | undefined;
|
|
12934
13225
|
tool_calls?: {
|
|
12935
13226
|
function: {
|
|
12936
13227
|
name: string;
|
|
@@ -13002,6 +13293,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13002
13293
|
delayInSeconds?: number | null | undefined;
|
|
13003
13294
|
ignoreTransform?: boolean | undefined;
|
|
13004
13295
|
mediaUrls?: string[] | null | undefined;
|
|
13296
|
+
contentGenerated?: string | null | undefined;
|
|
13297
|
+
contentTransformed?: string | null | undefined;
|
|
13005
13298
|
tool_calls?: {
|
|
13006
13299
|
function: {
|
|
13007
13300
|
name: string;
|
|
@@ -13071,6 +13364,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13071
13364
|
delayInSeconds?: number | null | undefined;
|
|
13072
13365
|
ignoreTransform?: boolean | undefined;
|
|
13073
13366
|
mediaUrls?: string[] | null | undefined;
|
|
13367
|
+
contentGenerated?: string | null | undefined;
|
|
13368
|
+
contentTransformed?: string | null | undefined;
|
|
13074
13369
|
tool_calls?: {
|
|
13075
13370
|
function: {
|
|
13076
13371
|
name: string;
|
|
@@ -13142,6 +13437,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13142
13437
|
delayInSeconds?: number | null | undefined;
|
|
13143
13438
|
ignoreTransform?: boolean | undefined;
|
|
13144
13439
|
mediaUrls?: string[] | null | undefined;
|
|
13440
|
+
contentGenerated?: string | null | undefined;
|
|
13441
|
+
contentTransformed?: string | null | undefined;
|
|
13145
13442
|
tool_calls?: {
|
|
13146
13443
|
function: {
|
|
13147
13444
|
name: string;
|
|
@@ -13211,6 +13508,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13211
13508
|
delayInSeconds?: number | null | undefined;
|
|
13212
13509
|
ignoreTransform?: boolean | undefined;
|
|
13213
13510
|
mediaUrls?: string[] | null | undefined;
|
|
13511
|
+
contentGenerated?: string | null | undefined;
|
|
13512
|
+
contentTransformed?: string | null | undefined;
|
|
13214
13513
|
tool_calls?: {
|
|
13215
13514
|
function: {
|
|
13216
13515
|
name: string;
|
|
@@ -13259,6 +13558,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13259
13558
|
}>, "many">>>>;
|
|
13260
13559
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
13261
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>>>;
|
|
13262
13563
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13263
13564
|
id: z.ZodString;
|
|
13264
13565
|
type: z.ZodString;
|
|
@@ -13298,6 +13599,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13298
13599
|
delayInSeconds?: number | null | undefined;
|
|
13299
13600
|
ignoreTransform?: boolean | undefined;
|
|
13300
13601
|
mediaUrls?: string[] | null | undefined;
|
|
13602
|
+
contentGenerated?: string | null | undefined;
|
|
13603
|
+
contentTransformed?: string | null | undefined;
|
|
13301
13604
|
tool_calls?: {
|
|
13302
13605
|
function: {
|
|
13303
13606
|
name: string;
|
|
@@ -13317,6 +13620,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13317
13620
|
delayInSeconds?: number | null | undefined;
|
|
13318
13621
|
ignoreTransform?: boolean | undefined;
|
|
13319
13622
|
mediaUrls?: string[] | null | undefined;
|
|
13623
|
+
contentGenerated?: string | null | undefined;
|
|
13624
|
+
contentTransformed?: string | null | undefined;
|
|
13320
13625
|
tool_calls?: {
|
|
13321
13626
|
function: {
|
|
13322
13627
|
name: string;
|
|
@@ -13471,6 +13776,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13471
13776
|
delayInSeconds?: number | null | undefined;
|
|
13472
13777
|
ignoreTransform?: boolean | undefined;
|
|
13473
13778
|
mediaUrls?: string[] | null | undefined;
|
|
13779
|
+
contentGenerated?: string | null | undefined;
|
|
13780
|
+
contentTransformed?: string | null | undefined;
|
|
13474
13781
|
tool_calls?: {
|
|
13475
13782
|
function: {
|
|
13476
13783
|
name: string;
|
|
@@ -13540,6 +13847,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13540
13847
|
delayInSeconds?: number | null | undefined;
|
|
13541
13848
|
ignoreTransform?: boolean | undefined;
|
|
13542
13849
|
mediaUrls?: string[] | null | undefined;
|
|
13850
|
+
contentGenerated?: string | null | undefined;
|
|
13851
|
+
contentTransformed?: string | null | undefined;
|
|
13543
13852
|
tool_calls?: {
|
|
13544
13853
|
function: {
|
|
13545
13854
|
name: string;
|
|
@@ -13638,6 +13947,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13638
13947
|
delayInSeconds?: number | null | undefined;
|
|
13639
13948
|
ignoreTransform?: boolean | undefined;
|
|
13640
13949
|
mediaUrls?: string[] | null | undefined;
|
|
13950
|
+
contentGenerated?: string | null | undefined;
|
|
13951
|
+
contentTransformed?: string | null | undefined;
|
|
13641
13952
|
tool_calls?: {
|
|
13642
13953
|
function: {
|
|
13643
13954
|
name: string;
|
|
@@ -13751,6 +14062,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13751
14062
|
delayInSeconds?: number | null | undefined;
|
|
13752
14063
|
ignoreTransform?: boolean | undefined;
|
|
13753
14064
|
mediaUrls?: string[] | null | undefined;
|
|
14065
|
+
contentGenerated?: string | null | undefined;
|
|
14066
|
+
contentTransformed?: string | null | undefined;
|
|
13754
14067
|
tool_calls?: {
|
|
13755
14068
|
function: {
|
|
13756
14069
|
name: string;
|
|
@@ -13820,6 +14133,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13820
14133
|
delayInSeconds?: number | null | undefined;
|
|
13821
14134
|
ignoreTransform?: boolean | undefined;
|
|
13822
14135
|
mediaUrls?: string[] | null | undefined;
|
|
14136
|
+
contentGenerated?: string | null | undefined;
|
|
14137
|
+
contentTransformed?: string | null | undefined;
|
|
13823
14138
|
tool_calls?: {
|
|
13824
14139
|
function: {
|
|
13825
14140
|
name: string;
|
|
@@ -13847,6 +14162,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13847
14162
|
delayInSeconds?: number | null | undefined;
|
|
13848
14163
|
ignoreTransform?: boolean | undefined;
|
|
13849
14164
|
mediaUrls?: string[] | null | undefined;
|
|
14165
|
+
contentGenerated?: string | null | undefined;
|
|
14166
|
+
contentTransformed?: string | null | undefined;
|
|
13850
14167
|
tool_calls?: {
|
|
13851
14168
|
function: {
|
|
13852
14169
|
name: string;
|
|
@@ -13927,6 +14244,8 @@ declare module '@scout9/app/schemas' {
|
|
|
13927
14244
|
delayInSeconds?: number | null | undefined;
|
|
13928
14245
|
ignoreTransform?: boolean | undefined;
|
|
13929
14246
|
mediaUrls?: string[] | null | undefined;
|
|
14247
|
+
contentGenerated?: string | null | undefined;
|
|
14248
|
+
contentTransformed?: string | null | undefined;
|
|
13930
14249
|
tool_calls?: {
|
|
13931
14250
|
function: {
|
|
13932
14251
|
name: string;
|
|
@@ -14040,6 +14359,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14040
14359
|
delayInSeconds?: number | null | undefined;
|
|
14041
14360
|
ignoreTransform?: boolean | undefined;
|
|
14042
14361
|
mediaUrls?: string[] | null | undefined;
|
|
14362
|
+
contentGenerated?: string | null | undefined;
|
|
14363
|
+
contentTransformed?: string | null | undefined;
|
|
14043
14364
|
tool_calls?: {
|
|
14044
14365
|
function: {
|
|
14045
14366
|
name: string;
|
|
@@ -14109,6 +14430,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14109
14430
|
delayInSeconds?: number | null | undefined;
|
|
14110
14431
|
ignoreTransform?: boolean | undefined;
|
|
14111
14432
|
mediaUrls?: string[] | null | undefined;
|
|
14433
|
+
contentGenerated?: string | null | undefined;
|
|
14434
|
+
contentTransformed?: string | null | undefined;
|
|
14112
14435
|
tool_calls?: {
|
|
14113
14436
|
function: {
|
|
14114
14437
|
name: string;
|
|
@@ -14136,6 +14459,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14136
14459
|
delayInSeconds?: number | null | undefined;
|
|
14137
14460
|
ignoreTransform?: boolean | undefined;
|
|
14138
14461
|
mediaUrls?: string[] | null | undefined;
|
|
14462
|
+
contentGenerated?: string | null | undefined;
|
|
14463
|
+
contentTransformed?: string | null | undefined;
|
|
14139
14464
|
tool_calls?: {
|
|
14140
14465
|
function: {
|
|
14141
14466
|
name: string;
|
|
@@ -14239,6 +14564,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14239
14564
|
}>, "many">>>;
|
|
14240
14565
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
14241
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>>;
|
|
14242
14569
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14243
14570
|
id: z.ZodString;
|
|
14244
14571
|
type: z.ZodString;
|
|
@@ -14288,6 +14615,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14288
14615
|
}[] | null | undefined;
|
|
14289
14616
|
ignoreTransform?: boolean | undefined;
|
|
14290
14617
|
mediaUrls?: string[] | null | undefined;
|
|
14618
|
+
contentGenerated?: string | null | undefined;
|
|
14619
|
+
contentTransformed?: string | null | undefined;
|
|
14291
14620
|
tool_calls?: {
|
|
14292
14621
|
function: {
|
|
14293
14622
|
name: string;
|
|
@@ -14317,6 +14646,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14317
14646
|
}[] | null | undefined;
|
|
14318
14647
|
ignoreTransform?: boolean | undefined;
|
|
14319
14648
|
mediaUrls?: string[] | null | undefined;
|
|
14649
|
+
contentGenerated?: string | null | undefined;
|
|
14650
|
+
contentTransformed?: string | null | undefined;
|
|
14320
14651
|
tool_calls?: {
|
|
14321
14652
|
function: {
|
|
14322
14653
|
name: string;
|
|
@@ -14490,6 +14821,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14490
14821
|
}>, "many">>>;
|
|
14491
14822
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
14492
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>>;
|
|
14493
14826
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14494
14827
|
id: z.ZodString;
|
|
14495
14828
|
type: z.ZodString;
|
|
@@ -14539,6 +14872,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14539
14872
|
}[] | null | undefined;
|
|
14540
14873
|
ignoreTransform?: boolean | undefined;
|
|
14541
14874
|
mediaUrls?: string[] | null | undefined;
|
|
14875
|
+
contentGenerated?: string | null | undefined;
|
|
14876
|
+
contentTransformed?: string | null | undefined;
|
|
14542
14877
|
tool_calls?: {
|
|
14543
14878
|
function: {
|
|
14544
14879
|
name: string;
|
|
@@ -14568,6 +14903,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14568
14903
|
}[] | null | undefined;
|
|
14569
14904
|
ignoreTransform?: boolean | undefined;
|
|
14570
14905
|
mediaUrls?: string[] | null | undefined;
|
|
14906
|
+
contentGenerated?: string | null | undefined;
|
|
14907
|
+
contentTransformed?: string | null | undefined;
|
|
14571
14908
|
tool_calls?: {
|
|
14572
14909
|
function: {
|
|
14573
14910
|
name: string;
|
|
@@ -14639,6 +14976,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14639
14976
|
}>, "many">>>;
|
|
14640
14977
|
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
14641
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>>;
|
|
14642
14981
|
tool_calls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14643
14982
|
id: z.ZodString;
|
|
14644
14983
|
type: z.ZodString;
|
|
@@ -14688,6 +15027,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14688
15027
|
}[] | null | undefined;
|
|
14689
15028
|
ignoreTransform?: boolean | undefined;
|
|
14690
15029
|
mediaUrls?: string[] | null | undefined;
|
|
15030
|
+
contentGenerated?: string | null | undefined;
|
|
15031
|
+
contentTransformed?: string | null | undefined;
|
|
14691
15032
|
tool_calls?: {
|
|
14692
15033
|
function: {
|
|
14693
15034
|
name: string;
|
|
@@ -14717,6 +15058,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14717
15058
|
}[] | null | undefined;
|
|
14718
15059
|
ignoreTransform?: boolean | undefined;
|
|
14719
15060
|
mediaUrls?: string[] | null | undefined;
|
|
15061
|
+
contentGenerated?: string | null | undefined;
|
|
15062
|
+
contentTransformed?: string | null | undefined;
|
|
14720
15063
|
tool_calls?: {
|
|
14721
15064
|
function: {
|
|
14722
15065
|
name: string;
|
|
@@ -14879,6 +15222,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14879
15222
|
}[] | null | undefined;
|
|
14880
15223
|
ignoreTransform?: boolean | undefined;
|
|
14881
15224
|
mediaUrls?: string[] | null | undefined;
|
|
15225
|
+
contentGenerated?: string | null | undefined;
|
|
15226
|
+
contentTransformed?: string | null | undefined;
|
|
14882
15227
|
tool_calls?: {
|
|
14883
15228
|
function: {
|
|
14884
15229
|
name: string;
|
|
@@ -14954,6 +15299,8 @@ declare module '@scout9/app/schemas' {
|
|
|
14954
15299
|
}[] | null | undefined;
|
|
14955
15300
|
ignoreTransform?: boolean | undefined;
|
|
14956
15301
|
mediaUrls?: string[] | null | undefined;
|
|
15302
|
+
contentGenerated?: string | null | undefined;
|
|
15303
|
+
contentTransformed?: string | null | undefined;
|
|
14957
15304
|
tool_calls?: {
|
|
14958
15305
|
function: {
|
|
14959
15306
|
name: string;
|
|
@@ -15020,6 +15367,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15020
15367
|
}[] | null | undefined;
|
|
15021
15368
|
ignoreTransform?: boolean | undefined;
|
|
15022
15369
|
mediaUrls?: string[] | null | undefined;
|
|
15370
|
+
contentGenerated?: string | null | undefined;
|
|
15371
|
+
contentTransformed?: string | null | undefined;
|
|
15023
15372
|
tool_calls?: {
|
|
15024
15373
|
function: {
|
|
15025
15374
|
name: string;
|
|
@@ -15095,6 +15444,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15095
15444
|
}[] | null | undefined;
|
|
15096
15445
|
ignoreTransform?: boolean | undefined;
|
|
15097
15446
|
mediaUrls?: string[] | null | undefined;
|
|
15447
|
+
contentGenerated?: string | null | undefined;
|
|
15448
|
+
contentTransformed?: string | null | undefined;
|
|
15098
15449
|
tool_calls?: {
|
|
15099
15450
|
function: {
|
|
15100
15451
|
name: string;
|
|
@@ -15173,6 +15524,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15173
15524
|
}>, "many">>>>;
|
|
15174
15525
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
15175
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>>>;
|
|
15176
15529
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15177
15530
|
id: z.ZodString;
|
|
15178
15531
|
type: z.ZodString;
|
|
@@ -15212,6 +15565,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15212
15565
|
delayInSeconds?: number | null | undefined;
|
|
15213
15566
|
ignoreTransform?: boolean | undefined;
|
|
15214
15567
|
mediaUrls?: string[] | null | undefined;
|
|
15568
|
+
contentGenerated?: string | null | undefined;
|
|
15569
|
+
contentTransformed?: string | null | undefined;
|
|
15215
15570
|
tool_calls?: {
|
|
15216
15571
|
function: {
|
|
15217
15572
|
name: string;
|
|
@@ -15231,6 +15586,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15231
15586
|
delayInSeconds?: number | null | undefined;
|
|
15232
15587
|
ignoreTransform?: boolean | undefined;
|
|
15233
15588
|
mediaUrls?: string[] | null | undefined;
|
|
15589
|
+
contentGenerated?: string | null | undefined;
|
|
15590
|
+
contentTransformed?: string | null | undefined;
|
|
15234
15591
|
tool_calls?: {
|
|
15235
15592
|
function: {
|
|
15236
15593
|
name: string;
|
|
@@ -15534,6 +15891,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15534
15891
|
}>, "many">>>>;
|
|
15535
15892
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
15536
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>>>;
|
|
15537
15896
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15538
15897
|
id: z.ZodString;
|
|
15539
15898
|
type: z.ZodString;
|
|
@@ -15573,6 +15932,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15573
15932
|
delayInSeconds?: number | null | undefined;
|
|
15574
15933
|
ignoreTransform?: boolean | undefined;
|
|
15575
15934
|
mediaUrls?: string[] | null | undefined;
|
|
15935
|
+
contentGenerated?: string | null | undefined;
|
|
15936
|
+
contentTransformed?: string | null | undefined;
|
|
15576
15937
|
tool_calls?: {
|
|
15577
15938
|
function: {
|
|
15578
15939
|
name: string;
|
|
@@ -15592,6 +15953,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15592
15953
|
delayInSeconds?: number | null | undefined;
|
|
15593
15954
|
ignoreTransform?: boolean | undefined;
|
|
15594
15955
|
mediaUrls?: string[] | null | undefined;
|
|
15956
|
+
contentGenerated?: string | null | undefined;
|
|
15957
|
+
contentTransformed?: string | null | undefined;
|
|
15595
15958
|
tool_calls?: {
|
|
15596
15959
|
function: {
|
|
15597
15960
|
name: string;
|
|
@@ -15660,6 +16023,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15660
16023
|
delayInSeconds?: number | null | undefined;
|
|
15661
16024
|
ignoreTransform?: boolean | undefined;
|
|
15662
16025
|
mediaUrls?: string[] | null | undefined;
|
|
16026
|
+
contentGenerated?: string | null | undefined;
|
|
16027
|
+
contentTransformed?: string | null | undefined;
|
|
15663
16028
|
tool_calls?: {
|
|
15664
16029
|
function: {
|
|
15665
16030
|
name: string;
|
|
@@ -15728,6 +16093,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15728
16093
|
delayInSeconds?: number | null | undefined;
|
|
15729
16094
|
ignoreTransform?: boolean | undefined;
|
|
15730
16095
|
mediaUrls?: string[] | null | undefined;
|
|
16096
|
+
contentGenerated?: string | null | undefined;
|
|
16097
|
+
contentTransformed?: string | null | undefined;
|
|
15731
16098
|
tool_calls?: {
|
|
15732
16099
|
function: {
|
|
15733
16100
|
name: string;
|
|
@@ -15903,6 +16270,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15903
16270
|
}>, "many">>>>;
|
|
15904
16271
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
15905
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>>>;
|
|
15906
16275
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15907
16276
|
id: z.ZodString;
|
|
15908
16277
|
type: z.ZodString;
|
|
@@ -15942,6 +16311,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15942
16311
|
delayInSeconds?: number | null | undefined;
|
|
15943
16312
|
ignoreTransform?: boolean | undefined;
|
|
15944
16313
|
mediaUrls?: string[] | null | undefined;
|
|
16314
|
+
contentGenerated?: string | null | undefined;
|
|
16315
|
+
contentTransformed?: string | null | undefined;
|
|
15945
16316
|
tool_calls?: {
|
|
15946
16317
|
function: {
|
|
15947
16318
|
name: string;
|
|
@@ -15961,6 +16332,8 @@ declare module '@scout9/app/schemas' {
|
|
|
15961
16332
|
delayInSeconds?: number | null | undefined;
|
|
15962
16333
|
ignoreTransform?: boolean | undefined;
|
|
15963
16334
|
mediaUrls?: string[] | null | undefined;
|
|
16335
|
+
contentGenerated?: string | null | undefined;
|
|
16336
|
+
contentTransformed?: string | null | undefined;
|
|
15964
16337
|
tool_calls?: {
|
|
15965
16338
|
function: {
|
|
15966
16339
|
name: string;
|
|
@@ -16029,6 +16402,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16029
16402
|
delayInSeconds?: number | null | undefined;
|
|
16030
16403
|
ignoreTransform?: boolean | undefined;
|
|
16031
16404
|
mediaUrls?: string[] | null | undefined;
|
|
16405
|
+
contentGenerated?: string | null | undefined;
|
|
16406
|
+
contentTransformed?: string | null | undefined;
|
|
16032
16407
|
tool_calls?: {
|
|
16033
16408
|
function: {
|
|
16034
16409
|
name: string;
|
|
@@ -16097,6 +16472,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16097
16472
|
delayInSeconds?: number | null | undefined;
|
|
16098
16473
|
ignoreTransform?: boolean | undefined;
|
|
16099
16474
|
mediaUrls?: string[] | null | undefined;
|
|
16475
|
+
contentGenerated?: string | null | undefined;
|
|
16476
|
+
contentTransformed?: string | null | undefined;
|
|
16100
16477
|
tool_calls?: {
|
|
16101
16478
|
function: {
|
|
16102
16479
|
name: string;
|
|
@@ -16168,6 +16545,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16168
16545
|
delayInSeconds?: number | null | undefined;
|
|
16169
16546
|
ignoreTransform?: boolean | undefined;
|
|
16170
16547
|
mediaUrls?: string[] | null | undefined;
|
|
16548
|
+
contentGenerated?: string | null | undefined;
|
|
16549
|
+
contentTransformed?: string | null | undefined;
|
|
16171
16550
|
tool_calls?: {
|
|
16172
16551
|
function: {
|
|
16173
16552
|
name: string;
|
|
@@ -16237,6 +16616,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16237
16616
|
delayInSeconds?: number | null | undefined;
|
|
16238
16617
|
ignoreTransform?: boolean | undefined;
|
|
16239
16618
|
mediaUrls?: string[] | null | undefined;
|
|
16619
|
+
contentGenerated?: string | null | undefined;
|
|
16620
|
+
contentTransformed?: string | null | undefined;
|
|
16240
16621
|
tool_calls?: {
|
|
16241
16622
|
function: {
|
|
16242
16623
|
name: string;
|
|
@@ -16308,6 +16689,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16308
16689
|
delayInSeconds?: number | null | undefined;
|
|
16309
16690
|
ignoreTransform?: boolean | undefined;
|
|
16310
16691
|
mediaUrls?: string[] | null | undefined;
|
|
16692
|
+
contentGenerated?: string | null | undefined;
|
|
16693
|
+
contentTransformed?: string | null | undefined;
|
|
16311
16694
|
tool_calls?: {
|
|
16312
16695
|
function: {
|
|
16313
16696
|
name: string;
|
|
@@ -16377,6 +16760,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16377
16760
|
delayInSeconds?: number | null | undefined;
|
|
16378
16761
|
ignoreTransform?: boolean | undefined;
|
|
16379
16762
|
mediaUrls?: string[] | null | undefined;
|
|
16763
|
+
contentGenerated?: string | null | undefined;
|
|
16764
|
+
contentTransformed?: string | null | undefined;
|
|
16380
16765
|
tool_calls?: {
|
|
16381
16766
|
function: {
|
|
16382
16767
|
name: string;
|
|
@@ -16425,6 +16810,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16425
16810
|
}>, "many">>>>;
|
|
16426
16811
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
16427
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>>>;
|
|
16428
16815
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16429
16816
|
id: z.ZodString;
|
|
16430
16817
|
type: z.ZodString;
|
|
@@ -16464,6 +16851,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16464
16851
|
delayInSeconds?: number | null | undefined;
|
|
16465
16852
|
ignoreTransform?: boolean | undefined;
|
|
16466
16853
|
mediaUrls?: string[] | null | undefined;
|
|
16854
|
+
contentGenerated?: string | null | undefined;
|
|
16855
|
+
contentTransformed?: string | null | undefined;
|
|
16467
16856
|
tool_calls?: {
|
|
16468
16857
|
function: {
|
|
16469
16858
|
name: string;
|
|
@@ -16483,6 +16872,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16483
16872
|
delayInSeconds?: number | null | undefined;
|
|
16484
16873
|
ignoreTransform?: boolean | undefined;
|
|
16485
16874
|
mediaUrls?: string[] | null | undefined;
|
|
16875
|
+
contentGenerated?: string | null | undefined;
|
|
16876
|
+
contentTransformed?: string | null | undefined;
|
|
16486
16877
|
tool_calls?: {
|
|
16487
16878
|
function: {
|
|
16488
16879
|
name: string;
|
|
@@ -16637,6 +17028,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16637
17028
|
delayInSeconds?: number | null | undefined;
|
|
16638
17029
|
ignoreTransform?: boolean | undefined;
|
|
16639
17030
|
mediaUrls?: string[] | null | undefined;
|
|
17031
|
+
contentGenerated?: string | null | undefined;
|
|
17032
|
+
contentTransformed?: string | null | undefined;
|
|
16640
17033
|
tool_calls?: {
|
|
16641
17034
|
function: {
|
|
16642
17035
|
name: string;
|
|
@@ -16706,6 +17099,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16706
17099
|
delayInSeconds?: number | null | undefined;
|
|
16707
17100
|
ignoreTransform?: boolean | undefined;
|
|
16708
17101
|
mediaUrls?: string[] | null | undefined;
|
|
17102
|
+
contentGenerated?: string | null | undefined;
|
|
17103
|
+
contentTransformed?: string | null | undefined;
|
|
16709
17104
|
tool_calls?: {
|
|
16710
17105
|
function: {
|
|
16711
17106
|
name: string;
|
|
@@ -16804,6 +17199,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16804
17199
|
delayInSeconds?: number | null | undefined;
|
|
16805
17200
|
ignoreTransform?: boolean | undefined;
|
|
16806
17201
|
mediaUrls?: string[] | null | undefined;
|
|
17202
|
+
contentGenerated?: string | null | undefined;
|
|
17203
|
+
contentTransformed?: string | null | undefined;
|
|
16807
17204
|
tool_calls?: {
|
|
16808
17205
|
function: {
|
|
16809
17206
|
name: string;
|
|
@@ -16917,6 +17314,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16917
17314
|
delayInSeconds?: number | null | undefined;
|
|
16918
17315
|
ignoreTransform?: boolean | undefined;
|
|
16919
17316
|
mediaUrls?: string[] | null | undefined;
|
|
17317
|
+
contentGenerated?: string | null | undefined;
|
|
17318
|
+
contentTransformed?: string | null | undefined;
|
|
16920
17319
|
tool_calls?: {
|
|
16921
17320
|
function: {
|
|
16922
17321
|
name: string;
|
|
@@ -16986,6 +17385,8 @@ declare module '@scout9/app/schemas' {
|
|
|
16986
17385
|
delayInSeconds?: number | null | undefined;
|
|
16987
17386
|
ignoreTransform?: boolean | undefined;
|
|
16988
17387
|
mediaUrls?: string[] | null | undefined;
|
|
17388
|
+
contentGenerated?: string | null | undefined;
|
|
17389
|
+
contentTransformed?: string | null | undefined;
|
|
16989
17390
|
tool_calls?: {
|
|
16990
17391
|
function: {
|
|
16991
17392
|
name: string;
|
|
@@ -17013,6 +17414,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17013
17414
|
delayInSeconds?: number | null | undefined;
|
|
17014
17415
|
ignoreTransform?: boolean | undefined;
|
|
17015
17416
|
mediaUrls?: string[] | null | undefined;
|
|
17417
|
+
contentGenerated?: string | null | undefined;
|
|
17418
|
+
contentTransformed?: string | null | undefined;
|
|
17016
17419
|
tool_calls?: {
|
|
17017
17420
|
function: {
|
|
17018
17421
|
name: string;
|
|
@@ -17093,6 +17496,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17093
17496
|
delayInSeconds?: number | null | undefined;
|
|
17094
17497
|
ignoreTransform?: boolean | undefined;
|
|
17095
17498
|
mediaUrls?: string[] | null | undefined;
|
|
17499
|
+
contentGenerated?: string | null | undefined;
|
|
17500
|
+
contentTransformed?: string | null | undefined;
|
|
17096
17501
|
tool_calls?: {
|
|
17097
17502
|
function: {
|
|
17098
17503
|
name: string;
|
|
@@ -17206,6 +17611,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17206
17611
|
delayInSeconds?: number | null | undefined;
|
|
17207
17612
|
ignoreTransform?: boolean | undefined;
|
|
17208
17613
|
mediaUrls?: string[] | null | undefined;
|
|
17614
|
+
contentGenerated?: string | null | undefined;
|
|
17615
|
+
contentTransformed?: string | null | undefined;
|
|
17209
17616
|
tool_calls?: {
|
|
17210
17617
|
function: {
|
|
17211
17618
|
name: string;
|
|
@@ -17275,6 +17682,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17275
17682
|
delayInSeconds?: number | null | undefined;
|
|
17276
17683
|
ignoreTransform?: boolean | undefined;
|
|
17277
17684
|
mediaUrls?: string[] | null | undefined;
|
|
17685
|
+
contentGenerated?: string | null | undefined;
|
|
17686
|
+
contentTransformed?: string | null | undefined;
|
|
17278
17687
|
tool_calls?: {
|
|
17279
17688
|
function: {
|
|
17280
17689
|
name: string;
|
|
@@ -17302,6 +17711,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17302
17711
|
delayInSeconds?: number | null | undefined;
|
|
17303
17712
|
ignoreTransform?: boolean | undefined;
|
|
17304
17713
|
mediaUrls?: string[] | null | undefined;
|
|
17714
|
+
contentGenerated?: string | null | undefined;
|
|
17715
|
+
contentTransformed?: string | null | undefined;
|
|
17305
17716
|
tool_calls?: {
|
|
17306
17717
|
function: {
|
|
17307
17718
|
name: string;
|
|
@@ -17404,6 +17815,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17404
17815
|
}>, "many">>>>;
|
|
17405
17816
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
17406
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>>>;
|
|
17407
17820
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17408
17821
|
id: z.ZodString;
|
|
17409
17822
|
type: z.ZodString;
|
|
@@ -17443,6 +17856,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17443
17856
|
delayInSeconds?: number | null | undefined;
|
|
17444
17857
|
ignoreTransform?: boolean | undefined;
|
|
17445
17858
|
mediaUrls?: string[] | null | undefined;
|
|
17859
|
+
contentGenerated?: string | null | undefined;
|
|
17860
|
+
contentTransformed?: string | null | undefined;
|
|
17446
17861
|
tool_calls?: {
|
|
17447
17862
|
function: {
|
|
17448
17863
|
name: string;
|
|
@@ -17462,6 +17877,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17462
17877
|
delayInSeconds?: number | null | undefined;
|
|
17463
17878
|
ignoreTransform?: boolean | undefined;
|
|
17464
17879
|
mediaUrls?: string[] | null | undefined;
|
|
17880
|
+
contentGenerated?: string | null | undefined;
|
|
17881
|
+
contentTransformed?: string | null | undefined;
|
|
17465
17882
|
tool_calls?: {
|
|
17466
17883
|
function: {
|
|
17467
17884
|
name: string;
|
|
@@ -17765,6 +18182,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17765
18182
|
}>, "many">>>>;
|
|
17766
18183
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
17767
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>>>;
|
|
17768
18187
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17769
18188
|
id: z.ZodString;
|
|
17770
18189
|
type: z.ZodString;
|
|
@@ -17804,6 +18223,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17804
18223
|
delayInSeconds?: number | null | undefined;
|
|
17805
18224
|
ignoreTransform?: boolean | undefined;
|
|
17806
18225
|
mediaUrls?: string[] | null | undefined;
|
|
18226
|
+
contentGenerated?: string | null | undefined;
|
|
18227
|
+
contentTransformed?: string | null | undefined;
|
|
17807
18228
|
tool_calls?: {
|
|
17808
18229
|
function: {
|
|
17809
18230
|
name: string;
|
|
@@ -17823,6 +18244,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17823
18244
|
delayInSeconds?: number | null | undefined;
|
|
17824
18245
|
ignoreTransform?: boolean | undefined;
|
|
17825
18246
|
mediaUrls?: string[] | null | undefined;
|
|
18247
|
+
contentGenerated?: string | null | undefined;
|
|
18248
|
+
contentTransformed?: string | null | undefined;
|
|
17826
18249
|
tool_calls?: {
|
|
17827
18250
|
function: {
|
|
17828
18251
|
name: string;
|
|
@@ -17891,6 +18314,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17891
18314
|
delayInSeconds?: number | null | undefined;
|
|
17892
18315
|
ignoreTransform?: boolean | undefined;
|
|
17893
18316
|
mediaUrls?: string[] | null | undefined;
|
|
18317
|
+
contentGenerated?: string | null | undefined;
|
|
18318
|
+
contentTransformed?: string | null | undefined;
|
|
17894
18319
|
tool_calls?: {
|
|
17895
18320
|
function: {
|
|
17896
18321
|
name: string;
|
|
@@ -17959,6 +18384,8 @@ declare module '@scout9/app/schemas' {
|
|
|
17959
18384
|
delayInSeconds?: number | null | undefined;
|
|
17960
18385
|
ignoreTransform?: boolean | undefined;
|
|
17961
18386
|
mediaUrls?: string[] | null | undefined;
|
|
18387
|
+
contentGenerated?: string | null | undefined;
|
|
18388
|
+
contentTransformed?: string | null | undefined;
|
|
17962
18389
|
tool_calls?: {
|
|
17963
18390
|
function: {
|
|
17964
18391
|
name: string;
|
|
@@ -18134,6 +18561,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18134
18561
|
}>, "many">>>>;
|
|
18135
18562
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18136
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>>>;
|
|
18137
18566
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18138
18567
|
id: z.ZodString;
|
|
18139
18568
|
type: z.ZodString;
|
|
@@ -18173,6 +18602,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18173
18602
|
delayInSeconds?: number | null | undefined;
|
|
18174
18603
|
ignoreTransform?: boolean | undefined;
|
|
18175
18604
|
mediaUrls?: string[] | null | undefined;
|
|
18605
|
+
contentGenerated?: string | null | undefined;
|
|
18606
|
+
contentTransformed?: string | null | undefined;
|
|
18176
18607
|
tool_calls?: {
|
|
18177
18608
|
function: {
|
|
18178
18609
|
name: string;
|
|
@@ -18192,6 +18623,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18192
18623
|
delayInSeconds?: number | null | undefined;
|
|
18193
18624
|
ignoreTransform?: boolean | undefined;
|
|
18194
18625
|
mediaUrls?: string[] | null | undefined;
|
|
18626
|
+
contentGenerated?: string | null | undefined;
|
|
18627
|
+
contentTransformed?: string | null | undefined;
|
|
18195
18628
|
tool_calls?: {
|
|
18196
18629
|
function: {
|
|
18197
18630
|
name: string;
|
|
@@ -18260,6 +18693,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18260
18693
|
delayInSeconds?: number | null | undefined;
|
|
18261
18694
|
ignoreTransform?: boolean | undefined;
|
|
18262
18695
|
mediaUrls?: string[] | null | undefined;
|
|
18696
|
+
contentGenerated?: string | null | undefined;
|
|
18697
|
+
contentTransformed?: string | null | undefined;
|
|
18263
18698
|
tool_calls?: {
|
|
18264
18699
|
function: {
|
|
18265
18700
|
name: string;
|
|
@@ -18328,6 +18763,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18328
18763
|
delayInSeconds?: number | null | undefined;
|
|
18329
18764
|
ignoreTransform?: boolean | undefined;
|
|
18330
18765
|
mediaUrls?: string[] | null | undefined;
|
|
18766
|
+
contentGenerated?: string | null | undefined;
|
|
18767
|
+
contentTransformed?: string | null | undefined;
|
|
18331
18768
|
tool_calls?: {
|
|
18332
18769
|
function: {
|
|
18333
18770
|
name: string;
|
|
@@ -18399,6 +18836,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18399
18836
|
delayInSeconds?: number | null | undefined;
|
|
18400
18837
|
ignoreTransform?: boolean | undefined;
|
|
18401
18838
|
mediaUrls?: string[] | null | undefined;
|
|
18839
|
+
contentGenerated?: string | null | undefined;
|
|
18840
|
+
contentTransformed?: string | null | undefined;
|
|
18402
18841
|
tool_calls?: {
|
|
18403
18842
|
function: {
|
|
18404
18843
|
name: string;
|
|
@@ -18468,6 +18907,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18468
18907
|
delayInSeconds?: number | null | undefined;
|
|
18469
18908
|
ignoreTransform?: boolean | undefined;
|
|
18470
18909
|
mediaUrls?: string[] | null | undefined;
|
|
18910
|
+
contentGenerated?: string | null | undefined;
|
|
18911
|
+
contentTransformed?: string | null | undefined;
|
|
18471
18912
|
tool_calls?: {
|
|
18472
18913
|
function: {
|
|
18473
18914
|
name: string;
|
|
@@ -18539,6 +18980,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18539
18980
|
delayInSeconds?: number | null | undefined;
|
|
18540
18981
|
ignoreTransform?: boolean | undefined;
|
|
18541
18982
|
mediaUrls?: string[] | null | undefined;
|
|
18983
|
+
contentGenerated?: string | null | undefined;
|
|
18984
|
+
contentTransformed?: string | null | undefined;
|
|
18542
18985
|
tool_calls?: {
|
|
18543
18986
|
function: {
|
|
18544
18987
|
name: string;
|
|
@@ -18608,6 +19051,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18608
19051
|
delayInSeconds?: number | null | undefined;
|
|
18609
19052
|
ignoreTransform?: boolean | undefined;
|
|
18610
19053
|
mediaUrls?: string[] | null | undefined;
|
|
19054
|
+
contentGenerated?: string | null | undefined;
|
|
19055
|
+
contentTransformed?: string | null | undefined;
|
|
18611
19056
|
tool_calls?: {
|
|
18612
19057
|
function: {
|
|
18613
19058
|
name: string;
|
|
@@ -18656,6 +19101,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18656
19101
|
}>, "many">>>>;
|
|
18657
19102
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18658
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>>>;
|
|
18659
19106
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18660
19107
|
id: z.ZodString;
|
|
18661
19108
|
type: z.ZodString;
|
|
@@ -18695,6 +19142,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18695
19142
|
delayInSeconds?: number | null | undefined;
|
|
18696
19143
|
ignoreTransform?: boolean | undefined;
|
|
18697
19144
|
mediaUrls?: string[] | null | undefined;
|
|
19145
|
+
contentGenerated?: string | null | undefined;
|
|
19146
|
+
contentTransformed?: string | null | undefined;
|
|
18698
19147
|
tool_calls?: {
|
|
18699
19148
|
function: {
|
|
18700
19149
|
name: string;
|
|
@@ -18714,6 +19163,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18714
19163
|
delayInSeconds?: number | null | undefined;
|
|
18715
19164
|
ignoreTransform?: boolean | undefined;
|
|
18716
19165
|
mediaUrls?: string[] | null | undefined;
|
|
19166
|
+
contentGenerated?: string | null | undefined;
|
|
19167
|
+
contentTransformed?: string | null | undefined;
|
|
18717
19168
|
tool_calls?: {
|
|
18718
19169
|
function: {
|
|
18719
19170
|
name: string;
|
|
@@ -18868,6 +19319,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18868
19319
|
delayInSeconds?: number | null | undefined;
|
|
18869
19320
|
ignoreTransform?: boolean | undefined;
|
|
18870
19321
|
mediaUrls?: string[] | null | undefined;
|
|
19322
|
+
contentGenerated?: string | null | undefined;
|
|
19323
|
+
contentTransformed?: string | null | undefined;
|
|
18871
19324
|
tool_calls?: {
|
|
18872
19325
|
function: {
|
|
18873
19326
|
name: string;
|
|
@@ -18937,6 +19390,8 @@ declare module '@scout9/app/schemas' {
|
|
|
18937
19390
|
delayInSeconds?: number | null | undefined;
|
|
18938
19391
|
ignoreTransform?: boolean | undefined;
|
|
18939
19392
|
mediaUrls?: string[] | null | undefined;
|
|
19393
|
+
contentGenerated?: string | null | undefined;
|
|
19394
|
+
contentTransformed?: string | null | undefined;
|
|
18940
19395
|
tool_calls?: {
|
|
18941
19396
|
function: {
|
|
18942
19397
|
name: string;
|
|
@@ -19035,6 +19490,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19035
19490
|
delayInSeconds?: number | null | undefined;
|
|
19036
19491
|
ignoreTransform?: boolean | undefined;
|
|
19037
19492
|
mediaUrls?: string[] | null | undefined;
|
|
19493
|
+
contentGenerated?: string | null | undefined;
|
|
19494
|
+
contentTransformed?: string | null | undefined;
|
|
19038
19495
|
tool_calls?: {
|
|
19039
19496
|
function: {
|
|
19040
19497
|
name: string;
|
|
@@ -19148,6 +19605,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19148
19605
|
delayInSeconds?: number | null | undefined;
|
|
19149
19606
|
ignoreTransform?: boolean | undefined;
|
|
19150
19607
|
mediaUrls?: string[] | null | undefined;
|
|
19608
|
+
contentGenerated?: string | null | undefined;
|
|
19609
|
+
contentTransformed?: string | null | undefined;
|
|
19151
19610
|
tool_calls?: {
|
|
19152
19611
|
function: {
|
|
19153
19612
|
name: string;
|
|
@@ -19217,6 +19676,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19217
19676
|
delayInSeconds?: number | null | undefined;
|
|
19218
19677
|
ignoreTransform?: boolean | undefined;
|
|
19219
19678
|
mediaUrls?: string[] | null | undefined;
|
|
19679
|
+
contentGenerated?: string | null | undefined;
|
|
19680
|
+
contentTransformed?: string | null | undefined;
|
|
19220
19681
|
tool_calls?: {
|
|
19221
19682
|
function: {
|
|
19222
19683
|
name: string;
|
|
@@ -19244,6 +19705,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19244
19705
|
delayInSeconds?: number | null | undefined;
|
|
19245
19706
|
ignoreTransform?: boolean | undefined;
|
|
19246
19707
|
mediaUrls?: string[] | null | undefined;
|
|
19708
|
+
contentGenerated?: string | null | undefined;
|
|
19709
|
+
contentTransformed?: string | null | undefined;
|
|
19247
19710
|
tool_calls?: {
|
|
19248
19711
|
function: {
|
|
19249
19712
|
name: string;
|
|
@@ -19324,6 +19787,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19324
19787
|
delayInSeconds?: number | null | undefined;
|
|
19325
19788
|
ignoreTransform?: boolean | undefined;
|
|
19326
19789
|
mediaUrls?: string[] | null | undefined;
|
|
19790
|
+
contentGenerated?: string | null | undefined;
|
|
19791
|
+
contentTransformed?: string | null | undefined;
|
|
19327
19792
|
tool_calls?: {
|
|
19328
19793
|
function: {
|
|
19329
19794
|
name: string;
|
|
@@ -19437,6 +19902,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19437
19902
|
delayInSeconds?: number | null | undefined;
|
|
19438
19903
|
ignoreTransform?: boolean | undefined;
|
|
19439
19904
|
mediaUrls?: string[] | null | undefined;
|
|
19905
|
+
contentGenerated?: string | null | undefined;
|
|
19906
|
+
contentTransformed?: string | null | undefined;
|
|
19440
19907
|
tool_calls?: {
|
|
19441
19908
|
function: {
|
|
19442
19909
|
name: string;
|
|
@@ -19506,6 +19973,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19506
19973
|
delayInSeconds?: number | null | undefined;
|
|
19507
19974
|
ignoreTransform?: boolean | undefined;
|
|
19508
19975
|
mediaUrls?: string[] | null | undefined;
|
|
19976
|
+
contentGenerated?: string | null | undefined;
|
|
19977
|
+
contentTransformed?: string | null | undefined;
|
|
19509
19978
|
tool_calls?: {
|
|
19510
19979
|
function: {
|
|
19511
19980
|
name: string;
|
|
@@ -19533,6 +20002,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19533
20002
|
delayInSeconds?: number | null | undefined;
|
|
19534
20003
|
ignoreTransform?: boolean | undefined;
|
|
19535
20004
|
mediaUrls?: string[] | null | undefined;
|
|
20005
|
+
contentGenerated?: string | null | undefined;
|
|
20006
|
+
contentTransformed?: string | null | undefined;
|
|
19536
20007
|
tool_calls?: {
|
|
19537
20008
|
function: {
|
|
19538
20009
|
name: string;
|
|
@@ -19635,6 +20106,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19635
20106
|
}>, "many">>>>;
|
|
19636
20107
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19637
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>>>;
|
|
19638
20111
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19639
20112
|
id: z.ZodString;
|
|
19640
20113
|
type: z.ZodString;
|
|
@@ -19674,6 +20147,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19674
20147
|
delayInSeconds?: number | null | undefined;
|
|
19675
20148
|
ignoreTransform?: boolean | undefined;
|
|
19676
20149
|
mediaUrls?: string[] | null | undefined;
|
|
20150
|
+
contentGenerated?: string | null | undefined;
|
|
20151
|
+
contentTransformed?: string | null | undefined;
|
|
19677
20152
|
tool_calls?: {
|
|
19678
20153
|
function: {
|
|
19679
20154
|
name: string;
|
|
@@ -19693,6 +20168,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19693
20168
|
delayInSeconds?: number | null | undefined;
|
|
19694
20169
|
ignoreTransform?: boolean | undefined;
|
|
19695
20170
|
mediaUrls?: string[] | null | undefined;
|
|
20171
|
+
contentGenerated?: string | null | undefined;
|
|
20172
|
+
contentTransformed?: string | null | undefined;
|
|
19696
20173
|
tool_calls?: {
|
|
19697
20174
|
function: {
|
|
19698
20175
|
name: string;
|
|
@@ -19996,6 +20473,8 @@ declare module '@scout9/app/schemas' {
|
|
|
19996
20473
|
}>, "many">>>>;
|
|
19997
20474
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19998
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>>>;
|
|
19999
20478
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20000
20479
|
id: z.ZodString;
|
|
20001
20480
|
type: z.ZodString;
|
|
@@ -20035,6 +20514,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20035
20514
|
delayInSeconds?: number | null | undefined;
|
|
20036
20515
|
ignoreTransform?: boolean | undefined;
|
|
20037
20516
|
mediaUrls?: string[] | null | undefined;
|
|
20517
|
+
contentGenerated?: string | null | undefined;
|
|
20518
|
+
contentTransformed?: string | null | undefined;
|
|
20038
20519
|
tool_calls?: {
|
|
20039
20520
|
function: {
|
|
20040
20521
|
name: string;
|
|
@@ -20054,6 +20535,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20054
20535
|
delayInSeconds?: number | null | undefined;
|
|
20055
20536
|
ignoreTransform?: boolean | undefined;
|
|
20056
20537
|
mediaUrls?: string[] | null | undefined;
|
|
20538
|
+
contentGenerated?: string | null | undefined;
|
|
20539
|
+
contentTransformed?: string | null | undefined;
|
|
20057
20540
|
tool_calls?: {
|
|
20058
20541
|
function: {
|
|
20059
20542
|
name: string;
|
|
@@ -20122,6 +20605,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20122
20605
|
delayInSeconds?: number | null | undefined;
|
|
20123
20606
|
ignoreTransform?: boolean | undefined;
|
|
20124
20607
|
mediaUrls?: string[] | null | undefined;
|
|
20608
|
+
contentGenerated?: string | null | undefined;
|
|
20609
|
+
contentTransformed?: string | null | undefined;
|
|
20125
20610
|
tool_calls?: {
|
|
20126
20611
|
function: {
|
|
20127
20612
|
name: string;
|
|
@@ -20190,6 +20675,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20190
20675
|
delayInSeconds?: number | null | undefined;
|
|
20191
20676
|
ignoreTransform?: boolean | undefined;
|
|
20192
20677
|
mediaUrls?: string[] | null | undefined;
|
|
20678
|
+
contentGenerated?: string | null | undefined;
|
|
20679
|
+
contentTransformed?: string | null | undefined;
|
|
20193
20680
|
tool_calls?: {
|
|
20194
20681
|
function: {
|
|
20195
20682
|
name: string;
|
|
@@ -20365,6 +20852,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20365
20852
|
}>, "many">>>>;
|
|
20366
20853
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
20367
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>>>;
|
|
20368
20857
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20369
20858
|
id: z.ZodString;
|
|
20370
20859
|
type: z.ZodString;
|
|
@@ -20404,6 +20893,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20404
20893
|
delayInSeconds?: number | null | undefined;
|
|
20405
20894
|
ignoreTransform?: boolean | undefined;
|
|
20406
20895
|
mediaUrls?: string[] | null | undefined;
|
|
20896
|
+
contentGenerated?: string | null | undefined;
|
|
20897
|
+
contentTransformed?: string | null | undefined;
|
|
20407
20898
|
tool_calls?: {
|
|
20408
20899
|
function: {
|
|
20409
20900
|
name: string;
|
|
@@ -20423,6 +20914,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20423
20914
|
delayInSeconds?: number | null | undefined;
|
|
20424
20915
|
ignoreTransform?: boolean | undefined;
|
|
20425
20916
|
mediaUrls?: string[] | null | undefined;
|
|
20917
|
+
contentGenerated?: string | null | undefined;
|
|
20918
|
+
contentTransformed?: string | null | undefined;
|
|
20426
20919
|
tool_calls?: {
|
|
20427
20920
|
function: {
|
|
20428
20921
|
name: string;
|
|
@@ -20491,6 +20984,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20491
20984
|
delayInSeconds?: number | null | undefined;
|
|
20492
20985
|
ignoreTransform?: boolean | undefined;
|
|
20493
20986
|
mediaUrls?: string[] | null | undefined;
|
|
20987
|
+
contentGenerated?: string | null | undefined;
|
|
20988
|
+
contentTransformed?: string | null | undefined;
|
|
20494
20989
|
tool_calls?: {
|
|
20495
20990
|
function: {
|
|
20496
20991
|
name: string;
|
|
@@ -20559,6 +21054,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20559
21054
|
delayInSeconds?: number | null | undefined;
|
|
20560
21055
|
ignoreTransform?: boolean | undefined;
|
|
20561
21056
|
mediaUrls?: string[] | null | undefined;
|
|
21057
|
+
contentGenerated?: string | null | undefined;
|
|
21058
|
+
contentTransformed?: string | null | undefined;
|
|
20562
21059
|
tool_calls?: {
|
|
20563
21060
|
function: {
|
|
20564
21061
|
name: string;
|
|
@@ -20630,6 +21127,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20630
21127
|
delayInSeconds?: number | null | undefined;
|
|
20631
21128
|
ignoreTransform?: boolean | undefined;
|
|
20632
21129
|
mediaUrls?: string[] | null | undefined;
|
|
21130
|
+
contentGenerated?: string | null | undefined;
|
|
21131
|
+
contentTransformed?: string | null | undefined;
|
|
20633
21132
|
tool_calls?: {
|
|
20634
21133
|
function: {
|
|
20635
21134
|
name: string;
|
|
@@ -20699,6 +21198,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20699
21198
|
delayInSeconds?: number | null | undefined;
|
|
20700
21199
|
ignoreTransform?: boolean | undefined;
|
|
20701
21200
|
mediaUrls?: string[] | null | undefined;
|
|
21201
|
+
contentGenerated?: string | null | undefined;
|
|
21202
|
+
contentTransformed?: string | null | undefined;
|
|
20702
21203
|
tool_calls?: {
|
|
20703
21204
|
function: {
|
|
20704
21205
|
name: string;
|
|
@@ -20770,6 +21271,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20770
21271
|
delayInSeconds?: number | null | undefined;
|
|
20771
21272
|
ignoreTransform?: boolean | undefined;
|
|
20772
21273
|
mediaUrls?: string[] | null | undefined;
|
|
21274
|
+
contentGenerated?: string | null | undefined;
|
|
21275
|
+
contentTransformed?: string | null | undefined;
|
|
20773
21276
|
tool_calls?: {
|
|
20774
21277
|
function: {
|
|
20775
21278
|
name: string;
|
|
@@ -20839,6 +21342,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20839
21342
|
delayInSeconds?: number | null | undefined;
|
|
20840
21343
|
ignoreTransform?: boolean | undefined;
|
|
20841
21344
|
mediaUrls?: string[] | null | undefined;
|
|
21345
|
+
contentGenerated?: string | null | undefined;
|
|
21346
|
+
contentTransformed?: string | null | undefined;
|
|
20842
21347
|
tool_calls?: {
|
|
20843
21348
|
function: {
|
|
20844
21349
|
name: string;
|
|
@@ -20887,6 +21392,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20887
21392
|
}>, "many">>>>;
|
|
20888
21393
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
20889
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>>>;
|
|
20890
21397
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20891
21398
|
id: z.ZodString;
|
|
20892
21399
|
type: z.ZodString;
|
|
@@ -20926,6 +21433,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20926
21433
|
delayInSeconds?: number | null | undefined;
|
|
20927
21434
|
ignoreTransform?: boolean | undefined;
|
|
20928
21435
|
mediaUrls?: string[] | null | undefined;
|
|
21436
|
+
contentGenerated?: string | null | undefined;
|
|
21437
|
+
contentTransformed?: string | null | undefined;
|
|
20929
21438
|
tool_calls?: {
|
|
20930
21439
|
function: {
|
|
20931
21440
|
name: string;
|
|
@@ -20945,6 +21454,8 @@ declare module '@scout9/app/schemas' {
|
|
|
20945
21454
|
delayInSeconds?: number | null | undefined;
|
|
20946
21455
|
ignoreTransform?: boolean | undefined;
|
|
20947
21456
|
mediaUrls?: string[] | null | undefined;
|
|
21457
|
+
contentGenerated?: string | null | undefined;
|
|
21458
|
+
contentTransformed?: string | null | undefined;
|
|
20948
21459
|
tool_calls?: {
|
|
20949
21460
|
function: {
|
|
20950
21461
|
name: string;
|
|
@@ -21099,6 +21610,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21099
21610
|
delayInSeconds?: number | null | undefined;
|
|
21100
21611
|
ignoreTransform?: boolean | undefined;
|
|
21101
21612
|
mediaUrls?: string[] | null | undefined;
|
|
21613
|
+
contentGenerated?: string | null | undefined;
|
|
21614
|
+
contentTransformed?: string | null | undefined;
|
|
21102
21615
|
tool_calls?: {
|
|
21103
21616
|
function: {
|
|
21104
21617
|
name: string;
|
|
@@ -21168,6 +21681,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21168
21681
|
delayInSeconds?: number | null | undefined;
|
|
21169
21682
|
ignoreTransform?: boolean | undefined;
|
|
21170
21683
|
mediaUrls?: string[] | null | undefined;
|
|
21684
|
+
contentGenerated?: string | null | undefined;
|
|
21685
|
+
contentTransformed?: string | null | undefined;
|
|
21171
21686
|
tool_calls?: {
|
|
21172
21687
|
function: {
|
|
21173
21688
|
name: string;
|
|
@@ -21266,6 +21781,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21266
21781
|
delayInSeconds?: number | null | undefined;
|
|
21267
21782
|
ignoreTransform?: boolean | undefined;
|
|
21268
21783
|
mediaUrls?: string[] | null | undefined;
|
|
21784
|
+
contentGenerated?: string | null | undefined;
|
|
21785
|
+
contentTransformed?: string | null | undefined;
|
|
21269
21786
|
tool_calls?: {
|
|
21270
21787
|
function: {
|
|
21271
21788
|
name: string;
|
|
@@ -21379,6 +21896,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21379
21896
|
delayInSeconds?: number | null | undefined;
|
|
21380
21897
|
ignoreTransform?: boolean | undefined;
|
|
21381
21898
|
mediaUrls?: string[] | null | undefined;
|
|
21899
|
+
contentGenerated?: string | null | undefined;
|
|
21900
|
+
contentTransformed?: string | null | undefined;
|
|
21382
21901
|
tool_calls?: {
|
|
21383
21902
|
function: {
|
|
21384
21903
|
name: string;
|
|
@@ -21448,6 +21967,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21448
21967
|
delayInSeconds?: number | null | undefined;
|
|
21449
21968
|
ignoreTransform?: boolean | undefined;
|
|
21450
21969
|
mediaUrls?: string[] | null | undefined;
|
|
21970
|
+
contentGenerated?: string | null | undefined;
|
|
21971
|
+
contentTransformed?: string | null | undefined;
|
|
21451
21972
|
tool_calls?: {
|
|
21452
21973
|
function: {
|
|
21453
21974
|
name: string;
|
|
@@ -21475,6 +21996,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21475
21996
|
delayInSeconds?: number | null | undefined;
|
|
21476
21997
|
ignoreTransform?: boolean | undefined;
|
|
21477
21998
|
mediaUrls?: string[] | null | undefined;
|
|
21999
|
+
contentGenerated?: string | null | undefined;
|
|
22000
|
+
contentTransformed?: string | null | undefined;
|
|
21478
22001
|
tool_calls?: {
|
|
21479
22002
|
function: {
|
|
21480
22003
|
name: string;
|
|
@@ -21555,6 +22078,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21555
22078
|
delayInSeconds?: number | null | undefined;
|
|
21556
22079
|
ignoreTransform?: boolean | undefined;
|
|
21557
22080
|
mediaUrls?: string[] | null | undefined;
|
|
22081
|
+
contentGenerated?: string | null | undefined;
|
|
22082
|
+
contentTransformed?: string | null | undefined;
|
|
21558
22083
|
tool_calls?: {
|
|
21559
22084
|
function: {
|
|
21560
22085
|
name: string;
|
|
@@ -21668,6 +22193,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21668
22193
|
delayInSeconds?: number | null | undefined;
|
|
21669
22194
|
ignoreTransform?: boolean | undefined;
|
|
21670
22195
|
mediaUrls?: string[] | null | undefined;
|
|
22196
|
+
contentGenerated?: string | null | undefined;
|
|
22197
|
+
contentTransformed?: string | null | undefined;
|
|
21671
22198
|
tool_calls?: {
|
|
21672
22199
|
function: {
|
|
21673
22200
|
name: string;
|
|
@@ -21737,6 +22264,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21737
22264
|
delayInSeconds?: number | null | undefined;
|
|
21738
22265
|
ignoreTransform?: boolean | undefined;
|
|
21739
22266
|
mediaUrls?: string[] | null | undefined;
|
|
22267
|
+
contentGenerated?: string | null | undefined;
|
|
22268
|
+
contentTransformed?: string | null | undefined;
|
|
21740
22269
|
tool_calls?: {
|
|
21741
22270
|
function: {
|
|
21742
22271
|
name: string;
|
|
@@ -21764,6 +22293,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21764
22293
|
delayInSeconds?: number | null | undefined;
|
|
21765
22294
|
ignoreTransform?: boolean | undefined;
|
|
21766
22295
|
mediaUrls?: string[] | null | undefined;
|
|
22296
|
+
contentGenerated?: string | null | undefined;
|
|
22297
|
+
contentTransformed?: string | null | undefined;
|
|
21767
22298
|
tool_calls?: {
|
|
21768
22299
|
function: {
|
|
21769
22300
|
name: string;
|
|
@@ -21866,6 +22397,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21866
22397
|
}>, "many">>>>;
|
|
21867
22398
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
21868
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>>>;
|
|
21869
22402
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21870
22403
|
id: z.ZodString;
|
|
21871
22404
|
type: z.ZodString;
|
|
@@ -21905,6 +22438,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21905
22438
|
delayInSeconds?: number | null | undefined;
|
|
21906
22439
|
ignoreTransform?: boolean | undefined;
|
|
21907
22440
|
mediaUrls?: string[] | null | undefined;
|
|
22441
|
+
contentGenerated?: string | null | undefined;
|
|
22442
|
+
contentTransformed?: string | null | undefined;
|
|
21908
22443
|
tool_calls?: {
|
|
21909
22444
|
function: {
|
|
21910
22445
|
name: string;
|
|
@@ -21924,6 +22459,8 @@ declare module '@scout9/app/schemas' {
|
|
|
21924
22459
|
delayInSeconds?: number | null | undefined;
|
|
21925
22460
|
ignoreTransform?: boolean | undefined;
|
|
21926
22461
|
mediaUrls?: string[] | null | undefined;
|
|
22462
|
+
contentGenerated?: string | null | undefined;
|
|
22463
|
+
contentTransformed?: string | null | undefined;
|
|
21927
22464
|
tool_calls?: {
|
|
21928
22465
|
function: {
|
|
21929
22466
|
name: string;
|
|
@@ -22227,6 +22764,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22227
22764
|
}>, "many">>>>;
|
|
22228
22765
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
22229
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>>>;
|
|
22230
22769
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22231
22770
|
id: z.ZodString;
|
|
22232
22771
|
type: z.ZodString;
|
|
@@ -22266,6 +22805,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22266
22805
|
delayInSeconds?: number | null | undefined;
|
|
22267
22806
|
ignoreTransform?: boolean | undefined;
|
|
22268
22807
|
mediaUrls?: string[] | null | undefined;
|
|
22808
|
+
contentGenerated?: string | null | undefined;
|
|
22809
|
+
contentTransformed?: string | null | undefined;
|
|
22269
22810
|
tool_calls?: {
|
|
22270
22811
|
function: {
|
|
22271
22812
|
name: string;
|
|
@@ -22285,6 +22826,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22285
22826
|
delayInSeconds?: number | null | undefined;
|
|
22286
22827
|
ignoreTransform?: boolean | undefined;
|
|
22287
22828
|
mediaUrls?: string[] | null | undefined;
|
|
22829
|
+
contentGenerated?: string | null | undefined;
|
|
22830
|
+
contentTransformed?: string | null | undefined;
|
|
22288
22831
|
tool_calls?: {
|
|
22289
22832
|
function: {
|
|
22290
22833
|
name: string;
|
|
@@ -22353,6 +22896,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22353
22896
|
delayInSeconds?: number | null | undefined;
|
|
22354
22897
|
ignoreTransform?: boolean | undefined;
|
|
22355
22898
|
mediaUrls?: string[] | null | undefined;
|
|
22899
|
+
contentGenerated?: string | null | undefined;
|
|
22900
|
+
contentTransformed?: string | null | undefined;
|
|
22356
22901
|
tool_calls?: {
|
|
22357
22902
|
function: {
|
|
22358
22903
|
name: string;
|
|
@@ -22421,6 +22966,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22421
22966
|
delayInSeconds?: number | null | undefined;
|
|
22422
22967
|
ignoreTransform?: boolean | undefined;
|
|
22423
22968
|
mediaUrls?: string[] | null | undefined;
|
|
22969
|
+
contentGenerated?: string | null | undefined;
|
|
22970
|
+
contentTransformed?: string | null | undefined;
|
|
22424
22971
|
tool_calls?: {
|
|
22425
22972
|
function: {
|
|
22426
22973
|
name: string;
|
|
@@ -22596,6 +23143,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22596
23143
|
}>, "many">>>>;
|
|
22597
23144
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
22598
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>>>;
|
|
22599
23148
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22600
23149
|
id: z.ZodString;
|
|
22601
23150
|
type: z.ZodString;
|
|
@@ -22635,6 +23184,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22635
23184
|
delayInSeconds?: number | null | undefined;
|
|
22636
23185
|
ignoreTransform?: boolean | undefined;
|
|
22637
23186
|
mediaUrls?: string[] | null | undefined;
|
|
23187
|
+
contentGenerated?: string | null | undefined;
|
|
23188
|
+
contentTransformed?: string | null | undefined;
|
|
22638
23189
|
tool_calls?: {
|
|
22639
23190
|
function: {
|
|
22640
23191
|
name: string;
|
|
@@ -22654,6 +23205,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22654
23205
|
delayInSeconds?: number | null | undefined;
|
|
22655
23206
|
ignoreTransform?: boolean | undefined;
|
|
22656
23207
|
mediaUrls?: string[] | null | undefined;
|
|
23208
|
+
contentGenerated?: string | null | undefined;
|
|
23209
|
+
contentTransformed?: string | null | undefined;
|
|
22657
23210
|
tool_calls?: {
|
|
22658
23211
|
function: {
|
|
22659
23212
|
name: string;
|
|
@@ -22722,6 +23275,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22722
23275
|
delayInSeconds?: number | null | undefined;
|
|
22723
23276
|
ignoreTransform?: boolean | undefined;
|
|
22724
23277
|
mediaUrls?: string[] | null | undefined;
|
|
23278
|
+
contentGenerated?: string | null | undefined;
|
|
23279
|
+
contentTransformed?: string | null | undefined;
|
|
22725
23280
|
tool_calls?: {
|
|
22726
23281
|
function: {
|
|
22727
23282
|
name: string;
|
|
@@ -22790,6 +23345,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22790
23345
|
delayInSeconds?: number | null | undefined;
|
|
22791
23346
|
ignoreTransform?: boolean | undefined;
|
|
22792
23347
|
mediaUrls?: string[] | null | undefined;
|
|
23348
|
+
contentGenerated?: string | null | undefined;
|
|
23349
|
+
contentTransformed?: string | null | undefined;
|
|
22793
23350
|
tool_calls?: {
|
|
22794
23351
|
function: {
|
|
22795
23352
|
name: string;
|
|
@@ -22861,6 +23418,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22861
23418
|
delayInSeconds?: number | null | undefined;
|
|
22862
23419
|
ignoreTransform?: boolean | undefined;
|
|
22863
23420
|
mediaUrls?: string[] | null | undefined;
|
|
23421
|
+
contentGenerated?: string | null | undefined;
|
|
23422
|
+
contentTransformed?: string | null | undefined;
|
|
22864
23423
|
tool_calls?: {
|
|
22865
23424
|
function: {
|
|
22866
23425
|
name: string;
|
|
@@ -22930,6 +23489,8 @@ declare module '@scout9/app/schemas' {
|
|
|
22930
23489
|
delayInSeconds?: number | null | undefined;
|
|
22931
23490
|
ignoreTransform?: boolean | undefined;
|
|
22932
23491
|
mediaUrls?: string[] | null | undefined;
|
|
23492
|
+
contentGenerated?: string | null | undefined;
|
|
23493
|
+
contentTransformed?: string | null | undefined;
|
|
22933
23494
|
tool_calls?: {
|
|
22934
23495
|
function: {
|
|
22935
23496
|
name: string;
|
|
@@ -23001,6 +23562,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23001
23562
|
delayInSeconds?: number | null | undefined;
|
|
23002
23563
|
ignoreTransform?: boolean | undefined;
|
|
23003
23564
|
mediaUrls?: string[] | null | undefined;
|
|
23565
|
+
contentGenerated?: string | null | undefined;
|
|
23566
|
+
contentTransformed?: string | null | undefined;
|
|
23004
23567
|
tool_calls?: {
|
|
23005
23568
|
function: {
|
|
23006
23569
|
name: string;
|
|
@@ -23070,6 +23633,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23070
23633
|
delayInSeconds?: number | null | undefined;
|
|
23071
23634
|
ignoreTransform?: boolean | undefined;
|
|
23072
23635
|
mediaUrls?: string[] | null | undefined;
|
|
23636
|
+
contentGenerated?: string | null | undefined;
|
|
23637
|
+
contentTransformed?: string | null | undefined;
|
|
23073
23638
|
tool_calls?: {
|
|
23074
23639
|
function: {
|
|
23075
23640
|
name: string;
|
|
@@ -23118,6 +23683,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23118
23683
|
}>, "many">>>>;
|
|
23119
23684
|
ignoreTransform: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
23120
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>>>;
|
|
23121
23688
|
tool_calls: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23122
23689
|
id: z.ZodString;
|
|
23123
23690
|
type: z.ZodString;
|
|
@@ -23157,6 +23724,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23157
23724
|
delayInSeconds?: number | null | undefined;
|
|
23158
23725
|
ignoreTransform?: boolean | undefined;
|
|
23159
23726
|
mediaUrls?: string[] | null | undefined;
|
|
23727
|
+
contentGenerated?: string | null | undefined;
|
|
23728
|
+
contentTransformed?: string | null | undefined;
|
|
23160
23729
|
tool_calls?: {
|
|
23161
23730
|
function: {
|
|
23162
23731
|
name: string;
|
|
@@ -23176,6 +23745,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23176
23745
|
delayInSeconds?: number | null | undefined;
|
|
23177
23746
|
ignoreTransform?: boolean | undefined;
|
|
23178
23747
|
mediaUrls?: string[] | null | undefined;
|
|
23748
|
+
contentGenerated?: string | null | undefined;
|
|
23749
|
+
contentTransformed?: string | null | undefined;
|
|
23179
23750
|
tool_calls?: {
|
|
23180
23751
|
function: {
|
|
23181
23752
|
name: string;
|
|
@@ -23330,6 +23901,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23330
23901
|
delayInSeconds?: number | null | undefined;
|
|
23331
23902
|
ignoreTransform?: boolean | undefined;
|
|
23332
23903
|
mediaUrls?: string[] | null | undefined;
|
|
23904
|
+
contentGenerated?: string | null | undefined;
|
|
23905
|
+
contentTransformed?: string | null | undefined;
|
|
23333
23906
|
tool_calls?: {
|
|
23334
23907
|
function: {
|
|
23335
23908
|
name: string;
|
|
@@ -23399,6 +23972,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23399
23972
|
delayInSeconds?: number | null | undefined;
|
|
23400
23973
|
ignoreTransform?: boolean | undefined;
|
|
23401
23974
|
mediaUrls?: string[] | null | undefined;
|
|
23975
|
+
contentGenerated?: string | null | undefined;
|
|
23976
|
+
contentTransformed?: string | null | undefined;
|
|
23402
23977
|
tool_calls?: {
|
|
23403
23978
|
function: {
|
|
23404
23979
|
name: string;
|
|
@@ -23497,6 +24072,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23497
24072
|
delayInSeconds?: number | null | undefined;
|
|
23498
24073
|
ignoreTransform?: boolean | undefined;
|
|
23499
24074
|
mediaUrls?: string[] | null | undefined;
|
|
24075
|
+
contentGenerated?: string | null | undefined;
|
|
24076
|
+
contentTransformed?: string | null | undefined;
|
|
23500
24077
|
tool_calls?: {
|
|
23501
24078
|
function: {
|
|
23502
24079
|
name: string;
|
|
@@ -23610,6 +24187,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23610
24187
|
delayInSeconds?: number | null | undefined;
|
|
23611
24188
|
ignoreTransform?: boolean | undefined;
|
|
23612
24189
|
mediaUrls?: string[] | null | undefined;
|
|
24190
|
+
contentGenerated?: string | null | undefined;
|
|
24191
|
+
contentTransformed?: string | null | undefined;
|
|
23613
24192
|
tool_calls?: {
|
|
23614
24193
|
function: {
|
|
23615
24194
|
name: string;
|
|
@@ -23679,6 +24258,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23679
24258
|
delayInSeconds?: number | null | undefined;
|
|
23680
24259
|
ignoreTransform?: boolean | undefined;
|
|
23681
24260
|
mediaUrls?: string[] | null | undefined;
|
|
24261
|
+
contentGenerated?: string | null | undefined;
|
|
24262
|
+
contentTransformed?: string | null | undefined;
|
|
23682
24263
|
tool_calls?: {
|
|
23683
24264
|
function: {
|
|
23684
24265
|
name: string;
|
|
@@ -23706,6 +24287,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23706
24287
|
delayInSeconds?: number | null | undefined;
|
|
23707
24288
|
ignoreTransform?: boolean | undefined;
|
|
23708
24289
|
mediaUrls?: string[] | null | undefined;
|
|
24290
|
+
contentGenerated?: string | null | undefined;
|
|
24291
|
+
contentTransformed?: string | null | undefined;
|
|
23709
24292
|
tool_calls?: {
|
|
23710
24293
|
function: {
|
|
23711
24294
|
name: string;
|
|
@@ -23786,6 +24369,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23786
24369
|
delayInSeconds?: number | null | undefined;
|
|
23787
24370
|
ignoreTransform?: boolean | undefined;
|
|
23788
24371
|
mediaUrls?: string[] | null | undefined;
|
|
24372
|
+
contentGenerated?: string | null | undefined;
|
|
24373
|
+
contentTransformed?: string | null | undefined;
|
|
23789
24374
|
tool_calls?: {
|
|
23790
24375
|
function: {
|
|
23791
24376
|
name: string;
|
|
@@ -23899,6 +24484,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23899
24484
|
delayInSeconds?: number | null | undefined;
|
|
23900
24485
|
ignoreTransform?: boolean | undefined;
|
|
23901
24486
|
mediaUrls?: string[] | null | undefined;
|
|
24487
|
+
contentGenerated?: string | null | undefined;
|
|
24488
|
+
contentTransformed?: string | null | undefined;
|
|
23902
24489
|
tool_calls?: {
|
|
23903
24490
|
function: {
|
|
23904
24491
|
name: string;
|
|
@@ -23968,6 +24555,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23968
24555
|
delayInSeconds?: number | null | undefined;
|
|
23969
24556
|
ignoreTransform?: boolean | undefined;
|
|
23970
24557
|
mediaUrls?: string[] | null | undefined;
|
|
24558
|
+
contentGenerated?: string | null | undefined;
|
|
24559
|
+
contentTransformed?: string | null | undefined;
|
|
23971
24560
|
tool_calls?: {
|
|
23972
24561
|
function: {
|
|
23973
24562
|
name: string;
|
|
@@ -23995,6 +24584,8 @@ declare module '@scout9/app/schemas' {
|
|
|
23995
24584
|
delayInSeconds?: number | null | undefined;
|
|
23996
24585
|
ignoreTransform?: boolean | undefined;
|
|
23997
24586
|
mediaUrls?: string[] | null | undefined;
|
|
24587
|
+
contentGenerated?: string | null | undefined;
|
|
24588
|
+
contentTransformed?: string | null | undefined;
|
|
23998
24589
|
tool_calls?: {
|
|
23999
24590
|
function: {
|
|
24000
24591
|
name: string;
|