@orq-ai/node 3.12.14 → 3.12.17

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 (167) hide show
  1. package/README.md +1 -4
  2. package/bin/mcp-server.js +113 -113
  3. package/bin/mcp-server.js.map +31 -31
  4. package/examples/package-lock.json +1 -1
  5. package/jsr.json +1 -1
  6. package/lib/config.d.ts +3 -3
  7. package/lib/config.js +3 -3
  8. package/lib/url.js +1 -1
  9. package/lib/url.js.map +1 -1
  10. package/mcp-server/mcp-server.js +1 -1
  11. package/mcp-server/server.js +1 -1
  12. package/models/operations/createbudget.js +2 -2
  13. package/models/operations/createcontact.js +2 -2
  14. package/models/operations/createdataset.js +2 -2
  15. package/models/operations/createdatasetitem.js +2 -2
  16. package/models/operations/createdatasource.js +2 -2
  17. package/models/operations/createeval.js +16 -16
  18. package/models/operations/fileget.js +2 -2
  19. package/models/operations/filelist.js +2 -2
  20. package/models/operations/fileupload.js +2 -2
  21. package/models/operations/getbudget.js +2 -2
  22. package/models/operations/getevals.js +28 -28
  23. package/models/operations/listbudgets.js +2 -2
  24. package/models/operations/listcontacts.js +2 -2
  25. package/models/operations/listdatasetdatapoints.js +2 -2
  26. package/models/operations/listdatasets.js +2 -2
  27. package/models/operations/listdatasources.js +2 -2
  28. package/models/operations/retrievecontact.js +2 -2
  29. package/models/operations/retrievedatapoint.js +2 -2
  30. package/models/operations/retrievedataset.js +2 -2
  31. package/models/operations/retrievedatasource.js +2 -2
  32. package/models/operations/updatebudget.js +2 -2
  33. package/models/operations/updatecontact.js +2 -2
  34. package/models/operations/updatedatapoint.js +2 -2
  35. package/models/operations/updatedataset.js +2 -2
  36. package/models/operations/updatedatasource.js +2 -2
  37. package/models/operations/updateeval.js +16 -16
  38. package/package.json +1 -1
  39. package/packages/orq-rc/README.md +108 -94
  40. package/packages/orq-rc/docs/sdks/agents/README.md +8 -2
  41. package/packages/orq-rc/docs/sdks/evals/README.md +2 -0
  42. package/packages/orq-rc/docs/sdks/tools/README.md +488 -0
  43. package/packages/orq-rc/examples/package-lock.json +1 -1
  44. package/packages/orq-rc/jsr.json +1 -1
  45. package/packages/orq-rc/package-lock.json +2 -2
  46. package/packages/orq-rc/package.json +1 -1
  47. package/packages/orq-rc/src/funcs/toolsCreate.ts +163 -0
  48. package/packages/orq-rc/src/funcs/toolsDelete.ts +167 -0
  49. package/packages/orq-rc/src/funcs/toolsDuplicate.ts +175 -0
  50. package/packages/orq-rc/src/funcs/toolsList.ts +176 -0
  51. package/packages/orq-rc/src/funcs/toolsRetrieve.ts +166 -0
  52. package/packages/orq-rc/src/funcs/toolsUpdate.ts +176 -0
  53. package/packages/orq-rc/src/lib/config.ts +3 -3
  54. package/packages/orq-rc/src/lib/url.ts +1 -1
  55. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  56. package/packages/orq-rc/src/mcp-server/server.ts +13 -1
  57. package/packages/orq-rc/src/mcp-server/tools/toolsCreate.ts +37 -0
  58. package/packages/orq-rc/src/mcp-server/tools/toolsDelete.ts +35 -0
  59. package/packages/orq-rc/src/mcp-server/tools/toolsDuplicate.ts +37 -0
  60. package/packages/orq-rc/src/mcp-server/tools/toolsList.ts +37 -0
  61. package/packages/orq-rc/src/mcp-server/tools/toolsRetrieve.ts +37 -0
  62. package/packages/orq-rc/src/mcp-server/tools/toolsUpdate.ts +37 -0
  63. package/packages/orq-rc/src/models/components/callsubagenttool.ts +109 -0
  64. package/packages/orq-rc/src/models/components/codeexecutiontool.ts +293 -0
  65. package/packages/orq-rc/src/models/components/currentdatetool.ts +107 -0
  66. package/packages/orq-rc/src/models/components/deployments.ts +52 -45
  67. package/packages/orq-rc/src/models/components/functiontool.ts +195 -0
  68. package/packages/orq-rc/src/models/components/googlesearchtool.ts +108 -0
  69. package/packages/orq-rc/src/models/components/httptool.ts +532 -0
  70. package/packages/orq-rc/src/models/components/index.ts +13 -0
  71. package/packages/orq-rc/src/models/components/queryknowledgebasetool.ts +111 -0
  72. package/packages/orq-rc/src/models/components/querymemorystoretool.ts +111 -0
  73. package/packages/orq-rc/src/models/components/retrieveagentstool.ts +109 -0
  74. package/packages/orq-rc/src/models/components/retrieveknowledgebasestool.ts +111 -0
  75. package/packages/orq-rc/src/models/components/retrievememorystorestool.ts +111 -0
  76. package/packages/orq-rc/src/models/components/webscrapertool.ts +105 -0
  77. package/packages/orq-rc/src/models/components/writememorystoretool.ts +111 -0
  78. package/packages/orq-rc/src/models/errors/duplicatetool.ts +91 -0
  79. package/packages/orq-rc/src/models/errors/index.ts +2 -0
  80. package/packages/orq-rc/src/models/errors/updatetool.ts +91 -0
  81. package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
  82. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  83. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  84. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +10 -8
  85. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  86. package/packages/orq-rc/src/models/operations/createeval.ts +199 -56
  87. package/packages/orq-rc/src/models/operations/createknowledge.ts +18 -0
  88. package/packages/orq-rc/src/models/operations/creatememorystore.ts +137 -136
  89. package/packages/orq-rc/src/models/operations/createprompt.ts +633 -314
  90. package/packages/orq-rc/src/models/operations/createtool.ts +4027 -0
  91. package/packages/orq-rc/src/models/operations/deletetool.ts +75 -0
  92. package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +8 -6
  93. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +363 -194
  94. package/packages/orq-rc/src/models/operations/deployments.ts +330 -160
  95. package/packages/orq-rc/src/models/operations/deploymentstream.ts +8 -6
  96. package/packages/orq-rc/src/models/operations/duplicatetool.ts +2311 -0
  97. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  98. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  99. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  100. package/packages/orq-rc/src/models/operations/getagent.ts +10 -10
  101. package/packages/orq-rc/src/models/operations/getallprompts.ts +334 -168
  102. package/packages/orq-rc/src/models/operations/getalltools.ts +2278 -0
  103. package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
  104. package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
  105. package/packages/orq-rc/src/models/operations/getoneknowledge.ts +9 -0
  106. package/packages/orq-rc/src/models/operations/getoneprompt.ts +330 -167
  107. package/packages/orq-rc/src/models/operations/getpromptversion.ts +338 -168
  108. package/packages/orq-rc/src/models/operations/index.ts +6 -0
  109. package/packages/orq-rc/src/models/operations/listagents.ts +10 -10
  110. package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
  111. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  112. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +6 -5
  113. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  114. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  115. package/packages/orq-rc/src/models/operations/listknowledgebases.ts +9 -0
  116. package/packages/orq-rc/src/models/operations/listpromptversions.ts +355 -183
  117. package/packages/orq-rc/src/models/operations/parse.ts +20 -335
  118. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  119. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +6 -5
  120. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  121. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  122. package/packages/orq-rc/src/models/operations/retrievetool.ts +2303 -0
  123. package/packages/orq-rc/src/models/operations/runagent.ts +428 -1384
  124. package/packages/orq-rc/src/models/operations/searchknowledge.ts +2 -2
  125. package/packages/orq-rc/src/models/operations/streamrunagent.ts +409 -1452
  126. package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
  127. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  128. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +10 -8
  129. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  130. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  131. package/packages/orq-rc/src/models/operations/updateeval.ts +210 -57
  132. package/packages/orq-rc/src/models/operations/updateknowledge.ts +18 -0
  133. package/packages/orq-rc/src/models/operations/updatememorystore.ts +136 -168
  134. package/packages/orq-rc/src/models/operations/updateprompt.ts +670 -335
  135. package/packages/orq-rc/src/models/operations/updatetool.ts +4231 -0
  136. package/packages/orq-rc/src/sdk/sdk.ts +6 -0
  137. package/packages/orq-rc/src/sdk/tools.ts +117 -0
  138. package/src/lib/config.ts +3 -3
  139. package/src/lib/url.ts +1 -1
  140. package/src/mcp-server/mcp-server.ts +1 -1
  141. package/src/mcp-server/server.ts +1 -1
  142. package/src/models/operations/createbudget.ts +2 -2
  143. package/src/models/operations/createcontact.ts +2 -2
  144. package/src/models/operations/createdataset.ts +2 -2
  145. package/src/models/operations/createdatasetitem.ts +2 -2
  146. package/src/models/operations/createdatasource.ts +2 -2
  147. package/src/models/operations/createeval.ts +16 -16
  148. package/src/models/operations/fileget.ts +2 -2
  149. package/src/models/operations/filelist.ts +2 -2
  150. package/src/models/operations/fileupload.ts +2 -2
  151. package/src/models/operations/getbudget.ts +2 -2
  152. package/src/models/operations/getevals.ts +28 -28
  153. package/src/models/operations/listbudgets.ts +2 -2
  154. package/src/models/operations/listcontacts.ts +2 -2
  155. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  156. package/src/models/operations/listdatasets.ts +2 -2
  157. package/src/models/operations/listdatasources.ts +2 -2
  158. package/src/models/operations/retrievecontact.ts +2 -2
  159. package/src/models/operations/retrievedatapoint.ts +2 -2
  160. package/src/models/operations/retrievedataset.ts +2 -2
  161. package/src/models/operations/retrievedatasource.ts +2 -2
  162. package/src/models/operations/updatebudget.ts +2 -2
  163. package/src/models/operations/updatecontact.ts +2 -2
  164. package/src/models/operations/updatedatapoint.ts +2 -2
  165. package/src/models/operations/updatedataset.ts +2 -2
  166. package/src/models/operations/updatedatasource.ts +2 -2
  167. 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
