|
1 | 1 | import { z } from 'zod' |
2 | | - |
| 2 | +import { |
| 3 | + meta as aiChatMeta, |
| 4 | + interpolatableRobotAiChatInstructionsSchema, |
| 5 | + interpolatableRobotAiChatInstructionsWithHiddenFieldsSchema, |
| 6 | +} from './ai-chat.ts' |
3 | 7 | import { |
4 | 8 | meta as audioArtworkMeta, |
5 | 9 | interpolatableRobotAudioArtworkInstructionsSchema, |
@@ -474,6 +478,7 @@ const robotStepsInstructions = [ |
474 | 478 | interpolatableRobotSwiftStoreInstructionsSchema, |
475 | 479 | interpolatableRobotTextSpeakInstructionsSchema, |
476 | 480 | interpolatableRobotTextTranslateInstructionsSchema, |
| 481 | + interpolatableRobotAiChatInstructionsSchema, |
477 | 482 | interpolatableRobotTigrisImportInstructionsSchema, |
478 | 483 | interpolatableRobotTigrisStoreInstructionsSchema, |
479 | 484 | interpolatableRobotTlcdnDeliverInstructionsSchema, |
@@ -558,6 +563,7 @@ const robotStepsInstructionsWithHiddenFields = [ |
558 | 563 | interpolatableRobotSwiftStoreInstructionsWithHiddenFieldsSchema, |
559 | 564 | interpolatableRobotTextSpeakInstructionsWithHiddenFieldsSchema, |
560 | 565 | interpolatableRobotTextTranslateInstructionsWithHiddenFieldsSchema, |
| 566 | + interpolatableRobotAiChatInstructionsWithHiddenFieldsSchema, |
561 | 567 | interpolatableRobotTigrisImportInstructionsWithHiddenFieldsSchema, |
562 | 568 | interpolatableRobotTigrisStoreInstructionsWithHiddenFieldsSchema, |
563 | 569 | interpolatableRobotTlcdnDeliverInstructionsWithHiddenFieldsSchema, |
@@ -605,6 +611,7 @@ export type RobotsWithHiddenBots = z.infer<typeof robotsWithHiddenBotsSchema> |
605 | 611 | export type RobotsWithHiddenBotsAndFields = z.infer<typeof robotsWithHiddenBotsAndFieldsSchema> |
606 | 612 |
|
607 | 613 | export const robotsMeta = { |
| 614 | + aiChatMeta, |
608 | 615 | audioArtworkMeta, |
609 | 616 | audioConcatMeta, |
610 | 617 | audioEncodeMeta, |
@@ -687,6 +694,12 @@ export const robotsMeta = { |
687 | 694 | youtubeStoreMeta, |
688 | 695 | } |
689 | 696 |
|
| 697 | +export type { |
| 698 | + InterpolatableRobotAiChatInstructions, |
| 699 | + InterpolatableRobotAiChatInstructionsInput, |
| 700 | + InterpolatableRobotAiChatInstructionsWithHiddenFields, |
| 701 | + InterpolatableRobotAiChatInstructionsWithHiddenFieldsInput, |
| 702 | +} from './ai-chat.ts' |
690 | 703 | export type { |
691 | 704 | InterpolatableRobotAssemblySavejsonInstructions, |
692 | 705 | InterpolatableRobotAssemblySavejsonInstructionsInput, |
|
0 commit comments