@openloaf-saas/sdk 0.1.8 → 0.1.10
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/dist/index.d.ts +956 -166
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -115,6 +115,25 @@ declare class SaaSContract {
|
|
|
115
115
|
taskId: string;
|
|
116
116
|
};
|
|
117
117
|
}>;
|
|
118
|
+
readonly audio: Endpoint<{
|
|
119
|
+
modelId: string;
|
|
120
|
+
text: string;
|
|
121
|
+
voice?: string | undefined;
|
|
122
|
+
output?: {
|
|
123
|
+
format?: "mp3" | "wav" | "pcm" | "opus" | undefined;
|
|
124
|
+
sampleRate?: number | undefined;
|
|
125
|
+
} | undefined;
|
|
126
|
+
parameters?: Record<string, unknown> | undefined;
|
|
127
|
+
}, {
|
|
128
|
+
success: false;
|
|
129
|
+
message: string;
|
|
130
|
+
code?: string | undefined;
|
|
131
|
+
} | {
|
|
132
|
+
success: true;
|
|
133
|
+
data: {
|
|
134
|
+
taskId: string;
|
|
135
|
+
};
|
|
136
|
+
}>;
|
|
118
137
|
readonly task: (taskId: string) => Endpoint<void, {
|
|
119
138
|
success: false;
|
|
120
139
|
message: string;
|
|
@@ -124,7 +143,7 @@ declare class SaaSContract {
|
|
|
124
143
|
data: {
|
|
125
144
|
status: "queued" | "running" | "succeeded" | "failed" | "canceled";
|
|
126
145
|
progress?: number | undefined;
|
|
127
|
-
resultType?: "image" | "video" | undefined;
|
|
146
|
+
resultType?: "image" | "video" | "audio" | undefined;
|
|
128
147
|
resultUrls?: string[] | undefined;
|
|
129
148
|
error?: {
|
|
130
149
|
message: string;
|
|
@@ -245,6 +264,57 @@ declare class SaaSContract {
|
|
|
245
264
|
updatedAt?: string | undefined;
|
|
246
265
|
};
|
|
247
266
|
}>;
|
|
267
|
+
readonly audioModels: Endpoint<void, {
|
|
268
|
+
success: false;
|
|
269
|
+
message: string;
|
|
270
|
+
code?: string | undefined;
|
|
271
|
+
} | {
|
|
272
|
+
success: true;
|
|
273
|
+
data: {
|
|
274
|
+
data: {
|
|
275
|
+
[x: string]: unknown;
|
|
276
|
+
id: string;
|
|
277
|
+
name?: string | undefined;
|
|
278
|
+
familyId?: string | undefined;
|
|
279
|
+
providerId?: string | undefined;
|
|
280
|
+
tags?: string[] | undefined;
|
|
281
|
+
capabilities?: {
|
|
282
|
+
common?: {
|
|
283
|
+
maxContextK?: number | undefined;
|
|
284
|
+
supportsStructuredOutput?: boolean | undefined;
|
|
285
|
+
supportsWebSearch?: boolean | undefined;
|
|
286
|
+
} | undefined;
|
|
287
|
+
params?: {
|
|
288
|
+
features?: string[] | undefined;
|
|
289
|
+
fields?: {
|
|
290
|
+
key: string;
|
|
291
|
+
title: string;
|
|
292
|
+
type: "number" | "boolean" | "text" | "select";
|
|
293
|
+
request: boolean;
|
|
294
|
+
description?: string | undefined;
|
|
295
|
+
unit?: string | undefined;
|
|
296
|
+
values?: (string | number | boolean)[] | undefined;
|
|
297
|
+
min?: number | undefined;
|
|
298
|
+
max?: number | undefined;
|
|
299
|
+
step?: number | undefined;
|
|
300
|
+
default?: string | number | boolean | undefined;
|
|
301
|
+
}[] | undefined;
|
|
302
|
+
} | undefined;
|
|
303
|
+
input?: {
|
|
304
|
+
maxImages?: number | undefined;
|
|
305
|
+
supportsMask?: boolean | undefined;
|
|
306
|
+
supportsReferenceVideo?: boolean | undefined;
|
|
307
|
+
supportsStartEnd?: boolean | undefined;
|
|
308
|
+
} | undefined;
|
|
309
|
+
output?: {
|
|
310
|
+
supportsMulti?: boolean | undefined;
|
|
311
|
+
supportsAudio?: boolean | undefined;
|
|
312
|
+
} | undefined;
|
|
313
|
+
} | undefined;
|
|
314
|
+
}[];
|
|
315
|
+
updatedAt?: string | undefined;
|
|
316
|
+
};
|
|
317
|
+
}>;
|
|
248
318
|
readonly chatModels: Endpoint<void, {
|
|
249
319
|
success: false;
|
|
250
320
|
message: string;
|
|
@@ -306,6 +376,7 @@ declare class SaaSContract {
|
|
|
306
376
|
imageUpdatedAt: string;
|
|
307
377
|
videoUpdatedAt: string;
|
|
308
378
|
latestUpdatedAt: string;
|
|
379
|
+
audioUpdatedAt?: string | undefined;
|
|
309
380
|
};
|
|
310
381
|
}>;
|
|
311
382
|
readonly providerTemplates: Endpoint<void, {
|
|
@@ -510,6 +581,90 @@ declare class SaaSContract {
|
|
|
510
581
|
};
|
|
511
582
|
}>;
|
|
512
583
|
};
|
|
584
|
+
/** Skill market endpoints. */
|
|
585
|
+
readonly skills: {
|
|
586
|
+
readonly list: Endpoint<{
|
|
587
|
+
page: number;
|
|
588
|
+
pageSize: number;
|
|
589
|
+
keyword?: string | undefined;
|
|
590
|
+
type?: "other" | "development" | "automation" | "ai" | "crawler" | "ops" | "writing" | "design" | undefined;
|
|
591
|
+
}, {
|
|
592
|
+
items: {
|
|
593
|
+
id: string;
|
|
594
|
+
slug: string;
|
|
595
|
+
name: string;
|
|
596
|
+
summary: string | null;
|
|
597
|
+
type: "other" | "development" | "automation" | "ai" | "crawler" | "ops" | "writing" | "design";
|
|
598
|
+
tags: string[];
|
|
599
|
+
source: "official_upload" | "user_upload";
|
|
600
|
+
visibility: "public" | "private";
|
|
601
|
+
status: "active" | "disabled";
|
|
602
|
+
owner: {
|
|
603
|
+
id: string;
|
|
604
|
+
name: string | null;
|
|
605
|
+
email: string | null;
|
|
606
|
+
} | null;
|
|
607
|
+
latestVersion: string | null;
|
|
608
|
+
downloadCount: number;
|
|
609
|
+
currentVersion: {
|
|
610
|
+
id: string;
|
|
611
|
+
version: string;
|
|
612
|
+
archiveFormat: "skill" | "zip" | "tar";
|
|
613
|
+
fileName: string;
|
|
614
|
+
fileSize: number;
|
|
615
|
+
changelog: string | null;
|
|
616
|
+
createdAt: string;
|
|
617
|
+
} | null;
|
|
618
|
+
createdAt: string;
|
|
619
|
+
updatedAt: string;
|
|
620
|
+
}[];
|
|
621
|
+
page: number;
|
|
622
|
+
pageSize: number;
|
|
623
|
+
total: number;
|
|
624
|
+
}>;
|
|
625
|
+
readonly detail: (skillId: string) => Endpoint<void, {
|
|
626
|
+
skill: {
|
|
627
|
+
id: string;
|
|
628
|
+
slug: string;
|
|
629
|
+
name: string;
|
|
630
|
+
summary: string | null;
|
|
631
|
+
type: "other" | "development" | "automation" | "ai" | "crawler" | "ops" | "writing" | "design";
|
|
632
|
+
tags: string[];
|
|
633
|
+
source: "official_upload" | "user_upload";
|
|
634
|
+
visibility: "public" | "private";
|
|
635
|
+
status: "active" | "disabled";
|
|
636
|
+
owner: {
|
|
637
|
+
id: string;
|
|
638
|
+
name: string | null;
|
|
639
|
+
email: string | null;
|
|
640
|
+
} | null;
|
|
641
|
+
latestVersion: string | null;
|
|
642
|
+
downloadCount: number;
|
|
643
|
+
currentVersion: {
|
|
644
|
+
id: string;
|
|
645
|
+
version: string;
|
|
646
|
+
archiveFormat: "skill" | "zip" | "tar";
|
|
647
|
+
fileName: string;
|
|
648
|
+
fileSize: number;
|
|
649
|
+
changelog: string | null;
|
|
650
|
+
createdAt: string;
|
|
651
|
+
} | null;
|
|
652
|
+
createdAt: string;
|
|
653
|
+
updatedAt: string;
|
|
654
|
+
manifestJson: unknown;
|
|
655
|
+
readmeMarkdown: string | null;
|
|
656
|
+
versions: {
|
|
657
|
+
id: string;
|
|
658
|
+
version: string;
|
|
659
|
+
archiveFormat: "skill" | "zip" | "tar";
|
|
660
|
+
fileName: string;
|
|
661
|
+
fileSize: number;
|
|
662
|
+
changelog: string | null;
|
|
663
|
+
createdAt: string;
|
|
664
|
+
}[];
|
|
665
|
+
};
|
|
666
|
+
}>;
|
|
667
|
+
};
|
|
513
668
|
/** User endpoints. */
|
|
514
669
|
readonly user: {
|
|
515
670
|
readonly self: Endpoint<void, {
|
|
@@ -684,6 +839,25 @@ declare const aiEndpoints: {
|
|
|
684
839
|
taskId: string;
|
|
685
840
|
};
|
|
686
841
|
}>;
|
|
842
|
+
readonly audio: Endpoint<{
|
|
843
|
+
modelId: string;
|
|
844
|
+
text: string;
|
|
845
|
+
voice?: string | undefined;
|
|
846
|
+
output?: {
|
|
847
|
+
format?: "mp3" | "wav" | "pcm" | "opus" | undefined;
|
|
848
|
+
sampleRate?: number | undefined;
|
|
849
|
+
} | undefined;
|
|
850
|
+
parameters?: Record<string, unknown> | undefined;
|
|
851
|
+
}, {
|
|
852
|
+
success: false;
|
|
853
|
+
message: string;
|
|
854
|
+
code?: string | undefined;
|
|
855
|
+
} | {
|
|
856
|
+
success: true;
|
|
857
|
+
data: {
|
|
858
|
+
taskId: string;
|
|
859
|
+
};
|
|
860
|
+
}>;
|
|
687
861
|
readonly task: (taskId: string) => Endpoint<void, {
|
|
688
862
|
success: false;
|
|
689
863
|
message: string;
|
|
@@ -693,7 +867,7 @@ declare const aiEndpoints: {
|
|
|
693
867
|
data: {
|
|
694
868
|
status: "queued" | "running" | "succeeded" | "failed" | "canceled";
|
|
695
869
|
progress?: number | undefined;
|
|
696
|
-
resultType?: "image" | "video" | undefined;
|
|
870
|
+
resultType?: "image" | "video" | "audio" | undefined;
|
|
697
871
|
resultUrls?: string[] | undefined;
|
|
698
872
|
error?: {
|
|
699
873
|
message: string;
|
|
@@ -814,6 +988,57 @@ declare const aiEndpoints: {
|
|
|
814
988
|
updatedAt?: string | undefined;
|
|
815
989
|
};
|
|
816
990
|
}>;
|
|
991
|
+
readonly audioModels: Endpoint<void, {
|
|
992
|
+
success: false;
|
|
993
|
+
message: string;
|
|
994
|
+
code?: string | undefined;
|
|
995
|
+
} | {
|
|
996
|
+
success: true;
|
|
997
|
+
data: {
|
|
998
|
+
data: {
|
|
999
|
+
[x: string]: unknown;
|
|
1000
|
+
id: string;
|
|
1001
|
+
name?: string | undefined;
|
|
1002
|
+
familyId?: string | undefined;
|
|
1003
|
+
providerId?: string | undefined;
|
|
1004
|
+
tags?: string[] | undefined;
|
|
1005
|
+
capabilities?: {
|
|
1006
|
+
common?: {
|
|
1007
|
+
maxContextK?: number | undefined;
|
|
1008
|
+
supportsStructuredOutput?: boolean | undefined;
|
|
1009
|
+
supportsWebSearch?: boolean | undefined;
|
|
1010
|
+
} | undefined;
|
|
1011
|
+
params?: {
|
|
1012
|
+
features?: string[] | undefined;
|
|
1013
|
+
fields?: {
|
|
1014
|
+
key: string;
|
|
1015
|
+
title: string;
|
|
1016
|
+
type: "number" | "boolean" | "text" | "select";
|
|
1017
|
+
request: boolean;
|
|
1018
|
+
description?: string | undefined;
|
|
1019
|
+
unit?: string | undefined;
|
|
1020
|
+
values?: (string | number | boolean)[] | undefined;
|
|
1021
|
+
min?: number | undefined;
|
|
1022
|
+
max?: number | undefined;
|
|
1023
|
+
step?: number | undefined;
|
|
1024
|
+
default?: string | number | boolean | undefined;
|
|
1025
|
+
}[] | undefined;
|
|
1026
|
+
} | undefined;
|
|
1027
|
+
input?: {
|
|
1028
|
+
maxImages?: number | undefined;
|
|
1029
|
+
supportsMask?: boolean | undefined;
|
|
1030
|
+
supportsReferenceVideo?: boolean | undefined;
|
|
1031
|
+
supportsStartEnd?: boolean | undefined;
|
|
1032
|
+
} | undefined;
|
|
1033
|
+
output?: {
|
|
1034
|
+
supportsMulti?: boolean | undefined;
|
|
1035
|
+
supportsAudio?: boolean | undefined;
|
|
1036
|
+
} | undefined;
|
|
1037
|
+
} | undefined;
|
|
1038
|
+
}[];
|
|
1039
|
+
updatedAt?: string | undefined;
|
|
1040
|
+
};
|
|
1041
|
+
}>;
|
|
817
1042
|
readonly chatModels: Endpoint<void, {
|
|
818
1043
|
success: false;
|
|
819
1044
|
message: string;
|
|
@@ -875,6 +1100,7 @@ declare const aiEndpoints: {
|
|
|
875
1100
|
imageUpdatedAt: string;
|
|
876
1101
|
videoUpdatedAt: string;
|
|
877
1102
|
latestUpdatedAt: string;
|
|
1103
|
+
audioUpdatedAt?: string | undefined;
|
|
878
1104
|
};
|
|
879
1105
|
}>;
|
|
880
1106
|
readonly providerTemplates: Endpoint<void, {
|
|
@@ -939,6 +1165,40 @@ declare const aiEndpoints: {
|
|
|
939
1165
|
}>;
|
|
940
1166
|
};
|
|
941
1167
|
|
|
1168
|
+
/** Optional client metadata shared by OpenAI-compatible chat requests. */
|
|
1169
|
+
declare const aiClientMetadataSchema: z.ZodObject<{
|
|
1170
|
+
chatSessionId: z.ZodOptional<z.ZodString>;
|
|
1171
|
+
clientId: z.ZodOptional<z.ZodString>;
|
|
1172
|
+
desktopVersion: z.ZodOptional<z.ZodString>;
|
|
1173
|
+
serverVersion: z.ZodOptional<z.ZodString>;
|
|
1174
|
+
webVersion: z.ZodOptional<z.ZodString>;
|
|
1175
|
+
}, z.core.$strip>;
|
|
1176
|
+
/** @deprecated Use aiClientMetadataSchema instead. */
|
|
1177
|
+
declare const aiChatSessionMetadataSchema: z.ZodObject<{
|
|
1178
|
+
chatSessionId: z.ZodOptional<z.ZodString>;
|
|
1179
|
+
clientId: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
desktopVersion: z.ZodOptional<z.ZodString>;
|
|
1181
|
+
serverVersion: z.ZodOptional<z.ZodString>;
|
|
1182
|
+
webVersion: z.ZodOptional<z.ZodString>;
|
|
1183
|
+
}, z.core.$strip>;
|
|
1184
|
+
/** OpenAI-compatible chat/completions request with optional session metadata. */
|
|
1185
|
+
declare const aiChatCompletionsRequestSchema: z.ZodObject<{
|
|
1186
|
+
chatSessionId: z.ZodOptional<z.ZodString>;
|
|
1187
|
+
clientId: z.ZodOptional<z.ZodString>;
|
|
1188
|
+
desktopVersion: z.ZodOptional<z.ZodString>;
|
|
1189
|
+
serverVersion: z.ZodOptional<z.ZodString>;
|
|
1190
|
+
webVersion: z.ZodOptional<z.ZodString>;
|
|
1191
|
+
model: z.ZodString;
|
|
1192
|
+
}, z.core.$loose>;
|
|
1193
|
+
/** OpenAI-compatible responses request with optional session metadata. */
|
|
1194
|
+
declare const aiResponsesRequestSchema: z.ZodObject<{
|
|
1195
|
+
chatSessionId: z.ZodOptional<z.ZodString>;
|
|
1196
|
+
clientId: z.ZodOptional<z.ZodString>;
|
|
1197
|
+
desktopVersion: z.ZodOptional<z.ZodString>;
|
|
1198
|
+
serverVersion: z.ZodOptional<z.ZodString>;
|
|
1199
|
+
webVersion: z.ZodOptional<z.ZodString>;
|
|
1200
|
+
model: z.ZodString;
|
|
1201
|
+
}, z.core.$loose>;
|
|
942
1202
|
declare const aiMediaInputSchema: z.ZodObject<{
|
|
943
1203
|
url: z.ZodOptional<z.ZodString>;
|
|
944
1204
|
base64: z.ZodOptional<z.ZodString>;
|
|
@@ -997,6 +1257,30 @@ declare const aiVideoOutputSchema: z.ZodObject<{
|
|
|
997
1257
|
clarity: z.ZodOptional<z.ZodString>;
|
|
998
1258
|
withAudio: z.ZodOptional<z.ZodBoolean>;
|
|
999
1259
|
}, z.core.$strip>;
|
|
1260
|
+
declare const aiAudioOutputSchema: z.ZodObject<{
|
|
1261
|
+
format: z.ZodOptional<z.ZodEnum<{
|
|
1262
|
+
mp3: "mp3";
|
|
1263
|
+
wav: "wav";
|
|
1264
|
+
pcm: "pcm";
|
|
1265
|
+
opus: "opus";
|
|
1266
|
+
}>>;
|
|
1267
|
+
sampleRate: z.ZodOptional<z.ZodNumber>;
|
|
1268
|
+
}, z.core.$strip>;
|
|
1269
|
+
declare const aiAudioRequestSchema: z.ZodObject<{
|
|
1270
|
+
modelId: z.ZodString;
|
|
1271
|
+
text: z.ZodString;
|
|
1272
|
+
voice: z.ZodOptional<z.ZodString>;
|
|
1273
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
1274
|
+
format: z.ZodOptional<z.ZodEnum<{
|
|
1275
|
+
mp3: "mp3";
|
|
1276
|
+
wav: "wav";
|
|
1277
|
+
pcm: "pcm";
|
|
1278
|
+
opus: "opus";
|
|
1279
|
+
}>>;
|
|
1280
|
+
sampleRate: z.ZodOptional<z.ZodNumber>;
|
|
1281
|
+
}, z.core.$strip>>;
|
|
1282
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1283
|
+
}, z.core.$strip>;
|
|
1000
1284
|
declare const aiImageRequestSchema: z.ZodObject<{
|
|
1001
1285
|
modelId: z.ZodString;
|
|
1002
1286
|
prompt: z.ZodString;
|
|
@@ -1098,6 +1382,7 @@ declare const aiTaskStatusSchema: z.ZodEnum<{
|
|
|
1098
1382
|
declare const aiTaskResultTypeSchema: z.ZodEnum<{
|
|
1099
1383
|
image: "image";
|
|
1100
1384
|
video: "video";
|
|
1385
|
+
audio: "audio";
|
|
1101
1386
|
}>;
|
|
1102
1387
|
declare const aiTaskErrorSchema: z.ZodObject<{
|
|
1103
1388
|
code: z.ZodOptional<z.ZodString>;
|
|
@@ -1115,6 +1400,7 @@ declare const aiTaskDataSchema: z.ZodObject<{
|
|
|
1115
1400
|
resultType: z.ZodOptional<z.ZodEnum<{
|
|
1116
1401
|
image: "image";
|
|
1117
1402
|
video: "video";
|
|
1403
|
+
audio: "audio";
|
|
1118
1404
|
}>>;
|
|
1119
1405
|
resultUrls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1120
1406
|
error: z.ZodOptional<z.ZodObject<{
|
|
@@ -1137,6 +1423,7 @@ declare const aiTaskSuccessSchema: z.ZodObject<{
|
|
|
1137
1423
|
resultType: z.ZodOptional<z.ZodEnum<{
|
|
1138
1424
|
image: "image";
|
|
1139
1425
|
video: "video";
|
|
1426
|
+
audio: "audio";
|
|
1140
1427
|
}>>;
|
|
1141
1428
|
resultUrls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1142
1429
|
error: z.ZodOptional<z.ZodObject<{
|
|
@@ -1160,6 +1447,7 @@ declare const aiTaskResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
1160
1447
|
resultType: z.ZodOptional<z.ZodEnum<{
|
|
1161
1448
|
image: "image";
|
|
1162
1449
|
video: "video";
|
|
1450
|
+
audio: "audio";
|
|
1163
1451
|
}>>;
|
|
1164
1452
|
resultUrls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1165
1453
|
error: z.ZodOptional<z.ZodObject<{
|
|
@@ -1695,6 +1983,7 @@ declare const aiModelsUpdatedAtDataSchema: z.ZodObject<{
|
|
|
1695
1983
|
chatUpdatedAt: z.ZodString;
|
|
1696
1984
|
imageUpdatedAt: z.ZodString;
|
|
1697
1985
|
videoUpdatedAt: z.ZodString;
|
|
1986
|
+
audioUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
1698
1987
|
latestUpdatedAt: z.ZodString;
|
|
1699
1988
|
}, z.core.$strip>;
|
|
1700
1989
|
declare const aiModelsUpdatedAtSuccessSchema: z.ZodObject<{
|
|
@@ -1703,6 +1992,7 @@ declare const aiModelsUpdatedAtSuccessSchema: z.ZodObject<{
|
|
|
1703
1992
|
chatUpdatedAt: z.ZodString;
|
|
1704
1993
|
imageUpdatedAt: z.ZodString;
|
|
1705
1994
|
videoUpdatedAt: z.ZodString;
|
|
1995
|
+
audioUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
1706
1996
|
latestUpdatedAt: z.ZodString;
|
|
1707
1997
|
}, z.core.$strip>;
|
|
1708
1998
|
}, z.core.$strip>;
|
|
@@ -1712,6 +2002,7 @@ declare const aiModelsUpdatedAtResponseSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
1712
2002
|
chatUpdatedAt: z.ZodString;
|
|
1713
2003
|
imageUpdatedAt: z.ZodString;
|
|
1714
2004
|
videoUpdatedAt: z.ZodString;
|
|
2005
|
+
audioUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
1715
2006
|
latestUpdatedAt: z.ZodString;
|
|
1716
2007
|
}, z.core.$strip>;
|
|
1717
2008
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1727,9 +2018,16 @@ type AiImageInputs = z.infer<typeof aiImageInputsSchema>;
|
|
|
1727
2018
|
type AiVideoInputs = z.infer<typeof aiVideoInputsSchema>;
|
|
1728
2019
|
type AiImageOutput = z.infer<typeof aiImageOutputSchema>;
|
|
1729
2020
|
type AiVideoOutput = z.infer<typeof aiVideoOutputSchema>;
|
|
2021
|
+
type AiAudioOutput = z.infer<typeof aiAudioOutputSchema>;
|
|
2022
|
+
type AiAudioRequest = z.infer<typeof aiAudioRequestSchema>;
|
|
1730
2023
|
type AiModelCapabilitiesInput = z.infer<typeof aiModelCapabilitiesInputSchema>;
|
|
1731
2024
|
type AiModelCapabilitiesOutput = z.infer<typeof aiModelCapabilitiesOutputSchema>;
|
|
1732
2025
|
type AiModelCapabilities = z.infer<typeof aiModelCapabilitiesSchema>;
|
|
2026
|
+
type AiClientMetadata = z.infer<typeof aiClientMetadataSchema>;
|
|
2027
|
+
/** @deprecated Use AiClientMetadata instead. */
|
|
2028
|
+
type AiChatSessionMetadata = AiClientMetadata;
|
|
2029
|
+
type AiChatCompletionsRequest = z.infer<typeof aiChatCompletionsRequestSchema>;
|
|
2030
|
+
type AiResponsesRequest = z.infer<typeof aiResponsesRequestSchema>;
|
|
1733
2031
|
type AiImageRequest = z.infer<typeof aiImageRequestSchema>;
|
|
1734
2032
|
type AiVideoRequest = z.infer<typeof aiVideoRequestSchema>;
|
|
1735
2033
|
type AiTaskCreatedResponse = z.infer<typeof aiTaskCreatedResponseSchema>;
|
|
@@ -2072,6 +2370,17 @@ declare class AiClient {
|
|
|
2072
2370
|
taskId: string;
|
|
2073
2371
|
};
|
|
2074
2372
|
}>;
|
|
2373
|
+
/** Submit an audio generation (TTS) task. */
|
|
2374
|
+
audio(payload: AiAudioRequest): Promise<{
|
|
2375
|
+
success: false;
|
|
2376
|
+
message: string;
|
|
2377
|
+
code?: string | undefined;
|
|
2378
|
+
} | {
|
|
2379
|
+
success: true;
|
|
2380
|
+
data: {
|
|
2381
|
+
taskId: string;
|
|
2382
|
+
};
|
|
2383
|
+
}>;
|
|
2075
2384
|
/** Fetch task status by ID. */
|
|
2076
2385
|
task(taskId: string): Promise<{
|
|
2077
2386
|
success: false;
|
|
@@ -2082,7 +2391,7 @@ declare class AiClient {
|
|
|
2082
2391
|
data: {
|
|
2083
2392
|
status: "queued" | "running" | "succeeded" | "failed" | "canceled";
|
|
2084
2393
|
progress?: number | undefined;
|
|
2085
|
-
resultType?: "image" | "video" | undefined;
|
|
2394
|
+
resultType?: "image" | "video" | "audio" | undefined;
|
|
2086
2395
|
resultUrls?: string[] | undefined;
|
|
2087
2396
|
error?: {
|
|
2088
2397
|
message: string;
|
|
@@ -2206,6 +2515,58 @@ declare class AiClient {
|
|
|
2206
2515
|
updatedAt?: string | undefined;
|
|
2207
2516
|
};
|
|
2208
2517
|
}>;
|
|
2518
|
+
/** List available audio models. */
|
|
2519
|
+
audioModels(): Promise<{
|
|
2520
|
+
success: false;
|
|
2521
|
+
message: string;
|
|
2522
|
+
code?: string | undefined;
|
|
2523
|
+
} | {
|
|
2524
|
+
success: true;
|
|
2525
|
+
data: {
|
|
2526
|
+
data: {
|
|
2527
|
+
[x: string]: unknown;
|
|
2528
|
+
id: string;
|
|
2529
|
+
name?: string | undefined;
|
|
2530
|
+
familyId?: string | undefined;
|
|
2531
|
+
providerId?: string | undefined;
|
|
2532
|
+
tags?: string[] | undefined;
|
|
2533
|
+
capabilities?: {
|
|
2534
|
+
common?: {
|
|
2535
|
+
maxContextK?: number | undefined;
|
|
2536
|
+
supportsStructuredOutput?: boolean | undefined;
|
|
2537
|
+
supportsWebSearch?: boolean | undefined;
|
|
2538
|
+
} | undefined;
|
|
2539
|
+
params?: {
|
|
2540
|
+
features?: string[] | undefined;
|
|
2541
|
+
fields?: {
|
|
2542
|
+
key: string;
|
|
2543
|
+
title: string;
|
|
2544
|
+
type: "number" | "boolean" | "text" | "select";
|
|
2545
|
+
request: boolean;
|
|
2546
|
+
description?: string | undefined;
|
|
2547
|
+
unit?: string | undefined;
|
|
2548
|
+
values?: (string | number | boolean)[] | undefined;
|
|
2549
|
+
min?: number | undefined;
|
|
2550
|
+
max?: number | undefined;
|
|
2551
|
+
step?: number | undefined;
|
|
2552
|
+
default?: string | number | boolean | undefined;
|
|
2553
|
+
}[] | undefined;
|
|
2554
|
+
} | undefined;
|
|
2555
|
+
input?: {
|
|
2556
|
+
maxImages?: number | undefined;
|
|
2557
|
+
supportsMask?: boolean | undefined;
|
|
2558
|
+
supportsReferenceVideo?: boolean | undefined;
|
|
2559
|
+
supportsStartEnd?: boolean | undefined;
|
|
2560
|
+
} | undefined;
|
|
2561
|
+
output?: {
|
|
2562
|
+
supportsMulti?: boolean | undefined;
|
|
2563
|
+
supportsAudio?: boolean | undefined;
|
|
2564
|
+
} | undefined;
|
|
2565
|
+
} | undefined;
|
|
2566
|
+
}[];
|
|
2567
|
+
updatedAt?: string | undefined;
|
|
2568
|
+
};
|
|
2569
|
+
}>;
|
|
2209
2570
|
/** List available chat models. */
|
|
2210
2571
|
chatModels(): Promise<{
|
|
2211
2572
|
success: false;
|
|
@@ -2269,6 +2630,7 @@ declare class AiClient {
|
|
|
2269
2630
|
imageUpdatedAt: string;
|
|
2270
2631
|
videoUpdatedAt: string;
|
|
2271
2632
|
latestUpdatedAt: string;
|
|
2633
|
+
audioUpdatedAt?: string | undefined;
|
|
2272
2634
|
};
|
|
2273
2635
|
}>;
|
|
2274
2636
|
/**
|
|
@@ -2347,87 +2709,99 @@ type AiModelCapabilityInputKey = (typeof AI_MODEL_CAPABILITY_INPUT_KEYS)[number]
|
|
|
2347
2709
|
declare const AI_MODEL_CAPABILITY_OUTPUT_KEYS: readonly ["supportsMulti", "supportsAudio"];
|
|
2348
2710
|
type AiModelCapabilityOutputKey = (typeof AI_MODEL_CAPABILITY_OUTPUT_KEYS)[number];
|
|
2349
2711
|
|
|
2350
|
-
declare const index$
|
|
2351
|
-
declare const index$
|
|
2352
|
-
declare const index$
|
|
2353
|
-
declare const index$
|
|
2354
|
-
type index$
|
|
2355
|
-
type index$
|
|
2356
|
-
type index$
|
|
2357
|
-
|
|
2358
|
-
type index$
|
|
2359
|
-
type index$
|
|
2360
|
-
type index$
|
|
2361
|
-
|
|
2362
|
-
type index$
|
|
2363
|
-
type index$
|
|
2364
|
-
type index$
|
|
2365
|
-
type index$
|
|
2366
|
-
type index$
|
|
2367
|
-
type index$
|
|
2368
|
-
type index$
|
|
2369
|
-
type index$
|
|
2370
|
-
type index$
|
|
2371
|
-
type index$
|
|
2372
|
-
type index$
|
|
2373
|
-
type index$
|
|
2374
|
-
type index$
|
|
2375
|
-
type index$
|
|
2376
|
-
type index$
|
|
2377
|
-
type index$
|
|
2378
|
-
type index$
|
|
2379
|
-
type index$
|
|
2380
|
-
type index$
|
|
2381
|
-
type index$
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
declare const index$
|
|
2389
|
-
declare const index$
|
|
2390
|
-
declare const index$
|
|
2391
|
-
declare const index$
|
|
2392
|
-
declare const index$
|
|
2393
|
-
declare const index$
|
|
2394
|
-
declare const index$
|
|
2395
|
-
declare const index$
|
|
2396
|
-
declare const index$
|
|
2397
|
-
declare const index$
|
|
2398
|
-
declare const index$
|
|
2399
|
-
declare const index$
|
|
2400
|
-
declare const index$
|
|
2401
|
-
declare const index$
|
|
2402
|
-
declare const index$
|
|
2403
|
-
declare const index$
|
|
2404
|
-
declare const index$
|
|
2405
|
-
declare const index$
|
|
2406
|
-
declare const index$
|
|
2407
|
-
declare const index$
|
|
2408
|
-
declare const index$
|
|
2409
|
-
declare const index$
|
|
2410
|
-
declare const index$
|
|
2411
|
-
declare const index$
|
|
2412
|
-
declare const index$
|
|
2413
|
-
declare const index$
|
|
2414
|
-
declare const index$
|
|
2415
|
-
declare const index$
|
|
2416
|
-
declare const index$
|
|
2417
|
-
declare const index$
|
|
2418
|
-
declare const index$
|
|
2419
|
-
declare const index$
|
|
2420
|
-
declare const index$
|
|
2421
|
-
declare const index$
|
|
2422
|
-
declare const index$
|
|
2423
|
-
declare const index$
|
|
2424
|
-
declare const index$
|
|
2425
|
-
declare const index$
|
|
2426
|
-
declare const index$
|
|
2427
|
-
declare const index$
|
|
2428
|
-
declare const index$
|
|
2429
|
-
declare
|
|
2430
|
-
|
|
2712
|
+
declare const index$6_AI_MODEL_CAPABILITY_INPUT_KEYS: typeof AI_MODEL_CAPABILITY_INPUT_KEYS;
|
|
2713
|
+
declare const index$6_AI_MODEL_CAPABILITY_OUTPUT_KEYS: typeof AI_MODEL_CAPABILITY_OUTPUT_KEYS;
|
|
2714
|
+
declare const index$6_AI_MODEL_TAGS: typeof AI_MODEL_TAGS;
|
|
2715
|
+
declare const index$6_AI_MODEL_TAG_LABELS: typeof AI_MODEL_TAG_LABELS;
|
|
2716
|
+
type index$6_AiAudioOutput = AiAudioOutput;
|
|
2717
|
+
type index$6_AiAudioRequest = AiAudioRequest;
|
|
2718
|
+
type index$6_AiChatCompletionsRequest = AiChatCompletionsRequest;
|
|
2719
|
+
type index$6_AiChatModel = AiChatModel;
|
|
2720
|
+
type index$6_AiChatModelsResponse = AiChatModelsResponse;
|
|
2721
|
+
type index$6_AiChatSessionMetadata = AiChatSessionMetadata;
|
|
2722
|
+
type index$6_AiClient = AiClient;
|
|
2723
|
+
declare const index$6_AiClient: typeof AiClient;
|
|
2724
|
+
type index$6_AiClientMetadata = AiClientMetadata;
|
|
2725
|
+
type index$6_AiFileUploadResponse = AiFileUploadResponse;
|
|
2726
|
+
type index$6_AiImageInputs = AiImageInputs;
|
|
2727
|
+
type index$6_AiImageOutput = AiImageOutput;
|
|
2728
|
+
type index$6_AiImageRequest = AiImageRequest;
|
|
2729
|
+
type index$6_AiMediaInput = AiMediaInput;
|
|
2730
|
+
type index$6_AiModel = AiModel;
|
|
2731
|
+
type index$6_AiModelCapabilities = AiModelCapabilities;
|
|
2732
|
+
type index$6_AiModelCapabilitiesInput = AiModelCapabilitiesInput;
|
|
2733
|
+
type index$6_AiModelCapabilitiesOutput = AiModelCapabilitiesOutput;
|
|
2734
|
+
type index$6_AiModelCapabilityInputKey = AiModelCapabilityInputKey;
|
|
2735
|
+
type index$6_AiModelCapabilityOutputKey = AiModelCapabilityOutputKey;
|
|
2736
|
+
type index$6_AiModelTag = AiModelTag;
|
|
2737
|
+
type index$6_AiModelsResponse = AiModelsResponse;
|
|
2738
|
+
type index$6_AiModelsUpdatedAtData = AiModelsUpdatedAtData;
|
|
2739
|
+
type index$6_AiModelsUpdatedAtResponse = AiModelsUpdatedAtResponse;
|
|
2740
|
+
type index$6_AiProviderTemplate = AiProviderTemplate;
|
|
2741
|
+
type index$6_AiProviderTemplateModel = AiProviderTemplateModel;
|
|
2742
|
+
type index$6_AiProviderTemplatesResponse = AiProviderTemplatesResponse;
|
|
2743
|
+
type index$6_AiResponsesRequest = AiResponsesRequest;
|
|
2744
|
+
type index$6_AiTaskCancelResponse = AiTaskCancelResponse;
|
|
2745
|
+
type index$6_AiTaskCreatedResponse = AiTaskCreatedResponse;
|
|
2746
|
+
type index$6_AiTaskResponse = AiTaskResponse;
|
|
2747
|
+
type index$6_AiVideoInputs = AiVideoInputs;
|
|
2748
|
+
type index$6_AiVideoOutput = AiVideoOutput;
|
|
2749
|
+
type index$6_AiVideoRequest = AiVideoRequest;
|
|
2750
|
+
declare const index$6_aiAudioOutputSchema: typeof aiAudioOutputSchema;
|
|
2751
|
+
declare const index$6_aiAudioRequestSchema: typeof aiAudioRequestSchema;
|
|
2752
|
+
declare const index$6_aiChatCompletionsRequestSchema: typeof aiChatCompletionsRequestSchema;
|
|
2753
|
+
declare const index$6_aiChatModelSchema: typeof aiChatModelSchema;
|
|
2754
|
+
declare const index$6_aiChatModelsPayloadSchema: typeof aiChatModelsPayloadSchema;
|
|
2755
|
+
declare const index$6_aiChatModelsResponseSchema: typeof aiChatModelsResponseSchema;
|
|
2756
|
+
declare const index$6_aiChatModelsSuccessSchema: typeof aiChatModelsSuccessSchema;
|
|
2757
|
+
declare const index$6_aiChatSessionMetadataSchema: typeof aiChatSessionMetadataSchema;
|
|
2758
|
+
declare const index$6_aiClientMetadataSchema: typeof aiClientMetadataSchema;
|
|
2759
|
+
declare const index$6_aiEndpoints: typeof aiEndpoints;
|
|
2760
|
+
declare const index$6_aiErrorResponseSchema: typeof aiErrorResponseSchema;
|
|
2761
|
+
declare const index$6_aiImageInputsSchema: typeof aiImageInputsSchema;
|
|
2762
|
+
declare const index$6_aiImageOutputSchema: typeof aiImageOutputSchema;
|
|
2763
|
+
declare const index$6_aiImageRequestSchema: typeof aiImageRequestSchema;
|
|
2764
|
+
declare const index$6_aiMediaInputSchema: typeof aiMediaInputSchema;
|
|
2765
|
+
declare const index$6_aiModelCapabilitiesInputSchema: typeof aiModelCapabilitiesInputSchema;
|
|
2766
|
+
declare const index$6_aiModelCapabilitiesOutputSchema: typeof aiModelCapabilitiesOutputSchema;
|
|
2767
|
+
declare const index$6_aiModelCapabilitiesSchema: typeof aiModelCapabilitiesSchema;
|
|
2768
|
+
declare const index$6_aiModelCapabilityCommonSchema: typeof aiModelCapabilityCommonSchema;
|
|
2769
|
+
declare const index$6_aiModelParameterFieldSchema: typeof aiModelParameterFieldSchema;
|
|
2770
|
+
declare const index$6_aiModelParamsSchema: typeof aiModelParamsSchema;
|
|
2771
|
+
declare const index$6_aiModelSchema: typeof aiModelSchema;
|
|
2772
|
+
declare const index$6_aiModelsPayloadSchema: typeof aiModelsPayloadSchema;
|
|
2773
|
+
declare const index$6_aiModelsRequestSchema: typeof aiModelsRequestSchema;
|
|
2774
|
+
declare const index$6_aiModelsResponseSchema: typeof aiModelsResponseSchema;
|
|
2775
|
+
declare const index$6_aiModelsSuccessSchema: typeof aiModelsSuccessSchema;
|
|
2776
|
+
declare const index$6_aiModelsUpdatedAtDataSchema: typeof aiModelsUpdatedAtDataSchema;
|
|
2777
|
+
declare const index$6_aiModelsUpdatedAtResponseSchema: typeof aiModelsUpdatedAtResponseSchema;
|
|
2778
|
+
declare const index$6_aiModelsUpdatedAtSuccessSchema: typeof aiModelsUpdatedAtSuccessSchema;
|
|
2779
|
+
declare const index$6_aiProviderTemplateModelSchema: typeof aiProviderTemplateModelSchema;
|
|
2780
|
+
declare const index$6_aiProviderTemplateSchema: typeof aiProviderTemplateSchema;
|
|
2781
|
+
declare const index$6_aiProviderTemplatesPayloadSchema: typeof aiProviderTemplatesPayloadSchema;
|
|
2782
|
+
declare const index$6_aiProviderTemplatesRequestSchema: typeof aiProviderTemplatesRequestSchema;
|
|
2783
|
+
declare const index$6_aiProviderTemplatesResponseSchema: typeof aiProviderTemplatesResponseSchema;
|
|
2784
|
+
declare const index$6_aiProviderTemplatesSuccessSchema: typeof aiProviderTemplatesSuccessSchema;
|
|
2785
|
+
declare const index$6_aiResponsesRequestSchema: typeof aiResponsesRequestSchema;
|
|
2786
|
+
declare const index$6_aiTaskCancelDataSchema: typeof aiTaskCancelDataSchema;
|
|
2787
|
+
declare const index$6_aiTaskCancelRequestSchema: typeof aiTaskCancelRequestSchema;
|
|
2788
|
+
declare const index$6_aiTaskCancelResponseSchema: typeof aiTaskCancelResponseSchema;
|
|
2789
|
+
declare const index$6_aiTaskCancelSuccessSchema: typeof aiTaskCancelSuccessSchema;
|
|
2790
|
+
declare const index$6_aiTaskCreatedDataSchema: typeof aiTaskCreatedDataSchema;
|
|
2791
|
+
declare const index$6_aiTaskCreatedResponseSchema: typeof aiTaskCreatedResponseSchema;
|
|
2792
|
+
declare const index$6_aiTaskCreatedSuccessSchema: typeof aiTaskCreatedSuccessSchema;
|
|
2793
|
+
declare const index$6_aiTaskDataSchema: typeof aiTaskDataSchema;
|
|
2794
|
+
declare const index$6_aiTaskErrorSchema: typeof aiTaskErrorSchema;
|
|
2795
|
+
declare const index$6_aiTaskRequestSchema: typeof aiTaskRequestSchema;
|
|
2796
|
+
declare const index$6_aiTaskResponseSchema: typeof aiTaskResponseSchema;
|
|
2797
|
+
declare const index$6_aiTaskResultTypeSchema: typeof aiTaskResultTypeSchema;
|
|
2798
|
+
declare const index$6_aiTaskStatusSchema: typeof aiTaskStatusSchema;
|
|
2799
|
+
declare const index$6_aiTaskSuccessSchema: typeof aiTaskSuccessSchema;
|
|
2800
|
+
declare const index$6_aiVideoInputsSchema: typeof aiVideoInputsSchema;
|
|
2801
|
+
declare const index$6_aiVideoOutputSchema: typeof aiVideoOutputSchema;
|
|
2802
|
+
declare const index$6_aiVideoRequestSchema: typeof aiVideoRequestSchema;
|
|
2803
|
+
declare namespace index$6 {
|
|
2804
|
+
export { index$6_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$6_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$6_AI_MODEL_TAGS as AI_MODEL_TAGS, index$6_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$6_AiAudioOutput as AiAudioOutput, type index$6_AiAudioRequest as AiAudioRequest, type index$6_AiChatCompletionsRequest as AiChatCompletionsRequest, type index$6_AiChatModel as AiChatModel, type index$6_AiChatModelsResponse as AiChatModelsResponse, type index$6_AiChatSessionMetadata as AiChatSessionMetadata, index$6_AiClient as AiClient, type index$6_AiClientMetadata as AiClientMetadata, type index$6_AiFileUploadResponse as AiFileUploadResponse, type index$6_AiImageInputs as AiImageInputs, type index$6_AiImageOutput as AiImageOutput, type index$6_AiImageRequest as AiImageRequest, type index$6_AiMediaInput as AiMediaInput, type index$6_AiModel as AiModel, type index$6_AiModelCapabilities as AiModelCapabilities, type index$6_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$6_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$6_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$6_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$6_AiModelTag as AiModelTag, type index$6_AiModelsResponse as AiModelsResponse, type index$6_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$6_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$6_AiProviderTemplate as AiProviderTemplate, type index$6_AiProviderTemplateModel as AiProviderTemplateModel, type index$6_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$6_AiResponsesRequest as AiResponsesRequest, type index$6_AiTaskCancelResponse as AiTaskCancelResponse, type index$6_AiTaskCreatedResponse as AiTaskCreatedResponse, type index$6_AiTaskResponse as AiTaskResponse, type index$6_AiVideoInputs as AiVideoInputs, type index$6_AiVideoOutput as AiVideoOutput, type index$6_AiVideoRequest as AiVideoRequest, index$6_aiAudioOutputSchema as aiAudioOutputSchema, index$6_aiAudioRequestSchema as aiAudioRequestSchema, index$6_aiChatCompletionsRequestSchema as aiChatCompletionsRequestSchema, index$6_aiChatModelSchema as aiChatModelSchema, index$6_aiChatModelsPayloadSchema as aiChatModelsPayloadSchema, index$6_aiChatModelsResponseSchema as aiChatModelsResponseSchema, index$6_aiChatModelsSuccessSchema as aiChatModelsSuccessSchema, index$6_aiChatSessionMetadataSchema as aiChatSessionMetadataSchema, index$6_aiClientMetadataSchema as aiClientMetadataSchema, index$6_aiEndpoints as aiEndpoints, index$6_aiErrorResponseSchema as aiErrorResponseSchema, index$6_aiImageInputsSchema as aiImageInputsSchema, index$6_aiImageOutputSchema as aiImageOutputSchema, index$6_aiImageRequestSchema as aiImageRequestSchema, index$6_aiMediaInputSchema as aiMediaInputSchema, index$6_aiModelCapabilitiesInputSchema as aiModelCapabilitiesInputSchema, index$6_aiModelCapabilitiesOutputSchema as aiModelCapabilitiesOutputSchema, index$6_aiModelCapabilitiesSchema as aiModelCapabilitiesSchema, index$6_aiModelCapabilityCommonSchema as aiModelCapabilityCommonSchema, index$6_aiModelParameterFieldSchema as aiModelParameterFieldSchema, index$6_aiModelParamsSchema as aiModelParamsSchema, index$6_aiModelSchema as aiModelSchema, index$6_aiModelsPayloadSchema as aiModelsPayloadSchema, index$6_aiModelsRequestSchema as aiModelsRequestSchema, index$6_aiModelsResponseSchema as aiModelsResponseSchema, index$6_aiModelsSuccessSchema as aiModelsSuccessSchema, index$6_aiModelsUpdatedAtDataSchema as aiModelsUpdatedAtDataSchema, index$6_aiModelsUpdatedAtResponseSchema as aiModelsUpdatedAtResponseSchema, index$6_aiModelsUpdatedAtSuccessSchema as aiModelsUpdatedAtSuccessSchema, index$6_aiProviderTemplateModelSchema as aiProviderTemplateModelSchema, index$6_aiProviderTemplateSchema as aiProviderTemplateSchema, index$6_aiProviderTemplatesPayloadSchema as aiProviderTemplatesPayloadSchema, index$6_aiProviderTemplatesRequestSchema as aiProviderTemplatesRequestSchema, index$6_aiProviderTemplatesResponseSchema as aiProviderTemplatesResponseSchema, index$6_aiProviderTemplatesSuccessSchema as aiProviderTemplatesSuccessSchema, index$6_aiResponsesRequestSchema as aiResponsesRequestSchema, index$6_aiTaskCancelDataSchema as aiTaskCancelDataSchema, index$6_aiTaskCancelRequestSchema as aiTaskCancelRequestSchema, index$6_aiTaskCancelResponseSchema as aiTaskCancelResponseSchema, index$6_aiTaskCancelSuccessSchema as aiTaskCancelSuccessSchema, index$6_aiTaskCreatedDataSchema as aiTaskCreatedDataSchema, index$6_aiTaskCreatedResponseSchema as aiTaskCreatedResponseSchema, index$6_aiTaskCreatedSuccessSchema as aiTaskCreatedSuccessSchema, index$6_aiTaskDataSchema as aiTaskDataSchema, index$6_aiTaskErrorSchema as aiTaskErrorSchema, index$6_aiTaskRequestSchema as aiTaskRequestSchema, index$6_aiTaskResponseSchema as aiTaskResponseSchema, index$6_aiTaskResultTypeSchema as aiTaskResultTypeSchema, index$6_aiTaskStatusSchema as aiTaskStatusSchema, index$6_aiTaskSuccessSchema as aiTaskSuccessSchema, index$6_aiVideoInputsSchema as aiVideoInputsSchema, index$6_aiVideoOutputSchema as aiVideoOutputSchema, index$6_aiVideoRequestSchema as aiVideoRequestSchema };
|
|
2431
2805
|
}
|
|
2432
2806
|
|
|
2433
2807
|
declare const aiToolsEndpoints: {
|
|
@@ -2587,23 +2961,23 @@ declare class AiToolsClient {
|
|
|
2587
2961
|
}>;
|
|
2588
2962
|
}
|
|
2589
2963
|
|
|
2590
|
-
type index$
|
|
2591
|
-
declare const index$
|
|
2592
|
-
type index$
|
|
2593
|
-
type index$
|
|
2594
|
-
type index$
|
|
2595
|
-
type index$
|
|
2596
|
-
type index$
|
|
2597
|
-
type index$
|
|
2598
|
-
declare const index$
|
|
2599
|
-
declare const index$
|
|
2600
|
-
declare const index$
|
|
2601
|
-
declare const index$
|
|
2602
|
-
declare const index$
|
|
2603
|
-
declare const index$
|
|
2604
|
-
declare const index$
|
|
2605
|
-
declare namespace index$
|
|
2606
|
-
export { index$
|
|
2964
|
+
type index$5_AiToolsClient = AiToolsClient;
|
|
2965
|
+
declare const index$5_AiToolsClient: typeof AiToolsClient;
|
|
2966
|
+
type index$5_AnalyzeSkillsRequest = AnalyzeSkillsRequest;
|
|
2967
|
+
type index$5_AnalyzeSkillsResponse = AnalyzeSkillsResponse;
|
|
2968
|
+
type index$5_RecommendActionsRequest = RecommendActionsRequest;
|
|
2969
|
+
type index$5_RecommendActionsResponse = RecommendActionsResponse;
|
|
2970
|
+
type index$5_SummarizeRequest = SummarizeRequest;
|
|
2971
|
+
type index$5_SummarizeResponse = SummarizeResponse;
|
|
2972
|
+
declare const index$5_aiToolsEndpoints: typeof aiToolsEndpoints;
|
|
2973
|
+
declare const index$5_analyzeSkillsRequestSchema: typeof analyzeSkillsRequestSchema;
|
|
2974
|
+
declare const index$5_analyzeSkillsResponseSchema: typeof analyzeSkillsResponseSchema;
|
|
2975
|
+
declare const index$5_recommendActionsRequestSchema: typeof recommendActionsRequestSchema;
|
|
2976
|
+
declare const index$5_recommendActionsResponseSchema: typeof recommendActionsResponseSchema;
|
|
2977
|
+
declare const index$5_summarizeRequestSchema: typeof summarizeRequestSchema;
|
|
2978
|
+
declare const index$5_summarizeResponseSchema: typeof summarizeResponseSchema;
|
|
2979
|
+
declare namespace index$5 {
|
|
2980
|
+
export { index$5_AiToolsClient as AiToolsClient, type index$5_AnalyzeSkillsRequest as AnalyzeSkillsRequest, type index$5_AnalyzeSkillsResponse as AnalyzeSkillsResponse, type index$5_RecommendActionsRequest as RecommendActionsRequest, type index$5_RecommendActionsResponse as RecommendActionsResponse, type index$5_SummarizeRequest as SummarizeRequest, type index$5_SummarizeResponse as SummarizeResponse, index$5_aiToolsEndpoints as aiToolsEndpoints, index$5_analyzeSkillsRequestSchema as analyzeSkillsRequestSchema, index$5_analyzeSkillsResponseSchema as analyzeSkillsResponseSchema, index$5_recommendActionsRequestSchema as recommendActionsRequestSchema, index$5_recommendActionsResponseSchema as recommendActionsResponseSchema, index$5_summarizeRequestSchema as summarizeRequestSchema, index$5_summarizeResponseSchema as summarizeResponseSchema };
|
|
2607
2981
|
}
|
|
2608
2982
|
|
|
2609
2983
|
declare const authEndpoints: {
|
|
@@ -2732,28 +3106,28 @@ type AuthExchangeResponse = z.infer<typeof authExchangeResponseSchema>;
|
|
|
2732
3106
|
type AuthLogoutRequest = z.infer<typeof authLogoutRequestSchema>;
|
|
2733
3107
|
type AuthLogoutResponse = z.infer<typeof authLogoutResponseSchema>;
|
|
2734
3108
|
|
|
2735
|
-
type index$
|
|
2736
|
-
declare const index$
|
|
2737
|
-
type index$
|
|
2738
|
-
type index$
|
|
2739
|
-
type index$
|
|
2740
|
-
type index$
|
|
2741
|
-
type index$
|
|
2742
|
-
type index$
|
|
2743
|
-
type index$
|
|
2744
|
-
type index$
|
|
2745
|
-
declare const index$
|
|
2746
|
-
declare const index$
|
|
2747
|
-
declare const index$
|
|
2748
|
-
declare const index$
|
|
2749
|
-
declare const index$
|
|
2750
|
-
declare const index$
|
|
2751
|
-
declare const index$
|
|
2752
|
-
declare const index$
|
|
2753
|
-
declare const index$
|
|
2754
|
-
declare const index$
|
|
2755
|
-
declare namespace index$
|
|
2756
|
-
export { index$
|
|
3109
|
+
type index$4_AuthClient = AuthClient;
|
|
3110
|
+
declare const index$4_AuthClient: typeof AuthClient;
|
|
3111
|
+
type index$4_AuthExchangeRequest = AuthExchangeRequest;
|
|
3112
|
+
type index$4_AuthExchangeResponse = AuthExchangeResponse;
|
|
3113
|
+
type index$4_AuthLogoutRequest = AuthLogoutRequest;
|
|
3114
|
+
type index$4_AuthLogoutResponse = AuthLogoutResponse;
|
|
3115
|
+
type index$4_AuthRefreshError = AuthRefreshError;
|
|
3116
|
+
type index$4_AuthRefreshRequest = AuthRefreshRequest;
|
|
3117
|
+
type index$4_AuthRefreshResponse = AuthRefreshResponse;
|
|
3118
|
+
type index$4_AuthRefreshSuccess = AuthRefreshSuccess;
|
|
3119
|
+
declare const index$4_authEndpoints: typeof authEndpoints;
|
|
3120
|
+
declare const index$4_authExchangeRequestSchema: typeof authExchangeRequestSchema;
|
|
3121
|
+
declare const index$4_authExchangeResponseSchema: typeof authExchangeResponseSchema;
|
|
3122
|
+
declare const index$4_authLogoutRequestSchema: typeof authLogoutRequestSchema;
|
|
3123
|
+
declare const index$4_authLogoutResponseSchema: typeof authLogoutResponseSchema;
|
|
3124
|
+
declare const index$4_authRefreshErrorSchema: typeof authRefreshErrorSchema;
|
|
3125
|
+
declare const index$4_authRefreshRequestSchema: typeof authRefreshRequestSchema;
|
|
3126
|
+
declare const index$4_authRefreshResponseSchema: typeof authRefreshResponseSchema;
|
|
3127
|
+
declare const index$4_authRefreshSuccessSchema: typeof authRefreshSuccessSchema;
|
|
3128
|
+
declare const index$4_authRefreshUserSchema: typeof authRefreshUserSchema;
|
|
3129
|
+
declare namespace index$4 {
|
|
3130
|
+
export { index$4_AuthClient as AuthClient, type index$4_AuthExchangeRequest as AuthExchangeRequest, type index$4_AuthExchangeResponse as AuthExchangeResponse, type index$4_AuthLogoutRequest as AuthLogoutRequest, type index$4_AuthLogoutResponse as AuthLogoutResponse, type index$4_AuthRefreshError as AuthRefreshError, type index$4_AuthRefreshRequest as AuthRefreshRequest, type index$4_AuthRefreshResponse as AuthRefreshResponse, type index$4_AuthRefreshSuccess as AuthRefreshSuccess, index$4_authEndpoints as authEndpoints, index$4_authExchangeRequestSchema as authExchangeRequestSchema, index$4_authExchangeResponseSchema as authExchangeResponseSchema, index$4_authLogoutRequestSchema as authLogoutRequestSchema, index$4_authLogoutResponseSchema as authLogoutResponseSchema, index$4_authRefreshErrorSchema as authRefreshErrorSchema, index$4_authRefreshRequestSchema as authRefreshRequestSchema, index$4_authRefreshResponseSchema as authRefreshResponseSchema, index$4_authRefreshSuccessSchema as authRefreshSuccessSchema, index$4_authRefreshUserSchema as authRefreshUserSchema };
|
|
2757
3131
|
}
|
|
2758
3132
|
|
|
2759
3133
|
declare const auxiliaryEndpoints: {
|
|
@@ -2876,18 +3250,18 @@ declare class AuxiliaryClient {
|
|
|
2876
3250
|
}>;
|
|
2877
3251
|
}
|
|
2878
3252
|
|
|
2879
|
-
type index$
|
|
2880
|
-
declare const index$
|
|
2881
|
-
type index$
|
|
2882
|
-
type index$
|
|
2883
|
-
type index$
|
|
2884
|
-
type index$
|
|
2885
|
-
declare const index$
|
|
2886
|
-
declare const index$
|
|
2887
|
-
declare const index$
|
|
2888
|
-
declare const index$
|
|
2889
|
-
declare namespace index$
|
|
2890
|
-
export { index$
|
|
3253
|
+
type index$3_AuxiliaryClient = AuxiliaryClient;
|
|
3254
|
+
declare const index$3_AuxiliaryClient: typeof AuxiliaryClient;
|
|
3255
|
+
type index$3_AuxiliaryInferRequest = AuxiliaryInferRequest;
|
|
3256
|
+
type index$3_AuxiliaryInferResponse = AuxiliaryInferResponse;
|
|
3257
|
+
type index$3_AuxiliaryQuota = AuxiliaryQuota;
|
|
3258
|
+
type index$3_AuxiliaryQuotaResponse = AuxiliaryQuotaResponse;
|
|
3259
|
+
declare const index$3_auxiliaryEndpoints: typeof auxiliaryEndpoints;
|
|
3260
|
+
declare const index$3_auxiliaryInferRequestSchema: typeof auxiliaryInferRequestSchema;
|
|
3261
|
+
declare const index$3_auxiliaryInferResponseSchema: typeof auxiliaryInferResponseSchema;
|
|
3262
|
+
declare const index$3_auxiliaryQuotaResponseSchema: typeof auxiliaryQuotaResponseSchema;
|
|
3263
|
+
declare namespace index$3 {
|
|
3264
|
+
export { index$3_AuxiliaryClient as AuxiliaryClient, type index$3_AuxiliaryInferRequest as AuxiliaryInferRequest, type index$3_AuxiliaryInferResponse as AuxiliaryInferResponse, type index$3_AuxiliaryQuota as AuxiliaryQuota, type index$3_AuxiliaryQuotaResponse as AuxiliaryQuotaResponse, index$3_auxiliaryEndpoints as auxiliaryEndpoints, index$3_auxiliaryInferRequestSchema as auxiliaryInferRequestSchema, index$3_auxiliaryInferResponseSchema as auxiliaryInferResponseSchema, index$3_auxiliaryQuotaResponseSchema as auxiliaryQuotaResponseSchema };
|
|
2891
3265
|
}
|
|
2892
3266
|
|
|
2893
3267
|
/** Feedback API endpoints. */
|
|
@@ -3234,37 +3608,451 @@ declare class FeedbackClient {
|
|
|
3234
3608
|
detail(feedbackId: string): Promise<FeedbackDetailResponse>;
|
|
3235
3609
|
}
|
|
3236
3610
|
|
|
3237
|
-
type index$
|
|
3238
|
-
type index$
|
|
3239
|
-
declare const index$
|
|
3240
|
-
type index$
|
|
3241
|
-
type index$
|
|
3242
|
-
type index$
|
|
3243
|
-
type index$
|
|
3244
|
-
type index$
|
|
3245
|
-
type index$
|
|
3246
|
-
type index$
|
|
3247
|
-
type index$
|
|
3248
|
-
type index$
|
|
3249
|
-
type index$
|
|
3250
|
-
type index$
|
|
3251
|
-
type index$
|
|
3252
|
-
declare const index$
|
|
3253
|
-
declare const index$
|
|
3254
|
-
declare const index$
|
|
3255
|
-
declare const index$
|
|
3256
|
-
declare const index$
|
|
3257
|
-
declare const index$
|
|
3258
|
-
declare const index$
|
|
3259
|
-
declare const index$
|
|
3260
|
-
declare const index$
|
|
3261
|
-
declare const index$
|
|
3262
|
-
declare const index$
|
|
3263
|
-
declare const index$
|
|
3264
|
-
declare const index$
|
|
3265
|
-
declare const index$
|
|
3611
|
+
type index$2_FeedbackAttachmentResponse = FeedbackAttachmentResponse;
|
|
3612
|
+
type index$2_FeedbackClient = FeedbackClient;
|
|
3613
|
+
declare const index$2_FeedbackClient: typeof FeedbackClient;
|
|
3614
|
+
type index$2_FeedbackDetailPayload = FeedbackDetailPayload;
|
|
3615
|
+
type index$2_FeedbackDetailRequest = FeedbackDetailRequest;
|
|
3616
|
+
type index$2_FeedbackDetailResponse = FeedbackDetailResponse;
|
|
3617
|
+
type index$2_FeedbackListPayload = FeedbackListPayload;
|
|
3618
|
+
type index$2_FeedbackListRequest = FeedbackListRequest;
|
|
3619
|
+
type index$2_FeedbackListResponse = FeedbackListResponse;
|
|
3620
|
+
type index$2_FeedbackSaasStatus = FeedbackSaasStatus;
|
|
3621
|
+
type index$2_FeedbackSource = FeedbackSource;
|
|
3622
|
+
type index$2_FeedbackSubmitError = FeedbackSubmitError;
|
|
3623
|
+
type index$2_FeedbackSubmitRequest = FeedbackSubmitRequest;
|
|
3624
|
+
type index$2_FeedbackSubmitResponse = FeedbackSubmitResponse;
|
|
3625
|
+
type index$2_FeedbackType = FeedbackType;
|
|
3626
|
+
declare const index$2_feedbackDetailPayloadSchema: typeof feedbackDetailPayloadSchema;
|
|
3627
|
+
declare const index$2_feedbackDetailRequestSchema: typeof feedbackDetailRequestSchema;
|
|
3628
|
+
declare const index$2_feedbackDetailResponseSchema: typeof feedbackDetailResponseSchema;
|
|
3629
|
+
declare const index$2_feedbackEndpoints: typeof feedbackEndpoints;
|
|
3630
|
+
declare const index$2_feedbackItemSchema: typeof feedbackItemSchema;
|
|
3631
|
+
declare const index$2_feedbackListPayloadSchema: typeof feedbackListPayloadSchema;
|
|
3632
|
+
declare const index$2_feedbackListRequestSchema: typeof feedbackListRequestSchema;
|
|
3633
|
+
declare const index$2_feedbackListResponseSchema: typeof feedbackListResponseSchema;
|
|
3634
|
+
declare const index$2_feedbackSaasStatusSchema: typeof feedbackSaasStatusSchema;
|
|
3635
|
+
declare const index$2_feedbackSourceSchema: typeof feedbackSourceSchema;
|
|
3636
|
+
declare const index$2_feedbackSubmitErrorSchema: typeof feedbackSubmitErrorSchema;
|
|
3637
|
+
declare const index$2_feedbackSubmitRequestSchema: typeof feedbackSubmitRequestSchema;
|
|
3638
|
+
declare const index$2_feedbackSubmitResponseSchema: typeof feedbackSubmitResponseSchema;
|
|
3639
|
+
declare const index$2_feedbackTypeSchema: typeof feedbackTypeSchema;
|
|
3640
|
+
declare namespace index$2 {
|
|
3641
|
+
export { type index$2_FeedbackAttachmentResponse as FeedbackAttachmentResponse, index$2_FeedbackClient as FeedbackClient, type index$2_FeedbackDetailPayload as FeedbackDetailPayload, type index$2_FeedbackDetailRequest as FeedbackDetailRequest, type index$2_FeedbackDetailResponse as FeedbackDetailResponse, type index$2_FeedbackListPayload as FeedbackListPayload, type index$2_FeedbackListRequest as FeedbackListRequest, type index$2_FeedbackListResponse as FeedbackListResponse, type index$2_FeedbackSaasStatus as FeedbackSaasStatus, type index$2_FeedbackSource as FeedbackSource, type index$2_FeedbackSubmitError as FeedbackSubmitError, type index$2_FeedbackSubmitRequest as FeedbackSubmitRequest, type index$2_FeedbackSubmitResponse as FeedbackSubmitResponse, type index$2_FeedbackType as FeedbackType, index$2_feedbackDetailPayloadSchema as feedbackDetailPayloadSchema, index$2_feedbackDetailRequestSchema as feedbackDetailRequestSchema, index$2_feedbackDetailResponseSchema as feedbackDetailResponseSchema, index$2_feedbackEndpoints as feedbackEndpoints, index$2_feedbackItemSchema as feedbackItemSchema, index$2_feedbackListPayloadSchema as feedbackListPayloadSchema, index$2_feedbackListRequestSchema as feedbackListRequestSchema, index$2_feedbackListResponseSchema as feedbackListResponseSchema, index$2_feedbackSaasStatusSchema as feedbackSaasStatusSchema, index$2_feedbackSourceSchema as feedbackSourceSchema, index$2_feedbackSubmitErrorSchema as feedbackSubmitErrorSchema, index$2_feedbackSubmitRequestSchema as feedbackSubmitRequestSchema, index$2_feedbackSubmitResponseSchema as feedbackSubmitResponseSchema, index$2_feedbackTypeSchema as feedbackTypeSchema };
|
|
3642
|
+
}
|
|
3643
|
+
|
|
3644
|
+
/** Skill market API endpoints. */
|
|
3645
|
+
declare const skillsEndpoints: {
|
|
3646
|
+
/** List visible skills for the current actor. */
|
|
3647
|
+
readonly list: Endpoint<{
|
|
3648
|
+
page: number;
|
|
3649
|
+
pageSize: number;
|
|
3650
|
+
keyword?: string | undefined;
|
|
3651
|
+
type?: "other" | "development" | "automation" | "ai" | "crawler" | "ops" | "writing" | "design" | undefined;
|
|
3652
|
+
}, {
|
|
3653
|
+
items: {
|
|
3654
|
+
id: string;
|
|
3655
|
+
slug: string;
|
|
3656
|
+
name: string;
|
|
3657
|
+
summary: string | null;
|
|
3658
|
+
type: "other" | "development" | "automation" | "ai" | "crawler" | "ops" | "writing" | "design";
|
|
3659
|
+
tags: string[];
|
|
3660
|
+
source: "official_upload" | "user_upload";
|
|
3661
|
+
visibility: "public" | "private";
|
|
3662
|
+
status: "active" | "disabled";
|
|
3663
|
+
owner: {
|
|
3664
|
+
id: string;
|
|
3665
|
+
name: string | null;
|
|
3666
|
+
email: string | null;
|
|
3667
|
+
} | null;
|
|
3668
|
+
latestVersion: string | null;
|
|
3669
|
+
downloadCount: number;
|
|
3670
|
+
currentVersion: {
|
|
3671
|
+
id: string;
|
|
3672
|
+
version: string;
|
|
3673
|
+
archiveFormat: "skill" | "zip" | "tar";
|
|
3674
|
+
fileName: string;
|
|
3675
|
+
fileSize: number;
|
|
3676
|
+
changelog: string | null;
|
|
3677
|
+
createdAt: string;
|
|
3678
|
+
} | null;
|
|
3679
|
+
createdAt: string;
|
|
3680
|
+
updatedAt: string;
|
|
3681
|
+
}[];
|
|
3682
|
+
page: number;
|
|
3683
|
+
pageSize: number;
|
|
3684
|
+
total: number;
|
|
3685
|
+
}>;
|
|
3686
|
+
/** Fetch detail for one visible skill. */
|
|
3687
|
+
readonly detail: (skillId: string) => Endpoint<void, {
|
|
3688
|
+
skill: {
|
|
3689
|
+
id: string;
|
|
3690
|
+
slug: string;
|
|
3691
|
+
name: string;
|
|
3692
|
+
summary: string | null;
|
|
3693
|
+
type: "other" | "development" | "automation" | "ai" | "crawler" | "ops" | "writing" | "design";
|
|
3694
|
+
tags: string[];
|
|
3695
|
+
source: "official_upload" | "user_upload";
|
|
3696
|
+
visibility: "public" | "private";
|
|
3697
|
+
status: "active" | "disabled";
|
|
3698
|
+
owner: {
|
|
3699
|
+
id: string;
|
|
3700
|
+
name: string | null;
|
|
3701
|
+
email: string | null;
|
|
3702
|
+
} | null;
|
|
3703
|
+
latestVersion: string | null;
|
|
3704
|
+
downloadCount: number;
|
|
3705
|
+
currentVersion: {
|
|
3706
|
+
id: string;
|
|
3707
|
+
version: string;
|
|
3708
|
+
archiveFormat: "skill" | "zip" | "tar";
|
|
3709
|
+
fileName: string;
|
|
3710
|
+
fileSize: number;
|
|
3711
|
+
changelog: string | null;
|
|
3712
|
+
createdAt: string;
|
|
3713
|
+
} | null;
|
|
3714
|
+
createdAt: string;
|
|
3715
|
+
updatedAt: string;
|
|
3716
|
+
manifestJson: unknown;
|
|
3717
|
+
readmeMarkdown: string | null;
|
|
3718
|
+
versions: {
|
|
3719
|
+
id: string;
|
|
3720
|
+
version: string;
|
|
3721
|
+
archiveFormat: "skill" | "zip" | "tar";
|
|
3722
|
+
fileName: string;
|
|
3723
|
+
fileSize: number;
|
|
3724
|
+
changelog: string | null;
|
|
3725
|
+
createdAt: string;
|
|
3726
|
+
}[];
|
|
3727
|
+
};
|
|
3728
|
+
}>;
|
|
3729
|
+
};
|
|
3730
|
+
|
|
3731
|
+
/** Supported skill type values. */
|
|
3732
|
+
declare const skillTypeSchema: z.ZodEnum<{
|
|
3733
|
+
other: "other";
|
|
3734
|
+
development: "development";
|
|
3735
|
+
automation: "automation";
|
|
3736
|
+
ai: "ai";
|
|
3737
|
+
crawler: "crawler";
|
|
3738
|
+
ops: "ops";
|
|
3739
|
+
writing: "writing";
|
|
3740
|
+
design: "design";
|
|
3741
|
+
}>;
|
|
3742
|
+
/** Supported skill source values. */
|
|
3743
|
+
declare const skillSourceSchema: z.ZodEnum<{
|
|
3744
|
+
official_upload: "official_upload";
|
|
3745
|
+
user_upload: "user_upload";
|
|
3746
|
+
}>;
|
|
3747
|
+
/** Supported skill visibility values. */
|
|
3748
|
+
declare const skillVisibilitySchema: z.ZodEnum<{
|
|
3749
|
+
public: "public";
|
|
3750
|
+
private: "private";
|
|
3751
|
+
}>;
|
|
3752
|
+
/** Supported skill status values. */
|
|
3753
|
+
declare const skillStatusSchema: z.ZodEnum<{
|
|
3754
|
+
active: "active";
|
|
3755
|
+
disabled: "disabled";
|
|
3756
|
+
}>;
|
|
3757
|
+
/** Supported skill archive format values. */
|
|
3758
|
+
declare const skillArchiveFormatSchema: z.ZodEnum<{
|
|
3759
|
+
skill: "skill";
|
|
3760
|
+
zip: "zip";
|
|
3761
|
+
tar: "tar";
|
|
3762
|
+
}>;
|
|
3763
|
+
/** Skill owner summary schema. */
|
|
3764
|
+
declare const skillOwnerSummarySchema: z.ZodObject<{
|
|
3765
|
+
id: z.ZodString;
|
|
3766
|
+
name: z.ZodNullable<z.ZodString>;
|
|
3767
|
+
email: z.ZodNullable<z.ZodString>;
|
|
3768
|
+
}, z.core.$strip>;
|
|
3769
|
+
/** Skill version summary schema. */
|
|
3770
|
+
declare const skillVersionSummarySchema: z.ZodObject<{
|
|
3771
|
+
id: z.ZodString;
|
|
3772
|
+
version: z.ZodString;
|
|
3773
|
+
archiveFormat: z.ZodEnum<{
|
|
3774
|
+
skill: "skill";
|
|
3775
|
+
zip: "zip";
|
|
3776
|
+
tar: "tar";
|
|
3777
|
+
}>;
|
|
3778
|
+
fileName: z.ZodString;
|
|
3779
|
+
fileSize: z.ZodNumber;
|
|
3780
|
+
changelog: z.ZodNullable<z.ZodString>;
|
|
3781
|
+
createdAt: z.ZodString;
|
|
3782
|
+
}, z.core.$strip>;
|
|
3783
|
+
/** Skill list item schema. */
|
|
3784
|
+
declare const skillListItemSchema: z.ZodObject<{
|
|
3785
|
+
id: z.ZodString;
|
|
3786
|
+
slug: z.ZodString;
|
|
3787
|
+
name: z.ZodString;
|
|
3788
|
+
summary: z.ZodNullable<z.ZodString>;
|
|
3789
|
+
type: z.ZodEnum<{
|
|
3790
|
+
other: "other";
|
|
3791
|
+
development: "development";
|
|
3792
|
+
automation: "automation";
|
|
3793
|
+
ai: "ai";
|
|
3794
|
+
crawler: "crawler";
|
|
3795
|
+
ops: "ops";
|
|
3796
|
+
writing: "writing";
|
|
3797
|
+
design: "design";
|
|
3798
|
+
}>;
|
|
3799
|
+
tags: z.ZodArray<z.ZodString>;
|
|
3800
|
+
source: z.ZodEnum<{
|
|
3801
|
+
official_upload: "official_upload";
|
|
3802
|
+
user_upload: "user_upload";
|
|
3803
|
+
}>;
|
|
3804
|
+
visibility: z.ZodEnum<{
|
|
3805
|
+
public: "public";
|
|
3806
|
+
private: "private";
|
|
3807
|
+
}>;
|
|
3808
|
+
status: z.ZodEnum<{
|
|
3809
|
+
active: "active";
|
|
3810
|
+
disabled: "disabled";
|
|
3811
|
+
}>;
|
|
3812
|
+
owner: z.ZodNullable<z.ZodObject<{
|
|
3813
|
+
id: z.ZodString;
|
|
3814
|
+
name: z.ZodNullable<z.ZodString>;
|
|
3815
|
+
email: z.ZodNullable<z.ZodString>;
|
|
3816
|
+
}, z.core.$strip>>;
|
|
3817
|
+
latestVersion: z.ZodNullable<z.ZodString>;
|
|
3818
|
+
downloadCount: z.ZodNumber;
|
|
3819
|
+
currentVersion: z.ZodNullable<z.ZodObject<{
|
|
3820
|
+
id: z.ZodString;
|
|
3821
|
+
version: z.ZodString;
|
|
3822
|
+
archiveFormat: z.ZodEnum<{
|
|
3823
|
+
skill: "skill";
|
|
3824
|
+
zip: "zip";
|
|
3825
|
+
tar: "tar";
|
|
3826
|
+
}>;
|
|
3827
|
+
fileName: z.ZodString;
|
|
3828
|
+
fileSize: z.ZodNumber;
|
|
3829
|
+
changelog: z.ZodNullable<z.ZodString>;
|
|
3830
|
+
createdAt: z.ZodString;
|
|
3831
|
+
}, z.core.$strip>>;
|
|
3832
|
+
createdAt: z.ZodString;
|
|
3833
|
+
updatedAt: z.ZodString;
|
|
3834
|
+
}, z.core.$strip>;
|
|
3835
|
+
/** Skill list request schema. */
|
|
3836
|
+
declare const skillsListRequestSchema: z.ZodObject<{
|
|
3837
|
+
page: z.ZodDefault<z.ZodNumber>;
|
|
3838
|
+
pageSize: z.ZodDefault<z.ZodNumber>;
|
|
3839
|
+
keyword: z.ZodOptional<z.ZodString>;
|
|
3840
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
3841
|
+
other: "other";
|
|
3842
|
+
development: "development";
|
|
3843
|
+
automation: "automation";
|
|
3844
|
+
ai: "ai";
|
|
3845
|
+
crawler: "crawler";
|
|
3846
|
+
ops: "ops";
|
|
3847
|
+
writing: "writing";
|
|
3848
|
+
design: "design";
|
|
3849
|
+
}>>;
|
|
3850
|
+
}, z.core.$strip>;
|
|
3851
|
+
/** Skill list response schema. */
|
|
3852
|
+
declare const skillsListResponseSchema: z.ZodObject<{
|
|
3853
|
+
items: z.ZodArray<z.ZodObject<{
|
|
3854
|
+
id: z.ZodString;
|
|
3855
|
+
slug: z.ZodString;
|
|
3856
|
+
name: z.ZodString;
|
|
3857
|
+
summary: z.ZodNullable<z.ZodString>;
|
|
3858
|
+
type: z.ZodEnum<{
|
|
3859
|
+
other: "other";
|
|
3860
|
+
development: "development";
|
|
3861
|
+
automation: "automation";
|
|
3862
|
+
ai: "ai";
|
|
3863
|
+
crawler: "crawler";
|
|
3864
|
+
ops: "ops";
|
|
3865
|
+
writing: "writing";
|
|
3866
|
+
design: "design";
|
|
3867
|
+
}>;
|
|
3868
|
+
tags: z.ZodArray<z.ZodString>;
|
|
3869
|
+
source: z.ZodEnum<{
|
|
3870
|
+
official_upload: "official_upload";
|
|
3871
|
+
user_upload: "user_upload";
|
|
3872
|
+
}>;
|
|
3873
|
+
visibility: z.ZodEnum<{
|
|
3874
|
+
public: "public";
|
|
3875
|
+
private: "private";
|
|
3876
|
+
}>;
|
|
3877
|
+
status: z.ZodEnum<{
|
|
3878
|
+
active: "active";
|
|
3879
|
+
disabled: "disabled";
|
|
3880
|
+
}>;
|
|
3881
|
+
owner: z.ZodNullable<z.ZodObject<{
|
|
3882
|
+
id: z.ZodString;
|
|
3883
|
+
name: z.ZodNullable<z.ZodString>;
|
|
3884
|
+
email: z.ZodNullable<z.ZodString>;
|
|
3885
|
+
}, z.core.$strip>>;
|
|
3886
|
+
latestVersion: z.ZodNullable<z.ZodString>;
|
|
3887
|
+
downloadCount: z.ZodNumber;
|
|
3888
|
+
currentVersion: z.ZodNullable<z.ZodObject<{
|
|
3889
|
+
id: z.ZodString;
|
|
3890
|
+
version: z.ZodString;
|
|
3891
|
+
archiveFormat: z.ZodEnum<{
|
|
3892
|
+
skill: "skill";
|
|
3893
|
+
zip: "zip";
|
|
3894
|
+
tar: "tar";
|
|
3895
|
+
}>;
|
|
3896
|
+
fileName: z.ZodString;
|
|
3897
|
+
fileSize: z.ZodNumber;
|
|
3898
|
+
changelog: z.ZodNullable<z.ZodString>;
|
|
3899
|
+
createdAt: z.ZodString;
|
|
3900
|
+
}, z.core.$strip>>;
|
|
3901
|
+
createdAt: z.ZodString;
|
|
3902
|
+
updatedAt: z.ZodString;
|
|
3903
|
+
}, z.core.$strip>>;
|
|
3904
|
+
page: z.ZodNumber;
|
|
3905
|
+
pageSize: z.ZodNumber;
|
|
3906
|
+
total: z.ZodNumber;
|
|
3907
|
+
}, z.core.$strip>;
|
|
3908
|
+
/** Skill detail request schema. */
|
|
3909
|
+
declare const skillsDetailRequestSchema: z.ZodVoid;
|
|
3910
|
+
/** Skill detail response schema. */
|
|
3911
|
+
declare const skillsDetailResponseSchema: z.ZodObject<{
|
|
3912
|
+
skill: z.ZodObject<{
|
|
3913
|
+
id: z.ZodString;
|
|
3914
|
+
slug: z.ZodString;
|
|
3915
|
+
name: z.ZodString;
|
|
3916
|
+
summary: z.ZodNullable<z.ZodString>;
|
|
3917
|
+
type: z.ZodEnum<{
|
|
3918
|
+
other: "other";
|
|
3919
|
+
development: "development";
|
|
3920
|
+
automation: "automation";
|
|
3921
|
+
ai: "ai";
|
|
3922
|
+
crawler: "crawler";
|
|
3923
|
+
ops: "ops";
|
|
3924
|
+
writing: "writing";
|
|
3925
|
+
design: "design";
|
|
3926
|
+
}>;
|
|
3927
|
+
tags: z.ZodArray<z.ZodString>;
|
|
3928
|
+
source: z.ZodEnum<{
|
|
3929
|
+
official_upload: "official_upload";
|
|
3930
|
+
user_upload: "user_upload";
|
|
3931
|
+
}>;
|
|
3932
|
+
visibility: z.ZodEnum<{
|
|
3933
|
+
public: "public";
|
|
3934
|
+
private: "private";
|
|
3935
|
+
}>;
|
|
3936
|
+
status: z.ZodEnum<{
|
|
3937
|
+
active: "active";
|
|
3938
|
+
disabled: "disabled";
|
|
3939
|
+
}>;
|
|
3940
|
+
owner: z.ZodNullable<z.ZodObject<{
|
|
3941
|
+
id: z.ZodString;
|
|
3942
|
+
name: z.ZodNullable<z.ZodString>;
|
|
3943
|
+
email: z.ZodNullable<z.ZodString>;
|
|
3944
|
+
}, z.core.$strip>>;
|
|
3945
|
+
latestVersion: z.ZodNullable<z.ZodString>;
|
|
3946
|
+
downloadCount: z.ZodNumber;
|
|
3947
|
+
currentVersion: z.ZodNullable<z.ZodObject<{
|
|
3948
|
+
id: z.ZodString;
|
|
3949
|
+
version: z.ZodString;
|
|
3950
|
+
archiveFormat: z.ZodEnum<{
|
|
3951
|
+
skill: "skill";
|
|
3952
|
+
zip: "zip";
|
|
3953
|
+
tar: "tar";
|
|
3954
|
+
}>;
|
|
3955
|
+
fileName: z.ZodString;
|
|
3956
|
+
fileSize: z.ZodNumber;
|
|
3957
|
+
changelog: z.ZodNullable<z.ZodString>;
|
|
3958
|
+
createdAt: z.ZodString;
|
|
3959
|
+
}, z.core.$strip>>;
|
|
3960
|
+
createdAt: z.ZodString;
|
|
3961
|
+
updatedAt: z.ZodString;
|
|
3962
|
+
manifestJson: z.ZodNullable<z.ZodUnknown>;
|
|
3963
|
+
readmeMarkdown: z.ZodNullable<z.ZodString>;
|
|
3964
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
3965
|
+
id: z.ZodString;
|
|
3966
|
+
version: z.ZodString;
|
|
3967
|
+
archiveFormat: z.ZodEnum<{
|
|
3968
|
+
skill: "skill";
|
|
3969
|
+
zip: "zip";
|
|
3970
|
+
tar: "tar";
|
|
3971
|
+
}>;
|
|
3972
|
+
fileName: z.ZodString;
|
|
3973
|
+
fileSize: z.ZodNumber;
|
|
3974
|
+
changelog: z.ZodNullable<z.ZodString>;
|
|
3975
|
+
createdAt: z.ZodString;
|
|
3976
|
+
}, z.core.$strip>>;
|
|
3977
|
+
}, z.core.$strip>;
|
|
3978
|
+
}, z.core.$strip>;
|
|
3979
|
+
/** Skill download response type schema helper. */
|
|
3980
|
+
declare const skillsDownloadResponseSchema: z.ZodObject<{
|
|
3981
|
+
fileName: z.ZodString;
|
|
3982
|
+
contentType: z.ZodString;
|
|
3983
|
+
data: z.ZodCustom<ArrayBuffer, ArrayBuffer>;
|
|
3984
|
+
}, z.core.$strip>;
|
|
3985
|
+
/** Skill type value. */
|
|
3986
|
+
type SkillType = z.infer<typeof skillTypeSchema>;
|
|
3987
|
+
/** Skill source value. */
|
|
3988
|
+
type SkillSource = z.infer<typeof skillSourceSchema>;
|
|
3989
|
+
/** Skill visibility value. */
|
|
3990
|
+
type SkillVisibility = z.infer<typeof skillVisibilitySchema>;
|
|
3991
|
+
/** Skill status value. */
|
|
3992
|
+
type SkillStatus = z.infer<typeof skillStatusSchema>;
|
|
3993
|
+
/** Skill archive format value. */
|
|
3994
|
+
type SkillArchiveFormat = z.infer<typeof skillArchiveFormatSchema>;
|
|
3995
|
+
/** Skill owner summary value. */
|
|
3996
|
+
type SkillOwnerSummary = z.infer<typeof skillOwnerSummarySchema>;
|
|
3997
|
+
/** Skill version summary value. */
|
|
3998
|
+
type SkillVersionSummary = z.infer<typeof skillVersionSummarySchema>;
|
|
3999
|
+
/** Skill list item value. */
|
|
4000
|
+
type SkillListItem = z.infer<typeof skillListItemSchema>;
|
|
4001
|
+
/** Skill list request value. */
|
|
4002
|
+
type SkillsListRequest = z.infer<typeof skillsListRequestSchema>;
|
|
4003
|
+
/** Skill list response value. */
|
|
4004
|
+
type SkillsListResponse = z.infer<typeof skillsListResponseSchema>;
|
|
4005
|
+
/** Skill detail response value. */
|
|
4006
|
+
type SkillsDetailResponse = z.infer<typeof skillsDetailResponseSchema>;
|
|
4007
|
+
/** Skill download response value. */
|
|
4008
|
+
type SkillsDownloadResponse = z.infer<typeof skillsDownloadResponseSchema>;
|
|
4009
|
+
|
|
4010
|
+
type SkillsSdkHost = SdkHost<{
|
|
4011
|
+
skills: typeof skillsEndpoints;
|
|
4012
|
+
}>;
|
|
4013
|
+
declare class SkillsClient {
|
|
4014
|
+
/** SDK host used for skill requests. */
|
|
4015
|
+
private readonly sdk;
|
|
4016
|
+
/** Create skill client. */
|
|
4017
|
+
constructor(sdk: SkillsSdkHost);
|
|
4018
|
+
/** List visible skills for the current user. */
|
|
4019
|
+
list(payload?: SkillsListRequest): Promise<SkillsListResponse>;
|
|
4020
|
+
/** Fetch one visible skill detail. */
|
|
4021
|
+
detail(skillId: string): Promise<SkillsDetailResponse>;
|
|
4022
|
+
/** Download one visible skill archive. */
|
|
4023
|
+
download(skillId: string): Promise<SkillsDownloadResponse>;
|
|
4024
|
+
}
|
|
4025
|
+
|
|
4026
|
+
type index$1_SkillArchiveFormat = SkillArchiveFormat;
|
|
4027
|
+
type index$1_SkillListItem = SkillListItem;
|
|
4028
|
+
type index$1_SkillOwnerSummary = SkillOwnerSummary;
|
|
4029
|
+
type index$1_SkillSource = SkillSource;
|
|
4030
|
+
type index$1_SkillStatus = SkillStatus;
|
|
4031
|
+
type index$1_SkillType = SkillType;
|
|
4032
|
+
type index$1_SkillVersionSummary = SkillVersionSummary;
|
|
4033
|
+
type index$1_SkillVisibility = SkillVisibility;
|
|
4034
|
+
type index$1_SkillsClient = SkillsClient;
|
|
4035
|
+
declare const index$1_SkillsClient: typeof SkillsClient;
|
|
4036
|
+
type index$1_SkillsDetailResponse = SkillsDetailResponse;
|
|
4037
|
+
type index$1_SkillsDownloadResponse = SkillsDownloadResponse;
|
|
4038
|
+
type index$1_SkillsListRequest = SkillsListRequest;
|
|
4039
|
+
type index$1_SkillsListResponse = SkillsListResponse;
|
|
4040
|
+
declare const index$1_skillArchiveFormatSchema: typeof skillArchiveFormatSchema;
|
|
4041
|
+
declare const index$1_skillListItemSchema: typeof skillListItemSchema;
|
|
4042
|
+
declare const index$1_skillOwnerSummarySchema: typeof skillOwnerSummarySchema;
|
|
4043
|
+
declare const index$1_skillSourceSchema: typeof skillSourceSchema;
|
|
4044
|
+
declare const index$1_skillStatusSchema: typeof skillStatusSchema;
|
|
4045
|
+
declare const index$1_skillTypeSchema: typeof skillTypeSchema;
|
|
4046
|
+
declare const index$1_skillVersionSummarySchema: typeof skillVersionSummarySchema;
|
|
4047
|
+
declare const index$1_skillVisibilitySchema: typeof skillVisibilitySchema;
|
|
4048
|
+
declare const index$1_skillsDetailRequestSchema: typeof skillsDetailRequestSchema;
|
|
4049
|
+
declare const index$1_skillsDetailResponseSchema: typeof skillsDetailResponseSchema;
|
|
4050
|
+
declare const index$1_skillsDownloadResponseSchema: typeof skillsDownloadResponseSchema;
|
|
4051
|
+
declare const index$1_skillsEndpoints: typeof skillsEndpoints;
|
|
4052
|
+
declare const index$1_skillsListRequestSchema: typeof skillsListRequestSchema;
|
|
4053
|
+
declare const index$1_skillsListResponseSchema: typeof skillsListResponseSchema;
|
|
3266
4054
|
declare namespace index$1 {
|
|
3267
|
-
export { type index$
|
|
4055
|
+
export { type index$1_SkillArchiveFormat as SkillArchiveFormat, type index$1_SkillListItem as SkillListItem, type index$1_SkillOwnerSummary as SkillOwnerSummary, type index$1_SkillSource as SkillSource, type index$1_SkillStatus as SkillStatus, type index$1_SkillType as SkillType, type index$1_SkillVersionSummary as SkillVersionSummary, type index$1_SkillVisibility as SkillVisibility, index$1_SkillsClient as SkillsClient, type index$1_SkillsDetailResponse as SkillsDetailResponse, type index$1_SkillsDownloadResponse as SkillsDownloadResponse, type index$1_SkillsListRequest as SkillsListRequest, type index$1_SkillsListResponse as SkillsListResponse, index$1_skillArchiveFormatSchema as skillArchiveFormatSchema, index$1_skillListItemSchema as skillListItemSchema, index$1_skillOwnerSummarySchema as skillOwnerSummarySchema, index$1_skillSourceSchema as skillSourceSchema, index$1_skillStatusSchema as skillStatusSchema, index$1_skillTypeSchema as skillTypeSchema, index$1_skillVersionSummarySchema as skillVersionSummarySchema, index$1_skillVisibilitySchema as skillVisibilitySchema, index$1_skillsDetailRequestSchema as skillsDetailRequestSchema, index$1_skillsDetailResponseSchema as skillsDetailResponseSchema, index$1_skillsDownloadResponseSchema as skillsDownloadResponseSchema, index$1_skillsEndpoints as skillsEndpoints, index$1_skillsListRequestSchema as skillsListRequestSchema, index$1_skillsListResponseSchema as skillsListResponseSchema };
|
|
3268
4056
|
}
|
|
3269
4057
|
|
|
3270
4058
|
/** User API endpoints. */
|
|
@@ -3392,6 +4180,8 @@ declare class SaaSClient extends BaseSaaSClient<SaaSContract> {
|
|
|
3392
4180
|
readonly auxiliary: AuxiliaryClient;
|
|
3393
4181
|
/** Feedback-related APIs. */
|
|
3394
4182
|
readonly feedback: FeedbackClient;
|
|
4183
|
+
/** Skill market APIs. */
|
|
4184
|
+
readonly skills: SkillsClient;
|
|
3395
4185
|
/** User-related APIs. */
|
|
3396
4186
|
readonly user: UserClient;
|
|
3397
4187
|
/** Create a SaaS client with all module access. */
|
|
@@ -3439,4 +4229,4 @@ declare function createTrpcClient(options: TrpcClientOptions): _trpc_client.TRPC
|
|
|
3439
4229
|
transformer: false;
|
|
3440
4230
|
}, _trpc_server.TRPCDecorateCreateRouterOptions<_trpc_server.TRPCCreateRouterOptions>>>;
|
|
3441
4231
|
|
|
3442
|
-
export { AI_MODEL_CAPABILITY_INPUT_KEYS, AI_MODEL_CAPABILITY_OUTPUT_KEYS, AI_MODEL_TAGS, AI_MODEL_TAG_LABELS, type AiChatModel, type AiChatModelsResponse, AiClient, type AiFileUploadResponse, type AiImageInputs, type AiImageOutput, type AiImageRequest, type AiMediaInput, type AiModel, type AiModelCapabilities, type AiModelCapabilitiesInput, type AiModelCapabilitiesOutput, type AiModelCapabilityInputKey, type AiModelCapabilityOutputKey, type AiModelTag, type AiModelsResponse, type AiModelsUpdatedAtData, type AiModelsUpdatedAtResponse, type AiProviderTemplate, type AiProviderTemplateModel, type AiProviderTemplatesResponse, type AiTaskCancelResponse, type AiTaskCreatedResponse, type AiTaskResponse, AiToolsClient, type AiVideoInputs, type AiVideoOutput, type AiVideoRequest, type AnalyzeSkillsRequest, type AnalyzeSkillsResponse, AuthClient, type AuthExchangeRequest, type AuthExchangeResponse, type AuthLogoutRequest, type AuthLogoutResponse, type AuthRefreshError, type AuthRefreshRequest, type AuthRefreshResponse, type AuthRefreshSuccess, AuxiliaryClient, type AuxiliaryInferRequest, type AuxiliaryInferResponse, type AuxiliaryQuota, type AuxiliaryQuotaResponse, Endpoint, type FeedbackAttachmentResponse, FeedbackClient, type FeedbackDetailPayload, type FeedbackDetailRequest, type FeedbackDetailResponse, type FeedbackListPayload, type FeedbackListRequest, type FeedbackListResponse, type FeedbackSaasStatus, type FeedbackSource, type FeedbackSubmitError, type FeedbackSubmitRequest, type FeedbackSubmitResponse, type FeedbackType, type HeaderInput, type HttpMethod, type RecommendActionsRequest, type RecommendActionsResponse, type ResponseType, SaaSClient, type SaaSClientOptions, SaaSContract, SaaSHttpError, SaaSNetworkError, SaaSSchemaError, type SummarizeRequest, type SummarizeResponse, type TrpcClientOptions, UserClient, type UserMembershipLevel, type UserSelf, type UserSelfRequest, type UserSelfResponse, aiChatModelSchema, aiChatModelsPayloadSchema, aiChatModelsResponseSchema, aiChatModelsSuccessSchema, aiEndpoints, aiErrorResponseSchema, aiImageInputsSchema, aiImageOutputSchema, aiImageRequestSchema, aiMediaInputSchema, aiModelCapabilitiesInputSchema, aiModelCapabilitiesOutputSchema, aiModelCapabilitiesSchema, aiModelCapabilityCommonSchema, aiModelParameterFieldSchema, aiModelParamsSchema, aiModelSchema, aiModelsPayloadSchema, aiModelsRequestSchema, aiModelsResponseSchema, aiModelsSuccessSchema, aiModelsUpdatedAtDataSchema, aiModelsUpdatedAtResponseSchema, aiModelsUpdatedAtSuccessSchema, index$
|
|
4232
|
+
export { AI_MODEL_CAPABILITY_INPUT_KEYS, AI_MODEL_CAPABILITY_OUTPUT_KEYS, AI_MODEL_TAGS, AI_MODEL_TAG_LABELS, type AiAudioOutput, type AiAudioRequest, type AiChatCompletionsRequest, type AiChatModel, type AiChatModelsResponse, type AiChatSessionMetadata, AiClient, type AiClientMetadata, type AiFileUploadResponse, type AiImageInputs, type AiImageOutput, type AiImageRequest, type AiMediaInput, type AiModel, type AiModelCapabilities, type AiModelCapabilitiesInput, type AiModelCapabilitiesOutput, type AiModelCapabilityInputKey, type AiModelCapabilityOutputKey, type AiModelTag, type AiModelsResponse, type AiModelsUpdatedAtData, type AiModelsUpdatedAtResponse, type AiProviderTemplate, type AiProviderTemplateModel, type AiProviderTemplatesResponse, type AiResponsesRequest, type AiTaskCancelResponse, type AiTaskCreatedResponse, type AiTaskResponse, AiToolsClient, type AiVideoInputs, type AiVideoOutput, type AiVideoRequest, type AnalyzeSkillsRequest, type AnalyzeSkillsResponse, AuthClient, type AuthExchangeRequest, type AuthExchangeResponse, type AuthLogoutRequest, type AuthLogoutResponse, type AuthRefreshError, type AuthRefreshRequest, type AuthRefreshResponse, type AuthRefreshSuccess, AuxiliaryClient, type AuxiliaryInferRequest, type AuxiliaryInferResponse, type AuxiliaryQuota, type AuxiliaryQuotaResponse, Endpoint, type FeedbackAttachmentResponse, FeedbackClient, type FeedbackDetailPayload, type FeedbackDetailRequest, type FeedbackDetailResponse, type FeedbackListPayload, type FeedbackListRequest, type FeedbackListResponse, type FeedbackSaasStatus, type FeedbackSource, type FeedbackSubmitError, type FeedbackSubmitRequest, type FeedbackSubmitResponse, type FeedbackType, type HeaderInput, type HttpMethod, type RecommendActionsRequest, type RecommendActionsResponse, type ResponseType, SaaSClient, type SaaSClientOptions, SaaSContract, SaaSHttpError, SaaSNetworkError, SaaSSchemaError, type SkillArchiveFormat, type SkillListItem, type SkillOwnerSummary, type SkillSource, type SkillStatus, type SkillType, type SkillVersionSummary, type SkillVisibility, SkillsClient, type SkillsDetailResponse, type SkillsDownloadResponse, type SkillsListRequest, type SkillsListResponse, type SummarizeRequest, type SummarizeResponse, type TrpcClientOptions, UserClient, type UserMembershipLevel, type UserSelf, type UserSelfRequest, type UserSelfResponse, aiAudioOutputSchema, aiAudioRequestSchema, aiChatCompletionsRequestSchema, aiChatModelSchema, aiChatModelsPayloadSchema, aiChatModelsResponseSchema, aiChatModelsSuccessSchema, aiChatSessionMetadataSchema, aiClientMetadataSchema, aiEndpoints, aiErrorResponseSchema, aiImageInputsSchema, aiImageOutputSchema, aiImageRequestSchema, aiMediaInputSchema, aiModelCapabilitiesInputSchema, aiModelCapabilitiesOutputSchema, aiModelCapabilitiesSchema, aiModelCapabilityCommonSchema, aiModelParameterFieldSchema, aiModelParamsSchema, aiModelSchema, aiModelsPayloadSchema, aiModelsRequestSchema, aiModelsResponseSchema, aiModelsSuccessSchema, aiModelsUpdatedAtDataSchema, aiModelsUpdatedAtResponseSchema, aiModelsUpdatedAtSuccessSchema, index$6 as aiModule, aiProviderTemplateModelSchema, aiProviderTemplateSchema, aiProviderTemplatesPayloadSchema, aiProviderTemplatesRequestSchema, aiProviderTemplatesResponseSchema, aiProviderTemplatesSuccessSchema, aiResponsesRequestSchema, aiTaskCancelDataSchema, aiTaskCancelRequestSchema, aiTaskCancelResponseSchema, aiTaskCancelSuccessSchema, aiTaskCreatedDataSchema, aiTaskCreatedResponseSchema, aiTaskCreatedSuccessSchema, aiTaskDataSchema, aiTaskErrorSchema, aiTaskRequestSchema, aiTaskResponseSchema, aiTaskResultTypeSchema, aiTaskStatusSchema, aiTaskSuccessSchema, aiToolsEndpoints, index$5 as aiToolsModule, aiVideoInputsSchema, aiVideoOutputSchema, aiVideoRequestSchema, analyzeSkillsRequestSchema, analyzeSkillsResponseSchema, authEndpoints, authExchangeRequestSchema, authExchangeResponseSchema, authLogoutRequestSchema, authLogoutResponseSchema, index$4 as authModule, authRefreshErrorSchema, authRefreshRequestSchema, authRefreshResponseSchema, authRefreshSuccessSchema, authRefreshUserSchema, auxiliaryEndpoints, auxiliaryInferRequestSchema, auxiliaryInferResponseSchema, index$3 as auxiliaryModule, auxiliaryQuotaResponseSchema, contract, createTrpcClient, feedbackDetailPayloadSchema, feedbackDetailRequestSchema, feedbackDetailResponseSchema, feedbackEndpoints, feedbackItemSchema, feedbackListPayloadSchema, feedbackListRequestSchema, feedbackListResponseSchema, index$2 as feedbackModule, feedbackSaasStatusSchema, feedbackSourceSchema, feedbackSubmitErrorSchema, feedbackSubmitRequestSchema, feedbackSubmitResponseSchema, feedbackTypeSchema, mergeHeaders, normalizeHeaders, recommendActionsRequestSchema, recommendActionsResponseSchema, request, skillArchiveFormatSchema, skillListItemSchema, skillOwnerSummarySchema, skillSourceSchema, skillStatusSchema, skillTypeSchema, skillVersionSummarySchema, skillVisibilitySchema, skillsDetailRequestSchema, skillsDetailResponseSchema, skillsDownloadResponseSchema, skillsEndpoints, skillsListRequestSchema, skillsListResponseSchema, index$1 as skillsModule, summarizeRequestSchema, summarizeResponseSchema, userEndpoints, userMembershipLevelSchema, index as userModule, userSelfRequestSchema, userSelfResponseSchema, userSelfSchema };
|