@orq-ai/node 3.12.16 → 3.12.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.
Files changed (159) hide show
  1. package/bin/mcp-server.js +112 -112
  2. package/bin/mcp-server.js.map +30 -30
  3. package/examples/package-lock.json +1 -1
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +3 -3
  6. package/lib/config.js +3 -3
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/operations/createbudget.js +2 -2
  10. package/models/operations/createcontact.js +2 -2
  11. package/models/operations/createdataset.js +2 -2
  12. package/models/operations/createdatasetitem.js +2 -2
  13. package/models/operations/createdatasource.js +2 -2
  14. package/models/operations/createeval.js +16 -16
  15. package/models/operations/fileget.js +2 -2
  16. package/models/operations/filelist.js +2 -2
  17. package/models/operations/fileupload.js +2 -2
  18. package/models/operations/getbudget.js +2 -2
  19. package/models/operations/getevals.js +28 -28
  20. package/models/operations/listbudgets.js +2 -2
  21. package/models/operations/listcontacts.js +2 -2
  22. package/models/operations/listdatasetdatapoints.js +2 -2
  23. package/models/operations/listdatasets.js +2 -2
  24. package/models/operations/listdatasources.js +2 -2
  25. package/models/operations/retrievecontact.js +2 -2
  26. package/models/operations/retrievedatapoint.js +2 -2
  27. package/models/operations/retrievedataset.js +2 -2
  28. package/models/operations/retrievedatasource.js +2 -2
  29. package/models/operations/updatebudget.js +2 -2
  30. package/models/operations/updatecontact.js +2 -2
  31. package/models/operations/updatedatapoint.js +2 -2
  32. package/models/operations/updatedataset.js +2 -2
  33. package/models/operations/updatedatasource.js +2 -2
  34. package/models/operations/updateeval.js +16 -16
  35. package/package.json +1 -1
  36. package/packages/orq-rc/README.md +107 -90
  37. package/packages/orq-rc/docs/sdks/tools/README.md +488 -0
  38. package/packages/orq-rc/examples/package-lock.json +1 -1
  39. package/packages/orq-rc/jsr.json +1 -1
  40. package/packages/orq-rc/package-lock.json +2 -2
  41. package/packages/orq-rc/package.json +1 -1
  42. package/packages/orq-rc/src/funcs/toolsCreate.ts +163 -0
  43. package/packages/orq-rc/src/funcs/toolsDelete.ts +167 -0
  44. package/packages/orq-rc/src/funcs/toolsDuplicate.ts +175 -0
  45. package/packages/orq-rc/src/funcs/toolsList.ts +176 -0
  46. package/packages/orq-rc/src/funcs/toolsRetrieve.ts +166 -0
  47. package/packages/orq-rc/src/funcs/toolsUpdate.ts +176 -0
  48. package/packages/orq-rc/src/lib/config.ts +3 -3
  49. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  50. package/packages/orq-rc/src/mcp-server/server.ts +13 -1
  51. package/packages/orq-rc/src/mcp-server/tools/toolsCreate.ts +37 -0
  52. package/packages/orq-rc/src/mcp-server/tools/toolsDelete.ts +35 -0
  53. package/packages/orq-rc/src/mcp-server/tools/toolsDuplicate.ts +37 -0
  54. package/packages/orq-rc/src/mcp-server/tools/toolsList.ts +37 -0
  55. package/packages/orq-rc/src/mcp-server/tools/toolsRetrieve.ts +37 -0
  56. package/packages/orq-rc/src/mcp-server/tools/toolsUpdate.ts +37 -0
  57. package/packages/orq-rc/src/models/components/callsubagenttool.ts +109 -0
  58. package/packages/orq-rc/src/models/components/codeexecutiontool.ts +293 -0
  59. package/packages/orq-rc/src/models/components/currentdatetool.ts +107 -0
  60. package/packages/orq-rc/src/models/components/deployments.ts +52 -45
  61. package/packages/orq-rc/src/models/components/functiontool.ts +195 -0
  62. package/packages/orq-rc/src/models/components/googlesearchtool.ts +108 -0
  63. package/packages/orq-rc/src/models/components/httptool.ts +532 -0
  64. package/packages/orq-rc/src/models/components/index.ts +13 -0
  65. package/packages/orq-rc/src/models/components/queryknowledgebasetool.ts +111 -0
  66. package/packages/orq-rc/src/models/components/querymemorystoretool.ts +111 -0
  67. package/packages/orq-rc/src/models/components/retrieveagentstool.ts +109 -0
  68. package/packages/orq-rc/src/models/components/retrieveknowledgebasestool.ts +111 -0
  69. package/packages/orq-rc/src/models/components/retrievememorystorestool.ts +111 -0
  70. package/packages/orq-rc/src/models/components/webscrapertool.ts +105 -0
  71. package/packages/orq-rc/src/models/components/writememorystoretool.ts +111 -0
  72. package/packages/orq-rc/src/models/errors/duplicatetool.ts +91 -0
  73. package/packages/orq-rc/src/models/errors/index.ts +2 -0
  74. package/packages/orq-rc/src/models/errors/updatetool.ts +91 -0
  75. package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
  76. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  77. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  78. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +10 -8
  79. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  80. package/packages/orq-rc/src/models/operations/createeval.ts +60 -56
  81. package/packages/orq-rc/src/models/operations/createknowledge.ts +18 -0
  82. package/packages/orq-rc/src/models/operations/creatememorystore.ts +137 -136
  83. package/packages/orq-rc/src/models/operations/createprompt.ts +631 -314
  84. package/packages/orq-rc/src/models/operations/createtool.ts +4027 -0
  85. package/packages/orq-rc/src/models/operations/deletetool.ts +75 -0
  86. package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +8 -6
  87. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +362 -194
  88. package/packages/orq-rc/src/models/operations/deployments.ts +329 -160
  89. package/packages/orq-rc/src/models/operations/deploymentstream.ts +8 -6
  90. package/packages/orq-rc/src/models/operations/duplicatetool.ts +2311 -0
  91. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  92. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  93. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  94. package/packages/orq-rc/src/models/operations/getagent.ts +10 -10
  95. package/packages/orq-rc/src/models/operations/getallprompts.ts +333 -168
  96. package/packages/orq-rc/src/models/operations/getalltools.ts +2278 -0
  97. package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
  98. package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
  99. package/packages/orq-rc/src/models/operations/getoneknowledge.ts +9 -0
  100. package/packages/orq-rc/src/models/operations/getoneprompt.ts +329 -167
  101. package/packages/orq-rc/src/models/operations/getpromptversion.ts +337 -168
  102. package/packages/orq-rc/src/models/operations/index.ts +6 -0
  103. package/packages/orq-rc/src/models/operations/listagents.ts +10 -10
  104. package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
  105. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  106. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +6 -5
  107. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  108. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  109. package/packages/orq-rc/src/models/operations/listknowledgebases.ts +9 -0
  110. package/packages/orq-rc/src/models/operations/listpromptversions.ts +354 -183
  111. package/packages/orq-rc/src/models/operations/parse.ts +20 -335
  112. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  113. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +6 -5
  114. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  115. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  116. package/packages/orq-rc/src/models/operations/retrievetool.ts +2303 -0
  117. package/packages/orq-rc/src/models/operations/runagent.ts +412 -1375
  118. package/packages/orq-rc/src/models/operations/streamrunagent.ts +399 -1449
  119. package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
  120. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  121. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +10 -8
  122. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  123. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  124. package/packages/orq-rc/src/models/operations/updateeval.ts +57 -57
  125. package/packages/orq-rc/src/models/operations/updateknowledge.ts +18 -0
  126. package/packages/orq-rc/src/models/operations/updatememorystore.ts +136 -168
  127. package/packages/orq-rc/src/models/operations/updateprompt.ts +668 -335
  128. package/packages/orq-rc/src/models/operations/updatetool.ts +4231 -0
  129. package/packages/orq-rc/src/sdk/sdk.ts +6 -0
  130. package/packages/orq-rc/src/sdk/tools.ts +117 -0
  131. package/src/lib/config.ts +3 -3
  132. package/src/mcp-server/mcp-server.ts +1 -1
  133. package/src/mcp-server/server.ts +1 -1
  134. package/src/models/operations/createbudget.ts +2 -2
  135. package/src/models/operations/createcontact.ts +2 -2
  136. package/src/models/operations/createdataset.ts +2 -2
  137. package/src/models/operations/createdatasetitem.ts +2 -2
  138. package/src/models/operations/createdatasource.ts +2 -2
  139. package/src/models/operations/createeval.ts +16 -16
  140. package/src/models/operations/fileget.ts +2 -2
  141. package/src/models/operations/filelist.ts +2 -2
  142. package/src/models/operations/fileupload.ts +2 -2
  143. package/src/models/operations/getbudget.ts +2 -2
  144. package/src/models/operations/getevals.ts +28 -28
  145. package/src/models/operations/listbudgets.ts +2 -2
  146. package/src/models/operations/listcontacts.ts +2 -2
  147. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  148. package/src/models/operations/listdatasets.ts +2 -2
  149. package/src/models/operations/listdatasources.ts +2 -2
  150. package/src/models/operations/retrievecontact.ts +2 -2
  151. package/src/models/operations/retrievedatapoint.ts +2 -2
  152. package/src/models/operations/retrievedataset.ts +2 -2
  153. package/src/models/operations/retrievedatasource.ts +2 -2
  154. package/src/models/operations/updatebudget.ts +2 -2
  155. package/src/models/operations/updatecontact.ts +2 -2
  156. package/src/models/operations/updatedatapoint.ts +2 -2
  157. package/src/models/operations/updatedataset.ts +2 -2
  158. package/src/models/operations/updatedatasource.ts +2 -2
  159. package/src/models/operations/updateeval.ts +16 -16