@@ -156,6 +193,7 @@ export type GetAllPromptsEncodingFormat = ClosedEnum<
156
193
  */
157
194
  export const GetAllPromptsReasoningEffort = {
158
195
  Disable: "disable",
196
+ Minimal: "minimal",
159
197
  Low: "low",
160
198
  Medium: "medium",
161
199
  High: "high",
@@ -244,9 +282,12 @@ export type GetAllPromptsModelParameters = {
244
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.
245
283
  */
246
284
  responseFormat?:
247
- | GetAllPromptsResponseFormat1
285
+ | GetAllPrompts11
286
+ | GetAllPrompts12
287
+ | GetAllPrompts13
248
288
  | GetAllPromptsResponseFormat2
249
289
  | GetAllPromptsResponseFormat3
290
+ | GetAllPromptsResponseFormat4
250
291
  | null
251
292
  | undefined;
252
293
  /**
@@ -704,188 +745,239 @@ export namespace GetAllPromptsFormat$ {
704
745
  }
705
746
 
706
747
  /** @internal */
707
- export const GetAllPromptsResponseFormatPromptsResponseType$inboundSchema:
708
- z.ZodNativeEnum<typeof GetAllPromptsResponseFormatPromptsResponseType> = z
709
- .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);
710
772
 
711
773
  /** @internal */
712
- export const GetAllPromptsResponseFormatPromptsResponseType$outboundSchema:
713
- z.ZodNativeEnum<typeof GetAllPromptsResponseFormatPromptsResponseType> =
714
- GetAllPromptsResponseFormatPromptsResponseType$inboundSchema;
774
+ export const GetAllPromptsResponseFormat3$outboundSchema: z.ZodNativeEnum<
775
+ typeof GetAllPromptsResponseFormat3
776
+ > = GetAllPromptsResponseFormat3$inboundSchema;
715
777
 
716
778
  /**
717
779
  * @internal
718
780
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
719
781
  */
720
- export namespace GetAllPromptsResponseFormatPromptsResponseType$ {
721
- /** @deprecated use `GetAllPromptsResponseFormatPromptsResponseType$inboundSchema` instead. */
722
- export const inboundSchema =
723
- GetAllPromptsResponseFormatPromptsResponseType$inboundSchema;
724
- /** @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. */
725
828
  export const outboundSchema =
726
- GetAllPromptsResponseFormatPromptsResponseType$outboundSchema;
829
+ GetAllPrompts1PromptsResponseType$outboundSchema;
727
830
  }
728
831
 
729
832
  /** @internal */
730
- export const GetAllPromptsResponseFormat3$inboundSchema: z.ZodType<
731
- GetAllPromptsResponseFormat3,
833
+ export const GetAllPrompts13$inboundSchema: z.ZodType<
834
+ GetAllPrompts13,
732
835
  z.ZodTypeDef,
733
836
  unknown
734
837
  > = z.object({
735
- type: GetAllPromptsResponseFormatPromptsResponseType$inboundSchema,
838
+ type: GetAllPrompts1PromptsResponseType$inboundSchema,
736
839
  });
737
840
 
738
841
  /** @internal */
739
- export type GetAllPromptsResponseFormat3$Outbound = {
842
+ export type GetAllPrompts13$Outbound = {
740
843
  type: string;
741
844
  };
742
845
 
743
846
  /** @internal */
744
- export const GetAllPromptsResponseFormat3$outboundSchema: z.ZodType<
745
- GetAllPromptsResponseFormat3$Outbound,
847
+ export const GetAllPrompts13$outboundSchema: z.ZodType<
848
+ GetAllPrompts13$Outbound,
746
849
  z.ZodTypeDef,
747
- GetAllPromptsResponseFormat3
850
+ GetAllPrompts13
748
851
  > = z.object({
749
- type: GetAllPromptsResponseFormatPromptsResponseType$outboundSchema,
852
+ type: GetAllPrompts1PromptsResponseType$outboundSchema,
750
853
  });
751
854
 
752
855
  /**
753
856
  * @internal
754
857
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
755
858
  */
756
- export namespace GetAllPromptsResponseFormat3$ {
757
- /** @deprecated use `GetAllPromptsResponseFormat3$inboundSchema` instead. */
758
- export const inboundSchema = GetAllPromptsResponseFormat3$inboundSchema;
759
- /** @deprecated use `GetAllPromptsResponseFormat3$outboundSchema` instead. */
760
- export const outboundSchema = GetAllPromptsResponseFormat3$outboundSchema;
761
- /** @deprecated use `GetAllPromptsResponseFormat3$Outbound` instead. */
762
- 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;
763
866
  }
764
867
 
765
- export function getAllPromptsResponseFormat3ToJSON(
766
- getAllPromptsResponseFormat3: GetAllPromptsResponseFormat3,
868
+ export function getAllPrompts13ToJSON(
869
+ getAllPrompts13: GetAllPrompts13,
767
870
  ): string {
768
- return JSON.stringify(
769
- GetAllPromptsResponseFormat3$outboundSchema.parse(
770
- getAllPromptsResponseFormat3,
771
- ),
772
- );
871
+ return JSON.stringify(GetAllPrompts13$outboundSchema.parse(getAllPrompts13));
773
872
  }
774
873
 
775
- export function getAllPromptsResponseFormat3FromJSON(
874
+ export function getAllPrompts13FromJSON(
776
875
  jsonString: string,
777
- ): SafeParseResult<GetAllPromptsResponseFormat3, SDKValidationError> {
876
+ ): SafeParseResult<GetAllPrompts13, SDKValidationError> {
778
877
  return safeParse(
779
878
  jsonString,
780
- (x) => GetAllPromptsResponseFormat3$inboundSchema.parse(JSON.parse(x)),
781
- `Failed to parse 'GetAllPromptsResponseFormat3' from JSON`,
879
+ (x) => GetAllPrompts13$inboundSchema.parse(JSON.parse(x)),
880
+ `Failed to parse 'GetAllPrompts13' from JSON`,
782
881
  );
783
882
  }
784
883
 
785
884
  /** @internal */
786
- export const GetAllPromptsResponseFormatPromptsType$inboundSchema:
787
- z.ZodNativeEnum<typeof GetAllPromptsResponseFormatPromptsType> = z.nativeEnum(
788
- GetAllPromptsResponseFormatPromptsType,
789
- );
885
+ export const GetAllPrompts1PromptsType$inboundSchema: z.ZodNativeEnum<
886
+ typeof GetAllPrompts1PromptsType
887
+ > = z.nativeEnum(GetAllPrompts1PromptsType);
790
888
 
791
889
  /** @internal */
792
- export const GetAllPromptsResponseFormatPromptsType$outboundSchema:
793
- z.ZodNativeEnum<typeof GetAllPromptsResponseFormatPromptsType> =
794
- GetAllPromptsResponseFormatPromptsType$inboundSchema;
890
+ export const GetAllPrompts1PromptsType$outboundSchema: z.ZodNativeEnum<
891
+ typeof GetAllPrompts1PromptsType
892
+ > = GetAllPrompts1PromptsType$inboundSchema;
795
893
 
796
894
  /**
797
895
  * @internal
798
896
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
799
897
  */
800
- export namespace GetAllPromptsResponseFormatPromptsType$ {
801
- /** @deprecated use `GetAllPromptsResponseFormatPromptsType$inboundSchema` instead. */
802
- export const inboundSchema =
803
- GetAllPromptsResponseFormatPromptsType$inboundSchema;
804
- /** @deprecated use `GetAllPromptsResponseFormatPromptsType$outboundSchema` instead. */
805
- export const outboundSchema =
806
- 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;
807
903
  }
808
904
 
809
905
  /** @internal */
810
- export const GetAllPromptsResponseFormat2$inboundSchema: z.ZodType<
811
- GetAllPromptsResponseFormat2,
906
+ export const GetAllPrompts12$inboundSchema: z.ZodType<
907
+ GetAllPrompts12,
812
908
  z.ZodTypeDef,
813
909
  unknown
814
910
  > = z.object({
815
- type: GetAllPromptsResponseFormatPromptsType$inboundSchema,
911
+ type: GetAllPrompts1PromptsType$inboundSchema,
816
912
  });
817
913
 
818
914
  /** @internal */
819
- export type GetAllPromptsResponseFormat2$Outbound = {
915
+ export type GetAllPrompts12$Outbound = {
820
916
  type: string;
821
917
  };
822
918
 
823
919
  /** @internal */
824
- export const GetAllPromptsResponseFormat2$outboundSchema: z.ZodType<
825
- GetAllPromptsResponseFormat2$Outbound,
920
+ export const GetAllPrompts12$outboundSchema: z.ZodType<
921
+ GetAllPrompts12$Outbound,
826
922
  z.ZodTypeDef,
827
- GetAllPromptsResponseFormat2
923
+ GetAllPrompts12
828
924
  > = z.object({
829
- type: GetAllPromptsResponseFormatPromptsType$outboundSchema,
925
+ type: GetAllPrompts1PromptsType$outboundSchema,
830
926
  });
831
927
 
832
928
  /**
833
929
  * @internal
834
930
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
835
931
  */
836
- export namespace GetAllPromptsResponseFormat2$ {
837
- /** @deprecated use `GetAllPromptsResponseFormat2$inboundSchema` instead. */
838
- export const inboundSchema = GetAllPromptsResponseFormat2$inboundSchema;
839
- /** @deprecated use `GetAllPromptsResponseFormat2$outboundSchema` instead. */
840
- export const outboundSchema = GetAllPromptsResponseFormat2$outboundSchema;
841
- /** @deprecated use `GetAllPromptsResponseFormat2$Outbound` instead. */
842
- 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;
843
939
  }
844
940
 
845
- export function getAllPromptsResponseFormat2ToJSON(
846
- getAllPromptsResponseFormat2: GetAllPromptsResponseFormat2,
941
+ export function getAllPrompts12ToJSON(
942
+ getAllPrompts12: GetAllPrompts12,
847
943
  ): string {
848
- return JSON.stringify(
849
- GetAllPromptsResponseFormat2$outboundSchema.parse(
850
- getAllPromptsResponseFormat2,
851
- ),
852
- );
944
+ return JSON.stringify(GetAllPrompts12$outboundSchema.parse(getAllPrompts12));
853
945
  }
854
946
 
855
- export function getAllPromptsResponseFormat2FromJSON(
947
+ export function getAllPrompts12FromJSON(
856
948
  jsonString: string,
857
- ): SafeParseResult<GetAllPromptsResponseFormat2, SDKValidationError> {
949
+ ): SafeParseResult<GetAllPrompts12, SDKValidationError> {
858
950
  return safeParse(
859
951
  jsonString,
860
- (x) => GetAllPromptsResponseFormat2$inboundSchema.parse(JSON.parse(x)),
861
- `Failed to parse 'GetAllPromptsResponseFormat2' from JSON`,
952
+ (x) => GetAllPrompts12$inboundSchema.parse(JSON.parse(x)),
953
+ `Failed to parse 'GetAllPrompts12' from JSON`,
862
954
  );
863
955
  }
864
956
 
865
957
  /** @internal */
866
- export const GetAllPromptsResponseFormatType$inboundSchema: z.ZodNativeEnum<
867
- typeof GetAllPromptsResponseFormatType
868
- > = z.nativeEnum(GetAllPromptsResponseFormatType);
958
+ export const GetAllPrompts1Type$inboundSchema: z.ZodNativeEnum<
959
+ typeof GetAllPrompts1Type
960
+ > = z.nativeEnum(GetAllPrompts1Type);
869
961
 
870
962
  /** @internal */
871
- export const GetAllPromptsResponseFormatType$outboundSchema: z.ZodNativeEnum<
872
- typeof GetAllPromptsResponseFormatType
873
- > = GetAllPromptsResponseFormatType$inboundSchema;
963
+ export const GetAllPrompts1Type$outboundSchema: z.ZodNativeEnum<
964
+ typeof GetAllPrompts1Type
965
+ > = GetAllPrompts1Type$inboundSchema;
874
966
 
875
967
  /**
876
968
  * @internal
877
969
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
878
970
  */
879
- export namespace GetAllPromptsResponseFormatType$ {
880
- /** @deprecated use `GetAllPromptsResponseFormatType$inboundSchema` instead. */
881
- export const inboundSchema = GetAllPromptsResponseFormatType$inboundSchema;
882
- /** @deprecated use `GetAllPromptsResponseFormatType$outboundSchema` instead. */
883
- 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;
884
976
  }
885
977
 
886
978
  /** @internal */
887
- export const GetAllPromptsResponseFormatJsonSchema$inboundSchema: z.ZodType<
888
- GetAllPromptsResponseFormatJsonSchema,
979
+ export const GetAllPrompts1JsonSchema$inboundSchema: z.ZodType<
980
+ GetAllPrompts1JsonSchema,
889
981
  z.ZodTypeDef,
890
982
  unknown
891
983
  > = z.object({
@@ -895,17 +987,17 @@ export const GetAllPromptsResponseFormatJsonSchema$inboundSchema: z.ZodType<
895
987
  });
896
988
 
897
989
  /** @internal */
898
- export type GetAllPromptsResponseFormatJsonSchema$Outbound = {
990
+ export type GetAllPrompts1JsonSchema$Outbound = {
899
991
  name: string;
900
992
  strict?: boolean | undefined;
901
993
  schema: { [k: string]: any };
902
994
  };
903
995
 
904
996
  /** @internal */
905
- export const GetAllPromptsResponseFormatJsonSchema$outboundSchema: z.ZodType<
906
- GetAllPromptsResponseFormatJsonSchema$Outbound,
997
+ export const GetAllPrompts1JsonSchema$outboundSchema: z.ZodType<
998
+ GetAllPrompts1JsonSchema$Outbound,
907
999
  z.ZodTypeDef,
908
- GetAllPromptsResponseFormatJsonSchema
1000
+ GetAllPrompts1JsonSchema
909
1001
  > = z.object({
910
1002
  name: z.string(),
911
1003
  strict: z.boolean().optional(),
@@ -916,48 +1008,41 @@ export const GetAllPromptsResponseFormatJsonSchema$outboundSchema: z.ZodType<
916
1008
  * @internal
917
1009
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
918
1010
  */
919
- export namespace GetAllPromptsResponseFormatJsonSchema$ {
920
- /** @deprecated use `GetAllPromptsResponseFormatJsonSchema$inboundSchema` instead. */
921
- export const inboundSchema =
922
- GetAllPromptsResponseFormatJsonSchema$inboundSchema;
923
- /** @deprecated use `GetAllPromptsResponseFormatJsonSchema$outboundSchema` instead. */
924
- export const outboundSchema =
925
- GetAllPromptsResponseFormatJsonSchema$outboundSchema;
926
- /** @deprecated use `GetAllPromptsResponseFormatJsonSchema$Outbound` instead. */
927
- 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;
928
1018
  }
929
1019
 
930
- export function getAllPromptsResponseFormatJsonSchemaToJSON(
931
- getAllPromptsResponseFormatJsonSchema: GetAllPromptsResponseFormatJsonSchema,
1020
+ export function getAllPrompts1JsonSchemaToJSON(
1021
+ getAllPrompts1JsonSchema: GetAllPrompts1JsonSchema,
932
1022
  ): string {
933
1023
  return JSON.stringify(
934
- GetAllPromptsResponseFormatJsonSchema$outboundSchema.parse(
935
- getAllPromptsResponseFormatJsonSchema,
936
- ),
1024
+ GetAllPrompts1JsonSchema$outboundSchema.parse(getAllPrompts1JsonSchema),
937
1025
  );
938
1026
  }
939
1027
 
940
- export function getAllPromptsResponseFormatJsonSchemaFromJSON(
1028
+ export function getAllPrompts1JsonSchemaFromJSON(
941
1029
  jsonString: string,
942
- ): SafeParseResult<GetAllPromptsResponseFormatJsonSchema, SDKValidationError> {
1030
+ ): SafeParseResult<GetAllPrompts1JsonSchema, SDKValidationError> {
943
1031
  return safeParse(
944
1032
  jsonString,
945
- (x) =>
946
- GetAllPromptsResponseFormatJsonSchema$inboundSchema.parse(JSON.parse(x)),
947
- `Failed to parse 'GetAllPromptsResponseFormatJsonSchema' from JSON`,
1033
+ (x) => GetAllPrompts1JsonSchema$inboundSchema.parse(JSON.parse(x)),
1034
+ `Failed to parse 'GetAllPrompts1JsonSchema' from JSON`,
948
1035
  );
949
1036
  }
950
1037
 
951
1038
  /** @internal */
952
- export const GetAllPromptsResponseFormat1$inboundSchema: z.ZodType<
953
- GetAllPromptsResponseFormat1,
1039
+ export const GetAllPrompts11$inboundSchema: z.ZodType<
1040
+ GetAllPrompts11,
954
1041
  z.ZodTypeDef,
955
1042
  unknown
956
1043
  > = z.object({
957
- type: GetAllPromptsResponseFormatType$inboundSchema,
958
- json_schema: z.lazy(() =>
959
- GetAllPromptsResponseFormatJsonSchema$inboundSchema
960
- ),
1044
+ type: GetAllPrompts1Type$inboundSchema,
1045
+ json_schema: z.lazy(() => GetAllPrompts1JsonSchema$inboundSchema),
961
1046
  }).transform((v) => {
962
1047
  return remap$(v, {
963
1048
  "json_schema": "jsonSchema",
@@ -965,27 +1050,82 @@ export const GetAllPromptsResponseFormat1$inboundSchema: z.ZodType<
965
1050
  });
966
1051
 
967
1052
  /** @internal */
968
- export type GetAllPromptsResponseFormat1$Outbound = {
1053
+ export type GetAllPrompts11$Outbound = {
969
1054
  type: string;
970
- json_schema: GetAllPromptsResponseFormatJsonSchema$Outbound;
1055
+ json_schema: GetAllPrompts1JsonSchema$Outbound;
971
1056
  };
972
1057
 
973
1058
  /** @internal */
974
- export const GetAllPromptsResponseFormat1$outboundSchema: z.ZodType<
975
- GetAllPromptsResponseFormat1$Outbound,
1059
+ export const GetAllPrompts11$outboundSchema: z.ZodType<
1060
+ GetAllPrompts11$Outbound,
976
1061
  z.ZodTypeDef,
977
- GetAllPromptsResponseFormat1
1062
+ GetAllPrompts11
978
1063
  > = z.object({
979
- type: GetAllPromptsResponseFormatType$outboundSchema,
980
- jsonSchema: z.lazy(() =>
981
- GetAllPromptsResponseFormatJsonSchema$outboundSchema
982
- ),
1064
+ type: GetAllPrompts1Type$outboundSchema,
1065
+ jsonSchema: z.lazy(() => GetAllPrompts1JsonSchema$outboundSchema),
983
1066
  }).transform((v) => {
984
1067
  return remap$(v, {
985
1068
  jsonSchema: "json_schema",
986
1069
  });
987
1070
  });
988
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
+
989
1129
  /**
990
1130
  * @internal
991
1131
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
@@ -1025,16 +1165,24 @@ export const GetAllPromptsResponseFormat$inboundSchema: z.ZodType<
1025
1165
  z.ZodTypeDef,
1026
1166
  unknown
1027
1167
  > = z.union([
1028
- z.lazy(() => GetAllPromptsResponseFormat1$inboundSchema),
1029
- z.lazy(() => GetAllPromptsResponseFormat2$inboundSchema),
1030
- 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,
1031
1176
  ]);
1032
1177
 
1033
1178
  /** @internal */
1034
1179
  export type GetAllPromptsResponseFormat$Outbound =
1035
- | GetAllPromptsResponseFormat1$Outbound
1036
- | GetAllPromptsResponseFormat2$Outbound
1037
- | GetAllPromptsResponseFormat3$Outbound;
1180
+ | GetAllPrompts11$Outbound
1181
+ | GetAllPrompts12$Outbound
1182
+ | GetAllPrompts13$Outbound
1183
+ | string
1184
+ | string
1185
+ | string;
1038
1186
 
1039
1187
  /** @internal */
1040
1188
  export const GetAllPromptsResponseFormat$outboundSchema: z.ZodType<
@@ -1042,9 +1190,14 @@ export const GetAllPromptsResponseFormat$outboundSchema: z.ZodType<
1042
1190
  z.ZodTypeDef,
1043
1191
  GetAllPromptsResponseFormat
1044
1192
  > = z.union([
1045
- z.lazy(() => GetAllPromptsResponseFormat1$outboundSchema),
1046
- z.lazy(() => GetAllPromptsResponseFormat2$outboundSchema),
1047
- 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,
1048
1201
  ]);
1049
1202
 
1050
1203
  /**
@@ -1184,9 +1337,14 @@ export const GetAllPromptsModelParameters$inboundSchema: z.ZodType<
1184
1337
  style: z.string().optional(),
1185
1338
  responseFormat: z.nullable(
1186
1339
  z.union([
1187
- z.lazy(() => GetAllPromptsResponseFormat1$inboundSchema),
1188
- z.lazy(() => GetAllPromptsResponseFormat2$inboundSchema),
1189
- 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,
1190
1348
  ]),
1191
1349
  ).optional(),
1192
1350
  photoRealVersion: GetAllPromptsPhotoRealVersion$inboundSchema.optional(),
@@ -1215,9 +1373,12 @@ export type GetAllPromptsModelParameters$Outbound = {
1215
1373
  quality?: string | undefined;
1216
1374
  style?: string | undefined;
1217
1375
  responseFormat?:
1218
- | GetAllPromptsResponseFormat1$Outbound
1219
- | GetAllPromptsResponseFormat2$Outbound
1220
- | GetAllPromptsResponseFormat3$Outbound
1376
+ | GetAllPrompts11$Outbound
1377
+ | GetAllPrompts12$Outbound
1378
+ | GetAllPrompts13$Outbound
1379
+ | string
1380
+ | string
1381
+ | string
1221
1382
  | null
1222
1383
  | undefined;
1223
1384
  photoRealVersion?: string | undefined;
@@ -1247,9 +1408,14 @@ export const GetAllPromptsModelParameters$outboundSchema: z.ZodType<
1247
1408
  style: z.string().optional(),
1248
1409
  responseFormat: z.nullable(
1249
1410
  z.union([
1250
- z.lazy(() => GetAllPromptsResponseFormat1$outboundSchema),
1251
- z.lazy(() => GetAllPromptsResponseFormat2$outboundSchema),
1252
- 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,
1253
1419
  ]),
1254
1420
  ).optional(),
1255
1421
  photoRealVersion: GetAllPromptsPhotoRealVersion$outboundSchema.optional(),