@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.
- package/README.md +1 -4
- package/bin/mcp-server.js +113 -113
- package/bin/mcp-server.js.map +31 -31
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/lib/url.js +1 -1
- package/lib/url.js.map +1 -1
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- package/package.json +1 -1
- package/packages/orq-rc/README.md +108 -94
- package/packages/orq-rc/docs/sdks/agents/README.md +8 -2
- package/packages/orq-rc/docs/sdks/evals/README.md +2 -0
- package/packages/orq-rc/docs/sdks/tools/README.md +488 -0
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/funcs/toolsCreate.ts +163 -0
- package/packages/orq-rc/src/funcs/toolsDelete.ts +167 -0
- package/packages/orq-rc/src/funcs/toolsDuplicate.ts +175 -0
- package/packages/orq-rc/src/funcs/toolsList.ts +176 -0
- package/packages/orq-rc/src/funcs/toolsRetrieve.ts +166 -0
- package/packages/orq-rc/src/funcs/toolsUpdate.ts +176 -0
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/lib/url.ts +1 -1
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +13 -1
- package/packages/orq-rc/src/mcp-server/tools/toolsCreate.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsDelete.ts +35 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsDuplicate.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsList.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsRetrieve.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsUpdate.ts +37 -0
- package/packages/orq-rc/src/models/components/callsubagenttool.ts +109 -0
- package/packages/orq-rc/src/models/components/codeexecutiontool.ts +293 -0
- package/packages/orq-rc/src/models/components/currentdatetool.ts +107 -0
- package/packages/orq-rc/src/models/components/deployments.ts +52 -45
- package/packages/orq-rc/src/models/components/functiontool.ts +195 -0
- package/packages/orq-rc/src/models/components/googlesearchtool.ts +108 -0
- package/packages/orq-rc/src/models/components/httptool.ts +532 -0
- package/packages/orq-rc/src/models/components/index.ts +13 -0
- package/packages/orq-rc/src/models/components/queryknowledgebasetool.ts +111 -0
- package/packages/orq-rc/src/models/components/querymemorystoretool.ts +111 -0
- package/packages/orq-rc/src/models/components/retrieveagentstool.ts +109 -0
- package/packages/orq-rc/src/models/components/retrieveknowledgebasestool.ts +111 -0
- package/packages/orq-rc/src/models/components/retrievememorystorestool.ts +111 -0
- package/packages/orq-rc/src/models/components/webscrapertool.ts +105 -0
- package/packages/orq-rc/src/models/components/writememorystoretool.ts +111 -0
- package/packages/orq-rc/src/models/errors/duplicatetool.ts +91 -0
- package/packages/orq-rc/src/models/errors/index.ts +2 -0
- package/packages/orq-rc/src/models/errors/updatetool.ts +91 -0
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +10 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +199 -56
- package/packages/orq-rc/src/models/operations/createknowledge.ts +18 -0
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +137 -136
- package/packages/orq-rc/src/models/operations/createprompt.ts +633 -314
- package/packages/orq-rc/src/models/operations/createtool.ts +4027 -0
- package/packages/orq-rc/src/models/operations/deletetool.ts +75 -0
- package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +8 -6
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +363 -194
- package/packages/orq-rc/src/models/operations/deployments.ts +330 -160
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +8 -6
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +2311 -0
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getagent.ts +10 -10
- package/packages/orq-rc/src/models/operations/getallprompts.ts +334 -168
- package/packages/orq-rc/src/models/operations/getalltools.ts +2278 -0
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/getoneknowledge.ts +9 -0
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +330 -167
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +338 -168
- package/packages/orq-rc/src/models/operations/index.ts +6 -0
- package/packages/orq-rc/src/models/operations/listagents.ts +10 -10
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +6 -5
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/listknowledgebases.ts +9 -0
- package/packages/orq-rc/src/models/operations/listpromptversions.ts +355 -183
- package/packages/orq-rc/src/models/operations/parse.ts +20 -335
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +6 -5
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +2303 -0
- package/packages/orq-rc/src/models/operations/runagent.ts +428 -1384
- package/packages/orq-rc/src/models/operations/searchknowledge.ts +2 -2
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +409 -1452
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +10 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +210 -57
- package/packages/orq-rc/src/models/operations/updateknowledge.ts +18 -0
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +136 -168
- package/packages/orq-rc/src/models/operations/updateprompt.ts +670 -335
- package/packages/orq-rc/src/models/operations/updatetool.ts +4231 -0
- package/packages/orq-rc/src/sdk/sdk.ts +6 -0
- package/packages/orq-rc/src/sdk/tools.ts +117 -0
- package/src/lib/config.ts +3 -3
- package/src/lib/url.ts +1 -1
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- 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
|
|
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
|
|
74
|
-
typeof
|
|
77
|
+
export type GetAllPromptsResponseFormat4 = ClosedEnum<
|
|
78
|
+
typeof GetAllPromptsResponseFormat4
|
|
75
79
|
>;
|
|
76
80
|
|
|
77
|
-
export
|
|
78
|
-
|
|
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
|
|
112
|
+
export const GetAllPrompts1PromptsType = {
|
|
82
113
|
JsonObject: "json_object",
|
|
83
114
|
} as const;
|
|
84
|
-
export type
|
|
85
|
-
typeof
|
|
115
|
+
export type GetAllPrompts1PromptsType = ClosedEnum<
|
|
116
|
+
typeof GetAllPrompts1PromptsType
|
|
86
117
|
>;
|
|
87
118
|
|
|
88
|
-
export type
|
|
89
|
-
type:
|
|
119
|
+
export type GetAllPrompts12 = {
|
|
120
|
+
type: GetAllPrompts1PromptsType;
|
|
90
121
|
};
|
|
91
122
|
|
|
92
|
-
export const
|
|
123
|
+
export const GetAllPrompts1Type = {
|
|
93
124
|
JsonSchema: "json_schema",
|
|
94
125
|
} as const;
|
|
95
|
-
export type
|
|
96
|
-
typeof GetAllPromptsResponseFormatType
|
|
97
|
-
>;
|
|
126
|
+
export type GetAllPrompts1Type = ClosedEnum<typeof GetAllPrompts1Type>;
|
|
98
127
|
|
|
99
|
-
export type
|
|
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
|
|
106
|
-
type:
|
|
107
|
-
jsonSchema:
|
|
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
|
-
|
|
|
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
|
-
|
|
|
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
|
|
708
|
-
|
|
709
|
-
|
|
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
|
|
713
|
-
|
|
714
|
-
|
|
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
|
|
721
|
-
/** @deprecated use `
|
|
722
|
-
export const inboundSchema =
|
|
723
|
-
|
|
724
|
-
|
|
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
|
-
|
|
829
|
+
GetAllPrompts1PromptsResponseType$outboundSchema;
|
|
727
830
|
}
|
|
728
831
|
|
|
729
832
|
/** @internal */
|
|
730
|
-
export const
|
|
731
|
-
|
|
833
|
+
export const GetAllPrompts13$inboundSchema: z.ZodType<
|
|
834
|
+
GetAllPrompts13,
|
|
732
835
|
z.ZodTypeDef,
|
|
733
836
|
unknown
|
|
734
837
|
> = z.object({
|
|
735
|
-
type:
|
|
838
|
+
type: GetAllPrompts1PromptsResponseType$inboundSchema,
|
|
736
839
|
});
|
|
737
840
|
|
|
738
841
|
/** @internal */
|
|
739
|
-
export type
|
|
842
|
+
export type GetAllPrompts13$Outbound = {
|
|
740
843
|
type: string;
|
|
741
844
|
};
|
|
742
845
|
|
|
743
846
|
/** @internal */
|
|
744
|
-
export const
|
|
745
|
-
|
|
847
|
+
export const GetAllPrompts13$outboundSchema: z.ZodType<
|
|
848
|
+
GetAllPrompts13$Outbound,
|
|
746
849
|
z.ZodTypeDef,
|
|
747
|
-
|
|
850
|
+
GetAllPrompts13
|
|
748
851
|
> = z.object({
|
|
749
|
-
type:
|
|
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
|
|
757
|
-
/** @deprecated use `
|
|
758
|
-
export const inboundSchema =
|
|
759
|
-
/** @deprecated use `
|
|
760
|
-
export const outboundSchema =
|
|
761
|
-
/** @deprecated use `
|
|
762
|
-
export type 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
|
|
766
|
-
|
|
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
|
|
874
|
+
export function getAllPrompts13FromJSON(
|
|
776
875
|
jsonString: string,
|
|
777
|
-
): SafeParseResult<
|
|
876
|
+
): SafeParseResult<GetAllPrompts13, SDKValidationError> {
|
|
778
877
|
return safeParse(
|
|
779
878
|
jsonString,
|
|
780
|
-
(x) =>
|
|
781
|
-
`Failed to parse '
|
|
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
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
);
|
|
885
|
+
export const GetAllPrompts1PromptsType$inboundSchema: z.ZodNativeEnum<
|
|
886
|
+
typeof GetAllPrompts1PromptsType
|
|
887
|
+
> = z.nativeEnum(GetAllPrompts1PromptsType);
|
|
790
888
|
|
|
791
889
|
/** @internal */
|
|
792
|
-
export const
|
|
793
|
-
|
|
794
|
-
|
|
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
|
|
801
|
-
/** @deprecated use `
|
|
802
|
-
export const inboundSchema =
|
|
803
|
-
|
|
804
|
-
|
|
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
|
|
811
|
-
|
|
906
|
+
export const GetAllPrompts12$inboundSchema: z.ZodType<
|
|
907
|
+
GetAllPrompts12,
|
|
812
908
|
z.ZodTypeDef,
|
|
813
909
|
unknown
|
|
814
910
|
> = z.object({
|
|
815
|
-
type:
|
|
911
|
+
type: GetAllPrompts1PromptsType$inboundSchema,
|
|
816
912
|
});
|
|
817
913
|
|
|
818
914
|
/** @internal */
|
|
819
|
-
export type
|
|
915
|
+
export type GetAllPrompts12$Outbound = {
|
|
820
916
|
type: string;
|
|
821
917
|
};
|
|
822
918
|
|
|
823
919
|
/** @internal */
|
|
824
|
-
export const
|
|
825
|
-
|
|
920
|
+
export const GetAllPrompts12$outboundSchema: z.ZodType<
|
|
921
|
+
GetAllPrompts12$Outbound,
|
|
826
922
|
z.ZodTypeDef,
|
|
827
|
-
|
|
923
|
+
GetAllPrompts12
|
|
828
924
|
> = z.object({
|
|
829
|
-
type:
|
|
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
|
|
837
|
-
/** @deprecated use `
|
|
838
|
-
export const inboundSchema =
|
|
839
|
-
/** @deprecated use `
|
|
840
|
-
export const outboundSchema =
|
|
841
|
-
/** @deprecated use `
|
|
842
|
-
export type 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
|
|
846
|
-
|
|
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
|
|
947
|
+
export function getAllPrompts12FromJSON(
|
|
856
948
|
jsonString: string,
|
|
857
|
-
): SafeParseResult<
|
|
949
|
+
): SafeParseResult<GetAllPrompts12, SDKValidationError> {
|
|
858
950
|
return safeParse(
|
|
859
951
|
jsonString,
|
|
860
|
-
(x) =>
|
|
861
|
-
`Failed to parse '
|
|
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
|
|
867
|
-
typeof
|
|
868
|
-
> = z.nativeEnum(
|
|
958
|
+
export const GetAllPrompts1Type$inboundSchema: z.ZodNativeEnum<
|
|
959
|
+
typeof GetAllPrompts1Type
|
|
960
|
+
> = z.nativeEnum(GetAllPrompts1Type);
|
|
869
961
|
|
|
870
962
|
/** @internal */
|
|
871
|
-
export const
|
|
872
|
-
typeof
|
|
873
|
-
> =
|
|
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
|
|
880
|
-
/** @deprecated use `
|
|
881
|
-
export const inboundSchema =
|
|
882
|
-
/** @deprecated use `
|
|
883
|
-
export const 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
|
|
888
|
-
|
|
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
|
|
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
|
|
906
|
-
|
|
997
|
+
export const GetAllPrompts1JsonSchema$outboundSchema: z.ZodType<
|
|
998
|
+
GetAllPrompts1JsonSchema$Outbound,
|
|
907
999
|
z.ZodTypeDef,
|
|
908
|
-
|
|
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
|
|
920
|
-
/** @deprecated use `
|
|
921
|
-
export const inboundSchema =
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
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
|
|
931
|
-
|
|
1020
|
+
export function getAllPrompts1JsonSchemaToJSON(
|
|
1021
|
+
getAllPrompts1JsonSchema: GetAllPrompts1JsonSchema,
|
|
932
1022
|
): string {
|
|
933
1023
|
return JSON.stringify(
|
|
934
|
-
|
|
935
|
-
getAllPromptsResponseFormatJsonSchema,
|
|
936
|
-
),
|
|
1024
|
+
GetAllPrompts1JsonSchema$outboundSchema.parse(getAllPrompts1JsonSchema),
|
|
937
1025
|
);
|
|
938
1026
|
}
|
|
939
1027
|
|
|
940
|
-
export function
|
|
1028
|
+
export function getAllPrompts1JsonSchemaFromJSON(
|
|
941
1029
|
jsonString: string,
|
|
942
|
-
): SafeParseResult<
|
|
1030
|
+
): SafeParseResult<GetAllPrompts1JsonSchema, SDKValidationError> {
|
|
943
1031
|
return safeParse(
|
|
944
1032
|
jsonString,
|
|
945
|
-
(x) =>
|
|
946
|
-
|
|
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
|
|
953
|
-
|
|
1039
|
+
export const GetAllPrompts11$inboundSchema: z.ZodType<
|
|
1040
|
+
GetAllPrompts11,
|
|
954
1041
|
z.ZodTypeDef,
|
|
955
1042
|
unknown
|
|
956
1043
|
> = z.object({
|
|
957
|
-
type:
|
|
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
|
|
1053
|
+
export type GetAllPrompts11$Outbound = {
|
|
969
1054
|
type: string;
|
|
970
|
-
json_schema:
|
|
1055
|
+
json_schema: GetAllPrompts1JsonSchema$Outbound;
|
|
971
1056
|
};
|
|
972
1057
|
|
|
973
1058
|
/** @internal */
|
|
974
|
-
export const
|
|
975
|
-
|
|
1059
|
+
export const GetAllPrompts11$outboundSchema: z.ZodType<
|
|
1060
|
+
GetAllPrompts11$Outbound,
|
|
976
1061
|
z.ZodTypeDef,
|
|
977
|
-
|
|
1062
|
+
GetAllPrompts11
|
|
978
1063
|
> = z.object({
|
|
979
|
-
type:
|
|
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.
|
|
1029
|
-
|
|
1030
|
-
|
|
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
|
-
|
|
|
1036
|
-
|
|
|
1037
|
-
|
|
|
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.
|
|
1046
|
-
|
|
1047
|
-
|
|
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.
|
|
1188
|
-
|
|
1189
|
-
|
|
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
|
-
|
|
|
1219
|
-
|
|
|
1220
|
-
|
|
|
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.
|
|
1251
|
-
|
|
1252
|
-
|
|
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(),
|