@@ -67,46 +67,80 @@ export const GetAllPromptsFormat = {
67
67
  */
68
68
  export type GetAllPromptsFormat = ClosedEnum<typeof GetAllPromptsFormat>;
69
69
 
70
- export const GetAllPromptsResponseFormatPromptsResponseType = {
70
+ export const GetAllPromptsResponseFormat4 = {
71
+ Json: "json",
71
72
  Text: "text",
73
+ Srt: "srt",
74
+ VerboseJson: "verbose_json",
75
+ Vtt: "vtt",
72
76
  } as const;
73
- export type GetAllPromptsResponseFormatPromptsResponseType = ClosedEnum<
74
- typeof GetAllPromptsResponseFormatPromptsResponseType
77
+ export type GetAllPromptsResponseFormat4 = ClosedEnum<
78
+ typeof GetAllPromptsResponseFormat4
75
79
  >;
76
80
 
77
- export type GetAllPromptsResponseFormat3 = {
78
- type: GetAllPromptsResponseFormatPromptsResponseType;
81
+ export const GetAllPromptsResponseFormat3 = {
82
+ Url: "url",
83
+ Base64Json: "base64_json",
84
+ } as const;
85
+ export type GetAllPromptsResponseFormat3 = ClosedEnum<
86
+ typeof GetAllPromptsResponseFormat3
87
+ >;
88
+
89
+ export const GetAllPromptsResponseFormat2 = {
90
+ Mp3: "mp3",
91
+ Opus: "opus",
92
+ Aac: "aac",
93
+ Flac: "flac",
94
+ Wav: "wav",
95
+ Pcm: "pcm",
96
+ } as const;
97
+ export type GetAllPromptsResponseFormat2 = ClosedEnum<
98
+ typeof GetAllPromptsResponseFormat2
99
+ >;
100
+
101
+ export const GetAllPrompts1PromptsResponseType = {
102
+ Text: "text",
103
+ } as const;
104
+ export type GetAllPrompts1PromptsResponseType = ClosedEnum<
105
+ typeof GetAllPrompts1PromptsResponseType
106
+ >;
107
+
108
+ export type GetAllPrompts13 = {
109
+ type: GetAllPrompts1PromptsResponseType;
79
110
  };
80
111
 
81
- export const GetAllPromptsResponseFormatPromptsType = {
112
+ export const GetAllPrompts1PromptsType = {
82
113
  JsonObject: "json_object",
83
114
  } as const;
84
- export type GetAllPromptsResponseFormatPromptsType = ClosedEnum<
85
- typeof GetAllPromptsResponseFormatPromptsType
115
+ export type GetAllPrompts1PromptsType = ClosedEnum<
116
+ typeof GetAllPrompts1PromptsType
86
117
  >;
87
118
 
88
- export type GetAllPromptsResponseFormat2 = {
89
- type: GetAllPromptsResponseFormatPromptsType;
119
+ export type GetAllPrompts12 = {
120
+ type: GetAllPrompts1PromptsType;
90
121
  };
91
122
 
92
- export const GetAllPromptsResponseFormatType = {
123
+ export const GetAllPrompts1Type = {
93
124
  JsonSchema: "json_schema",
94
125
  } as const;
95
- export type GetAllPromptsResponseFormatType = ClosedEnum<
96
- typeof GetAllPromptsResponseFormatType
97
- >;
126
+ export type GetAllPrompts1Type = ClosedEnum<typeof GetAllPrompts1Type>;
98
127
 
99
- export type GetAllPromptsResponseFormatJsonSchema = {
128
+ export type GetAllPrompts1JsonSchema = {
100
129
  name: string;
101
130
  strict?: boolean | undefined;
102
131
  schema: { [k: string]: any };
103
132
  };
104
133
 
105
- export type GetAllPromptsResponseFormat1 = {
106
- type: GetAllPromptsResponseFormatType;
107
- jsonSchema: GetAllPromptsResponseFormatJsonSchema;
134
+ export type GetAllPrompts11 = {
135
+ type: GetAllPrompts1Type;
136
+ jsonSchema: GetAllPrompts1JsonSchema;
108
137
  };
109
138
 
139
+ export type GetAllPromptsResponseFormat1 =
140
+ | GetAllPrompts11
141
+ | GetAllPrompts12
142
+ | GetAllPrompts13;
143
+
110
144
  /**
111
145
  * An object specifying the format that the model must output.
112
146
  *
@@ -119,9 +153,12 @@ export type GetAllPromptsResponseFormat1 = {
119
153
  * Important: when using JSON mode, you must also instruct the model to produce JSON yourself via a system or user message. Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit, resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if finish_reason="length", which indicates the generation exceeded max_tokens or the conversation exceeded the max context length.
120
154
  */
121
155
  export type GetAllPromptsResponseFormat =
122
- | GetAllPromptsResponseFormat1
156
+ | GetAllPrompts11
157
+ | GetAllPrompts12
158
+ | GetAllPrompts13
123
159
  | GetAllPromptsResponseFormat2
124
- | GetAllPromptsResponseFormat3;
160
+ | GetAllPromptsResponseFormat3
161
+ | GetAllPromptsResponseFormat4;
125
162
 
126
163
  /**
127
164
  * The version of photoReal to use. Must be v1 or v2. Only available for `leonardoai` provider
@@ -245,9 +282,12 @@ export type GetAllPromptsModelParameters = {
245
282
  * Important: when using JSON mode, you must also instruct the model to produce JSON yourself via a system or user message. Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit, resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if finish_reason="length", which indicates the generation exceeded max_tokens or the conversation exceeded the max context length.
246
283
  */
247
284
  responseFormat?:
248
- | GetAllPromptsResponseFormat1
285
+ | GetAllPrompts11
286
+ | GetAllPrompts12
287
+ | GetAllPrompts13
249
288
  | GetAllPromptsResponseFormat2
250
289
  | GetAllPromptsResponseFormat3
290
+ | GetAllPromptsResponseFormat4
251
291
  | null
252
292
  | undefined;
253
293
  /**
@@ -705,188 +745,239 @@ export namespace GetAllPromptsFormat$ {
705
745
  }
706
746
 
707
747
  /** @internal */
708
- export const GetAllPromptsResponseFormatPromptsResponseType$inboundSchema:
709
- z.ZodNativeEnum<typeof GetAllPromptsResponseFormatPromptsResponseType> = z
710
- .nativeEnum(GetAllPromptsResponseFormatPromptsResponseType);
748
+ export const GetAllPromptsResponseFormat4$inboundSchema: z.ZodNativeEnum<
749
+ typeof GetAllPromptsResponseFormat4
750
+ > = z.nativeEnum(GetAllPromptsResponseFormat4);
751
+
752
+ /** @internal */
753
+ export const GetAllPromptsResponseFormat4$outboundSchema: z.ZodNativeEnum<
754
+ typeof GetAllPromptsResponseFormat4
755
+ > = GetAllPromptsResponseFormat4$inboundSchema;
756
+
757
+ /**
758
+ * @internal
759
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
760
+ */
761
+ export namespace GetAllPromptsResponseFormat4$ {
762
+ /** @deprecated use `GetAllPromptsResponseFormat4$inboundSchema` instead. */
763
+ export const inboundSchema = GetAllPromptsResponseFormat4$inboundSchema;
764
+ /** @deprecated use `GetAllPromptsResponseFormat4$outboundSchema` instead. */
765
+ export const outboundSchema = GetAllPromptsResponseFormat4$outboundSchema;
766
+ }
767
+
768
+ /** @internal */
769
+ export const GetAllPromptsResponseFormat3$inboundSchema: z.ZodNativeEnum<
770
+ typeof GetAllPromptsResponseFormat3
771
+ > = z.nativeEnum(GetAllPromptsResponseFormat3);
711
772
 
712
773
  /** @internal */
713
- export const GetAllPromptsResponseFormatPromptsResponseType$outboundSchema:
714
- z.ZodNativeEnum<typeof GetAllPromptsResponseFormatPromptsResponseType> =
715
- GetAllPromptsResponseFormatPromptsResponseType$inboundSchema;
774
+ export const GetAllPromptsResponseFormat3$outboundSchema: z.ZodNativeEnum<
775
+ typeof GetAllPromptsResponseFormat3
776
+ > = GetAllPromptsResponseFormat3$inboundSchema;
716
777
 
717
778
  /**
718
779
  * @internal
719
780
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
720
781
  */
721
- export namespace GetAllPromptsResponseFormatPromptsResponseType$ {
722
- /** @deprecated use `GetAllPromptsResponseFormatPromptsResponseType$inboundSchema` instead. */
723
- export const inboundSchema =
724
- GetAllPromptsResponseFormatPromptsResponseType$inboundSchema;
725
- /** @deprecated use `GetAllPromptsResponseFormatPromptsResponseType$outboundSchema` instead. */
782
+ export namespace GetAllPromptsResponseFormat3$ {
783
+ /** @deprecated use `GetAllPromptsResponseFormat3$inboundSchema` instead. */
784
+ export const inboundSchema = GetAllPromptsResponseFormat3$inboundSchema;
785
+ /** @deprecated use `GetAllPromptsResponseFormat3$outboundSchema` instead. */
786
+ export const outboundSchema = GetAllPromptsResponseFormat3$outboundSchema;
787
+ }
788
+
789
+ /** @internal */
790
+ export const GetAllPromptsResponseFormat2$inboundSchema: z.ZodNativeEnum<
791
+ typeof GetAllPromptsResponseFormat2
792
+ > = z.nativeEnum(GetAllPromptsResponseFormat2);
793
+
794
+ /** @internal */
795
+ export const GetAllPromptsResponseFormat2$outboundSchema: z.ZodNativeEnum<
796
+ typeof GetAllPromptsResponseFormat2
797
+ > = GetAllPromptsResponseFormat2$inboundSchema;
798
+
799
+ /**
800
+ * @internal
801
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
802
+ */
803
+ export namespace GetAllPromptsResponseFormat2$ {
804
+ /** @deprecated use `GetAllPromptsResponseFormat2$inboundSchema` instead. */
805
+ export const inboundSchema = GetAllPromptsResponseFormat2$inboundSchema;
806
+ /** @deprecated use `GetAllPromptsResponseFormat2$outboundSchema` instead. */
807
+ export const outboundSchema = GetAllPromptsResponseFormat2$outboundSchema;
808
+ }
809
+
810
+ /** @internal */
811
+ export const GetAllPrompts1PromptsResponseType$inboundSchema: z.ZodNativeEnum<
812
+ typeof GetAllPrompts1PromptsResponseType
813
+ > = z.nativeEnum(GetAllPrompts1PromptsResponseType);
814
+
815
+ /** @internal */
816
+ export const GetAllPrompts1PromptsResponseType$outboundSchema: z.ZodNativeEnum<
817
+ typeof GetAllPrompts1PromptsResponseType
818
+ > = GetAllPrompts1PromptsResponseType$inboundSchema;
819
+
820
+ /**
821
+ * @internal
822
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
823
+ */
824
+ export namespace GetAllPrompts1PromptsResponseType$ {
825
+ /** @deprecated use `GetAllPrompts1PromptsResponseType$inboundSchema` instead. */
826
+ export const inboundSchema = GetAllPrompts1PromptsResponseType$inboundSchema;
827
+ /** @deprecated use `GetAllPrompts1PromptsResponseType$outboundSchema` instead. */
726
828
  export const outboundSchema =
727
- GetAllPromptsResponseFormatPromptsResponseType$outboundSchema;
829
+ GetAllPrompts1PromptsResponseType$outboundSchema;
728
830
  }
729
831
 
730
832
  /** @internal */
731
- export const GetAllPromptsResponseFormat3$inboundSchema: z.ZodType<
732
- GetAllPromptsResponseFormat3,
833
+ export const GetAllPrompts13$inboundSchema: z.ZodType<
834
+ GetAllPrompts13,
733
835
  z.ZodTypeDef,
734
836
  unknown
735
837
  > = z.object({
736
- type: GetAllPromptsResponseFormatPromptsResponseType$inboundSchema,
838
+ type: GetAllPrompts1PromptsResponseType$inboundSchema,
737
839
  });
738
840
 
739
841
  /** @internal */
740
- export type GetAllPromptsResponseFormat3$Outbound = {
842
+ export type GetAllPrompts13$Outbound = {
741
843
  type: string;
742
844
  };
743
845
 
744
846
  /** @internal */
745
- export const GetAllPromptsResponseFormat3$outboundSchema: z.ZodType<
746
- GetAllPromptsResponseFormat3$Outbound,
847
+ export const GetAllPrompts13$outboundSchema: z.ZodType<
848
+ GetAllPrompts13$Outbound,
747
849
  z.ZodTypeDef,
748
- GetAllPromptsResponseFormat3
850
+ GetAllPrompts13
749
851
  > = z.object({
750
- type: GetAllPromptsResponseFormatPromptsResponseType$outboundSchema,
852
+ type: GetAllPrompts1PromptsResponseType$outboundSchema,
751
853
  });
752
854
 
753
855
  /**
754
856
  * @internal
755
857
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
756
858
  */
757
- export namespace GetAllPromptsResponseFormat3$ {
758
- /** @deprecated use `GetAllPromptsResponseFormat3$inboundSchema` instead. */
759
- export const inboundSchema = GetAllPromptsResponseFormat3$inboundSchema;
760
- /** @deprecated use `GetAllPromptsResponseFormat3$outboundSchema` instead. */
761
- export const outboundSchema = GetAllPromptsResponseFormat3$outboundSchema;
762
- /** @deprecated use `GetAllPromptsResponseFormat3$Outbound` instead. */
763
- export type Outbound = GetAllPromptsResponseFormat3$Outbound;
859
+ export namespace GetAllPrompts13$ {
860
+ /** @deprecated use `GetAllPrompts13$inboundSchema` instead. */
861
+ export const inboundSchema = GetAllPrompts13$inboundSchema;
862
+ /** @deprecated use `GetAllPrompts13$outboundSchema` instead. */
863
+ export const outboundSchema = GetAllPrompts13$outboundSchema;
864
+ /** @deprecated use `GetAllPrompts13$Outbound` instead. */
865
+ export type Outbound = GetAllPrompts13$Outbound;
764
866
  }
765
867
 
766
- export function getAllPromptsResponseFormat3ToJSON(
767
- getAllPromptsResponseFormat3: GetAllPromptsResponseFormat3,
868
+ export function getAllPrompts13ToJSON(
869
+ getAllPrompts13: GetAllPrompts13,
768
870
  ): string {
769
- return JSON.stringify(
770
- GetAllPromptsResponseFormat3$outboundSchema.parse(
771
- getAllPromptsResponseFormat3,
772
- ),
773
- );
871
+ return JSON.stringify(GetAllPrompts13$outboundSchema.parse(getAllPrompts13));
774
872
  }
775
873
 
776
- export function getAllPromptsResponseFormat3FromJSON(
874
+ export function getAllPrompts13FromJSON(
777
875
  jsonString: string,
778
- ): SafeParseResult<GetAllPromptsResponseFormat3, SDKValidationError> {
876
+ ): SafeParseResult<GetAllPrompts13, SDKValidationError> {
779
877
  return safeParse(
780
878
  jsonString,
781
- (x) => GetAllPromptsResponseFormat3$inboundSchema.parse(JSON.parse(x)),
782
- `Failed to parse 'GetAllPromptsResponseFormat3' from JSON`,
879
+ (x) => GetAllPrompts13$inboundSchema.parse(JSON.parse(x)),
880
+ `Failed to parse 'GetAllPrompts13' from JSON`,
783
881
  );
784
882
  }
785
883
 
786
884
  /** @internal */
787
- export const GetAllPromptsResponseFormatPromptsType$inboundSchema:
788
- z.ZodNativeEnum<typeof GetAllPromptsResponseFormatPromptsType> = z.nativeEnum(
789
- GetAllPromptsResponseFormatPromptsType,
790
- );
885
+ export const GetAllPrompts1PromptsType$inboundSchema: z.ZodNativeEnum<
886
+ typeof GetAllPrompts1PromptsType
887
+ > = z.nativeEnum(GetAllPrompts1PromptsType);
791
888
 
792
889
  /** @internal */
793
- export const GetAllPromptsResponseFormatPromptsType$outboundSchema:
794
- z.ZodNativeEnum<typeof GetAllPromptsResponseFormatPromptsType> =
795
- GetAllPromptsResponseFormatPromptsType$inboundSchema;
890
+ export const GetAllPrompts1PromptsType$outboundSchema: z.ZodNativeEnum<
891
+ typeof GetAllPrompts1PromptsType
892
+ > = GetAllPrompts1PromptsType$inboundSchema;
796
893
 
797
894
  /**
798
895
  * @internal
799
896
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
800
897
  */
801
- export namespace GetAllPromptsResponseFormatPromptsType$ {
802
- /** @deprecated use `GetAllPromptsResponseFormatPromptsType$inboundSchema` instead. */
803
- export const inboundSchema =
804
- GetAllPromptsResponseFormatPromptsType$inboundSchema;
805
- /** @deprecated use `GetAllPromptsResponseFormatPromptsType$outboundSchema` instead. */
806
- export const outboundSchema =
807
- GetAllPromptsResponseFormatPromptsType$outboundSchema;
898
+ export namespace GetAllPrompts1PromptsType$ {
899
+ /** @deprecated use `GetAllPrompts1PromptsType$inboundSchema` instead. */
900
+ export const inboundSchema = GetAllPrompts1PromptsType$inboundSchema;
901
+ /** @deprecated use `GetAllPrompts1PromptsType$outboundSchema` instead. */
902
+ export const outboundSchema = GetAllPrompts1PromptsType$outboundSchema;
808
903
  }
809
904
 
810
905
  /** @internal */
811
- export const GetAllPromptsResponseFormat2$inboundSchema: z.ZodType<
812
- GetAllPromptsResponseFormat2,
906
+ export const GetAllPrompts12$inboundSchema: z.ZodType<
907
+ GetAllPrompts12,
813
908
  z.ZodTypeDef,
814
909
  unknown
815
910
  > = z.object({
816
- type: GetAllPromptsResponseFormatPromptsType$inboundSchema,
911
+ type: GetAllPrompts1PromptsType$inboundSchema,
817
912
  });
818
913
 
819
914
  /** @internal */
820
- export type GetAllPromptsResponseFormat2$Outbound = {
915
+ export type GetAllPrompts12$Outbound = {
821
916
  type: string;
822
917
  };
823
918
 
824
919
  /** @internal */
825
- export const GetAllPromptsResponseFormat2$outboundSchema: z.ZodType<
826
- GetAllPromptsResponseFormat2$Outbound,
920
+ export const GetAllPrompts12$outboundSchema: z.ZodType<
921
+ GetAllPrompts12$Outbound,
827
922
  z.ZodTypeDef,
828
- GetAllPromptsResponseFormat2
923
+ GetAllPrompts12
829
924
  > = z.object({
830
- type: GetAllPromptsResponseFormatPromptsType$outboundSchema,
925
+ type: GetAllPrompts1PromptsType$outboundSchema,
831
926
  });
832
927
 
833
928
  /**
834
929
  * @internal
835
930
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
836
931
  */
837
- export namespace GetAllPromptsResponseFormat2$ {
838
- /** @deprecated use `GetAllPromptsResponseFormat2$inboundSchema` instead. */
839
- export const inboundSchema = GetAllPromptsResponseFormat2$inboundSchema;
840
- /** @deprecated use `GetAllPromptsResponseFormat2$outboundSchema` instead. */
841
- export const outboundSchema = GetAllPromptsResponseFormat2$outboundSchema;
842
- /** @deprecated use `GetAllPromptsResponseFormat2$Outbound` instead. */
843
- export type Outbound = GetAllPromptsResponseFormat2$Outbound;
932
+ export namespace GetAllPrompts12$ {
933
+ /** @deprecated use `GetAllPrompts12$inboundSchema` instead. */
934
+ export const inboundSchema = GetAllPrompts12$inboundSchema;
935
+ /** @deprecated use `GetAllPrompts12$outboundSchema` instead. */
936
+ export const outboundSchema = GetAllPrompts12$outboundSchema;
937
+ /** @deprecated use `GetAllPrompts12$Outbound` instead. */
938
+ export type Outbound = GetAllPrompts12$Outbound;
844
939
  }
845
940
 
846
- export function getAllPromptsResponseFormat2ToJSON(
847
- getAllPromptsResponseFormat2: GetAllPromptsResponseFormat2,
941
+ export function getAllPrompts12ToJSON(
942
+ getAllPrompts12: GetAllPrompts12,
848
943
  ): string {
849
- return JSON.stringify(
850
- GetAllPromptsResponseFormat2$outboundSchema.parse(
851
- getAllPromptsResponseFormat2,
852
- ),
853
- );
944
+ return JSON.stringify(GetAllPrompts12$outboundSchema.parse(getAllPrompts12));
854
945
  }
855
946
 
856
- export function getAllPromptsResponseFormat2FromJSON(
947
+ export function getAllPrompts12FromJSON(
857
948
  jsonString: string,
858
- ): SafeParseResult<GetAllPromptsResponseFormat2, SDKValidationError> {
949
+ ): SafeParseResult<GetAllPrompts12, SDKValidationError> {
859
950
  return safeParse(
860
951
  jsonString,
861
- (x) => GetAllPromptsResponseFormat2$inboundSchema.parse(JSON.parse(x)),
862
- `Failed to parse 'GetAllPromptsResponseFormat2' from JSON`,
952
+ (x) => GetAllPrompts12$inboundSchema.parse(JSON.parse(x)),
953
+ `Failed to parse 'GetAllPrompts12' from JSON`,
863
954
  );
864
955
  }
865
956
 
866
957
  /** @internal */
867
- export const GetAllPromptsResponseFormatType$inboundSchema: z.ZodNativeEnum<
868
- typeof GetAllPromptsResponseFormatType
869
- > = z.nativeEnum(GetAllPromptsResponseFormatType);
958
+ export const GetAllPrompts1Type$inboundSchema: z.ZodNativeEnum<
959
+ typeof GetAllPrompts1Type
960
+ > = z.nativeEnum(GetAllPrompts1Type);
870
961
 
871
962
  /** @internal */
872
- export const GetAllPromptsResponseFormatType$outboundSchema: z.ZodNativeEnum<
873
- typeof GetAllPromptsResponseFormatType
874
- > = GetAllPromptsResponseFormatType$inboundSchema;
963
+ export const GetAllPrompts1Type$outboundSchema: z.ZodNativeEnum<
964
+ typeof GetAllPrompts1Type
965
+ > = GetAllPrompts1Type$inboundSchema;
875
966
 
876
967
  /**
877
968
  * @internal
878
969
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
879
970
  */
880
- export namespace GetAllPromptsResponseFormatType$ {
881
- /** @deprecated use `GetAllPromptsResponseFormatType$inboundSchema` instead. */
882
- export const inboundSchema = GetAllPromptsResponseFormatType$inboundSchema;
883
- /** @deprecated use `GetAllPromptsResponseFormatType$outboundSchema` instead. */
884
- export const outboundSchema = GetAllPromptsResponseFormatType$outboundSchema;
971
+ export namespace GetAllPrompts1Type$ {
972
+ /** @deprecated use `GetAllPrompts1Type$inboundSchema` instead. */
973
+ export const inboundSchema = GetAllPrompts1Type$inboundSchema;
974
+ /** @deprecated use `GetAllPrompts1Type$outboundSchema` instead. */
975
+ export const outboundSchema = GetAllPrompts1Type$outboundSchema;
885
976
  }
886
977
 
887
978
  /** @internal */
888
- export const GetAllPromptsResponseFormatJsonSchema$inboundSchema: z.ZodType<
889
- GetAllPromptsResponseFormatJsonSchema,
979
+ export const GetAllPrompts1JsonSchema$inboundSchema: z.ZodType<
980
+ GetAllPrompts1JsonSchema,
890
981
  z.ZodTypeDef,
891
982
  unknown
892
983
  > = z.object({
@@ -896,17 +987,17 @@ export const GetAllPromptsResponseFormatJsonSchema$inboundSchema: z.ZodType<
896
987
  });
897
988
 
898
989
  /** @internal */
899
- export type GetAllPromptsResponseFormatJsonSchema$Outbound = {
990
+ export type GetAllPrompts1JsonSchema$Outbound = {
900
991
  name: string;
901
992
  strict?: boolean | undefined;
902
993
  schema: { [k: string]: any };
903
994
  };
904
995
 
905
996
  /** @internal */
906
- export const GetAllPromptsResponseFormatJsonSchema$outboundSchema: z.ZodType<
907
- GetAllPromptsResponseFormatJsonSchema$Outbound,
997
+ export const GetAllPrompts1JsonSchema$outboundSchema: z.ZodType<
998
+ GetAllPrompts1JsonSchema$Outbound,
908
999
  z.ZodTypeDef,
909
- GetAllPromptsResponseFormatJsonSchema
1000
+ GetAllPrompts1JsonSchema
910
1001
  > = z.object({
911
1002
  name: z.string(),
912
1003
  strict: z.boolean().optional(),
@@ -917,48 +1008,41 @@ export const GetAllPromptsResponseFormatJsonSchema$outboundSchema: z.ZodType<
917
1008
  * @internal
918
1009
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
919
1010
  */
920
- export namespace GetAllPromptsResponseFormatJsonSchema$ {
921
- /** @deprecated use `GetAllPromptsResponseFormatJsonSchema$inboundSchema` instead. */
922
- export const inboundSchema =
923
- GetAllPromptsResponseFormatJsonSchema$inboundSchema;
924
- /** @deprecated use `GetAllPromptsResponseFormatJsonSchema$outboundSchema` instead. */
925
- export const outboundSchema =
926
- GetAllPromptsResponseFormatJsonSchema$outboundSchema;
927
- /** @deprecated use `GetAllPromptsResponseFormatJsonSchema$Outbound` instead. */
928
- export type Outbound = GetAllPromptsResponseFormatJsonSchema$Outbound;
1011
+ export namespace GetAllPrompts1JsonSchema$ {
1012
+ /** @deprecated use `GetAllPrompts1JsonSchema$inboundSchema` instead. */
1013
+ export const inboundSchema = GetAllPrompts1JsonSchema$inboundSchema;
1014
+ /** @deprecated use `GetAllPrompts1JsonSchema$outboundSchema` instead. */
1015
+ export const outboundSchema = GetAllPrompts1JsonSchema$outboundSchema;
1016
+ /** @deprecated use `GetAllPrompts1JsonSchema$Outbound` instead. */
1017
+ export type Outbound = GetAllPrompts1JsonSchema$Outbound;
929
1018
  }
930
1019
 
931
- export function getAllPromptsResponseFormatJsonSchemaToJSON(
932
- getAllPromptsResponseFormatJsonSchema: GetAllPromptsResponseFormatJsonSchema,
1020
+ export function getAllPrompts1JsonSchemaToJSON(
1021
+ getAllPrompts1JsonSchema: GetAllPrompts1JsonSchema,
933
1022
  ): string {
934
1023
  return JSON.stringify(
935
- GetAllPromptsResponseFormatJsonSchema$outboundSchema.parse(
936
- getAllPromptsResponseFormatJsonSchema,
937
- ),
1024
+ GetAllPrompts1JsonSchema$outboundSchema.parse(getAllPrompts1JsonSchema),
938
1025
  );
939
1026
  }
940
1027
 
941
- export function getAllPromptsResponseFormatJsonSchemaFromJSON(
1028
+ export function getAllPrompts1JsonSchemaFromJSON(
942
1029
  jsonString: string,
943
- ): SafeParseResult<GetAllPromptsResponseFormatJsonSchema, SDKValidationError> {
1030
+ ): SafeParseResult<GetAllPrompts1JsonSchema, SDKValidationError> {
944
1031
  return safeParse(
945
1032
  jsonString,
946
- (x) =>
947
- GetAllPromptsResponseFormatJsonSchema$inboundSchema.parse(JSON.parse(x)),
948
- `Failed to parse 'GetAllPromptsResponseFormatJsonSchema' from JSON`,
1033
+ (x) => GetAllPrompts1JsonSchema$inboundSchema.parse(JSON.parse(x)),
1034
+ `Failed to parse 'GetAllPrompts1JsonSchema' from JSON`,
949
1035
  );
950
1036
  }
951
1037
 
952
1038
  /** @internal */
953
- export const GetAllPromptsResponseFormat1$inboundSchema: z.ZodType<
954
- GetAllPromptsResponseFormat1,
1039
+ export const GetAllPrompts11$inboundSchema: z.ZodType<
1040
+ GetAllPrompts11,
955
1041
  z.ZodTypeDef,
956
1042
  unknown
957
1043
  > = z.object({
958
- type: GetAllPromptsResponseFormatType$inboundSchema,
959
- json_schema: z.lazy(() =>
960
- GetAllPromptsResponseFormatJsonSchema$inboundSchema
961
- ),
1044
+ type: GetAllPrompts1Type$inboundSchema,
1045
+ json_schema: z.lazy(() => GetAllPrompts1JsonSchema$inboundSchema),
962
1046
  }).transform((v) => {
963
1047
  return remap$(v, {
964
1048
  "json_schema": "jsonSchema",
@@ -966,27 +1050,82 @@ export const GetAllPromptsResponseFormat1$inboundSchema: z.ZodType<
966
1050
  });
967
1051
 
968
1052
  /** @internal */
969
- export type GetAllPromptsResponseFormat1$Outbound = {
1053
+ export type GetAllPrompts11$Outbound = {
970
1054
  type: string;
971
- json_schema: GetAllPromptsResponseFormatJsonSchema$Outbound;
1055
+ json_schema: GetAllPrompts1JsonSchema$Outbound;
972
1056
  };
973
1057
 
974
1058
  /** @internal */
975
- export const GetAllPromptsResponseFormat1$outboundSchema: z.ZodType<
976
- GetAllPromptsResponseFormat1$Outbound,
1059
+ export const GetAllPrompts11$outboundSchema: z.ZodType<
1060
+ GetAllPrompts11$Outbound,
977
1061
  z.ZodTypeDef,
978
- GetAllPromptsResponseFormat1
1062
+ GetAllPrompts11
979
1063
  > = z.object({
980
- type: GetAllPromptsResponseFormatType$outboundSchema,
981
- jsonSchema: z.lazy(() =>
982
- GetAllPromptsResponseFormatJsonSchema$outboundSchema
983
- ),
1064
+ type: GetAllPrompts1Type$outboundSchema,
1065
+ jsonSchema: z.lazy(() => GetAllPrompts1JsonSchema$outboundSchema),
984
1066
  }).transform((v) => {
985
1067
  return remap$(v, {
986
1068
  jsonSchema: "json_schema",
987
1069
  });
988
1070
  });
989
1071
 
1072
+ /**
1073
+ * @internal
1074
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1075
+ */
1076
+ export namespace GetAllPrompts11$ {
1077
+ /** @deprecated use `GetAllPrompts11$inboundSchema` instead. */
1078
+ export const inboundSchema = GetAllPrompts11$inboundSchema;
1079
+ /** @deprecated use `GetAllPrompts11$outboundSchema` instead. */
1080
+ export const outboundSchema = GetAllPrompts11$outboundSchema;
1081
+ /** @deprecated use `GetAllPrompts11$Outbound` instead. */
1082
+ export type Outbound = GetAllPrompts11$Outbound;
1083
+ }
1084
+
1085
+ export function getAllPrompts11ToJSON(
1086
+ getAllPrompts11: GetAllPrompts11,
1087
+ ): string {
1088
+ return JSON.stringify(GetAllPrompts11$outboundSchema.parse(getAllPrompts11));
1089
+ }
1090
+
1091
+ export function getAllPrompts11FromJSON(
1092
+ jsonString: string,
1093
+ ): SafeParseResult<GetAllPrompts11, SDKValidationError> {
1094
+ return safeParse(
1095
+ jsonString,
1096
+ (x) => GetAllPrompts11$inboundSchema.parse(JSON.parse(x)),
1097
+ `Failed to parse 'GetAllPrompts11' from JSON`,
1098
+ );
1099
+ }
1100
+
1101
+ /** @internal */
1102
+ export const GetAllPromptsResponseFormat1$inboundSchema: z.ZodType<
1103
+ GetAllPromptsResponseFormat1,
1104
+ z.ZodTypeDef,
1105
+ unknown
1106
+ > = z.union([
1107
+ z.lazy(() => GetAllPrompts11$inboundSchema),
1108
+ z.lazy(() => GetAllPrompts12$inboundSchema),
1109
+ z.lazy(() => GetAllPrompts13$inboundSchema),
1110
+ ]);
1111
+
1112
+ /** @internal */
1113
+ export type GetAllPromptsResponseFormat1$Outbound =
1114
+ | GetAllPrompts11$Outbound
1115
+ | GetAllPrompts12$Outbound
1116
+ | GetAllPrompts13$Outbound;
1117
+
1118
+ /** @internal */
1119
+ export const GetAllPromptsResponseFormat1$outboundSchema: z.ZodType<
1120
+ GetAllPromptsResponseFormat1$Outbound,
1121
+ z.ZodTypeDef,
1122
+ GetAllPromptsResponseFormat1
1123
+ > = z.union([
1124
+ z.lazy(() => GetAllPrompts11$outboundSchema),
1125
+ z.lazy(() => GetAllPrompts12$outboundSchema),
1126
+ z.lazy(() => GetAllPrompts13$outboundSchema),
1127
+ ]);
1128
+
990
1129
  /**
991
1130
  * @internal
992
1131
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
@@ -1026,16 +1165,24 @@ export const GetAllPromptsResponseFormat$inboundSchema: z.ZodType<
1026
1165
  z.ZodTypeDef,
1027
1166
  unknown
1028
1167
  > = z.union([
1029
- z.lazy(() => GetAllPromptsResponseFormat1$inboundSchema),
1030
- z.lazy(() => GetAllPromptsResponseFormat2$inboundSchema),
1031
- z.lazy(() => GetAllPromptsResponseFormat3$inboundSchema),
1168
+ z.union([
1169
+ z.lazy(() => GetAllPrompts11$inboundSchema),
1170
+ z.lazy(() => GetAllPrompts12$inboundSchema),
1171
+ z.lazy(() => GetAllPrompts13$inboundSchema),
1172
+ ]),
1173
+ GetAllPromptsResponseFormat2$inboundSchema,
1174
+ GetAllPromptsResponseFormat3$inboundSchema,
1175
+ GetAllPromptsResponseFormat4$inboundSchema,
1032
1176
  ]);
1033
1177
 
1034
1178
  /** @internal */
1035
1179
  export type GetAllPromptsResponseFormat$Outbound =
1036
- | GetAllPromptsResponseFormat1$Outbound
1037
- | GetAllPromptsResponseFormat2$Outbound
1038
- | GetAllPromptsResponseFormat3$Outbound;
1180
+ | GetAllPrompts11$Outbound
1181
+ | GetAllPrompts12$Outbound
1182
+ | GetAllPrompts13$Outbound
1183
+ | string
1184
+ | string
1185
+ | string;
1039
1186
 
1040
1187
  /** @internal */
1041
1188
  export const GetAllPromptsResponseFormat$outboundSchema: z.ZodType<
@@ -1043,9 +1190,14 @@ export const GetAllPromptsResponseFormat$outboundSchema: z.ZodType<
1043
1190
  z.ZodTypeDef,
1044
1191
  GetAllPromptsResponseFormat
1045
1192
  > = z.union([
1046
- z.lazy(() => GetAllPromptsResponseFormat1$outboundSchema),
1047
- z.lazy(() => GetAllPromptsResponseFormat2$outboundSchema),
1048
- z.lazy(() => GetAllPromptsResponseFormat3$outboundSchema),
1193
+ z.union([
1194
+ z.lazy(() => GetAllPrompts11$outboundSchema),
1195
+ z.lazy(() => GetAllPrompts12$outboundSchema),
1196
+ z.lazy(() => GetAllPrompts13$outboundSchema),
1197
+ ]),
1198
+ GetAllPromptsResponseFormat2$outboundSchema,
1199
+ GetAllPromptsResponseFormat3$outboundSchema,
1200
+ GetAllPromptsResponseFormat4$outboundSchema,
1049
1201
  ]);
1050
1202
 
1051
1203
  /**
@@ -1185,9 +1337,14 @@ export const GetAllPromptsModelParameters$inboundSchema: z.ZodType<
1185
1337
  style: z.string().optional(),
1186
1338
  responseFormat: z.nullable(
1187
1339
  z.union([
1188
- z.lazy(() => GetAllPromptsResponseFormat1$inboundSchema),
1189
- z.lazy(() => GetAllPromptsResponseFormat2$inboundSchema),
1190
- z.lazy(() => GetAllPromptsResponseFormat3$inboundSchema),
1340
+ z.union([
1341
+ z.lazy(() => GetAllPrompts11$inboundSchema),
1342
+ z.lazy(() => GetAllPrompts12$inboundSchema),
1343
+ z.lazy(() => GetAllPrompts13$inboundSchema),
1344
+ ]),
1345
+ GetAllPromptsResponseFormat2$inboundSchema,
1346
+ GetAllPromptsResponseFormat3$inboundSchema,
1347
+ GetAllPromptsResponseFormat4$inboundSchema,
1191
1348
  ]),
1192
1349
  ).optional(),
1193
1350
  photoRealVersion: GetAllPromptsPhotoRealVersion$inboundSchema.optional(),
@@ -1216,9 +1373,12 @@ export type GetAllPromptsModelParameters$Outbound = {
1216
1373
  quality?: string | undefined;
1217
1374
  style?: string | undefined;
1218
1375
  responseFormat?:
1219
- | GetAllPromptsResponseFormat1$Outbound
1220
- | GetAllPromptsResponseFormat2$Outbound
1221
- | GetAllPromptsResponseFormat3$Outbound
1376
+ | GetAllPrompts11$Outbound
1377
+ | GetAllPrompts12$Outbound
1378
+ | GetAllPrompts13$Outbound
1379
+ | string
1380
+ | string
1381
+ | string
1222
1382
  | null
1223
1383
  | undefined;
1224
1384
  photoRealVersion?: string | undefined;
@@ -1248,9 +1408,14 @@ export const GetAllPromptsModelParameters$outboundSchema: z.ZodType<
1248
1408
  style: z.string().optional(),
1249
1409
  responseFormat: z.nullable(
1250
1410
  z.union([
1251
- z.lazy(() => GetAllPromptsResponseFormat1$outboundSchema),
1252
- z.lazy(() => GetAllPromptsResponseFormat2$outboundSchema),
1253
- z.lazy(() => GetAllPromptsResponseFormat3$outboundSchema),
1411
+ z.union([
1412
+ z.lazy(() => GetAllPrompts11$outboundSchema),
1413
+ z.lazy(() => GetAllPrompts12$outboundSchema),
1414
+ z.lazy(() => GetAllPrompts13$outboundSchema),
1415
+ ]),
1416
+ GetAllPromptsResponseFormat2$outboundSchema,
1417
+ GetAllPromptsResponseFormat3$outboundSchema,
1418
+ GetAllPromptsResponseFormat4$outboundSchema,
1254
1419
  ]),
1255
1420
  ).optional(),
1256
1421
  photoRealVersion: GetAllPromptsPhotoRealVersion$outboundSchema.optional(),