@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.
- package/bin/mcp-server.js +112 -112
- package/bin/mcp-server.js.map +30 -30
- 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/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 +107 -90
- 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/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 +60 -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 +631 -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 +362 -194
- package/packages/orq-rc/src/models/operations/deployments.ts +329 -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 +333 -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 +329 -167
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +337 -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 +354 -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 +412 -1375
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +399 -1449
- 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 +57 -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 +668 -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/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
|
|
@@ -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
|
-
|
|
|
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
|
|
709
|
-
|
|
710
|
-
|
|
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
|
|
714
|
-
|
|
715
|
-
|
|
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
|
|
722
|
-
/** @deprecated use `
|
|
723
|
-
export const inboundSchema =
|
|
724
|
-
|
|
725
|
-
|
|
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
|
-
|
|
829
|
+
GetAllPrompts1PromptsResponseType$outboundSchema;
|
|
728
830
|
}
|
|
729
831
|
|
|
730
832
|
/** @internal */
|
|
731
|
-
export const
|
|
732
|
-
|
|
833
|
+
export const GetAllPrompts13$inboundSchema: z.ZodType<
|
|
834
|
+
GetAllPrompts13,
|
|
733
835
|
z.ZodTypeDef,
|
|
734
836
|
unknown
|
|
735
837
|
> = z.object({
|
|
736
|
-
type:
|
|
838
|
+
type: GetAllPrompts1PromptsResponseType$inboundSchema,
|
|
737
839
|
});
|
|
738
840
|
|
|
739
841
|
/** @internal */
|
|
740
|
-
export type
|
|
842
|
+
export type GetAllPrompts13$Outbound = {
|
|
741
843
|
type: string;
|
|
742
844
|
};
|
|
743
845
|
|
|
744
846
|
/** @internal */
|
|
745
|
-
export const
|
|
746
|
-
|
|
847
|
+
export const GetAllPrompts13$outboundSchema: z.ZodType<
|
|
848
|
+
GetAllPrompts13$Outbound,
|
|
747
849
|
z.ZodTypeDef,
|
|
748
|
-
|
|
850
|
+
GetAllPrompts13
|
|
749
851
|
> = z.object({
|
|
750
|
-
type:
|
|
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
|
|
758
|
-
/** @deprecated use `
|
|
759
|
-
export const inboundSchema =
|
|
760
|
-
/** @deprecated use `
|
|
761
|
-
export const outboundSchema =
|
|
762
|
-
/** @deprecated use `
|
|
763
|
-
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;
|
|
764
866
|
}
|
|
765
867
|
|
|
766
|
-
export function
|
|
767
|
-
|
|
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
|
|
874
|
+
export function getAllPrompts13FromJSON(
|
|
777
875
|
jsonString: string,
|
|
778
|
-
): SafeParseResult<
|
|
876
|
+
): SafeParseResult<GetAllPrompts13, SDKValidationError> {
|
|
779
877
|
return safeParse(
|
|
780
878
|
jsonString,
|
|
781
|
-
(x) =>
|
|
782
|
-
`Failed to parse '
|
|
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
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
);
|
|
885
|
+
export const GetAllPrompts1PromptsType$inboundSchema: z.ZodNativeEnum<
|
|
886
|
+
typeof GetAllPrompts1PromptsType
|
|
887
|
+
> = z.nativeEnum(GetAllPrompts1PromptsType);
|
|
791
888
|
|
|
792
889
|
/** @internal */
|
|
793
|
-
export const
|
|
794
|
-
|
|
795
|
-
|
|
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
|
|
802
|
-
/** @deprecated use `
|
|
803
|
-
export const inboundSchema =
|
|
804
|
-
|
|
805
|
-
|
|
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
|
|
812
|
-
|
|
906
|
+
export const GetAllPrompts12$inboundSchema: z.ZodType<
|
|
907
|
+
GetAllPrompts12,
|
|
813
908
|
z.ZodTypeDef,
|
|
814
909
|
unknown
|
|
815
910
|
> = z.object({
|
|
816
|
-
type:
|
|
911
|
+
type: GetAllPrompts1PromptsType$inboundSchema,
|
|
817
912
|
});
|
|
818
913
|
|
|
819
914
|
/** @internal */
|
|
820
|
-
export type
|
|
915
|
+
export type GetAllPrompts12$Outbound = {
|
|
821
916
|
type: string;
|
|
822
917
|
};
|
|
823
918
|
|
|
824
919
|
/** @internal */
|
|
825
|
-
export const
|
|
826
|
-
|
|
920
|
+
export const GetAllPrompts12$outboundSchema: z.ZodType<
|
|
921
|
+
GetAllPrompts12$Outbound,
|
|
827
922
|
z.ZodTypeDef,
|
|
828
|
-
|
|
923
|
+
GetAllPrompts12
|
|
829
924
|
> = z.object({
|
|
830
|
-
type:
|
|
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
|
|
838
|
-
/** @deprecated use `
|
|
839
|
-
export const inboundSchema =
|
|
840
|
-
/** @deprecated use `
|
|
841
|
-
export const outboundSchema =
|
|
842
|
-
/** @deprecated use `
|
|
843
|
-
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;
|
|
844
939
|
}
|
|
845
940
|
|
|
846
|
-
export function
|
|
847
|
-
|
|
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
|
|
947
|
+
export function getAllPrompts12FromJSON(
|
|
857
948
|
jsonString: string,
|
|
858
|
-
): SafeParseResult<
|
|
949
|
+
): SafeParseResult<GetAllPrompts12, SDKValidationError> {
|
|
859
950
|
return safeParse(
|
|
860
951
|
jsonString,
|
|
861
|
-
(x) =>
|
|
862
|
-
`Failed to parse '
|
|
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
|
|
868
|
-
typeof
|
|
869
|
-
> = z.nativeEnum(
|
|
958
|
+
export const GetAllPrompts1Type$inboundSchema: z.ZodNativeEnum<
|
|
959
|
+
typeof GetAllPrompts1Type
|
|
960
|
+
> = z.nativeEnum(GetAllPrompts1Type);
|
|
870
961
|
|
|
871
962
|
/** @internal */
|
|
872
|
-
export const
|
|
873
|
-
typeof
|
|
874
|
-
> =
|
|
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
|
|
881
|
-
/** @deprecated use `
|
|
882
|
-
export const inboundSchema =
|
|
883
|
-
/** @deprecated use `
|
|
884
|
-
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;
|
|
885
976
|
}
|
|
886
977
|
|
|
887
978
|
/** @internal */
|
|
888
|
-
export const
|
|
889
|
-
|
|
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
|
|
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
|
|
907
|
-
|
|
997
|
+
export const GetAllPrompts1JsonSchema$outboundSchema: z.ZodType<
|
|
998
|
+
GetAllPrompts1JsonSchema$Outbound,
|
|
908
999
|
z.ZodTypeDef,
|
|
909
|
-
|
|
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
|
|
921
|
-
/** @deprecated use `
|
|
922
|
-
export const inboundSchema =
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
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
|
|
932
|
-
|
|
1020
|
+
export function getAllPrompts1JsonSchemaToJSON(
|
|
1021
|
+
getAllPrompts1JsonSchema: GetAllPrompts1JsonSchema,
|
|
933
1022
|
): string {
|
|
934
1023
|
return JSON.stringify(
|
|
935
|
-
|
|
936
|
-
getAllPromptsResponseFormatJsonSchema,
|
|
937
|
-
),
|
|
1024
|
+
GetAllPrompts1JsonSchema$outboundSchema.parse(getAllPrompts1JsonSchema),
|
|
938
1025
|
);
|
|
939
1026
|
}
|
|
940
1027
|
|
|
941
|
-
export function
|
|
1028
|
+
export function getAllPrompts1JsonSchemaFromJSON(
|
|
942
1029
|
jsonString: string,
|
|
943
|
-
): SafeParseResult<
|
|
1030
|
+
): SafeParseResult<GetAllPrompts1JsonSchema, SDKValidationError> {
|
|
944
1031
|
return safeParse(
|
|
945
1032
|
jsonString,
|
|
946
|
-
(x) =>
|
|
947
|
-
|
|
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
|
|
954
|
-
|
|
1039
|
+
export const GetAllPrompts11$inboundSchema: z.ZodType<
|
|
1040
|
+
GetAllPrompts11,
|
|
955
1041
|
z.ZodTypeDef,
|
|
956
1042
|
unknown
|
|
957
1043
|
> = z.object({
|
|
958
|
-
type:
|
|
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
|
|
1053
|
+
export type GetAllPrompts11$Outbound = {
|
|
970
1054
|
type: string;
|
|
971
|
-
json_schema:
|
|
1055
|
+
json_schema: GetAllPrompts1JsonSchema$Outbound;
|
|
972
1056
|
};
|
|
973
1057
|
|
|
974
1058
|
/** @internal */
|
|
975
|
-
export const
|
|
976
|
-
|
|
1059
|
+
export const GetAllPrompts11$outboundSchema: z.ZodType<
|
|
1060
|
+
GetAllPrompts11$Outbound,
|
|
977
1061
|
z.ZodTypeDef,
|
|
978
|
-
|
|
1062
|
+
GetAllPrompts11
|
|
979
1063
|
> = z.object({
|
|
980
|
-
type:
|
|
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.
|
|
1030
|
-
|
|
1031
|
-
|
|
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
|
-
|
|
|
1037
|
-
|
|
|
1038
|
-
|
|
|
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.
|
|
1047
|
-
|
|
1048
|
-
|
|
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.
|
|
1189
|
-
|
|
1190
|
-
|
|
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
|
-
|
|
|
1220
|
-
|
|
|
1221
|
-
|
|
|
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.
|
|
1252
|
-
|
|
1253
|
-
|
|
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(),
|