@veruna/api-contracts 1.1.16 → 1.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/v1/ai-model/public/queries/get-active-models.query.d.ts +14 -0
- package/build/v1/ai-model/public/queries/get-models-list.query.d.ts +14 -0
- package/build/v1/ai-model/schemas/model-response.schema.d.ts +14 -0
- package/build/v1/ai-model/schemas/model-response.schema.js +1 -0
- package/build/v1/ai-model/schemas/model-response.schema.js.map +1 -1
- package/build/v1/ai-model/schemas/model-settings.schema.d.ts +67 -0
- package/build/v1/ai-model/schemas/model-settings.schema.js +9 -1
- package/build/v1/ai-model/schemas/model-settings.schema.js.map +1 -1
- package/build/v1/ai-model/schemas/models-list-response.schema.d.ts +42 -0
- package/build/v1/ai-model/schemas/unreg-models-list-response.schema.d.ts +14 -0
- package/build/v1/ai-model/unreg/queries/get-models-list.query.d.ts +14 -0
- package/build/v1/message/message.errors.d.ts +2 -1
- package/build/v1/message/message.errors.js +5 -0
- package/build/v1/message/message.errors.js.map +1 -1
- package/build/v1/tool/admin/commands/create-model-tool-binding.command.d.ts +52 -0
- package/build/v1/tool/admin/commands/update-model-tool-binding.command.d.ts +52 -0
- package/build/v1/tool/public/queries/get-tool-availability.query.d.ts +14 -0
- package/build/v1/tool/schemas/tool.schema.d.ts +226 -0
- package/build/v1/tool/unreg/queries/get-tool-availability-unreg.query.d.ts +14 -0
- package/package.json +1 -1
|
@@ -118,6 +118,20 @@ export declare const ToolAvailabilityProviderSchema: z.ZodObject<{
|
|
|
118
118
|
maxFiles: z.ZodNumber;
|
|
119
119
|
}, z.core.$strip>>;
|
|
120
120
|
}, z.core.$strip>;
|
|
121
|
+
toolSettings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
122
|
+
key: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingKey>;
|
|
123
|
+
title: z.ZodString;
|
|
124
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
125
|
+
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
126
|
+
defaultOptionId: z.ZodString;
|
|
127
|
+
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
128
|
+
options: z.ZodArray<z.ZodObject<{
|
|
129
|
+
title: z.ZodString;
|
|
130
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
131
|
+
id: z.ZodString;
|
|
132
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
133
|
+
}, z.core.$strip>>;
|
|
134
|
+
}, z.core.$strip>>>;
|
|
121
135
|
access: z.ZodBoolean;
|
|
122
136
|
accessReason: z.ZodNullable<z.ZodEnum<typeof import("../..").AccessReason>>;
|
|
123
137
|
}, z.core.$strip>>;
|
|
@@ -179,6 +193,20 @@ export declare const ToolAvailabilityItemSchema: z.ZodObject<{
|
|
|
179
193
|
maxFiles: z.ZodNumber;
|
|
180
194
|
}, z.core.$strip>>;
|
|
181
195
|
}, z.core.$strip>;
|
|
196
|
+
toolSettings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
197
|
+
key: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingKey>;
|
|
198
|
+
title: z.ZodString;
|
|
199
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
200
|
+
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
201
|
+
defaultOptionId: z.ZodString;
|
|
202
|
+
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
203
|
+
options: z.ZodArray<z.ZodObject<{
|
|
204
|
+
title: z.ZodString;
|
|
205
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
206
|
+
id: z.ZodString;
|
|
207
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
208
|
+
}, z.core.$strip>>;
|
|
209
|
+
}, z.core.$strip>>>;
|
|
182
210
|
access: z.ZodBoolean;
|
|
183
211
|
accessReason: z.ZodNullable<z.ZodEnum<typeof import("../..").AccessReason>>;
|
|
184
212
|
}, z.core.$strip>>;
|
|
@@ -242,6 +270,20 @@ export declare const ToolAvailabilityResponseSchema: z.ZodObject<{
|
|
|
242
270
|
maxFiles: z.ZodNumber;
|
|
243
271
|
}, z.core.$strip>>;
|
|
244
272
|
}, z.core.$strip>;
|
|
273
|
+
toolSettings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
274
|
+
key: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingKey>;
|
|
275
|
+
title: z.ZodString;
|
|
276
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
277
|
+
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
278
|
+
defaultOptionId: z.ZodString;
|
|
279
|
+
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
280
|
+
options: z.ZodArray<z.ZodObject<{
|
|
281
|
+
title: z.ZodString;
|
|
282
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
283
|
+
id: z.ZodString;
|
|
284
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
285
|
+
}, z.core.$strip>>;
|
|
286
|
+
}, z.core.$strip>>>;
|
|
245
287
|
access: z.ZodBoolean;
|
|
246
288
|
accessReason: z.ZodNullable<z.ZodEnum<typeof import("../..").AccessReason>>;
|
|
247
289
|
}, z.core.$strip>>;
|
|
@@ -332,6 +374,19 @@ export declare const ModelToolSettingsConfigWriteSchema: z.ZodArray<z.ZodDiscrim
|
|
|
332
374
|
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
333
375
|
defaultOptionId: z.ZodString;
|
|
334
376
|
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
377
|
+
autoSchemaConfig: z.ZodOptional<z.ZodObject<{
|
|
378
|
+
paramName: z.ZodString;
|
|
379
|
+
paramDescription: z.ZodString;
|
|
380
|
+
defaultOptionId: z.ZodString;
|
|
381
|
+
autoOption: z.ZodObject<{
|
|
382
|
+
id: z.ZodString;
|
|
383
|
+
title: z.ZodString;
|
|
384
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
385
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
386
|
+
providerValue: z.ZodOptional<z.ZodString>;
|
|
387
|
+
promptSuffix: z.ZodOptional<z.ZodString>;
|
|
388
|
+
}, z.core.$strip>;
|
|
389
|
+
}, z.core.$strip>>;
|
|
335
390
|
key: z.ZodLiteral<import("../../ai-model/schemas/model-settings.schema").SettingKey.STYLE>;
|
|
336
391
|
options: z.ZodArray<z.ZodObject<{
|
|
337
392
|
id: z.ZodString;
|
|
@@ -347,6 +402,19 @@ export declare const ModelToolSettingsConfigWriteSchema: z.ZodArray<z.ZodDiscrim
|
|
|
347
402
|
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
348
403
|
defaultOptionId: z.ZodString;
|
|
349
404
|
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
405
|
+
autoSchemaConfig: z.ZodOptional<z.ZodObject<{
|
|
406
|
+
paramName: z.ZodString;
|
|
407
|
+
paramDescription: z.ZodString;
|
|
408
|
+
defaultOptionId: z.ZodString;
|
|
409
|
+
autoOption: z.ZodObject<{
|
|
410
|
+
id: z.ZodString;
|
|
411
|
+
title: z.ZodString;
|
|
412
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
413
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
414
|
+
providerValue: z.ZodOptional<z.ZodString>;
|
|
415
|
+
promptSuffix: z.ZodOptional<z.ZodString>;
|
|
416
|
+
}, z.core.$strip>;
|
|
417
|
+
}, z.core.$strip>>;
|
|
350
418
|
key: z.ZodLiteral<import("../../ai-model/schemas/model-settings.schema").SettingKey.MAX_RESULTS>;
|
|
351
419
|
options: z.ZodArray<z.ZodObject<{
|
|
352
420
|
id: z.ZodString;
|
|
@@ -362,6 +430,19 @@ export declare const ModelToolSettingsConfigWriteSchema: z.ZodArray<z.ZodDiscrim
|
|
|
362
430
|
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
363
431
|
defaultOptionId: z.ZodString;
|
|
364
432
|
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
433
|
+
autoSchemaConfig: z.ZodOptional<z.ZodObject<{
|
|
434
|
+
paramName: z.ZodString;
|
|
435
|
+
paramDescription: z.ZodString;
|
|
436
|
+
defaultOptionId: z.ZodString;
|
|
437
|
+
autoOption: z.ZodObject<{
|
|
438
|
+
id: z.ZodString;
|
|
439
|
+
title: z.ZodString;
|
|
440
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
441
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
442
|
+
providerValue: z.ZodOptional<z.ZodString>;
|
|
443
|
+
promptSuffix: z.ZodOptional<z.ZodString>;
|
|
444
|
+
}, z.core.$strip>;
|
|
445
|
+
}, z.core.$strip>>;
|
|
365
446
|
key: z.ZodLiteral<import("../../ai-model/schemas/model-settings.schema").SettingKey.ASPECT_RATIO>;
|
|
366
447
|
options: z.ZodArray<z.ZodObject<{
|
|
367
448
|
id: z.ZodString;
|
|
@@ -377,6 +458,19 @@ export declare const ModelToolSettingsConfigWriteSchema: z.ZodArray<z.ZodDiscrim
|
|
|
377
458
|
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
378
459
|
defaultOptionId: z.ZodString;
|
|
379
460
|
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
461
|
+
autoSchemaConfig: z.ZodOptional<z.ZodObject<{
|
|
462
|
+
paramName: z.ZodString;
|
|
463
|
+
paramDescription: z.ZodString;
|
|
464
|
+
defaultOptionId: z.ZodString;
|
|
465
|
+
autoOption: z.ZodObject<{
|
|
466
|
+
id: z.ZodString;
|
|
467
|
+
title: z.ZodString;
|
|
468
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
469
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
470
|
+
providerValue: z.ZodOptional<z.ZodString>;
|
|
471
|
+
promptSuffix: z.ZodOptional<z.ZodString>;
|
|
472
|
+
}, z.core.$strip>;
|
|
473
|
+
}, z.core.$strip>>;
|
|
380
474
|
key: z.ZodLiteral<import("../../ai-model/schemas/model-settings.schema").SettingKey.RESOLUTION>;
|
|
381
475
|
options: z.ZodArray<z.ZodObject<{
|
|
382
476
|
id: z.ZodString;
|
|
@@ -496,6 +590,19 @@ export declare const CreateModelToolBindingRequestSchema: z.ZodObject<{
|
|
|
496
590
|
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
497
591
|
defaultOptionId: z.ZodString;
|
|
498
592
|
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
593
|
+
autoSchemaConfig: z.ZodOptional<z.ZodObject<{
|
|
594
|
+
paramName: z.ZodString;
|
|
595
|
+
paramDescription: z.ZodString;
|
|
596
|
+
defaultOptionId: z.ZodString;
|
|
597
|
+
autoOption: z.ZodObject<{
|
|
598
|
+
id: z.ZodString;
|
|
599
|
+
title: z.ZodString;
|
|
600
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
601
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
602
|
+
providerValue: z.ZodOptional<z.ZodString>;
|
|
603
|
+
promptSuffix: z.ZodOptional<z.ZodString>;
|
|
604
|
+
}, z.core.$strip>;
|
|
605
|
+
}, z.core.$strip>>;
|
|
499
606
|
key: z.ZodLiteral<import("../../ai-model/schemas/model-settings.schema").SettingKey.STYLE>;
|
|
500
607
|
options: z.ZodArray<z.ZodObject<{
|
|
501
608
|
id: z.ZodString;
|
|
@@ -511,6 +618,19 @@ export declare const CreateModelToolBindingRequestSchema: z.ZodObject<{
|
|
|
511
618
|
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
512
619
|
defaultOptionId: z.ZodString;
|
|
513
620
|
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
621
|
+
autoSchemaConfig: z.ZodOptional<z.ZodObject<{
|
|
622
|
+
paramName: z.ZodString;
|
|
623
|
+
paramDescription: z.ZodString;
|
|
624
|
+
defaultOptionId: z.ZodString;
|
|
625
|
+
autoOption: z.ZodObject<{
|
|
626
|
+
id: z.ZodString;
|
|
627
|
+
title: z.ZodString;
|
|
628
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
629
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
630
|
+
providerValue: z.ZodOptional<z.ZodString>;
|
|
631
|
+
promptSuffix: z.ZodOptional<z.ZodString>;
|
|
632
|
+
}, z.core.$strip>;
|
|
633
|
+
}, z.core.$strip>>;
|
|
514
634
|
key: z.ZodLiteral<import("../../ai-model/schemas/model-settings.schema").SettingKey.MAX_RESULTS>;
|
|
515
635
|
options: z.ZodArray<z.ZodObject<{
|
|
516
636
|
id: z.ZodString;
|
|
@@ -526,6 +646,19 @@ export declare const CreateModelToolBindingRequestSchema: z.ZodObject<{
|
|
|
526
646
|
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
527
647
|
defaultOptionId: z.ZodString;
|
|
528
648
|
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
649
|
+
autoSchemaConfig: z.ZodOptional<z.ZodObject<{
|
|
650
|
+
paramName: z.ZodString;
|
|
651
|
+
paramDescription: z.ZodString;
|
|
652
|
+
defaultOptionId: z.ZodString;
|
|
653
|
+
autoOption: z.ZodObject<{
|
|
654
|
+
id: z.ZodString;
|
|
655
|
+
title: z.ZodString;
|
|
656
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
657
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
658
|
+
providerValue: z.ZodOptional<z.ZodString>;
|
|
659
|
+
promptSuffix: z.ZodOptional<z.ZodString>;
|
|
660
|
+
}, z.core.$strip>;
|
|
661
|
+
}, z.core.$strip>>;
|
|
529
662
|
key: z.ZodLiteral<import("../../ai-model/schemas/model-settings.schema").SettingKey.ASPECT_RATIO>;
|
|
530
663
|
options: z.ZodArray<z.ZodObject<{
|
|
531
664
|
id: z.ZodString;
|
|
@@ -541,6 +674,19 @@ export declare const CreateModelToolBindingRequestSchema: z.ZodObject<{
|
|
|
541
674
|
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
542
675
|
defaultOptionId: z.ZodString;
|
|
543
676
|
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
677
|
+
autoSchemaConfig: z.ZodOptional<z.ZodObject<{
|
|
678
|
+
paramName: z.ZodString;
|
|
679
|
+
paramDescription: z.ZodString;
|
|
680
|
+
defaultOptionId: z.ZodString;
|
|
681
|
+
autoOption: z.ZodObject<{
|
|
682
|
+
id: z.ZodString;
|
|
683
|
+
title: z.ZodString;
|
|
684
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
685
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
686
|
+
providerValue: z.ZodOptional<z.ZodString>;
|
|
687
|
+
promptSuffix: z.ZodOptional<z.ZodString>;
|
|
688
|
+
}, z.core.$strip>;
|
|
689
|
+
}, z.core.$strip>>;
|
|
544
690
|
key: z.ZodLiteral<import("../../ai-model/schemas/model-settings.schema").SettingKey.RESOLUTION>;
|
|
545
691
|
options: z.ZodArray<z.ZodObject<{
|
|
546
692
|
id: z.ZodString;
|
|
@@ -563,6 +709,19 @@ export declare const UpdateModelToolBindingRequestSchema: z.ZodObject<{
|
|
|
563
709
|
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
564
710
|
defaultOptionId: z.ZodString;
|
|
565
711
|
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
712
|
+
autoSchemaConfig: z.ZodOptional<z.ZodObject<{
|
|
713
|
+
paramName: z.ZodString;
|
|
714
|
+
paramDescription: z.ZodString;
|
|
715
|
+
defaultOptionId: z.ZodString;
|
|
716
|
+
autoOption: z.ZodObject<{
|
|
717
|
+
id: z.ZodString;
|
|
718
|
+
title: z.ZodString;
|
|
719
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
720
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
721
|
+
providerValue: z.ZodOptional<z.ZodString>;
|
|
722
|
+
promptSuffix: z.ZodOptional<z.ZodString>;
|
|
723
|
+
}, z.core.$strip>;
|
|
724
|
+
}, z.core.$strip>>;
|
|
566
725
|
key: z.ZodLiteral<import("../../ai-model/schemas/model-settings.schema").SettingKey.STYLE>;
|
|
567
726
|
options: z.ZodArray<z.ZodObject<{
|
|
568
727
|
id: z.ZodString;
|
|
@@ -578,6 +737,19 @@ export declare const UpdateModelToolBindingRequestSchema: z.ZodObject<{
|
|
|
578
737
|
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
579
738
|
defaultOptionId: z.ZodString;
|
|
580
739
|
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
740
|
+
autoSchemaConfig: z.ZodOptional<z.ZodObject<{
|
|
741
|
+
paramName: z.ZodString;
|
|
742
|
+
paramDescription: z.ZodString;
|
|
743
|
+
defaultOptionId: z.ZodString;
|
|
744
|
+
autoOption: z.ZodObject<{
|
|
745
|
+
id: z.ZodString;
|
|
746
|
+
title: z.ZodString;
|
|
747
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
748
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
749
|
+
providerValue: z.ZodOptional<z.ZodString>;
|
|
750
|
+
promptSuffix: z.ZodOptional<z.ZodString>;
|
|
751
|
+
}, z.core.$strip>;
|
|
752
|
+
}, z.core.$strip>>;
|
|
581
753
|
key: z.ZodLiteral<import("../../ai-model/schemas/model-settings.schema").SettingKey.MAX_RESULTS>;
|
|
582
754
|
options: z.ZodArray<z.ZodObject<{
|
|
583
755
|
id: z.ZodString;
|
|
@@ -593,6 +765,19 @@ export declare const UpdateModelToolBindingRequestSchema: z.ZodObject<{
|
|
|
593
765
|
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
594
766
|
defaultOptionId: z.ZodString;
|
|
595
767
|
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
768
|
+
autoSchemaConfig: z.ZodOptional<z.ZodObject<{
|
|
769
|
+
paramName: z.ZodString;
|
|
770
|
+
paramDescription: z.ZodString;
|
|
771
|
+
defaultOptionId: z.ZodString;
|
|
772
|
+
autoOption: z.ZodObject<{
|
|
773
|
+
id: z.ZodString;
|
|
774
|
+
title: z.ZodString;
|
|
775
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
776
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
777
|
+
providerValue: z.ZodOptional<z.ZodString>;
|
|
778
|
+
promptSuffix: z.ZodOptional<z.ZodString>;
|
|
779
|
+
}, z.core.$strip>;
|
|
780
|
+
}, z.core.$strip>>;
|
|
596
781
|
key: z.ZodLiteral<import("../../ai-model/schemas/model-settings.schema").SettingKey.ASPECT_RATIO>;
|
|
597
782
|
options: z.ZodArray<z.ZodObject<{
|
|
598
783
|
id: z.ZodString;
|
|
@@ -608,6 +793,19 @@ export declare const UpdateModelToolBindingRequestSchema: z.ZodObject<{
|
|
|
608
793
|
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
609
794
|
defaultOptionId: z.ZodString;
|
|
610
795
|
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
796
|
+
autoSchemaConfig: z.ZodOptional<z.ZodObject<{
|
|
797
|
+
paramName: z.ZodString;
|
|
798
|
+
paramDescription: z.ZodString;
|
|
799
|
+
defaultOptionId: z.ZodString;
|
|
800
|
+
autoOption: z.ZodObject<{
|
|
801
|
+
id: z.ZodString;
|
|
802
|
+
title: z.ZodString;
|
|
803
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
804
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
805
|
+
providerValue: z.ZodOptional<z.ZodString>;
|
|
806
|
+
promptSuffix: z.ZodOptional<z.ZodString>;
|
|
807
|
+
}, z.core.$strip>;
|
|
808
|
+
}, z.core.$strip>>;
|
|
611
809
|
key: z.ZodLiteral<import("../../ai-model/schemas/model-settings.schema").SettingKey.RESOLUTION>;
|
|
612
810
|
options: z.ZodArray<z.ZodObject<{
|
|
613
811
|
id: z.ZodString;
|
|
@@ -729,6 +927,20 @@ export declare const ToolAvailabilityItemWithAccessSchema: z.ZodObject<{
|
|
|
729
927
|
maxFiles: z.ZodNumber;
|
|
730
928
|
}, z.core.$strip>>;
|
|
731
929
|
}, z.core.$strip>;
|
|
930
|
+
toolSettings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
931
|
+
key: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingKey>;
|
|
932
|
+
title: z.ZodString;
|
|
933
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
934
|
+
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
935
|
+
defaultOptionId: z.ZodString;
|
|
936
|
+
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
937
|
+
options: z.ZodArray<z.ZodObject<{
|
|
938
|
+
title: z.ZodString;
|
|
939
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
940
|
+
id: z.ZodString;
|
|
941
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
942
|
+
}, z.core.$strip>>;
|
|
943
|
+
}, z.core.$strip>>>;
|
|
732
944
|
access: z.ZodBoolean;
|
|
733
945
|
accessReason: z.ZodNullable<z.ZodEnum<typeof import("../..").AccessReason>>;
|
|
734
946
|
}, z.core.$strip>>;
|
|
@@ -794,6 +1006,20 @@ export declare const ToolAvailabilityWithAccessResponseSchema: z.ZodObject<{
|
|
|
794
1006
|
maxFiles: z.ZodNumber;
|
|
795
1007
|
}, z.core.$strip>>;
|
|
796
1008
|
}, z.core.$strip>;
|
|
1009
|
+
toolSettings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1010
|
+
key: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingKey>;
|
|
1011
|
+
title: z.ZodString;
|
|
1012
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1013
|
+
inputType: z.ZodEnum<typeof import("../../ai-model/schemas/model-settings.schema").SettingInputType>;
|
|
1014
|
+
defaultOptionId: z.ZodString;
|
|
1015
|
+
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
1016
|
+
options: z.ZodArray<z.ZodObject<{
|
|
1017
|
+
title: z.ZodString;
|
|
1018
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1019
|
+
id: z.ZodString;
|
|
1020
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
1021
|
+
}, z.core.$strip>>;
|
|
1022
|
+
}, z.core.$strip>>>;
|
|
797
1023
|
access: z.ZodBoolean;
|
|
798
1024
|
accessReason: z.ZodNullable<z.ZodEnum<typeof import("../..").AccessReason>>;
|
|
799
1025
|
}, z.core.$strip>>;
|
|
@@ -61,6 +61,20 @@ export declare namespace UnregToolGetAvailabilityQuery {
|
|
|
61
61
|
maxFiles: z.ZodNumber;
|
|
62
62
|
}, z.core.$strip>>;
|
|
63
63
|
}, z.core.$strip>;
|
|
64
|
+
toolSettings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
65
|
+
key: z.ZodEnum<typeof import("../../..").SettingKey>;
|
|
66
|
+
title: z.ZodString;
|
|
67
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
68
|
+
inputType: z.ZodEnum<typeof import("../../..").SettingInputType>;
|
|
69
|
+
defaultOptionId: z.ZodString;
|
|
70
|
+
maxSelections: z.ZodOptional<z.ZodNumber>;
|
|
71
|
+
options: z.ZodArray<z.ZodObject<{
|
|
72
|
+
title: z.ZodString;
|
|
73
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
74
|
+
id: z.ZodString;
|
|
75
|
+
priceModifier: z.ZodDefault<z.ZodNumber>;
|
|
76
|
+
}, z.core.$strip>>;
|
|
77
|
+
}, z.core.$strip>>>;
|
|
64
78
|
access: z.ZodBoolean;
|
|
65
79
|
accessReason: z.ZodNullable<z.ZodEnum<typeof import("../../..").AccessReason>>;
|
|
66
80
|
}, z.core.$strip>>;
|